惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
量子位
aimingoo的专栏
aimingoo的专栏
V
V2EX
Vercel News
Vercel News
B
Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
N
News and Events Feed by Topic
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
S
Secure Thoughts
U
Unit 42
博客园 - 叶小钗
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News | PayPal Newsroom
Help Net Security
Help Net Security
S
Security Affairs
Microsoft Security Blog
Microsoft Security Blog
W
WeLiveSecurity
博客园 - Franky
Forbes - Security
Forbes - Security
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
Schneier on Security
Schneier on Security
I
InfoQ
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
Webroot Blog
Webroot Blog
AWS News Blog
AWS News Blog
Last Week in AI
Last Week in AI
Security Archives - TechRepublic
Security Archives - TechRepublic
C
CERT Recently Published Vulnerability Notes
N
News and Events Feed by Topic
阮一峰的网络日志
阮一峰的网络日志
L
Lohrmann on Cybersecurity
SecWiki News
SecWiki News
Recent Commits to openclaw:main
Recent Commits to openclaw:main
J
Java Code Geeks

Next.js Blog

July 2026 Security Release Next.js Security Release and Our Next Patch Release Turbopack: What's New in Next.js 16.3 Next.js 16.3: AI Improvements Next.js 16.3: Instant Navigations Next.js Across Platforms: Adapters, OpenNext, and Our Commitments Next.js 16.2: AI Improvements Next.js 16.2 Turbopack: What's New in Next.js 16.2 Building Next.js for an agentic future Inside Turbopack: Building Faster by Building Less Next.js 16.1 Next.js Security Update: December 11, 2025 Security Advisory: CVE-2025-66478 Next.js 16 Next.js 16 (beta) Next.js 15.5 Next.js 15.4 Next.js 15.3 Building APIs with Next.js Next.js 15.2 Composable Caching with Next.js Next.js 15.1 Our Journey with Caching Next.js 15 Turbopack Dev is Now Stable Next.js 15 RC 2 Next.js 15 RC Next.js 14.2 Next.js 14.1 Next.js 14 How to Think About Security in Next.js Next.js App Router Update Next.js 13.4 Next.js 13.3 Next.js 13.2 Next.js 13.1 Next.js 13 Next.js 12.3 Next.js 12.2 Layouts RFC Next.js 12.1 Next.js 12 Next.js 11.1 Next.js 11 Next.js 10.2 Next.js 10.1 Incrementally Adopting Next.js Next.js 10 Next.js 9.5 Next.js 9.4 Next.js 9.3 Next.js 9.2 Next.js 9.1.7 Introducing Create Next App Next.js 9.1 Next.js 9.0.7 Next.js 9 Next.js 8.1 Next.js 8.0.4 Styling Next.js with Styled JSX Next.js 8 Webpack Memory Improvements Next.js 8 Next.js 7 Next.js 6.1 Next.js 6 and Nextjs.org Next.js 5.1: Faster Page Resolution, Environment Config & More Next.js 5: Universal Webpack, CSS Imports, Plugins and Zones
Next.js 13.5
Jimmy Lai, Tim Neutkens, Tobias Koppers · 2023-09-20 · via Next.js Blog

Next.js 13.5 improves local dev performance and reliability with:

  • 22% faster local server startup: Iterate faster with the App & Pages Router
  • 29% faster HMR (Fast Refresh): For faster iterations when saving changes
  • 40% less memory usage: Measured when running next start
  • Optimized Package Imports: Faster updates when using popular icon and component libraries
  • next/image Improvements: <picture>, art direction, and dark mode support
  • And over 438 bugs patched!

Upgrade today and register for Next.js Conf on Oct 26:

Improving startup and Fast Refresh time

We're excited to see the continued adoption of the App Router, now growing 80% MoM when looking at the top 10 million origins crawled by the HTTP Archive.

2023 CRuX Dataset for Top 1 Million Mobile Sites on the Web2023 CRuX Dataset for Top 1 Million Mobile Sites on the Web

Since Next.js 13.4, our focus has been on improving performance and reliability for App Router applications. Comparing 13.4 to 13.5, we've seen the following improvements on a new application:

  • 22% faster local server startup
  • 29% faster HMR (Fast Refresh)
  • 40% less memory usage

We were able to achieve this performance increase through optimizations like:

  • Doing less work by caching or minimizing slow operations
  • Optimizing expensive file system operations
  • Better incremental tree traversal during compilation
  • Moving unnecessary blocking synchronous calls to be lazy
  • Automatically configuring large icon libraries

Next.js user Lattice reported between 87-92% faster compilation in their testing.

While we continue to iterate and improve our current bundler performance, we're also working on Turbopack (Beta) in parallel to further increase performance. With 13.5, next dev --turbo now supports more features.

Optimized Package Imports

We've made an exciting breakthrough to optimize package imports, improving both local dev performance and production cold starts, when using large icon or component libraries or other dependencies that re-export hundreds or thousands of modules.

Previously, we added support for modularizeImports, enabling you to configure how imports should resolve when using these libraries. In 13.5, we have superseeded this option with optimizePackageImports, which doesn't require you to specify the mapping of imports, but instead will automatically optimize imports for you.

Libraries like @mui/icons-material, @mui/material, date-fns, lodash, lodash-es, ramda, react-bootstrap, @headlessui/react ,@heroicons/react , and lucide-react are now automatically optimized, only loading the modules you are actually using, while still giving you the convenience of writing import statements with many named exports.

View the PR or learn more about optimizePackageImports in our documentation.

next/image Improvements

Based on community feedback, we've added a new experimental function unstable_getImgProps() to support advanced use cases without using the <Image> component directly, including:

Additionally, the placeholder prop now supports providing arbitrary data:image/ for placeholder images that shouldn't be blurred (demo).

Learn more about next/image in our documentation.

Other Improvements

Since 13.4.0, we've fixed over 438 bugs and made various improvements including:

  • [Docs] New documentation on Forms and Mutations
  • [Docs] New documentation on Server and Client Components
  • [Docs] New documentation on Content Security Policy and Nonces
  • [Docs] New documentation on Caching and Revalidating
  • [Feature] useParams and useSearchParams from next/navigation now work in the Pages Router for incremental adoption
  • [Feature] Support for scroll: false on router.push / router.replace
  • [Feature] Support for scroll={false} on next/link
  • [Feature] HTTPS support for development: next dev --experimental-https
  • [Feature] Added support for cookies().has() (Docs)
  • [Feature] Added support for IPv6 hostnames
  • [Feature] Added support for Yarn PnP with the App Router
  • [Feature] Added support for redirect() in Server Actions
  • [Feature] Added support for using Bun with creating projects: bunx create-next-app (Docs)
  • [Feature] Draft Mode support for use inside Middleware and the Edge Runtime
  • [Feature] cookies() and headers() are now supported inside Middleware
  • [Feature] Metadata API now supports summary_large_image in Twitter cards
  • [Feature] RedirectType is now exported from next/navigation
  • [Feature] Added experimental test mode for Playwright (Docs)
  • [Improvement] Refactored next start to handle 1062% more requests/second
  • [Improvement] Optimized Next.js internals to improve cold starts (up to 40% faster, tested on Vercel)
  • [Improvement] Better Jest support for the App Router (PR)
  • [Improvement] Redesigned next dev output (PR)
  • [Improvement] Server Actions now work with fully static routes (including revalidating data with ISR)
  • [Improvement] Server Actions no longer block navigation between routes
  • [Improvement] Server Actions can no longer trigger multiple concurrent actions
  • [Improvement] Server Actions calling redirect() now push into the history stack instead of replacing the current entry to ensure the back button works
  • [Improvement] Server Actions add no-cache, no-store cache-control header to prevent browser caching
  • [Improvement] Fixed a bug where Server Actions could be called twice after navigating
  • [Improvement] Improved support for Emotion CSS with Server Components
  • [Improvement] Support for scroll-behavior: smooth for hash url changes
  • [Improvement] Added polyfill for Array.prototype.at in all browsers
  • [Improvement] Fixed race condition in next dev cache when handling multiple parallel requests
  • [Improvement] fetch output in console now shows requests that skipped cache with cache: SKIP
  • [Improvement] usePathname now properly strips basePath
  • [Improvement] next/image now properly preloads images in App Router
  • [Improvement] not-found no longer renders the root layout twice
  • [Improvement] NextRequest can now be cloned (i.e new NextRequest(request))
  • [Improvement] app/children/page.tsx now properly works for literal /children routes
  • [Improvement] Content Security Policy now supports nonce for preinitialized scripts
  • [Improvement] Using redirect from next/navigation now supports basePath
  • [Improvement] Fixed process.env not being available during rendering in output: 'standalone' mode
  • [Improvement] Improved error message when using a Static Export with unsupported features
  • [Improvement] Improved recursive readdir implementation (~3x faster)
  • [Improvement] Fixed fallback: false with dynamic route segments previously causing hanging requests
  • [Improvement] Fixed error where signal was passed to revalidate requests, causing them to fail when the request was already aborted
  • [Improvement] Removed fetch polling on 404 page in favor of websocket events, preventing unnecessary reloads when running next dev
  • [Improvement] performance.measure no longer can cause a hydration mismatch
  • [Improvement] Fixed cases where an unexpected full reload could happen editing pages/_app
  • [Improvement] ImageResponse now extends Response for improved type checking (PR)
  • [Improvement] pages is no longer shown when there is no pages output in next build
  • [Improvement] Fixed skipTrailingSlashRedirect being ignored in <Link>
  • [Improvement] Fixed duplicated dynamic metadata routes in dev mode

Contributors

Next.js is the result of the combined work of over 2,800 individual developers, industry partners like Google and Meta, and our core team at Vercel. Join the community on GitHub Discussions, Reddit, and Discord.

This release was brought to you by:

And the contributions of: @opnay, @vinaykulk621, @goguda, @coreyleelarson, @bencmbrook, @cramforce, @williamli, @stefanprobst, @feugy, @Kikobeats, @dvoytenko, @MaxLeiter, @devjiwonchoi, @lacymorrow, @kylemcd, @tibi1220, @iamarpitpatidar, @pythagoras-yamamoto, @alexkirsz, @jsteele-stripe, @tknickman, @gaojude, @janicklas-ralph, @ericfennis, @JohnAdib, @MiLk, @delbaoliveira, @leerob, @LuudJanssen, @lucasconstantino, @davecarlson, @colinhacks, @jantimon, @Banbarashik, @ForsakenHarmony, @arturbien, @gnoff, @hsrvms, @DuCanhGH, @tim-hanssen, @Aryan9592, @rishabhpoddar, @Lantianyou, @joulev, @AkifumiSato, @trigaten, @HurSungYun, @DevLab2425, @SukkaW, @daniel-web-developer, @ky1ejs, @wyattjoh, @ShaunFerris, @syedtaqi95, @Heidar-An, @Jeffrey-Zutt, @Ryan-Dia, @steppefox, @hiro0218, @rjsdnql123, @fgiuliani, @steven-tey, @AntoineBourin, @adamrhunter, @darshanjain-entrepreneur, @s0h311, @djreillo, @dijonmusters, @cassidoo, @anonrig, @gfgabrielfranca, @Bitbbot, @BrennanColberg, @Nick-Mazuk, @thomasballinger, @lucgagan, @nroland013, @SonMooSans, @jenewland1999, @thorwebdev, @jyunhanlin, @Gnadhi, @yagogmaisp, @carlos-menezes, @ryo-manba, @vamcs, @matepapp, @SleeplessOne1917, @ecklf, @karlhorky, @starunaway, @FernandVEYRIER, @Terro216, @anthonyshew, @suhaotian, @simonswiss, @feikerwu, @lubakravche, @masnormen, @bottxiang, @mhmdrioaf, @tyler-lutz, @vincenthongzy, @yigithanyucedag, @doinki, @danger-ahead, @bre30kra69cs, @Yash-Singh1, @krmeda, @bigyanse, @2-NOW, @Mingyu-Song, @morganfeeney, @aralroca, @nickmccurdy, @adamjmcgrath, @angel1254mc, @cxa, @ibash, @mohanraj-r, @kevinmitch14, @iaurg, @steebchen, @Cow258, @charlesbdudley, @tyhopp, @Drblessing, @milovangudelj, @jacobsfletch, @JoshuaKGoldberg, @zignis, @ChristianIvicevic, @mrxbox98, @oliviertassinari, @fsansalvadore, @tvthatsme, @dvakatsiienko, @brunoeduardodev, @sonam-serchan, @vicsantizo, @leodr, @wiscaksono, @hustLer2k, @joshuabaker, @shozibabbas, @omarhoumz, @jamespearson, @tristndev, @AldeonMoriak, @manovotny, @mirismaili, @SuttonJack, @jeremydouglas, @JanCizmar, @mltsy, @WilderDev, @Guilleo03, @Willem-Jaap, @escwxyz, @wiredacorn, @Ethan-Arrowood, @BaffinLee, @greatSumini, @ciruz, @kijikunnn, @DustinsCode, @riqwan, @joostdecock, @nikolovlazar, @Bowens20832, @JohnAlbin, @gidgudgod, @maxproske, @dunklesToast, @yyuemii, @mPaella, @mknichel, @niko20, @mkcy3, @valentinpolitov, @smaeda-ks, @keyz, @Schniz, @koba04, @jiwooIncludeJeong, @ethanmick, @didemkkaslan, @itsmingjie, @v1k1, @thepatrick00, @taylorbryant, @kvnang, @alainkaiser, @simPod, @svarunid, @pauek, @lycuid, @MarkAtOmniux, @darshkpatel, @johnta0, @devagrawal09, @ibrahemid, @JesseKoldewijn, @javivelasco, @05lazy, @alexanderbluhm, @Fonger, @souporserious, @DevEsteves, @sanjaiyan-dev, @g12i, @cesarkohl, @josh, @li-jia-nan, @gabschne, @akd-io, @runjuu, @jocarrd, @nnnnoel, @ferdingler, and @ikryvorotenko