-
Notifications
You must be signed in to change notification settings - Fork 35
chore(deps): update dependency next to v14.2.35 [security] #186
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: development
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
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.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -14,7 +14,7 @@ | |||||
| "@types/react-dom": "18.3.5", | ||||||
| "eslint": "9.23.0", | ||||||
| "eslint-config-next": "15.2.4", | ||||||
|
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. Version mismatch: eslint-config-next is ahead of next. The Consider aligning the versions: - "eslint-config-next": "15.2.4",
+ "eslint-config-next": "14.2.35",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "next": "14.2.26", | ||||||
| "next": "14.2.35", | ||||||
|
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. Next.js 14.2.35 is the appropriate security patch for the 14.x release line. CVE-2025-55182 (React2Shell) is a critical CVSS 10.0 vulnerability affecting React versions 19.x and Next.js versions 15.x and 16.x when using App Router. Next.js 14.x stable is not affected. The version bump is therefore appropriate. CVE-2025-57752, a cache deception vulnerability in Next.js Image Optimization, was fixed in v14.2.31. CVE-2025-48068, a dev server source code exposure issue, was fixed in versions 14.2.30 and 15.2.2. Since 14.2.35 includes both fixes, the security improvements are confirmed. However, address the version mismatch: eslint-config-next is pinned to version 15.2.4, which corresponds to Next.js 15.x, while next is 14.2.35. Update eslint-config-next to the 14.2.x series to match the Next.js version. 🤖 Prompt for AI Agents |
||||||
| "next-runtime-env": "link:../..", | ||||||
| "react": "18.3.1", | ||||||
| "react-dom": "18.3.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.
Version mismatch: eslint-config-next is ahead of next.
The
eslint-config-nextis at version 15.2.4 whilenextis at 14.2.35. While this may work, it's generally recommended to keep these versions aligned to the same major version to avoid potential compatibility issues.Consider aligning the versions:
📝 Committable suggestion
🤖 Prompt for AI Agents