Skip to content

Commit a52c968

Browse files
feat(no-unsupported): support Node 23.2.0 & 23.3.0 (#390)
1 parent c8fbf00 commit a52c968

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ const Module = {
2020
},
2121
},
2222
enableCompileCache: { [READ]: { experimental: ["22.8.0"] } },
23+
findPackageJSON: { [READ]: { experimental: ["23.2.0"] } },
2324
flushCompileCache: { [READ]: { experimental: ["23.0.0", "22.10.0"] } },
2425
getCompileCacheDir: { [READ]: { experimental: ["22.8.0"] } },
2526
isBuiltin: { [READ]: { supported: ["18.6.0", "16.17.0"] } },
2627
register: { [READ]: { experimental: ["20.6.0"] } },
28+
stripTypeScriptTypes: { [READ]: { experimental: ["23.2.0"] } },
2729
syncBuiltinESMExports: { [READ]: { supported: ["12.12.0"] } },
2830
findSourceMap: { [READ]: { supported: ["13.7.0", "12.17.0"] } },
2931
SourceMap: { [READ]: { supported: ["13.7.0", "12.17.0"] } },

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ const process = {
5555
experimental: ["11.8.0"],
5656
supported: ["13.12.0", "12.17.0"],
5757
},
58+
excludeEnv: { [READ]: { supported: ["23.3.0"] } },
5859
},
5960
sourceMapsEnabled: { [READ]: { experimental: ["20.7.0"] } },
6061
stdin: {

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ const util = {
9494
deprecate: { [READ]: { supported: ["0.8.0"] } },
9595
format: { [READ]: { supported: ["0.5.3"] } },
9696
formatWithOptions: { [READ]: { supported: ["10.0.0"] } },
97-
getCallSite: { [READ]: { experimental: ["22.9.0"] } },
97+
getCallSite: {
98+
[READ]: { deprecated: ["23.3.0"], experimental: ["22.9.0"] },
99+
},
100+
getCallSites: { [READ]: { experimental: ["23.3.0"] } },
98101
getSystemErrorName: { [READ]: { supported: ["9.7.0", "8.12.0"] } },
99102
getSystemErrorMap: { [READ]: { supported: ["16.0.0", "14.17.0"] } },
100103
getSystemErrorMessage: { [READ]: { supported: ["23.1.0"] } },

0 commit comments

Comments
 (0)