fix(deps): bump shell-quote to 1.10.0 in rn test project (CVE-2026-13311) - #281
Merged
Conversation
Contributor
|
No reviewable files after applying ignore patterns. |
EPIKorial
approved these changes
Aug 20, 2026
) shell-quote <= 1.8.4 is vulnerable to CVE-2026-13311. The rn test project lockfile was the last place still resolving 1.8.4 — root (#266) and the expo test project (#268) were already bumped to 1.10.0. No override needed: both requesters already permit the fixed release (launch-editor asks for ^1.8.4, react-devtools-core for ^1.6.1), so this was purely a stale lock entry. Refreshed with a targeted `npm update shell-quote --package-lock-only`, matching how the other two lockfiles were fixed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
chouaibMo
force-pushed
the
fix/cve-2026-13311-shell-quote
branch
from
August 20, 2026 09:38
eecd36d to
9c36743
Compare
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
Resolves the open CVE-2026-13311 alert for
shell-quote <= 1.8.4.test-projects/rn-purchasely-testwas the last lockfile still resolving the vulnerable 1.8.4. The rootyarn.lock(#266) andtest-projects/expo-purchasely-test(#268) were already moved to 1.10.0 by earlier Dependabot PRs.test-projects/rn-purchasely-testNo override required
Both requesters already accept the fixed release:
launch-editor^1.8.4react-devtools-core^1.6.1So this was purely a stale lock entry rather than a constraint that pinned the vulnerable version. Fixed with a targeted
npm update shell-quote --package-lock-only, which keeps the diff to the single lockfile entry and matches how the other two lockfiles were fixed — no newoverridesentry to carry.Test plan
npm update shell-quote --package-lock-only— only the shell-quote entry changednpm ci --dry-run— lockfile/manifest in sync, 861 packages resolvepackage.jsonchange needed🤖 Generated with Claude Code