-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(deps): bump minimatch from 9.0.5 to 10.2.1 #19399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -99,7 +99,7 @@ | |
| "@sentry/node-core": "10.39.0", | ||
| "@sentry/opentelemetry": "10.39.0", | ||
| "import-in-the-middle": "^2.0.6", | ||
| "minimatch": "^9.0.0" | ||
| "minimatch": "^10.2.1" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Major dependency bump narrows Node.js version supportHigh Severity Bumping Triggered by project rule: PR Review Guidelines for Cursor Bot |
||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^18.19.1" | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: The
minimatchdependency upgrade requires Node.js 20+, but the package still declares support for Node.js 18, causing a breaking incompatibility and runtime failures.Severity: HIGH
Suggested Fix
Either update the
enginesfield inpackages/node/package.jsonto require Node.js 20+ to reflect the new minimum requirement, or revert theminimatchdependency to a version compatible with Node.js 18 (e.g., version 9.x).Prompt for AI Agent
Did we get this right? 👍 / 👎 to inform future reviews.