Add MariaDB 10.8

This commit is contained in:
Steffen Lange 2022-08-08 17:14:03 +02:00
parent e7e50951c9
commit 02cd7cf142

15
modules/MariaDB108.php Normal file
View file

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