This repository was archived by the owner on Aug 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps-dev): bump lint-staged from 15.5.2 to 17.0.5 #156
Open
dependabot
wants to merge
1
commit into
main
Choose a base branch
from
dependabot/npm_and_yarn/lint-staged-17.0.5
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,7 +132,7 @@ | |
| "globals": "^15.15.0", | ||
| "happy-dom": "^20.9.0", | ||
| "husky": "^9.1.7", | ||
| "lint-staged": "^15.5.2", | ||
| "lint-staged": "^17.0.5", | ||
|
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. P1: The .nvmrc specifies Node 20, but lint-staged 17.x requires Node >= 22.22.1, causing a runtime incompatibility in dev environments and CI that use nvm. Prompt for AI agents |
||
| "playwright": "^1.59.1", | ||
| "postcss": "^8.5.6", | ||
| "prettier": "^3.8.3", | ||
|
|
||
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
🏁 Script executed:
Repository: adm01-debug/zapp-web
Length of output: 654
🏁 Script executed:
Repository: adm01-debug/zapp-web
Length of output: 198
🌐 Web query:
lint-staged v17 minimum Node version 22.22.1 git >=2.32.0 requirement💡 Result:
As of May 2026, lint-staged version 17 has the following minimum system requirements: Node.js: The minimum supported version is 22.22.1 [1][2]. Version 17 dropped support for Node.js v20 [1][3]. Git: The minimum supported version is 2.32.0 [4]. lint-staged now explicitly verifies this version and requires an upgrade if an older version is detected [4].
Citations:
🏁 Script executed:
Repository: adm01-debug/zapp-web
Length of output: 572
🏁 Script executed:
Repository: adm01-debug/zapp-web
Length of output: 1705
🏁 Script executed:
Repository: adm01-debug/zapp-web
Length of output: 180
🏁 Script executed:
Repository: adm01-debug/zapp-web
Length of output: 2607
Quebra operacional:
lint-stagedv17 exige Node.js >= 22.22.1 (repo está preso em Node 20)package.jsonjá está comlint-staged^17.0.5, mas o repo usa.nvmrc = 20→ ao resolver/instalar o v17, o pre-commit deve falhar e bloquear commits..husky/pre-commit:bun run lint-staged; e hoje obun.lockainda listalint-staged@15.5.2, então o break pode aparecer quando o lock for atualizado (ou se CI não estiver usando lock congelado).enginespara impedir instalações incompatíveis; adicionar pelo menosnode >= 22.22.1(egit >= 2.32.0) é necessário.🔧 Sugestão de constraint via `engines`
"resolutions": { "csstype": "3.1.3" - } + }, + "engines": { + "node": ">=22.22.1", + "git": ">=2.32.0" + } }.nvmrce/ou o Node do CI para >= 22.22.1, e atualizar o lockfile se a intenção é realmente subir paralint-stagedv17.🤖 Prompt for AI Agents