129 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-07-28
stories 18

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

NODE CORE TIGHTENS TEST COVERAGE AS UNDICI SHIPS H2 NAMESPACE UPGRADE

By RepoJournal · Filed · About Node.js · Composed from the cited sources · methodology

Node's core test suite is closing escape hatches that let assertions slip through linter rules, while Undici moves HTTP/2 options into a cleaner namespace.

The test harness tightening [1] addresses a real gap: tests were destructuring `assert` and `fixtures` to dodge linter enforcement added in recent commits, letting assertions run without proper validation. This is the kind of creeping technical debt that surfaces during large refactors, and catching it now prevents cascading issues down the line. On the type system front, Node is removing `isDataView` from the types binding [2], cleaning up API surface that was creating friction. Meanwhile, Undici shipped a significant H2 options namespace change [6], grouping HTTP/2 settings under a dedicated namespace for better API ergonomics and maintainability. The same team refreshed Undici's Web Platform Test expectations [5] to stay synchronized with upstream test changes, a necessary chore that keeps compatibility signals accurate. Smaller wins include VFS symlink handling fixes [3] that make `lchown()` operate on the link itself rather than following it, and codeowner assignment for URL pattern files [4] to clarify review responsibilities.

Quick answers

What shipped in Node.js on July 28, 2026?
Node's core test suite is closing escape hatches that let assertions slip through linter rules, while Undici moves HTTP/2 options into a cleaner namespace. In total, 11 commits and 7 pull requests landed.
Who contributed to Node.js on July 28, 2026?
7 developers shipped this update, including aduh95, Archkon, trivikr, Efe Karasakal, Node.js GitHub Bot, mcollina, and metcoder95.
What were the notable Node.js updates?
test: ensure assertions are reached on all tests, typings: remove isDataView from types binding, and vfs: make lchown update symlink metadata.