Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@segment/analytics-next": "^1.81.1",
"@vercel/og": "^0.8.5",
"classnames": "^2.5.1",
"next": "^14.2.32",
"next": "^16.1.1",
Copy link

Choose a reason for hiding this comment

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

Next.js 16 requires React 19 but React 18 remains

Upgrading next from 14.2.32 to 16.1.1 without upgrading React introduces a peer dependency incompatibility. Next.js 16 requires React 19, but the project still uses react and react-dom at version ^18.3.1. This major version mismatch will likely cause runtime errors or application failure. React and React DOM need to be upgraded to version 19 alongside the Next.js upgrade.

Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

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

eslint-config-next version mismatches Next.js 16

The eslint-config-next package remains at version 15.5.3 while next is upgraded to 16.1.1. The ESLint configuration package is typically versioned to match the Next.js version and may lack rules for Next.js 16 patterns or contain rules for deprecated patterns. This version mismatch could result in missing linting warnings or false positives during development and CI.

Fix in Cursor Fix in Web

"mixpanel-browser": "^2.64.0",
"nextra": "^3.1.0",
"nextra-theme-docs": "^3.3.1",
Expand Down
Loading
Loading