chore(deps): upgrade dependencies; replace audit ignores with overrides#97
Merged
Conversation
Bump catalog dev tooling to latest (turbo 2.10.5, knip 6.26.0, oxlint/oxfmt, tsx, tsdown, vitest/coverage 4.1.10, typedoc 0.28.20, effect 3.22.0, @types/node 26, @btravstack/theme 1.7.0) and orpc to 2.0.0-beta.15. Hold typescript at 6.0.3 (typedoc peer cap) and vitepress at 1.6.4 (2.x is alpha). Replace auditConfig.ignoreGhsas with targeted overrides that pull each vulnerable transitive to its first patched release: - brace-expansion 5.0.7 (GHSA-3jxr-9vmj-r5cp, via typedoc>minimatch) - js-yaml 3.15.0 (GHSA-52cp-r559-cp3m, via changesets) - vite 6.4.3 (GHSA-fx2h-pf6j-xcff, via vitepress; docs build verified) - @hono/node-server 1.19.13 (GHSA-92pp-h63x-v22m, via prisma dev) Bump @oxlint/plugins to ^1.73.0 to match oxlint. Tidy pnpm-workspace.yaml (sorted catalog, co-located minimumReleaseAge block). pnpm audit is now clean at every level; typecheck and build pass.
There was a problem hiding this comment.
Pull request overview
This PR performs a dependency upgrade sweep across the pnpm workspace and shifts the security posture from suppressing advisories (auditConfig.ignoreGhsas) to enforcing patched transitive versions via pnpm overrides, keeping typescript and vitepress intentionally pinned due to peer/version constraints.
Changes:
- Updated workspace catalog versions (tooling, Effect, Vitest, oRPC, Node types, etc.) and refreshed
pnpm-lock.yamlaccordingly. - Replaced
auditConfig.ignoreGhsaswith explicitoverridesfor vulnerable transitive dependencies (brace-expansion, js-yaml 3.x, vite,@hono/node-server1.x). - Minor workspace housekeeping: catalog reordering and
peerDependencyRules.ignoreMissingupdated to include@types/react.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pnpm-workspace.yaml | Bumps catalog versions; removes advisory ignores and introduces security overrides + peerDep rule tweak. |
| pnpm-lock.yaml | Regenerated lockfile reflecting catalog upgrades and applied overrides. |
| packages/oxlint/package.json | Updates @oxlint/plugins dependency to align with oxlint 1.73 tooling. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
@vitest/coverage-v8 4.1.10 stopped honoring the multi-line `v8 ignore next` directive on render()'s unreachable exhaustiveness return, dropping coverage below the 100% threshold. Switch to a `v8 ignore start/stop` block, which 4.1.10 respects. Address PR review: version-scope the vite override (`vite@<6.4.3`) so only the vulnerable pre-6.4.3 line is lifted, and correct the overrides comment (the advisories span High and moderate, not "both High").
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.
What
Dependency upgrade sweep + a policy change: stop suppressing advisories via
auditConfig.ignoreGhsasand instead force patched transitive versions withoverrides.Upgrades
@types/node26,@btravstack/theme1.7.0.@orpc/*→ 2.0.0-beta.15.@oxlint/plugins→ ^1.73.0 (match oxlint 1.73; 1.73 addedCreateOnceRule, which broke typecheck otherwise).6.0.x); vitepress stays 1.6.4 (2.x is only alpha).Security: overrides instead of ignores
auditConfig.ignoreGhsasremoved. Each formerly-ignored / newly-surfaced advisory is now fixed at the source:vitepress 1.6.4 builds fine under the vite 6.4.3 override (verified via
docs build), which also pulls esbuild to a patched 0.25.x.Housekeeping
Tidied
pnpm-workspace.yaml: alphabetically sorted catalog, co-located theminimumReleaseAgeblock, added@types/reacttoignoreMissing(newer radix/@prisma/studio-core needs it).Verification
pnpm auditclean at every level (0 advisories)pnpm typecheck19/19pnpm build20/20