Next Js Daily: Turbopack's Symlink Reckoning

A cluster of fixes converged on how Turbopack resolves file paths through symlinks and module probing, alongside a separate push to correct cache key and cache lifetime bugs in dynamic routing. Both threads trace back to regressions from recent architectural changes, underscoring how much release risk lives in path resolution and caching logic.

Duration: PT2M30S

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-24T22:00:04Z
  • Audio duration: PT2M30S

Transcript excerpt

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

Good evening. It's August 24th, and today's codebase activity centers on two things: file resolution correctness in Turbopack, and cache correctness in dynamic routing.

Start with resolution. PR 97717 from bgw fixed a regression where Turbopack's real-path logic was misclassifying a plain missing file as a dangling symlink target, just because some earlier path component happened to be a symlink. That caused legitimate module resolution to abort early. The fix makes not-found…

Second theme: caching correctness in dynamic routes. marcoshernanz's PR 97729, and its follow-up 97831, fixed a bug where concurrent metadata prefetches with different search params could stomp on each other's cache entries — one page's title leaking onto another's body. Separately, Andrew Clark's PR 97821 taught…

Elsewhere, worth noting: Luke Sandberg's PR 96874 fixed a production build hang caused by a trace writer stream that never properly closed. And unstubbable's trio of PRs — 97719, 97728, 97726, 97738 — are laying groundwork to consolidate redundant route table entries for dynamic pages, with test fixtures landing…

What to remember: if you're touching path resolution or prerender manifests, expect…

That's…

Nearby episodes from Next Js Daily

  1. Custom Page Extensions and a CI Cleanup Sweep
  2. Prefetching Precedence and Route Table Cleanup
  3. Turbopack Cleanup and Partial Prefetching Push
  4. Module Federation, Native Test Fixtures, and Prefetch Internals
  5. Cleaning Up Prefetching and Test Debt
  6. Development Caching Gets Untangled
  7. Turbopack's Garbage Collection Groundwork and Build Performance Push
  8. Router Rewrite and Strict Route Matching Take Shape