116 wires and counting

$ follow Node.js

Keep up with Node.js in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-08-31
stories 21

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Node.js quic drops dead fin flag, zlib 1.3.2.1-motley lands

By RepoJournal · Filed · About Node.js

Node.js core shipped a cleanup in quic that removes a dead end-of-stream flag, updated zlib, and fixed async callback scoping for node-api.

The quic blob reader no longer threads a `fin` flag from `Blob::Reader::NotifyPull` into the JS iterator [1]. The flag was dead weight, since the only consumer, `if (fin) continue;`, behaved exactly like falling through, and end-of-stream is always discovered via the subsequent pull returning EOS. This simplifies `NotifyPull`'s signature, the JS iterator, and the `EndReadable` call site. Separately, zlib updated to 1.3.2.1-motley-5eb4d7e [2], and a new patch [4] makes `ZipFile.close()` finish even when a ZIP iterator is paused, while still waiting for in-flight reads. For node-api, async callbacks from `uvimpl::Work::AfterThreadPoolWork()` and thread-safe functions now enter the environment context [3], matching `CallFinalizer()`; this matters when multiple Environments share an isolate. A missing `vector` include was also added [5]. The reliability repo added its daily report for 2026-08-31 [6].

Quick answers

What shipped in Node.js on August 31, 2026?
Node.js core shipped a cleanup in quic that removes a dead end-of-stream flag, updated zlib, and fixed async callback scoping for node-api. In total, 12 commits and 9 pull requests landed.
Who contributed to Node.js on August 31, 2026?
5 developers shipped this update, including trivenay, nodejs-github-bot, codebytere, Trivikram Kamat, and Filip Skokan.
What were the notable Node.js updates?
quic: remove unused fin flag from blob reader wakeup, deps: update zlib to 1.3.2.1-motley-5eb4d7e, and node-api: enter env context for async callbacks.