fix(deps): patch vite and qs security vulnerabilities#91
Merged
Conversation
Resolve 4 Dependabot alerts (2 high, 2 moderate), both dev-only deps: - vite 8.0.0 -> 8.0.14: GHSA-p9ff-h696-f583 (arbitrary file read via dev-server WebSocket), GHSA-v2wj-q39q-566r (server.fs.deny bypass), GHSA-4w7w-66w2-5vf9 (path traversal in optimized deps) - qs 6.15.1 -> 6.15.2: GHSA-q8mj-m7cp-5q26 (stringify DoS) vite is added as a direct devDependency because it is an auto-installed peer of vitest (8.0.0 satisfied vitest's '^8.0.0' peer range, so a pnpm override alone would not bump it). qs is pinned via pnpm overrides since it is transitive through @stryker-mutator/core -> typed-rest-client. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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 all 4 open Dependabot alerts (2 high, 2 moderate). Both affected packages are dev-only transitive dependencies (test tooling), not shipped to production.
server.fs.denybypass with queries.mapqs.stringifyDoSApproach
devDependency(^8.0.5, resolves to 8.0.14). It enters the tree as an auto-installed peer ofvitest, and 8.0.0 satisfied vitest's^8.0.0peer range — so apnpm.overridesentry alone did not bump it. Declaring it directly forces the patched version while still satisfying the peer.pnpm.overrides(^6.15.2); it is transitive through@stryker-mutator/core → typed-rest-client.Testing
pnpm why vite→ 8.0.14,pnpm why qs→ 6.15.2 ✅metrics-dashboard/pipeline-cache/stage-profiler/verify-allsubprocess tests were confirmed to also fail onmain's deps (Windows-local; they pass in Linux CI) and are unrelated to this change.🤖 Generated with Claude Code