Next Js Daily: Turbopack Gets Leaner, Test Suite Gets a Cleanup

The Turbopack engine picked up garbage collection, smaller caches, and a worker-thread removal for faster builds, while the test suite finished a multi-PR migration away from deploy-mode skip flags toward a single gating mechanism.

Duration: PT2M42S

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-02T22:00:28Z
  • Audio duration: PT2M42S

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 2nd, and here's what moved in Next JS overnight.

The big story is Turbopack getting meaningfully leaner. Luke Sandberg landed three related changes: parent-count-driven garbage collection for turbo tasks backend in PR 97282, per-family compression that cut fresh cache size by over 20 percent in PR 97714, and the removal of a worker thread for Turbopack builds in…

Second theme: test infrastructure consolidation. Gnoff shipped a six-PR stack, numbers 98155 through 98161, migrating every deploy-mode skip exclusion, across App Router, Pages Router, caching, tooling, assets, and runtime suites, onto a single force-gate directive, then deleted the old skip-deployment API entirely.…

A smaller but related thread: eps1lon is cleaning up Node 24 compatibility ahead of a CI experiment in PR 98183. That surfaced deprecation-warning noise traced to node-fetch in the test harness, now replaced with global fetch in PR 98195, and a deprecated URL parser swapped out in PR 98194. Separately, refirst11's…

Worth flagging individually: PR 97407 bumps SWC to version 77 with breaking AST changes, block statement bodies and JSX text literals are now different types, so any code…

W…

Nearby episodes from Next Js Daily

  1. Cache Components Cleanup and Clearer Errors
  2. Error Responses Get Honest
  3. Rendering Edge Cases Come Home to Roost
  4. Routing Correctness and a Storage Engine Speedup
  5. Prerendering Precision and the Cost of Speculative Work
  6. The Parallel Routes Overhaul
  7. Turbopack's Deadlock and Portability Sprint
  8. Turbopack Goes Wasm-Ready