-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
chore(deps): update dependency next [security] #9966
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?
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 |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |
| "@js-temporal/polyfill": "^0.4.4", | ||
| "@tanstack/react-query": "workspace:*", | ||
| "@tanstack/react-query-devtools": "workspace:*", | ||
| "next": "^15.4.8", | ||
| "next": "^16.0.0", | ||
|
Contributor
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. 🧩 Analysis chain🌐 Web query:
💡 Result: Next.js 16.0.0 — minimum Node.js version
Notable breaking changes (from the official 16 release notes / upgrade guide)
Sources: Next.js 16 release post [1], official “Upgrading: Version 16” guide [2]. 🏁 Script executed: cat integrations/react-next-15/package.jsonRepository: TanStack/query Length of output: 529 Add Next.js 16.0.0 requires Node.js 20.9.0+ (Node.js 18 no longer supported). Add
Review the integration code for required updates to these areas before merging. 🤖 Prompt for AI Agents |
||
| "react": "^19.2.1", | ||
| "react-dom": "^19.2.1", | ||
| "tupleson": "0.23.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.
React version incompatibility with Next.js 15.
Next.js 15 requires React 19 for full support, but this package still specifies React 18.2.0. This mismatch may cause build failures or runtime errors due to incompatible peer dependencies.
Update the React dependencies to React 19:
🔧 Proposed fix
🤖 Prompt for AI Agents