Next.js 14.2.26 introduces subtle refinements over version 14.2.25, primarily focusing on internal dependencies and potential bug fixes. Looking at the details, the core next package and its associated @next/env and @next/swc packages have been updated, moving from 14.2.25 to 14.2.26. These internal package updates likely involve performance enhancements, bug resolutions, or compatibility improvements with the broader Next.js ecosystem.
Developers should note the consistent dependency on React and React DOM at version ^18.2.0, indicating stability in the React integration. The peer dependency on @playwright/test is locked to ^1.41.2, suggesting continued integration with this testing framework. The @opentelemetry/api remains at ^1.1.0.
Both versions maintain an extensive list of devDependencies, highlighting the comprehensive tooling Next.js provides for development, testing, and optimization. The consistent file count (6373) in the distributed tarballs and similar unpacked sizes suggest the changes are not related to adding or removing functionality in Next.js. The release date difference indicates a week between releases, reflecting an active development cycle. Developers should upgrade to 14.2.26 expecting general improvements and fixes, ensuring compatibility and optimal performance. Reviewing the detailed changelog would reveal specific details of these incremental changes.
All the vulnerabilities related to the version 14.2.26 of the package
Information exposure in Next.js dev server due to lack of origin verification
A low-severity vulnerability in Next.js has been fixed in version 15.2.2. This issue may have allowed limited source code exposure when the dev server was running with the App Router enabled. The vulnerability only affects local development environments and requires the user to visit a malicious webpage while npm run dev
is active.
Because the mitigation is potentially a breaking change for some development setups, to opt-in to the fix, you must configure allowedDevOrigins
in your next config after upgrading to a patched version. Learn more.
Learn more: https://vercel.com/changelog/cve-2025-48068
Thanks to sapphi-red and Radman Siddiki for responsibly disclosing this issue.
Next.js Affected by Cache Key Confusion for Image Optimization API Routes
A vulnerability in Next.js Image Optimization has been fixed in v15.4.5 and v14.2.31. When images returned from API routes vary based on request headers (such as Cookie
or Authorization
), these responses could be incorrectly cached and served to unauthorized users due to a cache key confusion bug.
All users are encouraged to upgrade if they use API routes to serve images that depend on request headers and have image optimization enabled.
More details at Vercel Changelog
Next.js Content Injection Vulnerability for Image Optimization
A vulnerability in Next.js Image Optimization has been fixed in v15.4.5 and v14.2.31. The issue allowed attacker-controlled external image sources to trigger file downloads with arbitrary content and filenames under specific configurations. This behavior could be abused for phishing or malicious file delivery.
All users relying on images.domains
or images.remotePatterns
are encouraged to upgrade and verify that external image sources are strictly validated.
More details at Vercel Changelog
Next.js Improper Middleware Redirect Handling Leads to SSRF
A vulnerability in Next.js Middleware has been fixed in v14.2.32 and v15.4.7. The issue occurred when request headers were directly passed into NextResponse.next()
. In self-hosted applications, this could allow Server-Side Request Forgery (SSRF) if certain sensitive headers from the incoming request were reflected back into the response.
All users implementing custom middleware logic in self-hosted environments are strongly encouraged to upgrade and verify correct usage of the next()
function.
More details at Vercel Changelog