fix: security dep bumps, tar 7, and Node >=20.17 - #457
Merged
Conversation
✅ Deploy Preview for lando-core ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Bumps [tar](https://github.com/isaacs/node-tar) to 7.5.9 and updates ancestor dependencies [tar](https://github.com/isaacs/node-tar), [@npmcli/arborist](https://github.com/npm/cli/tree/HEAD/workspaces/arborist), [npm-profile](https://github.com/npm/npm-profile) and [pacote](https://github.com/npm/pacote). These dependencies need to be updated together. Updates `tar` from 6.2.1 to 7.5.9 - [Release notes](https://github.com/isaacs/node-tar/releases) - [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md) - [Commits](isaacs/node-tar@v6.2.1...v7.5.9) Updates `@npmcli/arborist` from 6.5.1 to 9.3.0 - [Release notes](https://github.com/npm/cli/releases) - [Changelog](https://github.com/npm/cli/blob/latest/workspaces/arborist/CHANGELOG.md) - [Commits](https://github.com/npm/cli/commits/v9.3.0/workspaces/arborist) Updates `npm-profile` from 9.0.2 to 12.0.1 - [Release notes](https://github.com/npm/npm-profile/releases) - [Changelog](https://github.com/npm/npm-profile/blob/main/CHANGELOG.md) - [Commits](npm/npm-profile@v9.0.2...v12.0.1) Updates `pacote` from 15.2.0 to 21.3.1 - [Release notes](https://github.com/npm/pacote/releases) - [Changelog](https://github.com/npm/pacote/blob/main/CHANGELOG.md) - [Commits](npm/pacote@v15.2.0...v21.3.1) --- updated-dependencies: - dependency-name: tar dependency-version: 7.5.9 dependency-type: indirect - dependency-name: "@npmcli/arborist" dependency-version: 9.3.0 dependency-type: direct:production - dependency-name: npm-profile dependency-version: 12.0.1 dependency-type: direct:production - dependency-name: pacote dependency-version: 21.3.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Regenerate package-lock after rebase onto main and override tar to ^7.5.22 so the critical/high node-tar advisories are actually cleared (not left on 7.5.9).
AaronFeledy
force-pushed
the
fix/pr-433-npm-deps
branch
from
August 10, 2026 02:17
8e81431 to
0c2562a
Compare
AaronFeledy
force-pushed
the
fix/pr-433-npm-deps
branch
from
August 10, 2026 02:18
0c2562a to
0cb9562
Compare
3 tasks
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.

Supersedes #433.
Summary
Takes the Dependabot major bumps for the npm tooling deps and makes sure
taractually lands on a patched version.Dependabot bumped
@npmcli/arborist(^6→^9),npm-profile(^9→^12), andpacote(^15→^21), which pullstarup from 6.x to 7.x.Findings
@npmcli/arborist,npm-profile, andpacoterequire Node^20.17.0 || >=22.9.0, which is stricter than the repo's previous>=20.0.0Changes
package.json:engines.nodefrom>=20.0.0to>=20.17.0package.json:@npmcli/arborist^9.3.0,npm-profile^12.0.1,pacote^21.3.1package.json: newoverridesblock pinningtarto^7.5.22.node-version:20to20.17.0package-lock.jsonWhy the
taroverridetaris transitive-only here (viapacoteand@npmcli/arborist→node-gyp). The bare major bump resolved it to 7.5.9, which is still exposed to the critical node-tar advisory (needs >= 7.5.19) and the follow-up highs (need >= 7.5.21). The override forces^7.5.22across the whole tree so those alerts actually clear.Testing
292 unit tests passing, lint clean.
Follow-up
A separate PR covers the remaining direct-dep bumps (axios, js-yaml, lodash, nanoid, node-forge) and transitive overrides for the other Dependabot alert classes.
Closes #433