From 6b20dc30b0588f50544a89eb088264fa2a330fa6 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Thu, 15 Jun 2023 11:00:06 +0200 Subject: [PATCH] Make the relaxed TLS config description a bit more general Still doing some testing, but it appears that with Node v18+ it's no longer possible to support very old TLS versions that we supported before. Unfortunately v16 is EOL imminently so there's not much option. For now, we'll leave this description generic and see if anybody does indeed need this old-TLS fallback support. --- src/components/settings/connection-settings-card.tsx | 6 +++--- src/components/view/http/http-error-header.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/settings/connection-settings-card.tsx b/src/components/settings/connection-settings-card.tsx index ee50b30d..a6807f18 100644 --- a/src/components/settings/connection-settings-card.tsx +++ b/src/components/settings/connection-settings-card.tsx @@ -674,9 +674,9 @@ export class ConnectionSettingsCard extends React.Component< validationFn={validateHost} /> - Requests to these hosts will skip certificate validation and/or may use older TLS - versions, back to TLSv1. These requests will be successful regardless of any - self-signed, expired or invalid HTTPS configurations. + Requests to these hosts will skip certificate validation and accept some older + TLS configurations. These requests will be successful regardless of any self-signed, + expired or otherwise invalid HTTPS configurations. } diff --git a/src/components/view/http/http-error-header.tsx b/src/components/view/http/http-error-header.tsx index 36a5410a..60d9904e 100644 --- a/src/components/view/http/http-error-header.tsx +++ b/src/components/view/http/http-error-header.tsx @@ -234,7 +234,7 @@ export const HttpErrorHeader = (p: { : <> Pro users can relax HTTPS requirements for configured hosts to - accept older TLS versions and self-signed/invalid certificates, and + accept older TLS configurations and self-signed/invalid certificates, and configure per-host client certificates for authentication. }