chore(deps): override @babel/core to ^7.29.6 (CVE fix) - #1712
Merged
Conversation
10 tasks
cliffhall
force-pushed
the
deps/security-babel-core
branch
from
July 17, 2026 20:26
8ef2ae0 to
b442066
Compare
Member
Author
Contributor
|
Claude finished @cliffhall's task in 2m 1s —— View job Review:
|
10 tasks
cliffhall
force-pushed
the
deps/security-babel-core
branch
2 times, most recently
from
July 18, 2026 00:09
c796500 to
29dc686
Compare
Resolves Dependabot alert #132. Uses a version-targeted override (@babel/core@<=7.29.0) so all copies of the vulnerable range are bumped. Part of #1706. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HiccCEh9mwCfVzE8qYcop1
cliffhall
force-pushed
the
deps/security-babel-core
branch
from
July 18, 2026 00:17
29dc686 to
be1a0b5
Compare
cliffhall
added a commit
that referenced
this pull request
Jul 18, 2026
npm does not reliably apply these transitive overrides to an existing lockfile (bare and targeted overrides via install/update leave residual vulnerable copies). This regenerates the lockfile from scratch with version-targeted overrides so every copy of the affected packages resolves to a patched version. Resolves Dependabot alerts: - esbuild #121 (-> 0.28.1) - minimatch #69, #66, #61 (3.x -> 3.1.5) - @babel/core #132 (-> 7.29.7; completes the partial fix from #1712) Also pins js-yaml overrides (3.15.0 / 4.2.0) to prevent regression. Supersedes #1713, #1714, #1715. Part of #1706. Verified: 0 vulnerable copies across all advisories; build + client (535) + cli tests pass; lockfile internally consistent. Claude-Session: https://claude.ai/code/session_01HiccCEh9mwCfVzE8qYcop1 Co-authored-by: Claude Opus 4.8 (1M context) <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
Adds an npm
overrideforcing@babel/coreto^7.29.6to remediate a transitive dev-dependency vulnerability.@babel/coreis pulled in transitively (via the client toolchain / babel plugins) and previously resolved to 7.28.5, which is affected by an arbitrary file read via a craftedsourceMappingURL(fixed in>= 7.29.6). With this override it now resolves to 7.29.7, andnpm ls @babel/core --allshows no instances below7.29.6.The change is intentionally minimal:
package.json: add"@babel/core": "^7.29.6"tooverrides(the existingget-intrinsicoverride is preserved).package-lock.json: refreshed with a targeted update of only the@babel/*subtree (no unrelated dependency bumps).Verification
npx prettier --check .— passnpm run check-version— passcd client && npm run lint— passcd client && npm test— pass (535 tests)cd cli && npm test— pass (85 tests)npm run build— passResolves Dependabot alert 132
Part of #1706
🤖 Generated with Claude Code
https://claude.ai/code/session_01HiccCEh9mwCfVzE8qYcop1