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

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2025-07-10 10:18:50 -04:00 committed by GitHub
parent fe9b9753b2
commit 6b65031a08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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';