fix(deps): address 21 dependency vulnerabilities (next, axios, sharp, shell-quote) - #168
Merged
Conversation
…ning, prototype pollution, and DoS (GHSA-gcfj-64vw-6mp9, GHSA-mmx7-hfxf-jppx, GHSA-42h9-826w-cgv3)
…nerabilities (GHSA-f88m-g3jw-g9cj) next@16.2.11 declares sharp ^0.34.5 and no patched 0.34.x exists, so a scoped override to 0.35.3 is required. Verified the 0.35.3 native binary loads and the client test suite + type check pass.
…ic-complexity ReDoS in parse() (GHSA-395f-4hp3-45gv) concurrently@10.0.3 (latest) still ships shell-quote@1.8.4, so no direct-upgrade path exists. Scoped override to 1.10.0. Dev-only (e2e test tooling).
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
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
Full
pnpm auditremediation from the 2026-07-23 audit. Resolves 21 advisories across 4 packages.pnpm auditnow reports no known vulnerabilities.next>sharp→ 0.35.3concurrently>shell-quote→ 1.10.0parse()(GHSA-395f-4hp3-45gv), dev-onlyOne atomic
fix(deps):commit per vulnerability fix.Notes on the two overrides
next>sharpbypasses next's declared range.next@16.2.11declaressharp: ^0.34.5and there is no patched 0.34.x, so the override to0.35.3is required and deliberately crosses next's compatibility range. Treat as temporary — revisit when next widens its sharp range to include 0.35.x. Verified the 0.35.3 native binary loads correctly.concurrently>shell-quotehas no direct-upgrade path.concurrently@10.0.3(latest) still bundles the vulnerableshell-quote@1.8.4. Dev-only e2e test tooling.Existing overrides reviewed and both retained (neither is a stale security override):
next>postcss(documented security pin — removing it reintroduces GHSA-qx2v-qp2m-jg93) andpicomatch(non-security dedupe pin).Verification
Per fix: re-audit (package cleared) →
tsc --noEmit(clean) →vitest run(201/201 pass). Pre-commit hooks (biome lint) passed on each commit. Fullnext buildnot run (needs build-time env vars unrelated to these bumps).