Skip to content

Commit

Permalink
feat(no-unsupported): support Node 23.2.0 & 23.3.0 (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Nov 21, 2024
1 parent c8fbf00 commit a52c968
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/unsupported-features/node-builtins-modules/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ const Module = {
},
},
enableCompileCache: { [READ]: { experimental: ["22.8.0"] } },
findPackageJSON: { [READ]: { experimental: ["23.2.0"] } },
flushCompileCache: { [READ]: { experimental: ["23.0.0", "22.10.0"] } },
getCompileCacheDir: { [READ]: { experimental: ["22.8.0"] } },
isBuiltin: { [READ]: { supported: ["18.6.0", "16.17.0"] } },
register: { [READ]: { experimental: ["20.6.0"] } },
stripTypeScriptTypes: { [READ]: { experimental: ["23.2.0"] } },
syncBuiltinESMExports: { [READ]: { supported: ["12.12.0"] } },
findSourceMap: { [READ]: { supported: ["13.7.0", "12.17.0"] } },
SourceMap: { [READ]: { supported: ["13.7.0", "12.17.0"] } },
Expand Down
1 change: 1 addition & 0 deletions lib/unsupported-features/node-builtins-modules/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const process = {
experimental: ["11.8.0"],
supported: ["13.12.0", "12.17.0"],
},
excludeEnv: { [READ]: { supported: ["23.3.0"] } },
},
sourceMapsEnabled: { [READ]: { experimental: ["20.7.0"] } },
stdin: {
Expand Down
5 changes: 4 additions & 1 deletion lib/unsupported-features/node-builtins-modules/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ const util = {
deprecate: { [READ]: { supported: ["0.8.0"] } },
format: { [READ]: { supported: ["0.5.3"] } },
formatWithOptions: { [READ]: { supported: ["10.0.0"] } },
getCallSite: { [READ]: { experimental: ["22.9.0"] } },
getCallSite: {
[READ]: { deprecated: ["23.3.0"], experimental: ["22.9.0"] },
},
getCallSites: { [READ]: { experimental: ["23.3.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"] } },
Expand Down

0 comments on commit a52c968

Please sign in to comment.