Next Js Daily: Request Data Integrity and Turbopack Runtime Fixes

Today's merges center on restoring correctness between internal request handling and userland APIs, plus a cluster of Turbopack runtime and chunking fixes. Multiple flaky test unflaking PRs from unstubbable also landed to stabilize the cache components test suite.

Duration: PT2M37S

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-08-12T22:00:25Z
  • Audio duration: PT2M37S

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 August 12th, and today's activity shows Next.js tightening the gap between what the framework thinks is happening and what developers actually observe.

The headline fix is PR 97166 from unstubbable, restoring the live headers view of an incoming request. Two earlier changes had each patched header stripping for different reasons, but together they left the headers function showing stale data instead of tracking the live request. A proxy writing a header and reading…

The second theme is Turbopack runtime stability. PR 97215 from gnoff fixes a race where the shared browser runtime could execute before async chunks set up their loading queue, which was silently blocking hydration in some cases. PR 97164 from timneutkens fixes an unwanted cross-origin attribute leaking into script…

A third thread: test reliability. Unstubbable shipped three separate unflaking PRs — 97246, 97250, and 97187 — all addressing the same root cause, retry budgets too tight for dev-mode reload costs in cache component tests. Worth remembering if you're debugging local test flakes with similar timing patterns.

Also notable: gnoff opened work to stop compressing the resume data cache, replacing…

L…

Nearby episodes from Next Js Daily

  1. Router Rewrite and Strict Route Matching Take Shape
  2. Routing Gets a Deep Cleanup
  3. Rebuilding the Router's Data Layer
  4. The 16.3 Stabilization Push
  5. The PPR Cleanup and the Request Sync Bug
  6. Chasing Infinite Loops in Navigation
  7. Cache Components Hardening and a Turbopack Deadlock Fix
  8. Server Actions Get Rerouted, Turbopack's Watcher Gets Rebuilt