chore: clear safe dev-only Dependabot alerts via npm audit fix - #248
Open
deathbird wants to merge 1 commit into
Open
chore: clear safe dev-only Dependabot alerts via npm audit fix#248deathbird wants to merge 1 commit into
deathbird wants to merge 1 commit into
Conversation
Regenerates package-lock.json with `npm audit fix` (no --force), pulling in patched versions that fit within existing dependency ranges. No package.json changes; nothing consumers install is affected (every alert is development scope). Clears ~13 Dependabot alerts including the handlebars critical (4.7.8 -> 4.7.9), plus form-data, lodash, braces, minimatch, qs, tough-cookie, tmp, picomatch and others. Does NOT clear the remaining criticals/highs that require major bumps of lerna@4's old transitive deps (tar 7.x, parse-url 8.x) or that have no patch (ip, request, lodash.template). Those need a lerna upgrade and are tracked separately. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KCnNk8wHfxAovnhYmVEBe2
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.
What
Regenerates
package-lock.jsonwithnpm audit fix(no--force). Lockfile only, nopackage.jsonchanges.Impact
Clears ~13 Dependabot alerts, including the handlebars critical (4.7.8 → 4.7.9), plus
form-data,lodash,braces,minimatch,qs,tough-cookie,tmp,picomatchand others. npm's own audit count drops 59 → 46.Risk
Low. Every alert in this repo is development scope — none of these packages ship in the published
@transifex/*packages. This only moves transitive dev/build dependencies to patched versions that already fit within existing ranges (no direct dependency changes). Dry-run install resolves cleanly; CI (bootstrap → build → lint → test) is the gate.What this does NOT fix
The remaining criticals/highs need major bumps of
lerna@4's old transitive deps (tar7.x,parse-url8.x) that fall outside its ranges, or have no patch at all (ip,request,lodash.template). ~37 of the 40 alerts trace tolerna@4.0.0. Clearing those requires upgrading lerna, which removedbootstrap/linkin v5 and means migrating the monorepo to npm workspaces — tracked as a separate follow-up.🤖 Generated with Claude Code