fix(deps): bump shell-quote to 1.8.4 (CVE-2026-9277)#79
Merged
Conversation
shell-quote <1.8.4 has a CRITICAL command-injection advisory (CVE-2026-9277) in quote(). It is pulled in only transitively via concurrently, a dev-only script runner; no first-party code imports or calls shell-quote, so the vulnerable path is not reachable in this app. Pinning to 1.8.4 to clear the alert via an override scoped to vulnerable (<1.8.4) instances only. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Pins the transitive dependency shell-quote to 1.8.4 at the monorepo root to address CVE-2026-9277, using an npm overrides entry and a regenerated root lockfile to ensure the resolved package is updated.
Changes:
- Add a root-level npm
overridesrule to forceshell-quoteversions<1.8.4to resolve to1.8.4. - Regenerate
package-lock.jsonsonode_modules/shell-quoteresolves to1.8.4with updated tarball URL and integrity hash.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Adds an npm overrides entry to pin vulnerable shell-quote versions to 1.8.4. |
| package-lock.json | Updates the resolved shell-quote package metadata to 1.8.4 in the root lockfile. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
uthark
approved these changes
Jun 9, 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.
What
Pins shell-quote to 1.8.4 (was 1.8.3) via an
overridesentry on the rootpackage.json, and regenerates the rootpackage-lock.json.Why
shell-quote
<1.8.4carries a CRITICAL command-injection advisory, CVE-2026-9277 (quote()mishandles line terminators in an object token's.opfield, allowing command separation in POSIX shells). Fixed upstream in 1.8.4.Scope / safety
<1.8.4) instances only, so it is a no-op once the tree is clean.backend/andfrontend/lockfiles do not contain shell-quote and are untouched.🤖 Generated with Claude Code