fix(deps): update isolated-vm to ^6.0.0 for Node 24 LTS support #28
+2
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Updates
isolated-vmpeer and dev dependencies from^5.0.1to^6.0.0to support Node.js 24 (current LTS).Fixes #27
Problem
isolated-vm@5.xuses V8 C++ APIs that changed in Node 24, causing build failures:Solution
isolated-vm@6.0.0+was rebuilt with Node 24 support:engines: ">=22.0.0"_nodeVersion: "24.4.0"Changes
"peerDependencies": { - "isolated-vm": "^5.0.1" + "isolated-vm": "^6.0.0" }, "devDependencies": { - "isolated-vm": "^5.0.1", + "isolated-vm": "^6.0.0", }Note
This bumps the minimum Node version for
isolated-vmfrom 16 to 22. Since@utcp/code-modealready requiresnode >= 18, this only affects users on Node 18-21 who would need to stay on an older version.Summary by cubic
Adds Node.js 24 LTS support by fixing isolated-vm build errors caused by V8 API changes.
Dependencies
Migration
Written for commit 4980d9a. Summary will update on new commits.