Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@sentry/nextjs": "latest || *",
"@orpc/server": "latest",
"@orpc/client": "latest",
"next": "14.2.35",
"next": "16.1.7",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Next.js 16 bumped without updating React to 19

High Severity

next is bumped from 14.2.35 to 16.1.7 (a two-major-version jump) but react and react-dom remain at 18.3.1, and @types/react/@types/react-dom remain at 18.x. Every other Next.js 16 test application in this repo uses react 19.1.0, react-dom 19.1.0, and @types/react/@types/react-dom at ^19. Next.js 16 internally bundles React 19 canary for server components, meaning the installed React 18 will likely conflict, causing build or runtime failures in this e2e test application. The eslint-config-next at ^14.2.4 is also stale for Next.js 16.

Additional Locations (1)
Fix in Cursor Fix in Web

"react": "18.3.1",
"react-dom": "18.3.1",
"server-only": "^0.0.1"
Expand Down
Loading