Skip to content
Merged
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
86 changes: 40 additions & 46 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"clsx": "^2.1.1",
"next": "^16.0.0",
"next": "16.0.7",
Copy link

Copilot AI Dec 11, 2025

Choose a reason for hiding this comment

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

The Next.js version is pinned to an exact version (16.0.7) while other dependencies use caret ranges. For consistency with the rest of the package.json and to allow automatic patch updates for future security fixes, consider using "^16.0.7" instead of "16.0.7".

Suggested change
"next": "16.0.7",
"next": "^16.0.7",

Copilot uses AI. Check for mistakes.
"react": "^19.0.0",
"react-dom": "^19.0.0"
Comment on lines 18 to 19
Copy link

Copilot AI Dec 11, 2025

Choose a reason for hiding this comment

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

According to the PR description, this vulnerability affects React Server Components in both React and Next.js (CVE-2025-55182). While Next.js is updated to 16.0.7, the React and react-dom packages remain at ^19.0.0 (resolving to 19.2.0). Please verify with the security advisories whether the current React version 19.2.0 is patched for this vulnerability or if React packages also need to be updated to specific versions.

Suggested change
"react": "^19.0.0",
"react-dom": "^19.0.0"
"react": "^19.2.1",
"react-dom": "^19.2.1"

Copilot uses AI. Check for mistakes.
},
Expand Down
Loading