-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps)(deps): bump lint-staged from 16.4.0 to 17.0.4 #139
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
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.
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.
🧩 Analysis chain
🌐 Web query:
lint-staged 17.0 Node.js version requirements breaking changes💡 Result:
For lint-staged 17.0.0, the Node.js version requirements breaking change is: Node.js v20 is no longer supported, and the oldest supported version is Node.js 22.22.1 (active v22 LTS at the time of the release). [1][2] What to do (breaking impact): - If your pre-commit/CI runs lint-staged with Node.js 20, upgrade the runtime to at least Node.js 22.22.1 (or newer, e.g., v24/v25). [2][1] Additional related breaking/support changes in the same v17.0.0 release: - lint-staged now requires/validates Git version >= 2.32.0; if you use an older Git, you must upgrade before running lint-staged. [1][3] Evidence: lint-staged’s v17 migration notes explicitly state the Node.js v20 removal and the new minimum (22.22.1), and the v17.0.0 release notes repeat that Node.js v20 is no longer supported. [2][1]
Citations:
🏁 Script executed:
Repository: adm01-debug/Promo_Gifts
Length of output: 452
lint-staged@17quebra com Node 20 declarado em enginesEsse bump exige Node >= 22.22.1, mas o projeto ainda declara
"node": ">=20.0.0". Pre-commit hooks e CI vão falhar na execução.Além disso,
lint-staged@17também passou a exigir Git >= 2.32.0.💡 Ajuste necessário
"engines": { - "node": ">=20.0.0", + "node": ">=22.22.1", "npm": ">=10.0.0" }Se o projeto ainda precisa suportar Node 20, recue
lint-stagedpara16.x.🤖 Prompt for AI Agents