chore(deps): force shell-quote >=1.9.0 + refresh audit baseline - #304
Merged
Conversation
Fixes the nightly Check workflow on main which has been failing since 2026-07-20 with GHSA-395f-4hp3-45gv / CVE-2026-13311 (shell-quote quadratic-complexity DoS in parse(), CVSS 7.5 high). shell-quote is transitively pulled in via @segment/sovran-react-native > shell-quote and react-native > react-devtools-core > shell-quote; both lock to 1.8.0. Yarn resolutions forces the tree to 1.10.0 (>=1.9.0 patched version); no source code change required. Since Development's yarn-audit-known-issues had drifted to empty (the 1.118.8 release regenerated it only on the release branch which squash-merged to main directly), also refresh the baseline against the current audit output. The 31 remaining advisories are the standard transitive noise the repo has accepted for months (js-yaml, brace-expansion, ws, jsonwebtoken, axios, form-data, cross-spawn, lodash-es, json5, jws, svgo, flatted, semver, @babel/plugin-transform- modules-systemjs); none affect the shipped bundle at runtime. Unblocks the release/1.118.9 cut PR against main (which triggers the Vulnerabilities gate) and clears the nightly scheduled Check red flag.
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
Fixes the nightly Check workflow on main which has been failing since 2026-07-20 with GHSA-395f-4hp3-45gv / CVE-2026-13311 (shell-quote quadratic-complexity DoS in
parse(), CVSS 7.5 high). shell-quote is transitively pulled in via:@segment/sovran-react-native > shell-quote@1.8.0react-native > react-devtools-core > shell-quote@1.8.0Both paths locked to 1.8.0 which is vulnerable. Yarn
resolutionsforces the tree to 1.10.0 (>=1.9.0patched). No source-code change required.Also refreshes
yarn-audit-known-issuesbecause Development's copy had drifted to empty since the 1.118.8 release cycle (which regenerated it only on therelease/1.118.8branch and squash-merged into main directly, never back to Development). The 31 remaining advisories are the standard transitive noise the repo has accepted for months (js-yaml, brace-expansion, ws, jsonwebtoken, axios, form-data, cross-spawn, lodash-es, json5, jws, svgo, flatted, semver, @babel/plugin-transform-modules-systemjs). None affect the shipped bundle at runtime.Impact
Test plan
yarn installlocksshell-quote@1.10.0in yarn.lockbash scripts/ci_check_vulnerabilities.shlocal:Ignorning known vulnerabilities, exit 0if: github.event_name != 'pull_request' || github.base_ref == 'main'). The real test is the release cut PR.