fix(deps): resolve audit vulnerabilities#180
Merged
Merged
Conversation
Migrate pnpm overrides from the package.json "pnpm" field to pnpm-workspace.yaml, which pnpm 11.15.1 now requires (the old field is silently ignored, which had disabled every override on main). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
mcalthrop
marked this pull request as ready for review
July 22, 2026 12:33
1 task
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 5 vulnerabilities reported by
pnpm audit(1 high, 1 moderate, 3 low), all in transitive dependencies.Root cause of the regression: pnpm 11.15.1 (merged in #179) no longer reads the
pnpmfield inpackage.json, so every override was being silently ignored ([WARN] The "pnpm" field in package.json is no longer read by pnpm). This had disabled the existing overrides onmain, re-exposing the undici advisories. This PR migrates all overrides topnpm-workspace.yaml(their new home) and widens/adds entries to cover the current advisories.Vulnerabilities fixed
undici<6.27.08.8.0undici<6.27.08.8.0undici<6.27.08.8.0undici<6.27.08.8.0@babel/core<=7.29.07.29.7undici is transitive via
@actions/core/@actions/github;@babel/corevia@vitest/coverage-istanbul. The existingundicioverride selector was widened from<6.24.0to<6.27.0.@babel/coreis pinned to the latest patched 7.x (7.29.7) rather than an open range —>=7.29.1resolved to8.0.1, which breaks vitest's istanbul coverage provider.Verification
pnpm audit→ No known vulnerabilities foundpnpm build,pnpm ts-check,pnpm check,pnpm knip,pnpm test(100% coverage) all pass🤖 Generated with Claude Code