-
Notifications
You must be signed in to change notification settings - Fork 7
chore: upgrate nextJS version to avoid vulnerabilities #177
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
chore: upgrate nextJS version to avoid vulnerabilities #177
Conversation
WalkthroughUpdates the Next.js dependency version in Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🧰 Additional context used📓 Path-based instructions (1)**/*⚙️ CodeRabbit configuration file
Files:
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
Comment |
Greptile OverviewGreptile SummaryUpdated Next.js from 14.2.16 to 14.2.35, bringing 19 patch releases worth of bug fixes and security improvements. Key Changes:
Compatibility:
Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant PM as Package Manager
participant NPM as NPM Registry
participant Next as Next.js Core
participant SWC as SWC Compilers
Dev->>PM: Update package.json (next: 14.2.35)
Dev->>PM: Run npm install
PM->>NPM: Fetch next@14.2.35
NPM->>PM: Return next@14.2.35 package
PM->>NPM: Fetch @next/env@14.2.35
NPM->>PM: Return @next/env@14.2.35
PM->>NPM: Fetch SWC compilers (14.2.33)
Note over PM,NPM: Platform-specific SWC packages<br/>darwin-arm64, linux-x64, etc.
NPM->>PM: Return SWC packages@14.2.33
PM->>PM: Update package-lock.json
PM->>Next: Install Next.js 14.2.35
Next->>SWC: Link to SWC 14.2.33 compilers
PM-->>Dev: Installation complete
Dev->>Next: npm run dev / npm run build
Next->>SWC: Compile TypeScript/JSX
SWC-->>Next: Compiled output
Next-->>Dev: Application ready
|
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.
1 file reviewed, no comments

TL;DR
Upgraded Next.js from version 14.2.16 to 14.2.35.
What changed?
This PR updates the Next.js dependency from version 14.2.16 to 14.2.35 in both package.json and package-lock.json files. The update includes changes to the @next/env package and all platform-specific SWC compiler packages.
How to test?
npm installnpm run devWhy make this change?
This update provides the latest bug fixes, security patches, and performance improvements from the Next.js team. Keeping dependencies up-to-date is important for maintaining application security and stability.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.