From 3220d672eee6192383125b4c08651d5655833c92 Mon Sep 17 00:00:00 2001 From: Massimiliano Marcon Date: Wed, 9 Jun 2021 09:12:15 +0200 Subject: [PATCH] fix: add --tlsCRLFile option to help --- README.md | 1 + packages/cli-repl/src/constants.ts | 1 + packages/i18n/src/locales/en_US.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index bbeae4e712..34fe002f06 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/packages/cli-repl/src/constants.ts b/packages/cli-repl/src/constants.ts index cf26b8adb4..72bdd1b395 100644 --- a/packages/cli-repl/src/constants.ts +++ b/packages/cli-repl/src/constants.ts @@ -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'])} diff --git a/packages/i18n/src/locales/en_US.ts b/packages/i18n/src/locales/en_US.ts index bcc12c54f7..bb26a9763d 100644 --- a/packages/i18n/src/locales/en_US.ts +++ b/packages/i18n/src/locales/en_US.ts @@ -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',