summaryrefslogtreecommitdiff
path: root/src/mongo/shell/shell_options.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-445566 legacy logging cleanupsGabriel Russell2020-01-241-1/+1
|
* SERVER-42937 Implement Support for OCSP Stapling for OpenSSLShreyas Kalyan2020-01-061-0/+1
|
* SERVER-44266 Add IAM client code to shell and clients with mock ECS endpointMark Benvenuto2019-12-261-0/+1
|
* SERVER-45062 Add evergreen builder for JSON log formatHenrik Edin2019-12-181-0/+17
|
* SERVER-44264 Add IAM Client support for EC2 Metadata supportMark Benvenuto2019-12-121-0/+1
|
* SERVER-44142 correctly utilize LogSeverity in logv2Gabriel Russell2019-11-251-2/+2
|
* SERVER-44277 Add capability for shell to use logv2Henrik Edin2019-10-301-0/+4
|
* SERVER-43265 Fix using URI network compressors parameter in shellHenrik Edin2019-10-101-1/+3
|
* SERVER-41874 Add shell option to skip cursor finalize.Siyuan Zhou2019-07-301-0/+1
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-5/+6
|
* SERVER-33749 Add idleSessionTimeout flagRoxane2019-07-091-0/+4
|
* SERVER-40841 Re-issue invalid test certificatesJonathan Reams2019-05-201-1/+1
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-6/+4
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-38503 Empty networkMessageCompressors is an errorAndrew Morrow2019-03-111-4/+2
|
* SERVER-37092 Remove old server parameter APISara Golemon2019-03-031-1/+0
|
* 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-38374 Add redact attribute to IDL based configs/paramsSara Golemon2018-12-061-51/+0
|
* SERVER-38238 Convert shell options to IDLSara Golemon2018-11-271-202/+0
|
* SERVER-35212: Refactor shell code to enable default authentication database ↵Tyler Kaye2018-11-141-1/+0
| | | | as admin
* SERVER-35485 Add compressor capabilities for shell with URI inputTyler Kaye2018-10-251-28/+53
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-15/+17
|
* SERVER-33606 fail to create logical session in shell connected to old serversKevin Pulo2018-09-031-0/+8
| | | | Also add --disableImplicitSessions shell cmdline arg.
* SERVER-36807 Add --setShellParameter to shellSara Golemon2018-08-291-0/+39
|
* SERVER-36744 Fix options parsing for --password without argumentJonathan Reams2018-08-221-2/+8
|
* SERVER-36744 Fix and add tests for command-line redactionJonathan Reams2018-08-211-0/+44
|
* SERVER-33135 Delete code for OP_COMMANDMathias Stearn2018-07-301-3/+2
|
* SERVER-35979 Split ssl_otions and decouple from main runtimeSara Golemon2018-07-091-19/+6
|
* SERVER-32083 Add mention of URIs in mongo --helpGregory Noma2018-06-051-0/+1
|
* SERVER-34805 Refactor the network libraries and move messages types to ↵Andrew Morrow2018-05-051-1/+1
| | | | rpc/protocol
* SERVER-33980 Reduce dependencies for embedded commandsAndrew Morrow2018-03-291-2/+2
|
* SERVER-33300 Integrate TransportLayer with DBClientJonathan Reams2018-03-021-0/+1
|
* SERVER-32683 JS JIT off by defaultJason Carey2018-01-171-4/+16
| | | | Turn off the spidermonkey jit by default.
* SERVER-32164 Fix handling of `authSource` in URIs.ADAM David Alan Martin2017-12-141-11/+17
|
* SERVER-31296 Update sessions, causal, and retryable in the mongo shell.Max Hirschhorn2017-11-081-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Removes the initialClusterTime and initialOperationTime session options. * Enables causal consistency by default when using an explicit session. * Adds a --retryWrites command line option to the mongo shell for enabling retryable writes in the mongo shell. The retryWrites options to SessionOptions is left for convenience with testing. * Renames setClusterTime() to advanceClusterTime(), and adds a corresponding advanceOperationTime() method to DriverSession. * Enables assigning transaction numbers for write commands where ordered=false. * Prevents the mongo shell from sending afterClusterTime or assigning transaction numbers when talking to a stand-alone mongod. * Prevents the mongo shell from assigning transaction numbers when using an unacknowledged (w=0) writeConcern. * Changes DBClientRS to re-discover the current primary of the replica set when it receives an error code representing "not master" in addition to an error message representing "not master". * Adds a shellPrint() pretty-printer for SessionOptions and DriverSession instances so they no longer print out their entire object definition.
* SERVER-31622 Fix bad throwsMathias Stearn2017-11-021-12/+10
|
* SERVER-31061 Add `mongo+srv://` support for URIs.ADAM David Alan Martin2017-10-311-1/+2
| | | | | | | | | The shell now supports parsing and handling `mongo+srv://` style URIs, as part of the DNS Seedlist support. These URIs require DNS SRV and TXT record lookups, for extra configuration options. The shell also supports a (limited) form of connection-failover -- when initially connecting to a non-replica-set cluster, the shell will try each host listed, in order, until a connection can be established.
* SERVER-29687 Add sock.h header where needed for non-ssl buildsAndrew Morrow2017-08-231-0/+1
|
* SERVER-30580 Eliminate UserException and MsgAssertionException typesMathias Stearn2017-08-161-6/+6
| | | | All users were converted to just use AssertionException.
* SERVER-27244 Status usage compile-time facilities.ADAM David Alan Martin2017-06-181-1/+1
| | | | | | | | | | | | | | | | | There are numerous places in the codebase where `mongo::Status` or `mongo::StatusWith< T >` objects are returned and never checked. Many of these are innocuous, but many of them are potentially severe bugs. This change introduces facilities to permit compile-time warning of unchecked `Status` and `StatusWith` usage on clang compilers. It introduces an `ignore` function which is useful to state that a specific "ignored status" case was intentional. It not presently an error, in clang builds, to forget to check a `Status` -- this will come in a later commit. This also introduces a `transitional_ignore` function, which allows for easy continual auditing of the codebase for current "whitelisted" unchecked-status instances. All present "ignored status" cases have been marked `transitional_ignore`.
* SERVER-25932 Make MONGO_EXPORT_SERVER_PARAMETER use AtomicWord instead of ↵Mark Benvenuto2017-01-051-1/+1
| | | | std::atomic
* SERVER-26909 Change client objcheck default help messageADAM David Alan Martin2016-11-041-5/+3
| | | | Invert the help text indicating "default" between `objcheck` and `noobjcheck`.
* SERVER-26638: Add `--objcheck` and `--noobjcheck` options to mongo shell.ADAM David Alan Martin2016-10-181-0/+28
| | | | | | Add flags to disable BSON validity check in client Some performance tests are adversely affected by the BSON checking in the client. Change default for `objcheck` to false for client.
* SERVER-22688 Provide a setParameter and shell option to control the js heap ↵Waley Chen2016-09-151-0/+13
| | | | limit
* Revert "SERVER-22688 Provide a setParameter and shell option to control the ↵Waley Chen2016-09-131-13/+0
| | | | | | js heap limit" This reverts commit 955cf8c998a60a8c2a2493dd428dd3d763e90259.
* SERVER-22688 Provide a setParameter and shell option to control the js heap ↵Waley Chen2016-09-131-0/+13
| | | | limit
* Revert "SERVER-25151 Honor 'ssl' option in URIs passed to the shell"samantharitter2016-09-131-2/+0
| | | | This reverts commit 7c3878adaf73736c33c7f65b718d8b5705c36142.
* SERVER-25151 Honor 'ssl' option in URIs passed to the shellsamantharitter2016-09-131-0/+2
|
* SERVER-25402 Fewer binaries depend on interpolated version infoAndrew Morrow2016-08-151-2/+3
|
* SERVER-25267 SERVER-25265 Integrate compression with networking codeJonathan Reams2016-08-091-1/+2
| | | | and snappy compressor
* SERVER-25264 Add MessageCompressorInterface and MessageCompressorRegistryJonathan Reams2016-08-091-0/+9
|