Add MariaDB 10.6

This commit is contained in:
Steffen Lange 2021-08-02 15:30:31 +02:00
parent f890ff9d47
commit 0ab46443a9

15
modules/MariaDB106.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class MariaDB106 extends PatchBase {
function __construct() {
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://downloads.mariadb.org/mariadb/10.6/');
$this->patch->setBranch('10.6');
}
function check() : bool {
if ($this->fetch('https://downloads.mariadb.org/mariadb/10.6/'))
return $this->parse('/MariaDB ([\d\.]+) Stable/');
return false;
}
}
?>