Add MariaDB 11.8

This commit is contained in:
Steffen Lange 2025-06-19 17:44:47 +02:00
parent d5f32ed8e1
commit f352fb82b3

15
modules/MariaDB118.php Normal file
View file

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