Skip to content

Commit 3d5165e

Browse files
committed
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.
1 parent 2ffe44f commit 3d5165e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/settings/connection-settings-card.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -674,9 +674,9 @@ export class ConnectionSettingsCard extends React.Component<
674674
validationFn={validateHost}
675675
/>
676676
<SettingsExplanation>
677-
Requests to these hosts will skip certificate validation and/or may use older TLS
678-
versions, back to TLSv1. These requests will be successful regardless of any
679-
self-signed, expired or invalid HTTPS configurations.
677+
Requests to these hosts will skip certificate validation and accept some older
678+
TLS configurations. These requests will be successful regardless of any self-signed,
679+
expired or otherwise invalid HTTPS configurations.
680680
</SettingsExplanation>
681681
</CollapsibleCard>
682682
}

src/components/view/http/http-error-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export const HttpErrorHeader = (p: {
234234
</>
235235
: <>
236236
Pro users can relax HTTPS requirements for configured hosts to
237-
accept older TLS versions and self-signed/invalid certificates, and
237+
accept older TLS configurations and self-signed/invalid certificates, and
238238
configure per-host client certificates for authentication.
239239
</>
240240
}

0 commit comments

Comments
 (0)