chore: update engines, dependencies & version for a release#432
Merged
mobilemind merged 4 commits intomainfrom May 8, 2026
Merged
chore: update engines, dependencies & version for a release#432mobilemind merged 4 commits intomainfrom
mobilemind merged 4 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project for a release by bumping the minimum supported Node.js/npm toolchain, updating a couple of build-time dependencies, and incrementing the package version accordingly.
Changes:
- Bump
enginesto Node>=26.0.0and npm>=11.14.0and increment version to4.2.4. - Update dev dependencies (
@types/nodeandterser) and refreshpackage-lock.json. - Add a
4.2.4entry to README version notes.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| README.md | Adds release note entry for 4.2.4. |
| package.json | Raises required Node/npm engine minimums, updates dev deps, bumps package version. |
| package-lock.json | Syncs lockfile versions/metadata to match updated deps, engines, and package version. |
Comment on lines
+24
to
+25
| "node": ">=26.0.0", | ||
| "npm": ">=11.14.0" |
Comment on lines
23
to
26
| "engines": { | ||
| "node": ">=24.13.1", | ||
| "npm": ">=11.8.0" | ||
| "node": ">=26.0.0", | ||
| "npm": ">=11.14.0" | ||
| }, |
Comment on lines
23
to
26
| "engines": { | ||
| "node": ">=24.13.1", | ||
| "npm": ">=11.8.0" | ||
| "node": ">=26.0", | ||
| "npm": ">=11.13" | ||
| }, |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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.
chore: update engines, dependencies & version for a release