fix(deps): patch root shell-quote (CVE-2026-9277) via concurrently 10#219
Merged
Conversation
The root lockfile resolved shell-quote 1.8.3 (dev-only), vulnerable to GHSA-w7jw-789q-3m8p. concurrently is its only consumer and pins it exactly, so bump concurrently ^9.0.1 -> ^10.0.3, which resolves shell-quote to 1.8.4 and clears Dependabot alert #121. concurrently 10 requires Node >=22, already satisfied (project runs Node 24); the CLI flags the root scripts use are unchanged. Mirrors PR #217, which applied the same fix to VueApp.
Bundle ReportBundle size has no change ✅ |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #219 +/- ##
==========================================
- Coverage 43.15% 41.32% -1.84%
==========================================
Files 892 55 -837
Lines 51697 2420 -49277
Branches 4824 523 -4301
==========================================
- Hits 22310 1000 -21310
+ Misses 28843 1371 -27472
+ Partials 544 49 -495
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. |
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
Patches the critical Dependabot alert #121 (GHSA-w7jw-789q-3m8p / CVE-2026-9277) on the root
package-lock.json.shell-quote1.8.3 (dev-only) is vulnerable. It is pulled in solely byconcurrently, which pins it to an exact version, so PR #217's VueApp fix did not clear the root copy. Bumping the rootconcurrently^9.0.1→^10.0.3resolvesshell-quoteto 1.8.4 and clears the alert.Risk
shell-quoteis a transitive dev dependency ofconcurrently; not in the shipped bundle or the backend.--names,--prefix-colors,--kill-others-on-fail,--success) are unchanged.Verification
npm audit: 0 critical / 0 high (was 2 critical); 1 unrelated moderate (brace-expansion) remains.npm run test(orchestrated by concurrently 10): all tests pass.Mirrors #217, applied to the root manifest. Lockfile diff is scoped to concurrently's dev subtree.