SERVER-102009 [v6.0] Update last_lts_mongos_commands.js and last_lts_mongod_commands.js (#34498)

GitOrigin-RevId: 54c9c687ac07772e2edbe131936d88b298d47304
This commit is contained in:
Anna Maria Nestorov 2025-04-08 17:35:52 +02:00 committed by MongoDB Bot
parent 95a65da5f6
commit aa676d88fc
2 changed files with 0 additions and 17 deletions

View File

@ -4,9 +4,7 @@
// always existing on the servers being used. // always existing on the servers being used.
const commandsRemovedFromMongodSinceLastLTS = [ const commandsRemovedFromMongodSinceLastLTS = [
"_configsvrCommitChunkMerge", "_configsvrCommitChunkMerge",
"_configsvrCreateCollection",
"_configsvrRepairShardedCollectionChunksHistory", "_configsvrRepairShardedCollectionChunksHistory",
"mapreduce.shardedfinish",
]; ];
// These commands were added in mongod since the last LTS version, so will not appear in the // These commands were added in mongod since the last LTS version, so will not appear in the
// listCommands output of a last LTS version mongod. We will allow these commands to have a // listCommands output of a last LTS version mongod. We will allow these commands to have a
@ -24,7 +22,6 @@ const commandsAddedToMongodSinceLastLTS = [
"dropSearchIndex", "dropSearchIndex",
"getClusterParameter", "getClusterParameter",
"listSearchIndexes", "listSearchIndexes",
"rotateCertificates",
"setClusterParameter", "setClusterParameter",
"setUserWriteBlockMode", "setUserWriteBlockMode",
"updateSearchIndex", "updateSearchIndex",

View File

@ -12,29 +12,15 @@ const commandsRemovedFromMongosSinceLastLTS = [
// listCommands output of a last LTS version mongos. We will allow these commands to have a test // listCommands output of a last LTS version mongos. We will allow these commands to have a test
// defined without always existing on the mongos being used. // defined without always existing on the mongos being used.
const commandsAddedToMongosSinceLastLTS = [ const commandsAddedToMongosSinceLastLTS = [
"abortReshardCollection",
"appendOplogNote",
"cleanupReshardCollection",
"commitReshardCollection",
"compactStructuredEncryptionData", "compactStructuredEncryptionData",
"configureCollectionBalancing", "configureCollectionBalancing",
"createSearchIndexes", "createSearchIndexes",
"dropSearchIndex", "dropSearchIndex",
"fsyncUnlock",
"getClusterParameter", "getClusterParameter",
"listSearchIndexes", "listSearchIndexes",
"moveRange", "moveRange",
"reshardCollection",
"rotateCertificates",
"setAllowMigrations",
"setClusterParameter", "setClusterParameter",
"setProfilingFilterGlobally", // TODO SERVER-73305
"setUserWriteBlockMode", "setUserWriteBlockMode",
"testDeprecation",
"testDeprecationInVersion2",
"testInternalTransactions", "testInternalTransactions",
"testRemoval",
"testVersions1And2",
"testVersion2",
"updateSearchIndex", "updateSearchIndex",
]; ];