fix(deps): clear Dependabot alerts (bump override floors)#33
Merged
Conversation
Bump pinned override floors (in both npm `overrides` and `pnpm.overrides`) to the patched versions and regenerate both lockfiles, clearing all 8 open Dependabot alerts: - dompurify ^3.4.0 -> ^3.4.9 (#161, #163) - js-yaml ^4.1.1 -> ^4.2.0 (#154, #159) - protobufjs ^7.5.8 -> ^7.6.3 (#160) - @babel/core add ^7.29.6 (#153, #158) - @opentelemetry/core add ^2.8.0 (#164) pnpm-lock.yaml was stale because prior Dependabot PRs only updated the npm lockfile; both are now regenerated in sync. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
This PR clears outstanding Dependabot alerts by raising dependency override floors to patched versions and regenerating lockfiles so npm and pnpm installs resolve the patched transitive versions consistently.
Changes:
- Bumped override floors for vulnerable transitive packages (e.g.,
dompurify,js-yaml,protobufjs,@babel/core,@opentelemetry/core) in both npmoverridesandpnpm.overrides. - Regenerated
pnpm-lock.yamlto reflect the updated override floors and refreshed resolved versions across the dependency graph. - Regenerated the npm lockfile to align with the same override intent.
Reviewed changes
Copilot reviewed 1 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Updates override floors in both overrides and pnpm.overrides to patched ranges. |
| pnpm-lock.yaml | Lockfile regenerated to apply new overrides and update resolved transitive versions accordingly. |
| package-lock.json | npm lockfile reflects updated resolved versions consistent with the new override floors. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Clears all 8 open Dependabot alerts by bumping the pinned override floors (in both
overridesandpnpm.overrides) to patched versions and regenerating both lockfiles.^3.4.0→^3.4.9^4.1.1→^4.2.0^7.5.8→^7.6.3^7.29.6^2.8.0Why
pnpm-lock.yamlwas stale because prior Dependabot PRs only updated the npm lockfile. Both lockfiles are now regenerated in sync. protobufjs / @opentelemetry/core aren't in the npm-resolved tree (those alerts were pnpm-lock-only), so their npm overrides are harmless no-ops.Verification
npm auditclean of the 8 alerts.package.json+ the two lockfiles only — no source changes.Out of scope (pre-existing on
main, not touched here)stripMarkdownexpectation vs. its dependency-free impl).npm run linterrors (no-explicit-any,set-state-in-effect).ajv<6.14.0 (dev-only eslint transitive; "fix" forces ajv 8 and breaks eslint).🤖 Generated with Claude Code