[CE/SP] Hotfix 5.5.7/6.0.1 (#29621)

Addresses docker configuration issues

Updates min mongo version checks in 6.0.1

GitOrigin-RevId: 7d799614520fb681f3641d47f2a6af3c2a09a1a8
This commit is contained in:
Miguel Serrano
2025-11-19 11:00:34 +01:00
committed by Copybot
parent af41215058
commit fb8d45d1f0
4 changed files with 31 additions and 2 deletions

View File

@@ -6,8 +6,8 @@ import {
const { ObjectId } = mongodb
const MIN_MONGO_VERSION = [6, 0]
const MIN_MONGO_FEATURE_COMPATIBILITY_VERSION = [6, 0]
const MIN_MONGO_VERSION = [8, 0]
const MIN_MONGO_FEATURE_COMPATIBILITY_VERSION = [7, 0]
// Allow ignoring admin check failures via an environment variable
const OVERRIDE_ENV_VAR_NAME = 'ALLOW_MONGO_ADMIN_CHECK_FAILURES'