summaryrefslogtreecommitdiff
path: root/src/mongo/shell/db.js
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-3788 version of auth() that prompts for password so it is never displayedShreyas Kalyan2019-11-111-3/+8
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-1617/+1601
|
* SERVER-38251 Remove cloneCollection commandZach Yam2019-06-211-27/+0
|
* SERVER-37062 db.watch does not show up in autocomplete or helpDavis Haupt2019-05-301-0/+2
|
* SERVER-41249 Fix special cases for $out to include $mergeCharlie Swanson2019-05-221-5/+10
|
* SERVER-40712 Ensure the dropDatabase() command accepts a write concern.Gregory Wlodarek2019-05-131-9/+8
|
* SERVER-35638 Short timeout to autocomplete collection namesA. Jesse Jiryu Davis2019-04-261-7/+14
| | | | | Also resolves SERVER-40736, test autocompletion of collection names for users without the listCollections permission.
* Revert "SERVER-35638 Short timeout to autocomplete collection names"Justin Seyster2019-04-241-14/+7
| | | | This reverts commit f202c4c1ba24b9f561e8b11dac5b04fa0eeb4919.
* SERVER-35638 Short timeout to autocomplete collection namesA. Jesse Jiryu Davis2019-04-241-7/+14
| | | | | Also resolves SERVER-40736, test autocompletion of collection names for users without the listCollections permission.
* SERVER-40436 Ignore the 'flags' field from the 'create' commandGregory Wlodarek2019-04-111-33/+1
|
* SERVER-38631 Let DriverSession own SessionAwareClient.Siyuan Zhou2019-01-241-2/+2
|
* SERVER-33226: remove getPrevError() commandKim Tao2019-01-101-12/+0
|
* SERVER-36204 Deprecate cloneCollection commandXiangyu Yao2018-11-261-0/+2
|
* SERVER-36064 Alphebetize the output of db.help()Tyler Kaye2018-10-251-6/+5
|
* SERVER-36015 Remove references to system.namespaces and system.indexesDianna Hohensee2018-08-291-50/+6
|
* SERVER-36899 Accept new 'startAfter' option in watch() helpersCharlie Swanson2018-08-281-17/+4
|
* SERVER-36406 Respect _defaultAuthenticationMechanism when providedSara Golemon2018-08-221-0/+6
|
* SERVER-36208 Remove repairDatabase server command and shell helperLouis Williams2018-08-131-10/+0
|
* SERVER-36257 Remove copyDB and clone commandsMaria van Keulen2018-08-071-6/+10
|
* SERVER-35617 Improve free-monitoring message on non-primary nodeMark Benvenuto2018-08-011-0/+6
|
* SERVER-35775 Improve free-monitoring message on down cloud endpointMark Benvenuto2018-08-011-3/+6
|
* SERVER-35579 Improve user experience for db.enableFreeMonitoring() when ↵Mark Benvenuto2018-06-181-3/+3
| | | | endpoint is down
* SERVER-28524 remove group commandKyle Suarez2018-05-301-33/+0
| | | | Users should use the aggregation $group stage instead.
* SERVER-34999 Deprecate clone and copydb commandsMaria van Keulen2018-05-241-2/+6
|
* SERVER-34818 Rename startAtClusterTime to startAtOperationTimeCharlie Swanson2018-05-171-3/+3
| | | | | Also changes the type of the argument from an object with a single 'ts' field to just a Timestamp.
* SERVER-32942: Let users listcollections their own collectionsSpencer Jackson2018-05-161-20/+82
|
* SERVER-34233 Implement shell helpers for free monitoringSara Golemon2018-05-031-0/+34
|
* SERVER-34244 Add nameOnly option to listCollectionsXiangyu Yao2018-04-111-5/+5
|
* SERVER-34001: Add db.watch() shell helper to open a change stream for a databaseNick Zolnierz2018-04-041-0/+23
|
* SERVER-31802 Rip out more dead master-slave code, and the related concept of ↵Andy Schwerin2018-03-151-14/+1
| | | | RID.
* SERVER-32977 Make shell use SASL mechanism negotiationSara Golemon2018-02-241-7/+30
|
* SERVER-32974 Enhance createUser/updateUser to support SCRAM-SHA-256Sara Golemon2018-02-151-1/+1
|
* SERVER-32279 Remove support for authenticating via MONGODB-CRSara Golemon2017-12-181-5/+0
|
* SERVER-32276 Remove support for MONGODB-CR in copydbSara Golemon2017-12-121-1/+1
| | | | This includes removing the copydbgetnonce command entirely.
* SERVER-31394 Create passthrough of existing $changeStream tests to run ↵Bernard Gorman2017-11-201-4/+2
| | | | against sharded collections
* SERVER-31354 Support driver API for changeStreams in the shell.Siyuan Zhou2017-11-161-1/+4
|
* SERVER-30848 make shell getMores use sessionsJason Carey2017-10-031-4/+4
| | | | | The shell should attach the logical session used to initiate cursors (via find or aggregate) and use it for successive getMores.
* SERVER-30679 Integrate causallyConsistentReads into SessionOptions.Max Hirschhorn2017-09-201-1/+1
|
* SERVER-30686 Wire up SessionOptions in more places.Max Hirschhorn2017-08-301-46/+54
| | | | | | Creates a _DummyDriverSession instance when startSession() isn't called so that the DB and DBCollection implementations can rely on the same session-related APIs.
* SERVER-24550 Error out when db.createUser() is used with wrong syntaxBen Shteinfeld2017-08-101-0/+8
|
* SERVER-30080 LogicalSessions in the shellJason Carey2017-08-011-3/+21
| | | | Basic logical session implementation for the shell
* SERVER-19318 Reimplement the currentOp command as a $currentOp aggregationBernard Gorman2017-07-071-6/+96
|
* SERVER-21779 validate DB.runCommand(commandObjOrName, extraKeys) arguments.Benety Goh2017-06-281-7/+38
| | | | | When the command object is passed in as the first argument, any non-empty 'extraKeys' object will return an error.
* SERVER-29319 Delete DBClient::runCommandWithMetadata{,AndTarget}Mathias Stearn2017-06-281-3/+2
|
* SERVER-29100 Wait for the same journaling requirement in get_last_error.jsSiyuan Zhou2017-05-191-1/+3
|
* SERVER-28968: Add causal consistent passthrough suiteMisha Tyulenev2017-05-051-2/+2
|
* SERVER-28450 add support for causal consistency to mongo shellMisha Tyulenev2017-04-191-5/+4
|
* SERVER-27839 Allow for step downs during reconfig in ReplSetTest initiateJudah Schvimer2017-02-271-1/+1
|
* SERVER-28037 Raise default writeConcern wtimeout in db.js to 10 minutesBenety Goh2017-02-171-1/+1
|
* SERVER-4786 Allow specifying sample rate of slow queriesEvan Broder2017-01-261-16/+22
| | | | | | | | | | | | | Adds a sampleRate parameter to the profile command, a value on the interval [0, 1] which indicates which fraction of operations should be randomly sampled for profiling and logging. This allows users to reduce their slowms threshold or increase their profiling level with less performance impact on the system. Closes #1099 Signed-off-by: David Storch <david.storch@10gen.com>