Next.js: Hardening Partial Prerendering and the Build Pipeline
Today's activity centers on tightening the edges of Partial Prerendering's caching model and a series of infrastructure moves — a new Rust-backed build runner, test flakiness fixes, and CI trigger corrections — aimed at making builds and tests more trustworthy ahead of release.
Duration: PT2M51S
Episode overview
This episode is a short developer briefing from Next.js.
It explains recent repository work in plain language.
- Show: Next.js
- Published: 2026-09-08T13:12:34Z
- Audio duration: PT2M51S
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 8th, and today's Next.js activity has two clear centers of gravity: correctness in Partial Prerendering's caching, and cleanup across the build and test pipeline.
Start with caching. Three PRs from lubieowoce dig into edge cases in how cached data behaves under Partial Prerendering. PR 98339 fixes a subtle misclassification: caches with very short staleness windows were being treated as signals of runtime rendering, when they're actually just prefetch-only data. Getting this…
Second theme: build and test infrastructure is getting a hard look. Tim Neutkens' PR 98350 replaces the Taskr build tool entirely with a Rust runner backed by turbo-tasks — a foundational shift for how Next.js compiles itself. Alongside that, eps1lon shipped several fixes: PR 98330 stops test fixtures from silently…
A few notable one-offs: PR 98332 adds script hash support to Content Security Policy so cached pages can safely run inline scripts without a nonce. PR 98338 removes lingering blur placeholders on transparent images before hydration finishes. And three ESLint plugin fixes from thedhruvhegde tighten route detection…
What to remember: if you're working with Partial…
That's…
Nearby episodes from Next.js
- Build Hangs and Rendering Correctness Fixes
- Weekly Recap - Turbopack Performance and Caching Reliability
- Correctness Fixes Across Dev Tools and Turbopack
- Redirects, Accessibility, and Prerender Consistency Fixes
- Dev Server Stability and the Great Websocket Reconnect Fix
- Cleaning Up the Test Harness and Trimming Turbopack's Footprint
- Turbopack Memory Overhaul and the Great Test Gate Migration
- Hardening Cache, HMR, and Error Responses