chore: resolve open dependabot security alerts#25
Open
jonathannorris wants to merge 1 commit into
Open
Conversation
- npm 11.14.1 -> 11.18.0 (override) to pull in patched bundled deps - @sigstore/core 3.2.0 -> 3.2.1 (medium, alert #124) - @sigstore/verify 3.1.0 -> 3.1.1 (medium, alert #125) - undici 6.25.0 -> 6.27.0 (low/medium, alerts #120, #121, #122) - tar 7.5.13 -> 7.5.19 (medium, alert #118)
There was a problem hiding this comment.
Pull request overview
This PR aims to resolve multiple Dependabot security alerts by upgrading npm (via overrides) so that patched versions of vulnerable transitive/bundled dependencies are installed.
Changes:
- Updated
overridesto forcenpm@11.18.0(to pick up patched bundled dependencies). - Added additional
overridesfor affected packages (@sigstore/*,undici,tar) and updatedpackage-lock.jsonaccordingly.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Adds/updates overrides to pin npm and related vulnerable transitive dependencies. |
| package-lock.json | Reflects the updated npm version and associated bundled/transitive dependency updates. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+43
to
+47
| "npm": "11.18.0", | ||
| "@sigstore/verify": "3.1.1", | ||
| "@sigstore/core": "3.2.1", | ||
| "undici": "6.27.0", | ||
| "tar": "7.5.16" |
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
Dependabot Alerts Resolved
tarundiciundiciundici@sigstore/core@sigstore/verifyNotes
All 6 vulnerable packages were bundled inside
npm@11.14.1(which is a dependency of@semantic-release/npm@13.1.5). Standardoverridesentries cannot reach into npm's bundled dependencies. Overriding npm itself to 11.18.0 causes npm to install a newer version of itself with all the patched bundled packages.