fix(deps): resolve pnpm audit vulnerabilities breaking CI#90
Merged
Conversation
Pin patched versions of three advisories that fail the Security Audit job (pnpm audit --audit-level=moderate): - vite -> ^8.0.16 as a direct devDep in apps/web (was peer-only at 8.0.13, so a workspace override did not apply): GHSA-fx2h-pf6j-xcff (high), GHSA-v6wh-96g9-6wx3 (moderate) - form-data -> ^4.0.6 override: GHSA-hmw2-7cc7-3qxx (high) - js-yaml -> ^4.2.0 override: GHSA-h67p-54hq-rp68 (moderate); consumers only call js-yaml.load(), present in v4 Overrides live in pnpm-workspace.yaml since pnpm 10 no longer reads the package.json pnpm field.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
dzhhem
approved these changes
Jun 16, 2026
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.
Description
The Security Audit CI job (
pnpm audit --audit-level=moderate) startedfailing on 6 vulnerabilities (surfaced on the #85 dependabot run). This pins
patched versions of the affected packages:
^8.0.16as a direct devDep inapps/web(was peer-only at8.0.13, so a workspace override did not apply): GHSA-fx2h-pf6j-xcff (high),
GHSA-v6wh-96g9-6wx3 (moderate)
^4.0.6override: GHSA-hmw2-7cc7-3qxx (high)^4.2.0override: GHSA-h67p-54hq-rp68 (moderate); consumers(eslint, jest/istanbul) only call
js-yaml.load(), present in v4Overrides live in
pnpm-workspace.yamlsince pnpm 10 no longer reads thepnpmfield inpackage.json.Closes # (issue)
Type of change
How Has This Been Tested?
Full CI-equivalent run locally, all green:
pnpm audit --audit-level=moderate→ exit 0 (1 low remaining, below threshold)pnpm run check-types→ 4/4pnpm run lint+pnpm run format:check→ cleanAPI Jest → 382/382 (40 suites; covers supertest/form-data + coverage/js-yaml)
Web Vitest → 19/19 (6 files; on vite 8.0.16)
Unit tests (Jest/Vitest)
Integration tests
Manual testing (screenshots/screencasts encouraged)
Checklist: