mongosh 2.2.15 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -56,7 +56,6 @@ of mongosh, visit https://www.mongodb.com/try/download/shell.
56
56
  --tlsCertificateSelector [arg] TLS Certificate in system store (Windows and macOS only)
57
57
  --tlsCRLFile [arg] Specifies the .pem file that contains the Certificate Revocation List
58
58
  --tlsDisabledProtocols [arg] Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]
59
- --tlsUseSystemCA Load the operating system trusted certificate list
60
59
  --tlsFIPSMode Enable the system TLS library's FIPS mode
61
60
 
62
61
  API version options:
@@ -73,6 +72,20 @@ of mongosh, visit https://www.mongodb.com/try/download/shell.
73
72
  --keyVaultNamespace [arg] database.collection to store encrypted FLE parameters
74
73
  --kmsURL [arg] Test parameter to override the URL of the KMS endpoint
75
74
 
75
+ oidcFlows?: string;
76
+ oidcRedirectUri?: string;
77
+ oidcTrustedEndpoint?: boolean;
78
+ oidcIdTokenAsAccessToken?: boolean;
79
+ oidcDumpTokens?: boolean | 'redacted' | 'include-secrets';
80
+
81
+ OIDC auth options:
82
+
83
+ --oidcFlows[=auth-code,device-auth] Supported OIDC auth flows
84
+ --oidcRedirectUri[=url] Local auth code flow redirect URL [http://localhost:27097/redirect]
85
+ --oidcTrustedEndpoint Treat the cluster/database mongosh as a trusted endpoint
86
+ --oidcIdTokenAsAccessToken Use ID tokens in place of access tokens for auth
87
+ --oidcDumpTokens[=mode] Debug OIDC by printing tokens to mongosh's output [full|include-secrets]
88
+
76
89
  DB Address Examples:
77
90
 
78
91
  foo Foo database on local machine
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mongosh",
3
- "version": "2.2.15",
3
+ "version": "2.3.0",
4
4
  "description": "MongoDB Shell CLI REPL",
5
5
  "keywords": [
6
6
  "mongosh",
@@ -39,7 +39,7 @@
39
39
  "variants": []
40
40
  },
41
41
  "dependencies": {
42
- "@mongosh/cli-repl": "2.2.15"
42
+ "@mongosh/cli-repl": "2.3.0"
43
43
  },
44
- "gitHead": "1570f12d8dcdbf4668e2323edc124fd9c467e9f5"
44
+ "gitHead": "2013159f06f902b4e9a2060df411c6b5646d49d4"
45
45
  }