Skip to content

Commit 932a2fd

Browse files
committed
feat: support node 22.19
1 parent 51bf879 commit 932a2fd

File tree

6 files changed

+32
-7
lines changed

6 files changed

+32
-7
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const { READ } = require("@eslint-community/eslint-utils")
66
* @satisfies {import('../types.js').SupportVersionTraceMap}
77
*/
88
const assert = {
9+
Assert: { [READ]: { supported: ["22.19.0"] } },
910
assert: { [READ]: { supported: ["0.5.9"] } },
1011
deepEqual: { [READ]: { supported: ["0.1.21"] } },
1112
deepStrictEqual: { [READ]: { supported: ["1.2.0"] } },

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,22 @@ module.exports = {
3737
[READ]: { supported: ["14.13.1", "12.20.0"] },
3838
...http,
3939
},
40+
"node:_http_agent": {
41+
[READ]: { deprecated: ["22.19.0"] },
42+
},
43+
"node:_http_client": {
44+
[READ]: { deprecated: ["22.19.0"] },
45+
},
46+
"node:_http_common": {
47+
[READ]: { deprecated: ["22.19.0"] },
48+
},
49+
"node:_http_incoming": {
50+
[READ]: { deprecated: ["22.19.0"] },
51+
},
52+
"node:_http_outgoing": {
53+
[READ]: { deprecated: ["22.19.0"] },
54+
},
55+
"node:_http_server": {
56+
[READ]: { deprecated: ["22.19.0"] },
57+
},
4058
}

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ const common_objects = {
1414
requestWillBeSent: { [READ]: { experimental: ["22.6.0", "20.18.0"] } },
1515
responseReceived: { [READ]: { experimental: ["22.6.0", "20.18.0"] } },
1616
},
17+
NetworkResources: {
18+
put: { [READ]: { experimental: ["22.19.0"] } },
19+
},
1720
console: { [READ]: { supported: ["8.0.0"] } },
1821
close: { [READ]: { supported: ["9.0.0"] } },
1922
open: { [READ]: { supported: ["8.0.0"] } },

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ const process = {
107107
moveCursor: { [READ]: { supported: ["0.7.7"] } },
108108
rows: { [READ]: { supported: ["0.7.7"] } },
109109
},
110+
threadCpuUsage: { [READ]: { supported: ["22.19.0"] } },
110111
throwDeprecation: { [READ]: { supported: ["0.9.12"] } },
111112
title: { [READ]: { supported: ["0.1.104"] } },
112113
traceDeprecation: { [READ]: { supported: ["0.8.0"] } },

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

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@ const { READ } = require("@eslint-community/eslint-utils")
66
* @satisfies {import('../types.js').SupportVersionTraceMap}
77
*/
88
const tls = {
9-
rootCertificates: { [READ]: { supported: ["12.3.0"] } },
10-
DEFAULT_ECDH_CURVE: { [READ]: { supported: ["0.11.13"] } },
11-
DEFAULT_MAX_VERSION: { [READ]: { supported: ["11.4.0"] } },
12-
DEFAULT_MIN_VERSION: { [READ]: { supported: ["11.4.0"] } },
13-
DEFAULT_CIPHERS: { [READ]: { supported: ["19.8.0", "18.16.0"] } },
149
checkServerIdentity: { [READ]: { supported: ["0.8.4"] } },
1510
connect: { [READ]: { supported: ["0.11.3"] } },
1611
createSecureContext: { [READ]: { supported: ["0.11.13"] } },
1712
createSecurePair: {
1813
[READ]: { supported: ["0.3.2"], deprecated: ["0.11.3"] },
1914
},
2015
createServer: { [READ]: { supported: ["0.3.2"] } },
21-
getCiphers: { [READ]: { supported: ["0.10.2"] } },
16+
CryptoStream: { [READ]: { supported: ["0.3.4"], deprecated: ["0.11.3"] } },
17+
DEFAULT_CIPHERS: { [READ]: { supported: ["19.8.0", "18.16.0"] } },
18+
DEFAULT_ECDH_CURVE: { [READ]: { supported: ["0.11.13"] } },
19+
DEFAULT_MAX_VERSION: { [READ]: { supported: ["11.4.0"] } },
20+
DEFAULT_MIN_VERSION: { [READ]: { supported: ["11.4.0"] } },
2221
getCACertificates: { [READ]: { supported: ["22.15.0"] } },
22+
getCiphers: { [READ]: { supported: ["0.10.2"] } },
23+
rootCertificates: { [READ]: { supported: ["12.3.0"] } },
2324
SecureContext: { [READ]: { supported: ["0.11.13"] } },
24-
CryptoStream: { [READ]: { supported: ["0.3.4"], deprecated: ["0.11.3"] } },
2525
SecurePair: { [READ]: { supported: ["0.3.2"], deprecated: ["0.11.3"] } },
2626
Server: { [READ]: { supported: ["0.3.2"] } },
27+
setDefaultCACertificates: { [READ]: { supported: ["22.19.0"] } },
2728
TLSSocket: { [READ]: { supported: ["0.11.4"] } },
2829
}
2930

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ const util = {
115115
[READ]: { experimental: ["18.3.0", "16.17.0"], supported: ["20.0.0"] },
116116
},
117117
parseEnv: { [READ]: { supported: ["20.12.0", "21.7.0"] } },
118+
setTraceSigInt: { [READ]: { supported: ["22.19.0"] } },
118119
stripVTControlCharacters: { [READ]: { supported: ["16.11.0"] } },
119120
styleText: { [READ]: { supported: ["20.12.0", "21.7.0", "22.13.0"] } },
120121
toUSVString: { [READ]: { supported: ["16.8.0", "14.18.0"] } },

0 commit comments

Comments
 (0)