Skip to content

Commit af4f774

Browse files
authoredDec 6, 2024··
feat(no-unsupported): support node 22.12.0 (#393)
1 parent ccf5f9e commit af4f774

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
 

‎lib/unsupported-features/node-builtins-modules/sqlite.js

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ const { READ } = require("@eslint-community/eslint-utils")
88
const sqlite = {
99
DatabaseSync: { [READ]: { supported: ["22.5.0"] } },
1010
StatementSync: { [READ]: { supported: ["22.5.0"] } },
11+
SQLITE_CHANGESET_OMIT: { [READ]: { supported: ["22.12.0"] } },
12+
SQLITE_CHANGESET_REPLACE: { [READ]: { supported: ["22.12.0"] } },
13+
SQLITE_CHANGESET_ABORT: { [READ]: { supported: ["22.12.0"] } },
1114
}
1215

1316
/**

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ const util = {
9595
format: { [READ]: { supported: ["0.5.3"] } },
9696
formatWithOptions: { [READ]: { supported: ["10.0.0"] } },
9797
getCallSite: {
98-
[READ]: { deprecated: ["23.3.0"], experimental: ["22.9.0"] },
98+
[READ]: { deprecated: ["23.3.0", "22.12.0"], experimental: ["22.9.0"] },
9999
},
100-
getCallSites: { [READ]: { experimental: ["23.3.0"] } },
100+
getCallSites: { [READ]: { experimental: ["23.3.0", "22.12.0"] } },
101101
getSystemErrorName: { [READ]: { supported: ["9.7.0", "8.12.0"] } },
102102
getSystemErrorMap: { [READ]: { supported: ["16.0.0", "14.17.0"] } },
103-
getSystemErrorMessage: { [READ]: { supported: ["23.1.0"] } },
103+
getSystemErrorMessage: { [READ]: { supported: ["23.1.0", "22.12.0"] } },
104104
inherits: { [READ]: { supported: ["0.3.0"] } },
105105
inspect: {
106106
[READ]: { supported: ["0.3.0"] },

0 commit comments

Comments
 (0)
Please sign in to comment.