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 apps/nextjs-13_2_0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"next": "13.2.0",
"next": "15.5.10",
Copy link

Choose a reason for hiding this comment

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

Build breaks due to removed experimental.appDir config

High Severity

Bumping next to 15.5.10 while next.config.js still uses experimental: { appDir: true, instrumentationHook: true } will cause the build to fail. The appDir key was removed from experimental in Next.js 14+ and produces an "Unrecognized key(s) in object: 'appDir' at 'experimental'" error. The instrumentationHook key also produces a deprecation warning in Next.js 15. The config file was not updated alongside this version bump.

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.

Version-specific test app no longer tests intended version

High Severity

This app exists specifically to test @sentry/nextjs against Next.js 13.2.0, as evident from the directory name nextjs-13_2_0, the package name nextjs-13_2_0-test-application, and the corresponding payload files. Bumping to 15.5.10 (a two-major-version jump) completely defeats the purpose of this version-pinned test application and removes test coverage for Next.js 13.2.0 compatibility.

Fix in Cursor Fix in Web

"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.4.5"
Expand Down
Loading