-
Notifications
You must be signed in to change notification settings - Fork 929
security: fix CVE-2025-66478 - update Next.js #113
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?
security: fix CVE-2025-66478 - update Next.js #113
Conversation
|
@emmanuelish is attempting to deploy a commit to the JS Mastery Pro Team on Vercel. A member of the Team first needs to authorize it. |
WalkthroughThe package.json dependency for Next.js has been updated from version 14.2.3 to 14.2.35. This is a patch-level version bump with no changes to other dependencies, build scripts, or configuration settings. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (1)
package.json(1 hunks)
| "dwolla-v2": "^3.4.0", | ||
| "lucide-react": "^0.374.0", | ||
| "next": "14.2.3", | ||
| "next": "14.2.35", |
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.
Update eslint-config-next to match the Next.js version.
The next package has been updated to 14.2.35, but eslint-config-next remains at 14.2.3 in devDependencies. This version mismatch can lead to inconsistent linting rules and potential compatibility issues.
Update eslint-config-next to 14.2.35 to align with the Next.js version:
- "eslint-config-next": "14.2.3",
+ "eslint-config-next": "14.2.35",Also applies to: 44-44
🤖 Prompt for AI Agents
In package.json around lines 25 and 44, the devDependency "eslint-config-next"
is still at 14.2.3 while "next" was bumped to 14.2.35; update the
"eslint-config-next" entry to "14.2.35" to match, then run your package manager
(npm/yarn/pnpm) to install and update the lockfile so dependencies stay
consistent.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.