Remove Node.js 18.x support (EOL) and add Node.js 22.x LTS#35
Merged
Conversation
Node.js 18.x has reached End of Life (EOL) and is no longer supported. For production applications, we should use currently supported LTS releases. Changes: - Remove Node.js 18.x from CI matrix (no longer supported) - Add Node.js 22.x (current Active LTS) to CI matrix - Update package.json engines requirement from >=18.0.0 to >=20.0.0 - Now testing on Node.js 20.x (Maintenance LTS) and 22.x (Active LTS) Node.js 22.x provides Active LTS support until late 2025 and maintenance support until April 2027, making it the recommended choice for long-term production use. Resolves devill#34 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Collaborator
Author
|
@devill smal update of supported node versions |
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.
Summary
Changes
Test Plan
GitHub Actions Status
✅ Node.js 20.x: Passed (40s)
✅ Node.js 22.x: Passed (39s)
All tests are passing on both supported Node.js versions, confirming the migration is successful.
Rationale
Node.js 18.x has reached End of Life and is no longer receiving security updates or bug fixes. For production applications, we should only use currently supported LTS releases.
Resolves #34
🤖 Generated with Claude Code