summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-49756 Add downgradeOnDiskChanges parameter to ↵Jason Chan2020-08-181-47/+52
| | | | setFeatureCompatibilityVersion
* SERVER-49783: Update latest FCV to 4.7Lingzhi Deng2020-08-021-4/+4
|
* SERVER-49063: Update FCV 4.6 constants to 4.5.1Lingzhi Deng2020-07-091-4/+5
|
* SERVER-46323 Update FCV constants throughout server code following 4.4 branchAli Mir2020-04-221-4/+4
| | | | | | | | | | | | | | SERVER-46589 Update Execution-related generic upgrade/downgrade references SERVER-46587 Update Replication-related generic upgrade/downgrade references SERVER-46839 Update Sharding-related generic upgrade/downgrade references SERVER-46590 Update Query-related generic upgrade/downgrade references SERVER-46318 Bump wire protocol version for 4.6 SERVER-46313 Bump Powercycle FCV
* SERVER-45098 test that RWC defaults are correctly applied to commandsKevin Pulo2020-01-161-2/+4
|
* SERVER-41230 Update FCV constants throughout server code following 4.2 branchBernard Gorman2019-08-231-7/+7
| | | | | | | SERVER-42162 Update Execution-related generic upgrade/downgrade references SERVER-42642 Update Replication-related generic upgrade/downgrade references SERVER-42592 Update Sharding-related generic upgrade/downgrade references SERVER-42794 Update Query-related generic upgrade/downgrade references SERVER-41545 Bump wire protocol version for 4.4
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-1/+1
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-35655 Update FCV constants throughout server code.Blake Oler2018-07-021-4/+4
| | | | | | | | | SERVER-35169 Bump wire protocol version for 4.2. SERVER-35752 Ensure tests that rely on FCV pass after updating FCV constants. SERVER-35163 Unblacklist tests that expect FCV version to differ between "last-stable" and "latest." SERVER-34984 Update major_version_upgrade.js to call setFCV to the latest FCV. SERVER-35656 Ensure a 4.0 mongos crashes upon attempting to connect to an FCV 4.2 cluster. SERVER-35404 Re-enable the sharding_last_stable_mongos_and_mixed_shards suite.
* SERVER-33561 Add a FCV parser file, refactoring FCV codeDianna Hohensee2018-03-021-2/+3
|
* SERVER-33260 Log more helpful messages for FCV-related ↵Xiangyu Yao2018-02-271-1/+3
| | | | IncompatibleServerVersion errors
* SERVER-33179 Remove featureCompatibilityVersion 3.4Dianna Hohensee2018-02-231-6/+4
|
* SERVER-32597 Bump generic fCV referencesMaria van Keulen2018-02-211-5/+4
|
* SERVER-33286 Provide service context in Command::secondaryAllowed to allow ↵Henrik Edin2018-02-141-1/+1
| | | | getting interfaces without using global get function.
* SERVER-33136 const-ify the command auth accessorsBilly Donahue2018-02-061-1/+1
|
* SERVER-32958 unrevert "SERVER-32958 slaveOk,slaveOverrideOk replacement"Billy Donahue2018-01-311-2/+2
| | | | | | w/fix: update a new command to secondaryAllowed This reverts commit d75cb425fbc3cf4b569eb1722c3f8abec45654a2.
* Revert "SERVER-32958 slaveOk,slaveOverrideOk replacement"Judah Schvimer2018-01-311-2/+2
| | | | This reverts commit be24b0323d3f2d424d9e22337f4221d39001ac31.
* SERVER-32958 slaveOk,slaveOverrideOk replacementBilly Donahue2018-01-311-2/+2
| | | | declare read_preference dep. update service_entry_opint_embedded
* SERVER-32958 Command::help() returns std::stringBilly Donahue2018-01-301-8/+10
|
* SERVER-32412 Add featureCompatibilityVersion 4.0 to the list of valid ↵Dianna Hohensee2018-01-241-2/+5
| | | | featureCompatibility values
* SERVER-32646 CommandHelpersBilly Donahue2018-01-161-1/+1
|
* SERVER-31983 Create setFeatureCompatibilityVersion ActionTypeMaria van Keulen2017-12-271-3/+2
|
* SERVER-31866 setFCV should always wait for majority writeConcernJack Mulrow2017-11-211-2/+3
|
* SERVER-30793 merge setFeatureCompatibilityVersion and ↵Esha Maharishi2017-10-091-1/+1
| | | | _configsvrSetFeatureCompatibilityVersion
* SERVER-30581 Remove repeated string constants related to ↵Tess Avitabile2017-08-301-4/+7
| | | | featureCompatibilityVersion
* SERVER-29731 get errmsg out of BasicCommand apiMathias Stearn2017-07-131-1/+0
| | | | It is now only used by commands deriving from ErrmsgCommandDeprecated.
* SERVER-29731 convert all direct subclasses of Command to BasicCommandMathias Stearn2017-07-131-2/+2
|
* SERVER-29350 Bump featureCompatibilityVersion to 3.6Tess Avitabile2017-06-091-5/+5
|
* SERVER-29260 Make BSONObj argument to Command::run() const&Mathias Stearn2017-05-171-1/+1
|
* SERVER-28701 Remove queryOptions argument from Command::run()Mathias Stearn2017-04-121-1/+0
|
* SERVER-27938 Rename all OperationContext variables to opCtxMaria van Keulen2017-03-071-3/+3
| | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo.
* SERVER-26955 Ensure setFeatureCompatibilityVersion commands support maxTimeMSKaloian Manassiev2016-11-111-40/+7
|
* SERVER-26610 Fix maxTimeMS exception in setFeatureCompatibilityVersionRandolph Tan2016-10-171-1/+1
|
* SERVER-26610 add maxTimeMS to setFeatureCompatibilityVersion call in ↵Randolph Tan2016-10-171-0/+2
| | | | set_feature_compatibility_version.js
* SERVER-25743 Add dochub links to all featureCompatibilityVersion error messagesTess Avitabile2016-09-221-6/+19
|
* SERVER-25832 Rename Shard::runCommand to Shard::runCommandWithFixedRetryAttemptsSpencer T Brody2016-08-291-6/+6
|
* Revert "SERVER-25832 Rename Shard::runCommand to ↵Dan Pasette2016-08-261-6/+6
| | | | | | Shard::runCommandWithFixedRetryAttempts" This reverts commit 7614c0eb2449eb4ec22d21b677177124d61f1888.
* SERVER-25832 Rename Shard::runCommand to Shard::runCommandWithFixedRetryAttemptsSpencer T Brody2016-08-261-6/+6
|
* SERVER-25155 Create setFeatureCompatibilityVersion commandTess Avitabile2016-08-191-0/+129