MariaDB: remove short-term releases

This commit is contained in:
Steffen Lange 2022-12-02 11:20:11 +01:00
parent c2db06aef7
commit 50b9181a49
3 changed files with 0 additions and 45 deletions

View file

@ -1,15 +0,0 @@
<?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;
}
}
?>

View file

@ -1,15 +0,0 @@
<?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;
}
}
?>

View file

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