Skip to content
Open
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
97 changes: 41 additions & 56 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"axios": "^1.13.2",
"framer-motion": "^12.23.24",
"lucide-react": "^0.548.0",
"next": "^16.0.7",
"next": "16.0.10",

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

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

next is pinned to an exact version (16.0.10) while all other dependencies use semver ranges. If this repo’s convention is to allow patch/minor updates via ranges (and rely on the lockfile for reproducibility), consider switching to ^16.0.10 so future security/patch releases can be picked up without manual edits.

Suggested change
"next": "16.0.10",
"next": "^16.0.10",

Copilot uses AI. Check for mistakes.
"react": "^19.2.1",
"react-dom": "^19.2.1",
"three": "^0.181.0",
Comment on lines +21 to 24

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

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

The PR bumps next to 16.0.10 but leaves eslint-config-next (and @next/eslint-plugin-next) on 16.0.6. Keeping these versions aligned with the installed Next.js version avoids unexpected lint rule/plugin incompatibilities; consider upgrading eslint-config-next to 16.0.10 as well.

Copilot uses AI. Check for mistakes.
Comment on lines +21 to 24

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

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

PR description says it updates React, Next.js, and related Server Components packages to patched versions for multiple CVEs, but this change set only updates next (React remains at 19.2.1 in the lockfile). Please confirm all affected packages/versions for the referenced CVEs are actually covered, and update any remaining packages if needed.

Copilot uses AI. Check for mistakes.
Expand Down