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 packages/job-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"ioredis": "^5.2.4",
"luxon": "^3.1.0",
"mysql2": "^2.3.3",
"next": "^14.2.24",
"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

Upgrading next to version 15 introduces a requirement for React 19. The react and react-dom dependencies in this package.json are on version 17 (^17.0.2), which is incompatible. This will lead to build failures or runtime errors.

To resolve this, you'll need to also upgrade react and react-dom to a version compatible with Next.js 15 (e.g., 19.0.0-rc.0 or newer) and address any breaking changes from both the Next.js and React upgrades.

Given the complexity of this major version upgrade, you might consider if there's a patch version of next@14 that fixes the vulnerability, or if the usage of next can be removed if it's not essential for this job server.

"octokit": "^2.0.10",
"pino": "^8.7.0",
"react": "^17.0.2",
Expand Down
Loading