Skip to content

Commit 0bd17db

Browse files
committed
feat: Update to node v22.5.0
1 parent f7a74eb commit 0bd17db

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const path = {
1010
dirname: { [READ]: { supported: ["0.1.16"] } },
1111
extname: { [READ]: { supported: ["0.1.25"] } },
1212
format: { [READ]: { supported: ["0.11.15"] } },
13+
matchesGlob: { [READ]: { experimental: ["22.5.0"] } },
1314
isAbsolute: { [READ]: { supported: ["0.11.2"] } },
1415
join: { [READ]: { supported: ["0.1.16"] } },
1516
normalize: { [READ]: { supported: ["0.1.23"] } },

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

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ const process = {
1717
execArgv: { [READ]: { supported: ["0.7.7"] } },
1818
execPath: { [READ]: { supported: ["0.1.100"] } },
1919
exitCode: { [READ]: { supported: ["0.11.8"] } },
20+
finalization: {
21+
register: { [READ]: { experimental: ["22.5.0"] } },
22+
registerBeforeExit: { [READ]: { experimental: ["22.5.0"] } },
23+
unregister: { [READ]: { experimental: ["22.5.0"] } },
24+
},
2025
mainModule: {
2126
[READ]: {
2227
supported: ["0.1.17"],
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"use strict"
2+
3+
const { READ } = require("@eslint-community/eslint-utils")
4+
5+
/** @type {import('../types.js').SupportVersionTraceMap} */
6+
const sqlite = {
7+
DatabaseSync: { [READ]: { supported: ["22.5.0"] } },
8+
StatementSync: { [READ]: { supported: ["22.5.0"] } },
9+
}
10+
11+
/** @type {import('../types.js').SupportVersionTraceMap} */
12+
module.exports = {
13+
"node:sqlite": {
14+
[READ]: { experimental: ["22.5.0"] },
15+
...sqlite,
16+
},
17+
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const worker_threads = {
1919
markAsUntransferable: { [READ]: { supported: ["14.5.0", "12.19.0"] } },
2020
isMarkedAsUntransferable: { [READ]: { supported: ["21.0.0"] } },
2121
moveMessagePortToContext: { [READ]: { supported: ["11.13.0"] } },
22+
postMessageToThread: { [READ]: { experimental: ["22.5.0"] } },
2223
receiveMessageOnPort: { [READ]: { supported: ["12.3.0"] } },
2324
setEnvironmentData: {
2425
[READ]: {

0 commit comments

Comments
 (0)