aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2025-07-10 10:18:50 -0400
committerGitHub <noreply@github.com>2025-07-10 10:18:50 -0400
commit6b65031a0895669d780543088416beabf4ac77d6 (patch)
tree95a3ed59e5b71296060a9e54b55694a99b41bb9b
parentfe9b9753b2f5f11c3c7c5233f394fcfca06ea61d (diff)
downloadnextcloud-server-ci-mariadb-118.tar.gz
nextcloud-server-ci-mariadb-118.zip
feat(settings): add support for MariaDB 11.8 in setup checksci-mariadb-118
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r--apps/settings/lib/SetupChecks/SupportedDatabase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/SupportedDatabase.php b/apps/settings/lib/SetupChecks/SupportedDatabase.php
index 31b907a825e..d083958d16e 100644
--- a/apps/settings/lib/SetupChecks/SupportedDatabase.php
+++ b/apps/settings/lib/SetupChecks/SupportedDatabase.php
@@ -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';