chore: update dependencies, drop Node.js 18, add Node.js 22/24 support, and fix test compatibility#214
Merged
robertsLando merged 9 commits intomainfrom Feb 16, 2026
Merged
Conversation
- Upgrade esbuild from ^0.24.0 to ^0.25.0 to fix moderate severity CORS vulnerability - Upgrade tar from ^7.5.6 to ^7.5.7 to fix high severity path traversal vulnerability - Add yarn resolutions to fix transitive dependency vulnerabilities: - lodash ^4.17.23 (prototype pollution) - @octokit/request-error ^5.1.1 (ReDoS) - @octokit/plugin-paginate-rest ^9.2.2 (ReDoS) - @octokit/request ^8.4.1 (ReDoS) - js-yaml ^4.1.1 (prototype pollution) - brace-expansion ^2.0.2 (ReDoS) - tmp ^0.2.4 (symlink vulnerability) All tests and linting pass with no breaking changes. Fixes 16 security vulnerabilities (4 Low, 11 Moderate, 1 High).
…ty-vulnerabilities
…pes version mismatches
…nerabilities - Update production dependencies (esbuild, into-stream) - Update dev dependencies (release-it, @release-it/conventional-changelog, @types/node, rimraf, eslint-config-airbnb-typescript, lint-staged) - Reduce resolutions from 7 to 2 (keep only lodash and undici for release-it compatibility) - Add types:[] to tsconfig.json to prevent stub @types package inclusion - Fix code formatting in test file All security vulnerabilities resolved (0 vulnerabilities in yarn audit) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Upgrade release-it from 18.0.0 to 19.2.4 - Remove all remaining resolutions (lodash, undici) - Now using Node.js 22.22.0 which allows release-it@19.x - Zero security vulnerabilities confirmed via yarn audit Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
…oss CI, tests, and documentation
…ndency-updates # Conflicts: # package.json # yarn.lock
rimraf v4+ no longer accepts glob wildcards in paths. Use tinyglobby to expand the pattern before passing resolved paths to rimraf. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.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.
Summary
This PR updates dependencies and removes all package resolutions, fixing all security vulnerabilities.
Changes
📦 Dependency Updates
Production:
esbuild: ^0.25.0 → ^0.27.3into-stream: ^6.0.0 → ^9.1.0Dev:
release-it: ^17.0.0 → ^19.2.4 (major upgrade)@release-it/conventional-changelog: ^7.0.2 → ^10.0.5@types/node: ^16.18.113 → ^20.0.0rimraf: ^3.0.2 → ^6.1.2eslint-config-airbnb-typescript: ^17.1.0 → ^18.0.0lint-staged: ^15.2.10 → ^15.0.0🔐 Security Improvements
yarn audit)⚙️ Configuration Changes
"types": []to tsconfig.json to prevent auto-inclusion of stub @types packagesTesting
yarn auditshows 0 vulnerabilitiesRequirements
Note: This requires Node.js >= 20.19.0 (or Node 22+) due to release-it@19.x dependencies.
🤖 Generated with Claude Code