chore: resolve open dependabot security alerts#23
Merged
Conversation
- fast-uri 3.1.0 -> 3.1.2 (high, alerts #115 #116) - ip-address 10.1.0 -> 10.1.1 (medium, alert #114) - picomatch 4.0.3 -> 4.0.4 (medium, alert #113) - @semantic-release/npm bumped to >=13.0.0 to pull in npm@11 with patched bundled deps
There was a problem hiding this comment.
Pull request overview
This PR addresses Dependabot security alerts by bumping vulnerable transitive dependencies using npm overrides, including pulling in patched versions via an @semantic-release/npm upgrade.
Changes:
- Added/adjusted
overridesinpackage.jsonforfast-uri,ip-address,@semantic-release/npm, and nestedtinyglobby -> picomatch. - Updated
package-lock.jsonto reflect the new resolved dependency graph (notably npm 11.x via@semantic-release/npm@13.x, plus patchedfast-uri/ip-address). - Extended
.gitignoreto ignore.worktrees/.
Reviewed changes
Copilot reviewed 1 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| package.json | Adds npm overrides intended to force patched transitive dependency versions. |
| package-lock.json | Updates the lockfile to reflect dependency upgrades (including @semantic-release/npm@13.1.5 and npm 11.x). |
| .gitignore | Adds .worktrees/ to ignored paths. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
JamieSinn
approved these changes
May 15, 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.
Summary
Resolved 4 open Dependabot security alerts by bumping vulnerable transitive dependencies.
Dependabot Alerts Resolved
fast-urifast-uriip-address@semantic-release/npmupgrade to 13.1.5 (which pulls in npm@11 with patched bundled deps)picomatch@semantic-release/npmupgradeThe
ip-addressandpicomatch@4.xvulnerabilities were in npm's bundled internal deps (node_modules/npm/node_modules/). These can only be fixed by upgrading@semantic-release/npmfrom 12.x to 13.x, which requires Node 22. All CI workflows have been updated from Node 20 (EOL as of April 2026) to Node 22 LTS.Override ranges are now pinned to exact patched versions (
3.1.2,10.1.1,4.0.4,13.1.5) rather than open-ended>=ranges, addressing Copilot's reproducibility concern. The.worktrees/directory is also excluded from Prettier to prevent false failures.