-
Notifications
You must be signed in to change notification settings - Fork 78
fix(deps): update dependency @vercel/style-guide to v6 #626
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
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
546070b
to
68a80a9
Compare
68a80a9
to
151bf3b
Compare
151bf3b
to
85705ce
Compare
85705ce
to
fa654d6
Compare
fa654d6
to
2d157a8
Compare
2d157a8
to
825078d
Compare
825078d
to
9e42936
Compare
9e42936
to
b41366d
Compare
b41366d
to
3b0bd24
Compare
3b0bd24
to
123fb05
Compare
123fb05
to
99c46a0
Compare
99c46a0
to
2e31f40
Compare
2e31f40
to
f230eac
Compare
f230eac
to
58d0f88
Compare
893c480
to
eb1b26b
Compare
eb1b26b
to
3f5ba3c
Compare
3f5ba3c
to
c1122b7
Compare
c1122b7
to
cca50ac
Compare
cca50ac
to
11b291a
Compare
11b291a
to
a2eaa59
Compare
a2eaa59
to
24b915d
Compare
24b915d
to
838a821
Compare
838a821
to
88f66ee
Compare
88f66ee
to
4502768
Compare
4502768
to
07e0cd4
Compare
"devDependencies": { | ||
"@changesets/cli": "2.28.1", | ||
"@vercel/style-guide": "5.2.0", | ||
"@vercel/style-guide": "6.0.0", |
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.
The project's Node version requirement (>=18
) is less strict than what @vercel/style-guide 6.0.0 requires (>=18.18
), potentially causing runtime issues for users with Node 18.0-18.17.
View Details
📝 Patch Details
diff --git a/package.json b/package.json
index d1bcd69..4831161 100644
--- a/package.json
+++ b/package.json
@@ -44,6 +44,6 @@
},
"packageManager": "[email protected]",
"engines": {
- "node": ">=18"
+ "node": ">=18.18"
}
}
Analysis
The update to @vercel/style-guide 6.0.0 introduces a more restrictive Node.js version requirement (>=18.18
) than what the project currently specifies in its engines field (>=18
). This version mismatch creates a compatibility gap where the project claims to support Node.js 18.0.0 and above, but the @vercel/style-guide dependency actually requires Node.js 18.18.0 or later.
This discrepancy can lead to runtime failures if users attempt to run the project with Node versions 18.0.0 through 18.17.x, which satisfy the project's stated requirements but fail the dependency's requirements. The fix is to update the project's Node version requirement to match or exceed the most restrictive dependency requirement: "node": ">=18.18"
.
07e0cd4
to
7f94081
Compare
7f94081
to
a2de2a0
Compare
a2de2a0
to
88a438f
Compare
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
5.2.0
->6.0.0
Release Notes
vercel/style-guide (@vercel/style-guide)
v6.0.0
Compare Source
Features
@typescript-eslint/*
dependencies (#102) (dd7004d)>=18.18
(#97) (4efc908)@next/eslint-plugin-next@canary
as peer dep (#89) (55508ac)vitest
config (#96) (325b65a)jest/require-top-level-describe
(#93) (e09a147)no-await-in-loop
(#95) (2b0ce9d)react/jsx-sort-props
(#87) (0088457)no-return-await
(#94) (1ea97f4)eslint-plugin-playwright
(#98) (4b89216)BREAKING CHANGES
@typescript-eslint/*
enabled rules and configuration.eslint-plugin-playwright
have changed.no-await-in-loop
has been removed.no-return-await
is deprecated and has been removed.jest/require-top-level-describe
has been removed.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.