Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-28450 add support for causal consistency to mongo shell | Misha Tyulenev | 2017-04-19 | 1 | -0/+123 |
| | |||||
* | SERVER-27576 Fix quit() in shell and all the tests that depend on it | Jonathan Reams | 2017-01-12 | 1 | -0/+2 |
| | |||||
* | SERVER-27289 fix ConnectionString parsing in shell | Matt Cotter | 2016-12-13 | 1 | -4/+5 |
| | |||||
* | Revert "SERVER-27289 fix ConnectionString parsing in shell" | Matt Cotter | 2016-12-12 | 1 | -2/+4 |
| | | | | This reverts commit b9c59fd5c79c0b0d9c845e3c05e50ab1dd9f7f4a. | ||||
* | SERVER-27289 fix ConnectionString parsing in shell | Matt Cotter | 2016-12-12 | 1 | -4/+2 |
| | |||||
* | SERVER-21745 change shell to not print readMode/writeMode fallback messages | David Storch | 2016-11-09 | 1 | -2/+0 |
| | |||||
* | SERVER-23219 DBCommandCursor should route getMore operations to original server | Jonathan Reams | 2016-08-29 | 1 | -5/+1 |
| | |||||
* | SERVER-22382 allow mongo --host to take uri | Matt Cotter | 2016-08-18 | 1 | -35/+14 |
| | |||||
* | SERVER-25357 expose read concern setter for shell mongo object | Matt Cotter | 2016-08-12 | 1 | -1/+23 |
| | |||||
* | SERVER-22383 Do not throw in shell if no database is specified in MongoURI | Jonathan Reams | 2016-07-12 | 1 | -1/+1 |
| | |||||
* | SERVER-22347 Use "legacy" read mode for replica set connections. | Max Hirschhorn | 2016-06-16 | 1 | -1/+5 |
| | | | | | | | Adds a Mongo.prototype.isReplicaSetConnection() method to connection objects in the mongo shell. The mongo shell then degrades to use "legacy" read mode for replica set connections because DBCommandCursor doesn't route getMore and killCursors operations to the original server. | ||||
* | SERVER-23971 Clang-Format code | Mark Benvenuto | 2016-05-28 | 1 | -3/+1 |
| | |||||
* | SERVER-12489 Make shell warn if version does not match server's | Joanna Cheng | 2016-05-23 | 1 | -4/+19 |
| | | | | | | Closes #1085 Signed-off-by: Mark Benvenuto <mark.benvenuto@mongodb.com> | ||||
* | SERVER-22469 Format JS code with approved style in src/mongo/shell & ↵ | Jonathan Abrahams | 2016-03-09 | 1 | -89/+86 |
| | | | | src/mongo/scripting | ||||
* | SERVER-22440 fix shell to resolve readMode correctly on first .find() operation | David Storch | 2016-02-08 | 1 | -9/+7 |
| | |||||
* | SERVER-22340 Fix JS lint errors in src/mongo/ with ESLint --fix | Mike Grundy | 2016-02-05 | 1 | -24/+24 |
| | |||||
* | SERVER-21637 add a test for 3.2 shell / 3.0 server find compatibility | David Storch | 2015-12-08 | 1 | -11/+12 |
| | |||||
* | SERVER-20640 Get wire versions from native DBClient instead of running isMaster | Jonathan Reams | 2015-11-05 | 1 | -24/+8 |
| | |||||
* | SERVER-6233 Add URI parsing to mongo shell | Jonathan Reams | 2015-10-13 | 1 | -18/+28 |
| | |||||
* | SERVER-20067 SERVER-19572 set readMode in shell based on wire version | David Storch | 2015-09-30 | 1 | -10/+44 |
| | | | | | | | | | | "compatibility" readMode now causes the shell to detect whether or not to use find/getMore commands based on wire version. "commands" mode forces use of the find/getMore commands, and "legacy" mode forces uses of legacy OP_QUERY/OP_GET_MORE reads. Also configures tests to force use of "commands" or "legacy" mode as appropriate. | ||||
* | SERVER-19493 Include 'code' field in thrown js Error objects where possible | Spencer T Brody | 2015-07-22 | 1 | -3/+3 |
| | |||||
* | SERVER-17286 extend shell to use getMore command if --readMode is commands | David Storch | 2015-07-10 | 1 | -5/+10 |
| | |||||
* | SERVER-18284 use plain Array.isArray instead of polyfills | Adam Midvidy | 2015-05-01 | 1 | -5/+1 |
| | |||||
* | SERVER-18198 use native runCommand method in the shell | Adam Midvidy | 2015-04-29 | 1 | -0/+39 |
| | |||||
* | SERVER-17450 Cleanup SSL test infrastructure | Spencer T Brody | 2015-04-06 | 1 | -1/+1 |
| | |||||
* | Revert "SERVER-17450 Cleanup SSL test infrastructure" | Charlie | 2015-03-24 | 1 | -1/+1 |
| | | | | This reverts commit 43e53251a30e680fb57a3f042f66910355197cde. | ||||
* | SERVER-17450 Cleanup SSL test infrastructure | Spencer T Brody | 2015-03-24 | 1 | -1/+1 |
| | |||||
* | SERVER-17286 add --readMode flag to shell | David Storch | 2015-03-23 | 1 | -0/+25 |
| | | | | | Passing '--readMode commands' to the shell will now cause it to run find using the find command, combined with wire protocol OP_GET_MORE messages. The default readMode remains OP_QUERY style find. | ||||
* | SERVER-15426 shell helpers for log component configuration | Matt Kangas | 2014-10-13 | 1 | -2/+35 |
| | |||||
* | SERVER-14875 explain helpers for the shell | David Storch | 2014-10-13 | 1 | -0/+12 |
| | |||||
* | SERVER-9634 typo fixes | Veres Lajos | 2014-06-09 | 1 | -1/+1 |
| | | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com> | ||||
* | SERVER-10177 Remove all Js instances of "throw 'string';" with "throw Error();" | daveh86 | 2014-05-22 | 1 | -7/+7 |
| | | | | | | Includes both the initial patch to remove all throws and patches for all failing tests Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-13037 Fix misspelling ("compatability" to "compatibility") | Sean Wilkinson | 2014-04-25 | 1 | -1/+1 |
| | | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com> | ||||
* | SERVER-12786: add shell writeMode option | Scott Hernandez | 2014-02-26 | 1 | -12/+41 |
| | |||||
* | SERVER-12127 test of single write results, example of using new write ↵ | Greg Studer | 2014-02-10 | 1 | -2/+2 |
| | | | | command mode | ||||
* | SERVER-12214 Make WriteResult in the shell adhere to write command spec | Randolph Tan | 2014-01-10 | 1 | -2/+6 |
| | | | | Put back original fix by reverting fa01bee42fa6b495474eded723ec0c4a538d802f | ||||
* | Revert "SERVER-12214 Make WriteResult in the shell adhere to write command spec" | Dan Pasette | 2014-01-09 | 1 | -6/+2 |
| | | | | This reverts commit 26fd0b03e7b41940a1b7a6de7d23ea3d00d9dc47. | ||||
* | SERVER-12214 Make WriteResult in the shell adhere to write command spec | Randolph Tan | 2014-01-08 | 1 | -2/+6 |
| | |||||
* | Remove extraneous warning about connecting to a pre-2.5.4 server. | Dan Pasette | 2013-11-20 | 1 | -1/+0 |
| | |||||
* | Downconversion support for mongo shell and typed WriteResults and WriteConcerns | Greg Studer | 2013-11-15 | 1 | -2/+42 |
| | |||||
* | SERVER-11627 Make the shell use write commands by default | Randolph Tan | 2013-11-11 | 1 | -8/+1 |
| | | | | Append --useLegacyWriteOps when running mongo shell. | ||||
* | SERVER-11627 Make the shell use write commands by default | Randolph Tan | 2013-11-08 | 1 | -0/+11 |
| | |||||
* | SERVER-7455 x.509 cluster auth tests and expanded use-ssl passthrough | Andreas Nilsson | 2013-09-30 | 1 | -1/+2 |
| | |||||
* | SERVER-8030 Validate connection string in JavaScript connect() function | Tad Marshall | 2013-03-11 | 1 | -16/+48 |
| | | | | | | | | Validate that the "URL" passed to the connect() function matches one of the accepted formats (host:port/database, host/database or database) before trying to use it to connect to a server. Change a uassert in HostAndPort::init() to an massert to match the massert four lines above it. Add jstest for connect() validation. | ||||
* | SERVER-7423 Support commands for read preference | Randolph Tan | 2012-10-31 | 1 | -0/+21 |
| | | | | Step#1 Add shell helper | ||||
* | bulk move of code to src/ SERVER-4551 | Eliot Horowitz | 2011-12-24 | 1 | -0/+102 |