Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request addresses a Dependabot security alert by updating the glob package via an npm override mechanism. Since the direct dependency path goes through ava → @vercel/nft → glob, and AVA cannot directly update @vercel/nft (as referenced in avajs/ava#3413), this PR uses npm's overrides feature to force @vercel/nft to version 1.3.2.
Changes:
- Added npm override to force
@vercel/nftto version 1.3.2 - Updated transitive dependency
globfrom 10.4.5 to 13.0.6 (addressing security vulnerability) - Updated related dependencies including
lru-cache,path-scurry,minimatch, andminipass
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Added overrides section to force @vercel/nft to version 1.3.2 |
| package-lock.json | Updated @vercel/nft and its dependency tree, including glob upgrade from 10.x to 13.x; removed obsolete dependencies; added peer dependency markers |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
hermanschaaf
approved these changes
Feb 26, 2026
kodiakhq bot
pushed a commit
that referenced
this pull request
Feb 26, 2026
🤖 I have created a release *beep* *boop* --- ## [0.1.34](v0.1.33...v0.1.34) (2026-02-26) ### Bug Fixes * **deps:** Update dependency @tsconfig/node20 to v20.1.9 ([#348](#348)) ([d921b0c](d921b0c)) * **deps:** Update dependency semver to v7.7.4 ([#349](#349)) ([22b308e](22b308e)) * **deps:** Update dependency tempy to v3.2.0 ([#350](#350)) ([a378078](a378078)) * Update `glob` via overrides ([#355](#355)) ([96faedf](96faedf)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot
pushed a commit
to cloudquery/javascript-plugin-template
that referenced
this pull request
Feb 26, 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.
Fixes https://github.com/cloudquery/plugin-sdk-javascript/security/dependabot/12
See avajs/ava#3413 why we can't update it directly