Latest in branch 14
14.2.35
Released 12 Dec 2025
(5 months ago)
SoftwareNext.js
Version14
Status
End of life
Initial release14.0.0
26 Oct 2023
(2 years ago)
Latest release14.2.35
12 Dec 2025
(5 months ago)
End of life26 Oct 2025
(Ended 7 months ago)
Release noteshttps://nextjs.org/blog/next-14
Source codehttps://github.com/vercel/next.js/tree/v14.2.35
Downloadhttps://www.npmjs.com/package/next/v/14.2.35
Next.js 14 ReleasesView full list

What Is New in Next.js 14

Next.js 14 focuses on speed, developer experience, and foundational upgrades. The core is now stable, setting the stage for future innovations without breaking changes.

Category Key Updates
Core & Performance Stable Core, Turbopack Updates (Beta), Improved Local Server Startup
Rendering & Data Partial Prerendering (Experimental), Stable Server Actions
Components & Styling next/image Improvements, next/font Updates
Developer Experience Enhanced Error Messages, Improved Debugging, Updated Learning Resources

How does Next.js 14 improve performance and the core?

The core of Next.js is now stable, meaning you can build on it without worrying about foundational changes. This stability is a result of extensive testing in production at Vercel and by the community.

Turbopack updates bring faster local server startup and improved performance for pages. It's now stable for App Router development, with Pages Router support remaining in beta. In practice, this means less waiting during development, especially in larger projects.

Partial Prerendering (Experimental)

This is a new paradigm that combines static pre-rendering with dynamic, streamed content. You get the instant loading of static pages with the flexibility of dynamic responses. It's built on React Suspense, allowing you to define fallbacks for dynamic parts.

What's the deal with Server Actions in Next.js 14?

Server Actions are now stable. They let you execute asynchronous server functions directly from your React components, reducing the need for manual API route creation for data mutations.

You define them with the 'use server' directive. This matters because it simplifies data writing logic, keeping it secure on the server while providing a seamless client-side experience. They integrate with the caching and revalidation system.

// Example of a Server Action
export default function Form() {
  async function createItem(formData) {
    'use server'
    // Logic to create item in your database
  }
  return <form action={createItem}>...</form>;
}

What enhancements were made to next/image and next/font?

The next/image component sees significant performance gains. It now has a 40% faster first load in Local Font Fallbacks and reduces Cumulative Layout Shift (CLS). This leads to better Web Vitals scores out of the box.

next/font now includes a new local font cache, eliminating layout shift during font loading. It also adds support for new fonts like Geist, the typeface used by Vercel. The font optimization process is more efficient, improving overall page load times.

How is the Developer Experience better in this release?

Error messages are more actionable. For example, the "Dynamic Server Usage" error now clearly points to the file and line causing the issue. This saves hours of debugging by providing immediate context.

The updated Next.js Learn course reflects the latest App Router patterns and APIs. It's a key resource for teams onboarding to modern Next.js development. Self-hosting improvements also make debugging easier in production-like environments.

FAQ

Is upgrading to Next.js 14 a breaking change?
No. The core is stable, and the upgrade is designed to be non-breaking for most projects. You can update your next package to benefit from performance improvements and new features like stable Server Actions.

Should I use Partial Prerendering in production now?
Partial Prerendering is currently marked as experimental. It's safe to try it out, but avoid using it for critical production paths until it reaches stable status in a future release.

Are Server Actions replacing API Routes?
Not entirely. Server Actions are ideal for mutations like form submissions or data updates. API Routes are still the right choice for building full RESTful endpoints, webhook handlers, or third-party integrations.

What's the status of Turbopack? Is it ready?
Turbopack is stable for development with the App Router. For projects using the Pages Router, it remains in beta. The focus is on improving stability and performance before a full stable release.

Do the image and font improvements require code changes?
Most improvements are automatic. Upgrading to Next.js 14 will give you the performance benefits for next/image and next/font without requiring changes to your existing component code.

Releases In Branch 14

VersionRelease date
14.2.3512 Dec 2025
(5 months ago)
14.2.3411 Dec 2025
(5 months ago)
14.2.3323 Sep 2025
(8 months ago)
14.2.3219 Aug 2025
(9 months ago)
14.2.3131 Jul 2025
(10 months ago)
14.2.3012 Jun 2025
(11 months ago)
14.2.2920 May 2025
(1 year ago)
14.2.2808 Apr 2025
(1 year ago)
14.2.2707 Apr 2025
(1 year ago)
14.2.2624 Mar 2025
(1 year ago)
14.2.2517 Mar 2025
(1 year ago)
14.2.2411 Feb 2025
(1 year ago)
14.2.2307 Jan 2025
(1 year ago)
14.2.2226 Dec 2024
(1 year ago)
14.2.2119 Dec 2024
(1 year ago)
14.2.2004 Dec 2024
(1 year ago)
14.2.1903 Dec 2024
(1 year ago)
14.2.1813 Nov 2024
(1 year ago)
14.2.1706 Nov 2024
(1 year ago)
14.2.1623 Oct 2024
(1 year ago)
14.2.1508 Oct 2024
(1 year ago)
14.2.1401 Oct 2024
(1 year ago)
14.2.1320 Sep 2024
(1 year ago)
14.2.1217 Sep 2024
(1 year ago)
14.2.1012 Sep 2024
(1 year ago)
14.2.1112 Sep 2024
(1 year ago)
14.2.909 Sep 2024
(1 year ago)
14.2.804 Sep 2024
(1 year ago)
14.2.727 Aug 2024
(1 year ago)
14.2.622 Aug 2024
(1 year ago)
14.2.510 Jul 2024
(1 year ago)
14.2.411 Jun 2024
(1 year ago)
14.2.324 Apr 2024
(2 years ago)
14.2.218 Apr 2024
(2 years ago)
14.2.112 Apr 2024
(2 years ago)
14.2.011 Apr 2024
(2 years ago)
14.1.420 Mar 2024
(2 years ago)
14.1.306 Mar 2024
(2 years ago)
14.1.204 Mar 2024
(2 years ago)
14.1.129 Feb 2024
(2 years ago)
14.1.018 Jan 2024
(2 years ago)
14.0.407 Dec 2023
(2 years ago)
14.0.316 Nov 2023
(2 years ago)
14.0.209 Nov 2023
(2 years ago)
14.0.130 Oct 2023
(2 years ago)
14.0.026 Oct 2023
(2 years ago)