Latest in branch 13
13.5.11
Released 27 Mar 2025
(1 year ago)
SoftwareNext.js
Version13
Status
End of life
Initial release13.0.0
25 Oct 2022
(3 years ago)
Latest release13.5.11
27 Mar 2025
(1 year ago)
End of life21 Dec 2024
(Ended 1 year, 5 months ago)
Release noteshttps://nextjs.org/blog/next-13
Source codehttps://github.com/vercel/next.js/tree/v13.5.11
Downloadhttps://www.npmjs.com/package/next/v/13.5.11
Next.js 13 ReleasesView full list

What Is New in Next.js 13 (summary table)

Next.js 13 introduces foundational upgrades focused on performance and developer experience. The major updates include a new app router, a faster bundler, and enhanced components.

Category Key Changes
Core Architecture New app/ directory (beta) with React Server Components, Streaming, and Layouts.
Tooling Turbopack (alpha), a Rust-based successor to Webpack for faster updates.
Components New next/image component, new next/font (beta), and updated next/link.
Rendering & Data Async Components and extended fetch API for simpler data fetching.

How does the new App Router improve my Next.js projects?

The new app/ directory (beta) rethinks how you build applications. It uses React Server Components by default, which allows you to render components on the server and reduce client-side JavaScript. This matters because it leads to faster initial page loads and improved Core Web Vitals.

Key Features of the App Router

  • Layouts: Persistent UI that doesn't re-render between navigations, with nested routing support.
  • Streaming: You can progressively stream UI from the server using React Suspense boundaries.
  • Simplified Data Fetching: Use async/await directly in Server Components with the extended fetch API that provides automatic caching and deduping.

In practice, this model gives you more granular control over rendering and data flow. It's a shift towards a more server-centric architecture, which is a common evolution in full-stack JavaScript frameworks.

What performance gains does Turbopack offer over Webpack?

Turbopack is a new incremental bundler written in Rust, announced as alpha for development. It's designed to be significantly faster than Webpack, especially in large applications. Initial benchmarks show updates up to 700x faster in some cases.

It's built on Turbo, the same engine powering the incremental build system in Vercel's projects. The speed comes from only bundling the minimum required assets for a development update. For now, it's opt-in and only supports development mode, not production builds.

This is a big deal for developer velocity. Waiting for a dev server to update is a common bottleneck in the Node.js ecosystem, and Turbopack aims to eliminate it.

How are core components like Image and Link improved?

Next.js 13 refines several built-in components to require less configuration and client code. The next/image component has been rewritten to use the native HTML <img> tag by default, which reduces client-side JavaScript overhead. It now has better alignment with web standards.

The next/link component no longer requires a child <a> tag. You can simply pass the href and children directly to the Link component, making the code cleaner and less error-prone.

Additionally, next/font (beta) automates font optimization. It automatically subsets custom fonts and serves them from your own domain, removing external network requests and improving privacy and performance.

FAQ

Is the new `app` directory stable, and should I migrate my existing project?
The app/ directory is in beta. It's a stable foundation for new projects, but the API might have minor changes. For existing large projects, it's recommended to experiment gradually or start new features with it. The original pages/ directory continues to be fully supported.

Do I have to use React Server Components in the new app router?
Yes, components inside app/ are Server Components by default. This is a core part of the architecture. However, you can still use Client Components for interactivity by adding the 'use client' directive at the top of a file.

Can I use Turbopack in production today?
No. Turbopack is currently in alpha and only available for next dev (development mode). Production builds still use Webpack and other proven tooling. It's for speeding up local development only at this stage.

How does the new `next/font` work with Google Fonts?
next/font will download your specified Google Fonts at build time and host them as static assets alongside the rest of your application. This means no browser needs to make a request to Google's servers, improving speed and privacy.

What happens to my existing `next/image` usage when I upgrade?
The old component remains available under a legacyBehavior prop or via a separate import to ensure backward compatibility. You'll get a codemod to help migrate, but you can update at your own pace. The new default is simpler and more performant.

Releases In Branch 13

VersionRelease date
13.5.1127 Mar 2025
(1 year ago)
13.5.1025 Mar 2025
(1 year ago)
13.5.922 Mar 2025
(1 year ago)
13.5.821 Dec 2024
(1 year ago)
13.5.717 Sep 2024
(1 year ago)
13.5.619 Oct 2023
(2 years ago)
13.5.516 Oct 2023
(2 years ago)
13.5.403 Oct 2023
(2 years ago)
13.5.325 Sep 2023
(2 years ago)
13.5.220 Sep 2023
(2 years ago)
13.5.019 Sep 2023
(2 years ago)
13.5.119 Sep 2023
(2 years ago)
13.4.1919 Aug 2023
(2 years ago)
13.4.1818 Aug 2023
(2 years ago)
13.4.1717 Aug 2023
(2 years ago)
13.4.1615 Aug 2023
(2 years ago)
13.4.1514 Aug 2023
(2 years ago)
13.4.1307 Aug 2023
(2 years ago)
13.4.1121 Jul 2023
(2 years ago)
13.4.1221 Jul 2023
(2 years ago)
13.4.1014 Jul 2023
(2 years ago)
13.4.906 Jul 2023
(2 years ago)
13.4.803 Jul 2023
(2 years ago)
13.4.721 Jun 2023
(2 years ago)
13.4.615 Jun 2023
(2 years ago)
13.4.511 Jun 2023
(2 years ago)
13.4.426 May 2023
(3 years ago)
13.4.319 May 2023
(3 years ago)
13.4.212 May 2023
(3 years ago)
13.4.105 May 2023
(3 years ago)
13.4.004 May 2023
(3 years ago)
13.3.301 May 2023
(3 years ago)
13.3.401 May 2023
(3 years ago)
13.3.229 Apr 2023
(3 years ago)
13.3.122 Apr 2023
(3 years ago)
13.3.006 Apr 2023
(3 years ago)
13.2.410 Mar 2023
(3 years ago)
13.2.201 Mar 2023
(3 years ago)
13.2.301 Mar 2023
(3 years ago)
13.2.124 Feb 2023
(3 years ago)
13.2.023 Feb 2023
(3 years ago)
13.1.628 Jan 2023
(3 years ago)
13.1.523 Jan 2023
(3 years ago)
13.1.421 Jan 2023
(3 years ago)
13.1.320 Jan 2023
(3 years ago)
13.1.213 Jan 2023
(3 years ago)
13.1.124 Dec 2022
(3 years ago)
13.1.022 Dec 2022
(3 years ago)
13.0.715 Dec 2022
(3 years ago)
13.0.602 Dec 2022
(3 years ago)
13.0.523 Nov 2022
(3 years ago)
13.0.418 Nov 2022
(3 years ago)
13.0.311 Nov 2022
(3 years ago)
13.0.204 Nov 2022
(3 years ago)
13.0.131 Oct 2022
(3 years ago)
13.0.025 Oct 2022
(3 years ago)