-
-
Notifications
You must be signed in to change notification settings - Fork 0
Bump next from 13.2.0 to 15.5.15 #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version-specific test app loses its testing purposeMedium Severity The Reviewed by Cursor Bugbot for commit 12eae35. Configure here. |
||
| "react": "18.2.0", | ||
| "react-dom": "18.2.0", | ||
| "typescript": "5.4.5" | ||
|
|
||


There was a problem hiding this comment.
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.appDirconfigHigh Severity
Bumping
nextto 15.5.15 will cause a build error becausenext.config.jsstill usesexperimental: { appDir: true }. Next.js 15 removedappDirfrom theexperimentalconfig 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. Thenext.config.jsfile needs to be updated alongside this version bump to remove the deprecated key.Reviewed by Cursor Bugbot for commit 12eae35. Configure here.