The Wire · Showcase
NODE STREAM ABORT HANDLING FIXED, DOC-KIT TOOLCHAIN BUMPED ACROSS THE BOARD
By RepoJournal · Filed · About Node.js
Stream consumers now reject immediately when abort signals fire instead of hanging on pending reads, closing a critical gap in Node's async iterator cleanup.
The stream/iter module got two critical fixes overnight [1] [2]. First, `bytes()`, `text()`, `arrayBuffer()`, and `array()` now reject promptly when their abort signal fires while an async iterator read is pending - previously they'd hang if the source was stuck in a `next()` call. Second, `merge()` no longer hangs when abort fires during multi-source merge loops. Both changes reuse abort-aware iterator wrappers to ensure consistent signal handling across the API. On the tooling side, doc-kit pushed a sweep of dependency updates: shiki bumped to 4.3.0 [3], the compiling group (@swc/html-wasm and rolldown) refreshed [4], and six lint tools updated including ESLint to 10.6.0 [5]. ERR_REQUIRE_ASYNC_MODULE got improved diagnostics with non-enumerable requireStack properties [6], and workflows cleaned up by removing envinfo [7].
Action items
- → Review and merge stream abort fixes before next minor release nodejs/node [immediate]
- → Update doc-kit dependencies in your local builds - no breaking changes detected nodejs/doc-kit [plan]
- → Monitor ESLint 10.6.0 integration in CI pipelines for any lint rule regressions nodejs/doc-kit [monitor]
References
- [1] stream: reject iter consumers on abort ↗ nodejs/node
- [2] stream: fix merge abort for pending sources ↗ nodejs/node
- [3] meta: bump shiki from 4.1.0 to 4.3.0 in the remark group across 1 directory ↗ nodejs/doc-kit
- [4] meta: bump the compiling group across 1 directory with 2 updates ↗ nodejs/doc-kit
- [5] meta: bump the lint group across 1 directory with 6 updates ↗ nodejs/doc-kit
- [6] esm: improve ERR_REQUIRE_ASYNC_MODULE nodejs/node
- [7] tools: remove `envinfo` from our workflows nodejs/node
FAQ
- What changed in Node.js on July 5, 2026?
- Stream consumers now reject immediately when abort signals fire instead of hanging on pending reads, closing a critical gap in Node's async iterator cleanup.
- What should Node.js teams do about it?
- Review and merge stream abort fixes before next minor release • Update doc-kit dependencies in your local builds - no breaking changes detected • Monitor ESLint 10.6.0 integration in CI pipelines for any lint rule regressions
- Which Node.js repositories shipped on July 5, 2026?
- nodejs/node, nodejs/doc-kit