Next.js Daily: React Upgrade and Memory Leak Fix

Next.js merged 7 pull requests yesterday, including a React upgrade and a critical memory leak fix for prefetch streams. Additional changes address image optimization bugs and system resource management.

Duration: PT1M45S

Episode overview

This episode is a short developer briefing from Next.js Daily.

It explains recent repository work in plain language.

  • Show: Next.js Daily
  • Published: 2026-02-10T11:11:32Z
  • Audio duration: PT1M45S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Good morning, it's February 10th, 2026, and you're listening to Next.js Daily.

The Next.js team merged seven pull requests yesterday, starting with a significant React upgrade. The nextjs-bot merged an upgrade from React build 2dd9b7cf to 272441a9, updating over 2,000 lines across 82 files to incorporate the latest upstream changes.

Hendrik Liebau merged a critical fix for memory leaks in browser prefetch streams. The previous implementation kept unclosed ReadableStreams as garbage collection roots in Chrome and Firefox, preventing proper cleanup. This fix leverages React Flight's new unstable_allowPartialStream option to close streams normally…

Daniel Tao fixed a bug in image optimization where the findClosestQuality function returned zero for low quality values, causing the server to reject requests with 400 errors. The fix changes the reduce function's initializer from zero to use the first quality value from the configuration array.

Luke Sandberg corrected a min-max confusion in Turbopack's shard amount calculation that treated all systems as 64-core machines and could cause overflow on larger systems.

Niklas Mischkulnig updated manifest loading calls to properly pass the…

Nearby episodes from Next.js Daily

  1. Turbopack Debug Fix and Lightning CSS Upgrade
  2. Version Resolution and Scroll Fixes
  3. Server HMR and Asset Cache Improvements
  4. Turbopack Optimizations and Runtime Improvements
  5. Turbopack Optimizations and React Updates
  6. Turbopack and Infrastructure Focus
  7. Server Action Optimization and Turbopack Performance
  8. React Upgrade and Instant Validation