Next.js Daily: Defaults, Dependencies, and a Turbopack Fix
Today's activity centers on Next.js maturing experimental features into defaults and cleaning up dependency overhead, alongside a targeted Turbopack bug fix and a documentation clarification.
Duration: PT2M20S
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-07-06T06:04:09Z
- Audio duration: PT2M20S
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 July 6th, 2026, and this is Next.js Daily.
The clearest thread today is the framework simplifying itself, both in configuration and in dependencies.
Start with PR 95501 from unstubbable. Server Components HMR cancellation is now on by default. The experimental flag and its environment variable opt-in are gone, and related test shards were removed since the feature no longer needs special configuration to appear in build output. This is a sign of a feature…
Alongside that, PR 95507 from styfle bumps the Sharp image library to version 0.35.3. The headline here is dependency simplification: no more install script, and no more dynamic require workaround for tracing. That's a maintainability win for anyone touching the Image Optimizer, and it reduces a source of build…
Second theme: a correctness fix in Turbopack. PR 95500 from sammyZi addresses import dot meta dot glob silently failing on parent-directory traversal, patterns like going up one or two directories with a wildcard. Local patterns worked fine, but anything reaching above the calling file's directory returned no…
Smaller but useful: PR 95499 from ysr-hameed clarifies documentation around URL composition in…
Nearby episodes from Next.js Daily
- Cache Components Keep Maturing
- Bundle Size and Cache Correctness
- Router Fixes and Cache Correctness
- Weekly Recap - API Stabilization & Developer Experience
- App Shell Parameter Optimization
- Streaming Render Fixes and Dev Experience Polish
- Router Instrumentation and Performance Optimizations
- Cache Architecture Overhaul