Skip to content

Commit 06d60ae

Browse files
authoredOct 25, 2024··
feat(no-unsupported): Support node 23.1.0 (#370)
1 parent aee5d96 commit 06d60ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const test = {
3838
MockFunctionContext: { [READ]: { supported: ["19.1.0", "18.13.0"] } },
3939
MockModuleContext: { [READ]: { experimental: ["22.3.0"] } },
4040
MockTracker: { [READ]: { supported: ["19.1.0", "18.13.0"] } },
41-
MockTimers: { [READ]: { experimental: ["20.4.0"] } },
41+
MockTimers: { [READ]: { experimental: ["20.4.0"], supported: ["23.1.0"] } },
4242
TestsStream: { [READ]: { supported: ["18.9.0", "16.19.0"] } },
4343
TestContext: { [READ]: { supported: ["18.0.0", "16.17.0"] } },
4444
SuiteContext: { [READ]: { supported: ["18.7.0", "16.17.0"] } },

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

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const util = {
9191
getCallSite: { [READ]: { experimental: ["22.9.0"] } },
9292
getSystemErrorName: { [READ]: { supported: ["9.7.0", "8.12.0"] } },
9393
getSystemErrorMap: { [READ]: { supported: ["16.0.0", "14.17.0"] } },
94+
getSystemErrorMessage: { [READ]: { supported: ["23.1.0"] } },
9495
inherits: { [READ]: { supported: ["0.3.0"] } },
9596
inspect: {
9697
[READ]: { supported: ["0.3.0"] },

0 commit comments

Comments
 (0)
Please sign in to comment.