-
Notifications
You must be signed in to change notification settings - Fork 1
Fix React Server Components CVE vulnerabilities #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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", | ||
| "react": "^19.2.1", | ||
| "react-dom": "^19.2.1", | ||
| "three": "^0.181.0", | ||
|
Comment on lines
+21
to
24
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nextis 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.10so future security/patch releases can be picked up without manual edits.