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 frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"next": "^15.1.2",
"next": "^16.1.5",
Copy link

Copilot AI Jan 28, 2026

Choose a reason for hiding this comment

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

The PR description mentions upgrading from Next.js 15.5.10, but the actual change shows an upgrade from ^15.1.2 to ^16.1.5. This is a discrepancy between the PR title and the actual code change. The change itself appears correct as ^16.1.5 will fix the security vulnerability, but the PR metadata may be inaccurate.

Copilot uses AI. Check for mistakes.
"react": "^18.3.1",
"react-dom": "^18.3.1",
Comment on lines 16 to 17
Copy link

Copilot AI Jan 28, 2026

Choose a reason for hiding this comment

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

Next.js 16 requires React 19 or later. The current React version (^18.3.1) is incompatible with Next.js 16. Both 'react' and 'react-dom' need to be upgraded to ^19.0.0 or later. The package-lock.json already shows React 19, indicating there's a mismatch between package.json and package-lock.json.

Copilot uses AI. Check for mistakes.
"next-auth": "^4.24.5",
Copy link

Copilot AI Jan 28, 2026

Choose a reason for hiding this comment

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

NextAuth.js v4 may not be fully compatible with Next.js 16. Next.js 16 is better supported by Auth.js v5 (the successor to NextAuth.js v4). Consider upgrading to '@auth/nextjs' (Auth.js v5) or verifying that next-auth v4.24.5 is compatible with Next.js 16 and React 19.

Copilot uses AI. Check for mistakes.
Expand Down
Loading