Add MariaDB 11.4

This commit is contained in:
Steffen Lange 2024-08-05 12:15:47 +02:00
parent 2b05c8a7c9
commit d7b098da09

15
modules/MariaDB114.php Normal file
View file

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