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 @@ -58,6 +58,7 @@ variable. For detailed instructions for each of our supported platforms, please
--tlsAllowInvalidHostnames Allow connections to servers with non-matching hostnames
--tlsAllowInvalidCertificates Allow connections to servers with invalid certificates
--tlsCertificateSelector [arg] TLS Certificate in system store (Windows and macOS only)
--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]

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 @@ -48,6 +48,7 @@ export const USAGE = `
--tlsAllowInvalidHostnames ${i18n.__('cli-repl.args.tlsAllowInvalidHostnames')}
--tlsAllowInvalidCertificates ${i18n.__('cli-repl.args.tlsAllowInvalidCertificates')}
--tlsCertificateSelector [arg] ${i18n.__('cli-repl.args.tlsCertificateSelector')}
--tlsCRLFile [arg] ${i18n.__('cli-repl.args.tlsCRLFile')}
--tlsDisabledProtocols [arg] ${i18n.__('cli-repl.args.tlsDisabledProtocols')}

${clr(i18n.__('cli-repl.args.apiVersionOptions'), ['bold', 'yellow'])}
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 @@ -40,6 +40,7 @@ const translations: Catalog = {
tlsAllowInvalidHostnames: 'Allow connections to servers with non-matching hostnames',
tlsAllowInvalidCertificates: 'Allow connections to servers with invalid certificates',
tlsCertificateSelector: 'TLS Certificate in system store (Windows and macOS only)',
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]',
apiVersionOptions: 'API version options:',
apiVersion: 'Specifies the API version to connect with',
Expand Down