Remove Node 20 support, harden engine requirements#280
Merged
Conversation
🧪 CI ResultsFormatting
Linting
TestsJavaScript Runtimes
Rust Library
Overall Status: ✅ All checks passing Last updated: 2026-05-17 00:23:45 UTC | View CI Run 🤖 |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 70a228c. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

With our recent migration to PNPM 11 and the recent EOL for Node 20, I'm dropping Node 20 support. I'm also using this opportunity to harden the engine requirements and add a new release test run to ensure compatibility with Node 24.
Note
Medium Risk
Medium risk because it introduces a breaking runtime requirement bump (Node >=22) and changes release/CI matrices to test/publish against new Node versions, which could affect build and publishing behavior.
Overview
Updates runtime support to require Node.js >=22 (and declares minimum versions for Deno and Bun) and adds a repo-wide
.node-versionas the pinned primary Node version.GitHub Actions workflows are adjusted to use
.node-versionfor installs, and the release workflow now tests artifacts against Node 22 and 24 while only running the full cross-runtime suite on the primary Node version.pnpm configuration is tightened by moving
minimumReleaseAgetopnpm-workspace.yamland switching the Node test runner invocation fromnpx tsxtopnpm exec tsx.Reviewed by Cursor Bugbot for commit 9a8aa0e. Bugbot is set up for automated code reviews on this repo. Configure here.