Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ variable. For detailed instructions for each of our supported platforms, please
--tlsCRLFile [arg] Specifies the .pem file that contains the Certificate Revocation List
--tlsDisabledProtocols [arg] Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]
--tlsUseSystemCA Load the operating system trusted certificate list
--tlsFIPSMode Enable the system TLS library's FIPS mode

API version options:

Expand Down
1 change: 1 addition & 0 deletions packages/cli-repl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ CLI interface for [MongoDB Shell][mongosh], an extension to Node.js REPL with Mo
--tlsCertificateSelector [arg] TLS Certificate in system store (Windows and macOS only)
--tlsDisabledProtocols [arg] Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]
--tlsUseSystemCA Load the operating system trusted certificate list
--tlsFIPSMode Enable the system TLS library's FIPS mode

API version options:

Expand Down
1 change: 1 addition & 0 deletions packages/cli-repl/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export const USAGE = `
--tlsCRLFile [arg] ${i18n.__('cli-repl.args.tlsCRLFile')}
--tlsDisabledProtocols [arg] ${i18n.__('cli-repl.args.tlsDisabledProtocols')}
--tlsUseSystemCA ${i18n.__('cli-repl.args.tlsUseSystemCA')}
--tlsFIPSMode ${i18n.__('cli-repl.args.tlsFIPSMode')}

${clr(i18n.__('cli-repl.args.apiVersionOptions'), 'mongosh:section-header')}

Expand Down
1 change: 1 addition & 0 deletions packages/i18n/src/locales/en_US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const translations: Catalog = {
tlsCRLFile: 'Specifies the .pem file that contains the Certificate Revocation List',
tlsDisabledProtocols: 'Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]',
tlsUseSystemCA: 'Load the operating system trusted certificate list',
tlsFIPSMode: 'Enable the system TLS library\'s FIPS mode',
apiVersionOptions: 'API version options:',
apiVersion: 'Specifies the API version to connect with',
apiStrict: 'Use strict API version mode',
Expand Down