Experimental net/promises API added (
6d8baea)
Node now exposes node:net/promises and net.promises, bringing promise-based connect() and listen() helpers to the net module. This also adds async-iterator support on servers so incoming sockets can be consumed with for await...of, which simplifies one-shot connection workflows.
lchown now updates symlink metadata in VFS (
b2a024b)
The virtual filesystem’s lchownSync() path now routes through dedicated lchown handling instead of following the target like chownSync(). That fixes symlink ownership updates across the VFS implementation, including the memory provider and async handler.
URLPattern result properties now follow WebIDL order (
b4bbb12)
URLPatternResult and URLPatternComponentResult are now constructed in lexicographical member order, matching WebIDL requirements. This is a public-shape fix for result objects and the added test locks down the new property order.
Other misc changes
- SQLite updated to 3.53.4 (1 commit)
--disable-warningdocumentation marked stable- fs docs now link MDN for explicit resource management