Next.js: Closing the Gaps Windows and Test Proxies Left Open

Today's activity centers on reliability fixes for platform edge cases — broken sockets under test proxy, mistyped symlinks on Windows, and a flaky OpenTelemetry test suite — alongside a Turbopack performance optimization for ESM imports.

Duration: PT2M26S

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-13T13:08:32Z
  • Audio duration: PT2M26S

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 September 13th, and tonight's developer briefing is about cleaning up edge cases that only show up under specific platforms or specific test conditions.

The clearest pattern tonight: three separate fixes for things that quietly broke in narrow but painful scenarios. First, ranger-ross shipped two related PRs, 98598 and 98607, fixing a regression where enabling experimental test proxy caused raw TCP connections — think Postgres clients — to hang indefinitely. The fix…

Second, Windows-specific bugs got real attention. PR 98606 from jat001 fixes standalone builds creating incorrectly typed symlinks in node modules — directory symlinks were coming out as file symlinks because Windows needs the type declared at creation, and trace order doesn't guarantee the target exists yet. And PR…

Third, sokra and Tobias Koppers landed a fix for the OpenTelemetry end-to-end test suite. The span collector was being closed and rebound between every test, creating a race window where exports failed with closed or reset socket errors. The fix keeps the collector alive for the full application lifetime and only…

Separately, Luke Sandberg's PR 98603 is worth flagging on performance:…

What…

Nearby episodes from Next.js

  1. Turbopack's Performance and Correctness Push
  2. Route Correctness and Cache Timing Fixes
  3. Turbopack Path Handling Gets a Real Fix
  4. Caching Correctness and Turbopack Hardening
  5. Hardening Partial Prerendering and the Build Pipeline
  6. Build Hangs and Rendering Correctness Fixes
  7. Weekly Recap - Turbopack Performance and Caching Reliability
  8. Correctness Fixes Across Dev Tools and Turbopack