Add MariaDB 10.7

This commit is contained in:
Steffen Lange 2022-05-10 13:19:05 +02:00
parent 6e09fdd2e9
commit 7df4c36e76

15
modules/MariaDB107.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class MariaDB107 extends PatchBase {
function __construct() {
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://mariadb.org/download/');
$this->patch->setBranch('10.7');
}
function check() : bool {
if ($this->fetch_json('https://downloads.mariadb.org/rest-api/mariadb/10.7/'))
return $this->parse_json('release_id');
return false;
}
}
?>