Skip to content

Commit 76522a7

Browse files
committed
fix(node-builtins-modules/tls.js): Update minimal version
`tls.DEFAULT_CIPHERS` has been available since Node.js 0.11.3. This configuration has a faulty listing that was copied verbatim from a faulty listing in the Node.js documentation. See nodejs/node#59246 for additional details. Fixes #483
1 parent f468a1a commit 76522a7

File tree

1 file changed

+1
-1
lines changed
  • lib/unsupported-features/node-builtins-modules

1 file changed

+1
-1
lines changed

lib/unsupported-features/node-builtins-modules/tls.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const tls = {
1010
DEFAULT_ECDH_CURVE: { [READ]: { supported: ["0.11.13"] } },
1111
DEFAULT_MAX_VERSION: { [READ]: { supported: ["11.4.0"] } },
1212
DEFAULT_MIN_VERSION: { [READ]: { supported: ["11.4.0"] } },
13-
DEFAULT_CIPHERS: { [READ]: { supported: ["19.8.0", "18.16.0"] } },
13+
DEFAULT_CIPHERS: { [READ]: { supported: ["0.11.3"] } },
1414
checkServerIdentity: { [READ]: { supported: ["0.8.4"] } },
1515
connect: { [READ]: { supported: ["0.11.3"] } },
1616
createSecureContext: { [READ]: { supported: ["0.11.13"] } },

0 commit comments

Comments
 (0)