[Snyk] Security upgrade next from 13.4.2 to 14.2.35#135
[Snyk] Security upgrade next from 13.4.2 to 14.2.35#135snyk-io[bot] wants to merge 1 commit intomainfrom
Conversation
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NANOID-8492085
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Entelligence AI Vulnerability ScannerStatus: No security vulnerabilities found Your code passed our comprehensive security analysis. |
WalkthroughThis PR upgrades the Next.js framework from version 13.4.2 to 14.2.35, representing a major version bump that brings the application to the latest stable release in the Next.js 14.x line. The upgrade includes updates to all platform-specific SWC compiler binaries and several transitive dependencies. Notable changes include the removal of the 'zod' dependency, addition of '@swc/counter', and updated peer dependency requirements. The minimum Node.js version requirement has been raised from 16.8.0 to 18.17.0, reflecting Next.js 14's runtime requirements. This update likely includes performance improvements, new features, and bug fixes, but may require testing for breaking changes. Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
participant App as Next.js Application
participant NextCore as Next.js Core (v14.2.35)
participant Env as @next/env
participant SWC as SWC Compiler
participant Helpers as @swc/helpers
participant Counter as @swc/counter (NEW)
participant PostCSS as PostCSS (v8.4.31)
participant StyledJSX as styled-jsx
App->>NextCore: Initialize Application
activate NextCore
NextCore->>Env: Load environment variables
activate Env
Env-->>NextCore: Environment config
deactivate Env
NextCore->>SWC: Compile TypeScript/JavaScript
activate SWC
SWC->>SWC: Select platform-specific binary<br/>(darwin-arm64, linux-x64, win32, etc.)
SWC->>Helpers: Import helper functions (v0.5.5)
activate Helpers
Helpers->>Counter: Track compilation metrics
activate Counter
Counter-->>Helpers: Metrics data
deactivate Counter
Helpers-->>SWC: Helper utilities
deactivate Helpers
SWC-->>NextCore: Compiled code
deactivate SWC
NextCore->>PostCSS: Process CSS files
activate PostCSS
PostCSS->>PostCSS: Parse and transform CSS<br/>(using nanoid v3.3.11)
PostCSS-->>NextCore: Processed CSS
deactivate PostCSS
NextCore->>StyledJSX: Process styled-jsx components
activate StyledJSX
StyledJSX-->>NextCore: Compiled styles
deactivate StyledJSX
NextCore->>NextCore: Check browser compatibility<br/>(caniuse-lite v1.0.30001760)
NextCore-->>App: Application ready
deactivate NextCore
Note over App,NextCore: Node.js >= 18.17.0 required (upgraded from 16.8.0)
Note over SWC,Counter: New @swc/counter dependency for metrics tracking
Note over NextCore: Removed: zod, fibers, node-sass dependencies
Note for WindsurfPlease change the default marketplace provider to the following in the windsurf settings:Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts belowEmoji Descriptions:
Interact with the Bot:
Also you can trigger various commands with the bot by doing The current supported commands are
More commands to be added soon. |
Snyk has created this PR to fix 2 vulnerabilities in the npm dependencies of this project.
Snyk changed the following file(s):
gui/package.jsongui/package-lock.jsonVulnerabilities that will be fixed with an upgrade:
SNYK-JS-NEXT-14400636
SNYK-JS-NANOID-8492085
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information:
🧐 View latest project report
📜 Customise PR templates
🛠 Adjust project settings
📚 Read about Snyk's upgrade logic
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Improper Input Validation
🦉 Deserialization of Untrusted Data
EntelligenceAI PR Summary
Major Next.js framework upgrade from version 13.4.2 to 14.2.35 with dependency and runtime requirement updates.