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 examples/middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@stackframe/stack": "workspace:*",
"next": "^14.2",
"next": "^15.5.10",

Choose a reason for hiding this comment

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

critical

This major version upgrade of Next.js from v14 to v15 introduces breaking changes that require other dependencies to be updated as well:

  1. React version (Critical): Next.js 15 requires React 19. The react and react-dom dependencies (and their corresponding @types/ packages) need to be upgraded from ^18 to a compatible React 19 version (e.g., ^19.0.0-rc.0). Without this, the application will not work.

  2. ESLint config (High): The eslint-config-next dev dependency should be updated to match the new Next.js version (e.g., 15.5.10) to ensure linting rules are up-to-date and compatible.

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