Skip to content

Commit 76522d8

Browse files
mcalthropclaude
andcommitted
chore(deps): fix pnpm audit findings (undici, postcss, nanoid)
All seven findings were transitive-only, so each is resolved with a comparator-scoped override in pnpm-workspace.yaml: - undici: the existing `undici@>=6.0.0 <6.27.0` override pinned 8.8.0, which is itself vulnerable. Replaced with `undici@<8.9.0: ^8.9.0`, which covers both the original 6.x range and the vulnerable 8.0-8.8 line. Reached via @actions/core and @actions/github. - postcss: `postcss@<8.5.23: ^8.5.23`, reached via vite. - nanoid: `nanoid@<3.3.17: ^3.3.17`, reached via postcss. All bumps stay within the installed major, so no breaking changes. `pnpm audit --audit-level=low` is clean and the test suite passes. Refs GHSA-4cwx-7wf7-3272, GHSA-8xcm-r25x-g524, GHSA-m8rv-5g2x-5cg5, GHSA-jr45-8vmc-qm54, GHSA-v3r7-h72x-cjcm, GHSA-fxqj-rqcc-2cmp, GHSA-2v37-7h3g-55p8 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent fd7d7ed commit 76522d8

2 files changed

Lines changed: 25 additions & 16 deletions

File tree

pnpm-lock.yaml

Lines changed: 17 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
overrides:
22
"rollup@>=4.0.0 <4.59.0": "4.62.2"
3-
"undici@>=6.0.0 <6.27.0": "8.8.0"
3+
# 2026-08-10: undici <8.9.0 — GHSA-4cwx-7wf7-3272 (high), GHSA-8xcm-r25x-g524,
4+
# GHSA-m8rv-5g2x-5cg5, GHSA-jr45-8vmc-qm54, GHSA-v3r7-h72x-cjcm (moderate).
5+
# Supersedes the earlier <6.27.0 override, which pinned the now-vulnerable 8.8.0.
6+
"undici@<8.9.0": "^8.9.0"
47
"picomatch@<2.3.2": ">=2.3.2"
58
"yaml@>=2.0.0 <2.8.3": ">=2.8.3"
69
"@babel/core@<7.29.1": "7.29.7"
10+
# 2026-08-10: postcss <=8.5.22 — GHSA-fxqj-rqcc-2cmp (moderate)
11+
"postcss@<8.5.23": "^8.5.23"
12+
# 2026-08-10: nanoid <3.3.17 — GHSA-2v37-7h3g-55p8 (high)
13+
"nanoid@<3.3.17": "^3.3.17"

0 commit comments

Comments
 (0)