Next.js Daily: Chasing Down Deprecation Warnings and Cache Bugs

The team spent September 2nd hunting hidden reliability issues, from a test harness leaking thousands of deprecation warnings to router state bugs in both the App and Pages routers, alongside a Turbopack cache compression rollout that cuts disk usage by roughly twenty percent.

Duration: PT2M27S

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-09-03T06:09:26Z
  • Audio duration: PT2M27S

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 September 3rd, and this is Next.js Daily.

The biggest story today isn't one big feature, it's a coordinated cleanup of technical debt that's been quietly causing pain. Sebastian Silbermann's trace-deprecation CI experiment, PR 98183, surfaced that a single outdated import chain in the test harness was responsible for roughly eight thousand of the run's…

The second theme is router correctness. Three separate fixes landed for subtle state bugs: PR 98174 stops config redirects from misfiring on internal data requests when middleware is present, while PR 98182 and PR 98187 both fix a Pages Router bug where a prefetch marker was being mismatched or handed back as if it…

On performance, Luke Sandberg's per-family compression work for the Turbopack cache, PR 97714, is worth remembering: real-world testing showed about a twenty percent reduction in cache size with negligible read regression, by using faster compression for latency-sensitive metadata and heavier compression for the…

Looking ahead: watch for the SWC v77 upgrade in PR 97407, which changes AST shapes project-wide, and keep an eye on the force-gate test fixes since they affect how skipped suites behave in CI.

Tha…

Nearby episodes from Next.js Daily

  1. Turbopack Trims Down, Test Suite Gets Gated
  2. Quiet Failures and Cache Contracts
  3. Weekly Recap - Turbopack Correctness and Caching Overhaul
  4. The Cache Components Bug Cluster
  5. Rendering Reliability and Storage Speedups
  6. Caching Correctness and the Prospective Prerender Problem
  7. Routing Semantics and Bundle Shrinking
  8. Turbopack's Concurrency Cleanup