SERVER-100241 final upgrade state in dbcheck_old_format_keys_test.js should upgrade to latestFCV (#31862)

GitOrigin-RevId: 4c2a17d0cf04a24b9cad8fa9640044e5cc0236c6
This commit is contained in:
Pavi Vetriselvan
2025-02-03 09:18:51 -05:00
committed by MongoDB Bot
parent cac436a02b
commit b6dfb52bd2

View File

@@ -28,7 +28,9 @@ const upgradeVersions = {
"5.0": {"fcv": "6.0", "nextVersion": "6.0"},
"6.0": {"fcv": "7.0", "nextVersion": "7.0"},
"7.0": {"fcv": "8.0", "nextVersion": "8.0"},
"8.0": {"fcv": "8.1", "nextVersion": "latest"},
// Always use latestFCV when upgrading from lastLTS so we future-proof against
// lastContinuous releases and don't have to change this fcv value each time.
"8.0": {"fcv": latestFCV, "nextVersion": "latest"},
// TODO (SERVER-66611): Automate modifying this list.
"latest": {}
};