fix(deps): pin patched versions to resolve 4 Dependabot alerts#318
Merged
Conversation
…versions Resolves four GitHub Dependabot alerts via resolutions block: - CVE-2026-44665 (fast-xml-builder ^1.1.7) — attribute injection in XML serializer. Reaches via @react-native-community/cli-platform-apple → fast-xml-parser. Build-time only (Xcode/Android project file generation, no attacker-controlled input), but trivial to pin. - CVE-2026-6321 + CVE-2026-6322 (fast-uri ^3.1.2) — URI normalization path-traversal and host-confusion. Reaches via @commitlint/cli → ajv. Build-time only; not in published SDK. - CVE-2026-44728 (@babel/plugin-transform-modules-systemjs ^7.29.4) — RCE when compiling untrusted code with modules: "systemjs". Reaches via @babel/preset-env. We compile our own SDK only, so not exploitable; pinning clears the noise. All four are transitive devDependencies — none ship in the published SDK. yarn install + typecheck + lint + jest + bob build all green.
sambrown3
approved these changes
May 14, 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
Pins three transitive devDependencies to patched versions via the existing
resolutionsblock, resolving 4 open GitHub Dependabot alerts.Vulnerabilities resolved
@react-native-community/cli-platform-apple→fast-xml-parser@commitlint/cli→ajv@8@babel/preset-envExploitability assessment
All four are transitive devDependencies — none ship in the published SDK. Even at the build-tool layer they're not exploitable in our usage:
modules: "systemjs"option.Pinning to clean up the alerts is the lowest-friction path and follows the existing pattern in this repo's
resolutionsblock (already pinsqs,tar,undici,fast-xml-parserfor security).Test plan
yarn install— regenerated yarn.lock cleanlyyarn typecheck— greenyarn lint— greenyarn test— greenyarn prepare(bob build) — green