Skip to content
Open
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.15",
Copy link
Copy Markdown

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.15 will cause a build error because next.config.js still uses experimental: { appDir: true }. Next.js 15 removed appDir from the experimental config object (it became stable in 13.4), and including it now produces an "Invalid next.config.js options detected: Unrecognized key(s) in object: 'appDir'" error. The next.config.js file needs to be updated alongside this version bump to remove the deprecated key.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 12eae35. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Version-specific test app loses its testing purpose

Medium Severity

The nextjs-13_2_0 app exists specifically to test Sentry integration with Next.js 13.2.0, as evidenced by its name and the existing nextjs-14_2_1 sibling app for a different version. Bumping it to 15.5.15 eliminates test coverage for the 13.2.0 version and creates near-duplicate coverage with nextjs-14_2_1, undermining the version-specific testing strategy of this example/test repository.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 12eae35. Configure here.

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