feat(settings): add support for MariaDB 11.8 in setup checks

Signed-off-by: Josh <josh.t.richards@gmail.com>
pull/53898/head
Josh 2025-07-10 10:18:50 +07:00 committed by GitHub
parent fe9b9753b2
commit 6b65031a08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -21,7 +21,7 @@ use OCP\SetupCheck\SetupResult;
class SupportedDatabase implements ISetupCheck {
private const MIN_MARIADB = '10.6';
private const MAX_MARIADB = '11.4';
private const MAX_MARIADB = '11.8';
private const MIN_MYSQL = '8.0';
private const MAX_MYSQL = '8.4';
private const MIN_POSTGRES = '13';