Skip to content
Open
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 apps/nextjs-14_2_1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@sentry/nextjs": "8.9.2",
"next": "14.2.1",
"next": "15.5.14",
Copy link

Choose a reason for hiding this comment

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

Next.js 15 requires React 19, but React 18 remains

High Severity

Bumping next to 15.5.14 without also bumping react and react-dom from ^18 to ^19 creates an incompatible dependency set. Next.js 15 requires React 19 as its minimum peer dependency. This will cause build failures or npm install peer dependency errors.

Additional Locations (1)
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.

@sentry/nextjs 8.9.2 doesn't support Next.js 15

High Severity

@sentry/nextjs version 8.9.2 declares peer dependencies of "next": "^13.4.0 || ^14.0.0", which explicitly excludes Next.js 15. Upgrading next to 15.5.14 without also upgrading @sentry/nextjs to a version that supports Next.js 15 (9.x+) will cause peer dependency conflicts and likely runtime failures in Sentry's Next.js instrumentation.

Fix in Cursor Fix in Web

"react": "^18",
"react-dom": "^18"
},
Expand Down
Loading