fix: upgrade vulnerable transitive deps (SECURE-2965, SECURE-3009, SECURE-3438)#307
Open
OnestarLee wants to merge 1 commit into
Open
fix: upgrade vulnerable transitive deps (SECURE-2965, SECURE-3009, SECURE-3438)#307OnestarLee wants to merge 1 commit into
OnestarLee wants to merge 1 commit into
Conversation
…CURE-3438) Pin transitive dependencies through `resolutions` to address: - SECURE-3438 / GHSA-fv7c-fp4j-7gwp (High): @babel/plugin-transform-modules-systemjs 7.28.5 -> 7.29.7 (type confusion / code injection in SystemJS output) - SECURE-2965 / GHSA-jmr7-xgp7-cmfj (High): fast-xml-parser 4.5.4 -> 4.5.6 (latest v4 legacy line with XML Entity Expansion DoS backport; consumers pin ^4.4.1) - SECURE-3009 / GHSA-xjpj-3mr7-gcpf (High): handlebars already at 4.7.9 in yarn.lock - verified safe. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #307 +/- ##
=======================================
Coverage 10.84% 10.84%
=======================================
Files 360 360
Lines 9084 9084
Branches 2578 2561 -17
=======================================
Hits 985 985
Misses 8023 8023
Partials 76 76 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
bang9
approved these changes
May 26, 2026
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
Pin three transitive dependencies through
resolutionsinpackage.jsonto clear the open Semgrep / GHSA advisories onmain.@babel/plugin-transform-modules-systemjsfast-xml-parserhandlebarsWhy these versions
@babel/plugin-transform-modules-systemjs(GHSA-fv7c-fp4j-7gwp) — type confusion / code injection in SystemJS output. 7.29.4+ contains the patch; resolution to^7.29.4lands 7.29.7.fast-xml-parser(GHSA-jmr7-xgp7-cmfj) — XML Entity Expansion DoS. Consumers (@react-native-community/cli-config-android,@react-native-community/cli-platform-apple) pin^4.4.1, so we stay on the v4legacydist-tag (4.5.6) which carries the backport rather than jumping to v5.handlebars(GHSA-xjpj-3mr7-gcpf) — already at 4.7.9 inyarn.lock(no action needed in this PR; included for ticket closure).Test plan
yarn installsucceeds with updated resolutionsyarn buildsucceeds for all packagesyarn test— 32 suites, 187 tests pass🤖 Generated with Claude Code