| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-08-30 | SERVER-94229 verify input to _resultSetsEqualUnordered (#26641) | Binh Vo | |
| GitOrigin-RevId: b93b79b59c3642e0daa421300d82bb153dd86987 | |||
| 2024-08-28 | SERVER-94007 Add option to normalize null and undefined in query result ↵ | Lynne Wang | |
| comparator (#26525) GitOrigin-RevId: 87312df9d6051d276bfbd4dacec6ae8216779fd7 | |||
| 2024-08-27 | SERVER-93678: Add a shell utility function to compare strings given a ↵ | Projjal Chanda | |
| collation object (#26234) GitOrigin-RevId: 6480e21ac48c379052ece62f0efb9e60771cb2ea | |||
| 2024-08-23 | SERVER-93655 Extend query result comparator in shell_utils for QueryTester ↵ | Lynne Wang | |
| normalization (#26211) GitOrigin-RevId: ef5f1e739f5e7cdf29351ed361e7a2ba89874a2a | |||
| 2024-08-20 | SERVER-81339 Convert ReplSetTest and ShardingTest to modules (#26332) | Matt Broadstone | |
| GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d | |||
| 2024-07-11 | SERVER-91977 Prevent usage of invalid identifiers in _buildBsonObj(). (#24491) | Santiago Roche | |
| GitOrigin-RevId: 483b5f4beca8520f00a23ca777102721a589a0a2 | |||
| 2024-07-01 | SERVER-91932 Create query result comparator as C++ shell helper (#24082) | Matthew Boros | |
| GitOrigin-RevId: ef542ebbf50acd635ad82f1b83b3010f849dc9ec | |||
| 2024-01-20 | SERVER-84742 Refactor the ValidatedTenancyScope class to become a POD class | Mathis Bessa | |
| GitOrigin-RevId: 05dbdd076618c63e67e953bddac2b6e8e6408665 | |||
| 2023-11-26 | SERVER-81512 Removed using namespace fmt::literals from global namespace | Vinod Kumar | |
| 2023-11-21 | Revert "SERVER-81512 Removed using namespace fmt::literals from global ↵ | auto-revert-processor | |
| namespace" This reverts commit 3f63faa6c3787857f3c0eeeecc286e96265ca758. | |||
| 2023-11-21 | SERVER-81512 Removed using namespace fmt::literals from global namespace | Vinod Kumar | |
| 2023-11-09 | SERVER-82961 Use atomic bool for shellGlobalParams::nokillop to avoid data race | Yoonsoo Kim | |
| 2023-10-17 | SERVER-81544 Track protocol=atlasproxy on client connections | Mathis Bessa | |
| 2023-09-23 | SERVER-81059 bulk-revert of include of boost iif.hpp | Billy Donahue | |
| 2023-08-31 | SERVER-80394 Improve securityToken handling | Sara Golemon | |
| 2023-08-25 | SERVER-80377 Use hashed jsTestName in multitenancy suites | Matt Broadstone | |
| 2023-08-25 | Revert "SERVER-80377 Use hashed jsTestName in multitenancy suites" | auto-revert-processor | |
| This reverts commit c910ba4efc8797fb6c05aabdbb0220f75c603726. | |||
| 2023-08-24 | SERVER-80377 Use hashed jsTestName in multitenancy suites | Matt Broadstone | |
| 2023-07-01 | SERVER-77049 SERVER-77050 IWYU automated changes up to 1.0 | Daniel Moody | |
| 2023-05-19 | SERVER-75879 Add validation to prevent duplicate _id fields from update | Chi-I Huang | |
| 2023-04-26 | SERVER-74493 Make DatabaseName constructors private | mathisbessamdb | |
| 2023-01-23 | SERVER-72948 Change DBClient runCommand function to use DatabaseName object | Sophia Tan | |
| 2023-01-20 | SERVER-72935 switch c stdlib headers to cpp compat stdlib headers | Daniel Moody | |
| 2023-01-04 | SERVER-72418 Add new benchRun() variant to mongo shell for PERF-3672 | Kevin Cherkauer | |
| 2022-12-23 | SERVER-70957: Refactor ProgramRunner to support launching programs from C++ code | Varun Ravichandran | |
| 2022-11-24 | SERVER-70048 Improve developer experience with golden tests | Milena Ivanova | |
| 2022-09-16 | SERVER-69580 add performance-faster-string-find check to clang-tidy | Trevor Guidry | |
| 2022-08-22 | SERVER-68233 MongoShell numberDecimalsAlmostEqual(NumberDecimal(0), ↵ | Denis Grebennicov | |
| NumberDecimal(0)) returns false | |||
| 2022-08-17 | SERVER-68233 MongoShell numberDecimalsAlmostEqual(NumberDecimal(0), ↵ | Denis Grebennicov | |
| NumberDecimal(0)) returns false | |||
| 2022-08-17 | SERVER-67415 Create golden-data JS suites | David Percy | |
| Adds two new suites: query_golden_classic and query_golden_cqf, which use the golden-data test framework (docs/golden_data_test_framework.md). These suites diff the expected and actual output instead of using assert.eq and similar functions. This change includes some refactoring of the golden-test classes to avoid pulling the unittest library into the mongo shell. | |||
| 2022-06-15 | SERVER-67148 Refactor ValidatedTenantId into ValidatedSecurityToken | Sara Golemon | |
| 2022-05-26 | SERVER-66784 numberDecimalsAlmostEqual shell helper now works for negative ↵ | Davis Haupt | |
| numbers | |||
| 2022-05-06 | SERVER-66203 move MONGO_LOGV2_DEFAULT_COMPONENT defs below includes | Billy Donahue | |
| 2022-03-14 | SERVER-64226 Add shell helper to check equality up to a specified number of ↵ | Davis Haupt | |
| digits for NumberDecimal | |||
| 2022-02-07 | SERVER-63108 Rename Versioned API to Stable API | A. Jesse Jiryu Davis | |
| 2022-01-30 | SERVER-62902 Fix type conversion issue in JSSRand. | Rishab Joshi | |
| 2022-01-29 | SERVER-63025 Unify security token placeholder implementations | Sara Golemon | |
| 2022-01-13 | SERVER-27209 Eliminate dangerous BSONElement string extraction methods | Matt Kneiser | |
| - Fix: Change return type of BSONObj::getStringField to include size (StringData vs. char*). A char* only contains the data with an ending NULL termination. Whereas a StringData contains data + size so caller knows how to interpret data if there are embedded NULLs. - Cleanup: Remove old tag - CachedSizeTag - that disambiguated BSONElement ctors. A dangling reference to 'maxLen' in a comment led me to this historical issue. $ git log -S'maxLen' -- src/mongo/bson/bsonelement.h commit 0d38ef5 Author: Mathias Stearn mathias@10gen.com Date: Tue Dec 19 14:23:08 2017 -0500 SERVER-32302 Compute BSONElement sizes eagerly - Test: Add tests for NULL bytes being returned by getStringField - $ ninja -j400 +bson_obj_test - Cleanup: Move BSONElement::valuestr() from public to private - Cleanup: Remove BSONElement::valuestrsafe() - Cleanup: Remove all external callers of valuestr/valuestrsafe and cleanup their callsites with better alternatives. - Cleanup: Make multi-line BSONElement & BSONObj public API comments conform to style guidelines - Nit: Fix spelling in a comment | |||
| 2021-12-07 | SERVER-61615 Parse authenticated user from security token and add to ↵ | Sara Golemon | |
| authorization session | |||
| 2021-11-11 | SERVER-61387 Make sure setRandomSeed() prints the exact value it chose | David Percy | |
| 2021-08-14 | SERVER-58670 Modernize DBClientBase query interface to avoid ↵ | Irina Yatsenko | |
| OP_QUERY-derived characteristics | |||
| 2021-08-02 | SERVER-58703 Change internal client to only support the OP_MSG RPC protocol | Yoonsoo Kim | |
| 2021-07-05 | SERVER-57605 Expose Decimal128 equality comparison helper to shell | Arun Banala | |
| 2021-07-01 | SERVER-57388 Remove readMode/writeMode/rpcProtocols/useLegacyWriteOps shell ↵ | Yoonsoo Kim | |
| command-line parameters | |||
| 2021-01-07 | SERVER-53423: Make ConnectString::connect return a status instead of setting ↵ | Andrew Shuvalov | |
| error message | |||
| 2021-01-07 | Revert "SERVER-53423: Make ConnectString::connect return a status instead of ↵ | Pavi Vetriselvan | |
| setting error message" This reverts commit ad1169d34cbd457a4d0637230e615bdf1d177531. | |||
| 2021-01-07 | SERVER-53423: Make ConnectString::connect return a status instead of setting ↵ | Andrew Shuvalov | |
| error message | |||
| 2020-10-13 | SERVER-50917 util/ctype.h to replace <cctype> & <ctype.h> funcs | Billy Donahue | |
| 2020-09-25 | SERVER-51084 tweak range loop variable types to fix xcode build | Billy Donahue | |
| 2020-08-20 | SERVER-49380 Add API params to mongo shell | A. Jesse Jiryu Davis | |
