Skip to content

Commit

Permalink
feat(no-unsupported): support node 22.12.0 (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
scagood authored Dec 6, 2024
1 parent ccf5f9e commit af4f774
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions lib/unsupported-features/node-builtins-modules/sqlite.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ const { READ } = require("@eslint-community/eslint-utils")
const sqlite = {
DatabaseSync: { [READ]: { supported: ["22.5.0"] } },
StatementSync: { [READ]: { supported: ["22.5.0"] } },
SQLITE_CHANGESET_OMIT: { [READ]: { supported: ["22.12.0"] } },
SQLITE_CHANGESET_REPLACE: { [READ]: { supported: ["22.12.0"] } },
SQLITE_CHANGESET_ABORT: { [READ]: { supported: ["22.12.0"] } },
}

/**
Expand Down
6 changes: 3 additions & 3 deletions lib/unsupported-features/node-builtins-modules/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ const util = {
format: { [READ]: { supported: ["0.5.3"] } },
formatWithOptions: { [READ]: { supported: ["10.0.0"] } },
getCallSite: {
[READ]: { deprecated: ["23.3.0"], experimental: ["22.9.0"] },
[READ]: { deprecated: ["23.3.0", "22.12.0"], experimental: ["22.9.0"] },
},
getCallSites: { [READ]: { experimental: ["23.3.0"] } },
getCallSites: { [READ]: { experimental: ["23.3.0", "22.12.0"] } },
getSystemErrorName: { [READ]: { supported: ["9.7.0", "8.12.0"] } },
getSystemErrorMap: { [READ]: { supported: ["16.0.0", "14.17.0"] } },
getSystemErrorMessage: { [READ]: { supported: ["23.1.0"] } },
getSystemErrorMessage: { [READ]: { supported: ["23.1.0", "22.12.0"] } },
inherits: { [READ]: { supported: ["0.3.0"] } },
inspect: {
[READ]: { supported: ["0.3.0"] },
Expand Down

0 comments on commit af4f774

Please sign in to comment.