Update Node.js to v18 #60

Closed
renovate-bot wants to merge 1 commits from renovate/node-18.x into master
Collaborator

This PR contains the following updates:

Package Type Update Change
node stage major 16.15.0-bullseye -> 18.0.0-bullseye

Release Notes

nodejs/node

v18.0.0

Compare Source

Node.js 18 is here! Highlights include the update of the V8 JavaScript engine to 10.1, global fetch enabled by default, and a core test runner module.

Initially, Node.js 18 will replace Node.js 17 as our ‘Current’ release line. As per the release schedule, Node.js 18 will be the ‘Current’ release for the next 6 months and then promoted to Long-term Support (LTS) in October 2022. Once promoted to long-term support the release will be designated the codename ‘Hydrogen’. Node.js 18 will be supported until April 2025.

Notable Changes
Deprecations and Removals
  • (SEMVER-MAJOR) fs: runtime deprecate string coercion in fs.write, fs.writeFileSync (Livia Medeiros) #​42607
  • (SEMVER-MAJOR) dns: remove dns.lookup and dnsPromises.lookup options type coercion (Antoine du Hamel) #​41431
  • (SEMVER-MAJOR) process: runtime deprecate multipleResolves (Benjamin Gruenbaum) #​41896
  • (SEMVER-MAJOR) stream: remove thenable support (Robert Nagy) #​40773
  • (SEMVER-MAJOR) tls: move tls.parseCertString to end-of-life (Tobias Nießen) #​41479
fetch (experimental)

An experimental fetch API is available on the global scope by default. The implementation is based upon undici, an HTTP/1.1 client written for Node.js by contributors to the project.

const res = await fetch('https://nodejs.org/api/documentation.json');
if (res.ok) {
  const data = await res.json();
  console.log(data);
}

Through this addition, the following globals are made available: fetch, FormData, Headers, Request, Response.

Disable this API with the --no-experimental-fetch command-line flag.

Contributed by Michaël Zasso in #​41811.

HTTP Timeouts

server.headersTimeout which limits the amount of time the parser will wait to receive the complete HTTP headers is now set to 60000 (60 seconds) by default.

server.requestTimeout which sets the timeout value in milliseconds for receiving the entire request from the client is now set to 300000 (5 minutes) by default.

If these timeouts expire, the server responds with status 408 without forwarding the request to the request listener and then closes the connection.

Both timeouts must be set to a non-zero value to protect against potential Denial-of-Service attacks in case the server is deployed without a reverse proxy in front.

Contributed by Paolo Insogna in #​41263.

Test Runner module (experimental)

The node:test module facilitates the creation of JavaScript tests that report results in TAP format. To access it:

import test from 'node:test';

This module is only available under the node: scheme.

The following is an example implementation of a parent test with two subtests:

test('top level test', async (t) => {
  await t.test('subtest 1', (t) => {
    assert.strictEqual(1, 1);
  });

  await t.test('subtest 2', (t) => {
    assert.strictEqual(2, 2);
  });
});

Read more in https://nodejs.org/dist/latest-v18.x/docs/api/test.html.

Contributed by Colin Ihrig in #​42325.

Toolchain and Compiler Upgrades
  • Prebuilt binaries for Linux are now built on Red Hat Enterprise Linux (RHEL) 8 and are compatible with Linux distributions based on glibc 2.28 or later, for example, Debian 10, RHEL 8, Ubuntu 20.04.
  • Prebuilt binaries for macOS now require macOS 10.15 or later.
  • For AIX the minimum supported architecture has been raised from Power 7 to Power 8.

Prebuilt binaries for 32-bit Windows will initially not be available due to issues building the V8 dependency in Node.js. We hope to restore 32-bit Windows binaries for Node.js 18 with a future V8 update.

Node.js does not support running on operating systems that are no longer supported by their vendor. For operating systems where their vendor has planned to end support earlier than April 2025, such as Windows 8.1 (January 2023) and Windows Server 2012 R2 (October 2023), support for Node.js 18 will end at the earlier date.

Full details about the supported toolchains and compilers are documented in the Node.js BUILDING.md file.

Contributed by Richard Lau in #​42292, #​42604 and #​42659,and Michaël Zasso in #​42105 and #​42666.

V8 10.1

The V8 engine is updated to version 10.1, which is part of Chromium 101. Compared to the version included in Node.js 17.9.0, the following new features are included:

The data format returned by the serialization API (v8.serialize(value)) has changed, and cannot be deserialized by earlier versions of Node.js. On the other hand, it is still possible to deserialize the previous format, as the API is backwards-compatible.

Contributed by Michaël Zasso in #​42657.

Web Streams API (experimental)

Node.js now exposes the experimental implementation of the Web Streams API on the global scope. This means the following APIs are now globally available:

  • ReadableStream, ReadableStreamDefaultReader, ReadableStreamBYOBReader, ReadableStreamBYOBRequest, ReadableByteStreamController, ReadableStreamDefaultController, TransformStream, TransformStreamDefaultController, WritableStream, WritableStreamDefaultWriter, WritableStreamDefaultController, ByteLengthQueuingStrategy, CountQueuingStrategy, TextEncoderStream, TextDecoderStream, CompressionStream, DecompressionStream.

Contributed James Snell in #​39062, and Antoine du Hamel in #​42225.

Other Notable Changes
  • (SEMVER-MAJOR) buffer: expose Blob as a global (James M Snell) #​41270
  • (SEMVER-MAJOR) child_process: improve argument validation (Rich Trott) #​41305
  • doc: add RafaelGSS to collaborators (RafaelGSS) #​42718
  • (SEMVER-MAJOR) http: make TCP noDelay enabled by default (Paolo Insogna) #​42163
  • (SEMVER-MAJOR) net: make server.address() return an integer for family (Antoine du Hamel) #​41431
  • (SEMVER-MAJOR) worker: expose BroadcastChannel as a global (James M Snell) #​41271
  • (SEMVER-MAJOR) worker: graduate BroadcastChannel to supported (James M Snell) #​41271
Semver-Major Commits
  • [`dab8ab2837`](https://github.com/nodejs/node/commit/dab8ab2837)] - **(SEMVER-MAJOR)** **assert,util**: compare RegExp.lastIndex while using deep equal checks (Ruben Bridgewater) [#​41020](https://github.com/nodejs/node/pull/41020)
    
  • [`cff14bcaef`](https://github.com/nodejs/node/commit/cff14bcaef)] - **(SEMVER-MAJOR)** **buffer**: refactor `byteLength` to remove outdated optimizations (Rongjian Zhang) [#​38545](https://github.com/nodejs/node/pull/38545)
    
  • [`cea76dbf33`](https://github.com/nodejs/node/commit/cea76dbf33)] - **(SEMVER-MAJOR)** **buffer**: expose Blob as a global (James M Snell) [#​41270](https://github.com/nodejs/node/pull/41270)
    
  • [`99c18f4786`](https://github.com/nodejs/node/commit/99c18f4786)] - **(SEMVER-MAJOR)** **buffer**: graduate Blob from experimental (James M Snell) [#​41270](https://github.com/nodejs/node/pull/41270)
    
  • [`35d72bf4ec`](https://github.com/nodejs/node/commit/35d72bf4ec)] - **(SEMVER-MAJOR)** **build**: make x86 Windows support temporarily experimental (Michaël Zasso) [#​42666](https://github.com/nodejs/node/pull/42666)
    
  • [`1134d8faf8`](https://github.com/nodejs/node/commit/1134d8faf8)] - **(SEMVER-MAJOR)** **build**: bump macOS deployment target to 10.15 (Richard Lau) [#​42292](https://github.com/nodejs/node/pull/42292)
    
  • [`27eb91d378`](https://github.com/nodejs/node/commit/27eb91d378)] - **(SEMVER-MAJOR)** **build**: downgrade Windows 8.1 and server 2012 R2 to experimental (Michaël Zasso) [#​42105](https://github.com/nodejs/node/pull/42105)
    
  • [`26c973d4b3`](https://github.com/nodejs/node/commit/26c973d4b3)] - **(SEMVER-MAJOR)** **child_process**: improve argument validation (Rich Trott) [#​41305](https://github.com/nodejs/node/pull/41305)
    
  • [`38007df999`](https://github.com/nodejs/node/commit/38007df999)] - **(SEMVER-MAJOR)** **cluster**: make `kill` to be just `process.kill` (Bar Admoni) [#​34312](https://github.com/nodejs/node/pull/34312)
    
  • [`aed18dfe59`](https://github.com/nodejs/node/commit/aed18dfe59)] - **(SEMVER-MAJOR)** **crypto**: cleanup validation (Mohammed Keyvanzadeh) [#​39841](https://github.com/nodejs/node/pull/39841)
    
  • [`e1fb6ae02f`](https://github.com/nodejs/node/commit/e1fb6ae02f)] - **(SEMVER-MAJOR)** **crypto**: prettify othername in PrintGeneralName (Tobias Nießen) [#​42123](https://github.com/nodejs/node/pull/42123)
    
  • [`36fb79030e`](https://github.com/nodejs/node/commit/36fb79030e)] - **(SEMVER-MAJOR)** **crypto**: fix X509Certificate toLegacyObject (Tobias Nießen) [#​42124](https://github.com/nodejs/node/pull/42124)
    
  • [`563b2ed000`](https://github.com/nodejs/node/commit/563b2ed000)] - **(SEMVER-MAJOR)** **crypto**: use RFC2253 format in PrintGeneralName (Tobias Nießen) [#​42002](https://github.com/nodejs/node/pull/42002)
    
  • [`18365d8ee6`](https://github.com/nodejs/node/commit/18365d8ee6)] - **(SEMVER-MAJOR)** **crypto**: change default check(Host|Email) behavior (Tobias Nießen) [#​41600](https://github.com/nodejs/node/pull/41600)
    
  • [`58f3fdcccd`](https://github.com/nodejs/node/commit/58f3fdcccd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick semver-major commits from 10.2 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`fd4f80ce54`](https://github.com/nodejs/node/commit/fd4f80ce54)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.1.124.6 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`974ab4060f`](https://github.com/nodejs/node/commit/974ab4060f)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.8.177.9 (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`270253c4e2`](https://github.com/nodejs/node/commit/270253c4e2)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.7.106.18 (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`08773e3c04`](https://github.com/nodejs/node/commit/08773e3c04)] - **(SEMVER-MAJOR)** **dns**: remove `dns.lookup` and `dnsPromises.lookup` options type coercion (Antoine du Hamel) [#​41431](https://github.com/nodejs/node/pull/41431)
    
  • [`3671cc0432`](https://github.com/nodejs/node/commit/3671cc0432)] - **(SEMVER-MAJOR)** **doc**: update minimum glibc requirements for Linux (Richard Lau) [#​42659](https://github.com/nodejs/node/pull/42659)
    
  • [`646e057680`](https://github.com/nodejs/node/commit/646e057680)] - **(SEMVER-MAJOR)** **doc**: update AIX minimum supported arch (Richard Lau) [#​42604](https://github.com/nodejs/node/pull/42604)
    
  • [`0bac5478eb`](https://github.com/nodejs/node/commit/0bac5478eb)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#​42607](https://github.com/nodejs/node/pull/42607)
    
  • [`3caa2c1a00`](https://github.com/nodejs/node/commit/3caa2c1a00)] - **(SEMVER-MAJOR)** **http**: refactor headersTimeout and requestTimeout logic (Paolo Insogna) [#​41263](https://github.com/nodejs/node/pull/41263)
    
  • [`eacd45656a`](https://github.com/nodejs/node/commit/eacd45656a)] - **(SEMVER-MAJOR)** **http**: make TCP noDelay enabled by default (Paolo Insogna) [#​42163](https://github.com/nodejs/node/pull/42163)
    
  • [`4944ad0b9e`](https://github.com/nodejs/node/commit/4944ad0b9e)] - **(SEMVER-MAJOR)** **lib**: enable fetch by default (Michaël Zasso) [#​41811](https://github.com/nodejs/node/pull/41811)
    
  • [`8c4b8b201a`](https://github.com/nodejs/node/commit/8c4b8b201a)] - **(SEMVER-MAJOR)** **lib**: replace validator and error (Mohammed Keyvanzadeh) [#​41678](https://github.com/nodejs/node/pull/41678)
    
  • [`3c4ee5267a`](https://github.com/nodejs/node/commit/3c4ee5267a)] - **(SEMVER-MAJOR)** **module,repl**: support 'node:'-only core modules (Colin Ihrig) [#​42325](https://github.com/nodejs/node/pull/42325)
    
  • [`3a26db9697`](https://github.com/nodejs/node/commit/3a26db9697)] - **(SEMVER-MAJOR)** **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#​41431](https://github.com/nodejs/node/pull/41431)
    
  • [`e6a7300a10`](https://github.com/nodejs/node/commit/e6a7300a10)] - **(SEMVER-MAJOR)** **process**: disallow some uses of Object.defineProperty() on process.env (Himself65) [#​28006](https://github.com/nodejs/node/pull/28006)
    
  • [`60b8e79599`](https://github.com/nodejs/node/commit/60b8e79599)] - **(SEMVER-MAJOR)** **process**: runtime deprecate multipleResolves (Benjamin Gruenbaum) [#​41896](https://github.com/nodejs/node/pull/41896)
    
  • [`d36b60e69a`](https://github.com/nodejs/node/commit/d36b60e69a)] - **(SEMVER-MAJOR)** **readline**: fix question still called after closed (Xuguang Mei) [#​42464](https://github.com/nodejs/node/pull/42464)
    
  • [`58e645de63`](https://github.com/nodejs/node/commit/58e645de63)] - **(SEMVER-MAJOR)** **stream**: remove thenable support (Robert Nagy) [#​40773](https://github.com/nodejs/node/pull/40773)
    
  • [`560cbc5849`](https://github.com/nodejs/node/commit/560cbc5849)] - **(SEMVER-MAJOR)** **stream**: expose web streams globals, remove runtime experimental warning (Antoine du Hamel) [#​42225](https://github.com/nodejs/node/pull/42225)
    
  • [`9fb7ac3bbd`](https://github.com/nodejs/node/commit/9fb7ac3bbd)] - **(SEMVER-MAJOR)** **stream**: need to cleanup event listeners if last stream is readable (Xuguang Mei) [#​41954](https://github.com/nodejs/node/pull/41954)
    
  • [`ceaa299958`](https://github.com/nodejs/node/commit/ceaa299958)] - **(SEMVER-MAJOR)** **stream**: revert revert `map` spec compliance (Benjamin Gruenbaum) [#​41933](https://github.com/nodejs/node/pull/41933)
    
  • [`fe7ca085a7`](https://github.com/nodejs/node/commit/fe7ca085a7)] - **(SEMVER-MAJOR)** **stream**: throw invalid arg type from End Of Stream (Jithil P Ponnan) [#​41766](https://github.com/nodejs/node/pull/41766)
    
  • [`48e784043d`](https://github.com/nodejs/node/commit/48e784043d)] - **(SEMVER-MAJOR)** **stream**: don't emit finish after destroy (Robert Nagy) [#​40852](https://github.com/nodejs/node/pull/40852)
    
  • [`f2170253b6`](https://github.com/nodejs/node/commit/f2170253b6)] - **(SEMVER-MAJOR)** **stream**: add errored and closed props (Robert Nagy) [#​40696](https://github.com/nodejs/node/pull/40696)
    
  • [`432d1b50e0`](https://github.com/nodejs/node/commit/432d1b50e0)] - **(SEMVER-MAJOR)** **test**: add initial test module (Colin Ihrig) [#​42325](https://github.com/nodejs/node/pull/42325)
    
  • [`92567283f4`](https://github.com/nodejs/node/commit/92567283f4)] - **(SEMVER-MAJOR)** **timers**: refactor internal classes to ES2015 syntax (Rabbit) [#​37408](https://github.com/nodejs/node/pull/37408)
    
  • [`65910c0d6c`](https://github.com/nodejs/node/commit/65910c0d6c)] - **(SEMVER-MAJOR)** **tls**: represent registeredID numerically always (Tobias Nießen) [#​41561](https://github.com/nodejs/node/pull/41561)
    
  • [`807c7e14f4`](https://github.com/nodejs/node/commit/807c7e14f4)] - **(SEMVER-MAJOR)** **tls**: move tls.parseCertString to end-of-life (Tobias Nießen) [#​41479](https://github.com/nodejs/node/pull/41479)
    
  • [`f524306077`](https://github.com/nodejs/node/commit/f524306077)] - **(SEMVER-MAJOR)** **url**: throw on NULL in IPv6 hostname (Rich Trott) [#​42313](https://github.com/nodejs/node/pull/42313)
    
  • [`0187bc5cdc`](https://github.com/nodejs/node/commit/0187bc5cdc)] - **(SEMVER-MAJOR)** **v8**: make v8.writeHeapSnapshot() error codes consistent (Darshan Sen) [#​42577](https://github.com/nodejs/node/pull/42577)
    
  • [`74b9baa426`](https://github.com/nodejs/node/commit/74b9baa426)] - **(SEMVER-MAJOR)** **v8**: make writeHeapSnapshot throw if fopen fails (Antonio Román) [#​41373](https://github.com/nodejs/node/pull/41373)
    
  • [`ce4d3adf50`](https://github.com/nodejs/node/commit/ce4d3adf50)] - **(SEMVER-MAJOR)** **worker**: expose BroadcastChannel as a global (James M Snell) [#​41271](https://github.com/nodejs/node/pull/41271)
    
  • [`6486a304d3`](https://github.com/nodejs/node/commit/6486a304d3)] - **(SEMVER-MAJOR)** **worker**: graduate BroadcastChannel to supported (James M Snell) [#​41271](https://github.com/nodejs/node/pull/41271)
    
    
Semver-Minor Commits
  • [`415726b8c4`](https://github.com/nodejs/node/commit/415726b8c4)] - **(SEMVER-MINOR)** **stream**: add writableAborted (Robert Nagy) [#​40802](https://github.com/nodejs/node/pull/40802)
    
  • [`54819f08e0`](https://github.com/nodejs/node/commit/54819f08e0)] - **(SEMVER-MINOR)** **test_runner**: support 'only' tests (Colin Ihrig) [#​42514](https://github.com/nodejs/node/pull/42514)
    
    
Semver-Patch Commits
  • [`7533d08b94`](https://github.com/nodejs/node/commit/7533d08b94)] - **buffer**: fix `atob` input validation (Austin Kelleher) [#​42662](https://github.com/nodejs/node/pull/42662)
    
  • [`96673bcb96`](https://github.com/nodejs/node/commit/96673bcb96)] - **build**: run clang-format on CI (Darshan Sen) [#​42681](https://github.com/nodejs/node/pull/42681)
    
  • [`d5462e4558`](https://github.com/nodejs/node/commit/d5462e4558)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`aa52873887`](https://github.com/nodejs/node/commit/aa52873887)] - **build**: add configure option --v8-enable-short-builtin-calls (daomingq) [#​42109](https://github.com/nodejs/node/pull/42109)
    
  • [`7ee8a7a463`](https://github.com/nodejs/node/commit/7ee8a7a463)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`a189dee52a`](https://github.com/nodejs/node/commit/a189dee52a)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`e8697cfe38`](https://github.com/nodejs/node/commit/e8697cfe38)] - **crypto**: improve prime size argument validation (Tobias Nießen) [#​42234](https://github.com/nodejs/node/pull/42234)
    
  • [`a9c0689786`](https://github.com/nodejs/node/commit/a9c0689786)] - **crypto**: fix return type prob reported by coverity (Michael Dawson) [#​42135](https://github.com/nodejs/node/pull/42135)
    
  • [`e938515b41`](https://github.com/nodejs/node/commit/e938515b41)] - **deps**: patch V8 to 10.1.124.8 (Michaël Zasso) [#​42730](https://github.com/nodejs/node/pull/42730)
    
  • [`eba7d2db7f`](https://github.com/nodejs/node/commit/eba7d2db7f)] - **deps**: V8: cherry-pick [`ad21d21`](https://github.com/nodejs/node/commit/ad21d212fc14) (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`004137e269`](https://github.com/nodejs/node/commit/004137e269)] - **deps**: V8: cherry-pick [`4c29cf1`](https://github.com/nodejs/node/commit/4c29cf1b7885) (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`a052c03033`](https://github.com/nodejs/node/commit/a052c03033)] - **deps**: V8: cherry-pick [`ca2a787`](https://github.com/nodejs/node/commit/ca2a787a0b49) (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`01cea9a8d8`](https://github.com/nodejs/node/commit/01cea9a8d8)] - **deps**: V8: cherry-pick [`a2cae21`](https://github.com/nodejs/node/commit/a2cae2180a7a) (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`d9d26b08ef`](https://github.com/nodejs/node/commit/d9d26b08ef)] - **deps**: V8: cherry-pick [`87ce4f5`](https://github.com/nodejs/node/commit/87ce4f5d98a5) (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`64a6328505`](https://github.com/nodejs/node/commit/64a6328505)] - **deps**: make V8 compilable with older glibc (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`fde59217b9`](https://github.com/nodejs/node/commit/fde59217b9)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`cdcc82cced`](https://github.com/nodejs/node/commit/cdcc82cced)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`2f51e121da`](https://github.com/nodejs/node/commit/2f51e121da)] - **deps**: update Acorn to v8.7.0 (Michaël Zasso) [#​42667](https://github.com/nodejs/node/pull/42667)
    
  • [`6d4b01774b`](https://github.com/nodejs/node/commit/6d4b01774b)] - **deps**: update ICU to 71.1 (Michaël Zasso) [#​42655](https://github.com/nodejs/node/pull/42655)
    
  • [`2d84620f86`](https://github.com/nodejs/node/commit/2d84620f86)] - **deps**: upgrade npm to 8.6.0 (npm team) [#​42550](https://github.com/nodejs/node/pull/42550)
    
  • [`c7ac11fa25`](https://github.com/nodejs/node/commit/c7ac11fa25)] - **deps**: update undici to 5.0.0 (Node.js GitHub Bot) [#​42583](https://github.com/nodejs/node/pull/42583)
    
  • [`468fffdf66`](https://github.com/nodejs/node/commit/468fffdf66)] - **deps**: V8: cherry-pick [`50d5fb7`](https://github.com/nodejs/node/commit/50d5fb7a457c) (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`48708be57b`](https://github.com/nodejs/node/commit/48708be57b)] - **deps**: V8: cherry-pick [`79a9d2e`](https://github.com/nodejs/node/commit/79a9d2eb3477) (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`3c8782f70e`](https://github.com/nodejs/node/commit/3c8782f70e)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`9318408c49`](https://github.com/nodejs/node/commit/9318408c49)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`e23e345b6c`](https://github.com/nodejs/node/commit/e23e345b6c)] - **deps**: V8: cherry-pick [`80bbbb1`](https://github.com/nodejs/node/commit/80bbbb143c24) (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`696ce7df26`](https://github.com/nodejs/node/commit/696ce7df26)] - **deps**: V8: cherry-pick [`1cc12b2`](https://github.com/nodejs/node/commit/1cc12b278e22) (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`aa88e5e4b9`](https://github.com/nodejs/node/commit/aa88e5e4b9)] - **doc**: revise data imports and node: imports sections (Rich Trott) [#​42734](https://github.com/nodejs/node/pull/42734)
    
  • [`a058cefe29`](https://github.com/nodejs/node/commit/a058cefe29)] - **doc**: fix ESM JSON/data URL import example (Rich Trott) [#​42728](https://github.com/nodejs/node/pull/42728)
    
  • [`e61b62b9d4`](https://github.com/nodejs/node/commit/e61b62b9d4)] - **doc**: improve doc for http.ServerResponse inheritance (Luigi Pinca) [#​42693](https://github.com/nodejs/node/pull/42693)
    
  • [`6669b3857f`](https://github.com/nodejs/node/commit/6669b3857f)] - **doc**: add RafaelGSS to collaborators (RafaelGSS) [#​42718](https://github.com/nodejs/node/pull/42718)
    
  • [`f825341bab`](https://github.com/nodejs/node/commit/f825341bab)] - **doc**: add NodeEdKeyGenParams to CryptoKey.algorithm (Tobias Nießen) [#​42629](https://github.com/nodejs/node/pull/42629)
    
  • [`d4d78361f2`](https://github.com/nodejs/node/commit/d4d78361f2)] - **doc**: fix the example for embedders (Momtchil Momtchev) [#​42671](https://github.com/nodejs/node/pull/42671)
    
  • [`6706be1cdb`](https://github.com/nodejs/node/commit/6706be1cdb)] - **doc**: change AES-GCM IV recommendation in WebCrypto (Tobias Nießen) [#​42611](https://github.com/nodejs/node/pull/42611)
    
  • [`4508c8caa4`](https://github.com/nodejs/node/commit/4508c8caa4)] - **doc**: fix `added:` info for some methods (Luigi Pinca) [#​42661](https://github.com/nodejs/node/pull/42661)
    
  • [`951dbc045a`](https://github.com/nodejs/node/commit/951dbc045a)] - **doc**: remove unneeded new in Buffer example (Niklas Mischkulnig) [#​42682](https://github.com/nodejs/node/pull/42682)
    
  • [`65e838071b`](https://github.com/nodejs/node/commit/65e838071b)] - **doc**: mark worker.id as integer in cluster docs (Tobias Nießen) [#​42684](https://github.com/nodejs/node/pull/42684)
    
  • [`a82713cbb6`](https://github.com/nodejs/node/commit/a82713cbb6)] - **doc**: recommend `fh.createWriteStream` for fsPromises methods (Antoine du Hamel) [#​42653](https://github.com/nodejs/node/pull/42653)
    
  • [`13ad8d4e09`](https://github.com/nodejs/node/commit/13ad8d4e09)] - **doc**: fix outgoingMessage.removeHeader() signature (Luigi Pinca) [#​42652](https://github.com/nodejs/node/pull/42652)
    
  • [`a0461255c0`](https://github.com/nodejs/node/commit/a0461255c0)] - **doc**: mark tlsSocket.authorized as boolean property (Tobias Nießen) [#​42647](https://github.com/nodejs/node/pull/42647)
    
  • [`3ac7f86c2b`](https://github.com/nodejs/node/commit/3ac7f86c2b)] - **doc**: add missing punctuation in Web Streams doc (Tobias Nießen) [#​42672](https://github.com/nodejs/node/pull/42672)
    
  • [`b98386c977`](https://github.com/nodejs/node/commit/b98386c977)] - **doc**: add missing article in session ticket section (Tobias Nießen) [#​42632](https://github.com/nodejs/node/pull/42632)
    
  • [`a113468383`](https://github.com/nodejs/node/commit/a113468383)] - **doc**: link to dynamic import function (Tobias Nießen) [#​42634](https://github.com/nodejs/node/pull/42634)
    
  • [`dfc2dc8b65`](https://github.com/nodejs/node/commit/dfc2dc8b65)] - **doc**: add note about header values encoding (Shogun) [#​42624](https://github.com/nodejs/node/pull/42624)
    
  • [`ec5a359ffd`](https://github.com/nodejs/node/commit/ec5a359ffd)] - **doc**: add missing word in rootCertificates section (Tobias Nießen) [#​42633](https://github.com/nodejs/node/pull/42633)
    
  • [`c08a361f70`](https://github.com/nodejs/node/commit/c08a361f70)] - **doc**: add history entries for DEP0162 on `fs.md` (Antoine du Hamel) [#​42608](https://github.com/nodejs/node/pull/42608)
    
  • [`4fade6acb4`](https://github.com/nodejs/node/commit/4fade6acb4)] - **doc**: fix brackets position (Livia Medeiros) [#​42649](https://github.com/nodejs/node/pull/42649)
    
  • [`8055c7ba5d`](https://github.com/nodejs/node/commit/8055c7ba5d)] - **doc**: copyedit corepack.md (Rich Trott) [#​42620](https://github.com/nodejs/node/pull/42620)
    
  • [`85a65c3260`](https://github.com/nodejs/node/commit/85a65c3260)] - **doc**: delete chakra tt from diagnostic tooling support tiers (Tony Gorez) [#​42627](https://github.com/nodejs/node/pull/42627)
    
  • [`63bb6dcf0f`](https://github.com/nodejs/node/commit/63bb6dcf0f)] - **doc**: align links in table to top (nikoladev) [#​41396](https://github.com/nodejs/node/pull/41396)
    
  • [`28d8614add`](https://github.com/nodejs/node/commit/28d8614add)] - **http**: document that ClientRequest inherits from OutgoingMessage (K.C.Ashish Kumar) [#​42642](https://github.com/nodejs/node/pull/42642)
    
  • [`c37fdacb34`](https://github.com/nodejs/node/commit/c37fdacb34)] - **lib**: use class fields in observe.js (Joyee Cheung) [#​42361](https://github.com/nodejs/node/pull/42361)
    
  • [`ea0668a27e`](https://github.com/nodejs/node/commit/ea0668a27e)] - **lib**: use class fields in Event and EventTarget (Joyee Cheung) [#​42361](https://github.com/nodejs/node/pull/42361)
    
  • [`eb7b89c829`](https://github.com/nodejs/node/commit/eb7b89c829)] - **lib**: update class fields TODO in abort_controller.js (Joyee Cheung) [#​42361](https://github.com/nodejs/node/pull/42361)
    
  • [`d835b1f1c1`](https://github.com/nodejs/node/commit/d835b1f1c1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42677](https://github.com/nodejs/node/pull/42677)
    
  • [`29492496e8`](https://github.com/nodejs/node/commit/29492496e8)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​42599](https://github.com/nodejs/node/pull/42599)
    
  • [`93c4dc5e5a`](https://github.com/nodejs/node/commit/93c4dc5e5a)] - **module**: ensure 'node:'-only modules can access node_modules (Colin Ihrig) [#​42430](https://github.com/nodejs/node/pull/42430)
    
  • [`3a26db9697`](https://github.com/nodejs/node/commit/3a26db9697)] - **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#​41431](https://github.com/nodejs/node/pull/41431)
    
  • [`44fdf953ba`](https://github.com/nodejs/node/commit/44fdf953ba)] - **node-api,src**: fix module registration in MSVC C++ (Vladimir Morozov) [#​42459](https://github.com/nodejs/node/pull/42459)
    
  • [`3026ca0bf2`](https://github.com/nodejs/node/commit/3026ca0bf2)] - **src**: fix coverity report (Michael Dawson) [#​42663](https://github.com/nodejs/node/pull/42663)
    
  • [`01fd048c6e`](https://github.com/nodejs/node/commit/01fd048c6e)] - **src**: update NODE_MODULE_VERSION to 108 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`75a71dc7ae`](https://github.com/nodejs/node/commit/75a71dc7ae)] - **src**: fix alphabetically sorted binding list (Tobias Nießen) [#​42687](https://github.com/nodejs/node/pull/42687)
    
  • [`457567f72c`](https://github.com/nodejs/node/commit/457567f72c)] - **src**: include crypto in the bootstrap snapshot (Joyee Cheung) [#​42203](https://github.com/nodejs/node/pull/42203)
    
  • [`aa7dc808f5`](https://github.com/nodejs/node/commit/aa7dc808f5)] - **src**: update ImportModuleDynamically (Camillo Bruni) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`fa0439e66c`](https://github.com/nodejs/node/commit/fa0439e66c)] - **src**: update NODE_MODULE_VERSION to 105 (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`6ec1664dc8`](https://github.com/nodejs/node/commit/6ec1664dc8)] - **src**: update NODE_MODULE_VERSION to 104 (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`a706342368`](https://github.com/nodejs/node/commit/a706342368)] - **src**: add kNoBrowserGlobals flag for Environment (Cheng Zhao) [#​40532](https://github.com/nodejs/node/pull/40532)
    
  • [`0c57a37dd0`](https://github.com/nodejs/node/commit/0c57a37dd0)] - **src,crypto**: remove uses of AllocatedBuffer from crypto_tls.cc (Darshan Sen) [#​42589](https://github.com/nodejs/node/pull/42589)
    
  • [`be01185844`](https://github.com/nodejs/node/commit/be01185844)] - **src,inspector**: fix empty MaybeLocal crash (Darshan Sen) [#​42409](https://github.com/nodejs/node/pull/42409)
    
  • [`340b770d3f`](https://github.com/nodejs/node/commit/340b770d3f)] - **stream**: unify writableErrored and readableErrored (Robert Nagy) [#​40799](https://github.com/nodejs/node/pull/40799)
    
  • [`19064bec34`](https://github.com/nodejs/node/commit/19064bec34)] - **test**: delete test/pummel/test-repl-empty-maybelocal-crash.js (Darshan Sen) [#​42720](https://github.com/nodejs/node/pull/42720)
    
  • [`9d6af7d1fe`](https://github.com/nodejs/node/commit/9d6af7d1fe)] - **test**: improve `internal/url.js` coverage (Yoshiki Kurihara) [#​42650](https://github.com/nodejs/node/pull/42650)
    
  • [`d49df5ca8d`](https://github.com/nodejs/node/commit/d49df5ca8d)] - **test**: adapt message tests for V8 10.2 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`c6b4e9604f`](https://github.com/nodejs/node/commit/c6b4e9604f)] - **test**: adapt test-worker-debug for V8 10.0 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`0854fce8bc`](https://github.com/nodejs/node/commit/0854fce8bc)] - **test**: adapt test-v8-serdes for V8 9.9 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`73d53fe9f5`](https://github.com/nodejs/node/commit/73d53fe9f5)] - **test**: only skip slow tests on Raspberry Pi devices (Richard Lau) [#​42645](https://github.com/nodejs/node/pull/42645)
    
  • [`db7fa9f4b7`](https://github.com/nodejs/node/commit/db7fa9f4b7)] - **test**: allow numeric string for lookupService test (Daeyeon Jeong) [#​42596](https://github.com/nodejs/node/pull/42596)
    
  • [`0525a147b2`](https://github.com/nodejs/node/commit/0525a147b2)] - **test**: remove an unnecessary `undefined` in wpt (Khaidi Chu) [#​41470](https://github.com/nodejs/node/pull/41470)
    
  • [`bb762c5bd0`](https://github.com/nodejs/node/commit/bb762c5bd0)] - **test**: simplify test-http-write-callbacks.js (Tobias Nießen) [#​42628](https://github.com/nodejs/node/pull/42628)
    
  • [`1600869eb7`](https://github.com/nodejs/node/commit/1600869eb7)] - **test**: fix comments in test files (Daeyeon Jeong) [#​42536](https://github.com/nodejs/node/pull/42536)
    
  • [`82181bb9b8`](https://github.com/nodejs/node/commit/82181bb9b8)] - **test**: fix failure in test/sequential/test-heapdump.js (Darshan Sen) [#​41772](https://github.com/nodejs/node/pull/41772)
    
  • [`ba5b5acaf1`](https://github.com/nodejs/node/commit/ba5b5acaf1)] - **test**: improve ` worker_threads  ` coverage (Erick Wendel) [#​41818](https://github.com/nodejs/node/pull/41818)
    
  • [`f076c36335`](https://github.com/nodejs/node/commit/f076c36335)] - **tools**: update clang-format 1.6.0 to 1.7.0 (Rich Trott) [#​42724](https://github.com/nodejs/node/pull/42724)
    
  • [`45162bf9e7`](https://github.com/nodejs/node/commit/45162bf9e7)] - **tools**: update clang-format from 1.2.3 to 1.6.0 (Rich Trott) [#​42685](https://github.com/nodejs/node/pull/42685)
    
  • [`40bc08089d`](https://github.com/nodejs/node/commit/40bc08089d)] - **tools**: update V8 gypfiles for 10.1 (Michaël Zasso) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`09513cd1a3`](https://github.com/nodejs/node/commit/09513cd1a3)] - **tools**: update eslint to 8.13.0 (Node.js GitHub Bot) [#​42678](https://github.com/nodejs/node/pull/42678)
    
  • [`b99bb57416`](https://github.com/nodejs/node/commit/b99bb57416)] - **tools**: update gyp-next to v0.12.1 (Michaël Zasso) [#​42625](https://github.com/nodejs/node/pull/42625)
    
  • [`2468db1f53`](https://github.com/nodejs/node/commit/2468db1f53)] - **tools**: update lint-md-dependencies to [@​rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@​21](https://github.com/21).0.3 (Node.js GitHub Bot) [#​42584](https://github.com/nodejs/node/pull/42584)
    
  • [`8a3f28a05c`](https://github.com/nodejs/node/commit/8a3f28a05c)] - **tools**: add v8-embedder-state-scope.h to distributed headers (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`30c4e1d952`](https://github.com/nodejs/node/commit/30c4e1d952)] - **tools**: update V8 gypfiles for 9.8 (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`1ad44094a2`](https://github.com/nodejs/node/commit/1ad44094a2)] - **tools**: update V8 gypfiles for 9.7 (Michaël Zasso) [#​40907](https://github.com/nodejs/node/pull/40907)
    
  • [`86b77f7d0f`](https://github.com/nodejs/node/commit/86b77f7d0f)] - **tools,doc**: use V8::DisposePlatform (Michaël Zasso) [#​41610](https://github.com/nodejs/node/pull/41610)
    
  • [`62e62757b3`](https://github.com/nodejs/node/commit/62e62757b3)] - **tools,test**: fix V8 initialization order (Camillo Bruni) [#​42657](https://github.com/nodejs/node/pull/42657)
    
  • [`0187bc5cdc`](https://github.com/nodejs/node/commit/0187bc5cdc)] - **v8**: make v8.writeHeapSnapshot() error codes consistent (Darshan Sen) [#​42577](https://github.com/nodejs/node/pull/42577)
    
  • [`74b9baa426`](https://github.com/nodejs/node/commit/74b9baa426)] - **v8**: make writeHeapSnapshot throw if fopen fails (Antonio Román) [#​41373](https://github.com/nodejs/node/pull/41373)
    
    

v17.9.0

Compare Source

Notable Changes
  • [`7124f91cbf`](https://github.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#​42427](https://github.com/nodejs/node/pull/42427)
    
  • [`30dc6dd3fb`](https://github.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#​42414](https://github.com/nodejs/node/pull/42414)
    
  • [`f0fc2744a5`](https://github.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add [@​meixg](https://github.com/meixg) to collaborators (Xuguang Mei) [#​42576](https://github.com/nodejs/node/pull/42576)
    
    
Commits
  • [`bb71433334`](https://github.com/nodejs/node/commit/bb71433334)] - **async_hooks**: remove destroyed symbol on Promises (Gerhard Stöbich) [#​42402](https://github.com/nodejs/node/pull/42402)
    
  • [`b48a6cb3f9`](https://github.com/nodejs/node/commit/b48a6cb3f9)] - **bootstrap**: reset process.\_exit and process.exitCode in pre-execution (Joyee Cheung) [#​42466](https://github.com/nodejs/node/pull/42466)
    
  • [`b89f038537`](https://github.com/nodejs/node/commit/b89f038537)] - **bootstrap**: run inspector and event loop in snapshot builder (Joyee Cheung) [#​42466](https://github.com/nodejs/node/pull/42466)
    
  • [`177558600e`](https://github.com/nodejs/node/commit/177558600e)] - **bootstrap**: make I/O streams work with user-land snapshot (Joyee Cheung) [#​42466](https://github.com/nodejs/node/pull/42466)
    
  • [`e3683cb34d`](https://github.com/nodejs/node/commit/e3683cb34d)] - **bootstrap**: refresh options in pre-execution (Joyee Cheung) [#​42466](https://github.com/nodejs/node/pull/42466)
    
  • [`d302d2f0d2`](https://github.com/nodejs/node/commit/d302d2f0d2)] - **bootstrap**: use SnapshotData to pass snapshot data around (Joyee Cheung) [#​42360](https://github.com/nodejs/node/pull/42360)
    
  • [`eb3dfc00f0`](https://github.com/nodejs/node/commit/eb3dfc00f0)] - **buffer**: improve Blob constructor error message when passing a string (Xuguang Mei) [#​42338](https://github.com/nodejs/node/pull/42338)
    
  • [`f45d5537c1`](https://github.com/nodejs/node/commit/f45d5537c1)] - **buffer**: fix `atob` input validation (Antoine du Hamel) [#​42539](https://github.com/nodejs/node/pull/42539)
    
  • [`fb6a5ba8d7`](https://github.com/nodejs/node/commit/fb6a5ba8d7)] - **build**: remove precompiled header and debug information for host builds (Niyas Sait) [#​42538](https://github.com/nodejs/node/pull/42538)
    
  • [`1f7d2e800c`](https://github.com/nodejs/node/commit/1f7d2e800c)] - **build**: windows/arm64 native compilation support (Niyas Sait) [#​42408](https://github.com/nodejs/node/pull/42408)
    
  • [`d9a1d7866c`](https://github.com/nodejs/node/commit/d9a1d7866c)] - **build**: consolidate JS and md linting GitHub Actions (Rich Trott) [#​42572](https://github.com/nodejs/node/pull/42572)
    
  • [`ecb5be845d`](https://github.com/nodejs/node/commit/ecb5be845d)] - **build**: set stale action back to running nightly (Michael Dawson) [#​42549](https://github.com/nodejs/node/pull/42549)
    
  • [`f9fb7f6d96`](https://github.com/nodejs/node/commit/f9fb7f6d96)] - **build**: add --node-snapshot-main configure option (Joyee Cheung) [#​42466](https://github.com/nodejs/node/pull/42466)
    
  • [`c6808f088b`](https://github.com/nodejs/node/commit/c6808f088b)] - **build**: bump actions/checkout (Eliaz Bobadilla) [#​42460](https://github.com/nodejs/node/pull/42460)
    
  • [`9a54acb7c6`](https://github.com/nodejs/node/commit/9a54acb7c6)] - **child_process**: add env contents types in JSDoc (Rich Trott) [#​42494](https://github.com/nodejs/node/pull/42494)
    
  • [`a2f07380ea`](https://github.com/nodejs/node/commit/a2f07380ea)] - **crypto**: do not add undefined hash in webcrypto normalizeAlgorithm (Filip Skokan) [#​42559](https://github.com/nodejs/node/pull/42559)
    
  • [`9b4bd7d031`](https://github.com/nodejs/node/commit/9b4bd7d031)] - **crypto**: cleanup webcrypto jwk code (Filip Skokan) [#​42562](https://github.com/nodejs/node/pull/42562)
    
  • [`541a1328b0`](https://github.com/nodejs/node/commit/541a1328b0)] - **crypto**: fix webcrypto derive key lengths (Filip Skokan) [#​42542](https://github.com/nodejs/node/pull/42542)
    
  • [`7124f91cbf`](https://github.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#​42427](https://github.com/nodejs/node/pull/42427)
    
  • [`30dc6dd3fb`](https://github.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#​42414](https://github.com/nodejs/node/pull/42414)
    
  • [`6e56924274`](https://github.com/nodejs/node/commit/6e56924274)] - **doc**: simplify Http2Stream encoding text (Rich Trott) [#​42597](https://github.com/nodejs/node/pull/42597)
    
  • [`261672b1da`](https://github.com/nodejs/node/commit/261672b1da)] - **doc**: remove obsolete stream API selection text (Rich Trott) [#​42586](https://github.com/nodejs/node/pull/42586)
    
  • [`beffed1880`](https://github.com/nodejs/node/commit/beffed1880)] - **doc**: remove faulty justification for 128-bit AES (Tobias Nießen) [#​42578](https://github.com/nodejs/node/pull/42578)
    
  • [`71f4a39086`](https://github.com/nodejs/node/commit/71f4a39086)] - **doc**: fix documentation of `FileHandle.prototype.appendFile` (Antoine du Hamel) [#​42588](https://github.com/nodejs/node/pull/42588)
    
  • [`c83ea22f7c`](https://github.com/nodejs/node/commit/c83ea22f7c)] - **doc**: change "OCSP Request" to "OCSP request" (Tobias Nießen) [#​42582](https://github.com/nodejs/node/pull/42582)
    
  • [`71ab0dea35`](https://github.com/nodejs/node/commit/71ab0dea35)] - **doc**: aes webcrypto unwrap is not a node-specific extensions (Filip Skokan) [#​42561](https://github.com/nodejs/node/pull/42561)
    
  • [`1c614184da`](https://github.com/nodejs/node/commit/1c614184da)] - **doc**: simplify recommendations in process.md (Rich Trott) [#​42556](https://github.com/nodejs/node/pull/42556)
    
  • [`c036800ddc`](https://github.com/nodejs/node/commit/c036800ddc)] - **doc**: clarify recommendations in stream.md (Rich Trott) [#​42555](https://github.com/nodejs/node/pull/42555)
    
  • [`dcf0abf8c7`](https://github.com/nodejs/node/commit/dcf0abf8c7)] - **doc**: simplify recommendation in webcrypto.md (Rich Trott) [#​42554](https://github.com/nodejs/node/pull/42554)
    
  • [`8333fa063b`](https://github.com/nodejs/node/commit/8333fa063b)] - **doc**: update DEP0102 text (Rich Trott) [#​42553](https://github.com/nodejs/node/pull/42553)
    
  • [`8b08bff682`](https://github.com/nodejs/node/commit/8b08bff682)] - **doc**: remove util.promisify() content in readline.md (Rich Trott) [#​42552](https://github.com/nodejs/node/pull/42552)
    
  • [`94492424ba`](https://github.com/nodejs/node/commit/94492424ba)] - **doc**: add introduction sentence for CJS (Antoine du Hamel) [#​42491](https://github.com/nodejs/node/pull/42491)
    
  • [`f0fc2744a5`](https://github.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add [@​meixg](https://github.com/meixg) to collaborators (Xuguang Mei) [#​42576](https://github.com/nodejs/node/pull/42576)
    
  • [`d935fef594`](https://github.com/nodejs/node/commit/d935fef594)] - **doc**: consolidate CI sections (Rich Trott) [#​42534](https://github.com/nodejs/node/pull/42534)
    
  • [`fd45df314b`](https://github.com/nodejs/node/commit/fd45df314b)] - **doc**: document breaking change in `http.IncomingMessage` `'close'` event (Paolo Insogna) [#​42521](https://github.com/nodejs/node/pull/42521)
    
  • [`53584fa750`](https://github.com/nodejs/node/commit/53584fa750)] - **doc**: remove extraneous comma (Rich Trott) [#​42548](https://github.com/nodejs/node/pull/42548)
    
  • [`b819af6509`](https://github.com/nodejs/node/commit/b819af6509)] - **doc**: guide towards x509.fingerprint256 (Tobias Nießen) [#​42516](https://github.com/nodejs/node/pull/42516)
    
  • [`f2355e41ed`](https://github.com/nodejs/node/commit/f2355e41ed)] - **doc**: fix internal link in collaborator-guide.md (Daeyeon Jeong) [#​42551](https://github.com/nodejs/node/pull/42551)
    
  • [`ffc6776996`](https://github.com/nodejs/node/commit/ffc6776996)] - **doc**: add suggestion for OpenSSL only sec releases (Michael Dawson) [#​42456](https://github.com/nodejs/node/pull/42456)
    
  • [`1454c0297d`](https://github.com/nodejs/node/commit/1454c0297d)] - **doc**: fix comment text in async_hooks example (Rich Trott) [#​42499](https://github.com/nodejs/node/pull/42499)
    
  • [`b9ab9867f4`](https://github.com/nodejs/node/commit/b9ab9867f4)] - **doc**: add `stability` class to legacy status description (Daniel Roe) [#​42525](https://github.com/nodejs/node/pull/42525)
    
  • [`6c13988d53`](https://github.com/nodejs/node/commit/6c13988d53)] - **doc**: suggest checkHost in checkServerIdentity docs (Tobias Nießen) [#​42495](https://github.com/nodejs/node/pull/42495)
    
  • [`28665a9dd6`](https://github.com/nodejs/node/commit/28665a9dd6)] - **doc**: update security release onboarding (Joe Sepi) [#​42333](https://github.com/nodejs/node/pull/42333)
    
  • [`d335addf0c`](https://github.com/nodejs/node/commit/d335addf0c)] - **doc**: fix question promise API example (Xuguang Mei) [#​42465](https://github.com/nodejs/node/pull/42465)
    
  • [`7cf9febcb4`](https://github.com/nodejs/node/commit/7cf9febcb4)] - **doc**: remove comma splice in events.md (Rich Trott) [#​42484](https://github.com/nodejs/node/pull/42484)
    
  • [`3c3684d9f1`](https://github.com/nodejs/node/commit/3c3684d9f1)] - **doc**: clarify napi_finalize behavior (Alba Mendez) [#​42461](https://github.com/nodejs/node/pull/42461)
    
  • [`334cc1936b`](https://github.com/nodejs/node/commit/334cc1936b)] - **doc**: expand history for conditional exports changes in v12 (Greg Poole) [#​42339](https://github.com/nodejs/node/pull/42339)
    
  • [`fb146f9eaf`](https://github.com/nodejs/node/commit/fb146f9eaf)] - **doc**: change comma-splice to two sentences (Rich Trott) [#​42455](https://github.com/nodejs/node/pull/42455)
    
  • [`ce4b823946`](https://github.com/nodejs/node/commit/ce4b823946)] - **doc**: add link to section (Rich Trott) [#​42428](https://github.com/nodejs/node/pull/42428)
    
  • [`5869275479`](https://github.com/nodejs/node/commit/5869275479)] - **doc**: fix typo in async_context.md (Anupama Codippily) [#​42444](https://github.com/nodejs/node/pull/42444)
    
  • [`48bd9fa2c7`](https://github.com/nodejs/node/commit/48bd9fa2c7)] - **doc**: add `trace_gc` to diagnostic tooling support document (Tony Gorez) [#​42346](https://github.com/nodejs/node/pull/42346)
    
  • [`00f693b6b1`](https://github.com/nodejs/node/commit/00f693b6b1)] - **doc**: make header smaller and dropdown click-driven when JS is on (Paolo Insogna) [#​42165](https://github.com/nodejs/node/pull/42165)
    
  • [`abbb23620a`](https://github.com/nodejs/node/commit/abbb23620a)] - **doc**: standardize typography for \_semantic versioning\_ (Rich Trott) [#​42401](https://github.com/nodejs/node/pull/42401)
    
  • [`e763e575c6`](https://github.com/nodejs/node/commit/e763e575c6)] - **doc**: unify import order in CCM example (Tobias Nießen) [#​42394](https://github.com/nodejs/node/pull/42394)
    
  • [`10d638a735`](https://github.com/nodejs/node/commit/10d638a735)] - **doc**: update property name (Rich Trott) [#​42398](https://github.com/nodejs/node/pull/42398)
    
  • [`5589a448b7`](https://github.com/nodejs/node/commit/5589a448b7)] - **doc,test**: clarify ChaCha20-Poly1305 usage (Tobias Nießen) [#​42323](https://github.com/nodejs/node/pull/42323)
    
  • [`902776e674`](https://github.com/nodejs/node/commit/902776e674)] - **esm**: emit experimental warnings in common place (Jacob Smith) [#​42314](https://github.com/nodejs/node/pull/42314)
    
  • [`8009cb0a78`](https://github.com/nodejs/node/commit/8009cb0a78)] - **fs**: fix write methods param validation and docs (Livia Medeiros) [#​42631](https://github.com/nodejs/node/pull/42631)
    
  • [`a9dc3a92d9`](https://github.com/nodejs/node/commit/a9dc3a92d9)] - **lib**: prepare files for no-var lint rule (Rich Trott) [#​42573](https://github.com/nodejs/node/pull/42573)
    
  • [`3306fee824`](https://github.com/nodejs/node/commit/3306fee824)] - **lib**: source maps filter null prefix (Fabian Cook) [#​42522](https://github.com/nodejs/node/pull/42522)
    
  • [`3bac969655`](https://github.com/nodejs/node/commit/3bac969655)] - **lib**: improve the coverage of the validator (mawaregetsuka) [#​42443](https://github.com/nodejs/node/pull/42443)
    
  • [`b74de21cc3`](https://github.com/nodejs/node/commit/b74de21cc3)] - **lib**: update JSDoc for linting (Rich Trott) [#​42489](https://github.com/nodejs/node/pull/42489)
    
  • [`7766bf954f`](https://github.com/nodejs/node/commit/7766bf954f)] - **meta**: update .mailmap and AUTHORS (Rich Trott) [#​42602](https://github.com/nodejs/node/pull/42602)
    
  • [`93ffc5535a`](https://github.com/nodejs/node/commit/93ffc5535a)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​42500](https://github.com/nodejs/node/pull/42500)
    
  • [`256509056d`](https://github.com/nodejs/node/commit/256509056d)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42585](https://github.com/nodejs/node/pull/42585)
    
  • [`41c2a32390`](https://github.com/nodejs/node/commit/41c2a32390)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42488](https://github.com/nodejs/node/pull/42488)
    
  • [`b71a8107c0`](https://github.com/nodejs/node/commit/b71a8107c0)] - **net,dns**: trace tcp connection and dns by perf_hooks (theanarkh) [#​42390](https://github.com/nodejs/node/pull/42390)
    
  • [`f9f3b6e45d`](https://github.com/nodejs/node/commit/f9f3b6e45d)] - **node-api**: format Node-API related code (Vladimir Morozov) [#​42396](https://github.com/nodejs/node/pull/42396)
    
  • [`0bd9d9e24f`](https://github.com/nodejs/node/commit/0bd9d9e24f)] - **os**: avoid unnecessary usage of var (Mohammed Keyvanzadeh) [#​42563](https://github.com/nodejs/node/pull/42563)
    
  • [`e798e26dfd`](https://github.com/nodejs/node/commit/e798e26dfd)] - **src**: add proper mutexes for accessing FIPS state (Anna Henningsen) [#​42278](https://github.com/nodejs/node/pull/42278)
    
  • [`a1fe0d2222`](https://github.com/nodejs/node/commit/a1fe0d2222)] - **src**: fix typo in InspectorIoDelegate constructor (Kohei Ueno) [#​42520](https://github.com/nodejs/node/pull/42520)
    
  • [`0c54f3637b`](https://github.com/nodejs/node/commit/0c54f3637b)] - **src**: remove unnecessary static qualifier in crypto_dh.cc (Darshan Sen) [#​42492](https://github.com/nodejs/node/pull/42492)
    
  • [`2e6a66d7d7`](https://github.com/nodejs/node/commit/2e6a66d7d7)] - **src**: address 3 useless call coverity warnings (Michael Dawson) [#​42426](https://github.com/nodejs/node/pull/42426)
    
  • [`ce9d840079`](https://github.com/nodejs/node/commit/ce9d840079)] - **src**: properly report exceptions from AddressToJS() (Darshan Sen) [#​42054](https://github.com/nodejs/node/pull/42054)
    
  • [`c6a558c61b`](https://github.com/nodejs/node/commit/c6a558c61b)] - **src**: suppress false coverity warning (Michael Dawson) [#​42284](https://github.com/nodejs/node/pull/42284)
    
  • [`878148c266`](https://github.com/nodejs/node/commit/878148c266)] - **src**: refactor IsSupportedAuthenticatedMode (Tobias Nießen) [#​42368](https://github.com/nodejs/node/pull/42368)
    
  • [`970483ffd3`](https://github.com/nodejs/node/commit/970483ffd3)] - **src,crypto**: handle empty maybe correctly in crypto_dh.cc (Darshan Sen) [#​42492](https://github.com/nodejs/node/pull/42492)
    
  • [`a348f8ac1a`](https://github.com/nodejs/node/commit/a348f8ac1a)] - **src,crypto**: remove uses of AllocatedBuffer from crypto_dh.cc (Darshan Sen) [#​42492](https://github.com/nodejs/node/pull/42492)
    
  • [`fb25ba435c`](https://github.com/nodejs/node/commit/fb25ba435c)] - **test**: improve lib/internal/readline/promises.js coverage (MURAKAMI Masahiko) [#​42420](https://github.com/nodejs/node/pull/42420)
    
  • [`4cbb1ea910`](https://github.com/nodejs/node/commit/4cbb1ea910)] - **test**: remove hack for `atob` and `btoa` WPT tests (Antoine du Hamel) [#​42540](https://github.com/nodejs/node/pull/42540)
    
  • [`f41a4780d5`](https://github.com/nodejs/node/commit/f41a4780d5)] - **test**: pass data into napi_create_external (Joyee Cheung) [#​42532](https://github.com/nodejs/node/pull/42532)
    
  • [`90554572b5`](https://github.com/nodejs/node/commit/90554572b5)] - **test**: improve `FileHandle.prototype.write` coverage (Antoine du Hamel) [#​42541](https://github.com/nodejs/node/pull/42541)
    
  • [`797994e4c0`](https://github.com/nodejs/node/commit/797994e4c0)] - **test**: add test for exception handlings in debugger (Kohei Ueno) [#​42327](https://github.com/nodejs/node/pull/42327)
    
  • [`8c9b5e9a36`](https://github.com/nodejs/node/commit/8c9b5e9a36)] - **test**: fix typo in common/wpt.js (Ikko Ashimine) [#​42567](https://github.com/nodejs/node/pull/42567)
    
  • [`2f682091cd`](https://github.com/nodejs/node/commit/2f682091cd)] - **test**: fix typos in test/parallel (Daeyeon Jeong) [#​42502](https://github.com/nodejs/node/pull/42502)
    
  • [`52d1c8d6d9`](https://github.com/nodejs/node/commit/52d1c8d6d9)] - **test**: add trace-gc flag test (Tony Gorez) [#​42471](https://github.com/nodejs/node/pull/42471)
    
  • [`19c933c79a`](https://github.com/nodejs/node/commit/19c933c79a)] - **test,fs**: add fs.rm() tests for .git directories (Darshan Sen) [#​42410](https://github.com/nodejs/node/pull/42410)
    
  • [`d64c4fb94d`](https://github.com/nodejs/node/commit/d64c4fb94d)] - **tools**: enable no-var ESLint rule for lib (Rich Trott) [#​42573](https://github.com/nodejs/node/pull/42573)
    
  • [`a9f2636d12`](https://github.com/nodejs/node/commit/a9f2636d12)] - **tools**: fixed bug causing JSON format to be broken (mawaregetsuka) [#​41565](https://github.com/nodejs/node/pull/41565)
    
  • [`bff9cae16a`](https://github.com/nodejs/node/commit/bff9cae16a)] - **tools**: update GHA actions version (Antoine du Hamel) [#​42498](https://github.com/nodejs/node/pull/42498)
    
  • [`c6bfb225cd`](https://github.com/nodejs/node/commit/c6bfb225cd)] - **tools**: update eslint to 8.12.0 (Node.js GitHub Bot) [#​42489](https://github.com/nodejs/node/pull/42489)
    
  • [`464e57ffc7`](https://github.com/nodejs/node/commit/464e57ffc7)] - **tools**: update lint-md-dependencies to vfile-reporter@7.0.4 (Node.js GitHub Bot) [#​42487](https://github.com/nodejs/node/pull/42487)
    
  • [`13dd8e73df`](https://github.com/nodejs/node/commit/13dd8e73df)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#​42416](https://github.com/nodejs/node/pull/42416)
    
  • [`3a1b0e5b87`](https://github.com/nodejs/node/commit/3a1b0e5b87)] - **tools**: bump cpplint to 1.6.0 (Rich Trott) [#​42416](https://github.com/nodejs/node/pull/42416)
    
  • [`9344a06d9c`](https://github.com/nodejs/node/commit/9344a06d9c)] - **tools**: fix skip PR if CI is still running (Xuguang Mei) [#​42377](https://github.com/nodejs/node/pull/42377)
    
    

v17.8.0

Compare Source

Notable Changes
  • [`3bd0078457`](https://github.com/nodejs/node/commit/3bd0078457)] - **doc**: add [@​ShogunPanda](https://github.com/ShogunPanda) to collaborators (Shogun) [#​42362](https://github.com/nodejs/node/pull/42362)
    
  • [`23354673be`](https://github.com/nodejs/node/commit/23354673be)] - **doc**: deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#​42149](https://github.com/nodejs/node/pull/42149)
    
  • [`da42ffb85e`](https://github.com/nodejs/node/commit/da42ffb85e)] - **(SEMVER-MINOR)** **http**: trace http client by perf_hooks (theanarkh) [#​42345](https://github.com/nodejs/node/pull/42345)
    
  • [`84fd6e54b0`](https://github.com/nodejs/node/commit/84fd6e54b0)] - **deps**: upgrade npm to 8.5.5 (npm team) [#​42382](https://github.com/nodejs/node/pull/42382)
    
  • [`b60262ee9f`](https://github.com/nodejs/node/commit/b60262ee9f)] - **deps**: update undici to 4.15.1 (Michaël Zasso) [#​42246](https://github.com/nodejs/node/pull/42246)
    
    
Commits
  • [`1796f035c7`](https://github.com/nodejs/node/commit/1796f035c7)] - **build**: rename tools workflow and add undici to it (Michaël Zasso) [#​42246](https://github.com/nodejs/node/pull/42246)
    
  • [`f27bcec2ea`](https://github.com/nodejs/node/commit/f27bcec2ea)] - **build**: use ccache in make-v8.sh on ppc64le and s390x (Richard Lau) [#​42204](https://github.com/nodejs/node/pull/42204)
    
  • [`f48c3baf5a`](https://github.com/nodejs/node/commit/f48c3baf5a)] - **crypto**: fix auth tag length error when mode != GCM (Tobias Nießen) [#​42383](https://github.com/nodejs/node/pull/42383)
    
  • [`1d0468f749`](https://github.com/nodejs/node/commit/1d0468f749)] - **crypto**: fix fingerprint string size calculation (Tobias Nießen) [#​42175](https://github.com/nodejs/node/pull/42175)
    
  • [`a4632a3dc2`](https://github.com/nodejs/node/commit/a4632a3dc2)] - **crypto**: add CHECKs to remaining BIO_s_mem allocs (Tobias Nießen) [#​42155](https://github.com/nodejs/node/pull/42155)
    
  • [`3b55946452`](https://github.com/nodejs/node/commit/3b55946452)] - **debugger**: correct typo in inspect_repl.js (Kohei Ueno) [#​42267](https://github.com/nodejs/node/pull/42267)
    
  • [`84fd6e54b0`](https://github.com/nodejs/node/commit/84fd6e54b0)] - **deps**: upgrade npm to 8.5.5 (npm team) [#​42382](https://github.com/nodejs/node/pull/42382)
    
  • [`f2178fcc1a`](https://github.com/nodejs/node/commit/f2178fcc1a)] - **deps**: cares: cherry-pick [`b5a3d96`](https://github.com/nodejs/node/commit/b5a3d96) (bradh352) [#​42216](https://github.com/nodejs/node/pull/42216)
    
  • [`063ff08cb1`](https://github.com/nodejs/node/commit/063ff08cb1)] - **deps**: V8: cherry-pick [`c6f6626`](https://github.com/nodejs/node/commit/c6f6626deb14) (Lu Yahan) [#​42240](https://github.com/nodejs/node/pull/42240)
    
  • [`b60262ee9f`](https://github.com/nodejs/node/commit/b60262ee9f)] - **deps**: update undici to 4.15.1 (Michaël Zasso) [#​42246](https://github.com/nodejs/node/pull/42246)
    
  • [`70c0758308`](https://github.com/nodejs/node/commit/70c0758308)] - **deps**: upgrade npm to 8.5.3 (npm team) [#​42205](https://github.com/nodejs/node/pull/42205)
    
  • [`fd51e78963`](https://github.com/nodejs/node/commit/fd51e78963)] - **doc**: fix version history for `net.Socket` and `net.Server` (Antoine du Hamel) [#​42268](https://github.com/nodejs/node/pull/42268)
    
  • [`db83c4d6dc`](https://github.com/nodejs/node/commit/db83c4d6dc)] - **doc**: improve README.md usability (Rich Trott) [#​42378](https://github.com/nodejs/node/pull/42378)
    
  • [`88d3401329`](https://github.com/nodejs/node/commit/88d3401329)] - **doc**: add that chacha20-poly1305 is IETF version (Tobias Nießen) [#​42370](https://github.com/nodejs/node/pull/42370)
    
  • [`04a7c0061b`](https://github.com/nodejs/node/commit/04a7c0061b)] - **doc**: update instructions for openssl updates (Michael Dawson) [#​42353](https://github.com/nodejs/node/pull/42353)
    
  • [`78b858dd4b`](https://github.com/nodejs/node/commit/78b858dd4b)] - **doc**: document goal to have examples (Michael Dawson) [#​42274](https://github.com/nodejs/node/pull/42274)
    
  • [`a5e42f0113`](https://github.com/nodejs/node/commit/a5e42f0113)] - **doc**: fix Embedder's Guide link to V8 official docs (Aroyan) [#​42373](https://github.com/nodejs/node/pull/42373)
    
  • [`6c265e7243`](https://github.com/nodejs/node/commit/6c265e7243)] - **doc**: remove unneeded lint disable comment (Rich Trott) [#​42374](https://github.com/nodejs/node/pull/42374)
    
  • [`46d3d23e64`](https://github.com/nodejs/node/commit/46d3d23e64)] - **doc**: revise async_hooks docs (Rich Trott) [#​42337](https://github.com/nodejs/node/pull/42337)
    
  • [`3bd0078457`](https://github.com/nodejs/node/commit/3bd0078457)] - **doc**: add [@​ShogunPanda](https://github.com/ShogunPanda) to collaborators (Shogun) [#​42362](https://github.com/nodejs/node/pull/42362)
    
  • [`e7e8eb9f03`](https://github.com/nodejs/node/commit/e7e8eb9f03)] - **doc**: update base branch name for `nodejs/nodejs.org` (Danielle Adams) [#​42355](https://github.com/nodejs/node/pull/42355)
    
  • [`fd7e4ab654`](https://github.com/nodejs/node/commit/fd7e4ab654)] - **doc**: fix async iterable pipeline signal examples (Randall Leeds) [#​42258](https://github.com/nodejs/node/pull/42258)
    
  • [`96dc591b55`](https://github.com/nodejs/node/commit/96dc591b55)] - **doc**: clarify path search in `child_process.spawn` (Damjan Cvetko) [#​41418](https://github.com/nodejs/node/pull/41418)
    
  • [`72dd50016a`](https://github.com/nodejs/node/commit/72dd50016a)] - **doc**: clarify the meaning of legacy status (Darshan Sen) [#​42269](https://github.com/nodejs/node/pull/42269)
    
  • [`8b99099063`](https://github.com/nodejs/node/commit/8b99099063)] - **doc**: improve pipe description (Mikael Finstad) [#​42295](https://github.com/nodejs/node/pull/42295)
    
  • [`701dc14fdf`](https://github.com/nodejs/node/commit/701dc14fdf)] - **doc**: remove outdated timeout.unref content (Xuguang Mei) [#​42241](https://github.com/nodejs/node/pull/42241)
    
  • [`23354673be`](https://github.com/nodejs/node/commit/23354673be)] - **doc**: deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#​42149](https://github.com/nodejs/node/pull/42149)
    
  • [`f3c6c00963`](https://github.com/nodejs/node/commit/f3c6c00963)] - **doc**: remove refs to old OpenSSL list-\* commands (Tobias Nießen) [#​42235](https://github.com/nodejs/node/pull/42235)
    
  • [`19851f8d2d`](https://github.com/nodejs/node/commit/19851f8d2d)] - **doc**: readline `'line'` event emits final line (Matt Probert) [#​42214](https://github.com/nodejs/node/pull/42214)
    
  • [`e55283b978`](https://github.com/nodejs/node/commit/e55283b978)] - **esm**: make extension-less errors in type:module actionable (Bradley Farias) [#​42301](https://github.com/nodejs/node/pull/42301)
    
  • [`e17db8f0fa`](https://github.com/nodejs/node/commit/e17db8f0fa)] - **esm**: improve typings and code coverage (Bradley Farias) [#​42305](https://github.com/nodejs/node/pull/42305)
    
  • [`4829a1047f`](https://github.com/nodejs/node/commit/4829a1047f)] - **esm**: add runtime warning for specifier resolution flag (Geoffrey Booth) [#​42252](https://github.com/nodejs/node/pull/42252)
    
  • [`da42ffb85e`](https://github.com/nodejs/node/commit/da42ffb85e)] - **(SEMVER-MINOR)** **http**: trace http client by perf_hooks (theanarkh) [#​42345](https://github.com/nodejs/node/pull/42345)
    
  • [`88dee3c6b5`](https://github.com/nodejs/node/commit/88dee3c6b5)] - **http2**: fix potential integer overflow (Michael Dawson) [#​42248](https://github.com/nodejs/node/pull/42248)
    
  • [`1fe0b69c31`](https://github.com/nodejs/node/commit/1fe0b69c31)] - **lib**: refactor to use primordials in `lib/assert.js` (Akhil Marsonya) [#​41702](https://github.com/nodejs/node/pull/41702)
    
  • [`69a3792540`](https://github.com/nodejs/node/commit/69a3792540)] - **lib**: fix AsyncResource.bind not using 'this' from the caller by default (Roch Devost) [#​42177](https://github.com/nodejs/node/pull/42177)
    
  • [`1c87ce6a32`](https://github.com/nodejs/node/commit/1c87ce6a32)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42404](https://github.com/nodejs/node/pull/42404)
    
  • [`e7b8d83acd`](https://github.com/nodejs/node/commit/e7b8d83acd)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​42317](https://github.com/nodejs/node/pull/42317)
    
  • [`7fc4b9f08d`](https://github.com/nodejs/node/commit/7fc4b9f08d)] - **meta**: add dependencies label to label-pr-config (Mestery) [#​42129](https://github.com/nodejs/node/pull/42129)
    
  • [`e96042442b`](https://github.com/nodejs/node/commit/e96042442b)] - **src**: convert hex2bin() into a regular function (Darshan Sen) [#​42321](https://github.com/nodejs/node/pull/42321)
    
  • [`21198c1407`](https://github.com/nodejs/node/commit/21198c1407)] - **src**: fix coverity warnings in node_file.cc (Michael Dawson) [#​42272](https://github.com/nodejs/node/pull/42272)
    
  • [`846b074075`](https://github.com/nodejs/node/commit/846b074075)] - **src**: check EC_POINT_get_affine_coordinates result (Tobias Nießen) [#​42304](https://github.com/nodejs/node/pull/42304)
    
  • [`8b84e68cbd`](https://github.com/nodejs/node/commit/8b84e68cbd)] - **src**: simplify bound check in ParseArrayIndex (Tobias Nießen) [#​42306](https://github.com/nodejs/node/pull/42306)
    
  • [`9500e5862e`](https://github.com/nodejs/node/commit/9500e5862e)] - **src**: avoid returning invalid value from hex2bin (Tobias Nießen) [#​42307](https://github.com/nodejs/node/pull/42307)
    
  • [`08e2d8ab86`](https://github.com/nodejs/node/commit/08e2d8ab86)] - **src**: check return value of HMAC_Final (Tobias Nießen) [#​42303](https://github.com/nodejs/node/pull/42303)
    
  • [`9fc4b9b04e`](https://github.com/nodejs/node/commit/9fc4b9b04e)] - **src**: include internal/options in the snapshot (Joyee Cheung) [#​42203](https://github.com/nodejs/node/pull/42203)
    
  • [`e43aa30982`](https://github.com/nodejs/node/commit/e43aa30982)] - **src**: remove redundant buffer size check (Tobias Nießen) [#​42257](https://github.com/nodejs/node/pull/42257)
    
  • [`d06e92dba0`](https://github.com/nodejs/node/commit/d06e92dba0)] - **src**: perform minor cleanups on zlib code (Anna Henningsen) [#​42247](https://github.com/nodejs/node/pull/42247)
    
  • [`9af908305d`](https://github.com/nodejs/node/commit/9af908305d)] - **src**: use `emplace_back` instead of `push_back` (Yash Ladha) [#​42159](https://github.com/nodejs/node/pull/42159)
    
  • [`62d9a7f5db`](https://github.com/nodejs/node/commit/62d9a7f5db)] - **src**: fix unchecked return warning from coverity (Michael Dawson) [#​42176](https://github.com/nodejs/node/pull/42176)
    
  • [`58763d7f9d`](https://github.com/nodejs/node/commit/58763d7f9d)] - **src,crypto**: avoid tristate Maybe\<bool> in ExportJWKEcKey() (Darshan Sen) [#&#8203;42223](https://github.com/nodejs/node/pull/42223)
    
  • [`5367002bc8`](https://github.com/nodejs/node/commit/5367002bc8)] - **stream**: do cleanup when iterator is destroyed (Khoo Hao Yit) [#&#8203;42320](https://github.com/nodejs/node/pull/42320)
    
  • [`3492a0eb1e`](https://github.com/nodejs/node/commit/3492a0eb1e)] - **string_decoder**: fix crash when calling \__proto\_\_.write() (Darshan Sen) [#&#8203;42062](https://github.com/nodejs/node/pull/42062)
    
  • [`d9a5c2b284`](https://github.com/nodejs/node/commit/d9a5c2b284)] - **test**: give slow tests more time on Rasberry PIs (Michael Dawson) [#&#8203;42380](https://github.com/nodejs/node/pull/42380)
    
  • [`b82bac09ff`](https://github.com/nodejs/node/commit/b82bac09ff)] - **test**: improve https_renew_cert.sh script (Tobias Nießen) [#&#8203;42343](https://github.com/nodejs/node/pull/42343)
    
  • [`dfdce7c182`](https://github.com/nodejs/node/commit/dfdce7c182)] - **test**: improve \_http_incoming.js coverage (Yoshiki Kurihara) [#&#8203;42211](https://github.com/nodejs/node/pull/42211)
    
  • [`4941791f29`](https://github.com/nodejs/node/commit/4941791f29)] - **test**: improve \_http_outgoing coverage (Yoshiki Kurihara) [#&#8203;42213](https://github.com/nodejs/node/pull/42213)
    
  • [`94e5eaa7e9`](https://github.com/nodejs/node/commit/94e5eaa7e9)] - **test**: add test case for reverted 17.7 regression (Rich Trott) [#&#8203;42283](https://github.com/nodejs/node/pull/42283)
    
  • [`a4aa9eb97f`](https://github.com/nodejs/node/commit/a4aa9eb97f)] - **test**: use global webcrypto for WPT tests (Antoine du Hamel) [#&#8203;42236](https://github.com/nodejs/node/pull/42236)
    
  • [`26d4a2d489`](https://github.com/nodejs/node/commit/26d4a2d489)] - **test,crypto**: add and update empty passphrase regression tests (Darshan Sen) [#&#8203;42319](https://github.com/nodejs/node/pull/42319)
    
  • [`4fd2aff42e`](https://github.com/nodejs/node/commit/4fd2aff42e)] - **tools**: make update-undici script executable (Michaël Zasso) [#&#8203;42406](https://github.com/nodejs/node/pull/42406)
    
  • [`38e7681ac7`](https://github.com/nodejs/node/commit/38e7681ac7)] - **tools**: update lint-md-dependencies to rollup@2.70.1 (Node.js GitHub Bot) [#&#8203;42403](https://github.com/nodejs/node/pull/42403)
    
  • [`b7a4b4b1fd`](https://github.com/nodejs/node/commit/b7a4b4b1fd)] - **tools**: update doc to highlight.js@11.5.0 unified@10.1.2 (Node.js GitHub Bot) [#&#8203;42315](https://github.com/nodejs/node/pull/42315)
    
  • [`30ea1889d5`](https://github.com/nodejs/node/commit/30ea1889d5)] - **tools**: update lint-md-dependencies to rollup@2.70.0 unified@10.1.2 (Node.js GitHub Bot) [#&#8203;42316](https://github.com/nodejs/node/pull/42316)
    
  • [`eb0e1a1147`](https://github.com/nodejs/node/commit/eb0e1a1147)] - **tools**: update eslint to 8.11.0 (Node.js GitHub Bot) [#&#8203;42318](https://github.com/nodejs/node/pull/42318)
    
  • [`e95426fd3a`](https://github.com/nodejs/node/commit/e95426fd3a)] - **tools**: fix web streams API links (Brian White) [#&#8203;42153](https://github.com/nodejs/node/pull/42153)
    
  • [`fe01940f35`](https://github.com/nodejs/node/commit/fe01940f35)] - **url**: preserve null char in WHATWG URL errors (Rich Trott) [#&#8203;42263](https://github.com/nodejs/node/pull/42263)
    
  • [`b89f4d5c17`](https://github.com/nodejs/node/commit/b89f4d5c17)] - **url**: trim leading and trailing C0 control chars (Rich Trott) [#&#8203;42196](https://github.com/nodejs/node/pull/42196)
    
  • [`229fb40edc`](https://github.com/nodejs/node/commit/229fb40edc)] - **worker**: do not send message if port is closing (Rich Trott) [#&#8203;42357](https://github.com/nodejs/node/pull/42357)
    
    

v17.7.2

Compare Source

This is a security release.

Notable Changes

Update to OpenSSL 3.0.2, which addresses the following vulnerability:

Commits
  • [`55e293e05f`](https://github.com/nodejs/node/commit/55e293e05f)] - **deps**: update archs files for quictls/openssl-3.0.2+quic (Hassaan Pasha) [#&#8203;42356](https://github.com/nodejs/node/pull/42356)
    
  • [`b8d090603d`](https://github.com/nodejs/node/commit/b8d090603d)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.2+quic (Hassaan Pasha) [#&#8203;42356](https://github.com/nodejs/node/pull/42356)
    
  • [`c8b6d92af0`](https://github.com/nodejs/node/commit/c8b6d92af0)] - **test**: fix tests affected by OpenSSL update (Michael Dawson) [#&#8203;42356](https://github.com/nodejs/node/pull/42356)
    
  • [`457e31ea09`](https://github.com/nodejs/node/commit/457e31ea09)] - **test**: renew certificates for specific test (Luigi Pinca) [#&#8203;42342](https://github.com/nodejs/node/pull/42342)
    
    

v17.7.1

Compare Source

Notable Changes
Fixed regression in url.resolve()

This release fixes an issue introduced in Node.js v17.7.0 with some URLs
that contain @. This issue affected yarn 1. This version reverts the
change that introduced the regression.

Commits
  • [`96a9e00fb3`](https://github.com/nodejs/node/commit/96a9e00fb3)] - **url**: revert fix url.parse() for `@hostname` (Antoine du Hamel) [#&#8203;42280](https://github.com/nodejs/node/pull/42280)
    
    

v17.6.0

Compare Source

Notable Changes
  • [`6b88595142`](https://github.com/nodejs/node/commit/6b88595142)] - **doc**: deprecate notice for process methods (Yash Ladha) [#&#8203;41587](https://github.com/nodejs/node/pull/41587)
    
  • [`77462b6083`](https://github.com/nodejs/node/commit/77462b6083)] - **stream**: revert `map` spec compliance (Benjamin Gruenbaum) [#&#8203;41931](https://github.com/nodejs/node/pull/41931)
    
  • [`b968d89fc9`](https://github.com/nodejs/node/commit/b968d89fc9)] - **build**: remove broken x32 arch support (Ben Noordhuis) [#&#8203;41905](https://github.com/nodejs/node/pull/41905)
    
  • [`ba639d052b`](https://github.com/nodejs/node/commit/ba639d052b)] - **(SEMVER-MINOR)** **esm**: support https remotely and http locally under flag (Bradley Farias) [#&#8203;36328](https://github.com/nodejs/node/pull/36328)
    
  • [`214d17650b`](https://github.com/nodejs/node/commit/214d17650b)] - **(SEMVER-MINOR)** **fs**: support copy of relative links with cp and cpSync (Marcos Bjoerkelund) [#&#8203;41819](https://github.com/nodejs/node/pull/41819)
    
  • [`ec0d623bd7`](https://github.com/nodejs/node/commit/ec0d623bd7)] - **(SEMVER-MINOR)** **lib**: add FormData global when fetch is enabled (Michaël Zasso) [#&#8203;41956](https://github.com/nodejs/node/pull/41956)
    
  • [`3243701997`](https://github.com/nodejs/node/commit/3243701997)] - **(SEMVER-MINOR)** **readline**: bind keystroke `ctrl`+`6` to redo (Ray) [#&#8203;41662](https://github.com/nodejs/node/pull/41662)
    
  • [`5796c3a7ea`](https://github.com/nodejs/node/commit/5796c3a7ea)] - **process**: deprecate multipleResolves (Benjamin Gruenbaum) [#&#8203;41872](https://github.com/nodejs/node/pull/41872)
    -   Documentation-only.
    
    
Dependency Updates
  • [`d1ef43f2aa`](https://github.com/nodejs/node/commit/d1ef43f2aa)] - **deps**: upgrade npm to 8.5.1 (npm-robot) [#&#8203;42039](https://github.com/nodejs/node/pull/42039)
    
  • [`09c17481f6`](https://github.com/nodejs/node/commit/09c17481f6)] - **deps**: update undici to [`3e267ec`](https://github.com/nodejs/node/commit/3e267ece5f) (Michaël Zasso) [#&#8203;41955](https://github.com/nodejs/node/pull/41955)
    
  • [`0a6f0b416f`](https://github.com/nodejs/node/commit/0a6f0b416f)] - **deps**: upgrade npm to 8.5.0 (npm-robot) [#&#8203;41925](https://github.com/nodejs/node/pull/41925)
    
    
New Collaborators
  • [`90d90e3868`](https://github.com/nodejs/node/commit/90d90e3868)] - **doc**: add marsonya to collaborators (Akhil Marsonya) [#&#8203;41991](https://github.com/nodejs/node/pull/41991)
    
  • [`0de611f53a`](https://github.com/nodejs/node/commit/0de611f53a)] - **doc**: add joesepi to collaborators (Joe Sepi) [#&#8203;41914](https://github.com/nodejs/node/pull/41914)
    
    
Commits
  • [`c673953f6d`](https://github.com/nodejs/node/commit/c673953f6d)] - **build**: cancel running CI jobs when a PR is updated (Michaël Zasso) [#&#8203;42017](https://github.com/nodejs/node/pull/42017)
    
  • [`782506c099`](https://github.com/nodejs/node/commit/782506c099)] - **build**: increase operations and test tag (Michael Dawson) [#&#8203;42038](https://github.com/nodejs/node/pull/42038)
    
  • [`d3e6ad1ed5`](https://github.com/nodejs/node/commit/d3e6ad1ed5)] - **build**: allow manual run of feature request action (Michael Dawson) [#&#8203;42037](https://github.com/nodejs/node/pull/42037)
    
  • [`69d7736e08`](https://github.com/nodejs/node/commit/69d7736e08)] - **build**: add action to close stale feature requests (Michael Dawson) [#&#8203;41981](https://github.com/nodejs/node/pull/41981)
    
  • [`1315f1eb25`](https://github.com/nodejs/node/commit/1315f1eb25)] - **build**: prevent concurrent CI and CQ workflow runs (Michaël Zasso) [#&#8203;42016](https://github.com/nodejs/node/pull/42016)
    
  • [`1e8e8bc22b`](https://github.com/nodejs/node/commit/1e8e8bc22b)] - **build**: use zoslib_include_dir provided by node-gyp (alexcfyung) [#&#8203;41713](https://github.com/nodejs/node/pull/41713)
    
  • [`4e2e2cb821`](https://github.com/nodejs/node/commit/4e2e2cb821)] - **build**: move tool updates workflow runtime a day later (Rich Trott) [#&#8203;41982](https://github.com/nodejs/node/pull/41982)
    
  • [`cd04ed1382`](https://github.com/nodejs/node/commit/cd04ed1382)] - **build**: extend yamllint configuration (Mestery) [#&#8203;41756](https://github.com/nodejs/node/pull/41756)
    
  • [`b968d89fc9`](https://github.com/nodejs/node/commit/b968d89fc9)] - **build**: remove broken x32 arch support (Ben Noordhuis) [#&#8203;41905](https://github.com/nodejs/node/pull/41905)
    
  • [`2b1dabfb16`](https://github.com/nodejs/node/commit/2b1dabfb16)] - **build**: revert fast-track changes (Filip Skokan) [#&#8203;41892](https://github.com/nodejs/node/pull/41892)
    
  • [`182e6b9ee9`](https://github.com/nodejs/node/commit/182e6b9ee9)] - **build**: improve consistency between workflows (Mestery) [#&#8203;41791](https://github.com/nodejs/node/pull/41791)
    
  • [`f4cb72600d`](https://github.com/nodejs/node/commit/f4cb72600d)] - **build,tools**: change the quotes in YAML (Mestery) [#&#8203;41756](https://github.com/nodejs/node/pull/41756)
    
  • [`24b0a563a4`](https://github.com/nodejs/node/commit/24b0a563a4)] - **child_process**: kHideConsoleWindows for spawnSync (Raymond Zhao) [#&#8203;41412](https://github.com/nodejs/node/pull/41412)
    
  • [`c41e402c06`](https://github.com/nodejs/node/commit/c41e402c06)] - **cluster**: respect listen backlog set by workers (Elad Nava) [#&#8203;41623](https://github.com/nodejs/node/pull/41623)
    
  • [`84b1e4fba7`](https://github.com/nodejs/node/commit/84b1e4fba7)] - **crypto**: check result of BIO_new in X509ToObject (Tobias Nießen) [#&#8203;41979](https://github.com/nodejs/node/pull/41979)
    
  • [`946ac96817`](https://github.com/nodejs/node/commit/946ac96817)] - **crypto**: rename X509\_NAME_FLAGS (Tobias Nießen) [#&#8203;42001](https://github.com/nodejs/node/pull/42001)
    
  • [`60682917dd`](https://github.com/nodejs/node/commit/60682917dd)] - **(SEMVER-MINOR)** **crypto**: expose Web Crypto API on the global scope (Antoine du Hamel) [#&#8203;41938](https://github.com/nodejs/node/pull/41938)
    
  • [`0fff4d2314`](https://github.com/nodejs/node/commit/0fff4d2314)] - **crypto**: do not advertise unsupported algorithms (Brian White) [#&#8203;41864](https://github.com/nodejs/node/pull/41864)
    
  • [`67f1ebf9b4`](https://github.com/nodejs/node/commit/67f1ebf9b4)] - **debugger**: add debugger alias for exec(expr) (Xuguang Mei) [#&#8203;41907](https://github.com/nodejs/node/pull/41907)
    
  • [`1eac0a1677`](https://github.com/nodejs/node/commit/1eac0a1677)] - **debugger**: remove duplicate setPauseOnException call (Balakrishna Avulapati) [#&#8203;41838](https://github.com/nodejs/node/pull/41838)
    
  • [`d1ef43f2aa`](https://github.com/nodejs/node/commit/d1ef43f2aa)] - **deps**: upgrade npm to 8.5.1 (npm-robot) [#&#8203;42039](https://github.com/nodejs/node/pull/42039)
    
  • [`09c17481f6`](https://github.com/nodejs/node/commit/09c17481f6)] - **deps**: update undici to [`3e267ec`](https://github.com/nodejs/node/commit/3e267ece5f) (Michaël Zasso) [#&#8203;41955](https://github.com/nodejs/node/pull/41955)
    
  • [`0a6f0b416f`](https://github.com/nodejs/node/commit/0a6f0b416f)] - **deps**: upgrade npm to 8.5.0 (npm-robot) [#&#8203;41925](https://github.com/nodejs/node/pull/41925)
    
  • [`fea682ca94`](https://github.com/nodejs/node/commit/fea682ca94)] - **doc**: fix typo in http2 endAfterHeaders description (Alexandru Comanescu) [#&#8203;42060](https://github.com/nodejs/node/pull/42060)
    
  • [`9c618ad729`](https://github.com/nodejs/node/commit/9c618ad729)] - **doc**: make minor fixes to contributing guides (T-O-R-U-S) [#&#8203;41966](https://github.com/nodejs/node/pull/41966)
    
  • [`60bbacdd91`](https://github.com/nodejs/node/commit/60bbacdd91)] - **doc**: use openpgp.org for keyserver examples (Nick Schonning) [#&#8203;39227](https://github.com/nodejs/node/pull/39227)
    
  • [`2e252b3c95`](https://github.com/nodejs/node/commit/2e252b3c95)] - **doc**: adjust a/an word usage (Derek Wolpert) [#&#8203;41915](https://github.com/nodejs/node/pull/41915)
    
  • [`c7d590c66e`](https://github.com/nodejs/node/commit/c7d590c66e)] - **doc**: remove extra \<td> (Ray) [#&#8203;42006](https://github.com/nodejs/node/pull/42006)
    
  • [`06f225c6a6`](https://github.com/nodejs/node/commit/06f225c6a6)] - **doc**: capitalize valgrind (T•Ø•R•Ü•S) [#&#8203;41986](https://github.com/nodejs/node/pull/41986)
    
  • [`6195de506a`](https://github.com/nodejs/node/commit/6195de506a)] - **doc**: fix deprecation number (Antoine du Hamel) [#&#8203;41990](https://github.com/nodejs/node/pull/41990)
    
  • [`90d90e3868`](https://github.com/nodejs/node/commit/90d90e3868)] - **doc**: add marsonya to collaborators (Akhil Marsonya) [#&#8203;41991](https://github.com/nodejs/node/pull/41991)
    
  • [`6b88595142`](https://github.com/nodejs/node/commit/6b88595142)] - **doc**: deprecate notice for process methods (Yash Ladha) [#&#8203;41587](https://github.com/nodejs/node/pull/41587)
    
  • [`d34ee45134`](https://github.com/nodejs/node/commit/d34ee45134)] - **doc**: fix bug in `readable.unshift` code example (Xuguang Mei) [#&#8203;41944](https://github.com/nodejs/node/pull/41944)
    
  • [`8748b1e61d`](https://github.com/nodejs/node/commit/8748b1e61d)] - **doc**: add missing `buffer` in the `stream/consumers` import example (Mestery) [#&#8203;41961](https://github.com/nodejs/node/pull/41961)
    
  • [`cb9dba034a`](https://github.com/nodejs/node/commit/cb9dba034a)] - **doc**: fix typo in readableStream.locked description (Tobias Nießen) [#&#8203;41923](https://github.com/nodejs/node/pull/41923)
    
  • [`43a5161cee`](https://github.com/nodejs/node/commit/43a5161cee)] - **doc**: fix wrong indent in stream documentation (Xuguang Mei) [#&#8203;41943](https://github.com/nodejs/node/pull/41943)
    
  • [`dca2692ae3`](https://github.com/nodejs/node/commit/dca2692ae3)] - **doc**: emphasize security warning in vm module doc (Rich Trott) [#&#8203;41916](https://github.com/nodejs/node/pull/41916)
    
  • [`b0e8ccb84c`](https://github.com/nodejs/node/commit/b0e8ccb84c)] - **doc**: clarify `tls.Server` `'connection'` event documentation (Austin Cheney) [#&#8203;41917](https://github.com/nodejs/node/pull/41917)
    
  • [`6a7b0160df`](https://github.com/nodejs/node/commit/6a7b0160df)] - **doc**: improve scrollbar appearance in dark mode (Aaron Xie) [#&#8203;41890](https://github.com/nodejs/node/pull/41890)
    
  • [`aa684a78fe`](https://github.com/nodejs/node/commit/aa684a78fe)] - **doc**: replace text with paths in toggle SVGs (Brian White) [#&#8203;41885](https://github.com/nodejs/node/pull/41885)
    
  • [`fc9d4e96c1`](https://github.com/nodejs/node/commit/fc9d4e96c1)] - **doc**: edit process.config deprecation text (Rich Trott) [#&#8203;41889](https://github.com/nodejs/node/pull/41889)
    
  • [`0de611f53a`](https://github.com/nodejs/node/commit/0de611f53a)] - **doc**: add joesepi to collaborators (Joe Sepi) [#&#8203;41914](https://github.com/nodejs/node/pull/41914)
    
  • [`ba5cb89134`](https://github.com/nodejs/node/commit/ba5cb89134)] - **doc**: remove unneeded ellipsis in header (Rich Trott) [#&#8203;41888](https://github.com/nodejs/node/pull/41888)
    
  • [`291fe631dd`](https://github.com/nodejs/node/commit/291fe631dd)] - **doc**: fix webstream close reject state state doc (Benjamin Gruenbaum) [#&#8203;41860](https://github.com/nodejs/node/pull/41860)
    
  • [`c0f4289c65`](https://github.com/nodejs/node/commit/c0f4289c65)] - **esm**: improve `fetch_module` test coverage and remove hack (Antoine du Hamel) [#&#8203;41947](https://github.com/nodejs/node/pull/41947)
    
  • [`a95f7a0c25`](https://github.com/nodejs/node/commit/a95f7a0c25)] - **esm**: remove erroneous `context.parentURL` property passed to `load` hook (Jacob Smith) [#&#8203;41975](https://github.com/nodejs/node/pull/41975)
    
  • [`66c9565f99`](https://github.com/nodejs/node/commit/66c9565f99)] - **esm**: fix typo in `fetch_module` (Michael Scovetta) [#&#8203;41924](https://github.com/nodejs/node/pull/41924)
    
  • [`ba639d052b`](https://github.com/nodejs/node/commit/ba639d052b)] - **(SEMVER-MINOR)** **esm**: support https remotely and http locally under flag (Bradley Farias) [#&#8203;36328](https://github.com/nodejs/node/pull/36328)
    
  • [`0660ba3cd0`](https://github.com/nodejs/node/commit/0660ba3cd0)] - **events**: set default handler value (Benjamin Gruenbaum) [#&#8203;41970](https://github.com/nodejs/node/pull/41970)
    
  • [`5a807c5927`](https://github.com/nodejs/node/commit/5a807c5927)] - **fs**: fix default `length` parameter for `fs.read` (wbt) [#&#8203;40349](https://github.com/nodejs/node/pull/40349)
    
  • [`214d17650b`](https://github.com/nodejs/node/commit/214d17650b)] - **(SEMVER-MINOR)** **fs**: support copy of relative links with cp and cpSync (Marcos Bjoerkelund) [#&#8203;41819](https://github.com/nodejs/node/pull/41819)
    
  • [`be5143b3f5`](https://github.com/nodejs/node/commit/be5143b3f5)] - **fs**: fix cb/sync writev empty array behavior (Benjamin Gruenbaum) [#&#8203;41932](https://github.com/nodejs/node/pull/41932)
    
  • [`b4db004855`](https://github.com/nodejs/node/commit/b4db004855)] - **fs**: fix writev empty array error behavior (Benjamin Gruenbaum) [#&#8203;41919](https://github.com/nodejs/node/pull/41919)
    
  • [`528c585b2b`](https://github.com/nodejs/node/commit/528c585b2b)] - **fs**: refactor to use ES2020 syntax (小菜) [#&#8203;41903](https://github.com/nodejs/node/pull/41903)
    
  • [`ec0d623bd7`](https://github.com/nodejs/node/commit/ec0d623bd7)] - **(SEMVER-MINOR)** **lib**: add FormData global when fetch is enabled (Michaël Zasso) [#&#8203;41956](https://github.com/nodejs/node/pull/41956)
    
  • [`c3b0e72d01`](https://github.com/nodejs/node/commit/c3b0e72d01)] - **lib**: stop installing webcrypto if `no_browser_globals` is `true` (Mestery) [#&#8203;41971](https://github.com/nodejs/node/pull/41971)
    
  • [`ae36276148`](https://github.com/nodejs/node/commit/ae36276148)] - **lib**: allow respondWithNewView on byob auto allocated streams (Sean Quinlan) [#&#8203;41887](https://github.com/nodejs/node/pull/41887)
    
  • [`68ec8d5824`](https://github.com/nodejs/node/commit/68ec8d5824)] - **lib**: stop installing fetch if no_browser_globals is true (Darshan Sen) [#&#8203;41969](https://github.com/nodejs/node/pull/41969)
    
  • [`f9bfdc3a65`](https://github.com/nodejs/node/commit/f9bfdc3a65)] - **lib**: restrict usage of fetch related globals in core internals (Antoine du Hamel) [#&#8203;41957](https://github.com/nodejs/node/pull/41957)
    
  • [`3a121345e7`](https://github.com/nodejs/node/commit/3a121345e7)] - **lib**: move kEnumerableProperty to internal/util (Mestery) [#&#8203;41877](https://github.com/nodejs/node/pull/41877)
    
  • [`fa3a9135ad`](https://github.com/nodejs/node/commit/fa3a9135ad)] - **lib**: add internal genericNodeError() function (Rich Trott) [#&#8203;41879](https://github.com/nodejs/node/pull/41879)
    
  • [`1e698e65a7`](https://github.com/nodejs/node/commit/1e698e65a7)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42058](https://github.com/nodejs/node/pull/42058)
    
  • [`f51b55dae4`](https://github.com/nodejs/node/commit/f51b55dae4)] - **meta**: use plain emojis instead of escape sequences (Mestery) [#&#8203;41989](https://github.com/nodejs/node/pull/41989)
    
  • [`3d998112be`](https://github.com/nodejs/node/commit/3d998112be)] - **meta**: update AUTHORS and .mailmap (Rich Trott) [#&#8203;41953](https://github.com/nodejs/node/pull/41953)
    
  • [`391f4e5c25`](https://github.com/nodejs/node/commit/391f4e5c25)] - **perf_hooks**: use arrays to store EntryBuffers (Xuguang Mei) [#&#8203;42032](https://github.com/nodejs/node/pull/42032)
    
  • [`5796c3a7ea`](https://github.com/nodejs/node/commit/5796c3a7ea)] - **process**: deprecate multipleResolves (Benjamin Gruenbaum) [#&#8203;41872](https://github.com/nodejs/node/pull/41872)
    
  • [`3243701997`](https://github.com/nodejs/node/commit/3243701997)] - **(SEMVER-MINOR)** **readline**: bind keystroke `ctrl`+`6` to redo (Ray) [#&#8203;41662](https://github.com/nodejs/node/pull/41662)
    
  • [`c766159e68`](https://github.com/nodejs/node/commit/c766159e68)] - **repl**: [#&#8203;41690](https://github.com/nodejs/node/issues/41690) REPL gives wrong autocomplete on literals (Xuguang Mei) [#&#8203;41883](https://github.com/nodejs/node/pull/41883)
    
  • [`f80cae8be5`](https://github.com/nodejs/node/commit/f80cae8be5)] - **src**: merge ToJsSet into ToV8Value (Anna Henningsen) [#&#8203;41757](https://github.com/nodejs/node/pull/41757)
    
  • [`e2a74d2e04`](https://github.com/nodejs/node/commit/e2a74d2e04)] - **src**: remove separate definitions for static constexpr members (Anna Henningsen) [#&#8203;41755](https://github.com/nodejs/node/pull/41755)
    
  • [`d91a956419`](https://github.com/nodejs/node/commit/d91a956419)] - **src**: use const reference instead of pointer in URL::SerializeURL (Anna Henningsen) [#&#8203;41759](https://github.com/nodejs/node/pull/41759)
    
  • [`0330e2d796`](https://github.com/nodejs/node/commit/0330e2d796)] - **src**: reserve string allocation space early in URL::SerializeURL (Anna Henningsen) [#&#8203;41759](https://github.com/nodejs/node/pull/41759)
    
  • [`364ec5ba8b`](https://github.com/nodejs/node/commit/364ec5ba8b)] - **src**: fix query/fragment serialization in URL::SerializeURL (Anna Henningsen) [#&#8203;41759](https://github.com/nodejs/node/pull/41759)
    
  • [`6076291168`](https://github.com/nodejs/node/commit/6076291168)] - **src**: don't print interface if sin6\_scope_id is 0 (Santiago Gimeno) [#&#8203;41547](https://github.com/nodejs/node/pull/41547)
    
  • [`43c12f4962`](https://github.com/nodejs/node/commit/43c12f4962)] - **src,buffer**: evaluate THROW_AND_RETURN_IF_OOB() expression only once (Darshan Sen) [#&#8203;41945](https://github.com/nodejs/node/pull/41945)
    
  • [`b8cbb83222`](https://github.com/nodejs/node/commit/b8cbb83222)] - **stream**: add more forEach tests (Benjamin Gruenbaum) [#&#8203;41937](https://github.com/nodejs/node/pull/41937)
    
  • [`f5d7339b25`](https://github.com/nodejs/node/commit/f5d7339b25)] - **stream**: add more filter tests (Benjamin Gruenbaum) [#&#8203;41936](https://github.com/nodejs/node/pull/41936)
    
  • [`77462b6083`](https://github.com/nodejs/node/commit/77462b6083)] - **stream**: revert `map` spec compliance (Benjamin Gruenbaum) [#&#8203;41931](https://github.com/nodejs/node/pull/41931)
    
  • [`3e38506d1b`](https://github.com/nodejs/node/commit/3e38506d1b)] - **stream**: avoid usage of deprecated APIs (Mohammed Keyvanzadeh) [#&#8203;41871](https://github.com/nodejs/node/pull/41871)
    
  • [`5195479919`](https://github.com/nodejs/node/commit/5195479919)] - **stream**: refactor to use more validators (Mohammed Keyvanzadeh) [#&#8203;41871](https://github.com/nodejs/node/pull/41871)
    
  • [`07463b3374`](https://github.com/nodejs/node/commit/07463b3374)] - **stream**: use standard for loop instead of for..of (Mohammed Keyvanzadeh) [#&#8203;41871](https://github.com/nodejs/node/pull/41871)
    
  • [`d9008915fe`](https://github.com/nodejs/node/commit/d9008915fe)] - **test**: remove test-stdout-close-catch flaky designation (Rich Trott) [#&#8203;42045](https://github.com/nodejs/node/pull/42045)
    
  • [`fe66d2b98c`](https://github.com/nodejs/node/commit/fe66d2b98c)] - **test**: check that fetch globals are disabled by default (Michaël Zasso) [#&#8203;42015](https://github.com/nodejs/node/pull/42015)
    
  • [`bcf53a89f7`](https://github.com/nodejs/node/commit/bcf53a89f7)] - **test**: improve vm test coverage (Yoshiki Kurihara) [#&#8203;41847](https://github.com/nodejs/node/pull/41847)
    
  • [`9825ceddeb`](https://github.com/nodejs/node/commit/9825ceddeb)] - **test**: run webmessaging/broadcastchannel WPT (Ben Noordhuis) [#&#8203;41962](https://github.com/nodejs/node/pull/41962)
    
  • [`f8e302c813`](https://github.com/nodejs/node/commit/f8e302c813)] - **test**: fix names of tests marked flaky on IBM i (Richard Lau) [#&#8203;41984](https://github.com/nodejs/node/pull/41984)
    
  • [`ab73bde8c1`](https://github.com/nodejs/node/commit/ab73bde8c1)] - **test**: fix typographical error (Rich Trott) [#&#8203;41983](https://github.com/nodejs/node/pull/41983)
    
  • [`520dcbc9f5`](https://github.com/nodejs/node/commit/520dcbc9f5)] - **test**: fix intl tests on small-icu builds (Antoine du Hamel) [#&#8203;41939](https://github.com/nodejs/node/pull/41939)
    
  • [`83b913cb90`](https://github.com/nodejs/node/commit/83b913cb90)] - **test**: improve code coverage for streams/duplexify (Erick Wendel) [#&#8203;41862](https://github.com/nodejs/node/pull/41862)
    
  • [`dc14bd85ee`](https://github.com/nodejs/node/commit/dc14bd85ee)] - **test**: remove lint rule for setTimeout() arguments (Rich Trott) [#&#8203;41901](https://github.com/nodejs/node/pull/41901)
    
  • [`76f0f1c06d`](https://github.com/nodejs/node/commit/76f0f1c06d)] - **test**: move test-crypto-engine to addon (Michael Dawson) [#&#8203;41830](https://github.com/nodejs/node/pull/41830)
    
  • [`b1505a1250`](https://github.com/nodejs/node/commit/b1505a1250)] - **tls**: avoid throw in onerror for bad TLSSocket obj (Valters Jansons) [#&#8203;41523](https://github.com/nodejs/node/pull/41523)
    
  • [`2cdbf0304b`](https://github.com/nodejs/node/commit/2cdbf0304b)] - **tools**: update lint-md-dependencies to rollup@2.67.3 (Node.js GitHub Bot) [#&#8203;42057](https://github.com/nodejs/node/pull/42057)
    
  • [`6742625126`](https://github.com/nodejs/node/commit/6742625126)] - **tools**: enable es2022 env in ESLint config (Michaël Zasso) [#&#8203;42043](https://github.com/nodejs/node/pull/42043)
    
  • [`896ccc13ce`](https://github.com/nodejs/node/commit/896ccc13ce)] - **tools**: add `console` to the list of restricted globals (Antoine du Hamel) [#&#8203;42012](https://github.com/nodejs/node/pull/42012)
    
  • [`1b4ee6cfd9`](https://github.com/nodejs/node/commit/1b4ee6cfd9)] - **tools**: lint deprecation codes (Antoine du Hamel) [#&#8203;41992](https://github.com/nodejs/node/pull/41992)
    
  • [`e895e6422f`](https://github.com/nodejs/node/commit/e895e6422f)] - **tools**: fix bugs in prefer-primordials linter rule (Antoine du Hamel) [#&#8203;42010](https://github.com/nodejs/node/pull/42010)
    
  • [`47bb7dd52c`](https://github.com/nodejs/node/commit/47bb7dd52c)] - **tools**: add timers functions to the list of restricted globals (Antoine du Hamel) [#&#8203;42013](https://github.com/nodejs/node/pull/42013)
    
  • [`afeed46578`](https://github.com/nodejs/node/commit/afeed46578)] - **tools**: reduce list of globals in ESLint config (Rich Trott) [#&#8203;41996](https://github.com/nodejs/node/pull/41996)
    
  • [`2e905a63d8`](https://github.com/nodejs/node/commit/2e905a63d8)] - **tools**: update remark-preset-lint-node to 3.3.1 (Rich Trott) [#&#8203;41999](https://github.com/nodejs/node/pull/41999)
    
  • [`35832feb6e`](https://github.com/nodejs/node/commit/35832feb6e)] - **tools**: update ESLint to 8.9.0 (Luigi Pinca) [#&#8203;41973](https://github.com/nodejs/node/pull/41973)
    
  • [`06117c084e`](https://github.com/nodejs/node/commit/06117c084e)] - **tools**: update lint-md-dependencies to rollup@2.67.2 (Node.js GitHub Bot) [#&#8203;41941](https://github.com/nodejs/node/pull/41941)
    
  • [`f30b5e3a6d`](https://github.com/nodejs/node/commit/f30b5e3a6d)] - **tools**: fix typo in prefer-primordials.js (Ikko Ashimine) [#&#8203;41891](https://github.com/nodejs/node/pull/41891)
    
  • [`cfafb45c2b`](https://github.com/nodejs/node/commit/cfafb45c2b)] - **tools,lib**: remove `global` and `Intl` from the list of globals (Antoine du Hamel) [#&#8203;42014](https://github.com/nodejs/node/pull/42014)
    
  • [`ba35b6ccd1`](https://github.com/nodejs/node/commit/ba35b6ccd1)] - **worker**: fix typo in debug statement (Antoine du Hamel) [#&#8203;42011](https://github.com/nodejs/node/pull/42011)
    
    

v17.5.0

Compare Source

Notable Changes
Add fetch API

Adds experimental support to the fetch API. This adds a --experimental-fetch
flag that installs the fetch, Request, Reponse and Headers globals.

  • [`76a229c4ff`](https://github.com/nodejs/node/commit/76a229c4ff)] - **(SEMVER-MINOR)** **lib**: add fetch (Michaël Zasso) [#&#8203;41749](https://github.com/nodejs/node/pull/41749)
    
    
Add stream methods
  • [`1ae648567a`](https://github.com/nodejs/node/commit/1ae648567a)] - **(SEMVER-MINOR)** **stream**: add iterator helper find (linkgoron) [#&#8203;41849](https://github.com/nodejs/node/pull/41849)
    
  • [`62e1a68077`](https://github.com/nodejs/node/commit/62e1a68077)] - **(SEMVER-MINOR)** **stream**: add toArray (Benjamin Gruenbaum) [#&#8203;41553](https://github.com/nodejs/node/pull/41553)
    
  • [`da11b95988`](https://github.com/nodejs/node/commit/da11b95988)] - **(SEMVER-MINOR)** **stream**: add forEach method (Benjamin Gruenbaum) [#&#8203;41445](https://github.com/nodejs/node/pull/41445)
    
  • [`34684a1c89`](https://github.com/nodejs/node/commit/34684a1c89)] - **(SEMVER-MINOR)** **stream**: support some and every (Benjamin Gruenbaum) [#&#8203;41573](https://github.com/nodejs/node/pull/41573)
    
    
Other Notable Changes
  • [`2cae99425b`](https://github.com/nodejs/node/commit/2cae99425b)] - **(SEMVER-MINOR)** **node-api**: add node_api_symbol_for() (Darshan Sen) [#&#8203;41329](https://github.com/nodejs/node/pull/41329)
    
  • [`9c6b078892`](https://github.com/nodejs/node/commit/9c6b078892)] - **module**: unflag esm json modules (Geoffrey Booth) [#&#8203;41736](https://github.com/nodejs/node/pull/41736)
    
  • [`28650eca00`](https://github.com/nodejs/node/commit/28650eca00)] - **deps**: upgrade npm to 8.4.1 (npm team) [#&#8203;41836](https://github.com/nodejs/node/pull/41836)
    
    
Commits
  • [`0844935e1f`](https://github.com/nodejs/node/commit/0844935e1f)] - **async_hooks**: fix imports in context example (Yash Ladha) [#&#8203;39229](https://github.com/nodejs/node/pull/39229)
    
  • [`44ca20b7a1`](https://github.com/nodejs/node/commit/44ca20b7a1)] - **benchmark**: avoid input param manipulation (Jithil P Ponnan) [#&#8203;41741](https://github.com/nodejs/node/pull/41741)
    
  • [`ad32ad6cfd`](https://github.com/nodejs/node/commit/ad32ad6cfd)] - **benchmark**: enable no-empty ESLint rule (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`28b95a5a9f`](https://github.com/nodejs/node/commit/28b95a5a9f)] - **benchmark**: use Object.hasOwn() instead of hasOwnProperty() (Rich Trott) [#&#8203;41769](https://github.com/nodejs/node/pull/41769)
    
  • [`ca1cd4254a`](https://github.com/nodejs/node/commit/ca1cd4254a)] - **benchmark**: replace hasOwnProperty() with Object.hasOwn() (Rich Trott) [#&#8203;41724](https://github.com/nodejs/node/pull/41724)
    
  • [`6fefd5112a`](https://github.com/nodejs/node/commit/6fefd5112a)] - **(SEMVER-MINOR)** **benchmark**: add `subarray` to `buffer-slice` (Benjamin Gruenbaum) [#&#8203;41596](https://github.com/nodejs/node/pull/41596)
    
  • [`878b2e73bb`](https://github.com/nodejs/node/commit/878b2e73bb)] - **benchmark**: remove unreachable code from crypto/hash-stream-creation (Rich Trott) [#&#8203;41535](https://github.com/nodejs/node/pull/41535)
    
  • [`6064b1df5d`](https://github.com/nodejs/node/commit/6064b1df5d)] - **buffer**: fix atob/btoa no-arg case (Benjamin Gruenbaum) [#&#8203;41478](https://github.com/nodejs/node/pull/41478)
    
  • [`89c327387b`](https://github.com/nodejs/node/commit/89c327387b)] - **(SEMVER-MINOR)** **buffer**: alias `subarray` and `slice` (Benjamin Gruenbaum) [#&#8203;41596](https://github.com/nodejs/node/pull/41596)
    
  • [`adcde6bb78`](https://github.com/nodejs/node/commit/adcde6bb78)] - **build**: check if python is a executable program (himself65) [#&#8203;36696](https://github.com/nodejs/node/pull/36696)
    
  • [`33351765c7`](https://github.com/nodejs/node/commit/33351765c7)] - **build**: enable zoslib installation on z/OS (alexcfyung) [#&#8203;41493](https://github.com/nodejs/node/pull/41493)
    
  • [`e8062bfb92`](https://github.com/nodejs/node/commit/e8062bfb92)] - **build**: add --v8-enable-hugepage flag (Daoming Qiu) [#&#8203;41487](https://github.com/nodejs/node/pull/41487)
    
  • [`8681c837ca`](https://github.com/nodejs/node/commit/8681c837ca)] - **build**: add loong64 configure (Shi Pujin) [#&#8203;41323](https://github.com/nodejs/node/pull/41323)
    
  • [`7c2b5861be`](https://github.com/nodejs/node/commit/7c2b5861be)] - **build**: fix libuv builds for android aarch64 (Darshan Sen) [#&#8203;41555](https://github.com/nodejs/node/pull/41555)
    
  • [`e117c0f86c`](https://github.com/nodejs/node/commit/e117c0f86c)] - **crypto**: check return code from EVP_DigestUpdate (Michael Dawson) [#&#8203;41800](https://github.com/nodejs/node/pull/41800)
    
  • [`9c59abe588`](https://github.com/nodejs/node/commit/9c59abe588)] - **crypto**: fix `webcrypto.subtle` signature (Antoine du Hamel) [#&#8203;41761](https://github.com/nodejs/node/pull/41761)
    
  • [`627f19a84b`](https://github.com/nodejs/node/commit/627f19a84b)] - **crypto**: revise variables for const use instead of let (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`9e39e62ae2`](https://github.com/nodejs/node/commit/9e39e62ae2)] - **crypto**: remove wildcard options for checkEmail (Tobias Nießen) [#&#8203;41599](https://github.com/nodejs/node/pull/41599)
    
  • [`4a4c907604`](https://github.com/nodejs/node/commit/4a4c907604)] - **crypto**: adjust types for getRandomValues (LiviaMedeiros) [#&#8203;41481](https://github.com/nodejs/node/pull/41481)
    
  • [`b43faf0fc5`](https://github.com/nodejs/node/commit/b43faf0fc5)] - **crypto**: remove checkIP options argument (Tobias Nießen) [#&#8203;41571](https://github.com/nodejs/node/pull/41571)
    
  • [`076ec47557`](https://github.com/nodejs/node/commit/076ec47557)] - **(SEMVER-MINOR)** **crypto**: support RFC 2818 compatible checkHost (Tobias Nießen) [#&#8203;41569](https://github.com/nodejs/node/pull/41569)
    
  • [`28650eca00`](https://github.com/nodejs/node/commit/28650eca00)] - **deps**: upgrade npm to 8.4.1 (npm-robot) [#&#8203;41836](https://github.com/nodejs/node/pull/41836)
    
  • [`bee4451ed8`](https://github.com/nodejs/node/commit/bee4451ed8)] - **deps**: V8: cherry-pick [`cc9a8a3`](https://github.com/nodejs/node/commit/cc9a8a37445e) (Gus Caplan) [#&#8203;41823](https://github.com/nodejs/node/pull/41823)
    
  • [`4b174ce7f6`](https://github.com/nodejs/node/commit/4b174ce7f6)] - **deps**: upgrade npm to 8.3.2 (npm team) [#&#8203;41621](https://github.com/nodejs/node/pull/41621)
    
  • [`0d4f043f0e`](https://github.com/nodejs/node/commit/0d4f043f0e)] - **dgram**: remove unreachable connectState assign (Rongjian Zhang) [#&#8203;38590](https://github.com/nodejs/node/pull/38590)
    
  • [`d641eb7f80`](https://github.com/nodejs/node/commit/d641eb7f80)] - **doc**: use the same case as the section heading (Mestery) [#&#8203;41876](https://github.com/nodejs/node/pull/41876)
    
  • [`ffd1933ad9`](https://github.com/nodejs/node/commit/ffd1933ad9)] - **doc**: use Oxford comma in crypto docs (Tobias Nießen) [#&#8203;41875](https://github.com/nodejs/node/pull/41875)
    
  • [`145a3b8294`](https://github.com/nodejs/node/commit/145a3b8294)] - **doc**: use sentence case in readme introduction (Mestery) [#&#8203;41874](https://github.com/nodejs/node/pull/41874)
    
  • [`f8acca8df8`](https://github.com/nodejs/node/commit/f8acca8df8)] - **doc**: add missing space before hyphen (Mestery) [#&#8203;41873](https://github.com/nodejs/node/pull/41873)
    
  • [`5085813688`](https://github.com/nodejs/node/commit/5085813688)] - **doc**: add stream pipelining note on Http usage (Rafael Silva) [#&#8203;41796](https://github.com/nodejs/node/pull/41796)
    
  • [`0a8995d36b`](https://github.com/nodejs/node/commit/0a8995d36b)] - **doc**: improve SSL_OP_PRIORITIZE_CHACHA description (Tobias Nießen) [#&#8203;41866](https://github.com/nodejs/node/pull/41866)
    
  • [`1c62eb64f6`](https://github.com/nodejs/node/commit/1c62eb64f6)] - **doc**: add missing commas in cluster docs (Tobias Nießen) [#&#8203;41865](https://github.com/nodejs/node/pull/41865)
    
  • [`3676505413`](https://github.com/nodejs/node/commit/3676505413)] - **doc**: add history information for Corepack (Antoine du Hamel) [#&#8203;41813](https://github.com/nodejs/node/pull/41813)
    
  • [`8a42a20b8a`](https://github.com/nodejs/node/commit/8a42a20b8a)] - **doc**: add comments to empty blocks in worker_threads text (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`c3721fcf9a`](https://github.com/nodejs/node/commit/c3721fcf9a)] - **doc**: remove empty block from console.timeEnd() example (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`451f3331d9`](https://github.com/nodejs/node/commit/451f3331d9)] - **doc**: feature management proposal (Michael Dawson) [#&#8203;41420](https://github.com/nodejs/node/pull/41420)
    
  • [`72a857f56c`](https://github.com/nodejs/node/commit/72a857f56c)] - **doc**: add overhead hints for heap snapshot generation (Gerhard Stöbich) [#&#8203;41822](https://github.com/nodejs/node/pull/41822)
    
  • [`7aeaa27d67`](https://github.com/nodejs/node/commit/7aeaa27d67)] - **doc**: fix X509 CA acronym capitalization (Tobias Nießen) [#&#8203;41841](https://github.com/nodejs/node/pull/41841)
    
  • [`d3a4c62600`](https://github.com/nodejs/node/commit/d3a4c62600)] - **doc**: use sentence case for X509 error codes header (Tobias Nießen) [#&#8203;41829](https://github.com/nodejs/node/pull/41829)
    
  • [`cb16fad0ab`](https://github.com/nodejs/node/commit/cb16fad0ab)] - **doc**: add initial version of maintaining-http.md (Michael Dawson) [#&#8203;41798](https://github.com/nodejs/node/pull/41798)
    
  • [`49f6b97b64`](https://github.com/nodejs/node/commit/49f6b97b64)] - **doc**: add registry numbers for Electron 19 and 20 (Keeley Hammond) [#&#8203;41814](https://github.com/nodejs/node/pull/41814)
    
  • [`4db343bb8e`](https://github.com/nodejs/node/commit/4db343bb8e)] - **doc**: add note about resource type in async_hooks (Tony Gorez) [#&#8203;41797](https://github.com/nodejs/node/pull/41797)
    
  • [`d726a3442c`](https://github.com/nodejs/node/commit/d726a3442c)] - **doc**: use example.com for examples (Ateş Göral) [#&#8203;41827](https://github.com/nodejs/node/pull/41827)
    
  • [`4eb1938f51`](https://github.com/nodejs/node/commit/4eb1938f51)] - **doc**: align tls port types with net port types (Tobias Nießen) [#&#8203;41799](https://github.com/nodejs/node/pull/41799)
    
  • [`e5db13626b`](https://github.com/nodejs/node/commit/e5db13626b)] - **doc**: use UDPv4/UDPv6 consistently with TCPv4/TCPv6 (Tobias Nießen) [#&#8203;41824](https://github.com/nodejs/node/pull/41824)
    
  • [`af641bdec4`](https://github.com/nodejs/node/commit/af641bdec4)] - **doc**: improve wording surrounding TLS 1.3 ciphers (Tobias Nießen) [#&#8203;41778](https://github.com/nodejs/node/pull/41778)
    
  • [`99e0f1458b`](https://github.com/nodejs/node/commit/99e0f1458b)] - **doc**: add format-md step to release guide (Danielle Adams) [#&#8203;41809](https://github.com/nodejs/node/pull/41809)
    
  • [`62f2c078ec`](https://github.com/nodejs/node/commit/62f2c078ec)] - **doc**: add v16 changelog link to iojs changelog (Danielle Adams) [#&#8203;41808](https://github.com/nodejs/node/pull/41808)
    
  • [`c0629b48ce`](https://github.com/nodejs/node/commit/c0629b48ce)] - **doc**: add security-steward rotation information (Michael Dawson) [#&#8203;41707](https://github.com/nodejs/node/pull/41707)
    
  • [`032df4ee17`](https://github.com/nodejs/node/commit/032df4ee17)] - **doc**: use Object.hasOwn() in util doc (Rich Trott) [#&#8203;41780](https://github.com/nodejs/node/pull/41780)
    
  • [`257c5b68d1`](https://github.com/nodejs/node/commit/257c5b68d1)] - **doc**: remove section on "recent" ECDH changes (Tobias Nießen) [#&#8203;41773](https://github.com/nodejs/node/pull/41773)
    
  • [`86644b95a5`](https://github.com/nodejs/node/commit/86644b95a5)] - **doc**: clarify that import also uses main (Ben McCann) [#&#8203;41720](https://github.com/nodejs/node/pull/41720)
    
  • [`4889a3177f`](https://github.com/nodejs/node/commit/4889a3177f)] - **doc**: update modules.md wording (Tobias Hernstig) [#&#8203;41728](https://github.com/nodejs/node/pull/41728)
    
  • [`26c5efef35`](https://github.com/nodejs/node/commit/26c5efef35)] - **doc**: update Mesteery email (Mestery) [#&#8203;41683](https://github.com/nodejs/node/pull/41683)
    
  • [`4339299800`](https://github.com/nodejs/node/commit/4339299800)] - **doc**: avoid incomplete sentence in cluster docs (Tobias Nießen) [#&#8203;41701](https://github.com/nodejs/node/pull/41701)
    
  • [`7f7bcd7757`](https://github.com/nodejs/node/commit/7f7bcd7757)] - **doc**: fix typo in contributing guides (Yoshiki Kurihara) [#&#8203;41723](https://github.com/nodejs/node/pull/41723)
    
  • [`30336c23b5`](https://github.com/nodejs/node/commit/30336c23b5)] - **doc**: improve docs to give descriptive info for the platform property (Harshil jain) [#&#8203;41650](https://github.com/nodejs/node/pull/41650)
    
  • [`29678d66b8`](https://github.com/nodejs/node/commit/29678d66b8)] - **doc**: fix link to npm documentation (Antoine du Hamel) [#&#8203;41712](https://github.com/nodejs/node/pull/41712)
    
  • [`ae34900ccb`](https://github.com/nodejs/node/commit/ae34900ccb)] - **doc**: clarify treatment of non-string base in URL() (Rich Trott) [#&#8203;41685](https://github.com/nodejs/node/pull/41685)
    
  • [`b83e661d30`](https://github.com/nodejs/node/commit/b83e661d30)] - **doc**: fix typo in `technical-priorities.md` (Akhil Marsonya) [#&#8203;41694](https://github.com/nodejs/node/pull/41694)
    
  • [`8e7df048a7`](https://github.com/nodejs/node/commit/8e7df048a7)] - **doc**: remove unadvisable cluster example (Tobias Nießen) [#&#8203;41668](https://github.com/nodejs/node/pull/41668)
    
  • [`0ee468d6ba`](https://github.com/nodejs/node/commit/0ee468d6ba)] - **doc**: document flow for supporting type generation (Michael Dawson) [#&#8203;41464](https://github.com/nodejs/node/pull/41464)
    
  • [`9af2862a8b`](https://github.com/nodejs/node/commit/9af2862a8b)] - **doc**: clarify parameter for napi_get_cb_info (Michael Dawson) [#&#8203;41635](https://github.com/nodejs/node/pull/41635)
    
  • [`a35c6c38f1`](https://github.com/nodejs/node/commit/a35c6c38f1)] - **doc**: revise url.resolve() text (Rich Trott) [#&#8203;41661](https://github.com/nodejs/node/pull/41661)
    
  • [`986dbb3222`](https://github.com/nodejs/node/commit/986dbb3222)] - **doc**: clarify treatment of non-string argument to new URL() (Rich Trott) [#&#8203;41658](https://github.com/nodejs/node/pull/41658)
    
  • [`2bba6cd8b6`](https://github.com/nodejs/node/commit/2bba6cd8b6)] - **doc**: fix documentation for `MODULE_NOT_FOUND` and `ERR_MODULE_NOT_FOUND` (Antoine du Hamel) [#&#8203;41645](https://github.com/nodejs/node/pull/41645)
    
  • [`d40fd755d3`](https://github.com/nodejs/node/commit/d40fd755d3)] - **doc**: improve TLS/SSL introduction (Tobias Nießen) [#&#8203;41649](https://github.com/nodejs/node/pull/41649)
    
  • [`b951764c32`](https://github.com/nodejs/node/commit/b951764c32)] - **doc**: modernize and simplify cluster example (Tobias Nießen) [#&#8203;41626](https://github.com/nodejs/node/pull/41626)
    
  • [`0d6227ceab`](https://github.com/nodejs/node/commit/0d6227ceab)] - **doc**: simplify readline/stdin text (Rich Trott) [#&#8203;41583](https://github.com/nodejs/node/pull/41583)
    
  • [`ffab924444`](https://github.com/nodejs/node/commit/ffab924444)] - **doc**: suggest worker threads in cluster docs (Tobias Nießen) [#&#8203;41616](https://github.com/nodejs/node/pull/41616)
    
  • [`c111a13d22`](https://github.com/nodejs/node/commit/c111a13d22)] - **doc**: add 16 and 17 to previous versions (Antoine du Hamel) [#&#8203;41646](https://github.com/nodejs/node/pull/41646)
    
  • [`81e039fa9d`](https://github.com/nodejs/node/commit/81e039fa9d)] - **doc**: improve `'hex'` Buffer decoding description and examples (Giora Guttsait) [#&#8203;41598](https://github.com/nodejs/node/pull/41598)
    
  • [`09763a2a93`](https://github.com/nodejs/node/commit/09763a2a93)] - **doc**: add note for handling signal events in trace events (Gabriel Trujillo) [#&#8203;41438](https://github.com/nodejs/node/pull/41438)
    
  • [`2e7bf00359`](https://github.com/nodejs/node/commit/2e7bf00359)] - **(SEMVER-MINOR)** **doc**: deprecate `buffer.slice` (Benjamin Gruenbaum) [#&#8203;41596](https://github.com/nodejs/node/pull/41596)
    
  • [`174155dee6`](https://github.com/nodejs/node/commit/174155dee6)] - **doc**: demonstrate dangers of `buffer.slice()` (Shalvah) [#&#8203;41628](https://github.com/nodejs/node/pull/41628)
    
  • [`22484014cd`](https://github.com/nodejs/node/commit/22484014cd)] - **doc**: add missing word in cluster.workers details (Tobias Nießen) [#&#8203;41624](https://github.com/nodejs/node/pull/41624)
    
  • [`86272ca5ac`](https://github.com/nodejs/node/commit/86272ca5ac)] - **doc**: fix async_hooks example in api docs (Akhil Marsonya) [#&#8203;41609](https://github.com/nodejs/node/pull/41609)
    
  • [`5943cb9d1e`](https://github.com/nodejs/node/commit/5943cb9d1e)] - **doc**: fix deprecated alias description in cluster (Tobias Nießen) [#&#8203;41618](https://github.com/nodejs/node/pull/41618)
    
  • [`574c19a8c6`](https://github.com/nodejs/node/commit/574c19a8c6)] - **doc**: fix backticks around 'default' (Tobias Nießen) [#&#8203;41613](https://github.com/nodejs/node/pull/41613)
    
  • [`4780449b4e`](https://github.com/nodejs/node/commit/4780449b4e)] - **doc**: update timingSafeEqual error case (Alex Agranov) [#&#8203;41507](https://github.com/nodejs/node/pull/41507)
    
  • [`9c73bd5610`](https://github.com/nodejs/node/commit/9c73bd5610)] - **doc**: simplify util.TextDecoder example (Rich Trott) [#&#8203;41574](https://github.com/nodejs/node/pull/41574)
    
  • [`e72693160e`](https://github.com/nodejs/node/commit/e72693160e)] - **doc**: move Mesteery to collaborators (Tobias Nießen) [#&#8203;41597](https://github.com/nodejs/node/pull/41597)
    
  • [`952623dff8`](https://github.com/nodejs/node/commit/952623dff8)] - **doc**: fix cjs example code for process.arch (Job) [#&#8203;41593](https://github.com/nodejs/node/pull/41593)
    
  • [`2478b47a08`](https://github.com/nodejs/node/commit/2478b47a08)] - **doc**: remove redunant `await` calls from stream docs (Giora Guttsait) [#&#8203;41592](https://github.com/nodejs/node/pull/41592)
    
  • [`f6b5b8d5bb`](https://github.com/nodejs/node/commit/f6b5b8d5bb)] - **doc**: make contributing info more discoverable (Michael Dawson) [#&#8203;41408](https://github.com/nodejs/node/pull/41408)
    
  • [`6370b4df68`](https://github.com/nodejs/node/commit/6370b4df68)] - **doc**: recommend package exports instead of requiring folders (Antoine du Hamel) [#&#8203;41381](https://github.com/nodejs/node/pull/41381)
    
  • [`b5104e89fc`](https://github.com/nodejs/node/commit/b5104e89fc)] - **doc**: edit async_context context loss text (Rich Trott) [#&#8203;41550](https://github.com/nodejs/node/pull/41550)
    
  • [`9ea8e49032`](https://github.com/nodejs/node/commit/9ea8e49032)] - **doc**: use sentence case for Web Crypto headers (Tobias Nießen) [#&#8203;41577](https://github.com/nodejs/node/pull/41577)
    
  • [`92484d4945`](https://github.com/nodejs/node/commit/92484d4945)] - **doc**: make Web Crypto example spec compliant (Tobias Nießen) [#&#8203;41556](https://github.com/nodejs/node/pull/41556)
    
  • [`60e7437a60`](https://github.com/nodejs/node/commit/60e7437a60)] - **doc**: do not reference SSL when discussing SNI (Tobias Nießen) [#&#8203;41549](https://github.com/nodejs/node/pull/41549)
    
  • [`31d75f2f5d`](https://github.com/nodejs/node/commit/31d75f2f5d)] - **doc**: fix typos in esm.md (Yu) [#&#8203;41499](https://github.com/nodejs/node/pull/41499)
    
  • [`cb4dbc10bc`](https://github.com/nodejs/node/commit/cb4dbc10bc)] - **doc**: adjust assignment in condition in stream doc (Rich Trott) [#&#8203;41510](https://github.com/nodejs/node/pull/41510)
    
  • [`5c700fa8e2`](https://github.com/nodejs/node/commit/5c700fa8e2)] - **doc**: improve Web Crypto headings related to ECC (Tobias Nießen) [#&#8203;41542](https://github.com/nodejs/node/pull/41542)
    
  • [`84292165e7`](https://github.com/nodejs/node/commit/84292165e7)] - **doc**: clarify module system selection (Antoine du Hamel) [#&#8203;41383](https://github.com/nodejs/node/pull/41383)
    
  • [`be63dc5acc`](https://github.com/nodejs/node/commit/be63dc5acc)] - **doc**: remove statement about (EC)DHE performance (Tobias Nießen) [#&#8203;41528](https://github.com/nodejs/node/pull/41528)
    
  • [`c6749bc590`](https://github.com/nodejs/node/commit/c6749bc590)] - **doc,readline**: add missing node protocol in example (Mestery) [#&#8203;41560](https://github.com/nodejs/node/pull/41560)
    
  • [`74bd31213c`](https://github.com/nodejs/node/commit/74bd31213c)] - **domain**: pass opts to `EventEmitter.init` (Chen Gang) [#&#8203;41414](https://github.com/nodejs/node/pull/41414)
    
  • [`e1d5a354c5`](https://github.com/nodejs/node/commit/e1d5a354c5)] - **esm**: improve validation of resolved URLs (Jacob Smith) [#&#8203;41446](https://github.com/nodejs/node/pull/41446)
    
  • [`bfddcb11a5`](https://github.com/nodejs/node/commit/bfddcb11a5)] - **http2**: fix pseudo-headers order (ofir) [#&#8203;41735](https://github.com/nodejs/node/pull/41735)
    
  • [`499171bbd8`](https://github.com/nodejs/node/commit/499171bbd8)] - **http2**: fix no response event on continue request (ofirbarak) [#&#8203;41739](https://github.com/nodejs/node/pull/41739)
    
  • [`2a18859324`](https://github.com/nodejs/node/commit/2a18859324)] - **http2**: fix memory leak on nghttp2 hd threshold (Rafael Silva) [#&#8203;41502](https://github.com/nodejs/node/pull/41502)
    
  • [`59a15e8f1a`](https://github.com/nodejs/node/commit/59a15e8f1a)] - **lib**: refactor to use `validateObject()` validator (Mohammed Keyvanzadeh) [#&#8203;41845](https://github.com/nodejs/node/pull/41845)
    
  • [`4834be373d`](https://github.com/nodejs/node/commit/4834be373d)] - **lib**: add comments to empty catch statements (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`76a229c4ff`](https://github.com/nodejs/node/commit/76a229c4ff)] - **(SEMVER-MINOR)** **lib**: add fetch (Michaël Zasso) [#&#8203;41749](https://github.com/nodejs/node/pull/41749)
    
  • [`cedd26a396`](https://github.com/nodejs/node/commit/cedd26a396)] - **lib**: refactor source map stack trace prepare (Mohammed Keyvanzadeh) [#&#8203;41698](https://github.com/nodejs/node/pull/41698)
    
  • [`8ab0540d4a`](https://github.com/nodejs/node/commit/8ab0540d4a)] - **lib**: throw error in structuedClone when no arguments are passed (Giora Guttsait) [#&#8203;41651](https://github.com/nodejs/node/pull/41651)
    
  • [`306dd1c181`](https://github.com/nodejs/node/commit/306dd1c181)] - **lib**: fix consistency of methods that emit warnings (Yoshiki Kurihara) [#&#8203;41249](https://github.com/nodejs/node/pull/41249)
    
  • [`e500d11806`](https://github.com/nodejs/node/commit/e500d11806)] - **lib**: remove erroneous JSDoc entry (Rich Trott) [#&#8203;41604](https://github.com/nodejs/node/pull/41604)
    
  • [`8a99eed7aa`](https://github.com/nodejs/node/commit/8a99eed7aa)] - **lib**: modify `DOMException` to pass WPT (Khaidi Chu) [#&#8203;41517](https://github.com/nodejs/node/pull/41517)
    
  • [`bd5d1583ed`](https://github.com/nodejs/node/commit/bd5d1583ed)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41868](https://github.com/nodejs/node/pull/41868)
    
  • [`f5adf54eb6`](https://github.com/nodejs/node/commit/f5adf54eb6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41763](https://github.com/nodejs/node/pull/41763)
    
  • [`e5abdf7285`](https://github.com/nodejs/node/commit/e5abdf7285)] - **meta**: update mailmap/AUTHORS info for existing collaborator (Rich Trott) [#&#8203;41750](https://github.com/nodejs/node/pull/41750)
    
  • [`14415fb7e0`](https://github.com/nodejs/node/commit/14415fb7e0)] - **meta**: adjust mailmap/AUTHORS to reflect README change (Rich Trott) [#&#8203;41751](https://github.com/nodejs/node/pull/41751)
    
  • [`60eddadb65`](https://github.com/nodejs/node/commit/60eddadb65)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41659](https://github.com/nodejs/node/pull/41659)
    
  • [`336c18d057`](https://github.com/nodejs/node/commit/336c18d057)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41548](https://github.com/nodejs/node/pull/41548)
    
  • [`9c6b078892`](https://github.com/nodejs/node/commit/9c6b078892)] - **module**: unflag esm json modules (Geoffrey Booth) [#&#8203;41736](https://github.com/nodejs/node/pull/41736)
    
  • [`2cae99425b`](https://github.com/nodejs/node/commit/2cae99425b)] - **(SEMVER-MINOR)** **node-api**: add node_api_symbol_for() (Darshan Sen) [#&#8203;41329](https://github.com/nodejs/node/pull/41329)
    
  • [`14cb9ea93e`](https://github.com/nodejs/node/commit/14cb9ea93e)] - **perf_hooks**: remove useless calls in Histogram (Michael Dawson) [#&#8203;41579](https://github.com/nodejs/node/pull/41579)
    
  • [`e1ae61bce5`](https://github.com/nodejs/node/commit/e1ae61bce5)] - **policy**: revise manifest.js to avoid empty blocks (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`d83d55e6e5`](https://github.com/nodejs/node/commit/d83d55e6e5)] - **policy**: check for null instead of falsy in loop (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`e11451c4e8`](https://github.com/nodejs/node/commit/e11451c4e8)] - **policy**: replace entries with keys (Mohammed Keyvanzadeh) [#&#8203;41482](https://github.com/nodejs/node/pull/41482)
    
  • [`cfaa1e224d`](https://github.com/nodejs/node/commit/cfaa1e224d)] - **process**: unhandledRejection support more errors (Benjamin Gruenbaum) [#&#8203;41682](https://github.com/nodejs/node/pull/41682)
    
  • [`cf1d3d1565`](https://github.com/nodejs/node/commit/cf1d3d1565)] - **process**: check for null instead of falsy in while loop (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`3b45c05a23`](https://github.com/nodejs/node/commit/3b45c05a23)] - **process**: use validateString validator (Mohammed Keyvanzadeh) [#&#8203;41595](https://github.com/nodejs/node/pull/41595)
    
  • [`700f766bea`](https://github.com/nodejs/node/commit/700f766bea)] - **process**: ignore asyncId 0 in exception handler (Anatoli Papirovski) [#&#8203;41424](https://github.com/nodejs/node/pull/41424)
    
  • [`cbcf794562`](https://github.com/nodejs/node/commit/cbcf794562)] - **readline**: improve code coverage for readline promises (Erick Wendel) [#&#8203;41817](https://github.com/nodejs/node/pull/41817)
    
  • [`0a31149202`](https://github.com/nodejs/node/commit/0a31149202)] - **(SEMVER-MINOR)** **readline**: add feature yank and yank pop (Ray) [#&#8203;41301](https://github.com/nodejs/node/pull/41301)
    
  • [`5a4c74c647`](https://github.com/nodejs/node/commit/5a4c74c647)] - **readline**: undo previous edit when get key code 0x1F (Ray) [#&#8203;41392](https://github.com/nodejs/node/pull/41392)
    
  • [`301a4f8781`](https://github.com/nodejs/node/commit/301a4f8781)] - **repl**: check for precise values rather than falsy in loops (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`c3d3abf112`](https://github.com/nodejs/node/commit/c3d3abf112)] - **src**: slightly simplify URLHost::ToString (Anna Henningsen) [#&#8203;41747](https://github.com/nodejs/node/pull/41747)
    
  • [`43f2abae7c`](https://github.com/nodejs/node/commit/43f2abae7c)] - **src**: slightly simplify V8CoverageConnection::GetFilename (Anna Henningsen) [#&#8203;41748](https://github.com/nodejs/node/pull/41748)
    
  • [`bbfa58691e`](https://github.com/nodejs/node/commit/bbfa58691e)] - **src**: fix typo in js_native_api_v8.cc (Caio Agiani) [#&#8203;41764](https://github.com/nodejs/node/pull/41764)
    
  • [`1ae648567a`](https://github.com/nodejs/node/commit/1ae648567a)] - **(SEMVER-MINOR)** **stream**: add iterator helper find (linkgoron) [#&#8203;41849](https://github.com/nodejs/node/pull/41849)
    
  • [`07b6bf4e7e`](https://github.com/nodejs/node/commit/07b6bf4e7e)] - **stream**: resume stream on drain (Robert Nagy) [#&#8203;41848](https://github.com/nodejs/node/pull/41848)
    
  • [`f8d2955b71`](https://github.com/nodejs/node/commit/f8d2955b71)] - **stream**: initial port of test262 tests (Benjamin Gruenbaum) [#&#8203;41775](https://github.com/nodejs/node/pull/41775)
    
  • [`6c82276b85`](https://github.com/nodejs/node/commit/6c82276b85)] - **stream**: remove empty block (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`e11a079469`](https://github.com/nodejs/node/commit/e11a079469)] - **stream**: use synchronous error validation & validate abort signal option (iMoses) [#&#8203;41777](https://github.com/nodejs/node/pull/41777)
    
  • [`9c2504a066`](https://github.com/nodejs/node/commit/9c2504a066)] - **(SEMVER-MINOR)** **stream**: add reduce (Benjamin Gruenbaum) [#&#8203;41669](https://github.com/nodejs/node/pull/41669)
    
  • [`a05b8328d8`](https://github.com/nodejs/node/commit/a05b8328d8)] - **stream**: use synchronous error validation on iteration helpers (iMoses) [#&#8203;41652](https://github.com/nodejs/node/pull/41652)
    
  • [`311050ebaa`](https://github.com/nodejs/node/commit/311050ebaa)] - **stream**: add asIndexedPairs (Benjamin Gruenbaum) [#&#8203;41681](https://github.com/nodejs/node/pull/41681)
    
  • [`9b1a37979c`](https://github.com/nodejs/node/commit/9b1a37979c)] - **stream**: add drop and take (Benjamin Gruenbaum) [#&#8203;41630](https://github.com/nodejs/node/pull/41630)
    
  • [`b3390b9ddb`](https://github.com/nodejs/node/commit/b3390b9ddb)] - **stream**: never flatten on toArray (Benjamin Gruenbaum) [#&#8203;41615](https://github.com/nodejs/node/pull/41615)
    
  • [`46ec74dcd1`](https://github.com/nodejs/node/commit/46ec74dcd1)] - **(SEMVER-MINOR)** **stream**: support flatMap (Benjamin Gruenbaum) [#&#8203;41612](https://github.com/nodejs/node/pull/41612)
    
  • [`16dec4268c`](https://github.com/nodejs/node/commit/16dec4268c)] - **stream**: check for null instead of falsy in loops (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`34684a1c89`](https://github.com/nodejs/node/commit/34684a1c89)] - **(SEMVER-MINOR)** **stream**: support some and every (Benjamin Gruenbaum) [#&#8203;41573](https://github.com/nodejs/node/pull/41573)
    
  • [`62e1a68077`](https://github.com/nodejs/node/commit/62e1a68077)] - **(SEMVER-MINOR)** **stream**: add toArray (Benjamin Gruenbaum) [#&#8203;41553](https://github.com/nodejs/node/pull/41553)
    
  • [`5027e94a8a`](https://github.com/nodejs/node/commit/5027e94a8a)] - **stream**: rename unknown primordial (Mohammed Keyvanzadeh) [#&#8203;40622](https://github.com/nodejs/node/pull/40622)
    
  • [`da11b95988`](https://github.com/nodejs/node/commit/da11b95988)] - **(SEMVER-MINOR)** **stream**: add forEach method (Benjamin Gruenbaum) [#&#8203;41445](https://github.com/nodejs/node/pull/41445)
    
  • [`9226322394`](https://github.com/nodejs/node/commit/9226322394)] - **stream**: avoid function call where possible (Rich Trott) [#&#8203;41534](https://github.com/nodejs/node/pull/41534)
    
  • [`573cafe29d`](https://github.com/nodejs/node/commit/573cafe29d)] - **test**: remove eslint-disable comments from fixtures (Rich Trott) [#&#8203;41859](https://github.com/nodejs/node/pull/41859)
    
  • [`0d9248fe0a`](https://github.com/nodejs/node/commit/0d9248fe0a)] - **test**: remove test-worker-memory flaky designation (Rich Trott) [#&#8203;41867](https://github.com/nodejs/node/pull/41867)
    
  • [`c694dae41c`](https://github.com/nodejs/node/commit/c694dae41c)] - **test**: enable no-empty ESLint rule (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`87902a7c17`](https://github.com/nodejs/node/commit/87902a7c17)] - **test**: avoid using Object.prototype methods directly on objects (Rich Trott) [#&#8203;41801](https://github.com/nodejs/node/pull/41801)
    
  • [`ea966404ad`](https://github.com/nodejs/node/commit/ea966404ad)] - **test**: exclude ibm i tests until we resolve (Michael Dawson) [#&#8203;41812](https://github.com/nodejs/node/pull/41812)
    
  • [`9c704b13af`](https://github.com/nodejs/node/commit/9c704b13af)] - **test**: make worker-take-heapsnapshot non-flaky (Michael Dawson) [#&#8203;41684](https://github.com/nodejs/node/pull/41684)
    
  • [`a97c817451`](https://github.com/nodejs/node/commit/a97c817451)] - **test**: mark test-fs-rmdir-recursive flaky on win (Michael Dawson) [#&#8203;41533](https://github.com/nodejs/node/pull/41533)
    
  • [`5f1a59cb41`](https://github.com/nodejs/node/commit/5f1a59cb41)] - **test**: make fs watch test more stable (Benjamin Gruenbaum) [#&#8203;41715](https://github.com/nodejs/node/pull/41715)
    
  • [`abbc06b5ab`](https://github.com/nodejs/node/commit/abbc06b5ab)] - **test**: fix typo in MessageChannel test (Tobias Nießen) [#&#8203;41746](https://github.com/nodejs/node/pull/41746)
    
  • [`94645d8f71`](https://github.com/nodejs/node/commit/94645d8f71)] - **test**: replace commented out expectations with tests (Darshan Sen) [#&#8203;41667](https://github.com/nodejs/node/pull/41667)
    
  • [`351ebf289a`](https://github.com/nodejs/node/commit/351ebf289a)] - **test**: improve stability of oom test (Benjamin Gruenbaum) [#&#8203;41681](https://github.com/nodejs/node/pull/41681)
    
  • [`0267d27a7d`](https://github.com/nodejs/node/commit/0267d27a7d)] - **test**: use Object.hasOwn() where applicable (Rich Trott) [#&#8203;41664](https://github.com/nodejs/node/pull/41664)
    
  • [`cca92107a4`](https://github.com/nodejs/node/commit/cca92107a4)] - **test**: remove unneeded test statement (Rich Trott) [#&#8203;41663](https://github.com/nodejs/node/pull/41663)
    
  • [`30df37f733`](https://github.com/nodejs/node/commit/30df37f733)] - **test**: remove error allowance in debugger test (Jithil P Ponnan) [#&#8203;41640](https://github.com/nodejs/node/pull/41640)
    
  • [`b02bf41e18`](https://github.com/nodejs/node/commit/b02bf41e18)] - **test**: add stream map tests (Benjamin Gruenbaum) [#&#8203;41642](https://github.com/nodejs/node/pull/41642)
    
  • [`12c1ac4d3b`](https://github.com/nodejs/node/commit/12c1ac4d3b)] - **test**: simplify test-gc-http-client (Luigi Pinca) [#&#8203;41620](https://github.com/nodejs/node/pull/41620)
    
  • [`9d99c24d50`](https://github.com/nodejs/node/commit/9d99c24d50)] - **test**: prepare tests for no-cond-assign ESLint rule (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`ea6c202436`](https://github.com/nodejs/node/commit/ea6c202436)] - **test**: move test-gc-http-client-onerror to sequential (Luigi Pinca) [#&#8203;41619](https://github.com/nodejs/node/pull/41619)
    
  • [`55adcb7f12`](https://github.com/nodejs/node/commit/55adcb7f12)] - **test**: fix typo in test-stream-toArray (Tobias Nießen) [#&#8203;41634](https://github.com/nodejs/node/pull/41634)
    
  • [`506a0dde0e`](https://github.com/nodejs/node/commit/506a0dde0e)] - **test**: improve test coverage of internal/worker/io (Yoshiki Kurihara) [#&#8203;41511](https://github.com/nodejs/node/pull/41511)
    
  • [`6de8e51437`](https://github.com/nodejs/node/commit/6de8e51437)] - **test**: add DataView test entry for whatwg (Mohammed Keyvanzadeh) [#&#8203;40622](https://github.com/nodejs/node/pull/40622)
    
  • [`f947f72b39`](https://github.com/nodejs/node/commit/f947f72b39)] - **test**: improve util-format code coverage (Rich Trott) [#&#8203;41572](https://github.com/nodejs/node/pull/41572)
    
  • [`38e4b11391`](https://github.com/nodejs/node/commit/38e4b11391)] - **test**: fix typo in test_js_native_api_v8 (Tobias Nießen) [#&#8203;41584](https://github.com/nodejs/node/pull/41584)
    
  • [`5e3f751260`](https://github.com/nodejs/node/commit/5e3f751260)] - **test**: add missing await in fs-rm/fs-rmdir tests (Benjamin Coe) [#&#8203;41545](https://github.com/nodejs/node/pull/41545)
    
  • [`c0aec6783a`](https://github.com/nodejs/node/commit/c0aec6783a)] - **test**: increase coverage for stream writable (Rich Trott) [#&#8203;41486](https://github.com/nodejs/node/pull/41486)
    
  • [`ef7c79822f`](https://github.com/nodejs/node/commit/ef7c79822f)] - **test**: add coverage for util.inspect() (Rich Trott) [#&#8203;41527](https://github.com/nodejs/node/pull/41527)
    
  • [`2b4e46f07d`](https://github.com/nodejs/node/commit/2b4e46f07d)] - **timers**: check for nullish instead of falsy in loops (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`0d471fb0d4`](https://github.com/nodejs/node/commit/0d471fb0d4)] - **tools**: enable no-empty ESLint rule (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831)
    
  • [`72f02d87b9`](https://github.com/nodejs/node/commit/72f02d87b9)] - **tools**: update lint-md-dependencies to rollup@2.67.0 (Node.js GitHub Bot) [#&#8203;41737](https://github.com/nodejs/node/pull/41737)
    
  • [`32cdae7f65`](https://github.com/nodejs/node/commit/32cdae7f65)] - **tools**: update doc to rehype-stringify@9.0.3 (Node.js GitHub Bot) [#&#8203;41854](https://github.com/nodejs/node/pull/41854)
    
  • [`e6a1896ec1`](https://github.com/nodejs/node/commit/e6a1896ec1)] - **tools**: update eslint to 8.8.0 (Node.js GitHub Bot) [#&#8203;41738](https://github.com/nodejs/node/pull/41738)
    
  • [`3190e365f0`](https://github.com/nodejs/node/commit/3190e365f0)] - **tools**: use Set instead of { \[key]: true } object (Tobias Nießen) [#&#8203;41695](https://github.com/nodejs/node/pull/41695)
    
  • [`3f4ce07be9`](https://github.com/nodejs/node/commit/3f4ce07be9)] - **tools**: add compile_commands to ignore file (Yash Ladha) [#&#8203;41580](https://github.com/nodejs/node/pull/41580)
    
  • [`5fe7cfabaa`](https://github.com/nodejs/node/commit/5fe7cfabaa)] - **tools**: use Set instead of { \[key]: true } object (Tobias Nießen) [#&#8203;41675](https://github.com/nodejs/node/pull/41675)
    
  • [`d33d1899c4`](https://github.com/nodejs/node/commit/d33d1899c4)] - **tools**: fix typo in `tools/code_cache/README.md` (Tobias Nießen) [#&#8203;41657](https://github.com/nodejs/node/pull/41657)
    
  • [`ae7df178fd`](https://github.com/nodejs/node/commit/ae7df178fd)] - **tools**: enable no-cond-assign-ESLint rule (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`9202b86814`](https://github.com/nodejs/node/commit/9202b86814)] - **tools**: update lint-md-dependencies to rollup@2.65.0 (Node.js GitHub Bot) [#&#8203;41638](https://github.com/nodejs/node/pull/41638)
    
  • [`57ada37a1f`](https://github.com/nodejs/node/commit/57ada37a1f)] - **tools**: increase maximum line length to 120 characters (Rich Trott) [#&#8203;41586](https://github.com/nodejs/node/pull/41586)
    
  • [`3084dff702`](https://github.com/nodejs/node/commit/3084dff702)] - **tools**: add missing `.PHONY` and `.NOTPARALLEL` targets in `Makefile` (Antoine du Hamel) [#&#8203;41515](https://github.com/nodejs/node/pull/41515)
    
  • [`544267feb2`](https://github.com/nodejs/node/commit/544267feb2)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;41440](https://github.com/nodejs/node/pull/41440)
    
  • [`127d2fae62`](https://github.com/nodejs/node/commit/127d2fae62)] - **tools**: bump eslint from 8.6.0 to 8.7.0 (Rich Trott) [#&#8203;41570](https://github.com/nodejs/node/pull/41570)
    
  • [`ad5d7c7b06`](https://github.com/nodejs/node/commit/ad5d7c7b06)] - **tools**: update doc to highlight.js@11.4.0 to-vfile@7.2.3 (Node.js GitHub Bot) [#&#8203;41441](https://github.com/nodejs/node/pull/41441)
    
  • [`34dfc60742`](https://github.com/nodejs/node/commit/34dfc60742)] - **tools,test**: enable no-prototype-builtins (Rich Trott) [#&#8203;41801](https://github.com/nodejs/node/pull/41801)
    
  • [`aee74c8156`](https://github.com/nodejs/node/commit/aee74c8156)] - **util**: use hasOwnProperty() primordial (Rich Trott) [#&#8203;41692](https://github.com/nodejs/node/pull/41692)
    
  • [`2b082def2e`](https://github.com/nodejs/node/commit/2b082def2e)] - **util**: remove unused fast path in internal debuglog (Rich Trott) [#&#8203;41605](https://github.com/nodejs/node/pull/41605)
    
  • [`0e35d01a4a`](https://github.com/nodejs/node/commit/0e35d01a4a)] - **util**: check for null instead of flasy in loop (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614)
    
  • [`869cbb7b25`](https://github.com/nodejs/node/commit/869cbb7b25)] - **(SEMVER-MINOR)** **worker**: graduate get/setEnvironmentData APIs (James M Snell) [#&#8203;41272](https://github.com/nodejs/node/pull/41272)
    
    

v17.4.0

Compare Source

Notable Changes
  • [`ef6f98c2e3`](https://github.com/nodejs/node/commit/ef6f98c2e3)] - **(SEMVER-MINOR)** **child_process**: add support for URL to `cp.fork` (Antoine du Hamel) [#&#8203;41225](https://github.com/nodejs/node/pull/41225)
    
  • [`d62fe315c2`](https://github.com/nodejs/node/commit/d62fe315c2)] - **(SEMVER-MINOR)** **crypto**: alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) [#&#8203;41266](https://github.com/nodejs/node/pull/41266)
    
  • [`fcb37e9ce5`](https://github.com/nodejs/node/commit/fcb37e9ce5)] - **doc**: add Mesteery to collaborators (Mestery) [#&#8203;41543](https://github.com/nodejs/node/pull/41543)
    
  • [`4079fc42b7`](https://github.com/nodejs/node/commit/4079fc42b7)] - **(SEMVER-MINOR)** **events**: graduate capturerejections to supported (James M Snell) [#&#8203;41267](https://github.com/nodejs/node/pull/41267)
    
  • [`fe21607901`](https://github.com/nodejs/node/commit/fe21607901)] - **(SEMVER-MINOR)** **events**: add EventEmitterAsyncResource to core (James M Snell) [#&#8203;41246](https://github.com/nodejs/node/pull/41246)
    
  • [`6d8eb6ace6`](https://github.com/nodejs/node/commit/6d8eb6ace6)] - **(SEMVER-MINOR)** **loader**: return package format from defaultResolve if known (Gabriel Bota) [#&#8203;40980](https://github.com/nodejs/node/pull/40980)
    
  • [`27c619140a`](https://github.com/nodejs/node/commit/27c619140a)] - **(SEMVER-MINOR)** **perf_hooks**: multiple fixes for Histogram (James M Snell) [#&#8203;41153](https://github.com/nodejs/node/pull/41153)
    
  • [`09c25bb224`](https://github.com/nodejs/node/commit/09c25bb224)] - **(SEMVER-MINOR)** **stream**: add filter method to readable (Benjamin Gruenbaum, Robert Nagy) [#&#8203;41354](https://github.com/nodejs/node/pull/41354)
    
  • [`1150963217`](https://github.com/nodejs/node/commit/1150963217)] - **(SEMVER-MINOR)** **stream**: add isReadable helper (Robert Nagy) [#&#8203;41199](https://github.com/nodejs/node/pull/41199)
    
  • [`9f5a873965`](https://github.com/nodejs/node/commit/9f5a873965)] - **(SEMVER-MINOR)** **stream**: add map method to Readable (Benjamin Gruenbaum, Robert Nagy) [#&#8203;40815](https://github.com/nodejs/node/pull/40815)
    
    
Commits
  • [`314102b14d`](https://github.com/nodejs/node/commit/314102b14d)] - **async_hooks**: add missing initialization (Michael Dawson) [#&#8203;41288](https://github.com/nodejs/node/pull/41288)
    
  • [`56345a3f63`](https://github.com/nodejs/node/commit/56345a3f63)] - **async_hooks**: fix AsyncLocalStorage in unhandledRejection cases (Bradley Farias) [#&#8203;41202](https://github.com/nodejs/node/pull/41202)
    
  • [`fa84353952`](https://github.com/nodejs/node/commit/fa84353952)] - **benchmark**: simplify http benchmarker regular expression (Rich Trott) [#&#8203;38206](https://github.com/nodejs/node/pull/38206)
    
  • [`88d760c559`](https://github.com/nodejs/node/commit/88d760c559)] - **benchmark**: fix benchmark/run.js handling of --set (Rich Trott) [#&#8203;41334](https://github.com/nodejs/node/pull/41334)
    
  • [`dcf1ea0a3f`](https://github.com/nodejs/node/commit/dcf1ea0a3f)] - **benchmark,test**: use Object.hasOwn() where applicable (Rich Trott) [#&#8203;41229](https://github.com/nodejs/node/pull/41229)
    
  • [`4958c800da`](https://github.com/nodejs/node/commit/4958c800da)] - **build**: fix npm version detection (Michaël Zasso) [#&#8203;41575](https://github.com/nodejs/node/pull/41575)
    
  • [`e8538c3751`](https://github.com/nodejs/node/commit/e8538c3751)] - **build**: fix node build failures in WSL Ubuntu (MrJithil) [#&#8203;41476](https://github.com/nodejs/node/pull/41476)
    
  • [`3d88ea195e`](https://github.com/nodejs/node/commit/3d88ea195e)] - **build**: fix workflow access to git history (Rich Trott) [#&#8203;41472](https://github.com/nodejs/node/pull/41472)
    
  • [`b0f0ad1004`](https://github.com/nodejs/node/commit/b0f0ad1004)] - **build**: start build on z/OS (alexcfyung) [#&#8203;41273](https://github.com/nodejs/node/pull/41273)
    
  • [`80a3766ac7`](https://github.com/nodejs/node/commit/80a3766ac7)] - **build**: use list for mutable retval rather than tuple (Rich Trott) [#&#8203;41372](https://github.com/nodejs/node/pull/41372)
    
  • [`afe1e00509`](https://github.com/nodejs/node/commit/afe1e00509)] - **build**: remove Python 2 workaround (Rich Trott) [#&#8203;41357](https://github.com/nodejs/node/pull/41357)
    
  • [`011c5f6498`](https://github.com/nodejs/node/commit/011c5f6498)] - **build**: improve readability of texts in workflows (Mestery) [#&#8203;40988](https://github.com/nodejs/node/pull/40988)
    
  • [`2233f31069`](https://github.com/nodejs/node/commit/2233f31069)] - **build,tools,win**: trim unused VCBUILD_PYTHON_LOCATION variable (David Sanders) [#&#8203;41235](https://github.com/nodejs/node/pull/41235)
    
  • [`d9465ae614`](https://github.com/nodejs/node/commit/d9465ae614)] - **child_process**: queue pending messages (Erick Wendel) [#&#8203;41221](https://github.com/nodejs/node/pull/41221)
    
  • [`ed41fd110d`](https://github.com/nodejs/node/commit/ed41fd110d)] - **child_process**: revise argument processing (Rich Trott) [#&#8203;41280](https://github.com/nodejs/node/pull/41280)
    
  • [`ef6f98c2e3`](https://github.com/nodejs/node/commit/ef6f98c2e3)] - **(SEMVER-MINOR)** **child_process**: add support for URL to `cp.fork` (Antoine du Hamel) [#&#8203;41225](https://github.com/nodejs/node/pull/41225)
    
  • [`d62fe315c2`](https://github.com/nodejs/node/commit/d62fe315c2)] - **(SEMVER-MINOR)** **crypto**: alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) [#&#8203;41266](https://github.com/nodejs/node/pull/41266)
    
  • [`8ea56a9606`](https://github.com/nodejs/node/commit/8ea56a9606)] - **crypto**: fix error capture when loading engine (Tobias Nießen) [#&#8203;41187](https://github.com/nodejs/node/pull/41187)
    
  • [`f5b8aee1a1`](https://github.com/nodejs/node/commit/f5b8aee1a1)] - **deps**: upgrade npm to 8.3.1 (npm-robot) [#&#8203;41503](https://github.com/nodejs/node/pull/41503)
    
  • [`af3acecd7e`](https://github.com/nodejs/node/commit/af3acecd7e)] - **deps**: V8: cherry-pick [`3b6b21f`](https://github.com/nodejs/node/commit/3b6b21f595f6) (Michaël Zasso) [#&#8203;41457](https://github.com/nodejs/node/pull/41457)
    
  • [`02ca5d7c7c`](https://github.com/nodejs/node/commit/02ca5d7c7c)] - **deps**: upgrade to libuv 1.43.0 (Colin Ihrig) [#&#8203;41398](https://github.com/nodejs/node/pull/41398)
    
  • [`48e4780fd7`](https://github.com/nodejs/node/commit/48e4780fd7)] - **doc**: remove statement about client private keys (Tobias Nießen) [#&#8203;41505](https://github.com/nodejs/node/pull/41505)
    
  • [`ba7160e815`](https://github.com/nodejs/node/commit/ba7160e815)] - **doc**: fix typo in `onboarding.md` (Antoine du Hamel) [#&#8203;41544](https://github.com/nodejs/node/pull/41544)
    
  • [`fcb37e9ce5`](https://github.com/nodejs/node/commit/fcb37e9ce5)] - **doc**: add Mesteery to collaborators (Mestery) [#&#8203;41543](https://github.com/nodejs/node/pull/41543)
    
  • [`abbfed8789`](https://github.com/nodejs/node/commit/abbfed8789)] - **doc**: add missing word in readable.read() text (Rich Trott) [#&#8203;41524](https://github.com/nodejs/node/pull/41524)
    
  • [`712dfdc11f`](https://github.com/nodejs/node/commit/712dfdc11f)] - **doc**: add missing YAML tag in `esm.md` (Antoine du Hamel) [#&#8203;41516](https://github.com/nodejs/node/pull/41516)
    
  • [`f443a4e8fa`](https://github.com/nodejs/node/commit/f443a4e8fa)] - **doc**: expand fs.access() mode parameter docs (Colin Ihrig) [#&#8203;41484](https://github.com/nodejs/node/pull/41484)
    
  • [`5c0c459976`](https://github.com/nodejs/node/commit/5c0c459976)] - **doc**: correct checkHost behavior with wildcards etc (Tobias Nießen) [#&#8203;41468](https://github.com/nodejs/node/pull/41468)
    
  • [`c632241440`](https://github.com/nodejs/node/commit/c632241440)] - **doc**: remove extraneous colon in legacy subject (Tobias Nießen) [#&#8203;41477](https://github.com/nodejs/node/pull/41477)
    
  • [`b7b0631b10`](https://github.com/nodejs/node/commit/b7b0631b10)] - **doc**: remove SameValue comparison reference (Rich Trott) [#&#8203;41460](https://github.com/nodejs/node/pull/41460)
    
  • [`524103d6bf`](https://github.com/nodejs/node/commit/524103d6bf)] - **doc**: update mailmap entries for mhdawson (Michael Dawson) [#&#8203;41437](https://github.com/nodejs/node/pull/41437)
    
  • [`62aa190c01`](https://github.com/nodejs/node/commit/62aa190c01)] - **doc**: add guidance on order vulns are listed in (Michael Dawson) [#&#8203;41429](https://github.com/nodejs/node/pull/41429)
    
  • [`d721a758b2`](https://github.com/nodejs/node/commit/d721a758b2)] - **doc**: update output in inspector examples (David Sanders) [#&#8203;41390](https://github.com/nodejs/node/pull/41390)
    
  • [`60025bde16`](https://github.com/nodejs/node/commit/60025bde16)] - **doc**: add note regarding unfinished TLA (Antoine du Hamel) [#&#8203;41434](https://github.com/nodejs/node/pull/41434)
    
  • [`10bdb5969e`](https://github.com/nodejs/node/commit/10bdb5969e)] - **doc**: add reference for `===` operator in assert.md (Rich Trott) [#&#8203;41442](https://github.com/nodejs/node/pull/41442)
    
  • [`edc6a7af42`](https://github.com/nodejs/node/commit/edc6a7af42)] - **doc**: clarify `uncaughtException` `origin` for ESM (Antoine du Hamel) [#&#8203;41339](https://github.com/nodejs/node/pull/41339)
    
  • [`4a369d03b4`](https://github.com/nodejs/node/commit/4a369d03b4)] - **doc**: revise HTTPRequestOptions text (Rich Trott) [#&#8203;41407](https://github.com/nodejs/node/pull/41407)
    
  • [`f43bfe2e16`](https://github.com/nodejs/node/commit/f43bfe2e16)] - **doc**: add reference for == and != operators (Rich Trott) [#&#8203;41413](https://github.com/nodejs/node/pull/41413)
    
  • [`d3111bf0cc`](https://github.com/nodejs/node/commit/d3111bf0cc)] - **doc**: add [@&#8203;RaisinTen](https://github.com/RaisinTen) to the TSC (Michael Dawson) [#&#8203;41419](https://github.com/nodejs/node/pull/41419)
    
  • [`e6bed4e972`](https://github.com/nodejs/node/commit/e6bed4e972)] - **doc**: update Abstract Equality Comparison text in assert.md (Rich Trott) [#&#8203;41375](https://github.com/nodejs/node/pull/41375)
    
  • [`19db19bb80`](https://github.com/nodejs/node/commit/19db19bb80)] - **doc**: fix example commands for `REPLACEME` updates (Richard Lau) [#&#8203;41269](https://github.com/nodejs/node/pull/41269)
    
  • [`16c0bea91d`](https://github.com/nodejs/node/commit/16c0bea91d)] - **doc**: document that `require.main` may be `undefined` (Antoine du Hamel) [#&#8203;41384](https://github.com/nodejs/node/pull/41384)
    
  • [`014d4836ec`](https://github.com/nodejs/node/commit/014d4836ec)] - **doc**: clarify entry point behavior when using loader hooks (Antoine du Hamel) [#&#8203;41304](https://github.com/nodejs/node/pull/41304)
    
  • [`6460b1b32d`](https://github.com/nodejs/node/commit/6460b1b32d)] - **doc**: clarify `require` behavior with non `.js` extensions (Antoine du Hamel) [#&#8203;41345](https://github.com/nodejs/node/pull/41345)
    
  • [`0d18a8c232`](https://github.com/nodejs/node/commit/0d18a8c232)] - **doc**: revise frozen-intrinsics text (Rich Trott) [#&#8203;41342](https://github.com/nodejs/node/pull/41342)
    
  • [`c267bb2192`](https://github.com/nodejs/node/commit/c267bb2192)] - **doc**: fix example description for worker_threads (Dmitry Petrov) [#&#8203;41341](https://github.com/nodejs/node/pull/41341)
    
  • [`ffe17a84f2`](https://github.com/nodejs/node/commit/ffe17a84f2)] - **doc**: make pull-request guide default branch agnostic (Antoine du Hamel) [#&#8203;41299](https://github.com/nodejs/node/pull/41299)
    
  • [`5cfc547997`](https://github.com/nodejs/node/commit/5cfc547997)] - **doc**: fix sync comment in observer snippet (Eric Jacobson) [#&#8203;41262](https://github.com/nodejs/node/pull/41262)
    
  • [`3a80104b29`](https://github.com/nodejs/node/commit/3a80104b29)] - **doc**: remove section about amending commits in PR guide (Thiago Santos) [#&#8203;41287](https://github.com/nodejs/node/pull/41287)
    
  • [`23f97ec04e`](https://github.com/nodejs/node/commit/23f97ec04e)] - **doc**: remove legacy in-page links in v8.md (Rich Trott) [#&#8203;41291](https://github.com/nodejs/node/pull/41291)
    
  • [`e819685cec`](https://github.com/nodejs/node/commit/e819685cec)] - **doc**: include stack trace difference in ES modules (Marcos Bérgamo) [#&#8203;41157](https://github.com/nodejs/node/pull/41157)
    
  • [`dac8407944`](https://github.com/nodejs/node/commit/dac8407944)] - **doc**: fix example in node-api docs (Michael Dawson) [#&#8203;41264](https://github.com/nodejs/node/pull/41264)
    
  • [`29563abd85`](https://github.com/nodejs/node/commit/29563abd85)] - **doc**: add usage recommendation for writable.\_destroy (Rafael Gonzaga) [#&#8203;41040](https://github.com/nodejs/node/pull/41040)
    
  • [`e27e8272f7`](https://github.com/nodejs/node/commit/e27e8272f7)] - **doc**: make function signature comply with JSDoc comment (Rich Trott) [#&#8203;41242](https://github.com/nodejs/node/pull/41242)
    
  • [`d83a02994c`](https://github.com/nodejs/node/commit/d83a02994c)] - **doc**: align maxHeaderSize default with current value (Gil Pedersen) [#&#8203;41183](https://github.com/nodejs/node/pull/41183)
    
  • [`730e25d7dd`](https://github.com/nodejs/node/commit/730e25d7dd)] - **doc**: add unhandledRejection to strict mode (Colin Ihrig) [#&#8203;41194](https://github.com/nodejs/node/pull/41194)
    
  • [`74742c3618`](https://github.com/nodejs/node/commit/74742c3618)] - **doc**: adding estimated execution time (mawaregetsuka) [#&#8203;41142](https://github.com/nodejs/node/pull/41142)
    
  • [`34ef5a7d4d`](https://github.com/nodejs/node/commit/34ef5a7d4d)] - **doc**: fix syntax error in nested conditions example (Mateusz Burzyński) [#&#8203;41205](https://github.com/nodejs/node/pull/41205)
    
  • [`c9a4603913`](https://github.com/nodejs/node/commit/c9a4603913)] - **esm**: make `process.exit()` default to exit code 0 (Gang Chen) [#&#8203;41388](https://github.com/nodejs/node/pull/41388)
    
  • [`8a94ca7a69`](https://github.com/nodejs/node/commit/8a94ca7a69)] - **esm**: refactor esm tests out of test/message (Geoffrey Booth) [#&#8203;41352](https://github.com/nodejs/node/pull/41352)
    
  • [`5ebe086ea6`](https://github.com/nodejs/node/commit/5ebe086ea6)] - **esm**: reconcile JSDoc vs. actual parameter name (Rich Trott) [#&#8203;41238](https://github.com/nodejs/node/pull/41238)
    
  • [`9fe304b8e8`](https://github.com/nodejs/node/commit/9fe304b8e8)] - **events**: clarify JSDoc entries (Rich Trott) [#&#8203;41311](https://github.com/nodejs/node/pull/41311)
    
  • [`4079fc42b7`](https://github.com/nodejs/node/commit/4079fc42b7)] - **(SEMVER-MINOR)** **events**: graduate capturerejections to supported (James M Snell) [#&#8203;41267](https://github.com/nodejs/node/pull/41267)
    
  • [`e3a0a9cb3a`](https://github.com/nodejs/node/commit/e3a0a9cb3a)] - **events**: add jsdoc details for Event and EventTarget (James M Snell) [#&#8203;41274](https://github.com/nodejs/node/pull/41274)
    
  • [`fe21607901`](https://github.com/nodejs/node/commit/fe21607901)] - **(SEMVER-MINOR)** **events**: add EventEmitterAsyncResource to core (James M Snell) [#&#8203;41246](https://github.com/nodejs/node/pull/41246)
    
  • [`d4a6f2caf1`](https://github.com/nodejs/node/commit/d4a6f2caf1)] - **fs**: use async directory processing in cp() (Colin Ihrig) [#&#8203;41351](https://github.com/nodejs/node/pull/41351)
    
  • [`0951bd94db`](https://github.com/nodejs/node/commit/0951bd94db)] - **fs**: correct param names in JSDoc comments (Rich Trott) [#&#8203;41237](https://github.com/nodejs/node/pull/41237)
    
  • [`1d75436a1c`](https://github.com/nodejs/node/commit/1d75436a1c)] - **http**: remove duplicate code (Shaw) [#&#8203;39239](https://github.com/nodejs/node/pull/39239)
    
  • [`0aacd4926d`](https://github.com/nodejs/node/commit/0aacd4926d)] - **http2**: handle existing socket data when creating HTTP/2 server sessions (Tim Perry) [#&#8203;41185](https://github.com/nodejs/node/pull/41185)
    
  • [`24fbbf2747`](https://github.com/nodejs/node/commit/24fbbf2747)] - **lib**: remove spurious JSDoc entry (Rich Trott) [#&#8203;41240](https://github.com/nodejs/node/pull/41240)
    
  • [`e457ec05d6`](https://github.com/nodejs/node/commit/e457ec05d6)] - **lib**: fix checking syntax of esm module (Qingyu Deng) [#&#8203;41198](https://github.com/nodejs/node/pull/41198)
    
  • [`f176124e8b`](https://github.com/nodejs/node/commit/f176124e8b)] - **lib,tools**: remove empty lines between JSDoc tags (Rich Trott) [#&#8203;41147](https://github.com/nodejs/node/pull/41147)
    
  • [`68fd2ac999`](https://github.com/nodejs/node/commit/68fd2ac999)] - **loader**: fix package resolution for edge case (Gabriel Bota) [#&#8203;41218](https://github.com/nodejs/node/pull/41218)
    
  • [`6d8eb6ace6`](https://github.com/nodejs/node/commit/6d8eb6ace6)] - **(SEMVER-MINOR)** **loader**: return package format from defaultResolve if known (Gabriel Bota) [#&#8203;40980](https://github.com/nodejs/node/pull/40980)
    
  • [`a6146c7e27`](https://github.com/nodejs/node/commit/a6146c7e27)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41456](https://github.com/nodejs/node/pull/41456)
    
  • [`07353e9b8b`](https://github.com/nodejs/node/commit/07353e9b8b)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41475](https://github.com/nodejs/node/pull/41475)
    
  • [`e1ff4521d7`](https://github.com/nodejs/node/commit/e1ff4521d7)] - **meta**: correct my name in AUTHORS (Jacob Smith) [#&#8203;41444](https://github.com/nodejs/node/pull/41444)
    
  • [`da1d5d6563`](https://github.com/nodejs/node/commit/da1d5d6563)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41449](https://github.com/nodejs/node/pull/41449)
    
  • [`0f9afa58d5`](https://github.com/nodejs/node/commit/0f9afa58d5)] - **meta**: add required fields in issue templates (Rich Trott) [#&#8203;41378](https://github.com/nodejs/node/pull/41378)
    
  • [`da04408075`](https://github.com/nodejs/node/commit/da04408075)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41374](https://github.com/nodejs/node/pull/41374)
    
  • [`1f6c4e819b`](https://github.com/nodejs/node/commit/1f6c4e819b)] - **meta**: replace API docs issue template with form (Rich Trott) [#&#8203;41348](https://github.com/nodejs/node/pull/41348)
    
  • [`253c3e5488`](https://github.com/nodejs/node/commit/253c3e5488)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41336](https://github.com/nodejs/node/pull/41336)
    
  • [`3e188cacc2`](https://github.com/nodejs/node/commit/3e188cacc2)] - **meta**: replace feature request template with form (Rich Trott) [#&#8203;41317](https://github.com/nodejs/node/pull/41317)
    
  • [`e339220511`](https://github.com/nodejs/node/commit/e339220511)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41322](https://github.com/nodejs/node/pull/41322)
    
  • [`d0d595f8f2`](https://github.com/nodejs/node/commit/d0d595f8f2)] - **meta**: update node-api team name (Richard Lau) [#&#8203;41268](https://github.com/nodejs/node/pull/41268)
    
  • [`a53fa2010b`](https://github.com/nodejs/node/commit/a53fa2010b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41248](https://github.com/nodejs/node/pull/41248)
    
  • [`edefb41ec1`](https://github.com/nodejs/node/commit/edefb41ec1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41234](https://github.com/nodejs/node/pull/41234)
    
  • [`6da7909797`](https://github.com/nodejs/node/commit/6da7909797)] - **meta**: remove community-committee from CODEOWNERS (Rich Trott) [#&#8203;41169](https://github.com/nodejs/node/pull/41169)
    
  • [`5fe011a24d`](https://github.com/nodejs/node/commit/5fe011a24d)] - **node-api**: add missing initialization of last error (Michael Dawson) [#&#8203;41290](https://github.com/nodejs/node/pull/41290)
    
  • [`27c619140a`](https://github.com/nodejs/node/commit/27c619140a)] - **(SEMVER-MINOR)** **perf_hooks**: multiple fixes for Histogram (James M Snell) [#&#8203;41153](https://github.com/nodejs/node/pull/41153)
    
  • [`e60187d8ab`](https://github.com/nodejs/node/commit/e60187d8ab)] - **policy**: add missing JSDoc [@&#8203;param](https://github.com/param) entry (Rich Trott) [#&#8203;41239](https://github.com/nodejs/node/pull/41239)
    
  • [`ec9071f55d`](https://github.com/nodejs/node/commit/ec9071f55d)] - **src**: use `std::optional` for Worker thread id (Anna Henningsen) [#&#8203;41453](https://github.com/nodejs/node/pull/41453)
    
  • [`6aec92f959`](https://github.com/nodejs/node/commit/6aec92f959)] - **src**: gracefully handle errors in GetX509NameObject (Tobias Nießen) [#&#8203;41490](https://github.com/nodejs/node/pull/41490)
    
  • [`7ac126b75c`](https://github.com/nodejs/node/commit/7ac126b75c)] - **src**: fix out-of-bounds check of serialization indices (JoostK) [#&#8203;41452](https://github.com/nodejs/node/pull/41452)
    
  • [`93b3664b9a`](https://github.com/nodejs/node/commit/93b3664b9a)] - **src**: do IWYU for some STL includes (David Sanders) [#&#8203;41236](https://github.com/nodejs/node/pull/41236)
    
  • [`337ebfcd53`](https://github.com/nodejs/node/commit/337ebfcd53)] - **src**: split out async stack corruption detection from inline fn (Anna Henningsen) [#&#8203;41331](https://github.com/nodejs/node/pull/41331)
    
  • [`250e197a62`](https://github.com/nodejs/node/commit/250e197a62)] - **src**: store native async execution resources as `v8::Local` (Anna Henningsen) [#&#8203;41331](https://github.com/nodejs/node/pull/41331)
    
  • [`6187e81a8e`](https://github.com/nodejs/node/commit/6187e81a8e)] - **src**: guard slightly costly check in MakeCallback more strongly (Anna Henningsen) [#&#8203;41331](https://github.com/nodejs/node/pull/41331)
    
  • [`51d86fe6a0`](https://github.com/nodejs/node/commit/51d86fe6a0)] - **stream**: remove always-false condition check (Rich Trott) [#&#8203;41488](https://github.com/nodejs/node/pull/41488)
    
  • [`b08138f367`](https://github.com/nodejs/node/commit/b08138f367)] - **stream**: fix error-path function call (Rich Trott) [#&#8203;41433](https://github.com/nodejs/node/pull/41433)
    
  • [`d79f8c2987`](https://github.com/nodejs/node/commit/d79f8c2987)] - **stream**: remove unused function argument (Rich Trott) [#&#8203;41403](https://github.com/nodejs/node/pull/41403)
    
  • [`09c25bb224`](https://github.com/nodejs/node/commit/09c25bb224)] - **(SEMVER-MINOR)** **stream**: add filter method to readable (Benjamin Gruenbaum) [#&#8203;41354](https://github.com/nodejs/node/pull/41354)
    
  • [`1150963217`](https://github.com/nodejs/node/commit/1150963217)] - **(SEMVER-MINOR)** **stream**: add isReadable helper (Robert Nagy) [#&#8203;41199](https://github.com/nodejs/node/pull/41199)
    
  • [`9f5a873965`](https://github.com/nodejs/node/commit/9f5a873965)] - **(SEMVER-MINOR)** **stream**: add map method to Readable (Benjamin Gruenbaum) [#&#8203;40815](https://github.com/nodejs/node/pull/40815)
    
  • [`3dc65646c8`](https://github.com/nodejs/node/commit/3dc65646c8)] - **stream**: fix enqueue race condition on esm modules (Rafael Gonzaga) [#&#8203;40901](https://github.com/nodejs/node/pull/40901)
    
  • [`09f2fd36a4`](https://github.com/nodejs/node/commit/09f2fd36a4)] - **test**: improve test coverage of dns/promises (Yoshiki Kurihara) [#&#8203;41425](https://github.com/nodejs/node/pull/41425)
    
  • [`106ef0cef4`](https://github.com/nodejs/node/commit/106ef0cef4)] - **test**: remove broken wiki link from test/common doc (Yoshiki Kurihara) [#&#8203;41426](https://github.com/nodejs/node/pull/41426)
    
  • [`9d8d7c63cb`](https://github.com/nodejs/node/commit/9d8d7c63cb)] - **test**: do not OR F_OK in fs.access() test (Colin Ihrig) [#&#8203;41484](https://github.com/nodejs/node/pull/41484)
    
  • [`3e2154deda`](https://github.com/nodejs/node/commit/3e2154deda)] - **test**: mark test-performance-eventloopdelay flaky (Michael Dawson) [#&#8203;41409](https://github.com/nodejs/node/pull/41409)
    
  • [`e808ee68d0`](https://github.com/nodejs/node/commit/e808ee68d0)] - **test**: mark test-repl-sigint-nested-eval as flaky (Michael Dawson) [#&#8203;41302](https://github.com/nodejs/node/pull/41302)
    
  • [`f97f6c585d`](https://github.com/nodejs/node/commit/f97f6c585d)] - **test**: use spawnSync() full name in test-stdio-pipe-stderr (Rich Trott) [#&#8203;41332](https://github.com/nodejs/node/pull/41332)
    
  • [`75c565bf18`](https://github.com/nodejs/node/commit/75c565bf18)] - **test**: improve expectWarning error message (Rich Trott) [#&#8203;41326](https://github.com/nodejs/node/pull/41326)
    
  • [`c136d597f0`](https://github.com/nodejs/node/commit/c136d597f0)] - **test**: use spawnSync() full name (Rich Trott) [#&#8203;41327](https://github.com/nodejs/node/pull/41327)
    
  • [`b2a87f770d`](https://github.com/nodejs/node/commit/b2a87f770d)] - **test**: add comments explaining \_setSimultaneousAccepts deprecation tests (Yoshiki Kurihara) [#&#8203;41307](https://github.com/nodejs/node/pull/41307)
    
  • [`fac0871102`](https://github.com/nodejs/node/commit/fac0871102)] - **test**: mark test-worker-take-heapsnapshot flaky (Michael Dawson) [#&#8203;41253](https://github.com/nodejs/node/pull/41253)
    
  • [`90617b9303`](https://github.com/nodejs/node/commit/90617b9303)] - **test**: mark wpt/test-user-timing test flaky (Michael Dawson) [#&#8203;41203](https://github.com/nodejs/node/pull/41203)
    
  • [`8f08328a01`](https://github.com/nodejs/node/commit/8f08328a01)] - **test**: correct param name in JSDoc comment (Rich Trott) [#&#8203;41241](https://github.com/nodejs/node/pull/41241)
    
  • [`367ab2a55e`](https://github.com/nodejs/node/commit/367ab2a55e)] - **test**: mark test-crypto-keygen slow on windows (Michael Dawson) [#&#8203;41207](https://github.com/nodejs/node/pull/41207)
    
  • [`f067876338`](https://github.com/nodejs/node/commit/f067876338)] - **test**: improve test coverage of dns/promises (Yoshiki Kurihara) [#&#8203;41133](https://github.com/nodejs/node/pull/41133)
    
  • [`2e92f6f5d9`](https://github.com/nodejs/node/commit/2e92f6f5d9)] - **timers**: use ref counts to count timers (Darshan Sen) [#&#8203;41231](https://github.com/nodejs/node/pull/41231)
    
  • [`3c8b25bec8`](https://github.com/nodejs/node/commit/3c8b25bec8)] - **tls**: use optional chaining to simplify checks (Antoine du Hamel) [#&#8203;41337](https://github.com/nodejs/node/pull/41337)
    
  • [`a11ff31bca`](https://github.com/nodejs/node/commit/a11ff31bca)] - **tls**: permit null as a pfx value (CallMeLaNN) [#&#8203;41170](https://github.com/nodejs/node/pull/41170)
    
  • [`5129b7c802`](https://github.com/nodejs/node/commit/5129b7c802)] - **tools**: fix small not-quite-a-bug in find-inactive-tsc.mjs (Rich Trott) [#&#8203;41469](https://github.com/nodejs/node/pull/41469)
    
  • [`258ee4ba64`](https://github.com/nodejs/node/commit/258ee4ba64)] - **tools**: enable ESLint recommended configuration (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463)
    
  • [`090a674a81`](https://github.com/nodejs/node/commit/090a674a81)] - **tools**: enable ESLint no-constant-condition rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463)
    
  • [`1f4369a106`](https://github.com/nodejs/node/commit/1f4369a106)] - **tools**: enable ESLint require-yield rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463)
    
  • [`8090ce7a6c`](https://github.com/nodejs/node/commit/8090ce7a6c)] - **tools**: enable ESLint no-sparse-arrays rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463)
    
  • [`afa4f37faf`](https://github.com/nodejs/node/commit/afa4f37faf)] - **tools**: enable ESLint no-loss-of-precision rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463)
    
  • [`ec337b2019`](https://github.com/nodejs/node/commit/ec337b2019)] - **tools**: replace for loop with map() (Rich Trott) [#&#8203;41451](https://github.com/nodejs/node/pull/41451)
    
  • [`c91ac205a5`](https://github.com/nodejs/node/commit/c91ac205a5)] - **tools**: use GITHUB_ACTIONS env var in inactivity scripts (Rich Trott) [#&#8203;41422](https://github.com/nodejs/node/pull/41422)
    
  • [`4a57d476a8`](https://github.com/nodejs/node/commit/4a57d476a8)] - **tools**: replace while+exec() with matchAll() (Rich Trott) [#&#8203;41406](https://github.com/nodejs/node/pull/41406)
    
  • [`583f8d969a`](https://github.com/nodejs/node/commit/583f8d969a)] - **tools**: fix argv bug in find-inactive-tsc.mjs (Rich Trott) [#&#8203;41394](https://github.com/nodejs/node/pull/41394)
    
  • [`dcada80f30`](https://github.com/nodejs/node/commit/dcada80f30)] - **tools**: remove conditional assignment in custom ESLint rule (Rich Trott) [#&#8203;41325](https://github.com/nodejs/node/pull/41325)
    
  • [`e15e1cb030`](https://github.com/nodejs/node/commit/e15e1cb030)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;13](https://github.com/13).1.2 (Node.js GitHub Bot) [#&#8203;41369](https://github.com/nodejs/node/pull/41369)
    
  • [`07683021b7`](https://github.com/nodejs/node/commit/07683021b7)] - **tools**: update doc to rehype-raw@6.1.1 (Node.js GitHub Bot) [#&#8203;41367](https://github.com/nodejs/node/pull/41367)
    
  • [`bd8b95a5e8`](https://github.com/nodejs/node/commit/bd8b95a5e8)] - **tools**: remove last of error-masking in commit-queue.sh (Rich Trott) [#&#8203;41356](https://github.com/nodejs/node/pull/41356)
    
  • [`9284d24df6`](https://github.com/nodejs/node/commit/9284d24df6)] - **tools**: update eslint to 8.6.0 (Node.js GitHub Bot) [#&#8203;41368](https://github.com/nodejs/node/pull/41368)
    
  • [`5fc886f68e`](https://github.com/nodejs/node/commit/5fc886f68e)] - **tools**: do not mask errors on multiple commit retrieval (Rich Trott) [#&#8203;41340](https://github.com/nodejs/node/pull/41340)
    
  • [`0ca7cda962`](https://github.com/nodejs/node/commit/0ca7cda962)] - **tools**: enable jsdoc/check-param-names lint rule (Rich Trott) [#&#8203;41311](https://github.com/nodejs/node/pull/41311)
    
  • [`75ff8e6505`](https://github.com/nodejs/node/commit/75ff8e6505)] - **tools**: improve section tag additions in HTML doc generator (Rich Trott) [#&#8203;41318](https://github.com/nodejs/node/pull/41318)
    
  • [`9c4124706e`](https://github.com/nodejs/node/commit/9c4124706e)] - **tools**: simplify commit-queue.sh merge command (Rich Trott) [#&#8203;41314](https://github.com/nodejs/node/pull/41314)
    
  • [`137c814848`](https://github.com/nodejs/node/commit/137c814848)] - **tools**: update lint-md-dependencies to rollup@2.62.0 (Node.js GitHub Bot) [#&#8203;41315](https://github.com/nodejs/node/pull/41315)
    
  • [`58da5d9b43`](https://github.com/nodejs/node/commit/58da5d9b43)] - **tools**: use Object.hasOwn() in alljson.mjs (Rich Trott) [#&#8203;41306](https://github.com/nodejs/node/pull/41306)
    
  • [`c12cbf2020`](https://github.com/nodejs/node/commit/c12cbf2020)] - **tools**: avoid generating duplicate id attributes (Rich Trott) [#&#8203;41291](https://github.com/nodejs/node/pull/41291)
    
  • [`80a114d1b7`](https://github.com/nodejs/node/commit/80a114d1b7)] - **tools**: be intentional about masking possible error in start-ci.sh (Rich Trott) [#&#8203;41284](https://github.com/nodejs/node/pull/41284)
    
  • [`198528426d`](https://github.com/nodejs/node/commit/198528426d)] - **tools**: use {N} for spaces in regex (Rich Trott) [#&#8203;41295](https://github.com/nodejs/node/pull/41295)
    
  • [`46b364a684`](https://github.com/nodejs/node/commit/46b364a684)] - **tools**: consolidate update-authors.js logic (Rich Trott) [#&#8203;41255](https://github.com/nodejs/node/pull/41255)
    
  • [`c546cef4bc`](https://github.com/nodejs/node/commit/c546cef4bc)] - **tools**: update doc dependency mdast-util-gfm-table to 1.0.2 (Rich Trott) [#&#8203;41260](https://github.com/nodejs/node/pull/41260)
    
  • [`60c059e4bc`](https://github.com/nodejs/node/commit/60c059e4bc)] - **tools**: make license-builder.sh comply with shellcheck 0.8.0 (Rich Trott) [#&#8203;41258](https://github.com/nodejs/node/pull/41258)
    
  • [`62e28f19f7`](https://github.com/nodejs/node/commit/62e28f19f7)] - **tools**: use arrow function for callback in lint-sh.js (Rich Trott) [#&#8203;41256](https://github.com/nodejs/node/pull/41256)
    
  • [`e2df381da9`](https://github.com/nodejs/node/commit/e2df381da9)] - **tools**: add double-quotes to make-v8.sh (Rich Trott) [#&#8203;41257](https://github.com/nodejs/node/pull/41257)
    
  • [`dae2e5fffa`](https://github.com/nodejs/node/commit/dae2e5fffa)] - **tools**: enable prefer-object-has-own lint rule (Rich Trott) [#&#8203;41245](https://github.com/nodejs/node/pull/41245)
    
  • [`aa7d14768d`](https://github.com/nodejs/node/commit/aa7d14768d)] - **tools**: update eslint to 8.5.0 (Node.js GitHub Bot) [#&#8203;41228](https://github.com/nodejs/node/pull/41228)
    
  • [`0c14e7e7c8`](https://github.com/nodejs/node/commit/0c14e7e7c8)] - **tools**: enable jsdoc/tag-lines ESLint rule (Rich Trott) [#&#8203;41147](https://github.com/nodejs/node/pull/41147)
    
  • [`c486da1715`](https://github.com/nodejs/node/commit/c486da1715)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;13](https://github.com/13).1.1 (Node.js GitHub Bot) [#&#8203;41227](https://github.com/nodejs/node/pull/41227)
    
  • [`82f492bbb0`](https://github.com/nodejs/node/commit/82f492bbb0)] - **tools**: fix CQ and auto-start-ci jobs (Antoine du Hamel) [#&#8203;41230](https://github.com/nodejs/node/pull/41230)
    
  • [`c44185ca37`](https://github.com/nodejs/node/commit/c44185ca37)] - **tools**: fix GitHub Actions status when CQ is empty (Antoine du Hamel) [#&#8203;41193](https://github.com/nodejs/node/pull/41193)
    
  • [`800640adf9`](https://github.com/nodejs/node/commit/800640adf9)] - **tools,benchmark,lib,test**: enable no-case-declarations lint rule (Rich Trott) [#&#8203;41385](https://github.com/nodejs/node/pull/41385)
    
  • [`4518fdda24`](https://github.com/nodejs/node/commit/4518fdda24)] - **tools,lib,test**: enable ESLint no-regex-spaces rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463)
    
  • [`c8e8fc0ecb`](https://github.com/nodejs/node/commit/c8e8fc0ecb)] - **typings**: add types for symbol and accessor properties on `primordials` (ExE Boss) [#&#8203;40992](https://github.com/nodejs/node/pull/40992)
    
  • [`d733b56101`](https://github.com/nodejs/node/commit/d733b56101)] - **typings**: add JSDoc for `string_decoder` (Qingyu Deng) [#&#8203;38229](https://github.com/nodejs/node/pull/38229)
    
  • [`01ad8debd3`](https://github.com/nodejs/node/commit/01ad8debd3)] - **url,lib**: pass urlsearchparams-constructor.any.js (Khaidi Chu) [#&#8203;41197](https://github.com/nodejs/node/pull/41197)
    
  • [`5ed8a1c017`](https://github.com/nodejs/node/commit/5ed8a1c017)] - **util**: do not reduce to a single line if not appropriate using inspect (Ruben Bridgewater) [#&#8203;41083](https://github.com/nodejs/node/pull/41083)
    
  • [`ab5e94c832`](https://github.com/nodejs/node/commit/ab5e94c832)] - **util**: display a present-but-undefined error cause (Jordan Harband) [#&#8203;41247](https://github.com/nodejs/node/pull/41247)
    
    

v17.3.1

Compare Source

This is a security release.

Notable changes
Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)

Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI is specifically defined to use a particular SAN type, can result in bypassing name-constrained intermediates. Node.js was accepting URI SAN types, which PKIs are often not defined to use. Additionally, when a protocol allows URI SANs, Node.js did not match the URI correctly.

Versions of Node.js with the fix for this disable the URI SAN type when checking a certificate against a hostname. This behavior can be reverted through the --security-revert command-line option.

More details will be available at CVE-2021-44531 after publication.

Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)

Node.js converts SANs (Subject Alternative Names) to a string format. It uses this string to check peer certificates against hostnames when validating connections. The string format was subject to an injection vulnerability when name constraints were used within a certificate chain, allowing the bypass of these name constraints.

Versions of Node.js with the fix for this escape SANs containing the problematic characters in order to prevent the injection. This behavior can be reverted through the --security-revert command-line option.

More details will be available at CVE-2021-44532 after publication.

Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)

Node.js did not handle multi-value Relative Distinguished Names correctly. Attackers could craft certificate subjects containing a single-value Relative Distinguished Name that would be interpreted as a multi-value Relative Distinguished Name, for example, in order to inject a Common Name that would allow bypassing the certificate subject verification.

Affected versions of Node.js do not accept multi-value Relative Distinguished Names and are thus not vulnerable to such attacks themselves. However, third-party code that uses node's ambiguous presentation of certificate subjects may be vulnerable.

More details will be available at CVE-2021-44533 after publication.

Prototype pollution via console.table properties (Low)(CVE-2022-21824)

Due to the formatting logic of the console.table() function it was not safe to allow user controlled input to be passed to the properties parameter while simultaneously passing a plain object with at least one property as the first parameter, which could be __proto__. The prototype pollution has very limited control, in that it only allows an empty string to be assigned numerical keys of the object prototype.

Versions of Node.js with the fix for this use a null protoype for the object these properties are being assigned to.

More details will be available at CVE-2022-21824 after publication.

Thanks to Patrik Oldsberg (rugvip) for reporting this vulnerability.

Commits
  • [`2a0515f73c`](https://github.com/nodejs/node/commit/2a0515f73c)] - **console**: fix prototype pollution via console.table (Tobias Nießen) [nodejs-private/node-private#&#8203;307](https://github.com/nodejs-private/node-private/pull/307)
    
  • [`2e2c45553d`](https://github.com/nodejs/node/commit/2e2c45553d)] - **crypto,tls**: implement safe x509 GeneralName format (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300)
    
  • [`df3141f59b`](https://github.com/nodejs/node/commit/df3141f59b)] - **src**: add cve reverts and associated tests (Michael Dawson) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300)
    
  • [`5398548746`](https://github.com/nodejs/node/commit/5398548746)] - **src**: remove unused x509 functions (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300)
    
  • [`1f7fdff64a`](https://github.com/nodejs/node/commit/1f7fdff64a)] - **tls**: fix handling of x509 subject and issuer (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300)
    
  • [`b11b4cc69d`](https://github.com/nodejs/node/commit/b11b4cc69d)] - **tls**: drop support for URI alternative names (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300)
    
    

v17.3.0

Compare Source

Notable changes
OpenSSL-3.0.1

OpenSSL-3.0.1 contains a fix for CVE-2021-4044: Invalid handling of X509_verify_cert() internal errors in libssl (Moderate). This is a vulnerability in OpenSSL that may be exploited through Node.js. More information can be read here: https://www.openssl.org/news/secadv/20211214.txt.

Contributed by Richard Lau #​41177.

Other Notable Changes
  • lib:
    • make AbortSignal cloneable/transferable (James M Snell) #​41050
  • deps:
  • doc:
  • process:
    • add getActiveResourcesInfo() (Darshan Sen) #​40813
  • timers:
    • add experimental scheduler api (James M Snell) #​40909
Commits
  • [`99fb6d48eb`](https://github.com/nodejs/node/commit/99fb6d48eb)] - **assert**: prefer reference comparison over string comparison (Darshan Sen) [#&#8203;41015](https://github.com/nodejs/node/pull/41015)
    
  • [`a7dfa43dc7`](https://github.com/nodejs/node/commit/a7dfa43dc7)] - **assert**: use stricter stack frame detection in .ifError() (Ruben Bridgewater) [#&#8203;41006](https://github.com/nodejs/node/pull/41006)
    
  • [`28761de6d4`](https://github.com/nodejs/node/commit/28761de6d4)] - **buffer**: fix `Blob` constructor on various `TypedArray`s (Irakli Gozalishvili) [#&#8203;40706](https://github.com/nodejs/node/pull/40706)
    
  • [`8fcb71a5ab`](https://github.com/nodejs/node/commit/8fcb71a5ab)] - **build**: update openssl config generator Dockerfile (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177)
    
  • [`3a9ffa86db`](https://github.com/nodejs/node/commit/3a9ffa86db)] - **build**: use '<(python)' instead of 'python' (Cheng Zhao) [#&#8203;41146](https://github.com/nodejs/node/pull/41146)
    
  • [`85f1537c28`](https://github.com/nodejs/node/commit/85f1537c28)] - **build**: fix comment-labeled workflow (Mestery) [#&#8203;41176](https://github.com/nodejs/node/pull/41176)
    
  • [`61c53a667a`](https://github.com/nodejs/node/commit/61c53a667a)] - **build**: use gh cli in workflows file (Mestery) [#&#8203;40985](https://github.com/nodejs/node/pull/40985)
    
  • [`1fc6fd66ff`](https://github.com/nodejs/node/commit/1fc6fd66ff)] - **build**: fix commit-queue-rebase functionality (Rich Trott) [#&#8203;41140](https://github.com/nodejs/node/pull/41140)
    
  • [`831face7d1`](https://github.com/nodejs/node/commit/831face7d1)] - **build**: skip documentation generation if no ICU (Rich Trott) [#&#8203;41091](https://github.com/nodejs/node/pull/41091)
    
  • [`c776c9236e`](https://github.com/nodejs/node/commit/c776c9236e)] - **build**: re-enable V8 concurrent marking (Michaël Zasso) [#&#8203;41013](https://github.com/nodejs/node/pull/41013)
    
  • [`2125449f89`](https://github.com/nodejs/node/commit/2125449f89)] - **build**: add `--without-corepack` (Jonah Snider) [#&#8203;41060](https://github.com/nodejs/node/pull/41060)
    
  • [`6327685363`](https://github.com/nodejs/node/commit/6327685363)] - **build**: fail early in test-macos.yml (Rich Trott) [#&#8203;41035](https://github.com/nodejs/node/pull/41035)
    
  • [`ee4186b305`](https://github.com/nodejs/node/commit/ee4186b305)] - **build**: add tools/doc to tools.yml updates (Rich Trott) [#&#8203;41036](https://github.com/nodejs/node/pull/41036)
    
  • [`db30bc97d0`](https://github.com/nodejs/node/commit/db30bc97d0)] - **build**: update Actions versions (Mestery) [#&#8203;40987](https://github.com/nodejs/node/pull/40987)
    
  • [`db9cef3c4f`](https://github.com/nodejs/node/commit/db9cef3c4f)] - **build**: set persist-credentials: false on workflows (Rich Trott) [#&#8203;40972](https://github.com/nodejs/node/pull/40972)
    
  • [`29739f813f`](https://github.com/nodejs/node/commit/29739f813f)] - **build**: add OpenSSL gyp artifacts to .gitignore (Luigi Pinca) [#&#8203;40967](https://github.com/nodejs/node/pull/40967)
    
  • [`1b8baf0e4f`](https://github.com/nodejs/node/commit/1b8baf0e4f)] - **build**: remove legacy -J test.py option from Makefile/vcbuild (Rich Trott) [#&#8203;40945](https://github.com/nodejs/node/pull/40945)
    
  • [`5c27ec8385`](https://github.com/nodejs/node/commit/5c27ec8385)] - **build**: ignore unrelated workflow changes in slow Actions tests (Rich Trott) [#&#8203;40928](https://github.com/nodejs/node/pull/40928)
    
  • [`8957c9bd1c`](https://github.com/nodejs/node/commit/8957c9bd1c)] - **build,tools**: automate enforcement of emeritus criteria (Rich Trott) [#&#8203;41155](https://github.com/nodejs/node/pull/41155)
    
  • [`e924dc7982`](https://github.com/nodejs/node/commit/e924dc7982)] - **cluster**: use linkedlist for round_robin_handle (twchn) [#&#8203;40615](https://github.com/nodejs/node/pull/40615)
    
  • [`c757fa513e`](https://github.com/nodejs/node/commit/c757fa513e)] - **crypto**: add missing null check (Michael Dawson) [#&#8203;40598](https://github.com/nodejs/node/pull/40598)
    
  • [`35fe14454b`](https://github.com/nodejs/node/commit/35fe14454b)] - **deps**: update archs files for quictls/openssl-3.0.1+quic (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177)
    
  • [`0b2103419f`](https://github.com/nodejs/node/commit/0b2103419f)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.1+quic (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177)
    
  • [`fae4945ab3`](https://github.com/nodejs/node/commit/fae4945ab3)] - **deps**: upgrade npm to 8.3.0 (npm team) [#&#8203;41127](https://github.com/nodejs/node/pull/41127)
    
  • [`3a1d952e68`](https://github.com/nodejs/node/commit/3a1d952e68)] - **deps**: upgrade npm to 8.2.0 (npm team) [#&#8203;41065](https://github.com/nodejs/node/pull/41065)
    
  • [`627b5bb718`](https://github.com/nodejs/node/commit/627b5bb718)] - **deps**: update Acorn to v8.6.0 (Michaël Zasso) [#&#8203;40993](https://github.com/nodejs/node/pull/40993)
    
  • [`a2fb12f9c6`](https://github.com/nodejs/node/commit/a2fb12f9c6)] - **deps**: patch V8 to 9.6.180.15 (Michaël Zasso) [#&#8203;40949](https://github.com/nodejs/node/pull/40949)
    
  • [`93111e4662`](https://github.com/nodejs/node/commit/93111e4662)] - **doc**: fix closing parenthesis (AlphaDio) [#&#8203;41190](https://github.com/nodejs/node/pull/41190)
    
  • [`f883bf3d12`](https://github.com/nodejs/node/commit/f883bf3d12)] - **doc**: add security steward on/offboarding steps (Michael Dawson) [#&#8203;41129](https://github.com/nodejs/node/pull/41129)
    
  • [`1274a25b14`](https://github.com/nodejs/node/commit/1274a25b14)] - **doc**: align module resolve algorithm with implementation (Qingyu Deng) [#&#8203;38837](https://github.com/nodejs/node/pull/38837)
    
  • [`34c6c59014`](https://github.com/nodejs/node/commit/34c6c59014)] - **doc**: update nodejs-sec managers (Michael Dawson) [#&#8203;41128](https://github.com/nodejs/node/pull/41128)
    
  • [`db26bdb011`](https://github.com/nodejs/node/commit/db26bdb011)] - **doc**: move style guide to findable location (Rich Trott) [#&#8203;41119](https://github.com/nodejs/node/pull/41119)
    
  • [`4369c6d9f6`](https://github.com/nodejs/node/commit/4369c6d9f6)] - **doc**: fix comments in test-fs-watch.js (jakub-g) [#&#8203;41046](https://github.com/nodejs/node/pull/41046)
    
  • [`93f5bd34e9`](https://github.com/nodejs/node/commit/93f5bd34e9)] - **doc**: document support building with Python 3.10 on Windows (Christian Clauss) [#&#8203;41098](https://github.com/nodejs/node/pull/41098)
    
  • [`d8fa227c26`](https://github.com/nodejs/node/commit/d8fa227c26)] - **doc**: add note about pip being required (Piotr Rybak) [#&#8203;40669](https://github.com/nodejs/node/pull/40669)
    
  • [`95691801f3`](https://github.com/nodejs/node/commit/95691801f3)] - **doc**: remove OpenJSF Slack nodejs from support doc (Rich Trott) [#&#8203;41108](https://github.com/nodejs/node/pull/41108)
    
  • [`e3ac384d78`](https://github.com/nodejs/node/commit/e3ac384d78)] - **doc**: simplify major release preparation (Bethany Nicolle Griggs) [#&#8203;40816](https://github.com/nodejs/node/pull/40816)
    
  • [`3406910040`](https://github.com/nodejs/node/commit/3406910040)] - **doc**: clarify escaping for ES modules (notroid5) [#&#8203;41074](https://github.com/nodejs/node/pull/41074)
    
  • [`668284b5a1`](https://github.com/nodejs/node/commit/668284b5a1)] - **doc**: add [@&#8203;bnb](https://github.com/bnb) as a collaborator (Tierney Cyren) [#&#8203;41100](https://github.com/nodejs/node/pull/41100)
    
  • [`94d09113a2`](https://github.com/nodejs/node/commit/94d09113a2)] - **doc**: add explicit declaration of fd with null val (Henadzi) [#&#8203;40704](https://github.com/nodejs/node/pull/40704)
    
  • [`b353ded677`](https://github.com/nodejs/node/commit/b353ded677)] - **doc**: expand entries for isIP(), isIPv4(), and isIPv6() (Rich Trott) [#&#8203;41028](https://github.com/nodejs/node/pull/41028)
    
  • [`f18aa14b1d`](https://github.com/nodejs/node/commit/f18aa14b1d)] - **doc**: link to commit queue guide (Geoffrey Booth) [#&#8203;41030](https://github.com/nodejs/node/pull/41030)
    
  • [`681edbe75f`](https://github.com/nodejs/node/commit/681edbe75f)] - **doc**: specify that `message.socket` can be nulled (Luigi Pinca) [#&#8203;41014](https://github.com/nodejs/node/pull/41014)
    
  • [`7c41f32f06`](https://github.com/nodejs/node/commit/7c41f32f06)] - **doc**: fix JSDoc in ESM loaders examples (Mestery) [#&#8203;40984](https://github.com/nodejs/node/pull/40984)
    
  • [`61b2e2ef9e`](https://github.com/nodejs/node/commit/61b2e2ef9e)] - **doc**: remove legacy -J test.py option from BUILDING.md (Rich Trott) [#&#8203;40945](https://github.com/nodejs/node/pull/40945)
    
  • [`c9b09d124e`](https://github.com/nodejs/node/commit/c9b09d124e)] - **doc,lib,tools**: align multiline comments (Rich Trott) [#&#8203;41109](https://github.com/nodejs/node/pull/41109)
    
  • [`12023dff4b`](https://github.com/nodejs/node/commit/12023dff4b)] - **(SEMVER-MINOR)** **errors**: add support for cause in aborterror (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`b0b7943e8f`](https://github.com/nodejs/node/commit/b0b7943e8f)] - **(SEMVER-MINOR)** **esm**: working mock test (Bradley Farias) [#&#8203;39240](https://github.com/nodejs/node/pull/39240)
    
  • [`37dbc3b9e9`](https://github.com/nodejs/node/commit/37dbc3b9e9)] - **(SEMVER-MINOR)** **events**: propagate abortsignal reason in new AbortError ctor in events (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`1b8d4e4867`](https://github.com/nodejs/node/commit/1b8d4e4867)] - **(SEMVER-MINOR)** **events**: propagate weak option for kNewListener (James M Snell) [#&#8203;40899](https://github.com/nodejs/node/pull/40899)
    
  • [`bbdcd0513b`](https://github.com/nodejs/node/commit/bbdcd0513b)] - **(SEMVER-MINOR)** **fs**: accept URL as argument for `fs.rm` and `fs.rmSync` (Antoine du Hamel) [#&#8203;41132](https://github.com/nodejs/node/pull/41132)
    
  • [`46108f8d50`](https://github.com/nodejs/node/commit/46108f8d50)] - **fs**: fix error codes for `fs.cp` (Antoine du Hamel) [#&#8203;41106](https://github.com/nodejs/node/pull/41106)
    
  • [`e25671cddb`](https://github.com/nodejs/node/commit/e25671cddb)] - **fs**: fix `length` option being ignored during `read()` (Shinho Ahn) [#&#8203;40906](https://github.com/nodejs/node/pull/40906)
    
  • [`6eda874be0`](https://github.com/nodejs/node/commit/6eda874be0)] - **(SEMVER-MINOR)** **fs**: propagate abortsignal reason in new AbortSignal constructors (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`70ed4ef248`](https://github.com/nodejs/node/commit/70ed4ef248)] - **http**: don't write empty data on req/res end() (Santiago Gimeno) [#&#8203;41116](https://github.com/nodejs/node/pull/41116)
    
  • [`4b3bf7e818`](https://github.com/nodejs/node/commit/4b3bf7e818)] - **(SEMVER-MINOR)** **http2**: propagate abortsignal reason in new AbortError constructor (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`8d87303f76`](https://github.com/nodejs/node/commit/8d87303f76)] - **inspector**: add missing initialization (Michael Dawson) [#&#8203;41022](https://github.com/nodejs/node/pull/41022)
    
  • [`b191e66ddf`](https://github.com/nodejs/node/commit/b191e66ddf)] - **lib**: include return types in JSDoc (Rich Trott) [#&#8203;41130](https://github.com/nodejs/node/pull/41130)
    
  • [`348707fca6`](https://github.com/nodejs/node/commit/348707fca6)] - **(SEMVER-MINOR)** **lib**: make AbortSignal cloneable/transferable (James M Snell) [#&#8203;41050](https://github.com/nodejs/node/pull/41050)
    
  • [`4ba883d384`](https://github.com/nodejs/node/commit/4ba883d384)] - **(SEMVER-MINOR)** **lib**: add abortSignal.throwIfAborted() (James M Snell) [#&#8203;40951](https://github.com/nodejs/node/pull/40951)
    
  • [`cc3e430c11`](https://github.com/nodejs/node/commit/cc3e430c11)] - **lib**: use consistent types in JSDoc [@&#8203;returns](https://github.com/returns) (Rich Trott) [#&#8203;41089](https://github.com/nodejs/node/pull/41089)
    
  • [`a1ed7f2810`](https://github.com/nodejs/node/commit/a1ed7f2810)] - **(SEMVER-MINOR)** **lib**: propagate abortsignal reason in new AbortError constructor in blob (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`1572db3e86`](https://github.com/nodejs/node/commit/1572db3e86)] - **lib**: do not lazy load EOL in blob (Ruben Bridgewater) [#&#8203;41004](https://github.com/nodejs/node/pull/41004)
    
  • [`62c4b4c85b`](https://github.com/nodejs/node/commit/62c4b4c85b)] - **(SEMVER-MINOR)** **lib**: add AbortSignal.timeout (James M Snell) [#&#8203;40899](https://github.com/nodejs/node/pull/40899)
    
  • [`f0d874342d`](https://github.com/nodejs/node/commit/f0d874342d)] - **lib,test,tools**: use consistent JSDoc types (Rich Trott) [#&#8203;40989](https://github.com/nodejs/node/pull/40989)
    
  • [`03e6771137`](https://github.com/nodejs/node/commit/03e6771137)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41154](https://github.com/nodejs/node/pull/41154)
    
  • [`e26c187b85`](https://github.com/nodejs/node/commit/e26c187b85)] - **meta**: move to emeritus automatically after 18 months (Rich Trott) [#&#8203;41155](https://github.com/nodejs/node/pull/41155)
    
  • [`b89fb3ef0a`](https://github.com/nodejs/node/commit/b89fb3ef0a)] - **meta**: move silverwind to emeriti (Roman Reiss) [#&#8203;41171](https://github.com/nodejs/node/pull/41171)
    
  • [`0fc148321f`](https://github.com/nodejs/node/commit/0fc148321f)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41144](https://github.com/nodejs/node/pull/41144)
    
  • [`d6d1d6647c`](https://github.com/nodejs/node/commit/d6d1d6647c)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41088](https://github.com/nodejs/node/pull/41088)
    
  • [`f30d6bcaff`](https://github.com/nodejs/node/commit/f30d6bcaff)] - **meta**: move one or more TSC members to emeritus (Node.js GitHub Bot) [#&#8203;40908](https://github.com/nodejs/node/pull/40908)
    
  • [`033a646d82`](https://github.com/nodejs/node/commit/033a646d82)] - **meta**: increase security policy response targets (Matteo Collina) [#&#8203;40968](https://github.com/nodejs/node/pull/40968)
    
  • [`6b6e1d054e`](https://github.com/nodejs/node/commit/6b6e1d054e)] - **node-api,doc**: document parms which can be optional (Michael Dawson) [#&#8203;41021](https://github.com/nodejs/node/pull/41021)
    
  • [`93ea1666f6`](https://github.com/nodejs/node/commit/93ea1666f6)] - **perf_hooks**: use spec-compliant `structuredClone` (Michaël Zasso) [#&#8203;40904](https://github.com/nodejs/node/pull/40904)
    
  • [`d8a2125900`](https://github.com/nodejs/node/commit/d8a2125900)] - **(SEMVER-MINOR)** **process**: add `getActiveResourcesInfo()` (Darshan Sen) [#&#8203;40813](https://github.com/nodejs/node/pull/40813)
    
  • [`67124ac63a`](https://github.com/nodejs/node/commit/67124ac63a)] - **(SEMVER-MINOR)** **readline**: propagate signal.reason in awaitable question (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`8fac878ff5`](https://github.com/nodejs/node/commit/8fac878ff5)] - **readline**: skip escaping characters again (Ruben Bridgewater) [#&#8203;41005](https://github.com/nodejs/node/pull/41005)
    
  • [`d3de937782`](https://github.com/nodejs/node/commit/d3de937782)] - **src**: fix limit calculation (Michael Dawson) [#&#8203;41026](https://github.com/nodejs/node/pull/41026)
    
  • [`6f0ec9835a`](https://github.com/nodejs/node/commit/6f0ec9835a)] - **src**: use a higher limit in the NearHeapLimitCallback (Joyee Cheung) [#&#8203;41041](https://github.com/nodejs/node/pull/41041)
    
  • [`90097ab891`](https://github.com/nodejs/node/commit/90097ab891)] - **src,crypto**: remove uses of `AllocatedBuffer` from `crypto_sig` (Darshan Sen) [#&#8203;40895](https://github.com/nodejs/node/pull/40895)
    
  • [`b59c513c31`](https://github.com/nodejs/node/commit/b59c513c31)] - **stream**: add isErrored helper (Robert Nagy) [#&#8203;41121](https://github.com/nodejs/node/pull/41121)
    
  • [`1787bfab68`](https://github.com/nodejs/node/commit/1787bfab68)] - **stream**: allow readable to end early without error (Robert Nagy) [#&#8203;40881](https://github.com/nodejs/node/pull/40881)
    
  • [`01e8c15c8a`](https://github.com/nodejs/node/commit/01e8c15c8a)] - **(SEMVER-MINOR)** **stream**: use cause options in AbortError constructors (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`0e21c64ae9`](https://github.com/nodejs/node/commit/0e21c64ae9)] - **stream**: remove whatwg streams experimental warning (James M Snell) [#&#8203;40971](https://github.com/nodejs/node/pull/40971)
    
  • [`513305c7d7`](https://github.com/nodejs/node/commit/513305c7d7)] - **stream**: cleanup eos (Robert Nagy) [#&#8203;40998](https://github.com/nodejs/node/pull/40998)
    
  • [`da8baf4bbb`](https://github.com/nodejs/node/commit/da8baf4bbb)] - **test**: do not load absolute path crypto engines twice (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177)
    
  • [`1f6a9c3e31`](https://github.com/nodejs/node/commit/1f6a9c3e31)] - **test**: skip ESLint tests if no Intl (Rich Trott) [#&#8203;41105](https://github.com/nodejs/node/pull/41105)
    
  • [`ce656a80b5`](https://github.com/nodejs/node/commit/ce656a80b5)] - **test**: add missing JSDoc parameter name (Rich Trott) [#&#8203;41057](https://github.com/nodejs/node/pull/41057)
    
  • [`fb8f2e9643`](https://github.com/nodejs/node/commit/fb8f2e9643)] - **test**: deflake test-trace-atomics-wait (Luigi Pinca) [#&#8203;41018](https://github.com/nodejs/node/pull/41018)
    
  • [`de1748aca4`](https://github.com/nodejs/node/commit/de1748aca4)] - **test**: add auth option case for url.format (Hirotaka Tagawa / wafuwafu13) [#&#8203;40516](https://github.com/nodejs/node/pull/40516)
    
  • [`943547a0eb`](https://github.com/nodejs/node/commit/943547a0eb)] - ***Revert*** "**test**: skip different params test for OpenSSL 3.x" (Daniel Bevenius) [#&#8203;40640](https://github.com/nodejs/node/pull/40640)
    
  • [`0caa3483d2`](https://github.com/nodejs/node/commit/0caa3483d2)] - **(SEMVER-MINOR)** **timers**: add experimental scheduler api (James M Snell) [#&#8203;40909](https://github.com/nodejs/node/pull/40909)
    
  • [`e795547651`](https://github.com/nodejs/node/commit/e795547651)] - **(SEMVER-MINOR)** **timers**: propagate signal.reason in awaitable timers (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008)
    
  • [`a77cae1ef7`](https://github.com/nodejs/node/commit/a77cae1ef7)] - **tls**: improve handling of shutdown (Jameson Nash) [#&#8203;36111](https://github.com/nodejs/node/pull/36111)
    
  • [`db410e7d3e`](https://github.com/nodejs/node/commit/db410e7d3e)] - **tools**: update doc to remark-rehype@10.1.0 (Node.js GitHub Bot) [#&#8203;41149](https://github.com/nodejs/node/pull/41149)
    
  • [`e3870f3f17`](https://github.com/nodejs/node/commit/e3870f3f17)] - **tools**: update lint-md-dependencies to rollup@2.61.1 vfile-reporter@7.0.3 (Node.js GitHub Bot) [#&#8203;41150](https://github.com/nodejs/node/pull/41150)
    
  • [`6fc92bd191`](https://github.com/nodejs/node/commit/6fc92bd191)] - **tools**: enable jsdoc/require-returns-type ESLint rule (Rich Trott) [#&#8203;41130](https://github.com/nodejs/node/pull/41130)
    
  • [`70e6fe860a`](https://github.com/nodejs/node/commit/70e6fe860a)] - **tools**: update ESLint to 8.4.1 (Rich Trott) [#&#8203;41114](https://github.com/nodejs/node/pull/41114)
    
  • [`78894fa888`](https://github.com/nodejs/node/commit/78894fa888)] - **tools**: enable JSDoc check-alignment lint rule (Rich Trott) [#&#8203;41109](https://github.com/nodejs/node/pull/41109)
    
  • [`40a773aa29`](https://github.com/nodejs/node/commit/40a773aa29)] - **tools**: strip comments from lint-md rollup output (Rich Trott) [#&#8203;41092](https://github.com/nodejs/node/pull/41092)
    
  • [`7b606cfef6`](https://github.com/nodejs/node/commit/7b606cfef6)] - **tools**: update highlight.js to 11.3.1 (Rich Trott) [#&#8203;41091](https://github.com/nodejs/node/pull/41091)
    
  • [`52633a9e95`](https://github.com/nodejs/node/commit/52633a9e95)] - **tools**: enable jsdoc/require-returns-check lint rule (Rich Trott) [#&#8203;41089](https://github.com/nodejs/node/pull/41089)
    
  • [`dc0405e7fb`](https://github.com/nodejs/node/commit/dc0405e7fb)] - **tools**: update ESLint to 8.4.0 (Luigi Pinca) [#&#8203;41085](https://github.com/nodejs/node/pull/41085)
    
  • [`855f15d059`](https://github.com/nodejs/node/commit/855f15d059)] - **tools**: enable jsdoc/require-param-name lint rule (Rich Trott) [#&#8203;41057](https://github.com/nodejs/node/pull/41057)
    
  • [`78265e095a`](https://github.com/nodejs/node/commit/78265e095a)] - **tools**: use jsdoc recommended rules (Rich Trott) [#&#8203;41057](https://github.com/nodejs/node/pull/41057)
    
  • [`9cfdf15da6`](https://github.com/nodejs/node/commit/9cfdf15da6)] - **tools**: rollback highlight.js (Richard Lau) [#&#8203;41078](https://github.com/nodejs/node/pull/41078)
    
  • [`fe3e09bb4b`](https://github.com/nodejs/node/commit/fe3e09bb4b)] - **tools**: remove Babel from license-builder.sh (Rich Trott) [#&#8203;41049](https://github.com/nodejs/node/pull/41049)
    
  • [`62e0aa9725`](https://github.com/nodejs/node/commit/62e0aa9725)] - **tools**: udpate packages in tools/doc (Rich Trott) [#&#8203;41036](https://github.com/nodejs/node/pull/41036)
    
  • [`a959f4fa72`](https://github.com/nodejs/node/commit/a959f4fa72)] - **tools**: install and enable JSDoc linting in ESLint (Rich Trott) [#&#8203;41027](https://github.com/nodejs/node/pull/41027)
    
  • [`661960e471`](https://github.com/nodejs/node/commit/661960e471)] - **tools**: include JSDoc in ESLint updating tool (Rich Trott) [#&#8203;41027](https://github.com/nodejs/node/pull/41027)
    
  • [`e2922714ee`](https://github.com/nodejs/node/commit/e2922714ee)] - **tools**: ignore unrelated workflow changes in slow Actions tests (Antoine du Hamel) [#&#8203;40990](https://github.com/nodejs/node/pull/40990)
    
  • [`6525226ff7`](https://github.com/nodejs/node/commit/6525226ff7)] - **tools**: remove unneeded tool in update-eslint.sh (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995)
    
  • [`5400b7963d`](https://github.com/nodejs/node/commit/5400b7963d)] - **tools**: consolidate ESLint dependencies (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995)
    
  • [`86d5af14bc`](https://github.com/nodejs/node/commit/86d5af14bc)] - **tools**: update ESLint update script to consolidate dependencies (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995)
    
  • [`8427099f66`](https://github.com/nodejs/node/commit/8427099f66)] - **tools**: run ESLint update to minimize diff on subsequent update (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995)
    
  • [`82daaa9914`](https://github.com/nodejs/node/commit/82daaa9914)] - **tools,test**: make -J behavior default for test.py (Rich Trott) [#&#8203;40945](https://github.com/nodejs/node/pull/40945)
    
  • [`db77780cb9`](https://github.com/nodejs/node/commit/db77780cb9)] - **url**: detect hostname more reliably in url.parse() (Rich Trott) [#&#8203;41031](https://github.com/nodejs/node/pull/41031)
    
  • [`66b5083c1e`](https://github.com/nodejs/node/commit/66b5083c1e)] - **util**: serialize falsy cause values while inspecting errors (Ruben Bridgewater) [#&#8203;41097](https://github.com/nodejs/node/pull/41097)
    
  • [`09d29ca8d9`](https://github.com/nodejs/node/commit/09d29ca8d9)] - **util**: make sure error causes of any type may be inspected (Ruben Bridgewater) [#&#8203;41097](https://github.com/nodejs/node/pull/41097)
    
  • [`f5ff88b3cb`](https://github.com/nodejs/node/commit/f5ff88b3cb)] - **(SEMVER-MINOR)** **util**: pass through the inspect function to custom inspect functions (Ruben Bridgewater) [#&#8203;41019](https://github.com/nodejs/node/pull/41019)
    
  • [`a0326f0941`](https://github.com/nodejs/node/commit/a0326f0941)] - **util**: escape lone surrogate code points using .inspect() (Ruben Bridgewater) [#&#8203;41001](https://github.com/nodejs/node/pull/41001)
    
  • [`91df200ad6`](https://github.com/nodejs/node/commit/91df200ad6)] - **(SEMVER-MINOR)** **util**: add numericSeparator to util.inspect (Ruben Bridgewater) [#&#8203;41003](https://github.com/nodejs/node/pull/41003)
    
  • [`da87413257`](https://github.com/nodejs/node/commit/da87413257)] - **(SEMVER-MINOR)** **util**: always visualize cause property in errors during inspection (Ruben Bridgewater) [#&#8203;41002](https://github.com/nodejs/node/pull/41002)
    
    

v17.2.0

Compare Source

Notable Changes
  • [`06916490af`](https://github.com/nodejs/node/commit/06916490af)] - **(SEMVER-MINOR)** **async_hooks**: expose async_wrap providers (Rafael Gonzaga) [#&#8203;40760](https://github.com/nodejs/node/pull/40760)
    
  • [`371ee64c92`](https://github.com/nodejs/node/commit/371ee64c92)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.6.180.14 (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488)
    
  • [`675c210b04`](https://github.com/nodejs/node/commit/675c210b04)] - **(SEMVER-MINOR)** **lib**: add reason to AbortSignal (James M Snell) [#&#8203;40807](https://github.com/nodejs/node/pull/40807)
    
  • [`0de2850680`](https://github.com/nodejs/node/commit/0de2850680)] - **(SEMVER-MINOR)** **src**: add x509.fingerprint512 to crypto module (3nprob) [#&#8203;39809](https://github.com/nodejs/node/pull/39809)
    
  • [`fa9b5c35d2`](https://github.com/nodejs/node/commit/fa9b5c35d2)] - **stream**: deprecate thenable support (Antoine du Hamel) [#&#8203;40860](https://github.com/nodejs/node/pull/40860)
    
  • [`534409d4e7`](https://github.com/nodejs/node/commit/534409d4e7)] - **stream**: fix finished regression when working with legacy Stream (Matteo Collina) [#&#8203;40858](https://github.com/nodejs/node/pull/40858)
    
    
Commits
  • [`48157c44c2`](https://github.com/nodejs/node/commit/48157c44c2)] - ***Revert*** "**async_hooks**: merge resource_symbol with owner_symbol" (Darshan Sen) [#&#8203;40741](https://github.com/nodejs/node/pull/40741)
    
  • [`4a971f67e4`](https://github.com/nodejs/node/commit/4a971f67e4)] - **async_hooks**: eliminate require side effects (Stephen Belanger) [#&#8203;40782](https://github.com/nodejs/node/pull/40782)
    
  • [`06916490af`](https://github.com/nodejs/node/commit/06916490af)] - **(SEMVER-MINOR)** **async_hooks**: expose async_wrap providers (Rafael Gonzaga) [#&#8203;40760](https://github.com/nodejs/node/pull/40760)
    
  • [`65b33ba510`](https://github.com/nodejs/node/commit/65b33ba510)] - **build**: remove extraneous quotation marks from commit body (Rich Trott) [#&#8203;40963](https://github.com/nodejs/node/pull/40963)
    
  • [`05d652a555`](https://github.com/nodejs/node/commit/05d652a555)] - **build**: fix branch name for lint-md-dependencies update (Rich Trott) [#&#8203;40924](https://github.com/nodejs/node/pull/40924)
    
  • [`1482c4415f`](https://github.com/nodejs/node/commit/1482c4415f)] - **build**: fix `make` invocation in tools.yml (Rich Trott) [#&#8203;40890](https://github.com/nodejs/node/pull/40890)
    
  • [`69de8c8143`](https://github.com/nodejs/node/commit/69de8c8143)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488)
    
  • [`e793331322`](https://github.com/nodejs/node/commit/e793331322)] - **build**: fix tools.yml errors (Rich Trott) [#&#8203;40870](https://github.com/nodejs/node/pull/40870)
    
  • [`51ac59b047`](https://github.com/nodejs/node/commit/51ac59b047)] - **build**: add GitHub Action to update tools modules (Rich Trott) [#&#8203;40644](https://github.com/nodejs/node/pull/40644)
    
  • [`a8cc8b6554`](https://github.com/nodejs/node/commit/a8cc8b6554)] - **crypto**: trim input for NETSCAPE_SPKI_b64\_decode (Shelley Vohr) [#&#8203;40757](https://github.com/nodejs/node/pull/40757)
    
  • [`2979c58fb0`](https://github.com/nodejs/node/commit/2979c58fb0)] - **crypto**: throw errors in SignTraits::DeriveBits (Tobias Nießen) [#&#8203;40796](https://github.com/nodejs/node/pull/40796)
    
  • [`7f5931d03f`](https://github.com/nodejs/node/commit/7f5931d03f)] - **crypto**: fix build without scrypt (Martin Jansa) [#&#8203;40613](https://github.com/nodejs/node/pull/40613)
    
  • [`90f35fc329`](https://github.com/nodejs/node/commit/90f35fc329)] - **deps**: upgrade npm to 8.1.4 (npm team) [#&#8203;40865](https://github.com/nodejs/node/pull/40865)
    
  • [`d461603d71`](https://github.com/nodejs/node/commit/d461603d71)] - **deps**: V8: cherry-pick [`cced52a`](https://github.com/nodejs/node/commit/cced52a97ee9) (Ray Wang) [#&#8203;40656](https://github.com/nodejs/node/pull/40656)
    
  • [`d6ae50ff96`](https://github.com/nodejs/node/commit/d6ae50ff96)] - **deps**: V8: cherry-pick [`7ae0b77`](https://github.com/nodejs/node/commit/7ae0b77628f6) (Ray Wang) [#&#8203;40882](https://github.com/nodejs/node/pull/40882)
    
  • [`e60053deee`](https://github.com/nodejs/node/commit/e60053deee)] - **deps**: V8: cherry-pick [`2a0bc36`](https://github.com/nodejs/node/commit/2a0bc36dec12) (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`94acaae3d4`](https://github.com/nodejs/node/commit/94acaae3d4)] - **deps**: V8: patch jinja2 for Python 3.10 compat (Michaël Zasso) [#&#8203;40296](https://github.com/nodejs/node/pull/40296)
    
  • [`37c9828d39`](https://github.com/nodejs/node/commit/37c9828d39)] - **deps**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488)
    
  • [`dfb97fb501`](https://github.com/nodejs/node/commit/dfb97fb501)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`9ecf4be0c2`](https://github.com/nodejs/node/commit/9ecf4be0c2)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`82a8736dec`](https://github.com/nodejs/node/commit/82a8736dec)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;38807](https://github.com/nodejs/node/pull/38807)
    
  • [`eab5ef5505`](https://github.com/nodejs/node/commit/eab5ef5505)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`d6e5dd56ff`](https://github.com/nodejs/node/commit/d6e5dd56ff)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`29a6e15480`](https://github.com/nodejs/node/commit/29a6e15480)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`1ff83c4945`](https://github.com/nodejs/node/commit/1ff83c4945)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`371ee64c92`](https://github.com/nodejs/node/commit/371ee64c92)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.6.180.14 (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488)
    
  • [`6506a42c16`](https://github.com/nodejs/node/commit/6506a42c16)] - **deps**: V8: cherry-pick [`cced52a`](https://github.com/nodejs/node/commit/cced52a97ee9) (Ray Wang) [#&#8203;40656](https://github.com/nodejs/node/pull/40656)
    
  • [`a612ecb42f`](https://github.com/nodejs/node/commit/a612ecb42f)] - **deps**: V8: cherry-pick [`7ae0b77`](https://github.com/nodejs/node/commit/7ae0b77628f6) (Ray Wang) [#&#8203;40882](https://github.com/nodejs/node/pull/40882)
    
  • [`b46184df5e`](https://github.com/nodejs/node/commit/b46184df5e)] - **deps**: update to uvwasi 0.0.12 (Colin Ihrig) [#&#8203;40847](https://github.com/nodejs/node/pull/40847)
    
  • [`fa37428472`](https://github.com/nodejs/node/commit/fa37428472)] - **deps**: add -fno-strict-aliasing flag to libuv (Daniel Bevenius) [#&#8203;40631](https://github.com/nodejs/node/pull/40631)
    
  • [`9711ccfe08`](https://github.com/nodejs/node/commit/9711ccfe08)] - **deps**: upgrade npm to 8.1.3 (npm team) [#&#8203;40726](https://github.com/nodejs/node/pull/40726)
    
  • [`8e525634c6`](https://github.com/nodejs/node/commit/8e525634c6)] - **deps**: update ICU to 70.1 (Michaël Zasso) [#&#8203;40658](https://github.com/nodejs/node/pull/40658)
    
  • [`3bfc9f5b47`](https://github.com/nodejs/node/commit/3bfc9f5b47)] - **doc**: add information on suppressing initial break in debugger (Rich Trott) [#&#8203;40960](https://github.com/nodejs/node/pull/40960)
    
  • [`8966ab3c57`](https://github.com/nodejs/node/commit/8966ab3c57)] - **doc**: improve grammar in API description (Tobias Nießen) [#&#8203;40959](https://github.com/nodejs/node/pull/40959)
    
  • [`130777a61c`](https://github.com/nodejs/node/commit/130777a61c)] - **doc**: update BUILDING.md section on running tests (Rich Trott) [#&#8203;40933](https://github.com/nodejs/node/pull/40933)
    
  • [`6e9b6652e5`](https://github.com/nodejs/node/commit/6e9b6652e5)] - **doc**: remove experimental abortcontroller flag (FrankQiu) [#&#8203;38968](https://github.com/nodejs/node/pull/38968)
    
  • [`b92416ff02`](https://github.com/nodejs/node/commit/b92416ff02)] - **doc**: fix spelling of 'WebAssembly' (Geoffrey Booth) [#&#8203;40785](https://github.com/nodejs/node/pull/40785)
    
  • [`cf495a6293`](https://github.com/nodejs/node/commit/cf495a6293)] - **doc**: clarify more optional parameters in node-api (Michael Dawson) [#&#8203;40888](https://github.com/nodejs/node/pull/40888)
    
  • [`694012b392`](https://github.com/nodejs/node/commit/694012b392)] - **doc**: define "types", "deno" community conditions (Guy Bedford) [#&#8203;40708](https://github.com/nodejs/node/pull/40708)
    
  • [`4c47b0150b`](https://github.com/nodejs/node/commit/4c47b0150b)] - **doc**: document optional params in napi_get_cb_info (Michael Dawson) [#&#8203;40821](https://github.com/nodejs/node/pull/40821)
    
  • [`dfdf68f4d0`](https://github.com/nodejs/node/commit/dfdf68f4d0)] - **doc**: improve README.md lede section (Rich Trott) [#&#8203;40837](https://github.com/nodejs/node/pull/40837)
    
  • [`9c200e1de4`](https://github.com/nodejs/node/commit/9c200e1de4)] - **doc**: add pref to using draft PR versus WIP label (Michael Dawson) [#&#8203;40824](https://github.com/nodejs/node/pull/40824)
    
  • [`fe2cd09750`](https://github.com/nodejs/node/commit/fe2cd09750)] - **doc**: fix `added:` info for `Readable.fromWeb()` (Luigi Pinca) [#&#8203;40820](https://github.com/nodejs/node/pull/40820)
    
  • [`c91a9ab095`](https://github.com/nodejs/node/commit/c91a9ab095)] - **doc**: tweak guidance for modules in core (Michael Dawson) [#&#8203;40601](https://github.com/nodejs/node/pull/40601)
    
  • [`2ea08e9b55`](https://github.com/nodejs/node/commit/2ea08e9b55)] - **doc**: claim ABI version for Electron 18 (Keeley Hammond) [#&#8203;40768](https://github.com/nodejs/node/pull/40768)
    
  • [`8166b07ddc`](https://github.com/nodejs/node/commit/8166b07ddc)] - **doc**: fix transform stream example (Evan Lucas) [#&#8203;40777](https://github.com/nodejs/node/pull/40777)
    
  • [`5ceb06cddf`](https://github.com/nodejs/node/commit/5ceb06cddf)] - **doc**: fix linter-enforced formatting in crypto.md (Mohammed Keyvanzadeh) [#&#8203;40780](https://github.com/nodejs/node/pull/40780)
    
  • [`d3070d8eea`](https://github.com/nodejs/node/commit/d3070d8eea)] - **doc**: fix corepack grammar for `--force` flag (Steven) [#&#8203;40762](https://github.com/nodejs/node/pull/40762)
    
  • [`9271f23e3a`](https://github.com/nodejs/node/commit/9271f23e3a)] - **doc**: update maintaining ICU guide (Michaël Zasso) [#&#8203;40658](https://github.com/nodejs/node/pull/40658)
    
  • [`20d7d657bb`](https://github.com/nodejs/node/commit/20d7d657bb)] - **doc**: clarify getAuthTag with authTagLength (Tobias Nießen) [#&#8203;40713](https://github.com/nodejs/node/pull/40713)
    
  • [`75288fbc6b`](https://github.com/nodejs/node/commit/75288fbc6b)] - **doc**: fix order of announce work (Michael Dawson) [#&#8203;40725](https://github.com/nodejs/node/pull/40725)
    
  • [`429915aa6c`](https://github.com/nodejs/node/commit/429915aa6c)] - **doc**: add initial list of technical priorities (Michael Dawson) [#&#8203;40235](https://github.com/nodejs/node/pull/40235)
    
  • [`a5a1691514`](https://github.com/nodejs/node/commit/a5a1691514)] - **fs**: nullish coalescing to respect zero positional reads (Omar El-Mihilmy) [#&#8203;40716](https://github.com/nodejs/node/pull/40716)
    
  • [`bddb4c69b7`](https://github.com/nodejs/node/commit/bddb4c69b7)] - **http**: add missing initialization (Michael Dawson) [#&#8203;40555](https://github.com/nodejs/node/pull/40555)
    
  • [`80ce97f514`](https://github.com/nodejs/node/commit/80ce97f514)] - **http**: change totalSocketCount only on socket creation/close (Subhi Al Hasan) [#&#8203;40572](https://github.com/nodejs/node/pull/40572)
    
  • [`675c210b04`](https://github.com/nodejs/node/commit/675c210b04)] - **(SEMVER-MINOR)** **lib**: add reason to AbortSignal (James M Snell) [#&#8203;40807](https://github.com/nodejs/node/pull/40807)
    
  • [`b614b17525`](https://github.com/nodejs/node/commit/b614b17525)] - ***Revert*** "**lib**: use helper for readability" (Darshan Sen) [#&#8203;40741](https://github.com/nodejs/node/pull/40741)
    
  • [`10a842d2d1`](https://github.com/nodejs/node/commit/10a842d2d1)] - **lib**: fix typos in lib code comments (Yoshiki) [#&#8203;40792](https://github.com/nodejs/node/pull/40792)
    
  • [`3ec78d1570`](https://github.com/nodejs/node/commit/3ec78d1570)] - **meta**: add feature request label for issue template (Mestery) [#&#8203;40970](https://github.com/nodejs/node/pull/40970)
    
  • [`9c897b69a1`](https://github.com/nodejs/node/commit/9c897b69a1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40900](https://github.com/nodejs/node/pull/40900)
    
  • [`dfc6fc987a`](https://github.com/nodejs/node/commit/dfc6fc987a)] - **meta**: update name and email (Viero Fernando) [#&#8203;40848](https://github.com/nodejs/node/pull/40848)
    
  • [`813cf746a8`](https://github.com/nodejs/node/commit/813cf746a8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40809](https://github.com/nodejs/node/pull/40809)
    
  • [`e451ec9ec1`](https://github.com/nodejs/node/commit/e451ec9ec1)] - **meta**: edit GOVERNANCE.md for minor updates (Rich Trott) [#&#8203;40798](https://github.com/nodejs/node/pull/40798)
    
  • [`2536be7528`](https://github.com/nodejs/node/commit/2536be7528)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40748](https://github.com/nodejs/node/pull/40748)
    
  • [`3c8aa211cd`](https://github.com/nodejs/node/commit/3c8aa211cd)] - **module**: import assertions improvements (Geoffrey Booth) [#&#8203;40785](https://github.com/nodejs/node/pull/40785)
    
  • [`3a4f3873be`](https://github.com/nodejs/node/commit/3a4f3873be)] - **process**: support hrtime in the snapshot (Joyee Cheung) [#&#8203;40649](https://github.com/nodejs/node/pull/40649)
    
  • [`1555dbdddc`](https://github.com/nodejs/node/commit/1555dbdddc)] - **repl**: fix and extend require/import tab complete (Mestery) [#&#8203;40216](https://github.com/nodejs/node/pull/40216)
    
  • [`c2259c974b`](https://github.com/nodejs/node/commit/c2259c974b)] - **src**: reset error struct if error code is napi_ok (JckXia) [#&#8203;40552](https://github.com/nodejs/node/pull/40552)
    
  • [`3be49d6853`](https://github.com/nodejs/node/commit/3be49d6853)] - **src**: prevent extra copies of `TimerWrap::TimerCb` (Darshan Sen) [#&#8203;40665](https://github.com/nodejs/node/pull/40665)
    
  • [`0de2850680`](https://github.com/nodejs/node/commit/0de2850680)] - **(SEMVER-MINOR)** **src**: add x509.fingerprint512 to crypto module (3nprob) [#&#8203;39809](https://github.com/nodejs/node/pull/39809)
    
  • [`924d29e88f`](https://github.com/nodejs/node/commit/924d29e88f)] - **src**: add and fix some preprocessor comments (Tobias Nießen) [#&#8203;40701](https://github.com/nodejs/node/pull/40701)
    
  • [`acbd8220a7`](https://github.com/nodejs/node/commit/acbd8220a7)] - **src,crypto**: use `ByteSource::ToBuffer()` in `crypto_dh` (Darshan Sen) [#&#8203;40903](https://github.com/nodejs/node/pull/40903)
    
  • [`82b422663d`](https://github.com/nodejs/node/commit/82b422663d)] - **src,crypto**: remove `AllocatedBuffer`s from `crypto_spkac` (Darshan Sen) [#&#8203;40752](https://github.com/nodejs/node/pull/40752)
    
  • [`415b42fbdf`](https://github.com/nodejs/node/commit/415b42fbdf)] - **src,crypto**: refactor `crypto_tls.*` (Darshan Sen) [#&#8203;40675](https://github.com/nodejs/node/pull/40675)
    
  • [`88b57bc9d3`](https://github.com/nodejs/node/commit/88b57bc9d3)] - **src,doc**: add SyntaxError napi support (Idan Attias) [#&#8203;40736](https://github.com/nodejs/node/pull/40736)
    
  • [`70bd90e039`](https://github.com/nodejs/node/commit/70bd90e039)] - **stream**: stricter isReadableNodeStream (Robert Nagy) [#&#8203;40941](https://github.com/nodejs/node/pull/40941)
    
  • [`86d1c0b19d`](https://github.com/nodejs/node/commit/86d1c0b19d)] - **stream**: drain Transform with 0 highWaterMark (Robert Nagy) [#&#8203;40947](https://github.com/nodejs/node/pull/40947)
    
  • [`fa9b5c35d2`](https://github.com/nodejs/node/commit/fa9b5c35d2)] - **stream**: deprecate thenable support (Antoine du Hamel) [#&#8203;40860](https://github.com/nodejs/node/pull/40860)
    
  • [`dc99ae3bd6`](https://github.com/nodejs/node/commit/dc99ae3bd6)] - **stream**: fix the ReadableStreamBYOBReader error message (James M Snell) [#&#8203;40846](https://github.com/nodejs/node/pull/40846)
    
  • [`650c9bd022`](https://github.com/nodejs/node/commit/650c9bd022)] - **stream**: pipeline with end option (Robert Nagy) [#&#8203;40886](https://github.com/nodejs/node/pull/40886)
    
  • [`534409d4e7`](https://github.com/nodejs/node/commit/534409d4e7)] - **stream**: fix finished regression when working with legacy Stream (Matteo Collina) [#&#8203;40858](https://github.com/nodejs/node/pull/40858)
    
  • [`16ee8423d6`](https://github.com/nodejs/node/commit/16ee8423d6)] - **stream**: pipeline should drain empty readable (Robert Nagy) [#&#8203;40654](https://github.com/nodejs/node/pull/40654)
    
  • [`7d127d2fc1`](https://github.com/nodejs/node/commit/7d127d2fc1)] - **stream**: fix non readable Duplex readableAborted (Robert Nagy) [#&#8203;40801](https://github.com/nodejs/node/pull/40801)
    
  • [`7c4f9a34ae`](https://github.com/nodejs/node/commit/7c4f9a34ae)] - **stream**: allow calling callback before promise (Robert Nagy) [#&#8203;40772](https://github.com/nodejs/node/pull/40772)
    
  • [`62171eb516`](https://github.com/nodejs/node/commit/62171eb516)] - **test**: mark test-fs-watch-non-recursive flaky on Windows (Luigi Pinca) [#&#8203;40916](https://github.com/nodejs/node/pull/40916)
    
  • [`ae12a609a5`](https://github.com/nodejs/node/commit/ae12a609a5)] - **test**: improve test coverage of readline/promises (Yoshiki Kurihara) [#&#8203;40876](https://github.com/nodejs/node/pull/40876)
    
  • [`4288c6a26e`](https://github.com/nodejs/node/commit/4288c6a26e)] - **test**: deflake cluster-concurrent-disconnect (Luigi Pinca) [#&#8203;40877](https://github.com/nodejs/node/pull/40877)
    
  • [`009ab4d9bb`](https://github.com/nodejs/node/commit/009ab4d9bb)] - **test**: deflake fs-promises-watch (Luigi Pinca) [#&#8203;40863](https://github.com/nodejs/node/pull/40863)
    
  • [`522a30f469`](https://github.com/nodejs/node/commit/522a30f469)] - **test**: fix argument order in assertion (Luigi Pinca) [#&#8203;40842](https://github.com/nodejs/node/pull/40842)
    
  • [`b190b0e77b`](https://github.com/nodejs/node/commit/b190b0e77b)] - **test**: deflake http2-pipe-named-pipe (Luigi Pinca) [#&#8203;40842](https://github.com/nodejs/node/pull/40842)
    
  • [`c485460793`](https://github.com/nodejs/node/commit/c485460793)] - **test**: use descriptive name for destination file (Luigi Pinca) [#&#8203;40842](https://github.com/nodejs/node/pull/40842)
    
  • [`43e86508ae`](https://github.com/nodejs/node/commit/43e86508ae)] - **test**: add AsyncLocalStorage tests using udp, tcp and tls sockets (Darshan Sen) [#&#8203;40741](https://github.com/nodejs/node/pull/40741)
    
  • [`896073be47`](https://github.com/nodejs/node/commit/896073be47)] - **test**: deflake child-process-pipe-dataflow (Luigi Pinca) [#&#8203;40838](https://github.com/nodejs/node/pull/40838)
    
  • [`150c0f1b76`](https://github.com/nodejs/node/commit/150c0f1b76)] - **test**: add tests for invalid UTF-8 (git-srinivas) [#&#8203;40351](https://github.com/nodejs/node/pull/40351)
    
  • [`3d896231cd`](https://github.com/nodejs/node/commit/3d896231cd)] - **test**: fix flaky test-policy-integrity (Rich Trott) [#&#8203;40763](https://github.com/nodejs/node/pull/40763)
    
  • [`dc9e68899d`](https://github.com/nodejs/node/commit/dc9e68899d)] - **test**: add semicolons for linter update (Rich Trott) [#&#8203;40720](https://github.com/nodejs/node/pull/40720)
    
  • [`747247bc59`](https://github.com/nodejs/node/commit/747247bc59)] - **tools**: update gyp-next to v0.10.1 (Michaël Zasso) [#&#8203;40934](https://github.com/nodejs/node/pull/40934)
    
  • [`6ebbd0d9dc`](https://github.com/nodejs/node/commit/6ebbd0d9dc)] - **tools**: fix commit-lint GH Actions CI (Antoine du Hamel) [#&#8203;40845](https://github.com/nodejs/node/pull/40845)
    
  • [`0201f3f604`](https://github.com/nodejs/node/commit/0201f3f604)] - **tools**: ping TSC members identified as inactive (Rich Trott) [#&#8203;40915](https://github.com/nodejs/node/pull/40915)
    
  • [`22265e3fb6`](https://github.com/nodejs/node/commit/22265e3fb6)] - **tools**: update lint-md-dependencies to rollup@2.60.1 (Node.js GitHub Bot) [#&#8203;40929](https://github.com/nodejs/node/pull/40929)
    
  • [`3d593aa4ed`](https://github.com/nodejs/node/commit/3d593aa4ed)] - **tools**: update lint-md dependencies (Rich Trott) [#&#8203;40894](https://github.com/nodejs/node/pull/40894)
    
  • [`e674f61720`](https://github.com/nodejs/node/commit/e674f61720)] - **tools**: update ESLint to 8.3.0 (Luigi Pinca) [#&#8203;40917](https://github.com/nodejs/node/pull/40917)
    
  • [`878ba91bf6`](https://github.com/nodejs/node/commit/878ba91bf6)] - **tools**: add find-inactive-tsc (Rich Trott) [#&#8203;40884](https://github.com/nodejs/node/pull/40884)
    
  • [`d97ad3080f`](https://github.com/nodejs/node/commit/d97ad3080f)] - **tools**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488)
    
  • [`e3f8988118`](https://github.com/nodejs/node/commit/e3f8988118)] - **tools**: update V8 gypfiles for 9.6 (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488)
    
  • [`de4d0180dc`](https://github.com/nodejs/node/commit/de4d0180dc)] - **tools**: update [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) to 7.16.3 (Node.js GitHub Bot) [#&#8203;40889](https://github.com/nodejs/node/pull/40889)
    
  • [`727b34ec95`](https://github.com/nodejs/node/commit/727b34ec95)] - **tools**: only validate first commit message of a PR (Antoine du Hamel) [#&#8203;40740](https://github.com/nodejs/node/pull/40740)
    
  • [`5b08e908ea`](https://github.com/nodejs/node/commit/5b08e908ea)] - **tools**: update babel-eslint-parser to 7.16.0 (Rich Trott) [#&#8203;40720](https://github.com/nodejs/node/pull/40720)
    
  • [`30623c283a`](https://github.com/nodejs/node/commit/30623c283a)] - **tools**: improve update scripts (Rich Trott) [#&#8203;40644](https://github.com/nodejs/node/pull/40644)
    
    

v17.1.0

Compare Source

Notable Changes
  • [`89b34ecffb`](https://github.com/nodejs/node/commit/89b34ecffb)] - **doc**: add VoltrexMaster to collaborators (voltrexmaster) [#&#8203;40566](https://github.com/nodejs/node/pull/40566)
    
  • [`95e4d29eb4`](https://github.com/nodejs/node/commit/95e4d29eb4)] - **(SEMVER-MINOR)** **esm**: add support for JSON import assertion (Antoine du Hamel) [#&#8203;40250](https://github.com/nodejs/node/pull/40250)
    
  • [`1ddbae2d76`](https://github.com/nodejs/node/commit/1ddbae2d76)] - **(SEMVER-MINOR)** **lib**: add unsubscribe method to non-active DC channels (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433)
    
  • [`aa61551b49`](https://github.com/nodejs/node/commit/aa61551b49)] - **(SEMVER-MINOR)** **lib**: add return value for DC channel.unsubscribe (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433)
    
  • [`fbeb895ca6`](https://github.com/nodejs/node/commit/fbeb895ca6)] - **(SEMVER-MINOR)** **v8**: multi-tenant promise hook api (Stephen Belanger) [#&#8203;39283](https://github.com/nodejs/node/pull/39283)
    
    
Commits
  • [`8a00dc5add`](https://github.com/nodejs/node/commit/8a00dc5add)] - **build**: skip long-running Actions for README-only modifications (Rich Trott) [#&#8203;40571](https://github.com/nodejs/node/pull/40571)
    
  • [`9f46fca124`](https://github.com/nodejs/node/commit/9f46fca124)] - **build**: disable v8 pointer compression on 32bit archs (Cheng Zhao) [#&#8203;40418](https://github.com/nodejs/node/pull/40418)
    
  • [`5bef74395d`](https://github.com/nodejs/node/commit/5bef74395d)] - **deps**: patch V8 to 9.5.172.25 (Michaël Zasso) [#&#8203;40604](https://github.com/nodejs/node/pull/40604)
    
  • [`3805b806ee`](https://github.com/nodejs/node/commit/3805b806ee)] - **deps**: upgrade npm to 8.1.2 (npm team) [#&#8203;40643](https://github.com/nodejs/node/pull/40643)
    
  • [`c003ba131b`](https://github.com/nodejs/node/commit/c003ba131b)] - **deps**: update c-ares to 1.18.1 (Richard Lau) [#&#8203;40660](https://github.com/nodejs/node/pull/40660)
    
  • [`841f35cc52`](https://github.com/nodejs/node/commit/841f35cc52)] - **deps**: upgrade npm to 8.1.1 (npm team) [#&#8203;40554](https://github.com/nodejs/node/pull/40554)
    
  • [`8d16f0d2d3`](https://github.com/nodejs/node/commit/8d16f0d2d3)] - **deps**: V8: cherry-pick [`422dc37`](https://github.com/nodejs/node/commit/422dc378a1da) (Ray Wang) [#&#8203;40450](https://github.com/nodejs/node/pull/40450)
    
  • [`cdf5c44d62`](https://github.com/nodejs/node/commit/cdf5c44d62)] - **deps**: add riscv64 config into openssl gypi (Lu Yahan) [#&#8203;40473](https://github.com/nodejs/node/pull/40473)
    
  • [`2b9fcdfe26`](https://github.com/nodejs/node/commit/2b9fcdfe26)] - **deps**: attempt to suppress macro-redefined warning (Daniel Bevenius) [#&#8203;40518](https://github.com/nodejs/node/pull/40518)
    
  • [`d2839bfaa9`](https://github.com/nodejs/node/commit/d2839bfaa9)] - **deps**: regenerate OpenSSL arch files (Daniel Bevenius) [#&#8203;40518](https://github.com/nodejs/node/pull/40518)
    
  • [`5df8ce5cbe`](https://github.com/nodejs/node/commit/5df8ce5cbe)] - **deps,build,tools**: fix openssl-is-fips for ninja builds (Daniel Bevenius) [#&#8203;40518](https://github.com/nodejs/node/pull/40518)
    
  • [`79bf429405`](https://github.com/nodejs/node/commit/79bf429405)] - **dgram**: fix send with out of bounds offset + length (Nitzan Uziely) [#&#8203;40568](https://github.com/nodejs/node/pull/40568)
    
  • [`c29658fda7`](https://github.com/nodejs/node/commit/c29658fda7)] - **doc**: update cjs-module-lexer repo link (Guy Bedford) [#&#8203;40707](https://github.com/nodejs/node/pull/40707)
    
  • [`e374f3ddd9`](https://github.com/nodejs/node/commit/e374f3ddd9)] - **doc**: fix lint re-enabling comment in README.md (Rich Trott) [#&#8203;40647](https://github.com/nodejs/node/pull/40647)
    
  • [`ecccf48106`](https://github.com/nodejs/node/commit/ecccf48106)] - **doc**: format v8.md in preparation for stricter linting (Rich Trott) [#&#8203;40647](https://github.com/nodejs/node/pull/40647)
    
  • [`95a7117037`](https://github.com/nodejs/node/commit/95a7117037)] - **doc**: final round of markdown format changes (Rich Trott) [#&#8203;40645](https://github.com/nodejs/node/pull/40645)
    
  • [`c104f5a9ab`](https://github.com/nodejs/node/commit/c104f5a9ab)] - **doc**: remove `--experimental-modules` documentation (FrankQiu) [#&#8203;38974](https://github.com/nodejs/node/pull/38974)
    
  • [`ac81f89bbf`](https://github.com/nodejs/node/commit/ac81f89bbf)] - **doc**: update tracking issues of startup performance (Joyee Cheung) [#&#8203;40629](https://github.com/nodejs/node/pull/40629)
    
  • [`65effa11fc`](https://github.com/nodejs/node/commit/65effa11fc)] - **doc**: fix markdown syntax and HTML tag misses (ryan) [#&#8203;40608](https://github.com/nodejs/node/pull/40608)
    
  • [`c78d708a16`](https://github.com/nodejs/node/commit/c78d708a16)] - **doc**: use 'GitHub Actions workflow' instead (Mestery) [#&#8203;40586](https://github.com/nodejs/node/pull/40586)
    
  • [`71bac70bf2`](https://github.com/nodejs/node/commit/71bac70bf2)] - **doc**: ref OpenSSL legacy provider from crypto docs (Tobias Nießen) [#&#8203;40593](https://github.com/nodejs/node/pull/40593)
    
  • [`8f410229ac`](https://github.com/nodejs/node/commit/8f410229ac)] - **doc**: add node: url scheme (Daniel Nalborczyk) [#&#8203;40573](https://github.com/nodejs/node/pull/40573)
    
  • [`35dbed21f2`](https://github.com/nodejs/node/commit/35dbed21f2)] - **doc**: call cwd function (Daniel Nalborczyk) [#&#8203;40573](https://github.com/nodejs/node/pull/40573)
    
  • [`4870a23ccc`](https://github.com/nodejs/node/commit/4870a23ccc)] - **doc**: remove unused imports (Daniel Nalborczyk) [#&#8203;40573](https://github.com/nodejs/node/pull/40573)
    
  • [`5951ccc12e`](https://github.com/nodejs/node/commit/5951ccc12e)] - **doc**: simplify CHANGELOG.md (Rich Trott) [#&#8203;40475](https://github.com/nodejs/node/pull/40475)
    
  • [`6ae134ecb7`](https://github.com/nodejs/node/commit/6ae134ecb7)] - **doc**: correct esm spec scope lookup definition (Guy Bedford) [#&#8203;40592](https://github.com/nodejs/node/pull/40592)
    
  • [`09239216f6`](https://github.com/nodejs/node/commit/09239216f6)] - **doc**: update CHANGELOG.md for Node.js 16.13.0 (Richard Lau) [#&#8203;40617](https://github.com/nodejs/node/pull/40617)
    
  • [`46ec5ac4df`](https://github.com/nodejs/node/commit/46ec5ac4df)] - **doc**: add info on project's usage of coverity (Michael Dawson) [#&#8203;40506](https://github.com/nodejs/node/pull/40506)
    
  • [`7eb1a44410`](https://github.com/nodejs/node/commit/7eb1a44410)] - **doc**: fix typo in changelogs (Luigi Pinca) [#&#8203;40585](https://github.com/nodejs/node/pull/40585)
    
  • [`132f6cba05`](https://github.com/nodejs/node/commit/132f6cba05)] - **doc**: update onboarding task (Rich Trott) [#&#8203;40570](https://github.com/nodejs/node/pull/40570)
    
  • [`5e2d0ed61e`](https://github.com/nodejs/node/commit/5e2d0ed61e)] - **doc**: simplify ccache instructions (Rich Trott) [#&#8203;40550](https://github.com/nodejs/node/pull/40550)
    
  • [`c1c1738bfc`](https://github.com/nodejs/node/commit/c1c1738bfc)] - **doc**: fix macOS environment variables for ccache (Rich Trott) [#&#8203;40550](https://github.com/nodejs/node/pull/40550)
    
  • [`6e3e50f2ab`](https://github.com/nodejs/node/commit/6e3e50f2ab)] - **doc**: improve async_context introduction (Michaël Zasso) [#&#8203;40560](https://github.com/nodejs/node/pull/40560)
    
  • [`1587fe62d4`](https://github.com/nodejs/node/commit/1587fe62d4)] - **doc**: use GFM footnotes in webcrypto.md (Rich Trott) [#&#8203;40477](https://github.com/nodejs/node/pull/40477)
    
  • [`305c022db4`](https://github.com/nodejs/node/commit/305c022db4)] - **doc**: describe buffer limit of v8.serialize (Ray Wang) [#&#8203;40243](https://github.com/nodejs/node/pull/40243)
    
  • [`6e39e0e10a`](https://github.com/nodejs/node/commit/6e39e0e10a)] - **doc**: run license-builder (Rich Trott) [#&#8203;40540](https://github.com/nodejs/node/pull/40540)
    
  • [`556e49ccb5`](https://github.com/nodejs/node/commit/556e49ccb5)] - **doc**: use GFM footnotes in maintaining-V8.md ([#&#8203;40476](https://github.com/nodejs/node/issues/40476)) (Rich Trott) [#&#8203;40476](https://github.com/nodejs/node/pull/40476)
    
  • [`9c6a9fd5b1`](https://github.com/nodejs/node/commit/9c6a9fd5b1)] - **doc**: use GFM footnotes in BUILDING.md (Rich Trott) [#&#8203;40474](https://github.com/nodejs/node/pull/40474)
    
  • [`fd946215cc`](https://github.com/nodejs/node/commit/fd946215cc)] - **doc**: fix `fs.symlink` code example (Juan José Arboleda) [#&#8203;40414](https://github.com/nodejs/node/pull/40414)
    
  • [`404730ac1b`](https://github.com/nodejs/node/commit/404730ac1b)] - **doc**: update for changed `--dns-result-order` default (Richard Lau) [#&#8203;40538](https://github.com/nodejs/node/pull/40538)
    
  • [`acc22c7c4a`](https://github.com/nodejs/node/commit/acc22c7c4a)] - **doc**: add missing entry in `globals.md` (Antoine du Hamel) [#&#8203;40531](https://github.com/nodejs/node/pull/40531)
    
  • [`0375d958ef`](https://github.com/nodejs/node/commit/0375d958ef)] - **doc**: explain backport labels (Stephen Belanger) [#&#8203;40520](https://github.com/nodejs/node/pull/40520)
    
  • [`4993d87c49`](https://github.com/nodejs/node/commit/4993d87c49)] - **doc**: fix entry for Slack channel in onboarding.md (Rich Trott) [#&#8203;40563](https://github.com/nodejs/node/pull/40563)
    
  • [`89b34ecffb`](https://github.com/nodejs/node/commit/89b34ecffb)] - **doc**: add VoltrexMaster to collaborators (voltrexmaster) [#&#8203;40566](https://github.com/nodejs/node/pull/40566)
    
  • [`6357ef15d0`](https://github.com/nodejs/node/commit/6357ef15d0)] - **doc**: document considerations for inclusion in core (Rich Trott) [#&#8203;40338](https://github.com/nodejs/node/pull/40338)
    
  • [`ed04827373`](https://github.com/nodejs/node/commit/ed04827373)] - **doc**: update link in onboarding doc (Rich Trott) [#&#8203;40539](https://github.com/nodejs/node/pull/40539)
    
  • [`34e244b8e9`](https://github.com/nodejs/node/commit/34e244b8e9)] - **doc**: clarify behavior of napi_extended_error_info (Michael Dawson) [#&#8203;40458](https://github.com/nodejs/node/pull/40458)
    
  • [`5a588ff047`](https://github.com/nodejs/node/commit/5a588ff047)] - **doc**: add updating expected assets to release guide (Richard Lau) [#&#8203;40470](https://github.com/nodejs/node/pull/40470)
    
  • [`95e4d29eb4`](https://github.com/nodejs/node/commit/95e4d29eb4)] - **(SEMVER-MINOR)** **esm**: add support for JSON import assertion (Antoine du Hamel) [#&#8203;40250](https://github.com/nodejs/node/pull/40250)
    
  • [`825a683423`](https://github.com/nodejs/node/commit/825a683423)] - **http**: response should always emit 'close' (Robert Nagy) [#&#8203;40543](https://github.com/nodejs/node/pull/40543)
    
  • [`81cd7f3751`](https://github.com/nodejs/node/commit/81cd7f3751)] - **lib**: fix regular expression to detect \`/\` and \`\\\` (Francesco Trotta) [#&#8203;40325](https://github.com/nodejs/node/pull/40325)
    
  • [`1ddbae2d76`](https://github.com/nodejs/node/commit/1ddbae2d76)] - **(SEMVER-MINOR)** **lib**: add unsubscribe method to non-active DC channels (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433)
    
  • [`aa61551b49`](https://github.com/nodejs/node/commit/aa61551b49)] - **(SEMVER-MINOR)** **lib**: add return value for DC channel.unsubscribe (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433)
    
  • [`d97872dd98`](https://github.com/nodejs/node/commit/d97872dd98)] - **meta**: use form schema for flaky test template (Michaël Zasso) [#&#8203;40737](https://github.com/nodejs/node/pull/40737)
    
  • [`c2fabdbce8`](https://github.com/nodejs/node/commit/c2fabdbce8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40668](https://github.com/nodejs/node/pull/40668)
    
  • [`aa98c6bdce`](https://github.com/nodejs/node/commit/aa98c6bdce)] - **meta**: consolidate AUTHORS entries for brettkiefer (Rich Trott) [#&#8203;40599](https://github.com/nodejs/node/pull/40599)
    
  • [`18296c3d8e`](https://github.com/nodejs/node/commit/18296c3d8e)] - **meta**: consolidate AUTHORS entries for alexzherdev (Rich Trott) [#&#8203;40620](https://github.com/nodejs/node/pull/40620)
    
  • [`88d812793d`](https://github.com/nodejs/node/commit/88d812793d)] - **meta**: consolidate AUTHORS entries for Azard (Rich Trott) [#&#8203;40619](https://github.com/nodejs/node/pull/40619)
    
  • [`d81b65ca0e`](https://github.com/nodejs/node/commit/d81b65ca0e)] - **meta**: move Fishrock123 to emeritus (Jeremiah Senkpiel) [#&#8203;40596](https://github.com/nodejs/node/pull/40596)
    
  • [`ec02e7b68a`](https://github.com/nodejs/node/commit/ec02e7b68a)] - **meta**: consolidate AUTHORS entries for clakech (Rich Trott) [#&#8203;40589](https://github.com/nodejs/node/pull/40589)
    
  • [`08e7a2ff24`](https://github.com/nodejs/node/commit/08e7a2ff24)] - **meta**: consolidate AUTHORS entries for darai0512 (Rich Trott) [#&#8203;40569](https://github.com/nodejs/node/pull/40569)
    
  • [`488ee51f90`](https://github.com/nodejs/node/commit/488ee51f90)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40580](https://github.com/nodejs/node/pull/40580)
    
  • [`ba9a6c5d06`](https://github.com/nodejs/node/commit/ba9a6c5d06)] - **meta**: consolidate AUTHORS entries for dfabulich (Rich Trott) [#&#8203;40527](https://github.com/nodejs/node/pull/40527)
    
  • [`bd06e9945e`](https://github.com/nodejs/node/commit/bd06e9945e)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;40464](https://github.com/nodejs/node/pull/40464)
    
  • [`7cee125dcf`](https://github.com/nodejs/node/commit/7cee125dcf)] - **meta**: add Richard Lau to TSC list in README.md (Rich Trott) [#&#8203;40523](https://github.com/nodejs/node/pull/40523)
    
  • [`6a771f8bcb`](https://github.com/nodejs/node/commit/6a771f8bcb)] - **meta**: consolidate AUTHORS entries for dguo (Rich Trott) [#&#8203;40517](https://github.com/nodejs/node/pull/40517)
    
  • [`e4c740646d`](https://github.com/nodejs/node/commit/e4c740646d)] - **meta**: consolidate AUTHORS entries for cxreg (Rich Trott) [#&#8203;40490](https://github.com/nodejs/node/pull/40490)
    
  • [`075cfbf941`](https://github.com/nodejs/node/commit/075cfbf941)] - **module**: resolver & spec hardening /w refactoring (Guy Bedford) [#&#8203;40510](https://github.com/nodejs/node/pull/40510)
    
  • [`b320387c83`](https://github.com/nodejs/node/commit/b320387c83)] - **policy**: fix message for invalid manifest specifier (Rich Trott) [#&#8203;40574](https://github.com/nodejs/node/pull/40574)
    
  • [`ea968d54c5`](https://github.com/nodejs/node/commit/ea968d54c5)] - **process**: refactor execution (Voltrex) [#&#8203;40664](https://github.com/nodejs/node/pull/40664)
    
  • [`fb7c437b0b`](https://github.com/nodejs/node/commit/fb7c437b0b)] - **src**: make LoadEnvironment with string work with builtin modules path (Michaël Zasso) [#&#8203;40607](https://github.com/nodejs/node/pull/40607)
    
  • [`e9388c87bf`](https://github.com/nodejs/node/commit/e9388c87bf)] - **src**: remove usage of `AllocatedBuffer` from `node_http2` (Darshan Sen) [#&#8203;40584](https://github.com/nodejs/node/pull/40584)
    
  • [`7a22f913b0`](https://github.com/nodejs/node/commit/7a22f913b0)] - **src**: fix #endif description in crypto_keygen.h (Tobias Nießen) [#&#8203;40639](https://github.com/nodejs/node/pull/40639)
    
  • [`396342e26d`](https://github.com/nodejs/node/commit/396342e26d)] - **src**: throw error instead of assertion (Ray Wang) [#&#8203;40243](https://github.com/nodejs/node/pull/40243)
    
  • [`accab383a1`](https://github.com/nodejs/node/commit/accab383a1)] - **src**: register external references in os bindings (Joyee Cheung) [#&#8203;40239](https://github.com/nodejs/node/pull/40239)
    
  • [`a11f9ea4f0`](https://github.com/nodejs/node/commit/a11f9ea4f0)] - **src**: register external references in crypto bindings (Joyee Cheung) [#&#8203;40239](https://github.com/nodejs/node/pull/40239)
    
  • [`ef1ace7e88`](https://github.com/nodejs/node/commit/ef1ace7e88)] - **src,crypto**: use `std::variant` in DH params (Darshan Sen) [#&#8203;40457](https://github.com/nodejs/node/pull/40457)
    
  • [`4433852f62`](https://github.com/nodejs/node/commit/4433852f62)] - **src,crypto**: remove `AllocatedBuffer` from `crypto_cipher.cc` (Darshan Sen) [#&#8203;40400](https://github.com/nodejs/node/pull/40400)
    
  • [`814126c3ed`](https://github.com/nodejs/node/commit/814126c3ed)] - **src,fs**: remove `ToLocalChecked()` call from `fs::AfterMkdirp()` (Darshan Sen) [#&#8203;40386](https://github.com/nodejs/node/pull/40386)
    
  • [`d4b45cc249`](https://github.com/nodejs/node/commit/d4b45cc249)] - **src,stream**: remove `*Check*()` calls from non-`Initialize()` functions (Darshan Sen) [#&#8203;40425](https://github.com/nodejs/node/pull/40425)
    
  • [`bac7fe0797`](https://github.com/nodejs/node/commit/bac7fe0797)] - **stream**: remove no longer necessary ComposeDuplex (Robert Nagy) [#&#8203;40545](https://github.com/nodejs/node/pull/40545)
    
  • [`e58cce49fd`](https://github.com/nodejs/node/commit/e58cce49fd)] - **test**: disable warnings to fix flaky test (Antoine du Hamel) [#&#8203;40739](https://github.com/nodejs/node/pull/40739)
    
  • [`8c103ab2ff`](https://github.com/nodejs/node/commit/8c103ab2ff)] - **test**: skip macos sandbox test with builtin modules path (Michaël Zasso) [#&#8203;40607](https://github.com/nodejs/node/pull/40607)
    
  • [`ac3bc6eed0`](https://github.com/nodejs/node/commit/ac3bc6eed0)] - **test**: add semicolon after chunk size (Luigi Pinca) [#&#8203;40487](https://github.com/nodejs/node/pull/40487)
    
  • [`95fe9bb922`](https://github.com/nodejs/node/commit/95fe9bb922)] - **test**: deflake http2-cancel-while-client-reading (Luigi Pinca) [#&#8203;40659](https://github.com/nodejs/node/pull/40659)
    
  • [`dfd0215266`](https://github.com/nodejs/node/commit/dfd0215266)] - **test**: avoid deep comparisons with literals (Tobias Nießen) [#&#8203;40634](https://github.com/nodejs/node/pull/40634)
    
  • [`5020f634b8`](https://github.com/nodejs/node/commit/5020f634b8)] - **test**: mark test-policy-integrity flaky on Windows (Rich Trott) [#&#8203;40684](https://github.com/nodejs/node/pull/40684)
    
  • [`8fa1c61e40`](https://github.com/nodejs/node/commit/8fa1c61e40)] - **test**: fix test-datetime-change-notify after daylight change (Piotr Rybak) [#&#8203;40684](https://github.com/nodejs/node/pull/40684)
    
  • [`179a5c5436`](https://github.com/nodejs/node/commit/179a5c5436)] - **test**: test `crypto.setEngine()` using an actual engine (Darshan Sen) [#&#8203;40481](https://github.com/nodejs/node/pull/40481)
    
  • [`cf6ded4db5`](https://github.com/nodejs/node/commit/cf6ded4db5)] - **test**: use conventional argument order in assertion (Tobias Nießen) [#&#8203;40591](https://github.com/nodejs/node/pull/40591)
    
  • [`aefb097d6a`](https://github.com/nodejs/node/commit/aefb097d6a)] - **test**: fix test description (Luigi Pinca) [#&#8203;40486](https://github.com/nodejs/node/pull/40486)
    
  • [`126e669b84`](https://github.com/nodejs/node/commit/126e669b84)] - **test,doc**: correct documentation for runBenchmark() (Rich Trott) [#&#8203;40683](https://github.com/nodejs/node/pull/40683)
    
  • [`1844463ce2`](https://github.com/nodejs/node/commit/1844463ce2)] - **test,tools**: increase pummel/benchmark test timeout from 4x to 6x (Rich Trott) [#&#8203;40684](https://github.com/nodejs/node/pull/40684)
    
  • [`f731f5ffb5`](https://github.com/nodejs/node/commit/f731f5ffb5)] - **test,tools**: increase timeout for benchmark tests (Rich Trott) [#&#8203;40684](https://github.com/nodejs/node/pull/40684)
    
  • [`bbc10f1849`](https://github.com/nodejs/node/commit/bbc10f1849)] - **tools**: simplify and fix commit queue (Michaël Zasso) [#&#8203;40742](https://github.com/nodejs/node/pull/40742)
    
  • [`a3df50d810`](https://github.com/nodejs/node/commit/a3df50d810)] - **tools**: ensure the PR was not pushed before merging (Antoine du Hamel) [#&#8203;40747](https://github.com/nodejs/node/pull/40747)
    
  • [`306d953c15`](https://github.com/nodejs/node/commit/306d953c15)] - **tools**: update ESLint to 8.2.0 (Luigi Pinca) [#&#8203;40734](https://github.com/nodejs/node/pull/40734)
    
  • [`b7e736843c`](https://github.com/nodejs/node/commit/b7e736843c)] - **tools**: use GitHub Squash and Merge feature when using CQ (Antoine du Hamel) [#&#8203;40666](https://github.com/nodejs/node/pull/40666)
    
  • [`50d102ec08`](https://github.com/nodejs/node/commit/50d102ec08)] - **tools**: fix bug in `prefer-primordials` ESLint rule (Antoine du Hamel) [#&#8203;40628](https://github.com/nodejs/node/pull/40628)
    
  • [`ec2cadef85`](https://github.com/nodejs/node/commit/ec2cadef85)] - **tools**: add script to update c-ares (Richard Lau) [#&#8203;40660](https://github.com/nodejs/node/pull/40660)
    
  • [`5daa313215`](https://github.com/nodejs/node/commit/5daa313215)] - **tools**: notify user if format-md needs to be run (Rich Trott) [#&#8203;40647](https://github.com/nodejs/node/pull/40647)
    
  • [`0787c781ce`](https://github.com/nodejs/node/commit/0787c781ce)] - **tools**: abort CQ session when landing several commits (Antoine du Hamel) [#&#8203;40577](https://github.com/nodejs/node/pull/40577)
    
  • [`ddc44ddfd9`](https://github.com/nodejs/node/commit/ddc44ddfd9)] - **tools**: fix commit-lint workflow (Antoine du Hamel) [#&#8203;40673](https://github.com/nodejs/node/pull/40673)
    
  • [`47eddd7076`](https://github.com/nodejs/node/commit/47eddd7076)] - **tools**: avoid unnecessary escaping in markdown formatter (Rich Trott) [#&#8203;40645](https://github.com/nodejs/node/pull/40645)
    
  • [`c700de3705`](https://github.com/nodejs/node/commit/c700de3705)] - **tools**: avoid fetch extra commits when validating commit messages (Antoine du Hamel) [#&#8203;39128](https://github.com/nodejs/node/pull/39128)
    
  • [`716963484b`](https://github.com/nodejs/node/commit/716963484b)] - **tools**: update ESLint to 8.1.0 (Luigi Pinca) [#&#8203;40582](https://github.com/nodejs/node/pull/40582)
    
  • [`9cb2116608`](https://github.com/nodejs/node/commit/9cb2116608)] - **tools**: fix formatting of warning message in update-authors.js (Rich Trott) [#&#8203;40600](https://github.com/nodejs/node/pull/40600)
    
  • [`507f1dbc8d`](https://github.com/nodejs/node/commit/507f1dbc8d)] - **tools**: udpate doc tools to accommodate GFM footnotes (Rich Trott) [#&#8203;40477](https://github.com/nodejs/node/pull/40477)
    
  • [`c2265a92c3`](https://github.com/nodejs/node/commit/c2265a92c3)] - **tools**: update license-builder.sh for OpenSSL (Rich Trott) [#&#8203;40540](https://github.com/nodejs/node/pull/40540)
    
  • [`16624b404c`](https://github.com/nodejs/node/commit/16624b404c)] - **tools,meta**: remove exclusions from AUTHORS (Rich Trott) [#&#8203;40648](https://github.com/nodejs/node/pull/40648)
    
  • [`a95e344fe5`](https://github.com/nodejs/node/commit/a95e344fe5)] - **tty**: support more CI services in `getColorDepth` (Richie Bendall) [#&#8203;40385](https://github.com/nodejs/node/pull/40385)
    
  • [`b4194ff349`](https://github.com/nodejs/node/commit/b4194ff349)] - **typings**: add more bindings typings (Mestery) [#&#8203;40415](https://github.com/nodejs/node/pull/40415)
    
  • [`da859b56cb`](https://github.com/nodejs/node/commit/da859b56cb)] - **typings**: add JSDoc typings for inspector (Voltrex) [#&#8203;38390](https://github.com/nodejs/node/pull/38390)
    
  • [`90aa96dc44`](https://github.com/nodejs/node/commit/90aa96dc44)] - **typings**: improve internal bindings typings (Mestery) [#&#8203;40411](https://github.com/nodejs/node/pull/40411)
    
  • [`1e9f3cc522`](https://github.com/nodejs/node/commit/1e9f3cc522)] - **typings**: separate `internalBinding` typings (Mestery) [#&#8203;40409](https://github.com/nodejs/node/pull/40409)
    
  • [`fbeb895ca6`](https://github.com/nodejs/node/commit/fbeb895ca6)] - **(SEMVER-MINOR)** **v8**: multi-tenant promise hook api (Stephen Belanger) [#&#8203;39283](https://github.com/nodejs/node/pull/39283)
    
    

v17.0.1

Compare Source

Notable Changes
Fixed distribution for native addon builds

This release fixes an issue introduced in Node.js v17.0.0, where some V8 headers
were missing from the distributed tarball, making it impossible to build native
addons. These headers are now included. #​40526

Fixed stream issues
  • Fixed a regression in stream.promises.pipeline, which was introduced in version
    16.10.0, is fixed. It is now possible again to pass an array of streams to the
    function. #​40193
  • Fixed a bug in stream.Duplex.from, which didn't work properly when an async
    generator function was passed to it. #​40499
Commits
  • [`3f033556c3`](https://github.com/nodejs/node/commit/3f033556c3)] - **build**: include missing V8 headers in distribution (Michaël Zasso) [#&#8203;40526](https://github.com/nodejs/node/pull/40526)
    
  • [`adbd92ef1d`](https://github.com/nodejs/node/commit/adbd92ef1d)] - **crypto**: avoid double free (Michael Dawson) [#&#8203;40380](https://github.com/nodejs/node/pull/40380)
    
  • [`8dce85aadc`](https://github.com/nodejs/node/commit/8dce85aadc)] - **doc**: format doc/api/\*.md with markdown formatter (Rich Trott) [#&#8203;40403](https://github.com/nodejs/node/pull/40403)
    
  • [`977016a72f`](https://github.com/nodejs/node/commit/977016a72f)] - **doc**: specify that maxFreeSockets is per host (Luigi Pinca) [#&#8203;40483](https://github.com/nodejs/node/pull/40483)
    
  • [`f9f2442739`](https://github.com/nodejs/node/commit/f9f2442739)] - **src**: add missing inialization in agent.h (Michael Dawson) [#&#8203;40379](https://github.com/nodejs/node/pull/40379)
    
  • [`111f0bd9b6`](https://github.com/nodejs/node/commit/111f0bd9b6)] - **stream**: fix fromAsyncGen (Robert Nagy) [#&#8203;40499](https://github.com/nodejs/node/pull/40499)
    
  • [`b84f101049`](https://github.com/nodejs/node/commit/b84f101049)] - **stream**: support array of streams in promises pipeline (Mestery) [#&#8203;40193](https://github.com/nodejs/node/pull/40193)
    
  • [`3f7c503b69`](https://github.com/nodejs/node/commit/3f7c503b69)] - **test**: adjust CLI flags test to ignore blank lines in doc (Rich Trott) [#&#8203;40403](https://github.com/nodejs/node/pull/40403)
    
  • [`7c42d9fcc6`](https://github.com/nodejs/node/commit/7c42d9fcc6)] - **test**: split test-crypto-dh.js (Joyee Cheung) [#&#8203;40451](https://github.com/nodejs/node/pull/40451)
    
    

v17.0.0

Compare Source

Notable Changes
Deprecations and Removals
  • [`f182b9b29f`](https://github.com/nodejs/node/commit/f182b9b29f)] - **(SEMVER-MAJOR)** **dns**: runtime deprecate type coercion of `dns.lookup` options (Antoine du Hamel) [#&#8203;39793](https://github.com/nodejs/node/pull/39793)
    
  • [`4b030d0573`](https://github.com/nodejs/node/commit/4b030d0573)] - **doc**: deprecate (doc-only) http abort related (dr-js) [#&#8203;36670](https://github.com/nodejs/node/pull/36670)
    
  • [`36e2ffe6dc`](https://github.com/nodejs/node/commit/36e2ffe6dc)] - **(SEMVER-MAJOR)** **module**: subpath folder mappings EOL (Guy Bedford) [#&#8203;40121](https://github.com/nodejs/node/pull/40121)
    
  • [`64287e4d45`](https://github.com/nodejs/node/commit/64287e4d45)] - **(SEMVER-MAJOR)** **module**: runtime deprecate trailing slash patterns (Guy Bedford) [#&#8203;40117](https://github.com/nodejs/node/pull/40117)
    
    
OpenSSL 3.0

Node.js now includes OpenSSL 3.0, specifically quictls/openssl which provides QUIC support. With OpenSSL 3.0 FIPS support is again available using the new FIPS module. For details about how to build Node.js with FIPS support please see BUILDING.md.

While OpenSSL 3.0 APIs should be mostly compatible with those provided by OpenSSL 1.1.1, we do anticipate some ecosystem impact due to tightened restrictions on the allowed algorithms and key sizes.

If you hit an ERR_OSSL_EVP_UNSUPPORTED error in your application with Node.js 17, it’s likely that your application or a module you’re using is attempting to use an algorithm or key size which is no longer allowed by default with OpenSSL 3.0. A command-line option, --openssl-legacy-provider, has been added to revert to the legacy provider as a temporary workaround for these tightened restrictions.

For details about all the features in OpenSSL 3.0 please see the OpenSSL 3.0 release blog.

Contributed in https://github.com/nodejs/node/pull/38512, https://github.com/nodejs/node/pull/40478

V8 9.5

The V8 JavaScript engine is updated to V8 9.5. This release comes with additional supported types for the Intl.DisplayNames API and Extended timeZoneName options in the Intl.DateTimeFormat API.

You can read more details in the V8 9.5 release post - https://v8.dev/blog/v8-release-95.

Contributed by Michaël Zasso - https://github.com/nodejs/node/pull/40178

Readline Promise API

The readline module provides an interface for reading data from a Readable
stream (such as process.stdin) one line at a time.

The following simple example illustrates the basic use of the readline module:

import * as readline from 'node:readline/promises';
import { stdin as input, stdout as output } from 'process';

const rl = readline.createInterface({ input, output });

const answer = await rl.question('What do you think of Node.js? ');

console.log(`Thank you for your valuable feedback: ${answer}`);

rl.close();

Contributed by Antoine du Hamel - https://github.com/nodejs/node/pull/37947

Other Notable Changes
  • [`1b2749ecbe`](https://github.com/nodejs/node/commit/1b2749ecbe)] - **(SEMVER-MAJOR)** **dns**: default to verbatim=true in dns.lookup() (treysis) [#&#8203;39987](https://github.com/nodejs/node/pull/39987)
    
  • [`59d3d542d6`](https://github.com/nodejs/node/commit/59d3d542d6)] - **(SEMVER-MAJOR)** **errors**: print Node.js version on fatal exceptions that cause exit (Divlo) [#&#8203;38332](https://github.com/nodejs/node/pull/38332)
    
  • [`a35b7e0427`](https://github.com/nodejs/node/commit/a35b7e0427)] - **deps**: upgrade npm to 8.1.0 (npm team) [#&#8203;40463](https://github.com/nodejs/node/pull/40463)
    
  • [`6cd12be347`](https://github.com/nodejs/node/commit/6cd12be347)] - **(SEMVER-MINOR)** **fs**: add FileHandle.prototype.readableWebStream() (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331)
    
  • [`d0a898681f`](https://github.com/nodejs/node/commit/d0a898681f)] - **(SEMVER-MAJOR)** **lib**: add structuredClone() global (Ethan Arrowood) [#&#8203;39759](https://github.com/nodejs/node/pull/39759)
    
  • [`e4b1fb5e64`](https://github.com/nodejs/node/commit/e4b1fb5e64)] - **(SEMVER-MAJOR)** **lib**: expose `DOMException` as global (Khaidi Chu) [#&#8203;39176](https://github.com/nodejs/node/pull/39176)
    
  • [`0738a2b7bd`](https://github.com/nodejs/node/commit/0738a2b7bd)] - **(SEMVER-MAJOR)** **stream**: finished should error on errored stream (Robert Nagy) [#&#8203;39235](https://github.com/nodejs/node/pull/39235)
    
    
Semver-Major Commits
  • [`9dfa30bdd5`](https://github.com/nodejs/node/commit/9dfa30bdd5)] - **(SEMVER-MAJOR)** **build**: compile with C++17 (MSVC) (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807)
    
  • [`9f0bc602e4`](https://github.com/nodejs/node/commit/9f0bc602e4)] - **(SEMVER-MAJOR)** **build**: compile with --gnu++17 (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807)
    
  • [`62719c5fd2`](https://github.com/nodejs/node/commit/62719c5fd2)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.5.172.19 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`66da32c045`](https://github.com/nodejs/node/commit/66da32c045)] - **(SEMVER-MAJOR)** **deps,test,src,doc,tools**: update to OpenSSL 3.0 (Daniel Bevenius) [#&#8203;38512](https://github.com/nodejs/node/pull/38512)
    
  • [`40c6e838df`](https://github.com/nodejs/node/commit/40c6e838df)] - **(SEMVER-MAJOR)** **dgram**: tighten `address` validation in `socket.send` (Voltrex) [#&#8203;39190](https://github.com/nodejs/node/pull/39190)
    
  • [`f182b9b29f`](https://github.com/nodejs/node/commit/f182b9b29f)] - **(SEMVER-MAJOR)** **dns**: runtime deprecate type coercion of `dns.lookup` options (Antoine du Hamel) [#&#8203;39793](https://github.com/nodejs/node/pull/39793)
    
  • [`1b2749ecbe`](https://github.com/nodejs/node/commit/1b2749ecbe)] - **(SEMVER-MAJOR)** **dns**: default to verbatim=true in dns.lookup() (treysis) [#&#8203;39987](https://github.com/nodejs/node/pull/39987)
    
  • [`ae876d420c`](https://github.com/nodejs/node/commit/ae876d420c)] - **(SEMVER-MAJOR)** **doc**: update minimum supported FreeBSD to 12.2 (Michaël Zasso) [#&#8203;40179](https://github.com/nodejs/node/pull/40179)
    
  • [`59d3d542d6`](https://github.com/nodejs/node/commit/59d3d542d6)] - **(SEMVER-MAJOR)** **errors**: print Node.js version on fatal exceptions that cause exit (Divlo) [#&#8203;38332](https://github.com/nodejs/node/pull/38332)
    
  • [`f9447b71a6`](https://github.com/nodejs/node/commit/f9447b71a6)] - **(SEMVER-MAJOR)** **fs**: fix rmsync error swallowing (Nitzan Uziely) [#&#8203;38684](https://github.com/nodejs/node/pull/38684)
    
  • [`f27b7cf95c`](https://github.com/nodejs/node/commit/f27b7cf95c)] - **(SEMVER-MAJOR)** **fs**: aggregate errors in fsPromises to avoid error swallowing (Nitzan Uziely) [#&#8203;38259](https://github.com/nodejs/node/pull/38259)
    
  • [`d0a898681f`](https://github.com/nodejs/node/commit/d0a898681f)] - **(SEMVER-MAJOR)** **lib**: add structuredClone() global (Ethan Arrowood) [#&#8203;39759](https://github.com/nodejs/node/pull/39759)
    
  • [`e4b1fb5e64`](https://github.com/nodejs/node/commit/e4b1fb5e64)] - **(SEMVER-MAJOR)** **lib**: expose `DOMException` as global (Khaidi Chu) [#&#8203;39176](https://github.com/nodejs/node/pull/39176)
    
  • [`36e2ffe6dc`](https://github.com/nodejs/node/commit/36e2ffe6dc)] - **(SEMVER-MAJOR)** **module**: subpath folder mappings EOL (Guy Bedford) [#&#8203;40121](https://github.com/nodejs/node/pull/40121)
    
  • [`64287e4d45`](https://github.com/nodejs/node/commit/64287e4d45)] - **(SEMVER-MAJOR)** **module**: runtime deprecate trailing slash patterns (Guy Bedford) [#&#8203;40117](https://github.com/nodejs/node/pull/40117)
    
  • [`707dd77d86`](https://github.com/nodejs/node/commit/707dd77d86)] - **(SEMVER-MAJOR)** **readline**: validate `AbortSignal`s and remove unused event listeners (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947)
    
  • [`8122d243ae`](https://github.com/nodejs/node/commit/8122d243ae)] - **(SEMVER-MAJOR)** **readline**: introduce promise-based API (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947)
    
  • [`592d1c3d44`](https://github.com/nodejs/node/commit/592d1c3d44)] - **(SEMVER-MAJOR)** **readline**: refactor `Interface` to ES2015 class (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947)
    
  • [`3f619407fe`](https://github.com/nodejs/node/commit/3f619407fe)] - **(SEMVER-MAJOR)** **src**: allow CAP_NET_BIND_SERVICE in SafeGetenv (Daniel Bevenius) [#&#8203;37727](https://github.com/nodejs/node/pull/37727)
    
  • [`0a7f850123`](https://github.com/nodejs/node/commit/0a7f850123)] - **(SEMVER-MAJOR)** **src**: return Maybe from a couple of functions (Darshan Sen) [#&#8203;39603](https://github.com/nodejs/node/pull/39603)
    
  • [`bdaf51bae7`](https://github.com/nodejs/node/commit/bdaf51bae7)] - **(SEMVER-MAJOR)** **src**: allow custom PageAllocator in NodePlatform (Shelley Vohr) [#&#8203;38362](https://github.com/nodejs/node/pull/38362)
    
  • [`0c6f345cda`](https://github.com/nodejs/node/commit/0c6f345cda)] - **(SEMVER-MAJOR)** **stream**: fix highwatermark threshold and add the missing error (Rongjian Zhang) [#&#8203;38700](https://github.com/nodejs/node/pull/38700)
    
  • [`0e841b45c2`](https://github.com/nodejs/node/commit/0e841b45c2)] - **(SEMVER-MAJOR)** **stream**: don't emit 'data' after 'error' or 'close' (Robert Nagy) [#&#8203;39639](https://github.com/nodejs/node/pull/39639)
    
  • [`ef992f6de9`](https://github.com/nodejs/node/commit/ef992f6de9)] - **(SEMVER-MAJOR)** **stream**: do not emit `end` on readable error (Szymon Marczak) [#&#8203;39607](https://github.com/nodejs/node/pull/39607)
    
  • [`efd40eadab`](https://github.com/nodejs/node/commit/efd40eadab)] - **(SEMVER-MAJOR)** **stream**: forward errored to callback (Robert Nagy) [#&#8203;39364](https://github.com/nodejs/node/pull/39364)
    
  • [`09d8c0c8d2`](https://github.com/nodejs/node/commit/09d8c0c8d2)] - **(SEMVER-MAJOR)** **stream**: destroy readable on read error (Robert Nagy) [#&#8203;39342](https://github.com/nodejs/node/pull/39342)
    
  • [`a5dec3a470`](https://github.com/nodejs/node/commit/a5dec3a470)] - **(SEMVER-MAJOR)** **stream**: validate abort signal (Robert Nagy) [#&#8203;39346](https://github.com/nodejs/node/pull/39346)
    
  • [`bb275ef2a4`](https://github.com/nodejs/node/commit/bb275ef2a4)] - **(SEMVER-MAJOR)** **stream**: unify stream utils (Robert Nagy) [#&#8203;39294](https://github.com/nodejs/node/pull/39294)
    
  • [`b2ae12d422`](https://github.com/nodejs/node/commit/b2ae12d422)] - **(SEMVER-MAJOR)** **stream**: throw on premature close in Readable\[AsyncIterator] (Darshan Sen) [#&#8203;39117](https://github.com/nodejs/node/pull/39117)
    
  • [`0738a2b7bd`](https://github.com/nodejs/node/commit/0738a2b7bd)] - **(SEMVER-MAJOR)** **stream**: finished should error on errored stream (Robert Nagy) [#&#8203;39235](https://github.com/nodejs/node/pull/39235)
    
  • [`954217adda`](https://github.com/nodejs/node/commit/954217adda)] - **(SEMVER-MAJOR)** **stream**: error Duplex write/read if not writable/readable (Robert Nagy) [#&#8203;34385](https://github.com/nodejs/node/pull/34385)
    
  • [`f4609bdf3f`](https://github.com/nodejs/node/commit/f4609bdf3f)] - **(SEMVER-MAJOR)** **stream**: bypass legacy destroy for pipeline and async iteration (Robert Nagy) [#&#8203;38505](https://github.com/nodejs/node/pull/38505)
    
  • [`e1e669b109`](https://github.com/nodejs/node/commit/e1e669b109)] - **(SEMVER-MAJOR)** **url**: throw invalid this on detached accessors (James M Snell) [#&#8203;39752](https://github.com/nodejs/node/pull/39752)
    
  • [`70157b9cb7`](https://github.com/nodejs/node/commit/70157b9cb7)] - **(SEMVER-MAJOR)** **url**: forbid certain confusable changes from being introduced by toASCII (Timothy Gu) [#&#8203;38631](https://github.com/nodejs/node/pull/38631)
    
    
Semver-Minor Commits
  • [`6cd12be347`](https://github.com/nodejs/node/commit/6cd12be347)] - **(SEMVER-MINOR)** **fs**: add FileHandle.prototype.readableWebStream() (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331)
    
  • [`341312d78a`](https://github.com/nodejs/node/commit/341312d78a)] - **(SEMVER-MINOR)** **readline**: add `autoCommit` option (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947)
    
  • [`1d2f37d970`](https://github.com/nodejs/node/commit/1d2f37d970)] - **(SEMVER-MINOR)** **src**: add --openssl-legacy-provider option (Daniel Bevenius) [#&#8203;40478](https://github.com/nodejs/node/pull/40478)
    
  • [`3b72788afb`](https://github.com/nodejs/node/commit/3b72788afb)] - **(SEMVER-MINOR)** **src**: add flags for controlling process behavior (Cheng Zhao) [#&#8203;40339](https://github.com/nodejs/node/pull/40339)
    
  • [`8306051001`](https://github.com/nodejs/node/commit/8306051001)] - **(SEMVER-MINOR)** **stream**: add readableDidRead (Robert Nagy) [#&#8203;36820](https://github.com/nodejs/node/pull/36820)
    
  • [`08ffbd115e`](https://github.com/nodejs/node/commit/08ffbd115e)] - **(SEMVER-MINOR)** **vm**: add support for import assertions in dynamic imports (Antoine du Hamel) [#&#8203;40249](https://github.com/nodejs/node/pull/40249)
    
    
Semver-Patch Commits
  • [`ed01811e71`](https://github.com/nodejs/node/commit/ed01811e71)] - **benchmark**: increase crypto DSA keygen params (Brian White) [#&#8203;40416](https://github.com/nodejs/node/pull/40416)
    
  • [`cb93fdbba5`](https://github.com/nodejs/node/commit/cb93fdbba5)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`ed76b49834`](https://github.com/nodejs/node/commit/ed76b49834)] - **build**: fix actions pull request's branch (Mestery) [#&#8203;40494](https://github.com/nodejs/node/pull/40494)
    
  • [`6baea14506`](https://github.com/nodejs/node/commit/6baea14506)] - **build**: avoid run find inactive authors on forked repo (Jiawen Geng) [#&#8203;40465](https://github.com/nodejs/node/pull/40465)
    
  • [`f9996d5b80`](https://github.com/nodejs/node/commit/f9996d5b80)] - **build**: include new public V8 headers in distribution (Michaël Zasso) [#&#8203;40423](https://github.com/nodejs/node/pull/40423)
    
  • [`983b757f3f`](https://github.com/nodejs/node/commit/983b757f3f)] - **build**: update codeowners-validator to 0.6 (FrankQiu) [#&#8203;40307](https://github.com/nodejs/node/pull/40307)
    
  • [`73c3885e10`](https://github.com/nodejs/node/commit/73c3885e10)] - **build**: remove duplicate check for authors.yml (Rich Trott) [#&#8203;40393](https://github.com/nodejs/node/pull/40393)
    
  • [`92090d3435`](https://github.com/nodejs/node/commit/92090d3435)] - **build**: make scripts in gyp run with right python (Cheng Zhao) [#&#8203;39730](https://github.com/nodejs/node/pull/39730)
    
  • [`28f711b552`](https://github.com/nodejs/node/commit/28f711b552)] - **crypto**: remove incorrect constructor invocation (gc) [#&#8203;40300](https://github.com/nodejs/node/pull/40300)
    
  • [`228e703ded`](https://github.com/nodejs/node/commit/228e703ded)] - **deps**: workaround debug link error on Windows (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807)
    
  • [`a35b7e0427`](https://github.com/nodejs/node/commit/a35b7e0427)] - **deps**: upgrade npm to 8.1.0 (npm team) [#&#8203;40463](https://github.com/nodejs/node/pull/40463)
    
  • [`d434c5382a`](https://github.com/nodejs/node/commit/d434c5382a)] - **deps**: regenerate OpenSSL arch files (Daniel Bevenius) [#&#8203;40478](https://github.com/nodejs/node/pull/40478)
    
  • [`2cebd5f02b`](https://github.com/nodejs/node/commit/2cebd5f02b)] - **deps**: add missing legacyprov.c source (Daniel Bevenius) [#&#8203;40478](https://github.com/nodejs/node/pull/40478)
    
  • [`bf82dcd5ba`](https://github.com/nodejs/node/commit/bf82dcd5ba)] - **deps**: patch V8 to 9.5.172.21 (Michaël Zasso) [#&#8203;40432](https://github.com/nodejs/node/pull/40432)
    
  • [`795108a63d`](https://github.com/nodejs/node/commit/795108a63d)] - **deps**: V8: make V8 9.5 ABI-compatible with 9.6 (Michaël Zasso) [#&#8203;40422](https://github.com/nodejs/node/pull/40422)
    
  • [`5d7bd8616e`](https://github.com/nodejs/node/commit/5d7bd8616e)] - **deps**: suppress zlib compiler warnings (Daniel Bevenius) [#&#8203;40343](https://github.com/nodejs/node/pull/40343)
    
  • [`fe84cd453d`](https://github.com/nodejs/node/commit/fe84cd453d)] - **deps**: upgrade Corepack to 0.10 (Maël Nison) [#&#8203;40374](https://github.com/nodejs/node/pull/40374)
    
  • [`2d503ed3ff`](https://github.com/nodejs/node/commit/2d503ed3ff)] - **deps**: V8: backport [`239898e`](https://github.com/nodejs/node/commit/239898ef8c77) (Felix Yan) [#&#8203;39827](https://github.com/nodejs/node/pull/39827)
    
  • [`c9296b190f`](https://github.com/nodejs/node/commit/c9296b190f)] - **deps**: V8: cherry-pick [`2a0bc36`](https://github.com/nodejs/node/commit/2a0bc36dec12) (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`5b358370ad`](https://github.com/nodejs/node/commit/5b358370ad)] - **deps**: V8: cherry-pick [`cf21eb3`](https://github.com/nodejs/node/commit/cf21eb36b975) (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`228e703ded`](https://github.com/nodejs/node/commit/228e703ded)] - **deps**: workaround debug link error on Windows (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807)
    
  • [`cca9b95523`](https://github.com/nodejs/node/commit/cca9b95523)] - **dgram**: add `nread` assertion to `UDPWrap::OnRecv` (Darshan Sen) [#&#8203;40295](https://github.com/nodejs/node/pull/40295)
    
  • [`7c77db0243`](https://github.com/nodejs/node/commit/7c77db0243)] - **dns**: refactor and use validators (Voltrex) [#&#8203;40022](https://github.com/nodejs/node/pull/40022)
    
  • [`a278117f28`](https://github.com/nodejs/node/commit/a278117f28)] - **doc**: update Collaborator guide to reflect GitHub web UI update (Antoine du Hamel) [#&#8203;40456](https://github.com/nodejs/node/pull/40456)
    
  • [`4cf5563147`](https://github.com/nodejs/node/commit/4cf5563147)] - **doc**: indicate n-api out params that may be NULL (Isaac Brodsky) [#&#8203;40371](https://github.com/nodejs/node/pull/40371)
    
  • [`15ce81a464`](https://github.com/nodejs/node/commit/15ce81a464)] - **doc**: remove ESLint comments which were breaking the CJS/ESM toggles (Mark Skelton) [#&#8203;40408](https://github.com/nodejs/node/pull/40408)
    
  • [`54a85d6bb5`](https://github.com/nodejs/node/commit/54a85d6bb5)] - **doc**: add pronouns for tniessen to README (Tobias Nießen) [#&#8203;40412](https://github.com/nodejs/node/pull/40412)
    
  • [`40db88b7b5`](https://github.com/nodejs/node/commit/40db88b7b5)] - **doc**: format changelogs (Rich Trott) [#&#8203;40388](https://github.com/nodejs/node/pull/40388)
    
  • [`4f68839910`](https://github.com/nodejs/node/commit/4f68839910)] - **doc**: fix missing variable in deepStrictEqual example (OliverOdo) [#&#8203;40396](https://github.com/nodejs/node/pull/40396)
    
  • [`ca6adcf37e`](https://github.com/nodejs/node/commit/ca6adcf37e)] - **doc**: fix asyncLocalStorage.run() description (Constantine Kim) [#&#8203;40381](https://github.com/nodejs/node/pull/40381)
    
  • [`7dd3adf6dd`](https://github.com/nodejs/node/commit/7dd3adf6dd)] - **doc**: fix typos in n-api docs (Ignacio Carbajo) [#&#8203;40402](https://github.com/nodejs/node/pull/40402)
    
  • [`eb65871ab4`](https://github.com/nodejs/node/commit/eb65871ab4)] - **doc**: format doc/guides using format-md task (Rich Trott) [#&#8203;40358](https://github.com/nodejs/node/pull/40358)
    
  • [`0d50dfdf61`](https://github.com/nodejs/node/commit/0d50dfdf61)] - **doc**: improve phrasing in fs.md (Arslan Ali) [#&#8203;40255](https://github.com/nodejs/node/pull/40255)
    
  • [`7723148758`](https://github.com/nodejs/node/commit/7723148758)] - **doc**: add link to core promises tracking issue (Michael Dawson) [#&#8203;40355](https://github.com/nodejs/node/pull/40355)
    
  • [`ccee352630`](https://github.com/nodejs/node/commit/ccee352630)] - **doc**: esm resolver spec refactoring for deprecations (Guy Bedford) [#&#8203;40314](https://github.com/nodejs/node/pull/40314)
    
  • [`1fc1b0f5f2`](https://github.com/nodejs/node/commit/1fc1b0f5f2)] - **doc**: claim ABI version for Electron v17 (Milan Burda) [#&#8203;40320](https://github.com/nodejs/node/pull/40320)
    
  • [`0d2b6aca60`](https://github.com/nodejs/node/commit/0d2b6aca60)] - **doc**: assign missing deprecation number (Michaël Zasso) [#&#8203;40324](https://github.com/nodejs/node/pull/40324)
    
  • [`4bd8e0efa0`](https://github.com/nodejs/node/commit/4bd8e0efa0)] - **doc**: fix typo in ESM example (Tobias Nießen) [#&#8203;40275](https://github.com/nodejs/node/pull/40275)
    
  • [`03d25fe816`](https://github.com/nodejs/node/commit/03d25fe816)] - **doc**: fix typo in esm.md (Mason Malone) [#&#8203;40273](https://github.com/nodejs/node/pull/40273)
    
  • [`6199441b00`](https://github.com/nodejs/node/commit/6199441b00)] - **doc**: correct ESM load hook table header (Jacob) [#&#8203;40234](https://github.com/nodejs/node/pull/40234)
    
  • [`78962d1ca1`](https://github.com/nodejs/node/commit/78962d1ca1)] - **doc**: mark readline promise implementation as experimental (Antoine du Hamel) [#&#8203;40211](https://github.com/nodejs/node/pull/40211)
    
  • [`4b030d0573`](https://github.com/nodejs/node/commit/4b030d0573)] - **doc**: deprecate (doc-only) http abort related (dr-js) [#&#8203;36670](https://github.com/nodejs/node/pull/36670)
    
  • [`bbd4c6eee9`](https://github.com/nodejs/node/commit/bbd4c6eee9)] - **doc**: claim ABI version for Electron v15 and v16 (Samuel Attard) [#&#8203;39950](https://github.com/nodejs/node/pull/39950)
    
  • [`3e774a0500`](https://github.com/nodejs/node/commit/3e774a0500)] - **doc**: fix history for `fs.WriteStream` `open` event (Antoine du Hamel) [#&#8203;39972](https://github.com/nodejs/node/pull/39972)
    
  • [`6fdd5827f0`](https://github.com/nodejs/node/commit/6fdd5827f0)] - **doc**: anchor link parity between markdown and html-generated docs (foxxyz) [#&#8203;39304](https://github.com/nodejs/node/pull/39304)
    
  • [`7b7a0331f4`](https://github.com/nodejs/node/commit/7b7a0331f4)] - **doc**: reset added: version to REPLACEME (Luigi Pinca) [#&#8203;39901](https://github.com/nodejs/node/pull/39901)
    
  • [`58257b7c61`](https://github.com/nodejs/node/commit/58257b7c61)] - **doc**: fix typo in webstreams.md (Luigi Pinca) [#&#8203;39898](https://github.com/nodejs/node/pull/39898)
    
  • [`df22736d80`](https://github.com/nodejs/node/commit/df22736d80)] - **esm**: consolidate ESM loader hooks (Jacob) [#&#8203;37468](https://github.com/nodejs/node/pull/37468)
    
  • [`ac4f5e2437`](https://github.com/nodejs/node/commit/ac4f5e2437)] - **lib**: refactor to use let (gdccwxx) [#&#8203;40364](https://github.com/nodejs/node/pull/40364)
    
  • [`3d11bafaa0`](https://github.com/nodejs/node/commit/3d11bafaa0)] - **lib**: make structuredClone spec compliant (voltrexmaster) [#&#8203;40251](https://github.com/nodejs/node/pull/40251)
    
  • [`48655e17e1`](https://github.com/nodejs/node/commit/48655e17e1)] - **lib,url**: correct URL's argument to pass idlharness (Khaidi Chu) [#&#8203;39848](https://github.com/nodejs/node/pull/39848)
    
  • [`c0a70203de`](https://github.com/nodejs/node/commit/c0a70203de)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40485](https://github.com/nodejs/node/pull/40485)
    
  • [`cbc7b5d424`](https://github.com/nodejs/node/commit/cbc7b5d424)] - **meta**: consolidate AUTHORS entries for emanuelbuholzer (Rich Trott) [#&#8203;40469](https://github.com/nodejs/node/pull/40469)
    
  • [`881174e016`](https://github.com/nodejs/node/commit/881174e016)] - **meta**: consolidate AUTHORS entries for ebickle (Rich Trott) [#&#8203;40447](https://github.com/nodejs/node/pull/40447)
    
  • [`b80b85e130`](https://github.com/nodejs/node/commit/b80b85e130)] - **meta**: add `typings` to label-pr-config (Mestery) [#&#8203;40401](https://github.com/nodejs/node/pull/40401)
    
  • [`95cf944736`](https://github.com/nodejs/node/commit/95cf944736)] - **meta**: consolidate AUTHORS entries for evantorrie (Rich Trott) [#&#8203;40430](https://github.com/nodejs/node/pull/40430)
    
  • [`c350c217f4`](https://github.com/nodejs/node/commit/c350c217f4)] - **meta**: consolidate AUTHORS entries for gabrielschulhof (Rich Trott) [#&#8203;40420](https://github.com/nodejs/node/pull/40420)
    
  • [`a9411891cf`](https://github.com/nodejs/node/commit/a9411891cf)] - **meta**: consolidate AUTHORS information for geirha (Rich Trott) [#&#8203;40406](https://github.com/nodejs/node/pull/40406)
    
  • [`0cc37209fa`](https://github.com/nodejs/node/commit/0cc37209fa)] - **meta**: consolidate duplicate AUTHORS entries for hassaanp (Rich Trott) [#&#8203;40391](https://github.com/nodejs/node/pull/40391)
    
  • [`49b7ec96a4`](https://github.com/nodejs/node/commit/49b7ec96a4)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40392](https://github.com/nodejs/node/pull/40392)
    
  • [`a3c0713d9e`](https://github.com/nodejs/node/commit/a3c0713d9e)] - **meta**: consolidate AUTHORS entry for thw0rted (Rich Trott) [#&#8203;40387](https://github.com/nodejs/node/pull/40387)
    
  • [`eaa59571e0`](https://github.com/nodejs/node/commit/eaa59571e0)] - **meta**: update label-pr-config (Mestery) [#&#8203;40199](https://github.com/nodejs/node/pull/40199)
    
  • [`6a205d7a56`](https://github.com/nodejs/node/commit/6a205d7a56)] - **meta**: use .mailmap to consolidate AUTHORS entries for ide (Rich Trott) [#&#8203;40367](https://github.com/nodejs/node/pull/40367)
    
  • [`f570109094`](https://github.com/nodejs/node/commit/f570109094)] - **net**: check if option is undefined (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344)
    
  • [`119558b6a2`](https://github.com/nodejs/node/commit/119558b6a2)] - **net**: remove unused ObjectKeys (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344)
    
  • [`c7cd8ef6c6`](https://github.com/nodejs/node/commit/c7cd8ef6c6)] - **net**: check objectMode first and then readble || writable (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344)
    
  • [`46446623f5`](https://github.com/nodejs/node/commit/46446623f5)] - **net**: throw error to object mode in Socket (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344)
    
  • [`38aa7cc7c7`](https://github.com/nodejs/node/commit/38aa7cc7c7)] - **src**: get embedder options on-demand (Joyee Cheung) [#&#8203;40357](https://github.com/nodejs/node/pull/40357)
    
  • [`ad4e70c817`](https://github.com/nodejs/node/commit/ad4e70c817)] - **src**: ensure V8 initialized before marking milestone (Shelley Vohr) [#&#8203;40405](https://github.com/nodejs/node/pull/40405)
    
  • [`a784258444`](https://github.com/nodejs/node/commit/a784258444)] - **src**: remove usage of `AllocatedBuffer` from `stream_*` (Darshan Sen) [#&#8203;40293](https://github.com/nodejs/node/pull/40293)
    
  • [`f11493dfc9`](https://github.com/nodejs/node/commit/f11493dfc9)] - **src**: add missing initialization (Michael Dawson) [#&#8203;40370](https://github.com/nodejs/node/pull/40370)
    
  • [`5e248eceb6`](https://github.com/nodejs/node/commit/5e248eceb6)] - **src**: update NODE_MODULE_VERSION to 102 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`3f0b62375b`](https://github.com/nodejs/node/commit/3f0b62375b)] - **stream**: convert premature close to AbortError (Robert Nagy) [#&#8203;39524](https://github.com/nodejs/node/pull/39524)
    
  • [`79f4d5a345`](https://github.com/nodejs/node/commit/79f4d5a345)] - **stream**: fix toWeb typo (Robert Nagy) [#&#8203;39496](https://github.com/nodejs/node/pull/39496)
    
  • [`44ee6c2623`](https://github.com/nodejs/node/commit/44ee6c2623)] - **stream**: call done() in consistent fashion (Rich Trott) [#&#8203;39475](https://github.com/nodejs/node/pull/39475)
    
  • [`09ad64d66d`](https://github.com/nodejs/node/commit/09ad64d66d)] - **stream**: add CompressionStream and DecompressionStream (James M Snell) [#&#8203;39348](https://github.com/nodejs/node/pull/39348)
    
  • [`a99c230305`](https://github.com/nodejs/node/commit/a99c230305)] - **stream**: implement streams to webstreams adapters (James M Snell) [#&#8203;39134](https://github.com/nodejs/node/pull/39134)
    
  • [`a5ba28dda2`](https://github.com/nodejs/node/commit/a5ba28dda2)] - **stream**: fix performance regression (Brian White) [#&#8203;39254](https://github.com/nodejs/node/pull/39254)
    
  • [`ce00381751`](https://github.com/nodejs/node/commit/ce00381751)] - **stream**: use finished for async iteration (Robert Nagy) [#&#8203;39282](https://github.com/nodejs/node/pull/39282)
    
  • [`e0faf8c3e9`](https://github.com/nodejs/node/commit/e0faf8c3e9)] - **test**: replace common port with specific number (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344)
    
  • [`8068f40313`](https://github.com/nodejs/node/commit/8068f40313)] - **test**: fix typos in whatwg-webstreams explanations (Tobias Nießen) [#&#8203;40389](https://github.com/nodejs/node/pull/40389)
    
  • [`eafdeab97b`](https://github.com/nodejs/node/commit/eafdeab97b)] - **test**: add test for readStream.path when fd is specified (Qingyu Deng) [#&#8203;40359](https://github.com/nodejs/node/pull/40359)
    
  • [`24f045dae2`](https://github.com/nodejs/node/commit/24f045dae2)] - **test**: replace .then chains with await (gdccwxx) [#&#8203;40348](https://github.com/nodejs/node/pull/40348)
    
  • [`5b4ba52786`](https://github.com/nodejs/node/commit/5b4ba52786)] - **test**: fix "test/common/debugger" identify async function (gdccwxx) [#&#8203;40348](https://github.com/nodejs/node/pull/40348)
    
  • [`1d84e916d6`](https://github.com/nodejs/node/commit/1d84e916d6)] - **test**: improve test coverage of `fs.ReadStream` with `FileHandle` (Antoine du Hamel) [#&#8203;40018](https://github.com/nodejs/node/pull/40018)
    
  • [`b63e449b2e`](https://github.com/nodejs/node/commit/b63e449b2e)] - **test**: pass URL's toascii.window.js WPT (Khaidi Chu) [#&#8203;39910](https://github.com/nodejs/node/pull/39910)
    
  • [`842fd234b7`](https://github.com/nodejs/node/commit/842fd234b7)] - **test**: adapt test-repl to V8 9.5 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`d7b9b9f8d7`](https://github.com/nodejs/node/commit/d7b9b9f8d7)] - **test**: remove test-v8-untrusted-code-mitigations (Ross McIlroy) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`7624917069`](https://github.com/nodejs/node/commit/7624917069)] - **tools**: update tools/lint-md dependencies to support GFM footnotes (Rich Trott) [#&#8203;40445](https://github.com/nodejs/node/pull/40445)
    
  • [`350a95b89f`](https://github.com/nodejs/node/commit/350a95b89f)] - **tools**: update lint-md dependencies (Rich Trott) [#&#8203;40404](https://github.com/nodejs/node/pull/40404)
    
  • [`012152d7d6`](https://github.com/nodejs/node/commit/012152d7d6)] - **tools**: udpate [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`43c780e741`](https://github.com/nodejs/node/commit/43c780e741)] - **tools**: remove [@&#8203;babel/plugin-syntax-import-assertions](https://github.com/babel/plugin-syntax-import-assertions) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`b39db95737`](https://github.com/nodejs/node/commit/b39db95737)] - **tools**: remove [@&#8203;bable/plugin-syntax-class-properties](https://github.com/bable/plugin-syntax-class-properties) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`a6fd39f44f`](https://github.com/nodejs/node/commit/a6fd39f44f)] - **tools**: remove [@&#8203;babel/plugin-syntax-top-level-await](https://github.com/babel/plugin-syntax-top-level-await) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`8ca76eba73`](https://github.com/nodejs/node/commit/8ca76eba73)] - **tools**: update ESLint to 8.0.0 (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`dd8e219d71`](https://github.com/nodejs/node/commit/dd8e219d71)] - **tools**: prepare ESLint rules for 8.0.0 requirements (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`0a1b399781`](https://github.com/nodejs/node/commit/0a1b399781)] - **tools**: fix ESLint update scripts (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394)
    
  • [`d6d6b050ff`](https://github.com/nodejs/node/commit/d6d6b050ff)] - **tools**: warn about duplicates when generating AUTHORS file (Rich Trott) [#&#8203;40304](https://github.com/nodejs/node/pull/40304)
    
  • [`1fd984581c`](https://github.com/nodejs/node/commit/1fd984581c)] - **tools**: update V8 gypfiles for 9.5 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178)
    
  • [`a8a86387fa`](https://github.com/nodejs/node/commit/a8a86387fa)] - **tty**: enable buffering (Robert Nagy) [#&#8203;39253](https://github.com/nodejs/node/pull/39253)
    
  • [`9467cbadcb`](https://github.com/nodejs/node/commit/9467cbadcb)] - **typings**: define types for os binding (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222)
    
  • [`70a5b86049`](https://github.com/nodejs/node/commit/70a5b86049)] - **typings**: add missing types to options and util bindings (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222)
    
  • [`3815a21beb`](https://github.com/nodejs/node/commit/3815a21beb)] - **typings**: define types for timers binding (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222)
    
  • [`9e64336fbf`](https://github.com/nodejs/node/commit/9e64336fbf)] - **typings**: fix declaration of primordials (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222)
    
  • [`f581f6da94`](https://github.com/nodejs/node/commit/f581f6da94)] - **url**: fix performance regression (Brian White) [#&#8203;39778](https://github.com/nodejs/node/pull/39778)
    
  • [`02de40246f`](https://github.com/nodejs/node/commit/02de40246f)] - **v8**: remove --harmony-top-level-await (Geoffrey Booth) [#&#8203;40226](https://github.com/nodejs/node/pull/40226)
    
    

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [node](https://github.com/nodejs/node) | stage | major | `16.15.0-bullseye` -> `18.0.0-bullseye` | --- ### Release Notes <details> <summary>nodejs/node</summary> ### [`v18.0.0`](https://github.com/nodejs/node/releases/v18.0.0) [Compare Source](https://github.com/nodejs/node/compare/v17.9.0...v18.0.0) Node.js 18 is here! Highlights include the update of the V8 JavaScript engine to 10.1, global fetch enabled by default, and a core test runner module. Initially, Node.js 18 will replace Node.js 17 as our ‘Current’ release line. As per the release schedule, Node.js 18 will be the ‘Current’ release for the next 6 months and then promoted to Long-term Support (LTS) in October 2022. Once promoted to long-term support the release will be designated the codename ‘Hydrogen’. Node.js 18 will be supported until April 2025. ##### Notable Changes ##### Deprecations and Removals - **(SEMVER-MAJOR)** **fs**: runtime deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#&#8203;42607](https://github.com/nodejs/node/pull/42607) - **(SEMVER-MAJOR)** **dns**: remove `dns.lookup` and `dnsPromises.lookup` options type coercion (Antoine du Hamel) [#&#8203;41431](https://github.com/nodejs/node/pull/41431) - **(SEMVER-MAJOR)** **process**: runtime deprecate multipleResolves (Benjamin Gruenbaum) [#&#8203;41896](https://github.com/nodejs/node/pull/41896) - **(SEMVER-MAJOR)** **stream**: remove thenable support (Robert Nagy) [#&#8203;40773](https://github.com/nodejs/node/pull/40773) - **(SEMVER-MAJOR)** **tls**: move tls.parseCertString to end-of-life (Tobias Nießen) [#&#8203;41479](https://github.com/nodejs/node/pull/41479) ##### fetch (experimental) An experimental fetch API is available on the global scope by default. The implementation is based upon [undici](https://undici.nodejs.org/#/), an HTTP/1.1 client written for Node.js by contributors to the project. ```mjs const res = await fetch('https://nodejs.org/api/documentation.json'); if (res.ok) { const data = await res.json(); console.log(data); } ``` Through this addition, the following globals are made available: `fetch`, `FormData`, `Headers`, `Request`, `Response`. Disable this API with the `--no-experimental-fetch` command-line flag. Contributed by Michaël Zasso in [#&#8203;41811](https://github.com/nodejs/node/pull/41811). ##### HTTP Timeouts `server.headersTimeout` which limits the amount of time the parser will wait to receive the complete HTTP headers is now set to `60000` (60 seconds) by default. `server.requestTimeout` which sets the timeout value in milliseconds for receiving the entire request from the client is now set to `300000` (5 minutes) by default. If these timeouts expire, the server responds with status 408 without forwarding the request to the request listener and then closes the connection. Both timeouts must be set to a non-zero value to protect against potential Denial-of-Service attacks in case the server is deployed without a reverse proxy in front. Contributed by Paolo Insogna in [#&#8203;41263](https://github.com/nodejs/node/pull/41263). ##### Test Runner module (experimental) The `node:test` module facilitates the creation of JavaScript tests that report results in TAP format. To access it: `import test from 'node:test';` This module is only available under the `node:` scheme. The following is an example implementation of a parent test with two subtests: ```js test('top level test', async (t) => { await t.test('subtest 1', (t) => { assert.strictEqual(1, 1); }); await t.test('subtest 2', (t) => { assert.strictEqual(2, 2); }); }); ``` Read more in <https://nodejs.org/dist/latest-v18.x/docs/api/test.html>. Contributed by Colin Ihrig in [#&#8203;42325](https://github.com/nodejs/node/pull/42325). ##### Toolchain and Compiler Upgrades - Prebuilt binaries for Linux are now built on Red Hat Enterprise Linux (RHEL) 8 and are compatible with Linux distributions based on glibc 2.28 or later, for example, Debian 10, RHEL 8, Ubuntu 20.04. - Prebuilt binaries for macOS now require macOS 10.15 or later. - For AIX the minimum supported architecture has been raised from Power 7 to Power 8. Prebuilt binaries for 32-bit Windows will initially not be available due to issues building the V8 dependency in Node.js. We hope to restore 32-bit Windows binaries for Node.js 18 with a future V8 update. Node.js does not support running on operating systems that are no longer supported by their vendor. For operating systems where their vendor has planned to end support earlier than April 2025, such as Windows 8.1 (January 2023) and Windows Server 2012 R2 (October 2023), support for Node.js 18 will end at the earlier date. Full details about the supported toolchains and compilers are documented in the Node.js [BUILDING.md](https://github.com/nodejs/node/blob/v18.x/BUILDING.md#supported-platforms) file. Contributed by Richard Lau in [#&#8203;42292](https://github.com/nodejs/node/pull/42292), [#&#8203;42604](https://github.com/nodejs/node/pull/42604) and [#&#8203;42659](https://github.com/nodejs/node/pull/42659),and Michaël Zasso in [#&#8203;42105](https://github.com/nodejs/node/pull/42105) and [#&#8203;42666](https://github.com/nodejs/node/pull/42666). ##### V8 10.1 The V8 engine is updated to version 10.1, which is part of Chromium 101. Compared to the version included in Node.js 17.9.0, the following new features are included: - The [`findLast` and `findLastIndex` array methods](https://v8.dev/features/finding-in-arrays). - Improvements to the [`Intl.Locale` API](https://v8.dev/blog/v8-release-99#intl.locale-extensions). - The [`Intl.supportedValuesOf` function](https://v8.dev/blog/v8-release-99#intl-enumeration). - Improved performance of [class fields](https://bugs.chromium.org/p/v8/issues/detail?id=9888) and [private class methods](https://bugs.chromium.org/p/v8/issues/detail?id=10793) (the initialization of them is now as fast as ordinary property stores). The data format returned by the serialization API (`v8.serialize(value)`) has changed, and cannot be deserialized by earlier versions of Node.js. On the other hand, it is still possible to deserialize the previous format, as the API is backwards-compatible. Contributed by Michaël Zasso in [#&#8203;42657](https://github.com/nodejs/node/pull/42657). ##### Web Streams API (experimental) Node.js now exposes the experimental implementation of the [Web Streams API](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) on the global scope. This means the following APIs are now globally available: - `ReadableStream`, `ReadableStreamDefaultReader`, `ReadableStreamBYOBReader`, `ReadableStreamBYOBRequest`, `ReadableByteStreamController`, `ReadableStreamDefaultController`, `TransformStream`, `TransformStreamDefaultController`, `WritableStream`, `WritableStreamDefaultWriter`, `WritableStreamDefaultController`, `ByteLengthQueuingStrategy`, `CountQueuingStrategy`, `TextEncoderStream`, `TextDecoderStream`, `CompressionStream`, `DecompressionStream`. Contributed James Snell in [#&#8203;39062](https://github.com/nodejs/node/pull/39062), and Antoine du Hamel in [#&#8203;42225](https://github.com/nodejs/node/pull/42225). ##### Other Notable Changes - **(SEMVER-MAJOR)** **buffer**: expose Blob as a global (James M Snell) [#&#8203;41270](https://github.com/nodejs/node/pull/41270) - **(SEMVER-MAJOR)** **child_process**: improve argument validation (Rich Trott) [#&#8203;41305](https://github.com/nodejs/node/pull/41305) - **doc**: add RafaelGSS to collaborators (RafaelGSS) [#&#8203;42718](https://github.com/nodejs/node/pull/42718) - **(SEMVER-MAJOR)** **http**: make TCP noDelay enabled by default (Paolo Insogna) [#&#8203;42163](https://github.com/nodejs/node/pull/42163) - **(SEMVER-MAJOR)** **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#&#8203;41431](https://github.com/nodejs/node/pull/41431) - **(SEMVER-MAJOR)** **worker**: expose BroadcastChannel as a global (James M Snell) [#&#8203;41271](https://github.com/nodejs/node/pull/41271) - **(SEMVER-MAJOR)** **worker**: graduate BroadcastChannel to supported (James M Snell) [#&#8203;41271](https://github.com/nodejs/node/pull/41271) ##### Semver-Major Commits - \[[`dab8ab2837`](https://github.com/nodejs/node/commit/dab8ab2837)] - **(SEMVER-MAJOR)** **assert,util**: compare RegExp.lastIndex while using deep equal checks (Ruben Bridgewater) [#&#8203;41020](https://github.com/nodejs/node/pull/41020) - \[[`cff14bcaef`](https://github.com/nodejs/node/commit/cff14bcaef)] - **(SEMVER-MAJOR)** **buffer**: refactor `byteLength` to remove outdated optimizations (Rongjian Zhang) [#&#8203;38545](https://github.com/nodejs/node/pull/38545) - \[[`cea76dbf33`](https://github.com/nodejs/node/commit/cea76dbf33)] - **(SEMVER-MAJOR)** **buffer**: expose Blob as a global (James M Snell) [#&#8203;41270](https://github.com/nodejs/node/pull/41270) - \[[`99c18f4786`](https://github.com/nodejs/node/commit/99c18f4786)] - **(SEMVER-MAJOR)** **buffer**: graduate Blob from experimental (James M Snell) [#&#8203;41270](https://github.com/nodejs/node/pull/41270) - \[[`35d72bf4ec`](https://github.com/nodejs/node/commit/35d72bf4ec)] - **(SEMVER-MAJOR)** **build**: make x86 Windows support temporarily experimental (Michaël Zasso) [#&#8203;42666](https://github.com/nodejs/node/pull/42666) - \[[`1134d8faf8`](https://github.com/nodejs/node/commit/1134d8faf8)] - **(SEMVER-MAJOR)** **build**: bump macOS deployment target to 10.15 (Richard Lau) [#&#8203;42292](https://github.com/nodejs/node/pull/42292) - \[[`27eb91d378`](https://github.com/nodejs/node/commit/27eb91d378)] - **(SEMVER-MAJOR)** **build**: downgrade Windows 8.1 and server 2012 R2 to experimental (Michaël Zasso) [#&#8203;42105](https://github.com/nodejs/node/pull/42105) - \[[`26c973d4b3`](https://github.com/nodejs/node/commit/26c973d4b3)] - **(SEMVER-MAJOR)** **child_process**: improve argument validation (Rich Trott) [#&#8203;41305](https://github.com/nodejs/node/pull/41305) - \[[`38007df999`](https://github.com/nodejs/node/commit/38007df999)] - **(SEMVER-MAJOR)** **cluster**: make `kill` to be just `process.kill` (Bar Admoni) [#&#8203;34312](https://github.com/nodejs/node/pull/34312) - \[[`aed18dfe59`](https://github.com/nodejs/node/commit/aed18dfe59)] - **(SEMVER-MAJOR)** **crypto**: cleanup validation (Mohammed Keyvanzadeh) [#&#8203;39841](https://github.com/nodejs/node/pull/39841) - \[[`e1fb6ae02f`](https://github.com/nodejs/node/commit/e1fb6ae02f)] - **(SEMVER-MAJOR)** **crypto**: prettify othername in PrintGeneralName (Tobias Nießen) [#&#8203;42123](https://github.com/nodejs/node/pull/42123) - \[[`36fb79030e`](https://github.com/nodejs/node/commit/36fb79030e)] - **(SEMVER-MAJOR)** **crypto**: fix X509Certificate toLegacyObject (Tobias Nießen) [#&#8203;42124](https://github.com/nodejs/node/pull/42124) - \[[`563b2ed000`](https://github.com/nodejs/node/commit/563b2ed000)] - **(SEMVER-MAJOR)** **crypto**: use RFC2253 format in PrintGeneralName (Tobias Nießen) [#&#8203;42002](https://github.com/nodejs/node/pull/42002) - \[[`18365d8ee6`](https://github.com/nodejs/node/commit/18365d8ee6)] - **(SEMVER-MAJOR)** **crypto**: change default check(Host|Email) behavior (Tobias Nießen) [#&#8203;41600](https://github.com/nodejs/node/pull/41600) - \[[`58f3fdcccd`](https://github.com/nodejs/node/commit/58f3fdcccd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick semver-major commits from 10.2 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`fd4f80ce54`](https://github.com/nodejs/node/commit/fd4f80ce54)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.1.124.6 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`974ab4060f`](https://github.com/nodejs/node/commit/974ab4060f)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.8.177.9 (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`270253c4e2`](https://github.com/nodejs/node/commit/270253c4e2)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.7.106.18 (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`08773e3c04`](https://github.com/nodejs/node/commit/08773e3c04)] - **(SEMVER-MAJOR)** **dns**: remove `dns.lookup` and `dnsPromises.lookup` options type coercion (Antoine du Hamel) [#&#8203;41431](https://github.com/nodejs/node/pull/41431) - \[[`3671cc0432`](https://github.com/nodejs/node/commit/3671cc0432)] - **(SEMVER-MAJOR)** **doc**: update minimum glibc requirements for Linux (Richard Lau) [#&#8203;42659](https://github.com/nodejs/node/pull/42659) - \[[`646e057680`](https://github.com/nodejs/node/commit/646e057680)] - **(SEMVER-MAJOR)** **doc**: update AIX minimum supported arch (Richard Lau) [#&#8203;42604](https://github.com/nodejs/node/pull/42604) - \[[`0bac5478eb`](https://github.com/nodejs/node/commit/0bac5478eb)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#&#8203;42607](https://github.com/nodejs/node/pull/42607) - \[[`3caa2c1a00`](https://github.com/nodejs/node/commit/3caa2c1a00)] - **(SEMVER-MAJOR)** **http**: refactor headersTimeout and requestTimeout logic (Paolo Insogna) [#&#8203;41263](https://github.com/nodejs/node/pull/41263) - \[[`eacd45656a`](https://github.com/nodejs/node/commit/eacd45656a)] - **(SEMVER-MAJOR)** **http**: make TCP noDelay enabled by default (Paolo Insogna) [#&#8203;42163](https://github.com/nodejs/node/pull/42163) - \[[`4944ad0b9e`](https://github.com/nodejs/node/commit/4944ad0b9e)] - **(SEMVER-MAJOR)** **lib**: enable fetch by default (Michaël Zasso) [#&#8203;41811](https://github.com/nodejs/node/pull/41811) - \[[`8c4b8b201a`](https://github.com/nodejs/node/commit/8c4b8b201a)] - **(SEMVER-MAJOR)** **lib**: replace validator and error (Mohammed Keyvanzadeh) [#&#8203;41678](https://github.com/nodejs/node/pull/41678) - \[[`3c4ee5267a`](https://github.com/nodejs/node/commit/3c4ee5267a)] - **(SEMVER-MAJOR)** **module,repl**: support 'node:'-only core modules (Colin Ihrig) [#&#8203;42325](https://github.com/nodejs/node/pull/42325) - \[[`3a26db9697`](https://github.com/nodejs/node/commit/3a26db9697)] - **(SEMVER-MAJOR)** **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#&#8203;41431](https://github.com/nodejs/node/pull/41431) - \[[`e6a7300a10`](https://github.com/nodejs/node/commit/e6a7300a10)] - **(SEMVER-MAJOR)** **process**: disallow some uses of Object.defineProperty() on process.env (Himself65) [#&#8203;28006](https://github.com/nodejs/node/pull/28006) - \[[`60b8e79599`](https://github.com/nodejs/node/commit/60b8e79599)] - **(SEMVER-MAJOR)** **process**: runtime deprecate multipleResolves (Benjamin Gruenbaum) [#&#8203;41896](https://github.com/nodejs/node/pull/41896) - \[[`d36b60e69a`](https://github.com/nodejs/node/commit/d36b60e69a)] - **(SEMVER-MAJOR)** **readline**: fix question still called after closed (Xuguang Mei) [#&#8203;42464](https://github.com/nodejs/node/pull/42464) - \[[`58e645de63`](https://github.com/nodejs/node/commit/58e645de63)] - **(SEMVER-MAJOR)** **stream**: remove thenable support (Robert Nagy) [#&#8203;40773](https://github.com/nodejs/node/pull/40773) - \[[`560cbc5849`](https://github.com/nodejs/node/commit/560cbc5849)] - **(SEMVER-MAJOR)** **stream**: expose web streams globals, remove runtime experimental warning (Antoine du Hamel) [#&#8203;42225](https://github.com/nodejs/node/pull/42225) - \[[`9fb7ac3bbd`](https://github.com/nodejs/node/commit/9fb7ac3bbd)] - **(SEMVER-MAJOR)** **stream**: need to cleanup event listeners if last stream is readable (Xuguang Mei) [#&#8203;41954](https://github.com/nodejs/node/pull/41954) - \[[`ceaa299958`](https://github.com/nodejs/node/commit/ceaa299958)] - **(SEMVER-MAJOR)** **stream**: revert revert `map` spec compliance (Benjamin Gruenbaum) [#&#8203;41933](https://github.com/nodejs/node/pull/41933) - \[[`fe7ca085a7`](https://github.com/nodejs/node/commit/fe7ca085a7)] - **(SEMVER-MAJOR)** **stream**: throw invalid arg type from End Of Stream (Jithil P Ponnan) [#&#8203;41766](https://github.com/nodejs/node/pull/41766) - \[[`48e784043d`](https://github.com/nodejs/node/commit/48e784043d)] - **(SEMVER-MAJOR)** **stream**: don't emit finish after destroy (Robert Nagy) [#&#8203;40852](https://github.com/nodejs/node/pull/40852) - \[[`f2170253b6`](https://github.com/nodejs/node/commit/f2170253b6)] - **(SEMVER-MAJOR)** **stream**: add errored and closed props (Robert Nagy) [#&#8203;40696](https://github.com/nodejs/node/pull/40696) - \[[`432d1b50e0`](https://github.com/nodejs/node/commit/432d1b50e0)] - **(SEMVER-MAJOR)** **test**: add initial test module (Colin Ihrig) [#&#8203;42325](https://github.com/nodejs/node/pull/42325) - \[[`92567283f4`](https://github.com/nodejs/node/commit/92567283f4)] - **(SEMVER-MAJOR)** **timers**: refactor internal classes to ES2015 syntax (Rabbit) [#&#8203;37408](https://github.com/nodejs/node/pull/37408) - \[[`65910c0d6c`](https://github.com/nodejs/node/commit/65910c0d6c)] - **(SEMVER-MAJOR)** **tls**: represent registeredID numerically always (Tobias Nießen) [#&#8203;41561](https://github.com/nodejs/node/pull/41561) - \[[`807c7e14f4`](https://github.com/nodejs/node/commit/807c7e14f4)] - **(SEMVER-MAJOR)** **tls**: move tls.parseCertString to end-of-life (Tobias Nießen) [#&#8203;41479](https://github.com/nodejs/node/pull/41479) - \[[`f524306077`](https://github.com/nodejs/node/commit/f524306077)] - **(SEMVER-MAJOR)** **url**: throw on NULL in IPv6 hostname (Rich Trott) [#&#8203;42313](https://github.com/nodejs/node/pull/42313) - \[[`0187bc5cdc`](https://github.com/nodejs/node/commit/0187bc5cdc)] - **(SEMVER-MAJOR)** **v8**: make v8.writeHeapSnapshot() error codes consistent (Darshan Sen) [#&#8203;42577](https://github.com/nodejs/node/pull/42577) - \[[`74b9baa426`](https://github.com/nodejs/node/commit/74b9baa426)] - **(SEMVER-MAJOR)** **v8**: make writeHeapSnapshot throw if fopen fails (Antonio Román) [#&#8203;41373](https://github.com/nodejs/node/pull/41373) - \[[`ce4d3adf50`](https://github.com/nodejs/node/commit/ce4d3adf50)] - **(SEMVER-MAJOR)** **worker**: expose BroadcastChannel as a global (James M Snell) [#&#8203;41271](https://github.com/nodejs/node/pull/41271) - \[[`6486a304d3`](https://github.com/nodejs/node/commit/6486a304d3)] - **(SEMVER-MAJOR)** **worker**: graduate BroadcastChannel to supported (James M Snell) [#&#8203;41271](https://github.com/nodejs/node/pull/41271) ##### Semver-Minor Commits - \[[`415726b8c4`](https://github.com/nodejs/node/commit/415726b8c4)] - **(SEMVER-MINOR)** **stream**: add writableAborted (Robert Nagy) [#&#8203;40802](https://github.com/nodejs/node/pull/40802) - \[[`54819f08e0`](https://github.com/nodejs/node/commit/54819f08e0)] - **(SEMVER-MINOR)** **test_runner**: support 'only' tests (Colin Ihrig) [#&#8203;42514](https://github.com/nodejs/node/pull/42514) ##### Semver-Patch Commits - \[[`7533d08b94`](https://github.com/nodejs/node/commit/7533d08b94)] - **buffer**: fix `atob` input validation (Austin Kelleher) [#&#8203;42662](https://github.com/nodejs/node/pull/42662) - \[[`96673bcb96`](https://github.com/nodejs/node/commit/96673bcb96)] - **build**: run clang-format on CI (Darshan Sen) [#&#8203;42681](https://github.com/nodejs/node/pull/42681) - \[[`d5462e4558`](https://github.com/nodejs/node/commit/d5462e4558)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`aa52873887`](https://github.com/nodejs/node/commit/aa52873887)] - **build**: add configure option --v8-enable-short-builtin-calls (daomingq) [#&#8203;42109](https://github.com/nodejs/node/pull/42109) - \[[`7ee8a7a463`](https://github.com/nodejs/node/commit/7ee8a7a463)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`a189dee52a`](https://github.com/nodejs/node/commit/a189dee52a)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`e8697cfe38`](https://github.com/nodejs/node/commit/e8697cfe38)] - **crypto**: improve prime size argument validation (Tobias Nießen) [#&#8203;42234](https://github.com/nodejs/node/pull/42234) - \[[`a9c0689786`](https://github.com/nodejs/node/commit/a9c0689786)] - **crypto**: fix return type prob reported by coverity (Michael Dawson) [#&#8203;42135](https://github.com/nodejs/node/pull/42135) - \[[`e938515b41`](https://github.com/nodejs/node/commit/e938515b41)] - **deps**: patch V8 to 10.1.124.8 (Michaël Zasso) [#&#8203;42730](https://github.com/nodejs/node/pull/42730) - \[[`eba7d2db7f`](https://github.com/nodejs/node/commit/eba7d2db7f)] - **deps**: V8: cherry-pick [`ad21d21`](https://github.com/nodejs/node/commit/ad21d212fc14) (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`004137e269`](https://github.com/nodejs/node/commit/004137e269)] - **deps**: V8: cherry-pick [`4c29cf1`](https://github.com/nodejs/node/commit/4c29cf1b7885) (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`a052c03033`](https://github.com/nodejs/node/commit/a052c03033)] - **deps**: V8: cherry-pick [`ca2a787`](https://github.com/nodejs/node/commit/ca2a787a0b49) (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`01cea9a8d8`](https://github.com/nodejs/node/commit/01cea9a8d8)] - **deps**: V8: cherry-pick [`a2cae21`](https://github.com/nodejs/node/commit/a2cae2180a7a) (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`d9d26b08ef`](https://github.com/nodejs/node/commit/d9d26b08ef)] - **deps**: V8: cherry-pick [`87ce4f5`](https://github.com/nodejs/node/commit/87ce4f5d98a5) (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`64a6328505`](https://github.com/nodejs/node/commit/64a6328505)] - **deps**: make V8 compilable with older glibc (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`fde59217b9`](https://github.com/nodejs/node/commit/fde59217b9)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`cdcc82cced`](https://github.com/nodejs/node/commit/cdcc82cced)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`2f51e121da`](https://github.com/nodejs/node/commit/2f51e121da)] - **deps**: update Acorn to v8.7.0 (Michaël Zasso) [#&#8203;42667](https://github.com/nodejs/node/pull/42667) - \[[`6d4b01774b`](https://github.com/nodejs/node/commit/6d4b01774b)] - **deps**: update ICU to 71.1 (Michaël Zasso) [#&#8203;42655](https://github.com/nodejs/node/pull/42655) - \[[`2d84620f86`](https://github.com/nodejs/node/commit/2d84620f86)] - **deps**: upgrade npm to 8.6.0 (npm team) [#&#8203;42550](https://github.com/nodejs/node/pull/42550) - \[[`c7ac11fa25`](https://github.com/nodejs/node/commit/c7ac11fa25)] - **deps**: update undici to 5.0.0 (Node.js GitHub Bot) [#&#8203;42583](https://github.com/nodejs/node/pull/42583) - \[[`468fffdf66`](https://github.com/nodejs/node/commit/468fffdf66)] - **deps**: V8: cherry-pick [`50d5fb7`](https://github.com/nodejs/node/commit/50d5fb7a457c) (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`48708be57b`](https://github.com/nodejs/node/commit/48708be57b)] - **deps**: V8: cherry-pick [`79a9d2e`](https://github.com/nodejs/node/commit/79a9d2eb3477) (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`3c8782f70e`](https://github.com/nodejs/node/commit/3c8782f70e)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`9318408c49`](https://github.com/nodejs/node/commit/9318408c49)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`e23e345b6c`](https://github.com/nodejs/node/commit/e23e345b6c)] - **deps**: V8: cherry-pick [`80bbbb1`](https://github.com/nodejs/node/commit/80bbbb143c24) (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`696ce7df26`](https://github.com/nodejs/node/commit/696ce7df26)] - **deps**: V8: cherry-pick [`1cc12b2`](https://github.com/nodejs/node/commit/1cc12b278e22) (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`aa88e5e4b9`](https://github.com/nodejs/node/commit/aa88e5e4b9)] - **doc**: revise data imports and node: imports sections (Rich Trott) [#&#8203;42734](https://github.com/nodejs/node/pull/42734) - \[[`a058cefe29`](https://github.com/nodejs/node/commit/a058cefe29)] - **doc**: fix ESM JSON/data URL import example (Rich Trott) [#&#8203;42728](https://github.com/nodejs/node/pull/42728) - \[[`e61b62b9d4`](https://github.com/nodejs/node/commit/e61b62b9d4)] - **doc**: improve doc for http.ServerResponse inheritance (Luigi Pinca) [#&#8203;42693](https://github.com/nodejs/node/pull/42693) - \[[`6669b3857f`](https://github.com/nodejs/node/commit/6669b3857f)] - **doc**: add RafaelGSS to collaborators (RafaelGSS) [#&#8203;42718](https://github.com/nodejs/node/pull/42718) - \[[`f825341bab`](https://github.com/nodejs/node/commit/f825341bab)] - **doc**: add NodeEdKeyGenParams to CryptoKey.algorithm (Tobias Nießen) [#&#8203;42629](https://github.com/nodejs/node/pull/42629) - \[[`d4d78361f2`](https://github.com/nodejs/node/commit/d4d78361f2)] - **doc**: fix the example for embedders (Momtchil Momtchev) [#&#8203;42671](https://github.com/nodejs/node/pull/42671) - \[[`6706be1cdb`](https://github.com/nodejs/node/commit/6706be1cdb)] - **doc**: change AES-GCM IV recommendation in WebCrypto (Tobias Nießen) [#&#8203;42611](https://github.com/nodejs/node/pull/42611) - \[[`4508c8caa4`](https://github.com/nodejs/node/commit/4508c8caa4)] - **doc**: fix `added:` info for some methods (Luigi Pinca) [#&#8203;42661](https://github.com/nodejs/node/pull/42661) - \[[`951dbc045a`](https://github.com/nodejs/node/commit/951dbc045a)] - **doc**: remove unneeded new in Buffer example (Niklas Mischkulnig) [#&#8203;42682](https://github.com/nodejs/node/pull/42682) - \[[`65e838071b`](https://github.com/nodejs/node/commit/65e838071b)] - **doc**: mark worker.id as integer in cluster docs (Tobias Nießen) [#&#8203;42684](https://github.com/nodejs/node/pull/42684) - \[[`a82713cbb6`](https://github.com/nodejs/node/commit/a82713cbb6)] - **doc**: recommend `fh.createWriteStream` for fsPromises methods (Antoine du Hamel) [#&#8203;42653](https://github.com/nodejs/node/pull/42653) - \[[`13ad8d4e09`](https://github.com/nodejs/node/commit/13ad8d4e09)] - **doc**: fix outgoingMessage.removeHeader() signature (Luigi Pinca) [#&#8203;42652](https://github.com/nodejs/node/pull/42652) - \[[`a0461255c0`](https://github.com/nodejs/node/commit/a0461255c0)] - **doc**: mark tlsSocket.authorized as boolean property (Tobias Nießen) [#&#8203;42647](https://github.com/nodejs/node/pull/42647) - \[[`3ac7f86c2b`](https://github.com/nodejs/node/commit/3ac7f86c2b)] - **doc**: add missing punctuation in Web Streams doc (Tobias Nießen) [#&#8203;42672](https://github.com/nodejs/node/pull/42672) - \[[`b98386c977`](https://github.com/nodejs/node/commit/b98386c977)] - **doc**: add missing article in session ticket section (Tobias Nießen) [#&#8203;42632](https://github.com/nodejs/node/pull/42632) - \[[`a113468383`](https://github.com/nodejs/node/commit/a113468383)] - **doc**: link to dynamic import function (Tobias Nießen) [#&#8203;42634](https://github.com/nodejs/node/pull/42634) - \[[`dfc2dc8b65`](https://github.com/nodejs/node/commit/dfc2dc8b65)] - **doc**: add note about header values encoding (Shogun) [#&#8203;42624](https://github.com/nodejs/node/pull/42624) - \[[`ec5a359ffd`](https://github.com/nodejs/node/commit/ec5a359ffd)] - **doc**: add missing word in rootCertificates section (Tobias Nießen) [#&#8203;42633](https://github.com/nodejs/node/pull/42633) - \[[`c08a361f70`](https://github.com/nodejs/node/commit/c08a361f70)] - **doc**: add history entries for DEP0162 on `fs.md` (Antoine du Hamel) [#&#8203;42608](https://github.com/nodejs/node/pull/42608) - \[[`4fade6acb4`](https://github.com/nodejs/node/commit/4fade6acb4)] - **doc**: fix brackets position (Livia Medeiros) [#&#8203;42649](https://github.com/nodejs/node/pull/42649) - \[[`8055c7ba5d`](https://github.com/nodejs/node/commit/8055c7ba5d)] - **doc**: copyedit corepack.md (Rich Trott) [#&#8203;42620](https://github.com/nodejs/node/pull/42620) - \[[`85a65c3260`](https://github.com/nodejs/node/commit/85a65c3260)] - **doc**: delete chakra tt from diagnostic tooling support tiers (Tony Gorez) [#&#8203;42627](https://github.com/nodejs/node/pull/42627) - \[[`63bb6dcf0f`](https://github.com/nodejs/node/commit/63bb6dcf0f)] - **doc**: align links in table to top (nikoladev) [#&#8203;41396](https://github.com/nodejs/node/pull/41396) - \[[`28d8614add`](https://github.com/nodejs/node/commit/28d8614add)] - **http**: document that ClientRequest inherits from OutgoingMessage (K.C.Ashish Kumar) [#&#8203;42642](https://github.com/nodejs/node/pull/42642) - \[[`c37fdacb34`](https://github.com/nodejs/node/commit/c37fdacb34)] - **lib**: use class fields in observe.js (Joyee Cheung) [#&#8203;42361](https://github.com/nodejs/node/pull/42361) - \[[`ea0668a27e`](https://github.com/nodejs/node/commit/ea0668a27e)] - **lib**: use class fields in Event and EventTarget (Joyee Cheung) [#&#8203;42361](https://github.com/nodejs/node/pull/42361) - \[[`eb7b89c829`](https://github.com/nodejs/node/commit/eb7b89c829)] - **lib**: update class fields TODO in abort_controller.js (Joyee Cheung) [#&#8203;42361](https://github.com/nodejs/node/pull/42361) - \[[`d835b1f1c1`](https://github.com/nodejs/node/commit/d835b1f1c1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42677](https://github.com/nodejs/node/pull/42677) - \[[`29492496e8`](https://github.com/nodejs/node/commit/29492496e8)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;42599](https://github.com/nodejs/node/pull/42599) - \[[`93c4dc5e5a`](https://github.com/nodejs/node/commit/93c4dc5e5a)] - **module**: ensure 'node:'-only modules can access node_modules (Colin Ihrig) [#&#8203;42430](https://github.com/nodejs/node/pull/42430) - \[[`3a26db9697`](https://github.com/nodejs/node/commit/3a26db9697)] - **net**: make `server.address()` return an integer for `family` (Antoine du Hamel) [#&#8203;41431](https://github.com/nodejs/node/pull/41431) - \[[`44fdf953ba`](https://github.com/nodejs/node/commit/44fdf953ba)] - **node-api,src**: fix module registration in MSVC C++ (Vladimir Morozov) [#&#8203;42459](https://github.com/nodejs/node/pull/42459) - \[[`3026ca0bf2`](https://github.com/nodejs/node/commit/3026ca0bf2)] - **src**: fix coverity report (Michael Dawson) [#&#8203;42663](https://github.com/nodejs/node/pull/42663) - \[[`01fd048c6e`](https://github.com/nodejs/node/commit/01fd048c6e)] - **src**: update NODE_MODULE_VERSION to 108 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`75a71dc7ae`](https://github.com/nodejs/node/commit/75a71dc7ae)] - **src**: fix alphabetically sorted binding list (Tobias Nießen) [#&#8203;42687](https://github.com/nodejs/node/pull/42687) - \[[`457567f72c`](https://github.com/nodejs/node/commit/457567f72c)] - **src**: include crypto in the bootstrap snapshot (Joyee Cheung) [#&#8203;42203](https://github.com/nodejs/node/pull/42203) - \[[`aa7dc808f5`](https://github.com/nodejs/node/commit/aa7dc808f5)] - **src**: update ImportModuleDynamically (Camillo Bruni) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`fa0439e66c`](https://github.com/nodejs/node/commit/fa0439e66c)] - **src**: update NODE_MODULE_VERSION to 105 (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`6ec1664dc8`](https://github.com/nodejs/node/commit/6ec1664dc8)] - **src**: update NODE_MODULE_VERSION to 104 (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`a706342368`](https://github.com/nodejs/node/commit/a706342368)] - **src**: add kNoBrowserGlobals flag for Environment (Cheng Zhao) [#&#8203;40532](https://github.com/nodejs/node/pull/40532) - \[[`0c57a37dd0`](https://github.com/nodejs/node/commit/0c57a37dd0)] - **src,crypto**: remove uses of AllocatedBuffer from crypto_tls.cc (Darshan Sen) [#&#8203;42589](https://github.com/nodejs/node/pull/42589) - \[[`be01185844`](https://github.com/nodejs/node/commit/be01185844)] - **src,inspector**: fix empty MaybeLocal crash (Darshan Sen) [#&#8203;42409](https://github.com/nodejs/node/pull/42409) - \[[`340b770d3f`](https://github.com/nodejs/node/commit/340b770d3f)] - **stream**: unify writableErrored and readableErrored (Robert Nagy) [#&#8203;40799](https://github.com/nodejs/node/pull/40799) - \[[`19064bec34`](https://github.com/nodejs/node/commit/19064bec34)] - **test**: delete test/pummel/test-repl-empty-maybelocal-crash.js (Darshan Sen) [#&#8203;42720](https://github.com/nodejs/node/pull/42720) - \[[`9d6af7d1fe`](https://github.com/nodejs/node/commit/9d6af7d1fe)] - **test**: improve `internal/url.js` coverage (Yoshiki Kurihara) [#&#8203;42650](https://github.com/nodejs/node/pull/42650) - \[[`d49df5ca8d`](https://github.com/nodejs/node/commit/d49df5ca8d)] - **test**: adapt message tests for V8 10.2 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`c6b4e9604f`](https://github.com/nodejs/node/commit/c6b4e9604f)] - **test**: adapt test-worker-debug for V8 10.0 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`0854fce8bc`](https://github.com/nodejs/node/commit/0854fce8bc)] - **test**: adapt test-v8-serdes for V8 9.9 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`73d53fe9f5`](https://github.com/nodejs/node/commit/73d53fe9f5)] - **test**: only skip slow tests on Raspberry Pi devices (Richard Lau) [#&#8203;42645](https://github.com/nodejs/node/pull/42645) - \[[`db7fa9f4b7`](https://github.com/nodejs/node/commit/db7fa9f4b7)] - **test**: allow numeric string for lookupService test (Daeyeon Jeong) [#&#8203;42596](https://github.com/nodejs/node/pull/42596) - \[[`0525a147b2`](https://github.com/nodejs/node/commit/0525a147b2)] - **test**: remove an unnecessary `undefined` in wpt (Khaidi Chu) [#&#8203;41470](https://github.com/nodejs/node/pull/41470) - \[[`bb762c5bd0`](https://github.com/nodejs/node/commit/bb762c5bd0)] - **test**: simplify test-http-write-callbacks.js (Tobias Nießen) [#&#8203;42628](https://github.com/nodejs/node/pull/42628) - \[[`1600869eb7`](https://github.com/nodejs/node/commit/1600869eb7)] - **test**: fix comments in test files (Daeyeon Jeong) [#&#8203;42536](https://github.com/nodejs/node/pull/42536) - \[[`82181bb9b8`](https://github.com/nodejs/node/commit/82181bb9b8)] - **test**: fix failure in test/sequential/test-heapdump.js (Darshan Sen) [#&#8203;41772](https://github.com/nodejs/node/pull/41772) - \[[`ba5b5acaf1`](https://github.com/nodejs/node/commit/ba5b5acaf1)] - **test**: improve ` worker_threads ` coverage (Erick Wendel) [#&#8203;41818](https://github.com/nodejs/node/pull/41818) - \[[`f076c36335`](https://github.com/nodejs/node/commit/f076c36335)] - **tools**: update clang-format 1.6.0 to 1.7.0 (Rich Trott) [#&#8203;42724](https://github.com/nodejs/node/pull/42724) - \[[`45162bf9e7`](https://github.com/nodejs/node/commit/45162bf9e7)] - **tools**: update clang-format from 1.2.3 to 1.6.0 (Rich Trott) [#&#8203;42685](https://github.com/nodejs/node/pull/42685) - \[[`40bc08089d`](https://github.com/nodejs/node/commit/40bc08089d)] - **tools**: update V8 gypfiles for 10.1 (Michaël Zasso) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`09513cd1a3`](https://github.com/nodejs/node/commit/09513cd1a3)] - **tools**: update eslint to 8.13.0 (Node.js GitHub Bot) [#&#8203;42678](https://github.com/nodejs/node/pull/42678) - \[[`b99bb57416`](https://github.com/nodejs/node/commit/b99bb57416)] - **tools**: update gyp-next to v0.12.1 (Michaël Zasso) [#&#8203;42625](https://github.com/nodejs/node/pull/42625) - \[[`2468db1f53`](https://github.com/nodejs/node/commit/2468db1f53)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;21](https://github.com/21).0.3 (Node.js GitHub Bot) [#&#8203;42584](https://github.com/nodejs/node/pull/42584) - \[[`8a3f28a05c`](https://github.com/nodejs/node/commit/8a3f28a05c)] - **tools**: add v8-embedder-state-scope.h to distributed headers (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`30c4e1d952`](https://github.com/nodejs/node/commit/30c4e1d952)] - **tools**: update V8 gypfiles for 9.8 (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`1ad44094a2`](https://github.com/nodejs/node/commit/1ad44094a2)] - **tools**: update V8 gypfiles for 9.7 (Michaël Zasso) [#&#8203;40907](https://github.com/nodejs/node/pull/40907) - \[[`86b77f7d0f`](https://github.com/nodejs/node/commit/86b77f7d0f)] - **tools,doc**: use V8::DisposePlatform (Michaël Zasso) [#&#8203;41610](https://github.com/nodejs/node/pull/41610) - \[[`62e62757b3`](https://github.com/nodejs/node/commit/62e62757b3)] - **tools,test**: fix V8 initialization order (Camillo Bruni) [#&#8203;42657](https://github.com/nodejs/node/pull/42657) - \[[`0187bc5cdc`](https://github.com/nodejs/node/commit/0187bc5cdc)] - **v8**: make v8.writeHeapSnapshot() error codes consistent (Darshan Sen) [#&#8203;42577](https://github.com/nodejs/node/pull/42577) - \[[`74b9baa426`](https://github.com/nodejs/node/commit/74b9baa426)] - **v8**: make writeHeapSnapshot throw if fopen fails (Antonio Román) [#&#8203;41373](https://github.com/nodejs/node/pull/41373) ### [`v17.9.0`](https://github.com/nodejs/node/releases/v17.9.0) [Compare Source](https://github.com/nodejs/node/compare/v17.8.0...v17.9.0) ##### Notable Changes - \[[`7124f91cbf`](https://github.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#&#8203;42427](https://github.com/nodejs/node/pull/42427) - \[[`30dc6dd3fb`](https://github.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#&#8203;42414](https://github.com/nodejs/node/pull/42414) - \[[`f0fc2744a5`](https://github.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add [@&#8203;meixg](https://github.com/meixg) to collaborators (Xuguang Mei) [#&#8203;42576](https://github.com/nodejs/node/pull/42576) ##### Commits - \[[`bb71433334`](https://github.com/nodejs/node/commit/bb71433334)] - **async_hooks**: remove destroyed symbol on Promises (Gerhard Stöbich) [#&#8203;42402](https://github.com/nodejs/node/pull/42402) - \[[`b48a6cb3f9`](https://github.com/nodejs/node/commit/b48a6cb3f9)] - **bootstrap**: reset process.\_exit and process.exitCode in pre-execution (Joyee Cheung) [#&#8203;42466](https://github.com/nodejs/node/pull/42466) - \[[`b89f038537`](https://github.com/nodejs/node/commit/b89f038537)] - **bootstrap**: run inspector and event loop in snapshot builder (Joyee Cheung) [#&#8203;42466](https://github.com/nodejs/node/pull/42466) - \[[`177558600e`](https://github.com/nodejs/node/commit/177558600e)] - **bootstrap**: make I/O streams work with user-land snapshot (Joyee Cheung) [#&#8203;42466](https://github.com/nodejs/node/pull/42466) - \[[`e3683cb34d`](https://github.com/nodejs/node/commit/e3683cb34d)] - **bootstrap**: refresh options in pre-execution (Joyee Cheung) [#&#8203;42466](https://github.com/nodejs/node/pull/42466) - \[[`d302d2f0d2`](https://github.com/nodejs/node/commit/d302d2f0d2)] - **bootstrap**: use SnapshotData to pass snapshot data around (Joyee Cheung) [#&#8203;42360](https://github.com/nodejs/node/pull/42360) - \[[`eb3dfc00f0`](https://github.com/nodejs/node/commit/eb3dfc00f0)] - **buffer**: improve Blob constructor error message when passing a string (Xuguang Mei) [#&#8203;42338](https://github.com/nodejs/node/pull/42338) - \[[`f45d5537c1`](https://github.com/nodejs/node/commit/f45d5537c1)] - **buffer**: fix `atob` input validation (Antoine du Hamel) [#&#8203;42539](https://github.com/nodejs/node/pull/42539) - \[[`fb6a5ba8d7`](https://github.com/nodejs/node/commit/fb6a5ba8d7)] - **build**: remove precompiled header and debug information for host builds (Niyas Sait) [#&#8203;42538](https://github.com/nodejs/node/pull/42538) - \[[`1f7d2e800c`](https://github.com/nodejs/node/commit/1f7d2e800c)] - **build**: windows/arm64 native compilation support (Niyas Sait) [#&#8203;42408](https://github.com/nodejs/node/pull/42408) - \[[`d9a1d7866c`](https://github.com/nodejs/node/commit/d9a1d7866c)] - **build**: consolidate JS and md linting GitHub Actions (Rich Trott) [#&#8203;42572](https://github.com/nodejs/node/pull/42572) - \[[`ecb5be845d`](https://github.com/nodejs/node/commit/ecb5be845d)] - **build**: set stale action back to running nightly (Michael Dawson) [#&#8203;42549](https://github.com/nodejs/node/pull/42549) - \[[`f9fb7f6d96`](https://github.com/nodejs/node/commit/f9fb7f6d96)] - **build**: add --node-snapshot-main configure option (Joyee Cheung) [#&#8203;42466](https://github.com/nodejs/node/pull/42466) - \[[`c6808f088b`](https://github.com/nodejs/node/commit/c6808f088b)] - **build**: bump actions/checkout (Eliaz Bobadilla) [#&#8203;42460](https://github.com/nodejs/node/pull/42460) - \[[`9a54acb7c6`](https://github.com/nodejs/node/commit/9a54acb7c6)] - **child_process**: add env contents types in JSDoc (Rich Trott) [#&#8203;42494](https://github.com/nodejs/node/pull/42494) - \[[`a2f07380ea`](https://github.com/nodejs/node/commit/a2f07380ea)] - **crypto**: do not add undefined hash in webcrypto normalizeAlgorithm (Filip Skokan) [#&#8203;42559](https://github.com/nodejs/node/pull/42559) - \[[`9b4bd7d031`](https://github.com/nodejs/node/commit/9b4bd7d031)] - **crypto**: cleanup webcrypto jwk code (Filip Skokan) [#&#8203;42562](https://github.com/nodejs/node/pull/42562) - \[[`541a1328b0`](https://github.com/nodejs/node/commit/541a1328b0)] - **crypto**: fix webcrypto derive key lengths (Filip Skokan) [#&#8203;42542](https://github.com/nodejs/node/pull/42542) - \[[`7124f91cbf`](https://github.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#&#8203;42427](https://github.com/nodejs/node/pull/42427) - \[[`30dc6dd3fb`](https://github.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#&#8203;42414](https://github.com/nodejs/node/pull/42414) - \[[`6e56924274`](https://github.com/nodejs/node/commit/6e56924274)] - **doc**: simplify Http2Stream encoding text (Rich Trott) [#&#8203;42597](https://github.com/nodejs/node/pull/42597) - \[[`261672b1da`](https://github.com/nodejs/node/commit/261672b1da)] - **doc**: remove obsolete stream API selection text (Rich Trott) [#&#8203;42586](https://github.com/nodejs/node/pull/42586) - \[[`beffed1880`](https://github.com/nodejs/node/commit/beffed1880)] - **doc**: remove faulty justification for 128-bit AES (Tobias Nießen) [#&#8203;42578](https://github.com/nodejs/node/pull/42578) - \[[`71f4a39086`](https://github.com/nodejs/node/commit/71f4a39086)] - **doc**: fix documentation of `FileHandle.prototype.appendFile` (Antoine du Hamel) [#&#8203;42588](https://github.com/nodejs/node/pull/42588) - \[[`c83ea22f7c`](https://github.com/nodejs/node/commit/c83ea22f7c)] - **doc**: change "OCSP Request" to "OCSP request" (Tobias Nießen) [#&#8203;42582](https://github.com/nodejs/node/pull/42582) - \[[`71ab0dea35`](https://github.com/nodejs/node/commit/71ab0dea35)] - **doc**: aes webcrypto unwrap is not a node-specific extensions (Filip Skokan) [#&#8203;42561](https://github.com/nodejs/node/pull/42561) - \[[`1c614184da`](https://github.com/nodejs/node/commit/1c614184da)] - **doc**: simplify recommendations in process.md (Rich Trott) [#&#8203;42556](https://github.com/nodejs/node/pull/42556) - \[[`c036800ddc`](https://github.com/nodejs/node/commit/c036800ddc)] - **doc**: clarify recommendations in stream.md (Rich Trott) [#&#8203;42555](https://github.com/nodejs/node/pull/42555) - \[[`dcf0abf8c7`](https://github.com/nodejs/node/commit/dcf0abf8c7)] - **doc**: simplify recommendation in webcrypto.md (Rich Trott) [#&#8203;42554](https://github.com/nodejs/node/pull/42554) - \[[`8333fa063b`](https://github.com/nodejs/node/commit/8333fa063b)] - **doc**: update DEP0102 text (Rich Trott) [#&#8203;42553](https://github.com/nodejs/node/pull/42553) - \[[`8b08bff682`](https://github.com/nodejs/node/commit/8b08bff682)] - **doc**: remove util.promisify() content in readline.md (Rich Trott) [#&#8203;42552](https://github.com/nodejs/node/pull/42552) - \[[`94492424ba`](https://github.com/nodejs/node/commit/94492424ba)] - **doc**: add introduction sentence for CJS (Antoine du Hamel) [#&#8203;42491](https://github.com/nodejs/node/pull/42491) - \[[`f0fc2744a5`](https://github.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add [@&#8203;meixg](https://github.com/meixg) to collaborators (Xuguang Mei) [#&#8203;42576](https://github.com/nodejs/node/pull/42576) - \[[`d935fef594`](https://github.com/nodejs/node/commit/d935fef594)] - **doc**: consolidate CI sections (Rich Trott) [#&#8203;42534](https://github.com/nodejs/node/pull/42534) - \[[`fd45df314b`](https://github.com/nodejs/node/commit/fd45df314b)] - **doc**: document breaking change in `http.IncomingMessage` `'close'` event (Paolo Insogna) [#&#8203;42521](https://github.com/nodejs/node/pull/42521) - \[[`53584fa750`](https://github.com/nodejs/node/commit/53584fa750)] - **doc**: remove extraneous comma (Rich Trott) [#&#8203;42548](https://github.com/nodejs/node/pull/42548) - \[[`b819af6509`](https://github.com/nodejs/node/commit/b819af6509)] - **doc**: guide towards x509.fingerprint256 (Tobias Nießen) [#&#8203;42516](https://github.com/nodejs/node/pull/42516) - \[[`f2355e41ed`](https://github.com/nodejs/node/commit/f2355e41ed)] - **doc**: fix internal link in collaborator-guide.md (Daeyeon Jeong) [#&#8203;42551](https://github.com/nodejs/node/pull/42551) - \[[`ffc6776996`](https://github.com/nodejs/node/commit/ffc6776996)] - **doc**: add suggestion for OpenSSL only sec releases (Michael Dawson) [#&#8203;42456](https://github.com/nodejs/node/pull/42456) - \[[`1454c0297d`](https://github.com/nodejs/node/commit/1454c0297d)] - **doc**: fix comment text in async_hooks example (Rich Trott) [#&#8203;42499](https://github.com/nodejs/node/pull/42499) - \[[`b9ab9867f4`](https://github.com/nodejs/node/commit/b9ab9867f4)] - **doc**: add `stability` class to legacy status description (Daniel Roe) [#&#8203;42525](https://github.com/nodejs/node/pull/42525) - \[[`6c13988d53`](https://github.com/nodejs/node/commit/6c13988d53)] - **doc**: suggest checkHost in checkServerIdentity docs (Tobias Nießen) [#&#8203;42495](https://github.com/nodejs/node/pull/42495) - \[[`28665a9dd6`](https://github.com/nodejs/node/commit/28665a9dd6)] - **doc**: update security release onboarding (Joe Sepi) [#&#8203;42333](https://github.com/nodejs/node/pull/42333) - \[[`d335addf0c`](https://github.com/nodejs/node/commit/d335addf0c)] - **doc**: fix question promise API example (Xuguang Mei) [#&#8203;42465](https://github.com/nodejs/node/pull/42465) - \[[`7cf9febcb4`](https://github.com/nodejs/node/commit/7cf9febcb4)] - **doc**: remove comma splice in events.md (Rich Trott) [#&#8203;42484](https://github.com/nodejs/node/pull/42484) - \[[`3c3684d9f1`](https://github.com/nodejs/node/commit/3c3684d9f1)] - **doc**: clarify napi_finalize behavior (Alba Mendez) [#&#8203;42461](https://github.com/nodejs/node/pull/42461) - \[[`334cc1936b`](https://github.com/nodejs/node/commit/334cc1936b)] - **doc**: expand history for conditional exports changes in v12 (Greg Poole) [#&#8203;42339](https://github.com/nodejs/node/pull/42339) - \[[`fb146f9eaf`](https://github.com/nodejs/node/commit/fb146f9eaf)] - **doc**: change comma-splice to two sentences (Rich Trott) [#&#8203;42455](https://github.com/nodejs/node/pull/42455) - \[[`ce4b823946`](https://github.com/nodejs/node/commit/ce4b823946)] - **doc**: add link to section (Rich Trott) [#&#8203;42428](https://github.com/nodejs/node/pull/42428) - \[[`5869275479`](https://github.com/nodejs/node/commit/5869275479)] - **doc**: fix typo in async_context.md (Anupama Codippily) [#&#8203;42444](https://github.com/nodejs/node/pull/42444) - \[[`48bd9fa2c7`](https://github.com/nodejs/node/commit/48bd9fa2c7)] - **doc**: add `trace_gc` to diagnostic tooling support document (Tony Gorez) [#&#8203;42346](https://github.com/nodejs/node/pull/42346) - \[[`00f693b6b1`](https://github.com/nodejs/node/commit/00f693b6b1)] - **doc**: make header smaller and dropdown click-driven when JS is on (Paolo Insogna) [#&#8203;42165](https://github.com/nodejs/node/pull/42165) - \[[`abbb23620a`](https://github.com/nodejs/node/commit/abbb23620a)] - **doc**: standardize typography for \_semantic versioning\_ (Rich Trott) [#&#8203;42401](https://github.com/nodejs/node/pull/42401) - \[[`e763e575c6`](https://github.com/nodejs/node/commit/e763e575c6)] - **doc**: unify import order in CCM example (Tobias Nießen) [#&#8203;42394](https://github.com/nodejs/node/pull/42394) - \[[`10d638a735`](https://github.com/nodejs/node/commit/10d638a735)] - **doc**: update property name (Rich Trott) [#&#8203;42398](https://github.com/nodejs/node/pull/42398) - \[[`5589a448b7`](https://github.com/nodejs/node/commit/5589a448b7)] - **doc,test**: clarify ChaCha20-Poly1305 usage (Tobias Nießen) [#&#8203;42323](https://github.com/nodejs/node/pull/42323) - \[[`902776e674`](https://github.com/nodejs/node/commit/902776e674)] - **esm**: emit experimental warnings in common place (Jacob Smith) [#&#8203;42314](https://github.com/nodejs/node/pull/42314) - \[[`8009cb0a78`](https://github.com/nodejs/node/commit/8009cb0a78)] - **fs**: fix write methods param validation and docs (Livia Medeiros) [#&#8203;42631](https://github.com/nodejs/node/pull/42631) - \[[`a9dc3a92d9`](https://github.com/nodejs/node/commit/a9dc3a92d9)] - **lib**: prepare files for no-var lint rule (Rich Trott) [#&#8203;42573](https://github.com/nodejs/node/pull/42573) - \[[`3306fee824`](https://github.com/nodejs/node/commit/3306fee824)] - **lib**: source maps filter null prefix (Fabian Cook) [#&#8203;42522](https://github.com/nodejs/node/pull/42522) - \[[`3bac969655`](https://github.com/nodejs/node/commit/3bac969655)] - **lib**: improve the coverage of the validator (mawaregetsuka) [#&#8203;42443](https://github.com/nodejs/node/pull/42443) - \[[`b74de21cc3`](https://github.com/nodejs/node/commit/b74de21cc3)] - **lib**: update JSDoc for linting (Rich Trott) [#&#8203;42489](https://github.com/nodejs/node/pull/42489) - \[[`7766bf954f`](https://github.com/nodejs/node/commit/7766bf954f)] - **meta**: update .mailmap and AUTHORS (Rich Trott) [#&#8203;42602](https://github.com/nodejs/node/pull/42602) - \[[`93ffc5535a`](https://github.com/nodejs/node/commit/93ffc5535a)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;42500](https://github.com/nodejs/node/pull/42500) - \[[`256509056d`](https://github.com/nodejs/node/commit/256509056d)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42585](https://github.com/nodejs/node/pull/42585) - \[[`41c2a32390`](https://github.com/nodejs/node/commit/41c2a32390)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42488](https://github.com/nodejs/node/pull/42488) - \[[`b71a8107c0`](https://github.com/nodejs/node/commit/b71a8107c0)] - **net,dns**: trace tcp connection and dns by perf_hooks (theanarkh) [#&#8203;42390](https://github.com/nodejs/node/pull/42390) - \[[`f9f3b6e45d`](https://github.com/nodejs/node/commit/f9f3b6e45d)] - **node-api**: format Node-API related code (Vladimir Morozov) [#&#8203;42396](https://github.com/nodejs/node/pull/42396) - \[[`0bd9d9e24f`](https://github.com/nodejs/node/commit/0bd9d9e24f)] - **os**: avoid unnecessary usage of var (Mohammed Keyvanzadeh) [#&#8203;42563](https://github.com/nodejs/node/pull/42563) - \[[`e798e26dfd`](https://github.com/nodejs/node/commit/e798e26dfd)] - **src**: add proper mutexes for accessing FIPS state (Anna Henningsen) [#&#8203;42278](https://github.com/nodejs/node/pull/42278) - \[[`a1fe0d2222`](https://github.com/nodejs/node/commit/a1fe0d2222)] - **src**: fix typo in InspectorIoDelegate constructor (Kohei Ueno) [#&#8203;42520](https://github.com/nodejs/node/pull/42520) - \[[`0c54f3637b`](https://github.com/nodejs/node/commit/0c54f3637b)] - **src**: remove unnecessary static qualifier in crypto_dh.cc (Darshan Sen) [#&#8203;42492](https://github.com/nodejs/node/pull/42492) - \[[`2e6a66d7d7`](https://github.com/nodejs/node/commit/2e6a66d7d7)] - **src**: address 3 useless call coverity warnings (Michael Dawson) [#&#8203;42426](https://github.com/nodejs/node/pull/42426) - \[[`ce9d840079`](https://github.com/nodejs/node/commit/ce9d840079)] - **src**: properly report exceptions from AddressToJS() (Darshan Sen) [#&#8203;42054](https://github.com/nodejs/node/pull/42054) - \[[`c6a558c61b`](https://github.com/nodejs/node/commit/c6a558c61b)] - **src**: suppress false coverity warning (Michael Dawson) [#&#8203;42284](https://github.com/nodejs/node/pull/42284) - \[[`878148c266`](https://github.com/nodejs/node/commit/878148c266)] - **src**: refactor IsSupportedAuthenticatedMode (Tobias Nießen) [#&#8203;42368](https://github.com/nodejs/node/pull/42368) - \[[`970483ffd3`](https://github.com/nodejs/node/commit/970483ffd3)] - **src,crypto**: handle empty maybe correctly in crypto_dh.cc (Darshan Sen) [#&#8203;42492](https://github.com/nodejs/node/pull/42492) - \[[`a348f8ac1a`](https://github.com/nodejs/node/commit/a348f8ac1a)] - **src,crypto**: remove uses of AllocatedBuffer from crypto_dh.cc (Darshan Sen) [#&#8203;42492](https://github.com/nodejs/node/pull/42492) - \[[`fb25ba435c`](https://github.com/nodejs/node/commit/fb25ba435c)] - **test**: improve lib/internal/readline/promises.js coverage (MURAKAMI Masahiko) [#&#8203;42420](https://github.com/nodejs/node/pull/42420) - \[[`4cbb1ea910`](https://github.com/nodejs/node/commit/4cbb1ea910)] - **test**: remove hack for `atob` and `btoa` WPT tests (Antoine du Hamel) [#&#8203;42540](https://github.com/nodejs/node/pull/42540) - \[[`f41a4780d5`](https://github.com/nodejs/node/commit/f41a4780d5)] - **test**: pass data into napi_create_external (Joyee Cheung) [#&#8203;42532](https://github.com/nodejs/node/pull/42532) - \[[`90554572b5`](https://github.com/nodejs/node/commit/90554572b5)] - **test**: improve `FileHandle.prototype.write` coverage (Antoine du Hamel) [#&#8203;42541](https://github.com/nodejs/node/pull/42541) - \[[`797994e4c0`](https://github.com/nodejs/node/commit/797994e4c0)] - **test**: add test for exception handlings in debugger (Kohei Ueno) [#&#8203;42327](https://github.com/nodejs/node/pull/42327) - \[[`8c9b5e9a36`](https://github.com/nodejs/node/commit/8c9b5e9a36)] - **test**: fix typo in common/wpt.js (Ikko Ashimine) [#&#8203;42567](https://github.com/nodejs/node/pull/42567) - \[[`2f682091cd`](https://github.com/nodejs/node/commit/2f682091cd)] - **test**: fix typos in test/parallel (Daeyeon Jeong) [#&#8203;42502](https://github.com/nodejs/node/pull/42502) - \[[`52d1c8d6d9`](https://github.com/nodejs/node/commit/52d1c8d6d9)] - **test**: add trace-gc flag test (Tony Gorez) [#&#8203;42471](https://github.com/nodejs/node/pull/42471) - \[[`19c933c79a`](https://github.com/nodejs/node/commit/19c933c79a)] - **test,fs**: add fs.rm() tests for .git directories (Darshan Sen) [#&#8203;42410](https://github.com/nodejs/node/pull/42410) - \[[`d64c4fb94d`](https://github.com/nodejs/node/commit/d64c4fb94d)] - **tools**: enable no-var ESLint rule for lib (Rich Trott) [#&#8203;42573](https://github.com/nodejs/node/pull/42573) - \[[`a9f2636d12`](https://github.com/nodejs/node/commit/a9f2636d12)] - **tools**: fixed bug causing JSON format to be broken (mawaregetsuka) [#&#8203;41565](https://github.com/nodejs/node/pull/41565) - \[[`bff9cae16a`](https://github.com/nodejs/node/commit/bff9cae16a)] - **tools**: update GHA actions version (Antoine du Hamel) [#&#8203;42498](https://github.com/nodejs/node/pull/42498) - \[[`c6bfb225cd`](https://github.com/nodejs/node/commit/c6bfb225cd)] - **tools**: update eslint to 8.12.0 (Node.js GitHub Bot) [#&#8203;42489](https://github.com/nodejs/node/pull/42489) - \[[`464e57ffc7`](https://github.com/nodejs/node/commit/464e57ffc7)] - **tools**: update lint-md-dependencies to vfile-reporter@7.0.4 (Node.js GitHub Bot) [#&#8203;42487](https://github.com/nodejs/node/pull/42487) - \[[`13dd8e73df`](https://github.com/nodejs/node/commit/13dd8e73df)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;42416](https://github.com/nodejs/node/pull/42416) - \[[`3a1b0e5b87`](https://github.com/nodejs/node/commit/3a1b0e5b87)] - **tools**: bump cpplint to 1.6.0 (Rich Trott) [#&#8203;42416](https://github.com/nodejs/node/pull/42416) - \[[`9344a06d9c`](https://github.com/nodejs/node/commit/9344a06d9c)] - **tools**: fix skip PR if CI is still running (Xuguang Mei) [#&#8203;42377](https://github.com/nodejs/node/pull/42377) ### [`v17.8.0`](https://github.com/nodejs/node/releases/v17.8.0) [Compare Source](https://github.com/nodejs/node/compare/v17.7.2...v17.8.0) ##### Notable Changes - \[[`3bd0078457`](https://github.com/nodejs/node/commit/3bd0078457)] - **doc**: add [@&#8203;ShogunPanda](https://github.com/ShogunPanda) to collaborators (Shogun) [#&#8203;42362](https://github.com/nodejs/node/pull/42362) - \[[`23354673be`](https://github.com/nodejs/node/commit/23354673be)] - **doc**: deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#&#8203;42149](https://github.com/nodejs/node/pull/42149) - \[[`da42ffb85e`](https://github.com/nodejs/node/commit/da42ffb85e)] - **(SEMVER-MINOR)** **http**: trace http client by perf_hooks (theanarkh) [#&#8203;42345](https://github.com/nodejs/node/pull/42345) - \[[`84fd6e54b0`](https://github.com/nodejs/node/commit/84fd6e54b0)] - **deps**: upgrade npm to 8.5.5 (npm team) [#&#8203;42382](https://github.com/nodejs/node/pull/42382) - \[[`b60262ee9f`](https://github.com/nodejs/node/commit/b60262ee9f)] - **deps**: update undici to 4.15.1 (Michaël Zasso) [#&#8203;42246](https://github.com/nodejs/node/pull/42246) ##### Commits - \[[`1796f035c7`](https://github.com/nodejs/node/commit/1796f035c7)] - **build**: rename tools workflow and add undici to it (Michaël Zasso) [#&#8203;42246](https://github.com/nodejs/node/pull/42246) - \[[`f27bcec2ea`](https://github.com/nodejs/node/commit/f27bcec2ea)] - **build**: use ccache in make-v8.sh on ppc64le and s390x (Richard Lau) [#&#8203;42204](https://github.com/nodejs/node/pull/42204) - \[[`f48c3baf5a`](https://github.com/nodejs/node/commit/f48c3baf5a)] - **crypto**: fix auth tag length error when mode != GCM (Tobias Nießen) [#&#8203;42383](https://github.com/nodejs/node/pull/42383) - \[[`1d0468f749`](https://github.com/nodejs/node/commit/1d0468f749)] - **crypto**: fix fingerprint string size calculation (Tobias Nießen) [#&#8203;42175](https://github.com/nodejs/node/pull/42175) - \[[`a4632a3dc2`](https://github.com/nodejs/node/commit/a4632a3dc2)] - **crypto**: add CHECKs to remaining BIO_s_mem allocs (Tobias Nießen) [#&#8203;42155](https://github.com/nodejs/node/pull/42155) - \[[`3b55946452`](https://github.com/nodejs/node/commit/3b55946452)] - **debugger**: correct typo in inspect_repl.js (Kohei Ueno) [#&#8203;42267](https://github.com/nodejs/node/pull/42267) - \[[`84fd6e54b0`](https://github.com/nodejs/node/commit/84fd6e54b0)] - **deps**: upgrade npm to 8.5.5 (npm team) [#&#8203;42382](https://github.com/nodejs/node/pull/42382) - \[[`f2178fcc1a`](https://github.com/nodejs/node/commit/f2178fcc1a)] - **deps**: cares: cherry-pick [`b5a3d96`](https://github.com/nodejs/node/commit/b5a3d96) (bradh352) [#&#8203;42216](https://github.com/nodejs/node/pull/42216) - \[[`063ff08cb1`](https://github.com/nodejs/node/commit/063ff08cb1)] - **deps**: V8: cherry-pick [`c6f6626`](https://github.com/nodejs/node/commit/c6f6626deb14) (Lu Yahan) [#&#8203;42240](https://github.com/nodejs/node/pull/42240) - \[[`b60262ee9f`](https://github.com/nodejs/node/commit/b60262ee9f)] - **deps**: update undici to 4.15.1 (Michaël Zasso) [#&#8203;42246](https://github.com/nodejs/node/pull/42246) - \[[`70c0758308`](https://github.com/nodejs/node/commit/70c0758308)] - **deps**: upgrade npm to 8.5.3 (npm team) [#&#8203;42205](https://github.com/nodejs/node/pull/42205) - \[[`fd51e78963`](https://github.com/nodejs/node/commit/fd51e78963)] - **doc**: fix version history for `net.Socket` and `net.Server` (Antoine du Hamel) [#&#8203;42268](https://github.com/nodejs/node/pull/42268) - \[[`db83c4d6dc`](https://github.com/nodejs/node/commit/db83c4d6dc)] - **doc**: improve README.md usability (Rich Trott) [#&#8203;42378](https://github.com/nodejs/node/pull/42378) - \[[`88d3401329`](https://github.com/nodejs/node/commit/88d3401329)] - **doc**: add that chacha20-poly1305 is IETF version (Tobias Nießen) [#&#8203;42370](https://github.com/nodejs/node/pull/42370) - \[[`04a7c0061b`](https://github.com/nodejs/node/commit/04a7c0061b)] - **doc**: update instructions for openssl updates (Michael Dawson) [#&#8203;42353](https://github.com/nodejs/node/pull/42353) - \[[`78b858dd4b`](https://github.com/nodejs/node/commit/78b858dd4b)] - **doc**: document goal to have examples (Michael Dawson) [#&#8203;42274](https://github.com/nodejs/node/pull/42274) - \[[`a5e42f0113`](https://github.com/nodejs/node/commit/a5e42f0113)] - **doc**: fix Embedder's Guide link to V8 official docs (Aroyan) [#&#8203;42373](https://github.com/nodejs/node/pull/42373) - \[[`6c265e7243`](https://github.com/nodejs/node/commit/6c265e7243)] - **doc**: remove unneeded lint disable comment (Rich Trott) [#&#8203;42374](https://github.com/nodejs/node/pull/42374) - \[[`46d3d23e64`](https://github.com/nodejs/node/commit/46d3d23e64)] - **doc**: revise async_hooks docs (Rich Trott) [#&#8203;42337](https://github.com/nodejs/node/pull/42337) - \[[`3bd0078457`](https://github.com/nodejs/node/commit/3bd0078457)] - **doc**: add [@&#8203;ShogunPanda](https://github.com/ShogunPanda) to collaborators (Shogun) [#&#8203;42362](https://github.com/nodejs/node/pull/42362) - \[[`e7e8eb9f03`](https://github.com/nodejs/node/commit/e7e8eb9f03)] - **doc**: update base branch name for `nodejs/nodejs.org` (Danielle Adams) [#&#8203;42355](https://github.com/nodejs/node/pull/42355) - \[[`fd7e4ab654`](https://github.com/nodejs/node/commit/fd7e4ab654)] - **doc**: fix async iterable pipeline signal examples (Randall Leeds) [#&#8203;42258](https://github.com/nodejs/node/pull/42258) - \[[`96dc591b55`](https://github.com/nodejs/node/commit/96dc591b55)] - **doc**: clarify path search in `child_process.spawn` (Damjan Cvetko) [#&#8203;41418](https://github.com/nodejs/node/pull/41418) - \[[`72dd50016a`](https://github.com/nodejs/node/commit/72dd50016a)] - **doc**: clarify the meaning of legacy status (Darshan Sen) [#&#8203;42269](https://github.com/nodejs/node/pull/42269) - \[[`8b99099063`](https://github.com/nodejs/node/commit/8b99099063)] - **doc**: improve pipe description (Mikael Finstad) [#&#8203;42295](https://github.com/nodejs/node/pull/42295) - \[[`701dc14fdf`](https://github.com/nodejs/node/commit/701dc14fdf)] - **doc**: remove outdated timeout.unref content (Xuguang Mei) [#&#8203;42241](https://github.com/nodejs/node/pull/42241) - \[[`23354673be`](https://github.com/nodejs/node/commit/23354673be)] - **doc**: deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#&#8203;42149](https://github.com/nodejs/node/pull/42149) - \[[`f3c6c00963`](https://github.com/nodejs/node/commit/f3c6c00963)] - **doc**: remove refs to old OpenSSL list-\* commands (Tobias Nießen) [#&#8203;42235](https://github.com/nodejs/node/pull/42235) - \[[`19851f8d2d`](https://github.com/nodejs/node/commit/19851f8d2d)] - **doc**: readline `'line'` event emits final line (Matt Probert) [#&#8203;42214](https://github.com/nodejs/node/pull/42214) - \[[`e55283b978`](https://github.com/nodejs/node/commit/e55283b978)] - **esm**: make extension-less errors in type:module actionable (Bradley Farias) [#&#8203;42301](https://github.com/nodejs/node/pull/42301) - \[[`e17db8f0fa`](https://github.com/nodejs/node/commit/e17db8f0fa)] - **esm**: improve typings and code coverage (Bradley Farias) [#&#8203;42305](https://github.com/nodejs/node/pull/42305) - \[[`4829a1047f`](https://github.com/nodejs/node/commit/4829a1047f)] - **esm**: add runtime warning for specifier resolution flag (Geoffrey Booth) [#&#8203;42252](https://github.com/nodejs/node/pull/42252) - \[[`da42ffb85e`](https://github.com/nodejs/node/commit/da42ffb85e)] - **(SEMVER-MINOR)** **http**: trace http client by perf_hooks (theanarkh) [#&#8203;42345](https://github.com/nodejs/node/pull/42345) - \[[`88dee3c6b5`](https://github.com/nodejs/node/commit/88dee3c6b5)] - **http2**: fix potential integer overflow (Michael Dawson) [#&#8203;42248](https://github.com/nodejs/node/pull/42248) - \[[`1fe0b69c31`](https://github.com/nodejs/node/commit/1fe0b69c31)] - **lib**: refactor to use primordials in `lib/assert.js` (Akhil Marsonya) [#&#8203;41702](https://github.com/nodejs/node/pull/41702) - \[[`69a3792540`](https://github.com/nodejs/node/commit/69a3792540)] - **lib**: fix AsyncResource.bind not using 'this' from the caller by default (Roch Devost) [#&#8203;42177](https://github.com/nodejs/node/pull/42177) - \[[`1c87ce6a32`](https://github.com/nodejs/node/commit/1c87ce6a32)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42404](https://github.com/nodejs/node/pull/42404) - \[[`e7b8d83acd`](https://github.com/nodejs/node/commit/e7b8d83acd)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42317](https://github.com/nodejs/node/pull/42317) - \[[`7fc4b9f08d`](https://github.com/nodejs/node/commit/7fc4b9f08d)] - **meta**: add dependencies label to label-pr-config (Mestery) [#&#8203;42129](https://github.com/nodejs/node/pull/42129) - \[[`e96042442b`](https://github.com/nodejs/node/commit/e96042442b)] - **src**: convert hex2bin() into a regular function (Darshan Sen) [#&#8203;42321](https://github.com/nodejs/node/pull/42321) - \[[`21198c1407`](https://github.com/nodejs/node/commit/21198c1407)] - **src**: fix coverity warnings in node_file.cc (Michael Dawson) [#&#8203;42272](https://github.com/nodejs/node/pull/42272) - \[[`846b074075`](https://github.com/nodejs/node/commit/846b074075)] - **src**: check EC_POINT_get_affine_coordinates result (Tobias Nießen) [#&#8203;42304](https://github.com/nodejs/node/pull/42304) - \[[`8b84e68cbd`](https://github.com/nodejs/node/commit/8b84e68cbd)] - **src**: simplify bound check in ParseArrayIndex (Tobias Nießen) [#&#8203;42306](https://github.com/nodejs/node/pull/42306) - \[[`9500e5862e`](https://github.com/nodejs/node/commit/9500e5862e)] - **src**: avoid returning invalid value from hex2bin (Tobias Nießen) [#&#8203;42307](https://github.com/nodejs/node/pull/42307) - \[[`08e2d8ab86`](https://github.com/nodejs/node/commit/08e2d8ab86)] - **src**: check return value of HMAC_Final (Tobias Nießen) [#&#8203;42303](https://github.com/nodejs/node/pull/42303) - \[[`9fc4b9b04e`](https://github.com/nodejs/node/commit/9fc4b9b04e)] - **src**: include internal/options in the snapshot (Joyee Cheung) [#&#8203;42203](https://github.com/nodejs/node/pull/42203) - \[[`e43aa30982`](https://github.com/nodejs/node/commit/e43aa30982)] - **src**: remove redundant buffer size check (Tobias Nießen) [#&#8203;42257](https://github.com/nodejs/node/pull/42257) - \[[`d06e92dba0`](https://github.com/nodejs/node/commit/d06e92dba0)] - **src**: perform minor cleanups on zlib code (Anna Henningsen) [#&#8203;42247](https://github.com/nodejs/node/pull/42247) - \[[`9af908305d`](https://github.com/nodejs/node/commit/9af908305d)] - **src**: use `emplace_back` instead of `push_back` (Yash Ladha) [#&#8203;42159](https://github.com/nodejs/node/pull/42159) - \[[`62d9a7f5db`](https://github.com/nodejs/node/commit/62d9a7f5db)] - **src**: fix unchecked return warning from coverity (Michael Dawson) [#&#8203;42176](https://github.com/nodejs/node/pull/42176) - \[[`58763d7f9d`](https://github.com/nodejs/node/commit/58763d7f9d)] - **src,crypto**: avoid tristate Maybe\<bool> in ExportJWKEcKey() (Darshan Sen) [#&#8203;42223](https://github.com/nodejs/node/pull/42223) - \[[`5367002bc8`](https://github.com/nodejs/node/commit/5367002bc8)] - **stream**: do cleanup when iterator is destroyed (Khoo Hao Yit) [#&#8203;42320](https://github.com/nodejs/node/pull/42320) - \[[`3492a0eb1e`](https://github.com/nodejs/node/commit/3492a0eb1e)] - **string_decoder**: fix crash when calling \__proto\_\_.write() (Darshan Sen) [#&#8203;42062](https://github.com/nodejs/node/pull/42062) - \[[`d9a5c2b284`](https://github.com/nodejs/node/commit/d9a5c2b284)] - **test**: give slow tests more time on Rasberry PIs (Michael Dawson) [#&#8203;42380](https://github.com/nodejs/node/pull/42380) - \[[`b82bac09ff`](https://github.com/nodejs/node/commit/b82bac09ff)] - **test**: improve https_renew_cert.sh script (Tobias Nießen) [#&#8203;42343](https://github.com/nodejs/node/pull/42343) - \[[`dfdce7c182`](https://github.com/nodejs/node/commit/dfdce7c182)] - **test**: improve \_http_incoming.js coverage (Yoshiki Kurihara) [#&#8203;42211](https://github.com/nodejs/node/pull/42211) - \[[`4941791f29`](https://github.com/nodejs/node/commit/4941791f29)] - **test**: improve \_http_outgoing coverage (Yoshiki Kurihara) [#&#8203;42213](https://github.com/nodejs/node/pull/42213) - \[[`94e5eaa7e9`](https://github.com/nodejs/node/commit/94e5eaa7e9)] - **test**: add test case for reverted 17.7 regression (Rich Trott) [#&#8203;42283](https://github.com/nodejs/node/pull/42283) - \[[`a4aa9eb97f`](https://github.com/nodejs/node/commit/a4aa9eb97f)] - **test**: use global webcrypto for WPT tests (Antoine du Hamel) [#&#8203;42236](https://github.com/nodejs/node/pull/42236) - \[[`26d4a2d489`](https://github.com/nodejs/node/commit/26d4a2d489)] - **test,crypto**: add and update empty passphrase regression tests (Darshan Sen) [#&#8203;42319](https://github.com/nodejs/node/pull/42319) - \[[`4fd2aff42e`](https://github.com/nodejs/node/commit/4fd2aff42e)] - **tools**: make update-undici script executable (Michaël Zasso) [#&#8203;42406](https://github.com/nodejs/node/pull/42406) - \[[`38e7681ac7`](https://github.com/nodejs/node/commit/38e7681ac7)] - **tools**: update lint-md-dependencies to rollup@2.70.1 (Node.js GitHub Bot) [#&#8203;42403](https://github.com/nodejs/node/pull/42403) - \[[`b7a4b4b1fd`](https://github.com/nodejs/node/commit/b7a4b4b1fd)] - **tools**: update doc to highlight.js@11.5.0 unified@10.1.2 (Node.js GitHub Bot) [#&#8203;42315](https://github.com/nodejs/node/pull/42315) - \[[`30ea1889d5`](https://github.com/nodejs/node/commit/30ea1889d5)] - **tools**: update lint-md-dependencies to rollup@2.70.0 unified@10.1.2 (Node.js GitHub Bot) [#&#8203;42316](https://github.com/nodejs/node/pull/42316) - \[[`eb0e1a1147`](https://github.com/nodejs/node/commit/eb0e1a1147)] - **tools**: update eslint to 8.11.0 (Node.js GitHub Bot) [#&#8203;42318](https://github.com/nodejs/node/pull/42318) - \[[`e95426fd3a`](https://github.com/nodejs/node/commit/e95426fd3a)] - **tools**: fix web streams API links (Brian White) [#&#8203;42153](https://github.com/nodejs/node/pull/42153) - \[[`fe01940f35`](https://github.com/nodejs/node/commit/fe01940f35)] - **url**: preserve null char in WHATWG URL errors (Rich Trott) [#&#8203;42263](https://github.com/nodejs/node/pull/42263) - \[[`b89f4d5c17`](https://github.com/nodejs/node/commit/b89f4d5c17)] - **url**: trim leading and trailing C0 control chars (Rich Trott) [#&#8203;42196](https://github.com/nodejs/node/pull/42196) - \[[`229fb40edc`](https://github.com/nodejs/node/commit/229fb40edc)] - **worker**: do not send message if port is closing (Rich Trott) [#&#8203;42357](https://github.com/nodejs/node/pull/42357) ### [`v17.7.2`](https://github.com/nodejs/node/releases/v17.7.2) [Compare Source](https://github.com/nodejs/node/compare/v17.7.1...v17.7.2) This is a security release. ##### Notable Changes Update to OpenSSL 3.0.2, which addresses the following vulnerability: - Infinite loop in `BN_mod_sqrt()` reachable when parsing certificates (High)(CVE-2022-0778) More details are available at <https://www.openssl.org/news/secadv/20220315.txt> ##### Commits - \[[`55e293e05f`](https://github.com/nodejs/node/commit/55e293e05f)] - **deps**: update archs files for quictls/openssl-3.0.2+quic (Hassaan Pasha) [#&#8203;42356](https://github.com/nodejs/node/pull/42356) - \[[`b8d090603d`](https://github.com/nodejs/node/commit/b8d090603d)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.2+quic (Hassaan Pasha) [#&#8203;42356](https://github.com/nodejs/node/pull/42356) - \[[`c8b6d92af0`](https://github.com/nodejs/node/commit/c8b6d92af0)] - **test**: fix tests affected by OpenSSL update (Michael Dawson) [#&#8203;42356](https://github.com/nodejs/node/pull/42356) - \[[`457e31ea09`](https://github.com/nodejs/node/commit/457e31ea09)] - **test**: renew certificates for specific test (Luigi Pinca) [#&#8203;42342](https://github.com/nodejs/node/pull/42342) ### [`v17.7.1`](https://github.com/nodejs/node/releases/v17.7.1) [Compare Source](https://github.com/nodejs/node/compare/v17.6.0...v17.7.1) ##### Notable Changes ##### Fixed regression in url.resolve() This release fixes an issue introduced in Node.js v17.7.0 with some URLs that contain `@`. This issue affected yarn 1. This version reverts the change that introduced the regression. ##### Commits - \[[`96a9e00fb3`](https://github.com/nodejs/node/commit/96a9e00fb3)] - **url**: revert fix url.parse() for `@hostname` (Antoine du Hamel) [#&#8203;42280](https://github.com/nodejs/node/pull/42280) ### [`v17.6.0`](https://github.com/nodejs/node/releases/v17.6.0) [Compare Source](https://github.com/nodejs/node/compare/v17.5.0...v17.6.0) ##### Notable Changes - \[[`6b88595142`](https://github.com/nodejs/node/commit/6b88595142)] - **doc**: deprecate notice for process methods (Yash Ladha) [#&#8203;41587](https://github.com/nodejs/node/pull/41587) - \[[`77462b6083`](https://github.com/nodejs/node/commit/77462b6083)] - **stream**: revert `map` spec compliance (Benjamin Gruenbaum) [#&#8203;41931](https://github.com/nodejs/node/pull/41931) - \[[`b968d89fc9`](https://github.com/nodejs/node/commit/b968d89fc9)] - **build**: remove broken x32 arch support (Ben Noordhuis) [#&#8203;41905](https://github.com/nodejs/node/pull/41905) - \[[`ba639d052b`](https://github.com/nodejs/node/commit/ba639d052b)] - **(SEMVER-MINOR)** **esm**: support https remotely and http locally under flag (Bradley Farias) [#&#8203;36328](https://github.com/nodejs/node/pull/36328) - \[[`214d17650b`](https://github.com/nodejs/node/commit/214d17650b)] - **(SEMVER-MINOR)** **fs**: support copy of relative links with cp and cpSync (Marcos Bjoerkelund) [#&#8203;41819](https://github.com/nodejs/node/pull/41819) - \[[`ec0d623bd7`](https://github.com/nodejs/node/commit/ec0d623bd7)] - **(SEMVER-MINOR)** **lib**: add FormData global when fetch is enabled (Michaël Zasso) [#&#8203;41956](https://github.com/nodejs/node/pull/41956) - \[[`3243701997`](https://github.com/nodejs/node/commit/3243701997)] - **(SEMVER-MINOR)** **readline**: bind keystroke `ctrl`+`6` to redo (Ray) [#&#8203;41662](https://github.com/nodejs/node/pull/41662) - \[[`5796c3a7ea`](https://github.com/nodejs/node/commit/5796c3a7ea)] - **process**: deprecate multipleResolves (Benjamin Gruenbaum) [#&#8203;41872](https://github.com/nodejs/node/pull/41872) - Documentation-only. ##### Dependency Updates - \[[`d1ef43f2aa`](https://github.com/nodejs/node/commit/d1ef43f2aa)] - **deps**: upgrade npm to 8.5.1 (npm-robot) [#&#8203;42039](https://github.com/nodejs/node/pull/42039) - \[[`09c17481f6`](https://github.com/nodejs/node/commit/09c17481f6)] - **deps**: update undici to [`3e267ec`](https://github.com/nodejs/node/commit/3e267ece5f) (Michaël Zasso) [#&#8203;41955](https://github.com/nodejs/node/pull/41955) - \[[`0a6f0b416f`](https://github.com/nodejs/node/commit/0a6f0b416f)] - **deps**: upgrade npm to 8.5.0 (npm-robot) [#&#8203;41925](https://github.com/nodejs/node/pull/41925) ##### New Collaborators - \[[`90d90e3868`](https://github.com/nodejs/node/commit/90d90e3868)] - **doc**: add marsonya to collaborators (Akhil Marsonya) [#&#8203;41991](https://github.com/nodejs/node/pull/41991) - \[[`0de611f53a`](https://github.com/nodejs/node/commit/0de611f53a)] - **doc**: add joesepi to collaborators (Joe Sepi) [#&#8203;41914](https://github.com/nodejs/node/pull/41914) ##### Commits - \[[`c673953f6d`](https://github.com/nodejs/node/commit/c673953f6d)] - **build**: cancel running CI jobs when a PR is updated (Michaël Zasso) [#&#8203;42017](https://github.com/nodejs/node/pull/42017) - \[[`782506c099`](https://github.com/nodejs/node/commit/782506c099)] - **build**: increase operations and test tag (Michael Dawson) [#&#8203;42038](https://github.com/nodejs/node/pull/42038) - \[[`d3e6ad1ed5`](https://github.com/nodejs/node/commit/d3e6ad1ed5)] - **build**: allow manual run of feature request action (Michael Dawson) [#&#8203;42037](https://github.com/nodejs/node/pull/42037) - \[[`69d7736e08`](https://github.com/nodejs/node/commit/69d7736e08)] - **build**: add action to close stale feature requests (Michael Dawson) [#&#8203;41981](https://github.com/nodejs/node/pull/41981) - \[[`1315f1eb25`](https://github.com/nodejs/node/commit/1315f1eb25)] - **build**: prevent concurrent CI and CQ workflow runs (Michaël Zasso) [#&#8203;42016](https://github.com/nodejs/node/pull/42016) - \[[`1e8e8bc22b`](https://github.com/nodejs/node/commit/1e8e8bc22b)] - **build**: use zoslib_include_dir provided by node-gyp (alexcfyung) [#&#8203;41713](https://github.com/nodejs/node/pull/41713) - \[[`4e2e2cb821`](https://github.com/nodejs/node/commit/4e2e2cb821)] - **build**: move tool updates workflow runtime a day later (Rich Trott) [#&#8203;41982](https://github.com/nodejs/node/pull/41982) - \[[`cd04ed1382`](https://github.com/nodejs/node/commit/cd04ed1382)] - **build**: extend yamllint configuration (Mestery) [#&#8203;41756](https://github.com/nodejs/node/pull/41756) - \[[`b968d89fc9`](https://github.com/nodejs/node/commit/b968d89fc9)] - **build**: remove broken x32 arch support (Ben Noordhuis) [#&#8203;41905](https://github.com/nodejs/node/pull/41905) - \[[`2b1dabfb16`](https://github.com/nodejs/node/commit/2b1dabfb16)] - **build**: revert fast-track changes (Filip Skokan) [#&#8203;41892](https://github.com/nodejs/node/pull/41892) - \[[`182e6b9ee9`](https://github.com/nodejs/node/commit/182e6b9ee9)] - **build**: improve consistency between workflows (Mestery) [#&#8203;41791](https://github.com/nodejs/node/pull/41791) - \[[`f4cb72600d`](https://github.com/nodejs/node/commit/f4cb72600d)] - **build,tools**: change the quotes in YAML (Mestery) [#&#8203;41756](https://github.com/nodejs/node/pull/41756) - \[[`24b0a563a4`](https://github.com/nodejs/node/commit/24b0a563a4)] - **child_process**: kHideConsoleWindows for spawnSync (Raymond Zhao) [#&#8203;41412](https://github.com/nodejs/node/pull/41412) - \[[`c41e402c06`](https://github.com/nodejs/node/commit/c41e402c06)] - **cluster**: respect listen backlog set by workers (Elad Nava) [#&#8203;41623](https://github.com/nodejs/node/pull/41623) - \[[`84b1e4fba7`](https://github.com/nodejs/node/commit/84b1e4fba7)] - **crypto**: check result of BIO_new in X509ToObject (Tobias Nießen) [#&#8203;41979](https://github.com/nodejs/node/pull/41979) - \[[`946ac96817`](https://github.com/nodejs/node/commit/946ac96817)] - **crypto**: rename X509\_NAME_FLAGS (Tobias Nießen) [#&#8203;42001](https://github.com/nodejs/node/pull/42001) - \[[`60682917dd`](https://github.com/nodejs/node/commit/60682917dd)] - **(SEMVER-MINOR)** **crypto**: expose Web Crypto API on the global scope (Antoine du Hamel) [#&#8203;41938](https://github.com/nodejs/node/pull/41938) - \[[`0fff4d2314`](https://github.com/nodejs/node/commit/0fff4d2314)] - **crypto**: do not advertise unsupported algorithms (Brian White) [#&#8203;41864](https://github.com/nodejs/node/pull/41864) - \[[`67f1ebf9b4`](https://github.com/nodejs/node/commit/67f1ebf9b4)] - **debugger**: add debugger alias for exec(expr) (Xuguang Mei) [#&#8203;41907](https://github.com/nodejs/node/pull/41907) - \[[`1eac0a1677`](https://github.com/nodejs/node/commit/1eac0a1677)] - **debugger**: remove duplicate setPauseOnException call (Balakrishna Avulapati) [#&#8203;41838](https://github.com/nodejs/node/pull/41838) - \[[`d1ef43f2aa`](https://github.com/nodejs/node/commit/d1ef43f2aa)] - **deps**: upgrade npm to 8.5.1 (npm-robot) [#&#8203;42039](https://github.com/nodejs/node/pull/42039) - \[[`09c17481f6`](https://github.com/nodejs/node/commit/09c17481f6)] - **deps**: update undici to [`3e267ec`](https://github.com/nodejs/node/commit/3e267ece5f) (Michaël Zasso) [#&#8203;41955](https://github.com/nodejs/node/pull/41955) - \[[`0a6f0b416f`](https://github.com/nodejs/node/commit/0a6f0b416f)] - **deps**: upgrade npm to 8.5.0 (npm-robot) [#&#8203;41925](https://github.com/nodejs/node/pull/41925) - \[[`fea682ca94`](https://github.com/nodejs/node/commit/fea682ca94)] - **doc**: fix typo in http2 endAfterHeaders description (Alexandru Comanescu) [#&#8203;42060](https://github.com/nodejs/node/pull/42060) - \[[`9c618ad729`](https://github.com/nodejs/node/commit/9c618ad729)] - **doc**: make minor fixes to contributing guides (T-O-R-U-S) [#&#8203;41966](https://github.com/nodejs/node/pull/41966) - \[[`60bbacdd91`](https://github.com/nodejs/node/commit/60bbacdd91)] - **doc**: use openpgp.org for keyserver examples (Nick Schonning) [#&#8203;39227](https://github.com/nodejs/node/pull/39227) - \[[`2e252b3c95`](https://github.com/nodejs/node/commit/2e252b3c95)] - **doc**: adjust a/an word usage (Derek Wolpert) [#&#8203;41915](https://github.com/nodejs/node/pull/41915) - \[[`c7d590c66e`](https://github.com/nodejs/node/commit/c7d590c66e)] - **doc**: remove extra \<td> (Ray) [#&#8203;42006](https://github.com/nodejs/node/pull/42006) - \[[`06f225c6a6`](https://github.com/nodejs/node/commit/06f225c6a6)] - **doc**: capitalize valgrind (T•Ø•R•Ü•S) [#&#8203;41986](https://github.com/nodejs/node/pull/41986) - \[[`6195de506a`](https://github.com/nodejs/node/commit/6195de506a)] - **doc**: fix deprecation number (Antoine du Hamel) [#&#8203;41990](https://github.com/nodejs/node/pull/41990) - \[[`90d90e3868`](https://github.com/nodejs/node/commit/90d90e3868)] - **doc**: add marsonya to collaborators (Akhil Marsonya) [#&#8203;41991](https://github.com/nodejs/node/pull/41991) - \[[`6b88595142`](https://github.com/nodejs/node/commit/6b88595142)] - **doc**: deprecate notice for process methods (Yash Ladha) [#&#8203;41587](https://github.com/nodejs/node/pull/41587) - \[[`d34ee45134`](https://github.com/nodejs/node/commit/d34ee45134)] - **doc**: fix bug in `readable.unshift` code example (Xuguang Mei) [#&#8203;41944](https://github.com/nodejs/node/pull/41944) - \[[`8748b1e61d`](https://github.com/nodejs/node/commit/8748b1e61d)] - **doc**: add missing `buffer` in the `stream/consumers` import example (Mestery) [#&#8203;41961](https://github.com/nodejs/node/pull/41961) - \[[`cb9dba034a`](https://github.com/nodejs/node/commit/cb9dba034a)] - **doc**: fix typo in readableStream.locked description (Tobias Nießen) [#&#8203;41923](https://github.com/nodejs/node/pull/41923) - \[[`43a5161cee`](https://github.com/nodejs/node/commit/43a5161cee)] - **doc**: fix wrong indent in stream documentation (Xuguang Mei) [#&#8203;41943](https://github.com/nodejs/node/pull/41943) - \[[`dca2692ae3`](https://github.com/nodejs/node/commit/dca2692ae3)] - **doc**: emphasize security warning in vm module doc (Rich Trott) [#&#8203;41916](https://github.com/nodejs/node/pull/41916) - \[[`b0e8ccb84c`](https://github.com/nodejs/node/commit/b0e8ccb84c)] - **doc**: clarify `tls.Server` `'connection'` event documentation (Austin Cheney) [#&#8203;41917](https://github.com/nodejs/node/pull/41917) - \[[`6a7b0160df`](https://github.com/nodejs/node/commit/6a7b0160df)] - **doc**: improve scrollbar appearance in dark mode (Aaron Xie) [#&#8203;41890](https://github.com/nodejs/node/pull/41890) - \[[`aa684a78fe`](https://github.com/nodejs/node/commit/aa684a78fe)] - **doc**: replace text with paths in toggle SVGs (Brian White) [#&#8203;41885](https://github.com/nodejs/node/pull/41885) - \[[`fc9d4e96c1`](https://github.com/nodejs/node/commit/fc9d4e96c1)] - **doc**: edit process.config deprecation text (Rich Trott) [#&#8203;41889](https://github.com/nodejs/node/pull/41889) - \[[`0de611f53a`](https://github.com/nodejs/node/commit/0de611f53a)] - **doc**: add joesepi to collaborators (Joe Sepi) [#&#8203;41914](https://github.com/nodejs/node/pull/41914) - \[[`ba5cb89134`](https://github.com/nodejs/node/commit/ba5cb89134)] - **doc**: remove unneeded ellipsis in header (Rich Trott) [#&#8203;41888](https://github.com/nodejs/node/pull/41888) - \[[`291fe631dd`](https://github.com/nodejs/node/commit/291fe631dd)] - **doc**: fix webstream close reject state state doc (Benjamin Gruenbaum) [#&#8203;41860](https://github.com/nodejs/node/pull/41860) - \[[`c0f4289c65`](https://github.com/nodejs/node/commit/c0f4289c65)] - **esm**: improve `fetch_module` test coverage and remove hack (Antoine du Hamel) [#&#8203;41947](https://github.com/nodejs/node/pull/41947) - \[[`a95f7a0c25`](https://github.com/nodejs/node/commit/a95f7a0c25)] - **esm**: remove erroneous `context.parentURL` property passed to `load` hook (Jacob Smith) [#&#8203;41975](https://github.com/nodejs/node/pull/41975) - \[[`66c9565f99`](https://github.com/nodejs/node/commit/66c9565f99)] - **esm**: fix typo in `fetch_module` (Michael Scovetta) [#&#8203;41924](https://github.com/nodejs/node/pull/41924) - \[[`ba639d052b`](https://github.com/nodejs/node/commit/ba639d052b)] - **(SEMVER-MINOR)** **esm**: support https remotely and http locally under flag (Bradley Farias) [#&#8203;36328](https://github.com/nodejs/node/pull/36328) - \[[`0660ba3cd0`](https://github.com/nodejs/node/commit/0660ba3cd0)] - **events**: set default handler value (Benjamin Gruenbaum) [#&#8203;41970](https://github.com/nodejs/node/pull/41970) - \[[`5a807c5927`](https://github.com/nodejs/node/commit/5a807c5927)] - **fs**: fix default `length` parameter for `fs.read` (wbt) [#&#8203;40349](https://github.com/nodejs/node/pull/40349) - \[[`214d17650b`](https://github.com/nodejs/node/commit/214d17650b)] - **(SEMVER-MINOR)** **fs**: support copy of relative links with cp and cpSync (Marcos Bjoerkelund) [#&#8203;41819](https://github.com/nodejs/node/pull/41819) - \[[`be5143b3f5`](https://github.com/nodejs/node/commit/be5143b3f5)] - **fs**: fix cb/sync writev empty array behavior (Benjamin Gruenbaum) [#&#8203;41932](https://github.com/nodejs/node/pull/41932) - \[[`b4db004855`](https://github.com/nodejs/node/commit/b4db004855)] - **fs**: fix writev empty array error behavior (Benjamin Gruenbaum) [#&#8203;41919](https://github.com/nodejs/node/pull/41919) - \[[`528c585b2b`](https://github.com/nodejs/node/commit/528c585b2b)] - **fs**: refactor to use ES2020 syntax (小菜) [#&#8203;41903](https://github.com/nodejs/node/pull/41903) - \[[`ec0d623bd7`](https://github.com/nodejs/node/commit/ec0d623bd7)] - **(SEMVER-MINOR)** **lib**: add FormData global when fetch is enabled (Michaël Zasso) [#&#8203;41956](https://github.com/nodejs/node/pull/41956) - \[[`c3b0e72d01`](https://github.com/nodejs/node/commit/c3b0e72d01)] - **lib**: stop installing webcrypto if `no_browser_globals` is `true` (Mestery) [#&#8203;41971](https://github.com/nodejs/node/pull/41971) - \[[`ae36276148`](https://github.com/nodejs/node/commit/ae36276148)] - **lib**: allow respondWithNewView on byob auto allocated streams (Sean Quinlan) [#&#8203;41887](https://github.com/nodejs/node/pull/41887) - \[[`68ec8d5824`](https://github.com/nodejs/node/commit/68ec8d5824)] - **lib**: stop installing fetch if no_browser_globals is true (Darshan Sen) [#&#8203;41969](https://github.com/nodejs/node/pull/41969) - \[[`f9bfdc3a65`](https://github.com/nodejs/node/commit/f9bfdc3a65)] - **lib**: restrict usage of fetch related globals in core internals (Antoine du Hamel) [#&#8203;41957](https://github.com/nodejs/node/pull/41957) - \[[`3a121345e7`](https://github.com/nodejs/node/commit/3a121345e7)] - **lib**: move kEnumerableProperty to internal/util (Mestery) [#&#8203;41877](https://github.com/nodejs/node/pull/41877) - \[[`fa3a9135ad`](https://github.com/nodejs/node/commit/fa3a9135ad)] - **lib**: add internal genericNodeError() function (Rich Trott) [#&#8203;41879](https://github.com/nodejs/node/pull/41879) - \[[`1e698e65a7`](https://github.com/nodejs/node/commit/1e698e65a7)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;42058](https://github.com/nodejs/node/pull/42058) - \[[`f51b55dae4`](https://github.com/nodejs/node/commit/f51b55dae4)] - **meta**: use plain emojis instead of escape sequences (Mestery) [#&#8203;41989](https://github.com/nodejs/node/pull/41989) - \[[`3d998112be`](https://github.com/nodejs/node/commit/3d998112be)] - **meta**: update AUTHORS and .mailmap (Rich Trott) [#&#8203;41953](https://github.com/nodejs/node/pull/41953) - \[[`391f4e5c25`](https://github.com/nodejs/node/commit/391f4e5c25)] - **perf_hooks**: use arrays to store EntryBuffers (Xuguang Mei) [#&#8203;42032](https://github.com/nodejs/node/pull/42032) - \[[`5796c3a7ea`](https://github.com/nodejs/node/commit/5796c3a7ea)] - **process**: deprecate multipleResolves (Benjamin Gruenbaum) [#&#8203;41872](https://github.com/nodejs/node/pull/41872) - \[[`3243701997`](https://github.com/nodejs/node/commit/3243701997)] - **(SEMVER-MINOR)** **readline**: bind keystroke `ctrl`+`6` to redo (Ray) [#&#8203;41662](https://github.com/nodejs/node/pull/41662) - \[[`c766159e68`](https://github.com/nodejs/node/commit/c766159e68)] - **repl**: [#&#8203;41690](https://github.com/nodejs/node/issues/41690) REPL gives wrong autocomplete on literals (Xuguang Mei) [#&#8203;41883](https://github.com/nodejs/node/pull/41883) - \[[`f80cae8be5`](https://github.com/nodejs/node/commit/f80cae8be5)] - **src**: merge ToJsSet into ToV8Value (Anna Henningsen) [#&#8203;41757](https://github.com/nodejs/node/pull/41757) - \[[`e2a74d2e04`](https://github.com/nodejs/node/commit/e2a74d2e04)] - **src**: remove separate definitions for static constexpr members (Anna Henningsen) [#&#8203;41755](https://github.com/nodejs/node/pull/41755) - \[[`d91a956419`](https://github.com/nodejs/node/commit/d91a956419)] - **src**: use const reference instead of pointer in URL::SerializeURL (Anna Henningsen) [#&#8203;41759](https://github.com/nodejs/node/pull/41759) - \[[`0330e2d796`](https://github.com/nodejs/node/commit/0330e2d796)] - **src**: reserve string allocation space early in URL::SerializeURL (Anna Henningsen) [#&#8203;41759](https://github.com/nodejs/node/pull/41759) - \[[`364ec5ba8b`](https://github.com/nodejs/node/commit/364ec5ba8b)] - **src**: fix query/fragment serialization in URL::SerializeURL (Anna Henningsen) [#&#8203;41759](https://github.com/nodejs/node/pull/41759) - \[[`6076291168`](https://github.com/nodejs/node/commit/6076291168)] - **src**: don't print interface if sin6\_scope_id is 0 (Santiago Gimeno) [#&#8203;41547](https://github.com/nodejs/node/pull/41547) - \[[`43c12f4962`](https://github.com/nodejs/node/commit/43c12f4962)] - **src,buffer**: evaluate THROW_AND_RETURN_IF_OOB() expression only once (Darshan Sen) [#&#8203;41945](https://github.com/nodejs/node/pull/41945) - \[[`b8cbb83222`](https://github.com/nodejs/node/commit/b8cbb83222)] - **stream**: add more forEach tests (Benjamin Gruenbaum) [#&#8203;41937](https://github.com/nodejs/node/pull/41937) - \[[`f5d7339b25`](https://github.com/nodejs/node/commit/f5d7339b25)] - **stream**: add more filter tests (Benjamin Gruenbaum) [#&#8203;41936](https://github.com/nodejs/node/pull/41936) - \[[`77462b6083`](https://github.com/nodejs/node/commit/77462b6083)] - **stream**: revert `map` spec compliance (Benjamin Gruenbaum) [#&#8203;41931](https://github.com/nodejs/node/pull/41931) - \[[`3e38506d1b`](https://github.com/nodejs/node/commit/3e38506d1b)] - **stream**: avoid usage of deprecated APIs (Mohammed Keyvanzadeh) [#&#8203;41871](https://github.com/nodejs/node/pull/41871) - \[[`5195479919`](https://github.com/nodejs/node/commit/5195479919)] - **stream**: refactor to use more validators (Mohammed Keyvanzadeh) [#&#8203;41871](https://github.com/nodejs/node/pull/41871) - \[[`07463b3374`](https://github.com/nodejs/node/commit/07463b3374)] - **stream**: use standard for loop instead of for..of (Mohammed Keyvanzadeh) [#&#8203;41871](https://github.com/nodejs/node/pull/41871) - \[[`d9008915fe`](https://github.com/nodejs/node/commit/d9008915fe)] - **test**: remove test-stdout-close-catch flaky designation (Rich Trott) [#&#8203;42045](https://github.com/nodejs/node/pull/42045) - \[[`fe66d2b98c`](https://github.com/nodejs/node/commit/fe66d2b98c)] - **test**: check that fetch globals are disabled by default (Michaël Zasso) [#&#8203;42015](https://github.com/nodejs/node/pull/42015) - \[[`bcf53a89f7`](https://github.com/nodejs/node/commit/bcf53a89f7)] - **test**: improve vm test coverage (Yoshiki Kurihara) [#&#8203;41847](https://github.com/nodejs/node/pull/41847) - \[[`9825ceddeb`](https://github.com/nodejs/node/commit/9825ceddeb)] - **test**: run webmessaging/broadcastchannel WPT (Ben Noordhuis) [#&#8203;41962](https://github.com/nodejs/node/pull/41962) - \[[`f8e302c813`](https://github.com/nodejs/node/commit/f8e302c813)] - **test**: fix names of tests marked flaky on IBM i (Richard Lau) [#&#8203;41984](https://github.com/nodejs/node/pull/41984) - \[[`ab73bde8c1`](https://github.com/nodejs/node/commit/ab73bde8c1)] - **test**: fix typographical error (Rich Trott) [#&#8203;41983](https://github.com/nodejs/node/pull/41983) - \[[`520dcbc9f5`](https://github.com/nodejs/node/commit/520dcbc9f5)] - **test**: fix intl tests on small-icu builds (Antoine du Hamel) [#&#8203;41939](https://github.com/nodejs/node/pull/41939) - \[[`83b913cb90`](https://github.com/nodejs/node/commit/83b913cb90)] - **test**: improve code coverage for streams/duplexify (Erick Wendel) [#&#8203;41862](https://github.com/nodejs/node/pull/41862) - \[[`dc14bd85ee`](https://github.com/nodejs/node/commit/dc14bd85ee)] - **test**: remove lint rule for setTimeout() arguments (Rich Trott) [#&#8203;41901](https://github.com/nodejs/node/pull/41901) - \[[`76f0f1c06d`](https://github.com/nodejs/node/commit/76f0f1c06d)] - **test**: move test-crypto-engine to addon (Michael Dawson) [#&#8203;41830](https://github.com/nodejs/node/pull/41830) - \[[`b1505a1250`](https://github.com/nodejs/node/commit/b1505a1250)] - **tls**: avoid throw in onerror for bad TLSSocket obj (Valters Jansons) [#&#8203;41523](https://github.com/nodejs/node/pull/41523) - \[[`2cdbf0304b`](https://github.com/nodejs/node/commit/2cdbf0304b)] - **tools**: update lint-md-dependencies to rollup@2.67.3 (Node.js GitHub Bot) [#&#8203;42057](https://github.com/nodejs/node/pull/42057) - \[[`6742625126`](https://github.com/nodejs/node/commit/6742625126)] - **tools**: enable es2022 env in ESLint config (Michaël Zasso) [#&#8203;42043](https://github.com/nodejs/node/pull/42043) - \[[`896ccc13ce`](https://github.com/nodejs/node/commit/896ccc13ce)] - **tools**: add `console` to the list of restricted globals (Antoine du Hamel) [#&#8203;42012](https://github.com/nodejs/node/pull/42012) - \[[`1b4ee6cfd9`](https://github.com/nodejs/node/commit/1b4ee6cfd9)] - **tools**: lint deprecation codes (Antoine du Hamel) [#&#8203;41992](https://github.com/nodejs/node/pull/41992) - \[[`e895e6422f`](https://github.com/nodejs/node/commit/e895e6422f)] - **tools**: fix bugs in prefer-primordials linter rule (Antoine du Hamel) [#&#8203;42010](https://github.com/nodejs/node/pull/42010) - \[[`47bb7dd52c`](https://github.com/nodejs/node/commit/47bb7dd52c)] - **tools**: add timers functions to the list of restricted globals (Antoine du Hamel) [#&#8203;42013](https://github.com/nodejs/node/pull/42013) - \[[`afeed46578`](https://github.com/nodejs/node/commit/afeed46578)] - **tools**: reduce list of globals in ESLint config (Rich Trott) [#&#8203;41996](https://github.com/nodejs/node/pull/41996) - \[[`2e905a63d8`](https://github.com/nodejs/node/commit/2e905a63d8)] - **tools**: update remark-preset-lint-node to 3.3.1 (Rich Trott) [#&#8203;41999](https://github.com/nodejs/node/pull/41999) - \[[`35832feb6e`](https://github.com/nodejs/node/commit/35832feb6e)] - **tools**: update ESLint to 8.9.0 (Luigi Pinca) [#&#8203;41973](https://github.com/nodejs/node/pull/41973) - \[[`06117c084e`](https://github.com/nodejs/node/commit/06117c084e)] - **tools**: update lint-md-dependencies to rollup@2.67.2 (Node.js GitHub Bot) [#&#8203;41941](https://github.com/nodejs/node/pull/41941) - \[[`f30b5e3a6d`](https://github.com/nodejs/node/commit/f30b5e3a6d)] - **tools**: fix typo in prefer-primordials.js (Ikko Ashimine) [#&#8203;41891](https://github.com/nodejs/node/pull/41891) - \[[`cfafb45c2b`](https://github.com/nodejs/node/commit/cfafb45c2b)] - **tools,lib**: remove `global` and `Intl` from the list of globals (Antoine du Hamel) [#&#8203;42014](https://github.com/nodejs/node/pull/42014) - \[[`ba35b6ccd1`](https://github.com/nodejs/node/commit/ba35b6ccd1)] - **worker**: fix typo in debug statement (Antoine du Hamel) [#&#8203;42011](https://github.com/nodejs/node/pull/42011) ### [`v17.5.0`](https://github.com/nodejs/node/releases/v17.5.0) [Compare Source](https://github.com/nodejs/node/compare/v17.4.0...v17.5.0) ##### Notable Changes ##### Add fetch API Adds experimental support to the fetch API. This adds a `--experimental-fetch` flag that installs the `fetch`, `Request`, `Reponse` and `Headers` globals. - \[[`76a229c4ff`](https://github.com/nodejs/node/commit/76a229c4ff)] - **(SEMVER-MINOR)** **lib**: add fetch (Michaël Zasso) [#&#8203;41749](https://github.com/nodejs/node/pull/41749) ##### Add stream methods - \[[`1ae648567a`](https://github.com/nodejs/node/commit/1ae648567a)] - **(SEMVER-MINOR)** **stream**: add iterator helper find (linkgoron) [#&#8203;41849](https://github.com/nodejs/node/pull/41849) - \[[`62e1a68077`](https://github.com/nodejs/node/commit/62e1a68077)] - **(SEMVER-MINOR)** **stream**: add toArray (Benjamin Gruenbaum) [#&#8203;41553](https://github.com/nodejs/node/pull/41553) - \[[`da11b95988`](https://github.com/nodejs/node/commit/da11b95988)] - **(SEMVER-MINOR)** **stream**: add forEach method (Benjamin Gruenbaum) [#&#8203;41445](https://github.com/nodejs/node/pull/41445) - \[[`34684a1c89`](https://github.com/nodejs/node/commit/34684a1c89)] - **(SEMVER-MINOR)** **stream**: support some and every (Benjamin Gruenbaum) [#&#8203;41573](https://github.com/nodejs/node/pull/41573) ##### Other Notable Changes - \[[`2cae99425b`](https://github.com/nodejs/node/commit/2cae99425b)] - **(SEMVER-MINOR)** **node-api**: add node_api_symbol_for() (Darshan Sen) [#&#8203;41329](https://github.com/nodejs/node/pull/41329) - \[[`9c6b078892`](https://github.com/nodejs/node/commit/9c6b078892)] - **module**: unflag esm json modules (Geoffrey Booth) [#&#8203;41736](https://github.com/nodejs/node/pull/41736) - \[[`28650eca00`](https://github.com/nodejs/node/commit/28650eca00)] - **deps**: upgrade npm to 8.4.1 (npm team) [#&#8203;41836](https://github.com/nodejs/node/pull/41836) ##### Commits - \[[`0844935e1f`](https://github.com/nodejs/node/commit/0844935e1f)] - **async_hooks**: fix imports in context example (Yash Ladha) [#&#8203;39229](https://github.com/nodejs/node/pull/39229) - \[[`44ca20b7a1`](https://github.com/nodejs/node/commit/44ca20b7a1)] - **benchmark**: avoid input param manipulation (Jithil P Ponnan) [#&#8203;41741](https://github.com/nodejs/node/pull/41741) - \[[`ad32ad6cfd`](https://github.com/nodejs/node/commit/ad32ad6cfd)] - **benchmark**: enable no-empty ESLint rule (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`28b95a5a9f`](https://github.com/nodejs/node/commit/28b95a5a9f)] - **benchmark**: use Object.hasOwn() instead of hasOwnProperty() (Rich Trott) [#&#8203;41769](https://github.com/nodejs/node/pull/41769) - \[[`ca1cd4254a`](https://github.com/nodejs/node/commit/ca1cd4254a)] - **benchmark**: replace hasOwnProperty() with Object.hasOwn() (Rich Trott) [#&#8203;41724](https://github.com/nodejs/node/pull/41724) - \[[`6fefd5112a`](https://github.com/nodejs/node/commit/6fefd5112a)] - **(SEMVER-MINOR)** **benchmark**: add `subarray` to `buffer-slice` (Benjamin Gruenbaum) [#&#8203;41596](https://github.com/nodejs/node/pull/41596) - \[[`878b2e73bb`](https://github.com/nodejs/node/commit/878b2e73bb)] - **benchmark**: remove unreachable code from crypto/hash-stream-creation (Rich Trott) [#&#8203;41535](https://github.com/nodejs/node/pull/41535) - \[[`6064b1df5d`](https://github.com/nodejs/node/commit/6064b1df5d)] - **buffer**: fix atob/btoa no-arg case (Benjamin Gruenbaum) [#&#8203;41478](https://github.com/nodejs/node/pull/41478) - \[[`89c327387b`](https://github.com/nodejs/node/commit/89c327387b)] - **(SEMVER-MINOR)** **buffer**: alias `subarray` and `slice` (Benjamin Gruenbaum) [#&#8203;41596](https://github.com/nodejs/node/pull/41596) - \[[`adcde6bb78`](https://github.com/nodejs/node/commit/adcde6bb78)] - **build**: check if python is a executable program (himself65) [#&#8203;36696](https://github.com/nodejs/node/pull/36696) - \[[`33351765c7`](https://github.com/nodejs/node/commit/33351765c7)] - **build**: enable zoslib installation on z/OS (alexcfyung) [#&#8203;41493](https://github.com/nodejs/node/pull/41493) - \[[`e8062bfb92`](https://github.com/nodejs/node/commit/e8062bfb92)] - **build**: add --v8-enable-hugepage flag (Daoming Qiu) [#&#8203;41487](https://github.com/nodejs/node/pull/41487) - \[[`8681c837ca`](https://github.com/nodejs/node/commit/8681c837ca)] - **build**: add loong64 configure (Shi Pujin) [#&#8203;41323](https://github.com/nodejs/node/pull/41323) - \[[`7c2b5861be`](https://github.com/nodejs/node/commit/7c2b5861be)] - **build**: fix libuv builds for android aarch64 (Darshan Sen) [#&#8203;41555](https://github.com/nodejs/node/pull/41555) - \[[`e117c0f86c`](https://github.com/nodejs/node/commit/e117c0f86c)] - **crypto**: check return code from EVP_DigestUpdate (Michael Dawson) [#&#8203;41800](https://github.com/nodejs/node/pull/41800) - \[[`9c59abe588`](https://github.com/nodejs/node/commit/9c59abe588)] - **crypto**: fix `webcrypto.subtle` signature (Antoine du Hamel) [#&#8203;41761](https://github.com/nodejs/node/pull/41761) - \[[`627f19a84b`](https://github.com/nodejs/node/commit/627f19a84b)] - **crypto**: revise variables for const use instead of let (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`9e39e62ae2`](https://github.com/nodejs/node/commit/9e39e62ae2)] - **crypto**: remove wildcard options for checkEmail (Tobias Nießen) [#&#8203;41599](https://github.com/nodejs/node/pull/41599) - \[[`4a4c907604`](https://github.com/nodejs/node/commit/4a4c907604)] - **crypto**: adjust types for getRandomValues (LiviaMedeiros) [#&#8203;41481](https://github.com/nodejs/node/pull/41481) - \[[`b43faf0fc5`](https://github.com/nodejs/node/commit/b43faf0fc5)] - **crypto**: remove checkIP options argument (Tobias Nießen) [#&#8203;41571](https://github.com/nodejs/node/pull/41571) - \[[`076ec47557`](https://github.com/nodejs/node/commit/076ec47557)] - **(SEMVER-MINOR)** **crypto**: support RFC 2818 compatible checkHost (Tobias Nießen) [#&#8203;41569](https://github.com/nodejs/node/pull/41569) - \[[`28650eca00`](https://github.com/nodejs/node/commit/28650eca00)] - **deps**: upgrade npm to 8.4.1 (npm-robot) [#&#8203;41836](https://github.com/nodejs/node/pull/41836) - \[[`bee4451ed8`](https://github.com/nodejs/node/commit/bee4451ed8)] - **deps**: V8: cherry-pick [`cc9a8a3`](https://github.com/nodejs/node/commit/cc9a8a37445e) (Gus Caplan) [#&#8203;41823](https://github.com/nodejs/node/pull/41823) - \[[`4b174ce7f6`](https://github.com/nodejs/node/commit/4b174ce7f6)] - **deps**: upgrade npm to 8.3.2 (npm team) [#&#8203;41621](https://github.com/nodejs/node/pull/41621) - \[[`0d4f043f0e`](https://github.com/nodejs/node/commit/0d4f043f0e)] - **dgram**: remove unreachable connectState assign (Rongjian Zhang) [#&#8203;38590](https://github.com/nodejs/node/pull/38590) - \[[`d641eb7f80`](https://github.com/nodejs/node/commit/d641eb7f80)] - **doc**: use the same case as the section heading (Mestery) [#&#8203;41876](https://github.com/nodejs/node/pull/41876) - \[[`ffd1933ad9`](https://github.com/nodejs/node/commit/ffd1933ad9)] - **doc**: use Oxford comma in crypto docs (Tobias Nießen) [#&#8203;41875](https://github.com/nodejs/node/pull/41875) - \[[`145a3b8294`](https://github.com/nodejs/node/commit/145a3b8294)] - **doc**: use sentence case in readme introduction (Mestery) [#&#8203;41874](https://github.com/nodejs/node/pull/41874) - \[[`f8acca8df8`](https://github.com/nodejs/node/commit/f8acca8df8)] - **doc**: add missing space before hyphen (Mestery) [#&#8203;41873](https://github.com/nodejs/node/pull/41873) - \[[`5085813688`](https://github.com/nodejs/node/commit/5085813688)] - **doc**: add stream pipelining note on Http usage (Rafael Silva) [#&#8203;41796](https://github.com/nodejs/node/pull/41796) - \[[`0a8995d36b`](https://github.com/nodejs/node/commit/0a8995d36b)] - **doc**: improve SSL_OP_PRIORITIZE_CHACHA description (Tobias Nießen) [#&#8203;41866](https://github.com/nodejs/node/pull/41866) - \[[`1c62eb64f6`](https://github.com/nodejs/node/commit/1c62eb64f6)] - **doc**: add missing commas in cluster docs (Tobias Nießen) [#&#8203;41865](https://github.com/nodejs/node/pull/41865) - \[[`3676505413`](https://github.com/nodejs/node/commit/3676505413)] - **doc**: add history information for Corepack (Antoine du Hamel) [#&#8203;41813](https://github.com/nodejs/node/pull/41813) - \[[`8a42a20b8a`](https://github.com/nodejs/node/commit/8a42a20b8a)] - **doc**: add comments to empty blocks in worker_threads text (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`c3721fcf9a`](https://github.com/nodejs/node/commit/c3721fcf9a)] - **doc**: remove empty block from console.timeEnd() example (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`451f3331d9`](https://github.com/nodejs/node/commit/451f3331d9)] - **doc**: feature management proposal (Michael Dawson) [#&#8203;41420](https://github.com/nodejs/node/pull/41420) - \[[`72a857f56c`](https://github.com/nodejs/node/commit/72a857f56c)] - **doc**: add overhead hints for heap snapshot generation (Gerhard Stöbich) [#&#8203;41822](https://github.com/nodejs/node/pull/41822) - \[[`7aeaa27d67`](https://github.com/nodejs/node/commit/7aeaa27d67)] - **doc**: fix X509 CA acronym capitalization (Tobias Nießen) [#&#8203;41841](https://github.com/nodejs/node/pull/41841) - \[[`d3a4c62600`](https://github.com/nodejs/node/commit/d3a4c62600)] - **doc**: use sentence case for X509 error codes header (Tobias Nießen) [#&#8203;41829](https://github.com/nodejs/node/pull/41829) - \[[`cb16fad0ab`](https://github.com/nodejs/node/commit/cb16fad0ab)] - **doc**: add initial version of maintaining-http.md (Michael Dawson) [#&#8203;41798](https://github.com/nodejs/node/pull/41798) - \[[`49f6b97b64`](https://github.com/nodejs/node/commit/49f6b97b64)] - **doc**: add registry numbers for Electron 19 and 20 (Keeley Hammond) [#&#8203;41814](https://github.com/nodejs/node/pull/41814) - \[[`4db343bb8e`](https://github.com/nodejs/node/commit/4db343bb8e)] - **doc**: add note about resource type in async_hooks (Tony Gorez) [#&#8203;41797](https://github.com/nodejs/node/pull/41797) - \[[`d726a3442c`](https://github.com/nodejs/node/commit/d726a3442c)] - **doc**: use example.com for examples (Ateş Göral) [#&#8203;41827](https://github.com/nodejs/node/pull/41827) - \[[`4eb1938f51`](https://github.com/nodejs/node/commit/4eb1938f51)] - **doc**: align tls port types with net port types (Tobias Nießen) [#&#8203;41799](https://github.com/nodejs/node/pull/41799) - \[[`e5db13626b`](https://github.com/nodejs/node/commit/e5db13626b)] - **doc**: use UDPv4/UDPv6 consistently with TCPv4/TCPv6 (Tobias Nießen) [#&#8203;41824](https://github.com/nodejs/node/pull/41824) - \[[`af641bdec4`](https://github.com/nodejs/node/commit/af641bdec4)] - **doc**: improve wording surrounding TLS 1.3 ciphers (Tobias Nießen) [#&#8203;41778](https://github.com/nodejs/node/pull/41778) - \[[`99e0f1458b`](https://github.com/nodejs/node/commit/99e0f1458b)] - **doc**: add format-md step to release guide (Danielle Adams) [#&#8203;41809](https://github.com/nodejs/node/pull/41809) - \[[`62f2c078ec`](https://github.com/nodejs/node/commit/62f2c078ec)] - **doc**: add v16 changelog link to iojs changelog (Danielle Adams) [#&#8203;41808](https://github.com/nodejs/node/pull/41808) - \[[`c0629b48ce`](https://github.com/nodejs/node/commit/c0629b48ce)] - **doc**: add security-steward rotation information (Michael Dawson) [#&#8203;41707](https://github.com/nodejs/node/pull/41707) - \[[`032df4ee17`](https://github.com/nodejs/node/commit/032df4ee17)] - **doc**: use Object.hasOwn() in util doc (Rich Trott) [#&#8203;41780](https://github.com/nodejs/node/pull/41780) - \[[`257c5b68d1`](https://github.com/nodejs/node/commit/257c5b68d1)] - **doc**: remove section on "recent" ECDH changes (Tobias Nießen) [#&#8203;41773](https://github.com/nodejs/node/pull/41773) - \[[`86644b95a5`](https://github.com/nodejs/node/commit/86644b95a5)] - **doc**: clarify that import also uses main (Ben McCann) [#&#8203;41720](https://github.com/nodejs/node/pull/41720) - \[[`4889a3177f`](https://github.com/nodejs/node/commit/4889a3177f)] - **doc**: update modules.md wording (Tobias Hernstig) [#&#8203;41728](https://github.com/nodejs/node/pull/41728) - \[[`26c5efef35`](https://github.com/nodejs/node/commit/26c5efef35)] - **doc**: update Mesteery email (Mestery) [#&#8203;41683](https://github.com/nodejs/node/pull/41683) - \[[`4339299800`](https://github.com/nodejs/node/commit/4339299800)] - **doc**: avoid incomplete sentence in cluster docs (Tobias Nießen) [#&#8203;41701](https://github.com/nodejs/node/pull/41701) - \[[`7f7bcd7757`](https://github.com/nodejs/node/commit/7f7bcd7757)] - **doc**: fix typo in contributing guides (Yoshiki Kurihara) [#&#8203;41723](https://github.com/nodejs/node/pull/41723) - \[[`30336c23b5`](https://github.com/nodejs/node/commit/30336c23b5)] - **doc**: improve docs to give descriptive info for the platform property (Harshil jain) [#&#8203;41650](https://github.com/nodejs/node/pull/41650) - \[[`29678d66b8`](https://github.com/nodejs/node/commit/29678d66b8)] - **doc**: fix link to npm documentation (Antoine du Hamel) [#&#8203;41712](https://github.com/nodejs/node/pull/41712) - \[[`ae34900ccb`](https://github.com/nodejs/node/commit/ae34900ccb)] - **doc**: clarify treatment of non-string base in URL() (Rich Trott) [#&#8203;41685](https://github.com/nodejs/node/pull/41685) - \[[`b83e661d30`](https://github.com/nodejs/node/commit/b83e661d30)] - **doc**: fix typo in `technical-priorities.md` (Akhil Marsonya) [#&#8203;41694](https://github.com/nodejs/node/pull/41694) - \[[`8e7df048a7`](https://github.com/nodejs/node/commit/8e7df048a7)] - **doc**: remove unadvisable cluster example (Tobias Nießen) [#&#8203;41668](https://github.com/nodejs/node/pull/41668) - \[[`0ee468d6ba`](https://github.com/nodejs/node/commit/0ee468d6ba)] - **doc**: document flow for supporting type generation (Michael Dawson) [#&#8203;41464](https://github.com/nodejs/node/pull/41464) - \[[`9af2862a8b`](https://github.com/nodejs/node/commit/9af2862a8b)] - **doc**: clarify parameter for napi_get_cb_info (Michael Dawson) [#&#8203;41635](https://github.com/nodejs/node/pull/41635) - \[[`a35c6c38f1`](https://github.com/nodejs/node/commit/a35c6c38f1)] - **doc**: revise url.resolve() text (Rich Trott) [#&#8203;41661](https://github.com/nodejs/node/pull/41661) - \[[`986dbb3222`](https://github.com/nodejs/node/commit/986dbb3222)] - **doc**: clarify treatment of non-string argument to new URL() (Rich Trott) [#&#8203;41658](https://github.com/nodejs/node/pull/41658) - \[[`2bba6cd8b6`](https://github.com/nodejs/node/commit/2bba6cd8b6)] - **doc**: fix documentation for `MODULE_NOT_FOUND` and `ERR_MODULE_NOT_FOUND` (Antoine du Hamel) [#&#8203;41645](https://github.com/nodejs/node/pull/41645) - \[[`d40fd755d3`](https://github.com/nodejs/node/commit/d40fd755d3)] - **doc**: improve TLS/SSL introduction (Tobias Nießen) [#&#8203;41649](https://github.com/nodejs/node/pull/41649) - \[[`b951764c32`](https://github.com/nodejs/node/commit/b951764c32)] - **doc**: modernize and simplify cluster example (Tobias Nießen) [#&#8203;41626](https://github.com/nodejs/node/pull/41626) - \[[`0d6227ceab`](https://github.com/nodejs/node/commit/0d6227ceab)] - **doc**: simplify readline/stdin text (Rich Trott) [#&#8203;41583](https://github.com/nodejs/node/pull/41583) - \[[`ffab924444`](https://github.com/nodejs/node/commit/ffab924444)] - **doc**: suggest worker threads in cluster docs (Tobias Nießen) [#&#8203;41616](https://github.com/nodejs/node/pull/41616) - \[[`c111a13d22`](https://github.com/nodejs/node/commit/c111a13d22)] - **doc**: add 16 and 17 to previous versions (Antoine du Hamel) [#&#8203;41646](https://github.com/nodejs/node/pull/41646) - \[[`81e039fa9d`](https://github.com/nodejs/node/commit/81e039fa9d)] - **doc**: improve `'hex'` Buffer decoding description and examples (Giora Guttsait) [#&#8203;41598](https://github.com/nodejs/node/pull/41598) - \[[`09763a2a93`](https://github.com/nodejs/node/commit/09763a2a93)] - **doc**: add note for handling signal events in trace events (Gabriel Trujillo) [#&#8203;41438](https://github.com/nodejs/node/pull/41438) - \[[`2e7bf00359`](https://github.com/nodejs/node/commit/2e7bf00359)] - **(SEMVER-MINOR)** **doc**: deprecate `buffer.slice` (Benjamin Gruenbaum) [#&#8203;41596](https://github.com/nodejs/node/pull/41596) - \[[`174155dee6`](https://github.com/nodejs/node/commit/174155dee6)] - **doc**: demonstrate dangers of `buffer.slice()` (Shalvah) [#&#8203;41628](https://github.com/nodejs/node/pull/41628) - \[[`22484014cd`](https://github.com/nodejs/node/commit/22484014cd)] - **doc**: add missing word in cluster.workers details (Tobias Nießen) [#&#8203;41624](https://github.com/nodejs/node/pull/41624) - \[[`86272ca5ac`](https://github.com/nodejs/node/commit/86272ca5ac)] - **doc**: fix async_hooks example in api docs (Akhil Marsonya) [#&#8203;41609](https://github.com/nodejs/node/pull/41609) - \[[`5943cb9d1e`](https://github.com/nodejs/node/commit/5943cb9d1e)] - **doc**: fix deprecated alias description in cluster (Tobias Nießen) [#&#8203;41618](https://github.com/nodejs/node/pull/41618) - \[[`574c19a8c6`](https://github.com/nodejs/node/commit/574c19a8c6)] - **doc**: fix backticks around 'default' (Tobias Nießen) [#&#8203;41613](https://github.com/nodejs/node/pull/41613) - \[[`4780449b4e`](https://github.com/nodejs/node/commit/4780449b4e)] - **doc**: update timingSafeEqual error case (Alex Agranov) [#&#8203;41507](https://github.com/nodejs/node/pull/41507) - \[[`9c73bd5610`](https://github.com/nodejs/node/commit/9c73bd5610)] - **doc**: simplify util.TextDecoder example (Rich Trott) [#&#8203;41574](https://github.com/nodejs/node/pull/41574) - \[[`e72693160e`](https://github.com/nodejs/node/commit/e72693160e)] - **doc**: move Mesteery to collaborators (Tobias Nießen) [#&#8203;41597](https://github.com/nodejs/node/pull/41597) - \[[`952623dff8`](https://github.com/nodejs/node/commit/952623dff8)] - **doc**: fix cjs example code for process.arch (Job) [#&#8203;41593](https://github.com/nodejs/node/pull/41593) - \[[`2478b47a08`](https://github.com/nodejs/node/commit/2478b47a08)] - **doc**: remove redunant `await` calls from stream docs (Giora Guttsait) [#&#8203;41592](https://github.com/nodejs/node/pull/41592) - \[[`f6b5b8d5bb`](https://github.com/nodejs/node/commit/f6b5b8d5bb)] - **doc**: make contributing info more discoverable (Michael Dawson) [#&#8203;41408](https://github.com/nodejs/node/pull/41408) - \[[`6370b4df68`](https://github.com/nodejs/node/commit/6370b4df68)] - **doc**: recommend package exports instead of requiring folders (Antoine du Hamel) [#&#8203;41381](https://github.com/nodejs/node/pull/41381) - \[[`b5104e89fc`](https://github.com/nodejs/node/commit/b5104e89fc)] - **doc**: edit async_context context loss text (Rich Trott) [#&#8203;41550](https://github.com/nodejs/node/pull/41550) - \[[`9ea8e49032`](https://github.com/nodejs/node/commit/9ea8e49032)] - **doc**: use sentence case for Web Crypto headers (Tobias Nießen) [#&#8203;41577](https://github.com/nodejs/node/pull/41577) - \[[`92484d4945`](https://github.com/nodejs/node/commit/92484d4945)] - **doc**: make Web Crypto example spec compliant (Tobias Nießen) [#&#8203;41556](https://github.com/nodejs/node/pull/41556) - \[[`60e7437a60`](https://github.com/nodejs/node/commit/60e7437a60)] - **doc**: do not reference SSL when discussing SNI (Tobias Nießen) [#&#8203;41549](https://github.com/nodejs/node/pull/41549) - \[[`31d75f2f5d`](https://github.com/nodejs/node/commit/31d75f2f5d)] - **doc**: fix typos in esm.md (Yu) [#&#8203;41499](https://github.com/nodejs/node/pull/41499) - \[[`cb4dbc10bc`](https://github.com/nodejs/node/commit/cb4dbc10bc)] - **doc**: adjust assignment in condition in stream doc (Rich Trott) [#&#8203;41510](https://github.com/nodejs/node/pull/41510) - \[[`5c700fa8e2`](https://github.com/nodejs/node/commit/5c700fa8e2)] - **doc**: improve Web Crypto headings related to ECC (Tobias Nießen) [#&#8203;41542](https://github.com/nodejs/node/pull/41542) - \[[`84292165e7`](https://github.com/nodejs/node/commit/84292165e7)] - **doc**: clarify module system selection (Antoine du Hamel) [#&#8203;41383](https://github.com/nodejs/node/pull/41383) - \[[`be63dc5acc`](https://github.com/nodejs/node/commit/be63dc5acc)] - **doc**: remove statement about (EC)DHE performance (Tobias Nießen) [#&#8203;41528](https://github.com/nodejs/node/pull/41528) - \[[`c6749bc590`](https://github.com/nodejs/node/commit/c6749bc590)] - **doc,readline**: add missing node protocol in example (Mestery) [#&#8203;41560](https://github.com/nodejs/node/pull/41560) - \[[`74bd31213c`](https://github.com/nodejs/node/commit/74bd31213c)] - **domain**: pass opts to `EventEmitter.init` (Chen Gang) [#&#8203;41414](https://github.com/nodejs/node/pull/41414) - \[[`e1d5a354c5`](https://github.com/nodejs/node/commit/e1d5a354c5)] - **esm**: improve validation of resolved URLs (Jacob Smith) [#&#8203;41446](https://github.com/nodejs/node/pull/41446) - \[[`bfddcb11a5`](https://github.com/nodejs/node/commit/bfddcb11a5)] - **http2**: fix pseudo-headers order (ofir) [#&#8203;41735](https://github.com/nodejs/node/pull/41735) - \[[`499171bbd8`](https://github.com/nodejs/node/commit/499171bbd8)] - **http2**: fix no response event on continue request (ofirbarak) [#&#8203;41739](https://github.com/nodejs/node/pull/41739) - \[[`2a18859324`](https://github.com/nodejs/node/commit/2a18859324)] - **http2**: fix memory leak on nghttp2 hd threshold (Rafael Silva) [#&#8203;41502](https://github.com/nodejs/node/pull/41502) - \[[`59a15e8f1a`](https://github.com/nodejs/node/commit/59a15e8f1a)] - **lib**: refactor to use `validateObject()` validator (Mohammed Keyvanzadeh) [#&#8203;41845](https://github.com/nodejs/node/pull/41845) - \[[`4834be373d`](https://github.com/nodejs/node/commit/4834be373d)] - **lib**: add comments to empty catch statements (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`76a229c4ff`](https://github.com/nodejs/node/commit/76a229c4ff)] - **(SEMVER-MINOR)** **lib**: add fetch (Michaël Zasso) [#&#8203;41749](https://github.com/nodejs/node/pull/41749) - \[[`cedd26a396`](https://github.com/nodejs/node/commit/cedd26a396)] - **lib**: refactor source map stack trace prepare (Mohammed Keyvanzadeh) [#&#8203;41698](https://github.com/nodejs/node/pull/41698) - \[[`8ab0540d4a`](https://github.com/nodejs/node/commit/8ab0540d4a)] - **lib**: throw error in structuedClone when no arguments are passed (Giora Guttsait) [#&#8203;41651](https://github.com/nodejs/node/pull/41651) - \[[`306dd1c181`](https://github.com/nodejs/node/commit/306dd1c181)] - **lib**: fix consistency of methods that emit warnings (Yoshiki Kurihara) [#&#8203;41249](https://github.com/nodejs/node/pull/41249) - \[[`e500d11806`](https://github.com/nodejs/node/commit/e500d11806)] - **lib**: remove erroneous JSDoc entry (Rich Trott) [#&#8203;41604](https://github.com/nodejs/node/pull/41604) - \[[`8a99eed7aa`](https://github.com/nodejs/node/commit/8a99eed7aa)] - **lib**: modify `DOMException` to pass WPT (Khaidi Chu) [#&#8203;41517](https://github.com/nodejs/node/pull/41517) - \[[`bd5d1583ed`](https://github.com/nodejs/node/commit/bd5d1583ed)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41868](https://github.com/nodejs/node/pull/41868) - \[[`f5adf54eb6`](https://github.com/nodejs/node/commit/f5adf54eb6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41763](https://github.com/nodejs/node/pull/41763) - \[[`e5abdf7285`](https://github.com/nodejs/node/commit/e5abdf7285)] - **meta**: update mailmap/AUTHORS info for existing collaborator (Rich Trott) [#&#8203;41750](https://github.com/nodejs/node/pull/41750) - \[[`14415fb7e0`](https://github.com/nodejs/node/commit/14415fb7e0)] - **meta**: adjust mailmap/AUTHORS to reflect README change (Rich Trott) [#&#8203;41751](https://github.com/nodejs/node/pull/41751) - \[[`60eddadb65`](https://github.com/nodejs/node/commit/60eddadb65)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41659](https://github.com/nodejs/node/pull/41659) - \[[`336c18d057`](https://github.com/nodejs/node/commit/336c18d057)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41548](https://github.com/nodejs/node/pull/41548) - \[[`9c6b078892`](https://github.com/nodejs/node/commit/9c6b078892)] - **module**: unflag esm json modules (Geoffrey Booth) [#&#8203;41736](https://github.com/nodejs/node/pull/41736) - \[[`2cae99425b`](https://github.com/nodejs/node/commit/2cae99425b)] - **(SEMVER-MINOR)** **node-api**: add node_api_symbol_for() (Darshan Sen) [#&#8203;41329](https://github.com/nodejs/node/pull/41329) - \[[`14cb9ea93e`](https://github.com/nodejs/node/commit/14cb9ea93e)] - **perf_hooks**: remove useless calls in Histogram (Michael Dawson) [#&#8203;41579](https://github.com/nodejs/node/pull/41579) - \[[`e1ae61bce5`](https://github.com/nodejs/node/commit/e1ae61bce5)] - **policy**: revise manifest.js to avoid empty blocks (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`d83d55e6e5`](https://github.com/nodejs/node/commit/d83d55e6e5)] - **policy**: check for null instead of falsy in loop (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`e11451c4e8`](https://github.com/nodejs/node/commit/e11451c4e8)] - **policy**: replace entries with keys (Mohammed Keyvanzadeh) [#&#8203;41482](https://github.com/nodejs/node/pull/41482) - \[[`cfaa1e224d`](https://github.com/nodejs/node/commit/cfaa1e224d)] - **process**: unhandledRejection support more errors (Benjamin Gruenbaum) [#&#8203;41682](https://github.com/nodejs/node/pull/41682) - \[[`cf1d3d1565`](https://github.com/nodejs/node/commit/cf1d3d1565)] - **process**: check for null instead of falsy in while loop (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`3b45c05a23`](https://github.com/nodejs/node/commit/3b45c05a23)] - **process**: use validateString validator (Mohammed Keyvanzadeh) [#&#8203;41595](https://github.com/nodejs/node/pull/41595) - \[[`700f766bea`](https://github.com/nodejs/node/commit/700f766bea)] - **process**: ignore asyncId 0 in exception handler (Anatoli Papirovski) [#&#8203;41424](https://github.com/nodejs/node/pull/41424) - \[[`cbcf794562`](https://github.com/nodejs/node/commit/cbcf794562)] - **readline**: improve code coverage for readline promises (Erick Wendel) [#&#8203;41817](https://github.com/nodejs/node/pull/41817) - \[[`0a31149202`](https://github.com/nodejs/node/commit/0a31149202)] - **(SEMVER-MINOR)** **readline**: add feature yank and yank pop (Ray) [#&#8203;41301](https://github.com/nodejs/node/pull/41301) - \[[`5a4c74c647`](https://github.com/nodejs/node/commit/5a4c74c647)] - **readline**: undo previous edit when get key code 0x1F (Ray) [#&#8203;41392](https://github.com/nodejs/node/pull/41392) - \[[`301a4f8781`](https://github.com/nodejs/node/commit/301a4f8781)] - **repl**: check for precise values rather than falsy in loops (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`c3d3abf112`](https://github.com/nodejs/node/commit/c3d3abf112)] - **src**: slightly simplify URLHost::ToString (Anna Henningsen) [#&#8203;41747](https://github.com/nodejs/node/pull/41747) - \[[`43f2abae7c`](https://github.com/nodejs/node/commit/43f2abae7c)] - **src**: slightly simplify V8CoverageConnection::GetFilename (Anna Henningsen) [#&#8203;41748](https://github.com/nodejs/node/pull/41748) - \[[`bbfa58691e`](https://github.com/nodejs/node/commit/bbfa58691e)] - **src**: fix typo in js_native_api_v8.cc (Caio Agiani) [#&#8203;41764](https://github.com/nodejs/node/pull/41764) - \[[`1ae648567a`](https://github.com/nodejs/node/commit/1ae648567a)] - **(SEMVER-MINOR)** **stream**: add iterator helper find (linkgoron) [#&#8203;41849](https://github.com/nodejs/node/pull/41849) - \[[`07b6bf4e7e`](https://github.com/nodejs/node/commit/07b6bf4e7e)] - **stream**: resume stream on drain (Robert Nagy) [#&#8203;41848](https://github.com/nodejs/node/pull/41848) - \[[`f8d2955b71`](https://github.com/nodejs/node/commit/f8d2955b71)] - **stream**: initial port of test262 tests (Benjamin Gruenbaum) [#&#8203;41775](https://github.com/nodejs/node/pull/41775) - \[[`6c82276b85`](https://github.com/nodejs/node/commit/6c82276b85)] - **stream**: remove empty block (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`e11a079469`](https://github.com/nodejs/node/commit/e11a079469)] - **stream**: use synchronous error validation & validate abort signal option (iMoses) [#&#8203;41777](https://github.com/nodejs/node/pull/41777) - \[[`9c2504a066`](https://github.com/nodejs/node/commit/9c2504a066)] - **(SEMVER-MINOR)** **stream**: add reduce (Benjamin Gruenbaum) [#&#8203;41669](https://github.com/nodejs/node/pull/41669) - \[[`a05b8328d8`](https://github.com/nodejs/node/commit/a05b8328d8)] - **stream**: use synchronous error validation on iteration helpers (iMoses) [#&#8203;41652](https://github.com/nodejs/node/pull/41652) - \[[`311050ebaa`](https://github.com/nodejs/node/commit/311050ebaa)] - **stream**: add asIndexedPairs (Benjamin Gruenbaum) [#&#8203;41681](https://github.com/nodejs/node/pull/41681) - \[[`9b1a37979c`](https://github.com/nodejs/node/commit/9b1a37979c)] - **stream**: add drop and take (Benjamin Gruenbaum) [#&#8203;41630](https://github.com/nodejs/node/pull/41630) - \[[`b3390b9ddb`](https://github.com/nodejs/node/commit/b3390b9ddb)] - **stream**: never flatten on toArray (Benjamin Gruenbaum) [#&#8203;41615](https://github.com/nodejs/node/pull/41615) - \[[`46ec74dcd1`](https://github.com/nodejs/node/commit/46ec74dcd1)] - **(SEMVER-MINOR)** **stream**: support flatMap (Benjamin Gruenbaum) [#&#8203;41612](https://github.com/nodejs/node/pull/41612) - \[[`16dec4268c`](https://github.com/nodejs/node/commit/16dec4268c)] - **stream**: check for null instead of falsy in loops (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`34684a1c89`](https://github.com/nodejs/node/commit/34684a1c89)] - **(SEMVER-MINOR)** **stream**: support some and every (Benjamin Gruenbaum) [#&#8203;41573](https://github.com/nodejs/node/pull/41573) - \[[`62e1a68077`](https://github.com/nodejs/node/commit/62e1a68077)] - **(SEMVER-MINOR)** **stream**: add toArray (Benjamin Gruenbaum) [#&#8203;41553](https://github.com/nodejs/node/pull/41553) - \[[`5027e94a8a`](https://github.com/nodejs/node/commit/5027e94a8a)] - **stream**: rename unknown primordial (Mohammed Keyvanzadeh) [#&#8203;40622](https://github.com/nodejs/node/pull/40622) - \[[`da11b95988`](https://github.com/nodejs/node/commit/da11b95988)] - **(SEMVER-MINOR)** **stream**: add forEach method (Benjamin Gruenbaum) [#&#8203;41445](https://github.com/nodejs/node/pull/41445) - \[[`9226322394`](https://github.com/nodejs/node/commit/9226322394)] - **stream**: avoid function call where possible (Rich Trott) [#&#8203;41534](https://github.com/nodejs/node/pull/41534) - \[[`573cafe29d`](https://github.com/nodejs/node/commit/573cafe29d)] - **test**: remove eslint-disable comments from fixtures (Rich Trott) [#&#8203;41859](https://github.com/nodejs/node/pull/41859) - \[[`0d9248fe0a`](https://github.com/nodejs/node/commit/0d9248fe0a)] - **test**: remove test-worker-memory flaky designation (Rich Trott) [#&#8203;41867](https://github.com/nodejs/node/pull/41867) - \[[`c694dae41c`](https://github.com/nodejs/node/commit/c694dae41c)] - **test**: enable no-empty ESLint rule (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`87902a7c17`](https://github.com/nodejs/node/commit/87902a7c17)] - **test**: avoid using Object.prototype methods directly on objects (Rich Trott) [#&#8203;41801](https://github.com/nodejs/node/pull/41801) - \[[`ea966404ad`](https://github.com/nodejs/node/commit/ea966404ad)] - **test**: exclude ibm i tests until we resolve (Michael Dawson) [#&#8203;41812](https://github.com/nodejs/node/pull/41812) - \[[`9c704b13af`](https://github.com/nodejs/node/commit/9c704b13af)] - **test**: make worker-take-heapsnapshot non-flaky (Michael Dawson) [#&#8203;41684](https://github.com/nodejs/node/pull/41684) - \[[`a97c817451`](https://github.com/nodejs/node/commit/a97c817451)] - **test**: mark test-fs-rmdir-recursive flaky on win (Michael Dawson) [#&#8203;41533](https://github.com/nodejs/node/pull/41533) - \[[`5f1a59cb41`](https://github.com/nodejs/node/commit/5f1a59cb41)] - **test**: make fs watch test more stable (Benjamin Gruenbaum) [#&#8203;41715](https://github.com/nodejs/node/pull/41715) - \[[`abbc06b5ab`](https://github.com/nodejs/node/commit/abbc06b5ab)] - **test**: fix typo in MessageChannel test (Tobias Nießen) [#&#8203;41746](https://github.com/nodejs/node/pull/41746) - \[[`94645d8f71`](https://github.com/nodejs/node/commit/94645d8f71)] - **test**: replace commented out expectations with tests (Darshan Sen) [#&#8203;41667](https://github.com/nodejs/node/pull/41667) - \[[`351ebf289a`](https://github.com/nodejs/node/commit/351ebf289a)] - **test**: improve stability of oom test (Benjamin Gruenbaum) [#&#8203;41681](https://github.com/nodejs/node/pull/41681) - \[[`0267d27a7d`](https://github.com/nodejs/node/commit/0267d27a7d)] - **test**: use Object.hasOwn() where applicable (Rich Trott) [#&#8203;41664](https://github.com/nodejs/node/pull/41664) - \[[`cca92107a4`](https://github.com/nodejs/node/commit/cca92107a4)] - **test**: remove unneeded test statement (Rich Trott) [#&#8203;41663](https://github.com/nodejs/node/pull/41663) - \[[`30df37f733`](https://github.com/nodejs/node/commit/30df37f733)] - **test**: remove error allowance in debugger test (Jithil P Ponnan) [#&#8203;41640](https://github.com/nodejs/node/pull/41640) - \[[`b02bf41e18`](https://github.com/nodejs/node/commit/b02bf41e18)] - **test**: add stream map tests (Benjamin Gruenbaum) [#&#8203;41642](https://github.com/nodejs/node/pull/41642) - \[[`12c1ac4d3b`](https://github.com/nodejs/node/commit/12c1ac4d3b)] - **test**: simplify test-gc-http-client (Luigi Pinca) [#&#8203;41620](https://github.com/nodejs/node/pull/41620) - \[[`9d99c24d50`](https://github.com/nodejs/node/commit/9d99c24d50)] - **test**: prepare tests for no-cond-assign ESLint rule (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`ea6c202436`](https://github.com/nodejs/node/commit/ea6c202436)] - **test**: move test-gc-http-client-onerror to sequential (Luigi Pinca) [#&#8203;41619](https://github.com/nodejs/node/pull/41619) - \[[`55adcb7f12`](https://github.com/nodejs/node/commit/55adcb7f12)] - **test**: fix typo in test-stream-toArray (Tobias Nießen) [#&#8203;41634](https://github.com/nodejs/node/pull/41634) - \[[`506a0dde0e`](https://github.com/nodejs/node/commit/506a0dde0e)] - **test**: improve test coverage of internal/worker/io (Yoshiki Kurihara) [#&#8203;41511](https://github.com/nodejs/node/pull/41511) - \[[`6de8e51437`](https://github.com/nodejs/node/commit/6de8e51437)] - **test**: add DataView test entry for whatwg (Mohammed Keyvanzadeh) [#&#8203;40622](https://github.com/nodejs/node/pull/40622) - \[[`f947f72b39`](https://github.com/nodejs/node/commit/f947f72b39)] - **test**: improve util-format code coverage (Rich Trott) [#&#8203;41572](https://github.com/nodejs/node/pull/41572) - \[[`38e4b11391`](https://github.com/nodejs/node/commit/38e4b11391)] - **test**: fix typo in test_js_native_api_v8 (Tobias Nießen) [#&#8203;41584](https://github.com/nodejs/node/pull/41584) - \[[`5e3f751260`](https://github.com/nodejs/node/commit/5e3f751260)] - **test**: add missing await in fs-rm/fs-rmdir tests (Benjamin Coe) [#&#8203;41545](https://github.com/nodejs/node/pull/41545) - \[[`c0aec6783a`](https://github.com/nodejs/node/commit/c0aec6783a)] - **test**: increase coverage for stream writable (Rich Trott) [#&#8203;41486](https://github.com/nodejs/node/pull/41486) - \[[`ef7c79822f`](https://github.com/nodejs/node/commit/ef7c79822f)] - **test**: add coverage for util.inspect() (Rich Trott) [#&#8203;41527](https://github.com/nodejs/node/pull/41527) - \[[`2b4e46f07d`](https://github.com/nodejs/node/commit/2b4e46f07d)] - **timers**: check for nullish instead of falsy in loops (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`0d471fb0d4`](https://github.com/nodejs/node/commit/0d471fb0d4)] - **tools**: enable no-empty ESLint rule (Rich Trott) [#&#8203;41831](https://github.com/nodejs/node/pull/41831) - \[[`72f02d87b9`](https://github.com/nodejs/node/commit/72f02d87b9)] - **tools**: update lint-md-dependencies to rollup@2.67.0 (Node.js GitHub Bot) [#&#8203;41737](https://github.com/nodejs/node/pull/41737) - \[[`32cdae7f65`](https://github.com/nodejs/node/commit/32cdae7f65)] - **tools**: update doc to rehype-stringify@9.0.3 (Node.js GitHub Bot) [#&#8203;41854](https://github.com/nodejs/node/pull/41854) - \[[`e6a1896ec1`](https://github.com/nodejs/node/commit/e6a1896ec1)] - **tools**: update eslint to 8.8.0 (Node.js GitHub Bot) [#&#8203;41738](https://github.com/nodejs/node/pull/41738) - \[[`3190e365f0`](https://github.com/nodejs/node/commit/3190e365f0)] - **tools**: use Set instead of { \[key]: true } object (Tobias Nießen) [#&#8203;41695](https://github.com/nodejs/node/pull/41695) - \[[`3f4ce07be9`](https://github.com/nodejs/node/commit/3f4ce07be9)] - **tools**: add compile_commands to ignore file (Yash Ladha) [#&#8203;41580](https://github.com/nodejs/node/pull/41580) - \[[`5fe7cfabaa`](https://github.com/nodejs/node/commit/5fe7cfabaa)] - **tools**: use Set instead of { \[key]: true } object (Tobias Nießen) [#&#8203;41675](https://github.com/nodejs/node/pull/41675) - \[[`d33d1899c4`](https://github.com/nodejs/node/commit/d33d1899c4)] - **tools**: fix typo in `tools/code_cache/README.md` (Tobias Nießen) [#&#8203;41657](https://github.com/nodejs/node/pull/41657) - \[[`ae7df178fd`](https://github.com/nodejs/node/commit/ae7df178fd)] - **tools**: enable no-cond-assign-ESLint rule (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`9202b86814`](https://github.com/nodejs/node/commit/9202b86814)] - **tools**: update lint-md-dependencies to rollup@2.65.0 (Node.js GitHub Bot) [#&#8203;41638](https://github.com/nodejs/node/pull/41638) - \[[`57ada37a1f`](https://github.com/nodejs/node/commit/57ada37a1f)] - **tools**: increase maximum line length to 120 characters (Rich Trott) [#&#8203;41586](https://github.com/nodejs/node/pull/41586) - \[[`3084dff702`](https://github.com/nodejs/node/commit/3084dff702)] - **tools**: add missing `.PHONY` and `.NOTPARALLEL` targets in `Makefile` (Antoine du Hamel) [#&#8203;41515](https://github.com/nodejs/node/pull/41515) - \[[`544267feb2`](https://github.com/nodejs/node/commit/544267feb2)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;41440](https://github.com/nodejs/node/pull/41440) - \[[`127d2fae62`](https://github.com/nodejs/node/commit/127d2fae62)] - **tools**: bump eslint from 8.6.0 to 8.7.0 (Rich Trott) [#&#8203;41570](https://github.com/nodejs/node/pull/41570) - \[[`ad5d7c7b06`](https://github.com/nodejs/node/commit/ad5d7c7b06)] - **tools**: update doc to highlight.js@11.4.0 to-vfile@7.2.3 (Node.js GitHub Bot) [#&#8203;41441](https://github.com/nodejs/node/pull/41441) - \[[`34dfc60742`](https://github.com/nodejs/node/commit/34dfc60742)] - **tools,test**: enable no-prototype-builtins (Rich Trott) [#&#8203;41801](https://github.com/nodejs/node/pull/41801) - \[[`aee74c8156`](https://github.com/nodejs/node/commit/aee74c8156)] - **util**: use hasOwnProperty() primordial (Rich Trott) [#&#8203;41692](https://github.com/nodejs/node/pull/41692) - \[[`2b082def2e`](https://github.com/nodejs/node/commit/2b082def2e)] - **util**: remove unused fast path in internal debuglog (Rich Trott) [#&#8203;41605](https://github.com/nodejs/node/pull/41605) - \[[`0e35d01a4a`](https://github.com/nodejs/node/commit/0e35d01a4a)] - **util**: check for null instead of flasy in loop (Rich Trott) [#&#8203;41614](https://github.com/nodejs/node/pull/41614) - \[[`869cbb7b25`](https://github.com/nodejs/node/commit/869cbb7b25)] - **(SEMVER-MINOR)** **worker**: graduate get/setEnvironmentData APIs (James M Snell) [#&#8203;41272](https://github.com/nodejs/node/pull/41272) ### [`v17.4.0`](https://github.com/nodejs/node/releases/v17.4.0) [Compare Source](https://github.com/nodejs/node/compare/v17.3.1...v17.4.0) ##### Notable Changes - \[[`ef6f98c2e3`](https://github.com/nodejs/node/commit/ef6f98c2e3)] - **(SEMVER-MINOR)** **child_process**: add support for URL to `cp.fork` (Antoine du Hamel) [#&#8203;41225](https://github.com/nodejs/node/pull/41225) - \[[`d62fe315c2`](https://github.com/nodejs/node/commit/d62fe315c2)] - **(SEMVER-MINOR)** **crypto**: alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) [#&#8203;41266](https://github.com/nodejs/node/pull/41266) - \[[`fcb37e9ce5`](https://github.com/nodejs/node/commit/fcb37e9ce5)] - **doc**: add Mesteery to collaborators (Mestery) [#&#8203;41543](https://github.com/nodejs/node/pull/41543) - \[[`4079fc42b7`](https://github.com/nodejs/node/commit/4079fc42b7)] - **(SEMVER-MINOR)** **events**: graduate capturerejections to supported (James M Snell) [#&#8203;41267](https://github.com/nodejs/node/pull/41267) - \[[`fe21607901`](https://github.com/nodejs/node/commit/fe21607901)] - **(SEMVER-MINOR)** **events**: add EventEmitterAsyncResource to core (James M Snell) [#&#8203;41246](https://github.com/nodejs/node/pull/41246) - \[[`6d8eb6ace6`](https://github.com/nodejs/node/commit/6d8eb6ace6)] - **(SEMVER-MINOR)** **loader**: return package format from defaultResolve if known (Gabriel Bota) [#&#8203;40980](https://github.com/nodejs/node/pull/40980) - \[[`27c619140a`](https://github.com/nodejs/node/commit/27c619140a)] - **(SEMVER-MINOR)** **perf_hooks**: multiple fixes for Histogram (James M Snell) [#&#8203;41153](https://github.com/nodejs/node/pull/41153) - \[[`09c25bb224`](https://github.com/nodejs/node/commit/09c25bb224)] - **(SEMVER-MINOR)** **stream**: add filter method to readable (Benjamin Gruenbaum, Robert Nagy) [#&#8203;41354](https://github.com/nodejs/node/pull/41354) - \[[`1150963217`](https://github.com/nodejs/node/commit/1150963217)] - **(SEMVER-MINOR)** **stream**: add isReadable helper (Robert Nagy) [#&#8203;41199](https://github.com/nodejs/node/pull/41199) - \[[`9f5a873965`](https://github.com/nodejs/node/commit/9f5a873965)] - **(SEMVER-MINOR)** **stream**: add map method to Readable (Benjamin Gruenbaum, Robert Nagy) [#&#8203;40815](https://github.com/nodejs/node/pull/40815) ##### Commits - \[[`314102b14d`](https://github.com/nodejs/node/commit/314102b14d)] - **async_hooks**: add missing initialization (Michael Dawson) [#&#8203;41288](https://github.com/nodejs/node/pull/41288) - \[[`56345a3f63`](https://github.com/nodejs/node/commit/56345a3f63)] - **async_hooks**: fix AsyncLocalStorage in unhandledRejection cases (Bradley Farias) [#&#8203;41202](https://github.com/nodejs/node/pull/41202) - \[[`fa84353952`](https://github.com/nodejs/node/commit/fa84353952)] - **benchmark**: simplify http benchmarker regular expression (Rich Trott) [#&#8203;38206](https://github.com/nodejs/node/pull/38206) - \[[`88d760c559`](https://github.com/nodejs/node/commit/88d760c559)] - **benchmark**: fix benchmark/run.js handling of --set (Rich Trott) [#&#8203;41334](https://github.com/nodejs/node/pull/41334) - \[[`dcf1ea0a3f`](https://github.com/nodejs/node/commit/dcf1ea0a3f)] - **benchmark,test**: use Object.hasOwn() where applicable (Rich Trott) [#&#8203;41229](https://github.com/nodejs/node/pull/41229) - \[[`4958c800da`](https://github.com/nodejs/node/commit/4958c800da)] - **build**: fix npm version detection (Michaël Zasso) [#&#8203;41575](https://github.com/nodejs/node/pull/41575) - \[[`e8538c3751`](https://github.com/nodejs/node/commit/e8538c3751)] - **build**: fix node build failures in WSL Ubuntu (MrJithil) [#&#8203;41476](https://github.com/nodejs/node/pull/41476) - \[[`3d88ea195e`](https://github.com/nodejs/node/commit/3d88ea195e)] - **build**: fix workflow access to git history (Rich Trott) [#&#8203;41472](https://github.com/nodejs/node/pull/41472) - \[[`b0f0ad1004`](https://github.com/nodejs/node/commit/b0f0ad1004)] - **build**: start build on z/OS (alexcfyung) [#&#8203;41273](https://github.com/nodejs/node/pull/41273) - \[[`80a3766ac7`](https://github.com/nodejs/node/commit/80a3766ac7)] - **build**: use list for mutable retval rather than tuple (Rich Trott) [#&#8203;41372](https://github.com/nodejs/node/pull/41372) - \[[`afe1e00509`](https://github.com/nodejs/node/commit/afe1e00509)] - **build**: remove Python 2 workaround (Rich Trott) [#&#8203;41357](https://github.com/nodejs/node/pull/41357) - \[[`011c5f6498`](https://github.com/nodejs/node/commit/011c5f6498)] - **build**: improve readability of texts in workflows (Mestery) [#&#8203;40988](https://github.com/nodejs/node/pull/40988) - \[[`2233f31069`](https://github.com/nodejs/node/commit/2233f31069)] - **build,tools,win**: trim unused VCBUILD_PYTHON_LOCATION variable (David Sanders) [#&#8203;41235](https://github.com/nodejs/node/pull/41235) - \[[`d9465ae614`](https://github.com/nodejs/node/commit/d9465ae614)] - **child_process**: queue pending messages (Erick Wendel) [#&#8203;41221](https://github.com/nodejs/node/pull/41221) - \[[`ed41fd110d`](https://github.com/nodejs/node/commit/ed41fd110d)] - **child_process**: revise argument processing (Rich Trott) [#&#8203;41280](https://github.com/nodejs/node/pull/41280) - \[[`ef6f98c2e3`](https://github.com/nodejs/node/commit/ef6f98c2e3)] - **(SEMVER-MINOR)** **child_process**: add support for URL to `cp.fork` (Antoine du Hamel) [#&#8203;41225](https://github.com/nodejs/node/pull/41225) - \[[`d62fe315c2`](https://github.com/nodejs/node/commit/d62fe315c2)] - **(SEMVER-MINOR)** **crypto**: alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) [#&#8203;41266](https://github.com/nodejs/node/pull/41266) - \[[`8ea56a9606`](https://github.com/nodejs/node/commit/8ea56a9606)] - **crypto**: fix error capture when loading engine (Tobias Nießen) [#&#8203;41187](https://github.com/nodejs/node/pull/41187) - \[[`f5b8aee1a1`](https://github.com/nodejs/node/commit/f5b8aee1a1)] - **deps**: upgrade npm to 8.3.1 (npm-robot) [#&#8203;41503](https://github.com/nodejs/node/pull/41503) - \[[`af3acecd7e`](https://github.com/nodejs/node/commit/af3acecd7e)] - **deps**: V8: cherry-pick [`3b6b21f`](https://github.com/nodejs/node/commit/3b6b21f595f6) (Michaël Zasso) [#&#8203;41457](https://github.com/nodejs/node/pull/41457) - \[[`02ca5d7c7c`](https://github.com/nodejs/node/commit/02ca5d7c7c)] - **deps**: upgrade to libuv 1.43.0 (Colin Ihrig) [#&#8203;41398](https://github.com/nodejs/node/pull/41398) - \[[`48e4780fd7`](https://github.com/nodejs/node/commit/48e4780fd7)] - **doc**: remove statement about client private keys (Tobias Nießen) [#&#8203;41505](https://github.com/nodejs/node/pull/41505) - \[[`ba7160e815`](https://github.com/nodejs/node/commit/ba7160e815)] - **doc**: fix typo in `onboarding.md` (Antoine du Hamel) [#&#8203;41544](https://github.com/nodejs/node/pull/41544) - \[[`fcb37e9ce5`](https://github.com/nodejs/node/commit/fcb37e9ce5)] - **doc**: add Mesteery to collaborators (Mestery) [#&#8203;41543](https://github.com/nodejs/node/pull/41543) - \[[`abbfed8789`](https://github.com/nodejs/node/commit/abbfed8789)] - **doc**: add missing word in readable.read() text (Rich Trott) [#&#8203;41524](https://github.com/nodejs/node/pull/41524) - \[[`712dfdc11f`](https://github.com/nodejs/node/commit/712dfdc11f)] - **doc**: add missing YAML tag in `esm.md` (Antoine du Hamel) [#&#8203;41516](https://github.com/nodejs/node/pull/41516) - \[[`f443a4e8fa`](https://github.com/nodejs/node/commit/f443a4e8fa)] - **doc**: expand fs.access() mode parameter docs (Colin Ihrig) [#&#8203;41484](https://github.com/nodejs/node/pull/41484) - \[[`5c0c459976`](https://github.com/nodejs/node/commit/5c0c459976)] - **doc**: correct checkHost behavior with wildcards etc (Tobias Nießen) [#&#8203;41468](https://github.com/nodejs/node/pull/41468) - \[[`c632241440`](https://github.com/nodejs/node/commit/c632241440)] - **doc**: remove extraneous colon in legacy subject (Tobias Nießen) [#&#8203;41477](https://github.com/nodejs/node/pull/41477) - \[[`b7b0631b10`](https://github.com/nodejs/node/commit/b7b0631b10)] - **doc**: remove SameValue comparison reference (Rich Trott) [#&#8203;41460](https://github.com/nodejs/node/pull/41460) - \[[`524103d6bf`](https://github.com/nodejs/node/commit/524103d6bf)] - **doc**: update mailmap entries for mhdawson (Michael Dawson) [#&#8203;41437](https://github.com/nodejs/node/pull/41437) - \[[`62aa190c01`](https://github.com/nodejs/node/commit/62aa190c01)] - **doc**: add guidance on order vulns are listed in (Michael Dawson) [#&#8203;41429](https://github.com/nodejs/node/pull/41429) - \[[`d721a758b2`](https://github.com/nodejs/node/commit/d721a758b2)] - **doc**: update output in inspector examples (David Sanders) [#&#8203;41390](https://github.com/nodejs/node/pull/41390) - \[[`60025bde16`](https://github.com/nodejs/node/commit/60025bde16)] - **doc**: add note regarding unfinished TLA (Antoine du Hamel) [#&#8203;41434](https://github.com/nodejs/node/pull/41434) - \[[`10bdb5969e`](https://github.com/nodejs/node/commit/10bdb5969e)] - **doc**: add reference for `===` operator in assert.md (Rich Trott) [#&#8203;41442](https://github.com/nodejs/node/pull/41442) - \[[`edc6a7af42`](https://github.com/nodejs/node/commit/edc6a7af42)] - **doc**: clarify `uncaughtException` `origin` for ESM (Antoine du Hamel) [#&#8203;41339](https://github.com/nodejs/node/pull/41339) - \[[`4a369d03b4`](https://github.com/nodejs/node/commit/4a369d03b4)] - **doc**: revise HTTPRequestOptions text (Rich Trott) [#&#8203;41407](https://github.com/nodejs/node/pull/41407) - \[[`f43bfe2e16`](https://github.com/nodejs/node/commit/f43bfe2e16)] - **doc**: add reference for == and != operators (Rich Trott) [#&#8203;41413](https://github.com/nodejs/node/pull/41413) - \[[`d3111bf0cc`](https://github.com/nodejs/node/commit/d3111bf0cc)] - **doc**: add [@&#8203;RaisinTen](https://github.com/RaisinTen) to the TSC (Michael Dawson) [#&#8203;41419](https://github.com/nodejs/node/pull/41419) - \[[`e6bed4e972`](https://github.com/nodejs/node/commit/e6bed4e972)] - **doc**: update Abstract Equality Comparison text in assert.md (Rich Trott) [#&#8203;41375](https://github.com/nodejs/node/pull/41375) - \[[`19db19bb80`](https://github.com/nodejs/node/commit/19db19bb80)] - **doc**: fix example commands for `REPLACEME` updates (Richard Lau) [#&#8203;41269](https://github.com/nodejs/node/pull/41269) - \[[`16c0bea91d`](https://github.com/nodejs/node/commit/16c0bea91d)] - **doc**: document that `require.main` may be `undefined` (Antoine du Hamel) [#&#8203;41384](https://github.com/nodejs/node/pull/41384) - \[[`014d4836ec`](https://github.com/nodejs/node/commit/014d4836ec)] - **doc**: clarify entry point behavior when using loader hooks (Antoine du Hamel) [#&#8203;41304](https://github.com/nodejs/node/pull/41304) - \[[`6460b1b32d`](https://github.com/nodejs/node/commit/6460b1b32d)] - **doc**: clarify `require` behavior with non `.js` extensions (Antoine du Hamel) [#&#8203;41345](https://github.com/nodejs/node/pull/41345) - \[[`0d18a8c232`](https://github.com/nodejs/node/commit/0d18a8c232)] - **doc**: revise frozen-intrinsics text (Rich Trott) [#&#8203;41342](https://github.com/nodejs/node/pull/41342) - \[[`c267bb2192`](https://github.com/nodejs/node/commit/c267bb2192)] - **doc**: fix example description for worker_threads (Dmitry Petrov) [#&#8203;41341](https://github.com/nodejs/node/pull/41341) - \[[`ffe17a84f2`](https://github.com/nodejs/node/commit/ffe17a84f2)] - **doc**: make pull-request guide default branch agnostic (Antoine du Hamel) [#&#8203;41299](https://github.com/nodejs/node/pull/41299) - \[[`5cfc547997`](https://github.com/nodejs/node/commit/5cfc547997)] - **doc**: fix sync comment in observer snippet (Eric Jacobson) [#&#8203;41262](https://github.com/nodejs/node/pull/41262) - \[[`3a80104b29`](https://github.com/nodejs/node/commit/3a80104b29)] - **doc**: remove section about amending commits in PR guide (Thiago Santos) [#&#8203;41287](https://github.com/nodejs/node/pull/41287) - \[[`23f97ec04e`](https://github.com/nodejs/node/commit/23f97ec04e)] - **doc**: remove legacy in-page links in v8.md (Rich Trott) [#&#8203;41291](https://github.com/nodejs/node/pull/41291) - \[[`e819685cec`](https://github.com/nodejs/node/commit/e819685cec)] - **doc**: include stack trace difference in ES modules (Marcos Bérgamo) [#&#8203;41157](https://github.com/nodejs/node/pull/41157) - \[[`dac8407944`](https://github.com/nodejs/node/commit/dac8407944)] - **doc**: fix example in node-api docs (Michael Dawson) [#&#8203;41264](https://github.com/nodejs/node/pull/41264) - \[[`29563abd85`](https://github.com/nodejs/node/commit/29563abd85)] - **doc**: add usage recommendation for writable.\_destroy (Rafael Gonzaga) [#&#8203;41040](https://github.com/nodejs/node/pull/41040) - \[[`e27e8272f7`](https://github.com/nodejs/node/commit/e27e8272f7)] - **doc**: make function signature comply with JSDoc comment (Rich Trott) [#&#8203;41242](https://github.com/nodejs/node/pull/41242) - \[[`d83a02994c`](https://github.com/nodejs/node/commit/d83a02994c)] - **doc**: align maxHeaderSize default with current value (Gil Pedersen) [#&#8203;41183](https://github.com/nodejs/node/pull/41183) - \[[`730e25d7dd`](https://github.com/nodejs/node/commit/730e25d7dd)] - **doc**: add unhandledRejection to strict mode (Colin Ihrig) [#&#8203;41194](https://github.com/nodejs/node/pull/41194) - \[[`74742c3618`](https://github.com/nodejs/node/commit/74742c3618)] - **doc**: adding estimated execution time (mawaregetsuka) [#&#8203;41142](https://github.com/nodejs/node/pull/41142) - \[[`34ef5a7d4d`](https://github.com/nodejs/node/commit/34ef5a7d4d)] - **doc**: fix syntax error in nested conditions example (Mateusz Burzyński) [#&#8203;41205](https://github.com/nodejs/node/pull/41205) - \[[`c9a4603913`](https://github.com/nodejs/node/commit/c9a4603913)] - **esm**: make `process.exit()` default to exit code 0 (Gang Chen) [#&#8203;41388](https://github.com/nodejs/node/pull/41388) - \[[`8a94ca7a69`](https://github.com/nodejs/node/commit/8a94ca7a69)] - **esm**: refactor esm tests out of test/message (Geoffrey Booth) [#&#8203;41352](https://github.com/nodejs/node/pull/41352) - \[[`5ebe086ea6`](https://github.com/nodejs/node/commit/5ebe086ea6)] - **esm**: reconcile JSDoc vs. actual parameter name (Rich Trott) [#&#8203;41238](https://github.com/nodejs/node/pull/41238) - \[[`9fe304b8e8`](https://github.com/nodejs/node/commit/9fe304b8e8)] - **events**: clarify JSDoc entries (Rich Trott) [#&#8203;41311](https://github.com/nodejs/node/pull/41311) - \[[`4079fc42b7`](https://github.com/nodejs/node/commit/4079fc42b7)] - **(SEMVER-MINOR)** **events**: graduate capturerejections to supported (James M Snell) [#&#8203;41267](https://github.com/nodejs/node/pull/41267) - \[[`e3a0a9cb3a`](https://github.com/nodejs/node/commit/e3a0a9cb3a)] - **events**: add jsdoc details for Event and EventTarget (James M Snell) [#&#8203;41274](https://github.com/nodejs/node/pull/41274) - \[[`fe21607901`](https://github.com/nodejs/node/commit/fe21607901)] - **(SEMVER-MINOR)** **events**: add EventEmitterAsyncResource to core (James M Snell) [#&#8203;41246](https://github.com/nodejs/node/pull/41246) - \[[`d4a6f2caf1`](https://github.com/nodejs/node/commit/d4a6f2caf1)] - **fs**: use async directory processing in cp() (Colin Ihrig) [#&#8203;41351](https://github.com/nodejs/node/pull/41351) - \[[`0951bd94db`](https://github.com/nodejs/node/commit/0951bd94db)] - **fs**: correct param names in JSDoc comments (Rich Trott) [#&#8203;41237](https://github.com/nodejs/node/pull/41237) - \[[`1d75436a1c`](https://github.com/nodejs/node/commit/1d75436a1c)] - **http**: remove duplicate code (Shaw) [#&#8203;39239](https://github.com/nodejs/node/pull/39239) - \[[`0aacd4926d`](https://github.com/nodejs/node/commit/0aacd4926d)] - **http2**: handle existing socket data when creating HTTP/2 server sessions (Tim Perry) [#&#8203;41185](https://github.com/nodejs/node/pull/41185) - \[[`24fbbf2747`](https://github.com/nodejs/node/commit/24fbbf2747)] - **lib**: remove spurious JSDoc entry (Rich Trott) [#&#8203;41240](https://github.com/nodejs/node/pull/41240) - \[[`e457ec05d6`](https://github.com/nodejs/node/commit/e457ec05d6)] - **lib**: fix checking syntax of esm module (Qingyu Deng) [#&#8203;41198](https://github.com/nodejs/node/pull/41198) - \[[`f176124e8b`](https://github.com/nodejs/node/commit/f176124e8b)] - **lib,tools**: remove empty lines between JSDoc tags (Rich Trott) [#&#8203;41147](https://github.com/nodejs/node/pull/41147) - \[[`68fd2ac999`](https://github.com/nodejs/node/commit/68fd2ac999)] - **loader**: fix package resolution for edge case (Gabriel Bota) [#&#8203;41218](https://github.com/nodejs/node/pull/41218) - \[[`6d8eb6ace6`](https://github.com/nodejs/node/commit/6d8eb6ace6)] - **(SEMVER-MINOR)** **loader**: return package format from defaultResolve if known (Gabriel Bota) [#&#8203;40980](https://github.com/nodejs/node/pull/40980) - \[[`a6146c7e27`](https://github.com/nodejs/node/commit/a6146c7e27)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41456](https://github.com/nodejs/node/pull/41456) - \[[`07353e9b8b`](https://github.com/nodejs/node/commit/07353e9b8b)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41475](https://github.com/nodejs/node/pull/41475) - \[[`e1ff4521d7`](https://github.com/nodejs/node/commit/e1ff4521d7)] - **meta**: correct my name in AUTHORS (Jacob Smith) [#&#8203;41444](https://github.com/nodejs/node/pull/41444) - \[[`da1d5d6563`](https://github.com/nodejs/node/commit/da1d5d6563)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41449](https://github.com/nodejs/node/pull/41449) - \[[`0f9afa58d5`](https://github.com/nodejs/node/commit/0f9afa58d5)] - **meta**: add required fields in issue templates (Rich Trott) [#&#8203;41378](https://github.com/nodejs/node/pull/41378) - \[[`da04408075`](https://github.com/nodejs/node/commit/da04408075)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41374](https://github.com/nodejs/node/pull/41374) - \[[`1f6c4e819b`](https://github.com/nodejs/node/commit/1f6c4e819b)] - **meta**: replace API docs issue template with form (Rich Trott) [#&#8203;41348](https://github.com/nodejs/node/pull/41348) - \[[`253c3e5488`](https://github.com/nodejs/node/commit/253c3e5488)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41336](https://github.com/nodejs/node/pull/41336) - \[[`3e188cacc2`](https://github.com/nodejs/node/commit/3e188cacc2)] - **meta**: replace feature request template with form (Rich Trott) [#&#8203;41317](https://github.com/nodejs/node/pull/41317) - \[[`e339220511`](https://github.com/nodejs/node/commit/e339220511)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41322](https://github.com/nodejs/node/pull/41322) - \[[`d0d595f8f2`](https://github.com/nodejs/node/commit/d0d595f8f2)] - **meta**: update node-api team name (Richard Lau) [#&#8203;41268](https://github.com/nodejs/node/pull/41268) - \[[`a53fa2010b`](https://github.com/nodejs/node/commit/a53fa2010b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41248](https://github.com/nodejs/node/pull/41248) - \[[`edefb41ec1`](https://github.com/nodejs/node/commit/edefb41ec1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41234](https://github.com/nodejs/node/pull/41234) - \[[`6da7909797`](https://github.com/nodejs/node/commit/6da7909797)] - **meta**: remove community-committee from CODEOWNERS (Rich Trott) [#&#8203;41169](https://github.com/nodejs/node/pull/41169) - \[[`5fe011a24d`](https://github.com/nodejs/node/commit/5fe011a24d)] - **node-api**: add missing initialization of last error (Michael Dawson) [#&#8203;41290](https://github.com/nodejs/node/pull/41290) - \[[`27c619140a`](https://github.com/nodejs/node/commit/27c619140a)] - **(SEMVER-MINOR)** **perf_hooks**: multiple fixes for Histogram (James M Snell) [#&#8203;41153](https://github.com/nodejs/node/pull/41153) - \[[`e60187d8ab`](https://github.com/nodejs/node/commit/e60187d8ab)] - **policy**: add missing JSDoc [@&#8203;param](https://github.com/param) entry (Rich Trott) [#&#8203;41239](https://github.com/nodejs/node/pull/41239) - \[[`ec9071f55d`](https://github.com/nodejs/node/commit/ec9071f55d)] - **src**: use `std::optional` for Worker thread id (Anna Henningsen) [#&#8203;41453](https://github.com/nodejs/node/pull/41453) - \[[`6aec92f959`](https://github.com/nodejs/node/commit/6aec92f959)] - **src**: gracefully handle errors in GetX509NameObject (Tobias Nießen) [#&#8203;41490](https://github.com/nodejs/node/pull/41490) - \[[`7ac126b75c`](https://github.com/nodejs/node/commit/7ac126b75c)] - **src**: fix out-of-bounds check of serialization indices (JoostK) [#&#8203;41452](https://github.com/nodejs/node/pull/41452) - \[[`93b3664b9a`](https://github.com/nodejs/node/commit/93b3664b9a)] - **src**: do IWYU for some STL includes (David Sanders) [#&#8203;41236](https://github.com/nodejs/node/pull/41236) - \[[`337ebfcd53`](https://github.com/nodejs/node/commit/337ebfcd53)] - **src**: split out async stack corruption detection from inline fn (Anna Henningsen) [#&#8203;41331](https://github.com/nodejs/node/pull/41331) - \[[`250e197a62`](https://github.com/nodejs/node/commit/250e197a62)] - **src**: store native async execution resources as `v8::Local` (Anna Henningsen) [#&#8203;41331](https://github.com/nodejs/node/pull/41331) - \[[`6187e81a8e`](https://github.com/nodejs/node/commit/6187e81a8e)] - **src**: guard slightly costly check in MakeCallback more strongly (Anna Henningsen) [#&#8203;41331](https://github.com/nodejs/node/pull/41331) - \[[`51d86fe6a0`](https://github.com/nodejs/node/commit/51d86fe6a0)] - **stream**: remove always-false condition check (Rich Trott) [#&#8203;41488](https://github.com/nodejs/node/pull/41488) - \[[`b08138f367`](https://github.com/nodejs/node/commit/b08138f367)] - **stream**: fix error-path function call (Rich Trott) [#&#8203;41433](https://github.com/nodejs/node/pull/41433) - \[[`d79f8c2987`](https://github.com/nodejs/node/commit/d79f8c2987)] - **stream**: remove unused function argument (Rich Trott) [#&#8203;41403](https://github.com/nodejs/node/pull/41403) - \[[`09c25bb224`](https://github.com/nodejs/node/commit/09c25bb224)] - **(SEMVER-MINOR)** **stream**: add filter method to readable (Benjamin Gruenbaum) [#&#8203;41354](https://github.com/nodejs/node/pull/41354) - \[[`1150963217`](https://github.com/nodejs/node/commit/1150963217)] - **(SEMVER-MINOR)** **stream**: add isReadable helper (Robert Nagy) [#&#8203;41199](https://github.com/nodejs/node/pull/41199) - \[[`9f5a873965`](https://github.com/nodejs/node/commit/9f5a873965)] - **(SEMVER-MINOR)** **stream**: add map method to Readable (Benjamin Gruenbaum) [#&#8203;40815](https://github.com/nodejs/node/pull/40815) - \[[`3dc65646c8`](https://github.com/nodejs/node/commit/3dc65646c8)] - **stream**: fix enqueue race condition on esm modules (Rafael Gonzaga) [#&#8203;40901](https://github.com/nodejs/node/pull/40901) - \[[`09f2fd36a4`](https://github.com/nodejs/node/commit/09f2fd36a4)] - **test**: improve test coverage of dns/promises (Yoshiki Kurihara) [#&#8203;41425](https://github.com/nodejs/node/pull/41425) - \[[`106ef0cef4`](https://github.com/nodejs/node/commit/106ef0cef4)] - **test**: remove broken wiki link from test/common doc (Yoshiki Kurihara) [#&#8203;41426](https://github.com/nodejs/node/pull/41426) - \[[`9d8d7c63cb`](https://github.com/nodejs/node/commit/9d8d7c63cb)] - **test**: do not OR F_OK in fs.access() test (Colin Ihrig) [#&#8203;41484](https://github.com/nodejs/node/pull/41484) - \[[`3e2154deda`](https://github.com/nodejs/node/commit/3e2154deda)] - **test**: mark test-performance-eventloopdelay flaky (Michael Dawson) [#&#8203;41409](https://github.com/nodejs/node/pull/41409) - \[[`e808ee68d0`](https://github.com/nodejs/node/commit/e808ee68d0)] - **test**: mark test-repl-sigint-nested-eval as flaky (Michael Dawson) [#&#8203;41302](https://github.com/nodejs/node/pull/41302) - \[[`f97f6c585d`](https://github.com/nodejs/node/commit/f97f6c585d)] - **test**: use spawnSync() full name in test-stdio-pipe-stderr (Rich Trott) [#&#8203;41332](https://github.com/nodejs/node/pull/41332) - \[[`75c565bf18`](https://github.com/nodejs/node/commit/75c565bf18)] - **test**: improve expectWarning error message (Rich Trott) [#&#8203;41326](https://github.com/nodejs/node/pull/41326) - \[[`c136d597f0`](https://github.com/nodejs/node/commit/c136d597f0)] - **test**: use spawnSync() full name (Rich Trott) [#&#8203;41327](https://github.com/nodejs/node/pull/41327) - \[[`b2a87f770d`](https://github.com/nodejs/node/commit/b2a87f770d)] - **test**: add comments explaining \_setSimultaneousAccepts deprecation tests (Yoshiki Kurihara) [#&#8203;41307](https://github.com/nodejs/node/pull/41307) - \[[`fac0871102`](https://github.com/nodejs/node/commit/fac0871102)] - **test**: mark test-worker-take-heapsnapshot flaky (Michael Dawson) [#&#8203;41253](https://github.com/nodejs/node/pull/41253) - \[[`90617b9303`](https://github.com/nodejs/node/commit/90617b9303)] - **test**: mark wpt/test-user-timing test flaky (Michael Dawson) [#&#8203;41203](https://github.com/nodejs/node/pull/41203) - \[[`8f08328a01`](https://github.com/nodejs/node/commit/8f08328a01)] - **test**: correct param name in JSDoc comment (Rich Trott) [#&#8203;41241](https://github.com/nodejs/node/pull/41241) - \[[`367ab2a55e`](https://github.com/nodejs/node/commit/367ab2a55e)] - **test**: mark test-crypto-keygen slow on windows (Michael Dawson) [#&#8203;41207](https://github.com/nodejs/node/pull/41207) - \[[`f067876338`](https://github.com/nodejs/node/commit/f067876338)] - **test**: improve test coverage of dns/promises (Yoshiki Kurihara) [#&#8203;41133](https://github.com/nodejs/node/pull/41133) - \[[`2e92f6f5d9`](https://github.com/nodejs/node/commit/2e92f6f5d9)] - **timers**: use ref counts to count timers (Darshan Sen) [#&#8203;41231](https://github.com/nodejs/node/pull/41231) - \[[`3c8b25bec8`](https://github.com/nodejs/node/commit/3c8b25bec8)] - **tls**: use optional chaining to simplify checks (Antoine du Hamel) [#&#8203;41337](https://github.com/nodejs/node/pull/41337) - \[[`a11ff31bca`](https://github.com/nodejs/node/commit/a11ff31bca)] - **tls**: permit null as a pfx value (CallMeLaNN) [#&#8203;41170](https://github.com/nodejs/node/pull/41170) - \[[`5129b7c802`](https://github.com/nodejs/node/commit/5129b7c802)] - **tools**: fix small not-quite-a-bug in find-inactive-tsc.mjs (Rich Trott) [#&#8203;41469](https://github.com/nodejs/node/pull/41469) - \[[`258ee4ba64`](https://github.com/nodejs/node/commit/258ee4ba64)] - **tools**: enable ESLint recommended configuration (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463) - \[[`090a674a81`](https://github.com/nodejs/node/commit/090a674a81)] - **tools**: enable ESLint no-constant-condition rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463) - \[[`1f4369a106`](https://github.com/nodejs/node/commit/1f4369a106)] - **tools**: enable ESLint require-yield rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463) - \[[`8090ce7a6c`](https://github.com/nodejs/node/commit/8090ce7a6c)] - **tools**: enable ESLint no-sparse-arrays rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463) - \[[`afa4f37faf`](https://github.com/nodejs/node/commit/afa4f37faf)] - **tools**: enable ESLint no-loss-of-precision rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463) - \[[`ec337b2019`](https://github.com/nodejs/node/commit/ec337b2019)] - **tools**: replace for loop with map() (Rich Trott) [#&#8203;41451](https://github.com/nodejs/node/pull/41451) - \[[`c91ac205a5`](https://github.com/nodejs/node/commit/c91ac205a5)] - **tools**: use GITHUB_ACTIONS env var in inactivity scripts (Rich Trott) [#&#8203;41422](https://github.com/nodejs/node/pull/41422) - \[[`4a57d476a8`](https://github.com/nodejs/node/commit/4a57d476a8)] - **tools**: replace while+exec() with matchAll() (Rich Trott) [#&#8203;41406](https://github.com/nodejs/node/pull/41406) - \[[`583f8d969a`](https://github.com/nodejs/node/commit/583f8d969a)] - **tools**: fix argv bug in find-inactive-tsc.mjs (Rich Trott) [#&#8203;41394](https://github.com/nodejs/node/pull/41394) - \[[`dcada80f30`](https://github.com/nodejs/node/commit/dcada80f30)] - **tools**: remove conditional assignment in custom ESLint rule (Rich Trott) [#&#8203;41325](https://github.com/nodejs/node/pull/41325) - \[[`e15e1cb030`](https://github.com/nodejs/node/commit/e15e1cb030)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;13](https://github.com/13).1.2 (Node.js GitHub Bot) [#&#8203;41369](https://github.com/nodejs/node/pull/41369) - \[[`07683021b7`](https://github.com/nodejs/node/commit/07683021b7)] - **tools**: update doc to rehype-raw@6.1.1 (Node.js GitHub Bot) [#&#8203;41367](https://github.com/nodejs/node/pull/41367) - \[[`bd8b95a5e8`](https://github.com/nodejs/node/commit/bd8b95a5e8)] - **tools**: remove last of error-masking in commit-queue.sh (Rich Trott) [#&#8203;41356](https://github.com/nodejs/node/pull/41356) - \[[`9284d24df6`](https://github.com/nodejs/node/commit/9284d24df6)] - **tools**: update eslint to 8.6.0 (Node.js GitHub Bot) [#&#8203;41368](https://github.com/nodejs/node/pull/41368) - \[[`5fc886f68e`](https://github.com/nodejs/node/commit/5fc886f68e)] - **tools**: do not mask errors on multiple commit retrieval (Rich Trott) [#&#8203;41340](https://github.com/nodejs/node/pull/41340) - \[[`0ca7cda962`](https://github.com/nodejs/node/commit/0ca7cda962)] - **tools**: enable jsdoc/check-param-names lint rule (Rich Trott) [#&#8203;41311](https://github.com/nodejs/node/pull/41311) - \[[`75ff8e6505`](https://github.com/nodejs/node/commit/75ff8e6505)] - **tools**: improve section tag additions in HTML doc generator (Rich Trott) [#&#8203;41318](https://github.com/nodejs/node/pull/41318) - \[[`9c4124706e`](https://github.com/nodejs/node/commit/9c4124706e)] - **tools**: simplify commit-queue.sh merge command (Rich Trott) [#&#8203;41314](https://github.com/nodejs/node/pull/41314) - \[[`137c814848`](https://github.com/nodejs/node/commit/137c814848)] - **tools**: update lint-md-dependencies to rollup@2.62.0 (Node.js GitHub Bot) [#&#8203;41315](https://github.com/nodejs/node/pull/41315) - \[[`58da5d9b43`](https://github.com/nodejs/node/commit/58da5d9b43)] - **tools**: use Object.hasOwn() in alljson.mjs (Rich Trott) [#&#8203;41306](https://github.com/nodejs/node/pull/41306) - \[[`c12cbf2020`](https://github.com/nodejs/node/commit/c12cbf2020)] - **tools**: avoid generating duplicate id attributes (Rich Trott) [#&#8203;41291](https://github.com/nodejs/node/pull/41291) - \[[`80a114d1b7`](https://github.com/nodejs/node/commit/80a114d1b7)] - **tools**: be intentional about masking possible error in start-ci.sh (Rich Trott) [#&#8203;41284](https://github.com/nodejs/node/pull/41284) - \[[`198528426d`](https://github.com/nodejs/node/commit/198528426d)] - **tools**: use {N} for spaces in regex (Rich Trott) [#&#8203;41295](https://github.com/nodejs/node/pull/41295) - \[[`46b364a684`](https://github.com/nodejs/node/commit/46b364a684)] - **tools**: consolidate update-authors.js logic (Rich Trott) [#&#8203;41255](https://github.com/nodejs/node/pull/41255) - \[[`c546cef4bc`](https://github.com/nodejs/node/commit/c546cef4bc)] - **tools**: update doc dependency mdast-util-gfm-table to 1.0.2 (Rich Trott) [#&#8203;41260](https://github.com/nodejs/node/pull/41260) - \[[`60c059e4bc`](https://github.com/nodejs/node/commit/60c059e4bc)] - **tools**: make license-builder.sh comply with shellcheck 0.8.0 (Rich Trott) [#&#8203;41258](https://github.com/nodejs/node/pull/41258) - \[[`62e28f19f7`](https://github.com/nodejs/node/commit/62e28f19f7)] - **tools**: use arrow function for callback in lint-sh.js (Rich Trott) [#&#8203;41256](https://github.com/nodejs/node/pull/41256) - \[[`e2df381da9`](https://github.com/nodejs/node/commit/e2df381da9)] - **tools**: add double-quotes to make-v8.sh (Rich Trott) [#&#8203;41257](https://github.com/nodejs/node/pull/41257) - \[[`dae2e5fffa`](https://github.com/nodejs/node/commit/dae2e5fffa)] - **tools**: enable prefer-object-has-own lint rule (Rich Trott) [#&#8203;41245](https://github.com/nodejs/node/pull/41245) - \[[`aa7d14768d`](https://github.com/nodejs/node/commit/aa7d14768d)] - **tools**: update eslint to 8.5.0 (Node.js GitHub Bot) [#&#8203;41228](https://github.com/nodejs/node/pull/41228) - \[[`0c14e7e7c8`](https://github.com/nodejs/node/commit/0c14e7e7c8)] - **tools**: enable jsdoc/tag-lines ESLint rule (Rich Trott) [#&#8203;41147](https://github.com/nodejs/node/pull/41147) - \[[`c486da1715`](https://github.com/nodejs/node/commit/c486da1715)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;13](https://github.com/13).1.1 (Node.js GitHub Bot) [#&#8203;41227](https://github.com/nodejs/node/pull/41227) - \[[`82f492bbb0`](https://github.com/nodejs/node/commit/82f492bbb0)] - **tools**: fix CQ and auto-start-ci jobs (Antoine du Hamel) [#&#8203;41230](https://github.com/nodejs/node/pull/41230) - \[[`c44185ca37`](https://github.com/nodejs/node/commit/c44185ca37)] - **tools**: fix GitHub Actions status when CQ is empty (Antoine du Hamel) [#&#8203;41193](https://github.com/nodejs/node/pull/41193) - \[[`800640adf9`](https://github.com/nodejs/node/commit/800640adf9)] - **tools,benchmark,lib,test**: enable no-case-declarations lint rule (Rich Trott) [#&#8203;41385](https://github.com/nodejs/node/pull/41385) - \[[`4518fdda24`](https://github.com/nodejs/node/commit/4518fdda24)] - **tools,lib,test**: enable ESLint no-regex-spaces rule (Rich Trott) [#&#8203;41463](https://github.com/nodejs/node/pull/41463) - \[[`c8e8fc0ecb`](https://github.com/nodejs/node/commit/c8e8fc0ecb)] - **typings**: add types for symbol and accessor properties on `primordials` (ExE Boss) [#&#8203;40992](https://github.com/nodejs/node/pull/40992) - \[[`d733b56101`](https://github.com/nodejs/node/commit/d733b56101)] - **typings**: add JSDoc for `string_decoder` (Qingyu Deng) [#&#8203;38229](https://github.com/nodejs/node/pull/38229) - \[[`01ad8debd3`](https://github.com/nodejs/node/commit/01ad8debd3)] - **url,lib**: pass urlsearchparams-constructor.any.js (Khaidi Chu) [#&#8203;41197](https://github.com/nodejs/node/pull/41197) - \[[`5ed8a1c017`](https://github.com/nodejs/node/commit/5ed8a1c017)] - **util**: do not reduce to a single line if not appropriate using inspect (Ruben Bridgewater) [#&#8203;41083](https://github.com/nodejs/node/pull/41083) - \[[`ab5e94c832`](https://github.com/nodejs/node/commit/ab5e94c832)] - **util**: display a present-but-undefined error cause (Jordan Harband) [#&#8203;41247](https://github.com/nodejs/node/pull/41247) ### [`v17.3.1`](https://github.com/nodejs/node/releases/v17.3.1) [Compare Source](https://github.com/nodejs/node/compare/v17.3.0...v17.3.1) This is a security release. ##### Notable changes ##### Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531) Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI is specifically defined to use a particular SAN type, can result in bypassing name-constrained intermediates. Node.js was accepting URI SAN types, which PKIs are often not defined to use. Additionally, when a protocol allows URI SANs, Node.js did not match the URI correctly. Versions of Node.js with the fix for this disable the URI SAN type when checking a certificate against a hostname. This behavior can be reverted through the `--security-revert` command-line option. More details will be available at [CVE-2021-44531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531) after publication. ##### Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532) Node.js converts SANs (Subject Alternative Names) to a string format. It uses this string to check peer certificates against hostnames when validating connections. The string format was subject to an injection vulnerability when name constraints were used within a certificate chain, allowing the bypass of these name constraints. Versions of Node.js with the fix for this escape SANs containing the problematic characters in order to prevent the injection. This behavior can be reverted through the `--security-revert` command-line option. More details will be available at [CVE-2021-44532](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532) after publication. ##### Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533) Node.js did not handle multi-value Relative Distinguished Names correctly. Attackers could craft certificate subjects containing a single-value Relative Distinguished Name that would be interpreted as a multi-value Relative Distinguished Name, for example, in order to inject a Common Name that would allow bypassing the certificate subject verification. Affected versions of Node.js do not accept multi-value Relative Distinguished Names and are thus not vulnerable to such attacks themselves. However, third-party code that uses node's ambiguous presentation of certificate subjects may be vulnerable. More details will be available at [CVE-2021-44533](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533) after publication. ##### Prototype pollution via `console.table` properties (Low)(CVE-2022-21824) Due to the formatting logic of the `console.table()` function it was not safe to allow user controlled input to be passed to the `properties` parameter while simultaneously passing a plain object with at least one property as the first parameter, which could be `__proto__`. The prototype pollution has very limited control, in that it only allows an empty string to be assigned numerical keys of the object prototype. Versions of Node.js with the fix for this use a null protoype for the object these properties are being assigned to. More details will be available at [CVE-2022-21824](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824) after publication. Thanks to Patrik Oldsberg (rugvip) for reporting this vulnerability. ##### Commits - \[[`2a0515f73c`](https://github.com/nodejs/node/commit/2a0515f73c)] - **console**: fix prototype pollution via console.table (Tobias Nießen) [nodejs-private/node-private#&#8203;307](https://github.com/nodejs-private/node-private/pull/307) - \[[`2e2c45553d`](https://github.com/nodejs/node/commit/2e2c45553d)] - **crypto,tls**: implement safe x509 GeneralName format (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300) - \[[`df3141f59b`](https://github.com/nodejs/node/commit/df3141f59b)] - **src**: add cve reverts and associated tests (Michael Dawson) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300) - \[[`5398548746`](https://github.com/nodejs/node/commit/5398548746)] - **src**: remove unused x509 functions (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300) - \[[`1f7fdff64a`](https://github.com/nodejs/node/commit/1f7fdff64a)] - **tls**: fix handling of x509 subject and issuer (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300) - \[[`b11b4cc69d`](https://github.com/nodejs/node/commit/b11b4cc69d)] - **tls**: drop support for URI alternative names (Tobias Nießen) [nodejs-private/node-private#&#8203;300](https://github.com/nodejs-private/node-private/pull/300) ### [`v17.3.0`](https://github.com/nodejs/node/releases/v17.3.0) [Compare Source](https://github.com/nodejs/node/compare/v17.2.0...v17.3.0) ##### Notable changes ##### OpenSSL-3.0.1 OpenSSL-3.0.1 contains a fix for CVE-2021-4044: Invalid handling of X509\_verify_cert() internal errors in libssl (Moderate). This is a vulnerability in OpenSSL that may be exploited through Node.js. More information can be read here: <https://www.openssl.org/news/secadv/20211214.txt>. Contributed by Richard Lau [#&#8203;41177](https://github.com/nodejs/node/pull/41177). ##### Other Notable Changes - **lib**: - make AbortSignal cloneable/transferable (James M Snell) [#&#8203;41050](https://github.com/nodejs/node/pull/41050) - **deps**: - upgrade npm to 8.3.0 (npm team) [#&#8203;41127](https://github.com/nodejs/node/pull/41127) - **doc**: - add [@&#8203;bnb](https://github.com/bnb) as a collaborator (Tierney Cyren) [#&#8203;41100](https://github.com/nodejs/node/pull/41100) - **process**: - add `getActiveResourcesInfo()` (Darshan Sen) [#&#8203;40813](https://github.com/nodejs/node/pull/40813) - **timers**: - add experimental scheduler api (James M Snell) [#&#8203;40909](https://github.com/nodejs/node/pull/40909) ##### Commits - \[[`99fb6d48eb`](https://github.com/nodejs/node/commit/99fb6d48eb)] - **assert**: prefer reference comparison over string comparison (Darshan Sen) [#&#8203;41015](https://github.com/nodejs/node/pull/41015) - \[[`a7dfa43dc7`](https://github.com/nodejs/node/commit/a7dfa43dc7)] - **assert**: use stricter stack frame detection in .ifError() (Ruben Bridgewater) [#&#8203;41006](https://github.com/nodejs/node/pull/41006) - \[[`28761de6d4`](https://github.com/nodejs/node/commit/28761de6d4)] - **buffer**: fix `Blob` constructor on various `TypedArray`s (Irakli Gozalishvili) [#&#8203;40706](https://github.com/nodejs/node/pull/40706) - \[[`8fcb71a5ab`](https://github.com/nodejs/node/commit/8fcb71a5ab)] - **build**: update openssl config generator Dockerfile (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177) - \[[`3a9ffa86db`](https://github.com/nodejs/node/commit/3a9ffa86db)] - **build**: use '<(python)' instead of 'python' (Cheng Zhao) [#&#8203;41146](https://github.com/nodejs/node/pull/41146) - \[[`85f1537c28`](https://github.com/nodejs/node/commit/85f1537c28)] - **build**: fix comment-labeled workflow (Mestery) [#&#8203;41176](https://github.com/nodejs/node/pull/41176) - \[[`61c53a667a`](https://github.com/nodejs/node/commit/61c53a667a)] - **build**: use gh cli in workflows file (Mestery) [#&#8203;40985](https://github.com/nodejs/node/pull/40985) - \[[`1fc6fd66ff`](https://github.com/nodejs/node/commit/1fc6fd66ff)] - **build**: fix commit-queue-rebase functionality (Rich Trott) [#&#8203;41140](https://github.com/nodejs/node/pull/41140) - \[[`831face7d1`](https://github.com/nodejs/node/commit/831face7d1)] - **build**: skip documentation generation if no ICU (Rich Trott) [#&#8203;41091](https://github.com/nodejs/node/pull/41091) - \[[`c776c9236e`](https://github.com/nodejs/node/commit/c776c9236e)] - **build**: re-enable V8 concurrent marking (Michaël Zasso) [#&#8203;41013](https://github.com/nodejs/node/pull/41013) - \[[`2125449f89`](https://github.com/nodejs/node/commit/2125449f89)] - **build**: add `--without-corepack` (Jonah Snider) [#&#8203;41060](https://github.com/nodejs/node/pull/41060) - \[[`6327685363`](https://github.com/nodejs/node/commit/6327685363)] - **build**: fail early in test-macos.yml (Rich Trott) [#&#8203;41035](https://github.com/nodejs/node/pull/41035) - \[[`ee4186b305`](https://github.com/nodejs/node/commit/ee4186b305)] - **build**: add tools/doc to tools.yml updates (Rich Trott) [#&#8203;41036](https://github.com/nodejs/node/pull/41036) - \[[`db30bc97d0`](https://github.com/nodejs/node/commit/db30bc97d0)] - **build**: update Actions versions (Mestery) [#&#8203;40987](https://github.com/nodejs/node/pull/40987) - \[[`db9cef3c4f`](https://github.com/nodejs/node/commit/db9cef3c4f)] - **build**: set persist-credentials: false on workflows (Rich Trott) [#&#8203;40972](https://github.com/nodejs/node/pull/40972) - \[[`29739f813f`](https://github.com/nodejs/node/commit/29739f813f)] - **build**: add OpenSSL gyp artifacts to .gitignore (Luigi Pinca) [#&#8203;40967](https://github.com/nodejs/node/pull/40967) - \[[`1b8baf0e4f`](https://github.com/nodejs/node/commit/1b8baf0e4f)] - **build**: remove legacy -J test.py option from Makefile/vcbuild (Rich Trott) [#&#8203;40945](https://github.com/nodejs/node/pull/40945) - \[[`5c27ec8385`](https://github.com/nodejs/node/commit/5c27ec8385)] - **build**: ignore unrelated workflow changes in slow Actions tests (Rich Trott) [#&#8203;40928](https://github.com/nodejs/node/pull/40928) - \[[`8957c9bd1c`](https://github.com/nodejs/node/commit/8957c9bd1c)] - **build,tools**: automate enforcement of emeritus criteria (Rich Trott) [#&#8203;41155](https://github.com/nodejs/node/pull/41155) - \[[`e924dc7982`](https://github.com/nodejs/node/commit/e924dc7982)] - **cluster**: use linkedlist for round_robin_handle (twchn) [#&#8203;40615](https://github.com/nodejs/node/pull/40615) - \[[`c757fa513e`](https://github.com/nodejs/node/commit/c757fa513e)] - **crypto**: add missing null check (Michael Dawson) [#&#8203;40598](https://github.com/nodejs/node/pull/40598) - \[[`35fe14454b`](https://github.com/nodejs/node/commit/35fe14454b)] - **deps**: update archs files for quictls/openssl-3.0.1+quic (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177) - \[[`0b2103419f`](https://github.com/nodejs/node/commit/0b2103419f)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.1+quic (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177) - \[[`fae4945ab3`](https://github.com/nodejs/node/commit/fae4945ab3)] - **deps**: upgrade npm to 8.3.0 (npm team) [#&#8203;41127](https://github.com/nodejs/node/pull/41127) - \[[`3a1d952e68`](https://github.com/nodejs/node/commit/3a1d952e68)] - **deps**: upgrade npm to 8.2.0 (npm team) [#&#8203;41065](https://github.com/nodejs/node/pull/41065) - \[[`627b5bb718`](https://github.com/nodejs/node/commit/627b5bb718)] - **deps**: update Acorn to v8.6.0 (Michaël Zasso) [#&#8203;40993](https://github.com/nodejs/node/pull/40993) - \[[`a2fb12f9c6`](https://github.com/nodejs/node/commit/a2fb12f9c6)] - **deps**: patch V8 to 9.6.180.15 (Michaël Zasso) [#&#8203;40949](https://github.com/nodejs/node/pull/40949) - \[[`93111e4662`](https://github.com/nodejs/node/commit/93111e4662)] - **doc**: fix closing parenthesis (AlphaDio) [#&#8203;41190](https://github.com/nodejs/node/pull/41190) - \[[`f883bf3d12`](https://github.com/nodejs/node/commit/f883bf3d12)] - **doc**: add security steward on/offboarding steps (Michael Dawson) [#&#8203;41129](https://github.com/nodejs/node/pull/41129) - \[[`1274a25b14`](https://github.com/nodejs/node/commit/1274a25b14)] - **doc**: align module resolve algorithm with implementation (Qingyu Deng) [#&#8203;38837](https://github.com/nodejs/node/pull/38837) - \[[`34c6c59014`](https://github.com/nodejs/node/commit/34c6c59014)] - **doc**: update nodejs-sec managers (Michael Dawson) [#&#8203;41128](https://github.com/nodejs/node/pull/41128) - \[[`db26bdb011`](https://github.com/nodejs/node/commit/db26bdb011)] - **doc**: move style guide to findable location (Rich Trott) [#&#8203;41119](https://github.com/nodejs/node/pull/41119) - \[[`4369c6d9f6`](https://github.com/nodejs/node/commit/4369c6d9f6)] - **doc**: fix comments in test-fs-watch.js (jakub-g) [#&#8203;41046](https://github.com/nodejs/node/pull/41046) - \[[`93f5bd34e9`](https://github.com/nodejs/node/commit/93f5bd34e9)] - **doc**: document support building with Python 3.10 on Windows (Christian Clauss) [#&#8203;41098](https://github.com/nodejs/node/pull/41098) - \[[`d8fa227c26`](https://github.com/nodejs/node/commit/d8fa227c26)] - **doc**: add note about pip being required (Piotr Rybak) [#&#8203;40669](https://github.com/nodejs/node/pull/40669) - \[[`95691801f3`](https://github.com/nodejs/node/commit/95691801f3)] - **doc**: remove OpenJSF Slack nodejs from support doc (Rich Trott) [#&#8203;41108](https://github.com/nodejs/node/pull/41108) - \[[`e3ac384d78`](https://github.com/nodejs/node/commit/e3ac384d78)] - **doc**: simplify major release preparation (Bethany Nicolle Griggs) [#&#8203;40816](https://github.com/nodejs/node/pull/40816) - \[[`3406910040`](https://github.com/nodejs/node/commit/3406910040)] - **doc**: clarify escaping for ES modules (notroid5) [#&#8203;41074](https://github.com/nodejs/node/pull/41074) - \[[`668284b5a1`](https://github.com/nodejs/node/commit/668284b5a1)] - **doc**: add [@&#8203;bnb](https://github.com/bnb) as a collaborator (Tierney Cyren) [#&#8203;41100](https://github.com/nodejs/node/pull/41100) - \[[`94d09113a2`](https://github.com/nodejs/node/commit/94d09113a2)] - **doc**: add explicit declaration of fd with null val (Henadzi) [#&#8203;40704](https://github.com/nodejs/node/pull/40704) - \[[`b353ded677`](https://github.com/nodejs/node/commit/b353ded677)] - **doc**: expand entries for isIP(), isIPv4(), and isIPv6() (Rich Trott) [#&#8203;41028](https://github.com/nodejs/node/pull/41028) - \[[`f18aa14b1d`](https://github.com/nodejs/node/commit/f18aa14b1d)] - **doc**: link to commit queue guide (Geoffrey Booth) [#&#8203;41030](https://github.com/nodejs/node/pull/41030) - \[[`681edbe75f`](https://github.com/nodejs/node/commit/681edbe75f)] - **doc**: specify that `message.socket` can be nulled (Luigi Pinca) [#&#8203;41014](https://github.com/nodejs/node/pull/41014) - \[[`7c41f32f06`](https://github.com/nodejs/node/commit/7c41f32f06)] - **doc**: fix JSDoc in ESM loaders examples (Mestery) [#&#8203;40984](https://github.com/nodejs/node/pull/40984) - \[[`61b2e2ef9e`](https://github.com/nodejs/node/commit/61b2e2ef9e)] - **doc**: remove legacy -J test.py option from BUILDING.md (Rich Trott) [#&#8203;40945](https://github.com/nodejs/node/pull/40945) - \[[`c9b09d124e`](https://github.com/nodejs/node/commit/c9b09d124e)] - **doc,lib,tools**: align multiline comments (Rich Trott) [#&#8203;41109](https://github.com/nodejs/node/pull/41109) - \[[`12023dff4b`](https://github.com/nodejs/node/commit/12023dff4b)] - **(SEMVER-MINOR)** **errors**: add support for cause in aborterror (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`b0b7943e8f`](https://github.com/nodejs/node/commit/b0b7943e8f)] - **(SEMVER-MINOR)** **esm**: working mock test (Bradley Farias) [#&#8203;39240](https://github.com/nodejs/node/pull/39240) - \[[`37dbc3b9e9`](https://github.com/nodejs/node/commit/37dbc3b9e9)] - **(SEMVER-MINOR)** **events**: propagate abortsignal reason in new AbortError ctor in events (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`1b8d4e4867`](https://github.com/nodejs/node/commit/1b8d4e4867)] - **(SEMVER-MINOR)** **events**: propagate weak option for kNewListener (James M Snell) [#&#8203;40899](https://github.com/nodejs/node/pull/40899) - \[[`bbdcd0513b`](https://github.com/nodejs/node/commit/bbdcd0513b)] - **(SEMVER-MINOR)** **fs**: accept URL as argument for `fs.rm` and `fs.rmSync` (Antoine du Hamel) [#&#8203;41132](https://github.com/nodejs/node/pull/41132) - \[[`46108f8d50`](https://github.com/nodejs/node/commit/46108f8d50)] - **fs**: fix error codes for `fs.cp` (Antoine du Hamel) [#&#8203;41106](https://github.com/nodejs/node/pull/41106) - \[[`e25671cddb`](https://github.com/nodejs/node/commit/e25671cddb)] - **fs**: fix `length` option being ignored during `read()` (Shinho Ahn) [#&#8203;40906](https://github.com/nodejs/node/pull/40906) - \[[`6eda874be0`](https://github.com/nodejs/node/commit/6eda874be0)] - **(SEMVER-MINOR)** **fs**: propagate abortsignal reason in new AbortSignal constructors (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`70ed4ef248`](https://github.com/nodejs/node/commit/70ed4ef248)] - **http**: don't write empty data on req/res end() (Santiago Gimeno) [#&#8203;41116](https://github.com/nodejs/node/pull/41116) - \[[`4b3bf7e818`](https://github.com/nodejs/node/commit/4b3bf7e818)] - **(SEMVER-MINOR)** **http2**: propagate abortsignal reason in new AbortError constructor (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`8d87303f76`](https://github.com/nodejs/node/commit/8d87303f76)] - **inspector**: add missing initialization (Michael Dawson) [#&#8203;41022](https://github.com/nodejs/node/pull/41022) - \[[`b191e66ddf`](https://github.com/nodejs/node/commit/b191e66ddf)] - **lib**: include return types in JSDoc (Rich Trott) [#&#8203;41130](https://github.com/nodejs/node/pull/41130) - \[[`348707fca6`](https://github.com/nodejs/node/commit/348707fca6)] - **(SEMVER-MINOR)** **lib**: make AbortSignal cloneable/transferable (James M Snell) [#&#8203;41050](https://github.com/nodejs/node/pull/41050) - \[[`4ba883d384`](https://github.com/nodejs/node/commit/4ba883d384)] - **(SEMVER-MINOR)** **lib**: add abortSignal.throwIfAborted() (James M Snell) [#&#8203;40951](https://github.com/nodejs/node/pull/40951) - \[[`cc3e430c11`](https://github.com/nodejs/node/commit/cc3e430c11)] - **lib**: use consistent types in JSDoc [@&#8203;returns](https://github.com/returns) (Rich Trott) [#&#8203;41089](https://github.com/nodejs/node/pull/41089) - \[[`a1ed7f2810`](https://github.com/nodejs/node/commit/a1ed7f2810)] - **(SEMVER-MINOR)** **lib**: propagate abortsignal reason in new AbortError constructor in blob (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`1572db3e86`](https://github.com/nodejs/node/commit/1572db3e86)] - **lib**: do not lazy load EOL in blob (Ruben Bridgewater) [#&#8203;41004](https://github.com/nodejs/node/pull/41004) - \[[`62c4b4c85b`](https://github.com/nodejs/node/commit/62c4b4c85b)] - **(SEMVER-MINOR)** **lib**: add AbortSignal.timeout (James M Snell) [#&#8203;40899](https://github.com/nodejs/node/pull/40899) - \[[`f0d874342d`](https://github.com/nodejs/node/commit/f0d874342d)] - **lib,test,tools**: use consistent JSDoc types (Rich Trott) [#&#8203;40989](https://github.com/nodejs/node/pull/40989) - \[[`03e6771137`](https://github.com/nodejs/node/commit/03e6771137)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;41154](https://github.com/nodejs/node/pull/41154) - \[[`e26c187b85`](https://github.com/nodejs/node/commit/e26c187b85)] - **meta**: move to emeritus automatically after 18 months (Rich Trott) [#&#8203;41155](https://github.com/nodejs/node/pull/41155) - \[[`b89fb3ef0a`](https://github.com/nodejs/node/commit/b89fb3ef0a)] - **meta**: move silverwind to emeriti (Roman Reiss) [#&#8203;41171](https://github.com/nodejs/node/pull/41171) - \[[`0fc148321f`](https://github.com/nodejs/node/commit/0fc148321f)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41144](https://github.com/nodejs/node/pull/41144) - \[[`d6d1d6647c`](https://github.com/nodejs/node/commit/d6d1d6647c)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;41088](https://github.com/nodejs/node/pull/41088) - \[[`f30d6bcaff`](https://github.com/nodejs/node/commit/f30d6bcaff)] - **meta**: move one or more TSC members to emeritus (Node.js GitHub Bot) [#&#8203;40908](https://github.com/nodejs/node/pull/40908) - \[[`033a646d82`](https://github.com/nodejs/node/commit/033a646d82)] - **meta**: increase security policy response targets (Matteo Collina) [#&#8203;40968](https://github.com/nodejs/node/pull/40968) - \[[`6b6e1d054e`](https://github.com/nodejs/node/commit/6b6e1d054e)] - **node-api,doc**: document parms which can be optional (Michael Dawson) [#&#8203;41021](https://github.com/nodejs/node/pull/41021) - \[[`93ea1666f6`](https://github.com/nodejs/node/commit/93ea1666f6)] - **perf_hooks**: use spec-compliant `structuredClone` (Michaël Zasso) [#&#8203;40904](https://github.com/nodejs/node/pull/40904) - \[[`d8a2125900`](https://github.com/nodejs/node/commit/d8a2125900)] - **(SEMVER-MINOR)** **process**: add `getActiveResourcesInfo()` (Darshan Sen) [#&#8203;40813](https://github.com/nodejs/node/pull/40813) - \[[`67124ac63a`](https://github.com/nodejs/node/commit/67124ac63a)] - **(SEMVER-MINOR)** **readline**: propagate signal.reason in awaitable question (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`8fac878ff5`](https://github.com/nodejs/node/commit/8fac878ff5)] - **readline**: skip escaping characters again (Ruben Bridgewater) [#&#8203;41005](https://github.com/nodejs/node/pull/41005) - \[[`d3de937782`](https://github.com/nodejs/node/commit/d3de937782)] - **src**: fix limit calculation (Michael Dawson) [#&#8203;41026](https://github.com/nodejs/node/pull/41026) - \[[`6f0ec9835a`](https://github.com/nodejs/node/commit/6f0ec9835a)] - **src**: use a higher limit in the NearHeapLimitCallback (Joyee Cheung) [#&#8203;41041](https://github.com/nodejs/node/pull/41041) - \[[`90097ab891`](https://github.com/nodejs/node/commit/90097ab891)] - **src,crypto**: remove uses of `AllocatedBuffer` from `crypto_sig` (Darshan Sen) [#&#8203;40895](https://github.com/nodejs/node/pull/40895) - \[[`b59c513c31`](https://github.com/nodejs/node/commit/b59c513c31)] - **stream**: add isErrored helper (Robert Nagy) [#&#8203;41121](https://github.com/nodejs/node/pull/41121) - \[[`1787bfab68`](https://github.com/nodejs/node/commit/1787bfab68)] - **stream**: allow readable to end early without error (Robert Nagy) [#&#8203;40881](https://github.com/nodejs/node/pull/40881) - \[[`01e8c15c8a`](https://github.com/nodejs/node/commit/01e8c15c8a)] - **(SEMVER-MINOR)** **stream**: use cause options in AbortError constructors (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`0e21c64ae9`](https://github.com/nodejs/node/commit/0e21c64ae9)] - **stream**: remove whatwg streams experimental warning (James M Snell) [#&#8203;40971](https://github.com/nodejs/node/pull/40971) - \[[`513305c7d7`](https://github.com/nodejs/node/commit/513305c7d7)] - **stream**: cleanup eos (Robert Nagy) [#&#8203;40998](https://github.com/nodejs/node/pull/40998) - \[[`da8baf4bbb`](https://github.com/nodejs/node/commit/da8baf4bbb)] - **test**: do not load absolute path crypto engines twice (Richard Lau) [#&#8203;41177](https://github.com/nodejs/node/pull/41177) - \[[`1f6a9c3e31`](https://github.com/nodejs/node/commit/1f6a9c3e31)] - **test**: skip ESLint tests if no Intl (Rich Trott) [#&#8203;41105](https://github.com/nodejs/node/pull/41105) - \[[`ce656a80b5`](https://github.com/nodejs/node/commit/ce656a80b5)] - **test**: add missing JSDoc parameter name (Rich Trott) [#&#8203;41057](https://github.com/nodejs/node/pull/41057) - \[[`fb8f2e9643`](https://github.com/nodejs/node/commit/fb8f2e9643)] - **test**: deflake test-trace-atomics-wait (Luigi Pinca) [#&#8203;41018](https://github.com/nodejs/node/pull/41018) - \[[`de1748aca4`](https://github.com/nodejs/node/commit/de1748aca4)] - **test**: add auth option case for url.format (Hirotaka Tagawa / wafuwafu13) [#&#8203;40516](https://github.com/nodejs/node/pull/40516) - \[[`943547a0eb`](https://github.com/nodejs/node/commit/943547a0eb)] - ***Revert*** "**test**: skip different params test for OpenSSL 3.x" (Daniel Bevenius) [#&#8203;40640](https://github.com/nodejs/node/pull/40640) - \[[`0caa3483d2`](https://github.com/nodejs/node/commit/0caa3483d2)] - **(SEMVER-MINOR)** **timers**: add experimental scheduler api (James M Snell) [#&#8203;40909](https://github.com/nodejs/node/pull/40909) - \[[`e795547651`](https://github.com/nodejs/node/commit/e795547651)] - **(SEMVER-MINOR)** **timers**: propagate signal.reason in awaitable timers (James M Snell) [#&#8203;41008](https://github.com/nodejs/node/pull/41008) - \[[`a77cae1ef7`](https://github.com/nodejs/node/commit/a77cae1ef7)] - **tls**: improve handling of shutdown (Jameson Nash) [#&#8203;36111](https://github.com/nodejs/node/pull/36111) - \[[`db410e7d3e`](https://github.com/nodejs/node/commit/db410e7d3e)] - **tools**: update doc to remark-rehype@10.1.0 (Node.js GitHub Bot) [#&#8203;41149](https://github.com/nodejs/node/pull/41149) - \[[`e3870f3f17`](https://github.com/nodejs/node/commit/e3870f3f17)] - **tools**: update lint-md-dependencies to rollup@2.61.1 vfile-reporter@7.0.3 (Node.js GitHub Bot) [#&#8203;41150](https://github.com/nodejs/node/pull/41150) - \[[`6fc92bd191`](https://github.com/nodejs/node/commit/6fc92bd191)] - **tools**: enable jsdoc/require-returns-type ESLint rule (Rich Trott) [#&#8203;41130](https://github.com/nodejs/node/pull/41130) - \[[`70e6fe860a`](https://github.com/nodejs/node/commit/70e6fe860a)] - **tools**: update ESLint to 8.4.1 (Rich Trott) [#&#8203;41114](https://github.com/nodejs/node/pull/41114) - \[[`78894fa888`](https://github.com/nodejs/node/commit/78894fa888)] - **tools**: enable JSDoc check-alignment lint rule (Rich Trott) [#&#8203;41109](https://github.com/nodejs/node/pull/41109) - \[[`40a773aa29`](https://github.com/nodejs/node/commit/40a773aa29)] - **tools**: strip comments from lint-md rollup output (Rich Trott) [#&#8203;41092](https://github.com/nodejs/node/pull/41092) - \[[`7b606cfef6`](https://github.com/nodejs/node/commit/7b606cfef6)] - **tools**: update highlight.js to 11.3.1 (Rich Trott) [#&#8203;41091](https://github.com/nodejs/node/pull/41091) - \[[`52633a9e95`](https://github.com/nodejs/node/commit/52633a9e95)] - **tools**: enable jsdoc/require-returns-check lint rule (Rich Trott) [#&#8203;41089](https://github.com/nodejs/node/pull/41089) - \[[`dc0405e7fb`](https://github.com/nodejs/node/commit/dc0405e7fb)] - **tools**: update ESLint to 8.4.0 (Luigi Pinca) [#&#8203;41085](https://github.com/nodejs/node/pull/41085) - \[[`855f15d059`](https://github.com/nodejs/node/commit/855f15d059)] - **tools**: enable jsdoc/require-param-name lint rule (Rich Trott) [#&#8203;41057](https://github.com/nodejs/node/pull/41057) - \[[`78265e095a`](https://github.com/nodejs/node/commit/78265e095a)] - **tools**: use jsdoc recommended rules (Rich Trott) [#&#8203;41057](https://github.com/nodejs/node/pull/41057) - \[[`9cfdf15da6`](https://github.com/nodejs/node/commit/9cfdf15da6)] - **tools**: rollback highlight.js (Richard Lau) [#&#8203;41078](https://github.com/nodejs/node/pull/41078) - \[[`fe3e09bb4b`](https://github.com/nodejs/node/commit/fe3e09bb4b)] - **tools**: remove Babel from license-builder.sh (Rich Trott) [#&#8203;41049](https://github.com/nodejs/node/pull/41049) - \[[`62e0aa9725`](https://github.com/nodejs/node/commit/62e0aa9725)] - **tools**: udpate packages in tools/doc (Rich Trott) [#&#8203;41036](https://github.com/nodejs/node/pull/41036) - \[[`a959f4fa72`](https://github.com/nodejs/node/commit/a959f4fa72)] - **tools**: install and enable JSDoc linting in ESLint (Rich Trott) [#&#8203;41027](https://github.com/nodejs/node/pull/41027) - \[[`661960e471`](https://github.com/nodejs/node/commit/661960e471)] - **tools**: include JSDoc in ESLint updating tool (Rich Trott) [#&#8203;41027](https://github.com/nodejs/node/pull/41027) - \[[`e2922714ee`](https://github.com/nodejs/node/commit/e2922714ee)] - **tools**: ignore unrelated workflow changes in slow Actions tests (Antoine du Hamel) [#&#8203;40990](https://github.com/nodejs/node/pull/40990) - \[[`6525226ff7`](https://github.com/nodejs/node/commit/6525226ff7)] - **tools**: remove unneeded tool in update-eslint.sh (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995) - \[[`5400b7963d`](https://github.com/nodejs/node/commit/5400b7963d)] - **tools**: consolidate ESLint dependencies (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995) - \[[`86d5af14bc`](https://github.com/nodejs/node/commit/86d5af14bc)] - **tools**: update ESLint update script to consolidate dependencies (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995) - \[[`8427099f66`](https://github.com/nodejs/node/commit/8427099f66)] - **tools**: run ESLint update to minimize diff on subsequent update (Rich Trott) [#&#8203;40995](https://github.com/nodejs/node/pull/40995) - \[[`82daaa9914`](https://github.com/nodejs/node/commit/82daaa9914)] - **tools,test**: make -J behavior default for test.py (Rich Trott) [#&#8203;40945](https://github.com/nodejs/node/pull/40945) - \[[`db77780cb9`](https://github.com/nodejs/node/commit/db77780cb9)] - **url**: detect hostname more reliably in url.parse() (Rich Trott) [#&#8203;41031](https://github.com/nodejs/node/pull/41031) - \[[`66b5083c1e`](https://github.com/nodejs/node/commit/66b5083c1e)] - **util**: serialize falsy cause values while inspecting errors (Ruben Bridgewater) [#&#8203;41097](https://github.com/nodejs/node/pull/41097) - \[[`09d29ca8d9`](https://github.com/nodejs/node/commit/09d29ca8d9)] - **util**: make sure error causes of any type may be inspected (Ruben Bridgewater) [#&#8203;41097](https://github.com/nodejs/node/pull/41097) - \[[`f5ff88b3cb`](https://github.com/nodejs/node/commit/f5ff88b3cb)] - **(SEMVER-MINOR)** **util**: pass through the inspect function to custom inspect functions (Ruben Bridgewater) [#&#8203;41019](https://github.com/nodejs/node/pull/41019) - \[[`a0326f0941`](https://github.com/nodejs/node/commit/a0326f0941)] - **util**: escape lone surrogate code points using .inspect() (Ruben Bridgewater) [#&#8203;41001](https://github.com/nodejs/node/pull/41001) - \[[`91df200ad6`](https://github.com/nodejs/node/commit/91df200ad6)] - **(SEMVER-MINOR)** **util**: add numericSeparator to util.inspect (Ruben Bridgewater) [#&#8203;41003](https://github.com/nodejs/node/pull/41003) - \[[`da87413257`](https://github.com/nodejs/node/commit/da87413257)] - **(SEMVER-MINOR)** **util**: always visualize cause property in errors during inspection (Ruben Bridgewater) [#&#8203;41002](https://github.com/nodejs/node/pull/41002) ### [`v17.2.0`](https://github.com/nodejs/node/releases/v17.2.0) [Compare Source](https://github.com/nodejs/node/compare/v17.1.0...v17.2.0) ##### Notable Changes - \[[`06916490af`](https://github.com/nodejs/node/commit/06916490af)] - **(SEMVER-MINOR)** **async_hooks**: expose async_wrap providers (Rafael Gonzaga) [#&#8203;40760](https://github.com/nodejs/node/pull/40760) - \[[`371ee64c92`](https://github.com/nodejs/node/commit/371ee64c92)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.6.180.14 (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488) - \[[`675c210b04`](https://github.com/nodejs/node/commit/675c210b04)] - **(SEMVER-MINOR)** **lib**: add reason to AbortSignal (James M Snell) [#&#8203;40807](https://github.com/nodejs/node/pull/40807) - \[[`0de2850680`](https://github.com/nodejs/node/commit/0de2850680)] - **(SEMVER-MINOR)** **src**: add x509.fingerprint512 to crypto module (3nprob) [#&#8203;39809](https://github.com/nodejs/node/pull/39809) - \[[`fa9b5c35d2`](https://github.com/nodejs/node/commit/fa9b5c35d2)] - **stream**: deprecate thenable support (Antoine du Hamel) [#&#8203;40860](https://github.com/nodejs/node/pull/40860) - \[[`534409d4e7`](https://github.com/nodejs/node/commit/534409d4e7)] - **stream**: fix finished regression when working with legacy Stream (Matteo Collina) [#&#8203;40858](https://github.com/nodejs/node/pull/40858) ##### Commits - \[[`48157c44c2`](https://github.com/nodejs/node/commit/48157c44c2)] - ***Revert*** "**async_hooks**: merge resource_symbol with owner_symbol" (Darshan Sen) [#&#8203;40741](https://github.com/nodejs/node/pull/40741) - \[[`4a971f67e4`](https://github.com/nodejs/node/commit/4a971f67e4)] - **async_hooks**: eliminate require side effects (Stephen Belanger) [#&#8203;40782](https://github.com/nodejs/node/pull/40782) - \[[`06916490af`](https://github.com/nodejs/node/commit/06916490af)] - **(SEMVER-MINOR)** **async_hooks**: expose async_wrap providers (Rafael Gonzaga) [#&#8203;40760](https://github.com/nodejs/node/pull/40760) - \[[`65b33ba510`](https://github.com/nodejs/node/commit/65b33ba510)] - **build**: remove extraneous quotation marks from commit body (Rich Trott) [#&#8203;40963](https://github.com/nodejs/node/pull/40963) - \[[`05d652a555`](https://github.com/nodejs/node/commit/05d652a555)] - **build**: fix branch name for lint-md-dependencies update (Rich Trott) [#&#8203;40924](https://github.com/nodejs/node/pull/40924) - \[[`1482c4415f`](https://github.com/nodejs/node/commit/1482c4415f)] - **build**: fix `make` invocation in tools.yml (Rich Trott) [#&#8203;40890](https://github.com/nodejs/node/pull/40890) - \[[`69de8c8143`](https://github.com/nodejs/node/commit/69de8c8143)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488) - \[[`e793331322`](https://github.com/nodejs/node/commit/e793331322)] - **build**: fix tools.yml errors (Rich Trott) [#&#8203;40870](https://github.com/nodejs/node/pull/40870) - \[[`51ac59b047`](https://github.com/nodejs/node/commit/51ac59b047)] - **build**: add GitHub Action to update tools modules (Rich Trott) [#&#8203;40644](https://github.com/nodejs/node/pull/40644) - \[[`a8cc8b6554`](https://github.com/nodejs/node/commit/a8cc8b6554)] - **crypto**: trim input for NETSCAPE_SPKI_b64\_decode (Shelley Vohr) [#&#8203;40757](https://github.com/nodejs/node/pull/40757) - \[[`2979c58fb0`](https://github.com/nodejs/node/commit/2979c58fb0)] - **crypto**: throw errors in SignTraits::DeriveBits (Tobias Nießen) [#&#8203;40796](https://github.com/nodejs/node/pull/40796) - \[[`7f5931d03f`](https://github.com/nodejs/node/commit/7f5931d03f)] - **crypto**: fix build without scrypt (Martin Jansa) [#&#8203;40613](https://github.com/nodejs/node/pull/40613) - \[[`90f35fc329`](https://github.com/nodejs/node/commit/90f35fc329)] - **deps**: upgrade npm to 8.1.4 (npm team) [#&#8203;40865](https://github.com/nodejs/node/pull/40865) - \[[`d461603d71`](https://github.com/nodejs/node/commit/d461603d71)] - **deps**: V8: cherry-pick [`cced52a`](https://github.com/nodejs/node/commit/cced52a97ee9) (Ray Wang) [#&#8203;40656](https://github.com/nodejs/node/pull/40656) - \[[`d6ae50ff96`](https://github.com/nodejs/node/commit/d6ae50ff96)] - **deps**: V8: cherry-pick [`7ae0b77`](https://github.com/nodejs/node/commit/7ae0b77628f6) (Ray Wang) [#&#8203;40882](https://github.com/nodejs/node/pull/40882) - \[[`e60053deee`](https://github.com/nodejs/node/commit/e60053deee)] - **deps**: V8: cherry-pick [`2a0bc36`](https://github.com/nodejs/node/commit/2a0bc36dec12) (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`94acaae3d4`](https://github.com/nodejs/node/commit/94acaae3d4)] - **deps**: V8: patch jinja2 for Python 3.10 compat (Michaël Zasso) [#&#8203;40296](https://github.com/nodejs/node/pull/40296) - \[[`37c9828d39`](https://github.com/nodejs/node/commit/37c9828d39)] - **deps**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488) - \[[`dfb97fb501`](https://github.com/nodejs/node/commit/dfb97fb501)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`9ecf4be0c2`](https://github.com/nodejs/node/commit/9ecf4be0c2)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`82a8736dec`](https://github.com/nodejs/node/commit/82a8736dec)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;38807](https://github.com/nodejs/node/pull/38807) - \[[`eab5ef5505`](https://github.com/nodejs/node/commit/eab5ef5505)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`d6e5dd56ff`](https://github.com/nodejs/node/commit/d6e5dd56ff)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`29a6e15480`](https://github.com/nodejs/node/commit/29a6e15480)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`1ff83c4945`](https://github.com/nodejs/node/commit/1ff83c4945)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`371ee64c92`](https://github.com/nodejs/node/commit/371ee64c92)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.6.180.14 (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488) - \[[`6506a42c16`](https://github.com/nodejs/node/commit/6506a42c16)] - **deps**: V8: cherry-pick [`cced52a`](https://github.com/nodejs/node/commit/cced52a97ee9) (Ray Wang) [#&#8203;40656](https://github.com/nodejs/node/pull/40656) - \[[`a612ecb42f`](https://github.com/nodejs/node/commit/a612ecb42f)] - **deps**: V8: cherry-pick [`7ae0b77`](https://github.com/nodejs/node/commit/7ae0b77628f6) (Ray Wang) [#&#8203;40882](https://github.com/nodejs/node/pull/40882) - \[[`b46184df5e`](https://github.com/nodejs/node/commit/b46184df5e)] - **deps**: update to uvwasi 0.0.12 (Colin Ihrig) [#&#8203;40847](https://github.com/nodejs/node/pull/40847) - \[[`fa37428472`](https://github.com/nodejs/node/commit/fa37428472)] - **deps**: add -fno-strict-aliasing flag to libuv (Daniel Bevenius) [#&#8203;40631](https://github.com/nodejs/node/pull/40631) - \[[`9711ccfe08`](https://github.com/nodejs/node/commit/9711ccfe08)] - **deps**: upgrade npm to 8.1.3 (npm team) [#&#8203;40726](https://github.com/nodejs/node/pull/40726) - \[[`8e525634c6`](https://github.com/nodejs/node/commit/8e525634c6)] - **deps**: update ICU to 70.1 (Michaël Zasso) [#&#8203;40658](https://github.com/nodejs/node/pull/40658) - \[[`3bfc9f5b47`](https://github.com/nodejs/node/commit/3bfc9f5b47)] - **doc**: add information on suppressing initial break in debugger (Rich Trott) [#&#8203;40960](https://github.com/nodejs/node/pull/40960) - \[[`8966ab3c57`](https://github.com/nodejs/node/commit/8966ab3c57)] - **doc**: improve grammar in API description (Tobias Nießen) [#&#8203;40959](https://github.com/nodejs/node/pull/40959) - \[[`130777a61c`](https://github.com/nodejs/node/commit/130777a61c)] - **doc**: update BUILDING.md section on running tests (Rich Trott) [#&#8203;40933](https://github.com/nodejs/node/pull/40933) - \[[`6e9b6652e5`](https://github.com/nodejs/node/commit/6e9b6652e5)] - **doc**: remove experimental abortcontroller flag (FrankQiu) [#&#8203;38968](https://github.com/nodejs/node/pull/38968) - \[[`b92416ff02`](https://github.com/nodejs/node/commit/b92416ff02)] - **doc**: fix spelling of 'WebAssembly' (Geoffrey Booth) [#&#8203;40785](https://github.com/nodejs/node/pull/40785) - \[[`cf495a6293`](https://github.com/nodejs/node/commit/cf495a6293)] - **doc**: clarify more optional parameters in node-api (Michael Dawson) [#&#8203;40888](https://github.com/nodejs/node/pull/40888) - \[[`694012b392`](https://github.com/nodejs/node/commit/694012b392)] - **doc**: define "types", "deno" community conditions (Guy Bedford) [#&#8203;40708](https://github.com/nodejs/node/pull/40708) - \[[`4c47b0150b`](https://github.com/nodejs/node/commit/4c47b0150b)] - **doc**: document optional params in napi_get_cb_info (Michael Dawson) [#&#8203;40821](https://github.com/nodejs/node/pull/40821) - \[[`dfdf68f4d0`](https://github.com/nodejs/node/commit/dfdf68f4d0)] - **doc**: improve README.md lede section (Rich Trott) [#&#8203;40837](https://github.com/nodejs/node/pull/40837) - \[[`9c200e1de4`](https://github.com/nodejs/node/commit/9c200e1de4)] - **doc**: add pref to using draft PR versus WIP label (Michael Dawson) [#&#8203;40824](https://github.com/nodejs/node/pull/40824) - \[[`fe2cd09750`](https://github.com/nodejs/node/commit/fe2cd09750)] - **doc**: fix `added:` info for `Readable.fromWeb()` (Luigi Pinca) [#&#8203;40820](https://github.com/nodejs/node/pull/40820) - \[[`c91a9ab095`](https://github.com/nodejs/node/commit/c91a9ab095)] - **doc**: tweak guidance for modules in core (Michael Dawson) [#&#8203;40601](https://github.com/nodejs/node/pull/40601) - \[[`2ea08e9b55`](https://github.com/nodejs/node/commit/2ea08e9b55)] - **doc**: claim ABI version for Electron 18 (Keeley Hammond) [#&#8203;40768](https://github.com/nodejs/node/pull/40768) - \[[`8166b07ddc`](https://github.com/nodejs/node/commit/8166b07ddc)] - **doc**: fix transform stream example (Evan Lucas) [#&#8203;40777](https://github.com/nodejs/node/pull/40777) - \[[`5ceb06cddf`](https://github.com/nodejs/node/commit/5ceb06cddf)] - **doc**: fix linter-enforced formatting in crypto.md (Mohammed Keyvanzadeh) [#&#8203;40780](https://github.com/nodejs/node/pull/40780) - \[[`d3070d8eea`](https://github.com/nodejs/node/commit/d3070d8eea)] - **doc**: fix corepack grammar for `--force` flag (Steven) [#&#8203;40762](https://github.com/nodejs/node/pull/40762) - \[[`9271f23e3a`](https://github.com/nodejs/node/commit/9271f23e3a)] - **doc**: update maintaining ICU guide (Michaël Zasso) [#&#8203;40658](https://github.com/nodejs/node/pull/40658) - \[[`20d7d657bb`](https://github.com/nodejs/node/commit/20d7d657bb)] - **doc**: clarify getAuthTag with authTagLength (Tobias Nießen) [#&#8203;40713](https://github.com/nodejs/node/pull/40713) - \[[`75288fbc6b`](https://github.com/nodejs/node/commit/75288fbc6b)] - **doc**: fix order of announce work (Michael Dawson) [#&#8203;40725](https://github.com/nodejs/node/pull/40725) - \[[`429915aa6c`](https://github.com/nodejs/node/commit/429915aa6c)] - **doc**: add initial list of technical priorities (Michael Dawson) [#&#8203;40235](https://github.com/nodejs/node/pull/40235) - \[[`a5a1691514`](https://github.com/nodejs/node/commit/a5a1691514)] - **fs**: nullish coalescing to respect zero positional reads (Omar El-Mihilmy) [#&#8203;40716](https://github.com/nodejs/node/pull/40716) - \[[`bddb4c69b7`](https://github.com/nodejs/node/commit/bddb4c69b7)] - **http**: add missing initialization (Michael Dawson) [#&#8203;40555](https://github.com/nodejs/node/pull/40555) - \[[`80ce97f514`](https://github.com/nodejs/node/commit/80ce97f514)] - **http**: change totalSocketCount only on socket creation/close (Subhi Al Hasan) [#&#8203;40572](https://github.com/nodejs/node/pull/40572) - \[[`675c210b04`](https://github.com/nodejs/node/commit/675c210b04)] - **(SEMVER-MINOR)** **lib**: add reason to AbortSignal (James M Snell) [#&#8203;40807](https://github.com/nodejs/node/pull/40807) - \[[`b614b17525`](https://github.com/nodejs/node/commit/b614b17525)] - ***Revert*** "**lib**: use helper for readability" (Darshan Sen) [#&#8203;40741](https://github.com/nodejs/node/pull/40741) - \[[`10a842d2d1`](https://github.com/nodejs/node/commit/10a842d2d1)] - **lib**: fix typos in lib code comments (Yoshiki) [#&#8203;40792](https://github.com/nodejs/node/pull/40792) - \[[`3ec78d1570`](https://github.com/nodejs/node/commit/3ec78d1570)] - **meta**: add feature request label for issue template (Mestery) [#&#8203;40970](https://github.com/nodejs/node/pull/40970) - \[[`9c897b69a1`](https://github.com/nodejs/node/commit/9c897b69a1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40900](https://github.com/nodejs/node/pull/40900) - \[[`dfc6fc987a`](https://github.com/nodejs/node/commit/dfc6fc987a)] - **meta**: update name and email (Viero Fernando) [#&#8203;40848](https://github.com/nodejs/node/pull/40848) - \[[`813cf746a8`](https://github.com/nodejs/node/commit/813cf746a8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40809](https://github.com/nodejs/node/pull/40809) - \[[`e451ec9ec1`](https://github.com/nodejs/node/commit/e451ec9ec1)] - **meta**: edit GOVERNANCE.md for minor updates (Rich Trott) [#&#8203;40798](https://github.com/nodejs/node/pull/40798) - \[[`2536be7528`](https://github.com/nodejs/node/commit/2536be7528)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40748](https://github.com/nodejs/node/pull/40748) - \[[`3c8aa211cd`](https://github.com/nodejs/node/commit/3c8aa211cd)] - **module**: import assertions improvements (Geoffrey Booth) [#&#8203;40785](https://github.com/nodejs/node/pull/40785) - \[[`3a4f3873be`](https://github.com/nodejs/node/commit/3a4f3873be)] - **process**: support hrtime in the snapshot (Joyee Cheung) [#&#8203;40649](https://github.com/nodejs/node/pull/40649) - \[[`1555dbdddc`](https://github.com/nodejs/node/commit/1555dbdddc)] - **repl**: fix and extend require/import tab complete (Mestery) [#&#8203;40216](https://github.com/nodejs/node/pull/40216) - \[[`c2259c974b`](https://github.com/nodejs/node/commit/c2259c974b)] - **src**: reset error struct if error code is napi_ok (JckXia) [#&#8203;40552](https://github.com/nodejs/node/pull/40552) - \[[`3be49d6853`](https://github.com/nodejs/node/commit/3be49d6853)] - **src**: prevent extra copies of `TimerWrap::TimerCb` (Darshan Sen) [#&#8203;40665](https://github.com/nodejs/node/pull/40665) - \[[`0de2850680`](https://github.com/nodejs/node/commit/0de2850680)] - **(SEMVER-MINOR)** **src**: add x509.fingerprint512 to crypto module (3nprob) [#&#8203;39809](https://github.com/nodejs/node/pull/39809) - \[[`924d29e88f`](https://github.com/nodejs/node/commit/924d29e88f)] - **src**: add and fix some preprocessor comments (Tobias Nießen) [#&#8203;40701](https://github.com/nodejs/node/pull/40701) - \[[`acbd8220a7`](https://github.com/nodejs/node/commit/acbd8220a7)] - **src,crypto**: use `ByteSource::ToBuffer()` in `crypto_dh` (Darshan Sen) [#&#8203;40903](https://github.com/nodejs/node/pull/40903) - \[[`82b422663d`](https://github.com/nodejs/node/commit/82b422663d)] - **src,crypto**: remove `AllocatedBuffer`s from `crypto_spkac` (Darshan Sen) [#&#8203;40752](https://github.com/nodejs/node/pull/40752) - \[[`415b42fbdf`](https://github.com/nodejs/node/commit/415b42fbdf)] - **src,crypto**: refactor `crypto_tls.*` (Darshan Sen) [#&#8203;40675](https://github.com/nodejs/node/pull/40675) - \[[`88b57bc9d3`](https://github.com/nodejs/node/commit/88b57bc9d3)] - **src,doc**: add SyntaxError napi support (Idan Attias) [#&#8203;40736](https://github.com/nodejs/node/pull/40736) - \[[`70bd90e039`](https://github.com/nodejs/node/commit/70bd90e039)] - **stream**: stricter isReadableNodeStream (Robert Nagy) [#&#8203;40941](https://github.com/nodejs/node/pull/40941) - \[[`86d1c0b19d`](https://github.com/nodejs/node/commit/86d1c0b19d)] - **stream**: drain Transform with 0 highWaterMark (Robert Nagy) [#&#8203;40947](https://github.com/nodejs/node/pull/40947) - \[[`fa9b5c35d2`](https://github.com/nodejs/node/commit/fa9b5c35d2)] - **stream**: deprecate thenable support (Antoine du Hamel) [#&#8203;40860](https://github.com/nodejs/node/pull/40860) - \[[`dc99ae3bd6`](https://github.com/nodejs/node/commit/dc99ae3bd6)] - **stream**: fix the ReadableStreamBYOBReader error message (James M Snell) [#&#8203;40846](https://github.com/nodejs/node/pull/40846) - \[[`650c9bd022`](https://github.com/nodejs/node/commit/650c9bd022)] - **stream**: pipeline with end option (Robert Nagy) [#&#8203;40886](https://github.com/nodejs/node/pull/40886) - \[[`534409d4e7`](https://github.com/nodejs/node/commit/534409d4e7)] - **stream**: fix finished regression when working with legacy Stream (Matteo Collina) [#&#8203;40858](https://github.com/nodejs/node/pull/40858) - \[[`16ee8423d6`](https://github.com/nodejs/node/commit/16ee8423d6)] - **stream**: pipeline should drain empty readable (Robert Nagy) [#&#8203;40654](https://github.com/nodejs/node/pull/40654) - \[[`7d127d2fc1`](https://github.com/nodejs/node/commit/7d127d2fc1)] - **stream**: fix non readable Duplex readableAborted (Robert Nagy) [#&#8203;40801](https://github.com/nodejs/node/pull/40801) - \[[`7c4f9a34ae`](https://github.com/nodejs/node/commit/7c4f9a34ae)] - **stream**: allow calling callback before promise (Robert Nagy) [#&#8203;40772](https://github.com/nodejs/node/pull/40772) - \[[`62171eb516`](https://github.com/nodejs/node/commit/62171eb516)] - **test**: mark test-fs-watch-non-recursive flaky on Windows (Luigi Pinca) [#&#8203;40916](https://github.com/nodejs/node/pull/40916) - \[[`ae12a609a5`](https://github.com/nodejs/node/commit/ae12a609a5)] - **test**: improve test coverage of readline/promises (Yoshiki Kurihara) [#&#8203;40876](https://github.com/nodejs/node/pull/40876) - \[[`4288c6a26e`](https://github.com/nodejs/node/commit/4288c6a26e)] - **test**: deflake cluster-concurrent-disconnect (Luigi Pinca) [#&#8203;40877](https://github.com/nodejs/node/pull/40877) - \[[`009ab4d9bb`](https://github.com/nodejs/node/commit/009ab4d9bb)] - **test**: deflake fs-promises-watch (Luigi Pinca) [#&#8203;40863](https://github.com/nodejs/node/pull/40863) - \[[`522a30f469`](https://github.com/nodejs/node/commit/522a30f469)] - **test**: fix argument order in assertion (Luigi Pinca) [#&#8203;40842](https://github.com/nodejs/node/pull/40842) - \[[`b190b0e77b`](https://github.com/nodejs/node/commit/b190b0e77b)] - **test**: deflake http2-pipe-named-pipe (Luigi Pinca) [#&#8203;40842](https://github.com/nodejs/node/pull/40842) - \[[`c485460793`](https://github.com/nodejs/node/commit/c485460793)] - **test**: use descriptive name for destination file (Luigi Pinca) [#&#8203;40842](https://github.com/nodejs/node/pull/40842) - \[[`43e86508ae`](https://github.com/nodejs/node/commit/43e86508ae)] - **test**: add AsyncLocalStorage tests using udp, tcp and tls sockets (Darshan Sen) [#&#8203;40741](https://github.com/nodejs/node/pull/40741) - \[[`896073be47`](https://github.com/nodejs/node/commit/896073be47)] - **test**: deflake child-process-pipe-dataflow (Luigi Pinca) [#&#8203;40838](https://github.com/nodejs/node/pull/40838) - \[[`150c0f1b76`](https://github.com/nodejs/node/commit/150c0f1b76)] - **test**: add tests for invalid UTF-8 (git-srinivas) [#&#8203;40351](https://github.com/nodejs/node/pull/40351) - \[[`3d896231cd`](https://github.com/nodejs/node/commit/3d896231cd)] - **test**: fix flaky test-policy-integrity (Rich Trott) [#&#8203;40763](https://github.com/nodejs/node/pull/40763) - \[[`dc9e68899d`](https://github.com/nodejs/node/commit/dc9e68899d)] - **test**: add semicolons for linter update (Rich Trott) [#&#8203;40720](https://github.com/nodejs/node/pull/40720) - \[[`747247bc59`](https://github.com/nodejs/node/commit/747247bc59)] - **tools**: update gyp-next to v0.10.1 (Michaël Zasso) [#&#8203;40934](https://github.com/nodejs/node/pull/40934) - \[[`6ebbd0d9dc`](https://github.com/nodejs/node/commit/6ebbd0d9dc)] - **tools**: fix commit-lint GH Actions CI (Antoine du Hamel) [#&#8203;40845](https://github.com/nodejs/node/pull/40845) - \[[`0201f3f604`](https://github.com/nodejs/node/commit/0201f3f604)] - **tools**: ping TSC members identified as inactive (Rich Trott) [#&#8203;40915](https://github.com/nodejs/node/pull/40915) - \[[`22265e3fb6`](https://github.com/nodejs/node/commit/22265e3fb6)] - **tools**: update lint-md-dependencies to rollup@2.60.1 (Node.js GitHub Bot) [#&#8203;40929](https://github.com/nodejs/node/pull/40929) - \[[`3d593aa4ed`](https://github.com/nodejs/node/commit/3d593aa4ed)] - **tools**: update lint-md dependencies (Rich Trott) [#&#8203;40894](https://github.com/nodejs/node/pull/40894) - \[[`e674f61720`](https://github.com/nodejs/node/commit/e674f61720)] - **tools**: update ESLint to 8.3.0 (Luigi Pinca) [#&#8203;40917](https://github.com/nodejs/node/pull/40917) - \[[`878ba91bf6`](https://github.com/nodejs/node/commit/878ba91bf6)] - **tools**: add find-inactive-tsc (Rich Trott) [#&#8203;40884](https://github.com/nodejs/node/pull/40884) - \[[`d97ad3080f`](https://github.com/nodejs/node/commit/d97ad3080f)] - **tools**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488) - \[[`e3f8988118`](https://github.com/nodejs/node/commit/e3f8988118)] - **tools**: update V8 gypfiles for 9.6 (Michaël Zasso) [#&#8203;40488](https://github.com/nodejs/node/pull/40488) - \[[`de4d0180dc`](https://github.com/nodejs/node/commit/de4d0180dc)] - **tools**: update [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) to 7.16.3 (Node.js GitHub Bot) [#&#8203;40889](https://github.com/nodejs/node/pull/40889) - \[[`727b34ec95`](https://github.com/nodejs/node/commit/727b34ec95)] - **tools**: only validate first commit message of a PR (Antoine du Hamel) [#&#8203;40740](https://github.com/nodejs/node/pull/40740) - \[[`5b08e908ea`](https://github.com/nodejs/node/commit/5b08e908ea)] - **tools**: update babel-eslint-parser to 7.16.0 (Rich Trott) [#&#8203;40720](https://github.com/nodejs/node/pull/40720) - \[[`30623c283a`](https://github.com/nodejs/node/commit/30623c283a)] - **tools**: improve update scripts (Rich Trott) [#&#8203;40644](https://github.com/nodejs/node/pull/40644) ### [`v17.1.0`](https://github.com/nodejs/node/releases/v17.1.0) [Compare Source](https://github.com/nodejs/node/compare/v17.0.1...v17.1.0) ##### Notable Changes - \[[`89b34ecffb`](https://github.com/nodejs/node/commit/89b34ecffb)] - **doc**: add VoltrexMaster to collaborators (voltrexmaster) [#&#8203;40566](https://github.com/nodejs/node/pull/40566) - \[[`95e4d29eb4`](https://github.com/nodejs/node/commit/95e4d29eb4)] - **(SEMVER-MINOR)** **esm**: add support for JSON import assertion (Antoine du Hamel) [#&#8203;40250](https://github.com/nodejs/node/pull/40250) - \[[`1ddbae2d76`](https://github.com/nodejs/node/commit/1ddbae2d76)] - **(SEMVER-MINOR)** **lib**: add unsubscribe method to non-active DC channels (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433) - \[[`aa61551b49`](https://github.com/nodejs/node/commit/aa61551b49)] - **(SEMVER-MINOR)** **lib**: add return value for DC channel.unsubscribe (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433) - \[[`fbeb895ca6`](https://github.com/nodejs/node/commit/fbeb895ca6)] - **(SEMVER-MINOR)** **v8**: multi-tenant promise hook api (Stephen Belanger) [#&#8203;39283](https://github.com/nodejs/node/pull/39283) ##### Commits - \[[`8a00dc5add`](https://github.com/nodejs/node/commit/8a00dc5add)] - **build**: skip long-running Actions for README-only modifications (Rich Trott) [#&#8203;40571](https://github.com/nodejs/node/pull/40571) - \[[`9f46fca124`](https://github.com/nodejs/node/commit/9f46fca124)] - **build**: disable v8 pointer compression on 32bit archs (Cheng Zhao) [#&#8203;40418](https://github.com/nodejs/node/pull/40418) - \[[`5bef74395d`](https://github.com/nodejs/node/commit/5bef74395d)] - **deps**: patch V8 to 9.5.172.25 (Michaël Zasso) [#&#8203;40604](https://github.com/nodejs/node/pull/40604) - \[[`3805b806ee`](https://github.com/nodejs/node/commit/3805b806ee)] - **deps**: upgrade npm to 8.1.2 (npm team) [#&#8203;40643](https://github.com/nodejs/node/pull/40643) - \[[`c003ba131b`](https://github.com/nodejs/node/commit/c003ba131b)] - **deps**: update c-ares to 1.18.1 (Richard Lau) [#&#8203;40660](https://github.com/nodejs/node/pull/40660) - \[[`841f35cc52`](https://github.com/nodejs/node/commit/841f35cc52)] - **deps**: upgrade npm to 8.1.1 (npm team) [#&#8203;40554](https://github.com/nodejs/node/pull/40554) - \[[`8d16f0d2d3`](https://github.com/nodejs/node/commit/8d16f0d2d3)] - **deps**: V8: cherry-pick [`422dc37`](https://github.com/nodejs/node/commit/422dc378a1da) (Ray Wang) [#&#8203;40450](https://github.com/nodejs/node/pull/40450) - \[[`cdf5c44d62`](https://github.com/nodejs/node/commit/cdf5c44d62)] - **deps**: add riscv64 config into openssl gypi (Lu Yahan) [#&#8203;40473](https://github.com/nodejs/node/pull/40473) - \[[`2b9fcdfe26`](https://github.com/nodejs/node/commit/2b9fcdfe26)] - **deps**: attempt to suppress macro-redefined warning (Daniel Bevenius) [#&#8203;40518](https://github.com/nodejs/node/pull/40518) - \[[`d2839bfaa9`](https://github.com/nodejs/node/commit/d2839bfaa9)] - **deps**: regenerate OpenSSL arch files (Daniel Bevenius) [#&#8203;40518](https://github.com/nodejs/node/pull/40518) - \[[`5df8ce5cbe`](https://github.com/nodejs/node/commit/5df8ce5cbe)] - **deps,build,tools**: fix openssl-is-fips for ninja builds (Daniel Bevenius) [#&#8203;40518](https://github.com/nodejs/node/pull/40518) - \[[`79bf429405`](https://github.com/nodejs/node/commit/79bf429405)] - **dgram**: fix send with out of bounds offset + length (Nitzan Uziely) [#&#8203;40568](https://github.com/nodejs/node/pull/40568) - \[[`c29658fda7`](https://github.com/nodejs/node/commit/c29658fda7)] - **doc**: update cjs-module-lexer repo link (Guy Bedford) [#&#8203;40707](https://github.com/nodejs/node/pull/40707) - \[[`e374f3ddd9`](https://github.com/nodejs/node/commit/e374f3ddd9)] - **doc**: fix lint re-enabling comment in README.md (Rich Trott) [#&#8203;40647](https://github.com/nodejs/node/pull/40647) - \[[`ecccf48106`](https://github.com/nodejs/node/commit/ecccf48106)] - **doc**: format v8.md in preparation for stricter linting (Rich Trott) [#&#8203;40647](https://github.com/nodejs/node/pull/40647) - \[[`95a7117037`](https://github.com/nodejs/node/commit/95a7117037)] - **doc**: final round of markdown format changes (Rich Trott) [#&#8203;40645](https://github.com/nodejs/node/pull/40645) - \[[`c104f5a9ab`](https://github.com/nodejs/node/commit/c104f5a9ab)] - **doc**: remove `--experimental-modules` documentation (FrankQiu) [#&#8203;38974](https://github.com/nodejs/node/pull/38974) - \[[`ac81f89bbf`](https://github.com/nodejs/node/commit/ac81f89bbf)] - **doc**: update tracking issues of startup performance (Joyee Cheung) [#&#8203;40629](https://github.com/nodejs/node/pull/40629) - \[[`65effa11fc`](https://github.com/nodejs/node/commit/65effa11fc)] - **doc**: fix markdown syntax and HTML tag misses (ryan) [#&#8203;40608](https://github.com/nodejs/node/pull/40608) - \[[`c78d708a16`](https://github.com/nodejs/node/commit/c78d708a16)] - **doc**: use 'GitHub Actions workflow' instead (Mestery) [#&#8203;40586](https://github.com/nodejs/node/pull/40586) - \[[`71bac70bf2`](https://github.com/nodejs/node/commit/71bac70bf2)] - **doc**: ref OpenSSL legacy provider from crypto docs (Tobias Nießen) [#&#8203;40593](https://github.com/nodejs/node/pull/40593) - \[[`8f410229ac`](https://github.com/nodejs/node/commit/8f410229ac)] - **doc**: add node: url scheme (Daniel Nalborczyk) [#&#8203;40573](https://github.com/nodejs/node/pull/40573) - \[[`35dbed21f2`](https://github.com/nodejs/node/commit/35dbed21f2)] - **doc**: call cwd function (Daniel Nalborczyk) [#&#8203;40573](https://github.com/nodejs/node/pull/40573) - \[[`4870a23ccc`](https://github.com/nodejs/node/commit/4870a23ccc)] - **doc**: remove unused imports (Daniel Nalborczyk) [#&#8203;40573](https://github.com/nodejs/node/pull/40573) - \[[`5951ccc12e`](https://github.com/nodejs/node/commit/5951ccc12e)] - **doc**: simplify CHANGELOG.md (Rich Trott) [#&#8203;40475](https://github.com/nodejs/node/pull/40475) - \[[`6ae134ecb7`](https://github.com/nodejs/node/commit/6ae134ecb7)] - **doc**: correct esm spec scope lookup definition (Guy Bedford) [#&#8203;40592](https://github.com/nodejs/node/pull/40592) - \[[`09239216f6`](https://github.com/nodejs/node/commit/09239216f6)] - **doc**: update CHANGELOG.md for Node.js 16.13.0 (Richard Lau) [#&#8203;40617](https://github.com/nodejs/node/pull/40617) - \[[`46ec5ac4df`](https://github.com/nodejs/node/commit/46ec5ac4df)] - **doc**: add info on project's usage of coverity (Michael Dawson) [#&#8203;40506](https://github.com/nodejs/node/pull/40506) - \[[`7eb1a44410`](https://github.com/nodejs/node/commit/7eb1a44410)] - **doc**: fix typo in changelogs (Luigi Pinca) [#&#8203;40585](https://github.com/nodejs/node/pull/40585) - \[[`132f6cba05`](https://github.com/nodejs/node/commit/132f6cba05)] - **doc**: update onboarding task (Rich Trott) [#&#8203;40570](https://github.com/nodejs/node/pull/40570) - \[[`5e2d0ed61e`](https://github.com/nodejs/node/commit/5e2d0ed61e)] - **doc**: simplify ccache instructions (Rich Trott) [#&#8203;40550](https://github.com/nodejs/node/pull/40550) - \[[`c1c1738bfc`](https://github.com/nodejs/node/commit/c1c1738bfc)] - **doc**: fix macOS environment variables for ccache (Rich Trott) [#&#8203;40550](https://github.com/nodejs/node/pull/40550) - \[[`6e3e50f2ab`](https://github.com/nodejs/node/commit/6e3e50f2ab)] - **doc**: improve async_context introduction (Michaël Zasso) [#&#8203;40560](https://github.com/nodejs/node/pull/40560) - \[[`1587fe62d4`](https://github.com/nodejs/node/commit/1587fe62d4)] - **doc**: use GFM footnotes in webcrypto.md (Rich Trott) [#&#8203;40477](https://github.com/nodejs/node/pull/40477) - \[[`305c022db4`](https://github.com/nodejs/node/commit/305c022db4)] - **doc**: describe buffer limit of v8.serialize (Ray Wang) [#&#8203;40243](https://github.com/nodejs/node/pull/40243) - \[[`6e39e0e10a`](https://github.com/nodejs/node/commit/6e39e0e10a)] - **doc**: run license-builder (Rich Trott) [#&#8203;40540](https://github.com/nodejs/node/pull/40540) - \[[`556e49ccb5`](https://github.com/nodejs/node/commit/556e49ccb5)] - **doc**: use GFM footnotes in maintaining-V8.md ([#&#8203;40476](https://github.com/nodejs/node/issues/40476)) (Rich Trott) [#&#8203;40476](https://github.com/nodejs/node/pull/40476) - \[[`9c6a9fd5b1`](https://github.com/nodejs/node/commit/9c6a9fd5b1)] - **doc**: use GFM footnotes in BUILDING.md (Rich Trott) [#&#8203;40474](https://github.com/nodejs/node/pull/40474) - \[[`fd946215cc`](https://github.com/nodejs/node/commit/fd946215cc)] - **doc**: fix `fs.symlink` code example (Juan José Arboleda) [#&#8203;40414](https://github.com/nodejs/node/pull/40414) - \[[`404730ac1b`](https://github.com/nodejs/node/commit/404730ac1b)] - **doc**: update for changed `--dns-result-order` default (Richard Lau) [#&#8203;40538](https://github.com/nodejs/node/pull/40538) - \[[`acc22c7c4a`](https://github.com/nodejs/node/commit/acc22c7c4a)] - **doc**: add missing entry in `globals.md` (Antoine du Hamel) [#&#8203;40531](https://github.com/nodejs/node/pull/40531) - \[[`0375d958ef`](https://github.com/nodejs/node/commit/0375d958ef)] - **doc**: explain backport labels (Stephen Belanger) [#&#8203;40520](https://github.com/nodejs/node/pull/40520) - \[[`4993d87c49`](https://github.com/nodejs/node/commit/4993d87c49)] - **doc**: fix entry for Slack channel in onboarding.md (Rich Trott) [#&#8203;40563](https://github.com/nodejs/node/pull/40563) - \[[`89b34ecffb`](https://github.com/nodejs/node/commit/89b34ecffb)] - **doc**: add VoltrexMaster to collaborators (voltrexmaster) [#&#8203;40566](https://github.com/nodejs/node/pull/40566) - \[[`6357ef15d0`](https://github.com/nodejs/node/commit/6357ef15d0)] - **doc**: document considerations for inclusion in core (Rich Trott) [#&#8203;40338](https://github.com/nodejs/node/pull/40338) - \[[`ed04827373`](https://github.com/nodejs/node/commit/ed04827373)] - **doc**: update link in onboarding doc (Rich Trott) [#&#8203;40539](https://github.com/nodejs/node/pull/40539) - \[[`34e244b8e9`](https://github.com/nodejs/node/commit/34e244b8e9)] - **doc**: clarify behavior of napi_extended_error_info (Michael Dawson) [#&#8203;40458](https://github.com/nodejs/node/pull/40458) - \[[`5a588ff047`](https://github.com/nodejs/node/commit/5a588ff047)] - **doc**: add updating expected assets to release guide (Richard Lau) [#&#8203;40470](https://github.com/nodejs/node/pull/40470) - \[[`95e4d29eb4`](https://github.com/nodejs/node/commit/95e4d29eb4)] - **(SEMVER-MINOR)** **esm**: add support for JSON import assertion (Antoine du Hamel) [#&#8203;40250](https://github.com/nodejs/node/pull/40250) - \[[`825a683423`](https://github.com/nodejs/node/commit/825a683423)] - **http**: response should always emit 'close' (Robert Nagy) [#&#8203;40543](https://github.com/nodejs/node/pull/40543) - \[[`81cd7f3751`](https://github.com/nodejs/node/commit/81cd7f3751)] - **lib**: fix regular expression to detect \`/\` and \`\\\` (Francesco Trotta) [#&#8203;40325](https://github.com/nodejs/node/pull/40325) - \[[`1ddbae2d76`](https://github.com/nodejs/node/commit/1ddbae2d76)] - **(SEMVER-MINOR)** **lib**: add unsubscribe method to non-active DC channels (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433) - \[[`aa61551b49`](https://github.com/nodejs/node/commit/aa61551b49)] - **(SEMVER-MINOR)** **lib**: add return value for DC channel.unsubscribe (simon-id) [#&#8203;40433](https://github.com/nodejs/node/pull/40433) - \[[`d97872dd98`](https://github.com/nodejs/node/commit/d97872dd98)] - **meta**: use form schema for flaky test template (Michaël Zasso) [#&#8203;40737](https://github.com/nodejs/node/pull/40737) - \[[`c2fabdbce8`](https://github.com/nodejs/node/commit/c2fabdbce8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40668](https://github.com/nodejs/node/pull/40668) - \[[`aa98c6bdce`](https://github.com/nodejs/node/commit/aa98c6bdce)] - **meta**: consolidate AUTHORS entries for brettkiefer (Rich Trott) [#&#8203;40599](https://github.com/nodejs/node/pull/40599) - \[[`18296c3d8e`](https://github.com/nodejs/node/commit/18296c3d8e)] - **meta**: consolidate AUTHORS entries for alexzherdev (Rich Trott) [#&#8203;40620](https://github.com/nodejs/node/pull/40620) - \[[`88d812793d`](https://github.com/nodejs/node/commit/88d812793d)] - **meta**: consolidate AUTHORS entries for Azard (Rich Trott) [#&#8203;40619](https://github.com/nodejs/node/pull/40619) - \[[`d81b65ca0e`](https://github.com/nodejs/node/commit/d81b65ca0e)] - **meta**: move Fishrock123 to emeritus (Jeremiah Senkpiel) [#&#8203;40596](https://github.com/nodejs/node/pull/40596) - \[[`ec02e7b68a`](https://github.com/nodejs/node/commit/ec02e7b68a)] - **meta**: consolidate AUTHORS entries for clakech (Rich Trott) [#&#8203;40589](https://github.com/nodejs/node/pull/40589) - \[[`08e7a2ff24`](https://github.com/nodejs/node/commit/08e7a2ff24)] - **meta**: consolidate AUTHORS entries for darai0512 (Rich Trott) [#&#8203;40569](https://github.com/nodejs/node/pull/40569) - \[[`488ee51f90`](https://github.com/nodejs/node/commit/488ee51f90)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40580](https://github.com/nodejs/node/pull/40580) - \[[`ba9a6c5d06`](https://github.com/nodejs/node/commit/ba9a6c5d06)] - **meta**: consolidate AUTHORS entries for dfabulich (Rich Trott) [#&#8203;40527](https://github.com/nodejs/node/pull/40527) - \[[`bd06e9945e`](https://github.com/nodejs/node/commit/bd06e9945e)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;40464](https://github.com/nodejs/node/pull/40464) - \[[`7cee125dcf`](https://github.com/nodejs/node/commit/7cee125dcf)] - **meta**: add Richard Lau to TSC list in README.md (Rich Trott) [#&#8203;40523](https://github.com/nodejs/node/pull/40523) - \[[`6a771f8bcb`](https://github.com/nodejs/node/commit/6a771f8bcb)] - **meta**: consolidate AUTHORS entries for dguo (Rich Trott) [#&#8203;40517](https://github.com/nodejs/node/pull/40517) - \[[`e4c740646d`](https://github.com/nodejs/node/commit/e4c740646d)] - **meta**: consolidate AUTHORS entries for cxreg (Rich Trott) [#&#8203;40490](https://github.com/nodejs/node/pull/40490) - \[[`075cfbf941`](https://github.com/nodejs/node/commit/075cfbf941)] - **module**: resolver & spec hardening /w refactoring (Guy Bedford) [#&#8203;40510](https://github.com/nodejs/node/pull/40510) - \[[`b320387c83`](https://github.com/nodejs/node/commit/b320387c83)] - **policy**: fix message for invalid manifest specifier (Rich Trott) [#&#8203;40574](https://github.com/nodejs/node/pull/40574) - \[[`ea968d54c5`](https://github.com/nodejs/node/commit/ea968d54c5)] - **process**: refactor execution (Voltrex) [#&#8203;40664](https://github.com/nodejs/node/pull/40664) - \[[`fb7c437b0b`](https://github.com/nodejs/node/commit/fb7c437b0b)] - **src**: make LoadEnvironment with string work with builtin modules path (Michaël Zasso) [#&#8203;40607](https://github.com/nodejs/node/pull/40607) - \[[`e9388c87bf`](https://github.com/nodejs/node/commit/e9388c87bf)] - **src**: remove usage of `AllocatedBuffer` from `node_http2` (Darshan Sen) [#&#8203;40584](https://github.com/nodejs/node/pull/40584) - \[[`7a22f913b0`](https://github.com/nodejs/node/commit/7a22f913b0)] - **src**: fix #endif description in crypto_keygen.h (Tobias Nießen) [#&#8203;40639](https://github.com/nodejs/node/pull/40639) - \[[`396342e26d`](https://github.com/nodejs/node/commit/396342e26d)] - **src**: throw error instead of assertion (Ray Wang) [#&#8203;40243](https://github.com/nodejs/node/pull/40243) - \[[`accab383a1`](https://github.com/nodejs/node/commit/accab383a1)] - **src**: register external references in os bindings (Joyee Cheung) [#&#8203;40239](https://github.com/nodejs/node/pull/40239) - \[[`a11f9ea4f0`](https://github.com/nodejs/node/commit/a11f9ea4f0)] - **src**: register external references in crypto bindings (Joyee Cheung) [#&#8203;40239](https://github.com/nodejs/node/pull/40239) - \[[`ef1ace7e88`](https://github.com/nodejs/node/commit/ef1ace7e88)] - **src,crypto**: use `std::variant` in DH params (Darshan Sen) [#&#8203;40457](https://github.com/nodejs/node/pull/40457) - \[[`4433852f62`](https://github.com/nodejs/node/commit/4433852f62)] - **src,crypto**: remove `AllocatedBuffer` from `crypto_cipher.cc` (Darshan Sen) [#&#8203;40400](https://github.com/nodejs/node/pull/40400) - \[[`814126c3ed`](https://github.com/nodejs/node/commit/814126c3ed)] - **src,fs**: remove `ToLocalChecked()` call from `fs::AfterMkdirp()` (Darshan Sen) [#&#8203;40386](https://github.com/nodejs/node/pull/40386) - \[[`d4b45cc249`](https://github.com/nodejs/node/commit/d4b45cc249)] - **src,stream**: remove `*Check*()` calls from non-`Initialize()` functions (Darshan Sen) [#&#8203;40425](https://github.com/nodejs/node/pull/40425) - \[[`bac7fe0797`](https://github.com/nodejs/node/commit/bac7fe0797)] - **stream**: remove no longer necessary ComposeDuplex (Robert Nagy) [#&#8203;40545](https://github.com/nodejs/node/pull/40545) - \[[`e58cce49fd`](https://github.com/nodejs/node/commit/e58cce49fd)] - **test**: disable warnings to fix flaky test (Antoine du Hamel) [#&#8203;40739](https://github.com/nodejs/node/pull/40739) - \[[`8c103ab2ff`](https://github.com/nodejs/node/commit/8c103ab2ff)] - **test**: skip macos sandbox test with builtin modules path (Michaël Zasso) [#&#8203;40607](https://github.com/nodejs/node/pull/40607) - \[[`ac3bc6eed0`](https://github.com/nodejs/node/commit/ac3bc6eed0)] - **test**: add semicolon after chunk size (Luigi Pinca) [#&#8203;40487](https://github.com/nodejs/node/pull/40487) - \[[`95fe9bb922`](https://github.com/nodejs/node/commit/95fe9bb922)] - **test**: deflake http2-cancel-while-client-reading (Luigi Pinca) [#&#8203;40659](https://github.com/nodejs/node/pull/40659) - \[[`dfd0215266`](https://github.com/nodejs/node/commit/dfd0215266)] - **test**: avoid deep comparisons with literals (Tobias Nießen) [#&#8203;40634](https://github.com/nodejs/node/pull/40634) - \[[`5020f634b8`](https://github.com/nodejs/node/commit/5020f634b8)] - **test**: mark test-policy-integrity flaky on Windows (Rich Trott) [#&#8203;40684](https://github.com/nodejs/node/pull/40684) - \[[`8fa1c61e40`](https://github.com/nodejs/node/commit/8fa1c61e40)] - **test**: fix test-datetime-change-notify after daylight change (Piotr Rybak) [#&#8203;40684](https://github.com/nodejs/node/pull/40684) - \[[`179a5c5436`](https://github.com/nodejs/node/commit/179a5c5436)] - **test**: test `crypto.setEngine()` using an actual engine (Darshan Sen) [#&#8203;40481](https://github.com/nodejs/node/pull/40481) - \[[`cf6ded4db5`](https://github.com/nodejs/node/commit/cf6ded4db5)] - **test**: use conventional argument order in assertion (Tobias Nießen) [#&#8203;40591](https://github.com/nodejs/node/pull/40591) - \[[`aefb097d6a`](https://github.com/nodejs/node/commit/aefb097d6a)] - **test**: fix test description (Luigi Pinca) [#&#8203;40486](https://github.com/nodejs/node/pull/40486) - \[[`126e669b84`](https://github.com/nodejs/node/commit/126e669b84)] - **test,doc**: correct documentation for runBenchmark() (Rich Trott) [#&#8203;40683](https://github.com/nodejs/node/pull/40683) - \[[`1844463ce2`](https://github.com/nodejs/node/commit/1844463ce2)] - **test,tools**: increase pummel/benchmark test timeout from 4x to 6x (Rich Trott) [#&#8203;40684](https://github.com/nodejs/node/pull/40684) - \[[`f731f5ffb5`](https://github.com/nodejs/node/commit/f731f5ffb5)] - **test,tools**: increase timeout for benchmark tests (Rich Trott) [#&#8203;40684](https://github.com/nodejs/node/pull/40684) - \[[`bbc10f1849`](https://github.com/nodejs/node/commit/bbc10f1849)] - **tools**: simplify and fix commit queue (Michaël Zasso) [#&#8203;40742](https://github.com/nodejs/node/pull/40742) - \[[`a3df50d810`](https://github.com/nodejs/node/commit/a3df50d810)] - **tools**: ensure the PR was not pushed before merging (Antoine du Hamel) [#&#8203;40747](https://github.com/nodejs/node/pull/40747) - \[[`306d953c15`](https://github.com/nodejs/node/commit/306d953c15)] - **tools**: update ESLint to 8.2.0 (Luigi Pinca) [#&#8203;40734](https://github.com/nodejs/node/pull/40734) - \[[`b7e736843c`](https://github.com/nodejs/node/commit/b7e736843c)] - **tools**: use GitHub Squash and Merge feature when using CQ (Antoine du Hamel) [#&#8203;40666](https://github.com/nodejs/node/pull/40666) - \[[`50d102ec08`](https://github.com/nodejs/node/commit/50d102ec08)] - **tools**: fix bug in `prefer-primordials` ESLint rule (Antoine du Hamel) [#&#8203;40628](https://github.com/nodejs/node/pull/40628) - \[[`ec2cadef85`](https://github.com/nodejs/node/commit/ec2cadef85)] - **tools**: add script to update c-ares (Richard Lau) [#&#8203;40660](https://github.com/nodejs/node/pull/40660) - \[[`5daa313215`](https://github.com/nodejs/node/commit/5daa313215)] - **tools**: notify user if format-md needs to be run (Rich Trott) [#&#8203;40647](https://github.com/nodejs/node/pull/40647) - \[[`0787c781ce`](https://github.com/nodejs/node/commit/0787c781ce)] - **tools**: abort CQ session when landing several commits (Antoine du Hamel) [#&#8203;40577](https://github.com/nodejs/node/pull/40577) - \[[`ddc44ddfd9`](https://github.com/nodejs/node/commit/ddc44ddfd9)] - **tools**: fix commit-lint workflow (Antoine du Hamel) [#&#8203;40673](https://github.com/nodejs/node/pull/40673) - \[[`47eddd7076`](https://github.com/nodejs/node/commit/47eddd7076)] - **tools**: avoid unnecessary escaping in markdown formatter (Rich Trott) [#&#8203;40645](https://github.com/nodejs/node/pull/40645) - \[[`c700de3705`](https://github.com/nodejs/node/commit/c700de3705)] - **tools**: avoid fetch extra commits when validating commit messages (Antoine du Hamel) [#&#8203;39128](https://github.com/nodejs/node/pull/39128) - \[[`716963484b`](https://github.com/nodejs/node/commit/716963484b)] - **tools**: update ESLint to 8.1.0 (Luigi Pinca) [#&#8203;40582](https://github.com/nodejs/node/pull/40582) - \[[`9cb2116608`](https://github.com/nodejs/node/commit/9cb2116608)] - **tools**: fix formatting of warning message in update-authors.js (Rich Trott) [#&#8203;40600](https://github.com/nodejs/node/pull/40600) - \[[`507f1dbc8d`](https://github.com/nodejs/node/commit/507f1dbc8d)] - **tools**: udpate doc tools to accommodate GFM footnotes (Rich Trott) [#&#8203;40477](https://github.com/nodejs/node/pull/40477) - \[[`c2265a92c3`](https://github.com/nodejs/node/commit/c2265a92c3)] - **tools**: update license-builder.sh for OpenSSL (Rich Trott) [#&#8203;40540](https://github.com/nodejs/node/pull/40540) - \[[`16624b404c`](https://github.com/nodejs/node/commit/16624b404c)] - **tools,meta**: remove exclusions from AUTHORS (Rich Trott) [#&#8203;40648](https://github.com/nodejs/node/pull/40648) - \[[`a95e344fe5`](https://github.com/nodejs/node/commit/a95e344fe5)] - **tty**: support more CI services in `getColorDepth` (Richie Bendall) [#&#8203;40385](https://github.com/nodejs/node/pull/40385) - \[[`b4194ff349`](https://github.com/nodejs/node/commit/b4194ff349)] - **typings**: add more bindings typings (Mestery) [#&#8203;40415](https://github.com/nodejs/node/pull/40415) - \[[`da859b56cb`](https://github.com/nodejs/node/commit/da859b56cb)] - **typings**: add JSDoc typings for inspector (Voltrex) [#&#8203;38390](https://github.com/nodejs/node/pull/38390) - \[[`90aa96dc44`](https://github.com/nodejs/node/commit/90aa96dc44)] - **typings**: improve internal bindings typings (Mestery) [#&#8203;40411](https://github.com/nodejs/node/pull/40411) - \[[`1e9f3cc522`](https://github.com/nodejs/node/commit/1e9f3cc522)] - **typings**: separate `internalBinding` typings (Mestery) [#&#8203;40409](https://github.com/nodejs/node/pull/40409) - \[[`fbeb895ca6`](https://github.com/nodejs/node/commit/fbeb895ca6)] - **(SEMVER-MINOR)** **v8**: multi-tenant promise hook api (Stephen Belanger) [#&#8203;39283](https://github.com/nodejs/node/pull/39283) ### [`v17.0.1`](https://github.com/nodejs/node/releases/v17.0.1) [Compare Source](https://github.com/nodejs/node/compare/v17.0.0...v17.0.1) ##### Notable Changes ##### Fixed distribution for native addon builds This release fixes an issue introduced in Node.js v17.0.0, where some V8 headers were missing from the distributed tarball, making it impossible to build native addons. These headers are now included. [#&#8203;40526](https://github.com/nodejs/node/pull/40526) ##### Fixed stream issues - Fixed a regression in `stream.promises.pipeline`, which was introduced in version 16.10.0, is fixed. It is now possible again to pass an array of streams to the function. [#&#8203;40193](https://github.com/nodejs/node/pull/40193) - Fixed a bug in `stream.Duplex.from`, which didn't work properly when an async generator function was passed to it. [#&#8203;40499](https://github.com/nodejs/node/pull/40499) ##### Commits - \[[`3f033556c3`](https://github.com/nodejs/node/commit/3f033556c3)] - **build**: include missing V8 headers in distribution (Michaël Zasso) [#&#8203;40526](https://github.com/nodejs/node/pull/40526) - \[[`adbd92ef1d`](https://github.com/nodejs/node/commit/adbd92ef1d)] - **crypto**: avoid double free (Michael Dawson) [#&#8203;40380](https://github.com/nodejs/node/pull/40380) - \[[`8dce85aadc`](https://github.com/nodejs/node/commit/8dce85aadc)] - **doc**: format doc/api/\*.md with markdown formatter (Rich Trott) [#&#8203;40403](https://github.com/nodejs/node/pull/40403) - \[[`977016a72f`](https://github.com/nodejs/node/commit/977016a72f)] - **doc**: specify that maxFreeSockets is per host (Luigi Pinca) [#&#8203;40483](https://github.com/nodejs/node/pull/40483) - \[[`f9f2442739`](https://github.com/nodejs/node/commit/f9f2442739)] - **src**: add missing inialization in agent.h (Michael Dawson) [#&#8203;40379](https://github.com/nodejs/node/pull/40379) - \[[`111f0bd9b6`](https://github.com/nodejs/node/commit/111f0bd9b6)] - **stream**: fix fromAsyncGen (Robert Nagy) [#&#8203;40499](https://github.com/nodejs/node/pull/40499) - \[[`b84f101049`](https://github.com/nodejs/node/commit/b84f101049)] - **stream**: support array of streams in promises pipeline (Mestery) [#&#8203;40193](https://github.com/nodejs/node/pull/40193) - \[[`3f7c503b69`](https://github.com/nodejs/node/commit/3f7c503b69)] - **test**: adjust CLI flags test to ignore blank lines in doc (Rich Trott) [#&#8203;40403](https://github.com/nodejs/node/pull/40403) - \[[`7c42d9fcc6`](https://github.com/nodejs/node/commit/7c42d9fcc6)] - **test**: split test-crypto-dh.js (Joyee Cheung) [#&#8203;40451](https://github.com/nodejs/node/pull/40451) ### [`v17.0.0`](https://github.com/nodejs/node/releases/v17.0.0) [Compare Source](https://github.com/nodejs/node/compare/v16.15.0...v17.0.0) ##### Notable Changes ##### Deprecations and Removals - \[[`f182b9b29f`](https://github.com/nodejs/node/commit/f182b9b29f)] - **(SEMVER-MAJOR)** **dns**: runtime deprecate type coercion of `dns.lookup` options (Antoine du Hamel) [#&#8203;39793](https://github.com/nodejs/node/pull/39793) - \[[`4b030d0573`](https://github.com/nodejs/node/commit/4b030d0573)] - **doc**: deprecate (doc-only) http abort related (dr-js) [#&#8203;36670](https://github.com/nodejs/node/pull/36670) - \[[`36e2ffe6dc`](https://github.com/nodejs/node/commit/36e2ffe6dc)] - **(SEMVER-MAJOR)** **module**: subpath folder mappings EOL (Guy Bedford) [#&#8203;40121](https://github.com/nodejs/node/pull/40121) - \[[`64287e4d45`](https://github.com/nodejs/node/commit/64287e4d45)] - **(SEMVER-MAJOR)** **module**: runtime deprecate trailing slash patterns (Guy Bedford) [#&#8203;40117](https://github.com/nodejs/node/pull/40117) ##### OpenSSL 3.0 Node.js now includes OpenSSL 3.0, specifically [quictls/openssl](https://github.com/quictls/openssl) which provides QUIC support. With OpenSSL 3.0 FIPS support is again available using the new FIPS module. For details about how to build Node.js with FIPS support please see [BUILDING.md](https://github.com/nodejs/node/blob/master/BUILDING.md#building-nodejs-with-fips-compliant-openssl). While OpenSSL 3.0 APIs should be mostly compatible with those provided by OpenSSL 1.1.1, we do anticipate some ecosystem impact due to tightened restrictions on the allowed algorithms and key sizes. If you hit an `ERR_OSSL_EVP_UNSUPPORTED` error in your application with Node.js 17, it’s likely that your application or a module you’re using is attempting to use an algorithm or key size which is no longer allowed by default with OpenSSL 3.0. A command-line option, `--openssl-legacy-provider`, has been added to revert to the legacy provider as a temporary workaround for these tightened restrictions. For details about all the features in OpenSSL 3.0 please see the [OpenSSL 3.0 release blog](https://www.openssl.org/blog/blog/2021/09/07/OpenSSL3.Final). Contributed in https://github.com/nodejs/node/pull/38512, https://github.com/nodejs/node/pull/40478 ##### V8 9.5 The V8 JavaScript engine is updated to V8 9.5. This release comes with additional supported types for the `Intl.DisplayNames` API and Extended `timeZoneName` options in the `Intl.DateTimeFormat` API. You can read more details in the V8 9.5 release post - https://v8.dev/blog/v8-release-95. Contributed by Michaël Zasso - https://github.com/nodejs/node/pull/40178 ##### Readline Promise API The `readline` module provides an interface for reading data from a Readable stream (such as `process.stdin`) one line at a time. The following simple example illustrates the basic use of the `readline` module: ```mjs import * as readline from 'node:readline/promises'; import { stdin as input, stdout as output } from 'process'; const rl = readline.createInterface({ input, output }); const answer = await rl.question('What do you think of Node.js? '); console.log(`Thank you for your valuable feedback: ${answer}`); rl.close(); ``` Contributed by Antoine du Hamel - https://github.com/nodejs/node/pull/37947 ##### Other Notable Changes - \[[`1b2749ecbe`](https://github.com/nodejs/node/commit/1b2749ecbe)] - **(SEMVER-MAJOR)** **dns**: default to verbatim=true in dns.lookup() (treysis) [#&#8203;39987](https://github.com/nodejs/node/pull/39987) - \[[`59d3d542d6`](https://github.com/nodejs/node/commit/59d3d542d6)] - **(SEMVER-MAJOR)** **errors**: print Node.js version on fatal exceptions that cause exit (Divlo) [#&#8203;38332](https://github.com/nodejs/node/pull/38332) - \[[`a35b7e0427`](https://github.com/nodejs/node/commit/a35b7e0427)] - **deps**: upgrade npm to 8.1.0 (npm team) [#&#8203;40463](https://github.com/nodejs/node/pull/40463) - \[[`6cd12be347`](https://github.com/nodejs/node/commit/6cd12be347)] - **(SEMVER-MINOR)** **fs**: add FileHandle.prototype.readableWebStream() (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331) - \[[`d0a898681f`](https://github.com/nodejs/node/commit/d0a898681f)] - **(SEMVER-MAJOR)** **lib**: add structuredClone() global (Ethan Arrowood) [#&#8203;39759](https://github.com/nodejs/node/pull/39759) - \[[`e4b1fb5e64`](https://github.com/nodejs/node/commit/e4b1fb5e64)] - **(SEMVER-MAJOR)** **lib**: expose `DOMException` as global (Khaidi Chu) [#&#8203;39176](https://github.com/nodejs/node/pull/39176) - \[[`0738a2b7bd`](https://github.com/nodejs/node/commit/0738a2b7bd)] - **(SEMVER-MAJOR)** **stream**: finished should error on errored stream (Robert Nagy) [#&#8203;39235](https://github.com/nodejs/node/pull/39235) ##### Semver-Major Commits - \[[`9dfa30bdd5`](https://github.com/nodejs/node/commit/9dfa30bdd5)] - **(SEMVER-MAJOR)** **build**: compile with C++17 (MSVC) (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807) - \[[`9f0bc602e4`](https://github.com/nodejs/node/commit/9f0bc602e4)] - **(SEMVER-MAJOR)** **build**: compile with --gnu++17 (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807) - \[[`62719c5fd2`](https://github.com/nodejs/node/commit/62719c5fd2)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.5.172.19 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`66da32c045`](https://github.com/nodejs/node/commit/66da32c045)] - **(SEMVER-MAJOR)** **deps,test,src,doc,tools**: update to OpenSSL 3.0 (Daniel Bevenius) [#&#8203;38512](https://github.com/nodejs/node/pull/38512) - \[[`40c6e838df`](https://github.com/nodejs/node/commit/40c6e838df)] - **(SEMVER-MAJOR)** **dgram**: tighten `address` validation in `socket.send` (Voltrex) [#&#8203;39190](https://github.com/nodejs/node/pull/39190) - \[[`f182b9b29f`](https://github.com/nodejs/node/commit/f182b9b29f)] - **(SEMVER-MAJOR)** **dns**: runtime deprecate type coercion of `dns.lookup` options (Antoine du Hamel) [#&#8203;39793](https://github.com/nodejs/node/pull/39793) - \[[`1b2749ecbe`](https://github.com/nodejs/node/commit/1b2749ecbe)] - **(SEMVER-MAJOR)** **dns**: default to verbatim=true in dns.lookup() (treysis) [#&#8203;39987](https://github.com/nodejs/node/pull/39987) - \[[`ae876d420c`](https://github.com/nodejs/node/commit/ae876d420c)] - **(SEMVER-MAJOR)** **doc**: update minimum supported FreeBSD to 12.2 (Michaël Zasso) [#&#8203;40179](https://github.com/nodejs/node/pull/40179) - \[[`59d3d542d6`](https://github.com/nodejs/node/commit/59d3d542d6)] - **(SEMVER-MAJOR)** **errors**: print Node.js version on fatal exceptions that cause exit (Divlo) [#&#8203;38332](https://github.com/nodejs/node/pull/38332) - \[[`f9447b71a6`](https://github.com/nodejs/node/commit/f9447b71a6)] - **(SEMVER-MAJOR)** **fs**: fix rmsync error swallowing (Nitzan Uziely) [#&#8203;38684](https://github.com/nodejs/node/pull/38684) - \[[`f27b7cf95c`](https://github.com/nodejs/node/commit/f27b7cf95c)] - **(SEMVER-MAJOR)** **fs**: aggregate errors in fsPromises to avoid error swallowing (Nitzan Uziely) [#&#8203;38259](https://github.com/nodejs/node/pull/38259) - \[[`d0a898681f`](https://github.com/nodejs/node/commit/d0a898681f)] - **(SEMVER-MAJOR)** **lib**: add structuredClone() global (Ethan Arrowood) [#&#8203;39759](https://github.com/nodejs/node/pull/39759) - \[[`e4b1fb5e64`](https://github.com/nodejs/node/commit/e4b1fb5e64)] - **(SEMVER-MAJOR)** **lib**: expose `DOMException` as global (Khaidi Chu) [#&#8203;39176](https://github.com/nodejs/node/pull/39176) - \[[`36e2ffe6dc`](https://github.com/nodejs/node/commit/36e2ffe6dc)] - **(SEMVER-MAJOR)** **module**: subpath folder mappings EOL (Guy Bedford) [#&#8203;40121](https://github.com/nodejs/node/pull/40121) - \[[`64287e4d45`](https://github.com/nodejs/node/commit/64287e4d45)] - **(SEMVER-MAJOR)** **module**: runtime deprecate trailing slash patterns (Guy Bedford) [#&#8203;40117](https://github.com/nodejs/node/pull/40117) - \[[`707dd77d86`](https://github.com/nodejs/node/commit/707dd77d86)] - **(SEMVER-MAJOR)** **readline**: validate `AbortSignal`s and remove unused event listeners (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947) - \[[`8122d243ae`](https://github.com/nodejs/node/commit/8122d243ae)] - **(SEMVER-MAJOR)** **readline**: introduce promise-based API (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947) - \[[`592d1c3d44`](https://github.com/nodejs/node/commit/592d1c3d44)] - **(SEMVER-MAJOR)** **readline**: refactor `Interface` to ES2015 class (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947) - \[[`3f619407fe`](https://github.com/nodejs/node/commit/3f619407fe)] - **(SEMVER-MAJOR)** **src**: allow CAP_NET_BIND_SERVICE in SafeGetenv (Daniel Bevenius) [#&#8203;37727](https://github.com/nodejs/node/pull/37727) - \[[`0a7f850123`](https://github.com/nodejs/node/commit/0a7f850123)] - **(SEMVER-MAJOR)** **src**: return Maybe from a couple of functions (Darshan Sen) [#&#8203;39603](https://github.com/nodejs/node/pull/39603) - \[[`bdaf51bae7`](https://github.com/nodejs/node/commit/bdaf51bae7)] - **(SEMVER-MAJOR)** **src**: allow custom PageAllocator in NodePlatform (Shelley Vohr) [#&#8203;38362](https://github.com/nodejs/node/pull/38362) - \[[`0c6f345cda`](https://github.com/nodejs/node/commit/0c6f345cda)] - **(SEMVER-MAJOR)** **stream**: fix highwatermark threshold and add the missing error (Rongjian Zhang) [#&#8203;38700](https://github.com/nodejs/node/pull/38700) - \[[`0e841b45c2`](https://github.com/nodejs/node/commit/0e841b45c2)] - **(SEMVER-MAJOR)** **stream**: don't emit 'data' after 'error' or 'close' (Robert Nagy) [#&#8203;39639](https://github.com/nodejs/node/pull/39639) - \[[`ef992f6de9`](https://github.com/nodejs/node/commit/ef992f6de9)] - **(SEMVER-MAJOR)** **stream**: do not emit `end` on readable error (Szymon Marczak) [#&#8203;39607](https://github.com/nodejs/node/pull/39607) - \[[`efd40eadab`](https://github.com/nodejs/node/commit/efd40eadab)] - **(SEMVER-MAJOR)** **stream**: forward errored to callback (Robert Nagy) [#&#8203;39364](https://github.com/nodejs/node/pull/39364) - \[[`09d8c0c8d2`](https://github.com/nodejs/node/commit/09d8c0c8d2)] - **(SEMVER-MAJOR)** **stream**: destroy readable on read error (Robert Nagy) [#&#8203;39342](https://github.com/nodejs/node/pull/39342) - \[[`a5dec3a470`](https://github.com/nodejs/node/commit/a5dec3a470)] - **(SEMVER-MAJOR)** **stream**: validate abort signal (Robert Nagy) [#&#8203;39346](https://github.com/nodejs/node/pull/39346) - \[[`bb275ef2a4`](https://github.com/nodejs/node/commit/bb275ef2a4)] - **(SEMVER-MAJOR)** **stream**: unify stream utils (Robert Nagy) [#&#8203;39294](https://github.com/nodejs/node/pull/39294) - \[[`b2ae12d422`](https://github.com/nodejs/node/commit/b2ae12d422)] - **(SEMVER-MAJOR)** **stream**: throw on premature close in Readable\[AsyncIterator] (Darshan Sen) [#&#8203;39117](https://github.com/nodejs/node/pull/39117) - \[[`0738a2b7bd`](https://github.com/nodejs/node/commit/0738a2b7bd)] - **(SEMVER-MAJOR)** **stream**: finished should error on errored stream (Robert Nagy) [#&#8203;39235](https://github.com/nodejs/node/pull/39235) - \[[`954217adda`](https://github.com/nodejs/node/commit/954217adda)] - **(SEMVER-MAJOR)** **stream**: error Duplex write/read if not writable/readable (Robert Nagy) [#&#8203;34385](https://github.com/nodejs/node/pull/34385) - \[[`f4609bdf3f`](https://github.com/nodejs/node/commit/f4609bdf3f)] - **(SEMVER-MAJOR)** **stream**: bypass legacy destroy for pipeline and async iteration (Robert Nagy) [#&#8203;38505](https://github.com/nodejs/node/pull/38505) - \[[`e1e669b109`](https://github.com/nodejs/node/commit/e1e669b109)] - **(SEMVER-MAJOR)** **url**: throw invalid this on detached accessors (James M Snell) [#&#8203;39752](https://github.com/nodejs/node/pull/39752) - \[[`70157b9cb7`](https://github.com/nodejs/node/commit/70157b9cb7)] - **(SEMVER-MAJOR)** **url**: forbid certain confusable changes from being introduced by toASCII (Timothy Gu) [#&#8203;38631](https://github.com/nodejs/node/pull/38631) ##### Semver-Minor Commits - \[[`6cd12be347`](https://github.com/nodejs/node/commit/6cd12be347)] - **(SEMVER-MINOR)** **fs**: add FileHandle.prototype.readableWebStream() (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331) - \[[`341312d78a`](https://github.com/nodejs/node/commit/341312d78a)] - **(SEMVER-MINOR)** **readline**: add `autoCommit` option (Antoine du Hamel) [#&#8203;37947](https://github.com/nodejs/node/pull/37947) - \[[`1d2f37d970`](https://github.com/nodejs/node/commit/1d2f37d970)] - **(SEMVER-MINOR)** **src**: add --openssl-legacy-provider option (Daniel Bevenius) [#&#8203;40478](https://github.com/nodejs/node/pull/40478) - \[[`3b72788afb`](https://github.com/nodejs/node/commit/3b72788afb)] - **(SEMVER-MINOR)** **src**: add flags for controlling process behavior (Cheng Zhao) [#&#8203;40339](https://github.com/nodejs/node/pull/40339) - \[[`8306051001`](https://github.com/nodejs/node/commit/8306051001)] - **(SEMVER-MINOR)** **stream**: add readableDidRead (Robert Nagy) [#&#8203;36820](https://github.com/nodejs/node/pull/36820) - \[[`08ffbd115e`](https://github.com/nodejs/node/commit/08ffbd115e)] - **(SEMVER-MINOR)** **vm**: add support for import assertions in dynamic imports (Antoine du Hamel) [#&#8203;40249](https://github.com/nodejs/node/pull/40249) ##### Semver-Patch Commits - \[[`ed01811e71`](https://github.com/nodejs/node/commit/ed01811e71)] - **benchmark**: increase crypto DSA keygen params (Brian White) [#&#8203;40416](https://github.com/nodejs/node/pull/40416) - \[[`cb93fdbba5`](https://github.com/nodejs/node/commit/cb93fdbba5)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`ed76b49834`](https://github.com/nodejs/node/commit/ed76b49834)] - **build**: fix actions pull request's branch (Mestery) [#&#8203;40494](https://github.com/nodejs/node/pull/40494) - \[[`6baea14506`](https://github.com/nodejs/node/commit/6baea14506)] - **build**: avoid run find inactive authors on forked repo (Jiawen Geng) [#&#8203;40465](https://github.com/nodejs/node/pull/40465) - \[[`f9996d5b80`](https://github.com/nodejs/node/commit/f9996d5b80)] - **build**: include new public V8 headers in distribution (Michaël Zasso) [#&#8203;40423](https://github.com/nodejs/node/pull/40423) - \[[`983b757f3f`](https://github.com/nodejs/node/commit/983b757f3f)] - **build**: update codeowners-validator to 0.6 (FrankQiu) [#&#8203;40307](https://github.com/nodejs/node/pull/40307) - \[[`73c3885e10`](https://github.com/nodejs/node/commit/73c3885e10)] - **build**: remove duplicate check for authors.yml (Rich Trott) [#&#8203;40393](https://github.com/nodejs/node/pull/40393) - \[[`92090d3435`](https://github.com/nodejs/node/commit/92090d3435)] - **build**: make scripts in gyp run with right python (Cheng Zhao) [#&#8203;39730](https://github.com/nodejs/node/pull/39730) - \[[`28f711b552`](https://github.com/nodejs/node/commit/28f711b552)] - **crypto**: remove incorrect constructor invocation (gc) [#&#8203;40300](https://github.com/nodejs/node/pull/40300) - \[[`228e703ded`](https://github.com/nodejs/node/commit/228e703ded)] - **deps**: workaround debug link error on Windows (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807) - \[[`a35b7e0427`](https://github.com/nodejs/node/commit/a35b7e0427)] - **deps**: upgrade npm to 8.1.0 (npm team) [#&#8203;40463](https://github.com/nodejs/node/pull/40463) - \[[`d434c5382a`](https://github.com/nodejs/node/commit/d434c5382a)] - **deps**: regenerate OpenSSL arch files (Daniel Bevenius) [#&#8203;40478](https://github.com/nodejs/node/pull/40478) - \[[`2cebd5f02b`](https://github.com/nodejs/node/commit/2cebd5f02b)] - **deps**: add missing legacyprov.c source (Daniel Bevenius) [#&#8203;40478](https://github.com/nodejs/node/pull/40478) - \[[`bf82dcd5ba`](https://github.com/nodejs/node/commit/bf82dcd5ba)] - **deps**: patch V8 to 9.5.172.21 (Michaël Zasso) [#&#8203;40432](https://github.com/nodejs/node/pull/40432) - \[[`795108a63d`](https://github.com/nodejs/node/commit/795108a63d)] - **deps**: V8: make V8 9.5 ABI-compatible with 9.6 (Michaël Zasso) [#&#8203;40422](https://github.com/nodejs/node/pull/40422) - \[[`5d7bd8616e`](https://github.com/nodejs/node/commit/5d7bd8616e)] - **deps**: suppress zlib compiler warnings (Daniel Bevenius) [#&#8203;40343](https://github.com/nodejs/node/pull/40343) - \[[`fe84cd453d`](https://github.com/nodejs/node/commit/fe84cd453d)] - **deps**: upgrade Corepack to 0.10 (Maël Nison) [#&#8203;40374](https://github.com/nodejs/node/pull/40374) - \[[`2d503ed3ff`](https://github.com/nodejs/node/commit/2d503ed3ff)] - **deps**: V8: backport [`239898e`](https://github.com/nodejs/node/commit/239898ef8c77) (Felix Yan) [#&#8203;39827](https://github.com/nodejs/node/pull/39827) - \[[`c9296b190f`](https://github.com/nodejs/node/commit/c9296b190f)] - **deps**: V8: cherry-pick [`2a0bc36`](https://github.com/nodejs/node/commit/2a0bc36dec12) (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`5b358370ad`](https://github.com/nodejs/node/commit/5b358370ad)] - **deps**: V8: cherry-pick [`cf21eb3`](https://github.com/nodejs/node/commit/cf21eb36b975) (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`228e703ded`](https://github.com/nodejs/node/commit/228e703ded)] - **deps**: workaround debug link error on Windows (Richard Lau) [#&#8203;38807](https://github.com/nodejs/node/pull/38807) - \[[`cca9b95523`](https://github.com/nodejs/node/commit/cca9b95523)] - **dgram**: add `nread` assertion to `UDPWrap::OnRecv` (Darshan Sen) [#&#8203;40295](https://github.com/nodejs/node/pull/40295) - \[[`7c77db0243`](https://github.com/nodejs/node/commit/7c77db0243)] - **dns**: refactor and use validators (Voltrex) [#&#8203;40022](https://github.com/nodejs/node/pull/40022) - \[[`a278117f28`](https://github.com/nodejs/node/commit/a278117f28)] - **doc**: update Collaborator guide to reflect GitHub web UI update (Antoine du Hamel) [#&#8203;40456](https://github.com/nodejs/node/pull/40456) - \[[`4cf5563147`](https://github.com/nodejs/node/commit/4cf5563147)] - **doc**: indicate n-api out params that may be NULL (Isaac Brodsky) [#&#8203;40371](https://github.com/nodejs/node/pull/40371) - \[[`15ce81a464`](https://github.com/nodejs/node/commit/15ce81a464)] - **doc**: remove ESLint comments which were breaking the CJS/ESM toggles (Mark Skelton) [#&#8203;40408](https://github.com/nodejs/node/pull/40408) - \[[`54a85d6bb5`](https://github.com/nodejs/node/commit/54a85d6bb5)] - **doc**: add pronouns for tniessen to README (Tobias Nießen) [#&#8203;40412](https://github.com/nodejs/node/pull/40412) - \[[`40db88b7b5`](https://github.com/nodejs/node/commit/40db88b7b5)] - **doc**: format changelogs (Rich Trott) [#&#8203;40388](https://github.com/nodejs/node/pull/40388) - \[[`4f68839910`](https://github.com/nodejs/node/commit/4f68839910)] - **doc**: fix missing variable in deepStrictEqual example (OliverOdo) [#&#8203;40396](https://github.com/nodejs/node/pull/40396) - \[[`ca6adcf37e`](https://github.com/nodejs/node/commit/ca6adcf37e)] - **doc**: fix asyncLocalStorage.run() description (Constantine Kim) [#&#8203;40381](https://github.com/nodejs/node/pull/40381) - \[[`7dd3adf6dd`](https://github.com/nodejs/node/commit/7dd3adf6dd)] - **doc**: fix typos in n-api docs (Ignacio Carbajo) [#&#8203;40402](https://github.com/nodejs/node/pull/40402) - \[[`eb65871ab4`](https://github.com/nodejs/node/commit/eb65871ab4)] - **doc**: format doc/guides using format-md task (Rich Trott) [#&#8203;40358](https://github.com/nodejs/node/pull/40358) - \[[`0d50dfdf61`](https://github.com/nodejs/node/commit/0d50dfdf61)] - **doc**: improve phrasing in fs.md (Arslan Ali) [#&#8203;40255](https://github.com/nodejs/node/pull/40255) - \[[`7723148758`](https://github.com/nodejs/node/commit/7723148758)] - **doc**: add link to core promises tracking issue (Michael Dawson) [#&#8203;40355](https://github.com/nodejs/node/pull/40355) - \[[`ccee352630`](https://github.com/nodejs/node/commit/ccee352630)] - **doc**: esm resolver spec refactoring for deprecations (Guy Bedford) [#&#8203;40314](https://github.com/nodejs/node/pull/40314) - \[[`1fc1b0f5f2`](https://github.com/nodejs/node/commit/1fc1b0f5f2)] - **doc**: claim ABI version for Electron v17 (Milan Burda) [#&#8203;40320](https://github.com/nodejs/node/pull/40320) - \[[`0d2b6aca60`](https://github.com/nodejs/node/commit/0d2b6aca60)] - **doc**: assign missing deprecation number (Michaël Zasso) [#&#8203;40324](https://github.com/nodejs/node/pull/40324) - \[[`4bd8e0efa0`](https://github.com/nodejs/node/commit/4bd8e0efa0)] - **doc**: fix typo in ESM example (Tobias Nießen) [#&#8203;40275](https://github.com/nodejs/node/pull/40275) - \[[`03d25fe816`](https://github.com/nodejs/node/commit/03d25fe816)] - **doc**: fix typo in esm.md (Mason Malone) [#&#8203;40273](https://github.com/nodejs/node/pull/40273) - \[[`6199441b00`](https://github.com/nodejs/node/commit/6199441b00)] - **doc**: correct ESM load hook table header (Jacob) [#&#8203;40234](https://github.com/nodejs/node/pull/40234) - \[[`78962d1ca1`](https://github.com/nodejs/node/commit/78962d1ca1)] - **doc**: mark readline promise implementation as experimental (Antoine du Hamel) [#&#8203;40211](https://github.com/nodejs/node/pull/40211) - \[[`4b030d0573`](https://github.com/nodejs/node/commit/4b030d0573)] - **doc**: deprecate (doc-only) http abort related (dr-js) [#&#8203;36670](https://github.com/nodejs/node/pull/36670) - \[[`bbd4c6eee9`](https://github.com/nodejs/node/commit/bbd4c6eee9)] - **doc**: claim ABI version for Electron v15 and v16 (Samuel Attard) [#&#8203;39950](https://github.com/nodejs/node/pull/39950) - \[[`3e774a0500`](https://github.com/nodejs/node/commit/3e774a0500)] - **doc**: fix history for `fs.WriteStream` `open` event (Antoine du Hamel) [#&#8203;39972](https://github.com/nodejs/node/pull/39972) - \[[`6fdd5827f0`](https://github.com/nodejs/node/commit/6fdd5827f0)] - **doc**: anchor link parity between markdown and html-generated docs (foxxyz) [#&#8203;39304](https://github.com/nodejs/node/pull/39304) - \[[`7b7a0331f4`](https://github.com/nodejs/node/commit/7b7a0331f4)] - **doc**: reset added: version to REPLACEME (Luigi Pinca) [#&#8203;39901](https://github.com/nodejs/node/pull/39901) - \[[`58257b7c61`](https://github.com/nodejs/node/commit/58257b7c61)] - **doc**: fix typo in webstreams.md (Luigi Pinca) [#&#8203;39898](https://github.com/nodejs/node/pull/39898) - \[[`df22736d80`](https://github.com/nodejs/node/commit/df22736d80)] - **esm**: consolidate ESM loader hooks (Jacob) [#&#8203;37468](https://github.com/nodejs/node/pull/37468) - \[[`ac4f5e2437`](https://github.com/nodejs/node/commit/ac4f5e2437)] - **lib**: refactor to use let (gdccwxx) [#&#8203;40364](https://github.com/nodejs/node/pull/40364) - \[[`3d11bafaa0`](https://github.com/nodejs/node/commit/3d11bafaa0)] - **lib**: make structuredClone spec compliant (voltrexmaster) [#&#8203;40251](https://github.com/nodejs/node/pull/40251) - \[[`48655e17e1`](https://github.com/nodejs/node/commit/48655e17e1)] - **lib,url**: correct URL's argument to pass idlharness (Khaidi Chu) [#&#8203;39848](https://github.com/nodejs/node/pull/39848) - \[[`c0a70203de`](https://github.com/nodejs/node/commit/c0a70203de)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40485](https://github.com/nodejs/node/pull/40485) - \[[`cbc7b5d424`](https://github.com/nodejs/node/commit/cbc7b5d424)] - **meta**: consolidate AUTHORS entries for emanuelbuholzer (Rich Trott) [#&#8203;40469](https://github.com/nodejs/node/pull/40469) - \[[`881174e016`](https://github.com/nodejs/node/commit/881174e016)] - **meta**: consolidate AUTHORS entries for ebickle (Rich Trott) [#&#8203;40447](https://github.com/nodejs/node/pull/40447) - \[[`b80b85e130`](https://github.com/nodejs/node/commit/b80b85e130)] - **meta**: add `typings` to label-pr-config (Mestery) [#&#8203;40401](https://github.com/nodejs/node/pull/40401) - \[[`95cf944736`](https://github.com/nodejs/node/commit/95cf944736)] - **meta**: consolidate AUTHORS entries for evantorrie (Rich Trott) [#&#8203;40430](https://github.com/nodejs/node/pull/40430) - \[[`c350c217f4`](https://github.com/nodejs/node/commit/c350c217f4)] - **meta**: consolidate AUTHORS entries for gabrielschulhof (Rich Trott) [#&#8203;40420](https://github.com/nodejs/node/pull/40420) - \[[`a9411891cf`](https://github.com/nodejs/node/commit/a9411891cf)] - **meta**: consolidate AUTHORS information for geirha (Rich Trott) [#&#8203;40406](https://github.com/nodejs/node/pull/40406) - \[[`0cc37209fa`](https://github.com/nodejs/node/commit/0cc37209fa)] - **meta**: consolidate duplicate AUTHORS entries for hassaanp (Rich Trott) [#&#8203;40391](https://github.com/nodejs/node/pull/40391) - \[[`49b7ec96a4`](https://github.com/nodejs/node/commit/49b7ec96a4)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40392](https://github.com/nodejs/node/pull/40392) - \[[`a3c0713d9e`](https://github.com/nodejs/node/commit/a3c0713d9e)] - **meta**: consolidate AUTHORS entry for thw0rted (Rich Trott) [#&#8203;40387](https://github.com/nodejs/node/pull/40387) - \[[`eaa59571e0`](https://github.com/nodejs/node/commit/eaa59571e0)] - **meta**: update label-pr-config (Mestery) [#&#8203;40199](https://github.com/nodejs/node/pull/40199) - \[[`6a205d7a56`](https://github.com/nodejs/node/commit/6a205d7a56)] - **meta**: use .mailmap to consolidate AUTHORS entries for ide (Rich Trott) [#&#8203;40367](https://github.com/nodejs/node/pull/40367) - \[[`f570109094`](https://github.com/nodejs/node/commit/f570109094)] - **net**: check if option is undefined (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344) - \[[`119558b6a2`](https://github.com/nodejs/node/commit/119558b6a2)] - **net**: remove unused ObjectKeys (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344) - \[[`c7cd8ef6c6`](https://github.com/nodejs/node/commit/c7cd8ef6c6)] - **net**: check objectMode first and then readble || writable (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344) - \[[`46446623f5`](https://github.com/nodejs/node/commit/46446623f5)] - **net**: throw error to object mode in Socket (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344) - \[[`38aa7cc7c7`](https://github.com/nodejs/node/commit/38aa7cc7c7)] - **src**: get embedder options on-demand (Joyee Cheung) [#&#8203;40357](https://github.com/nodejs/node/pull/40357) - \[[`ad4e70c817`](https://github.com/nodejs/node/commit/ad4e70c817)] - **src**: ensure V8 initialized before marking milestone (Shelley Vohr) [#&#8203;40405](https://github.com/nodejs/node/pull/40405) - \[[`a784258444`](https://github.com/nodejs/node/commit/a784258444)] - **src**: remove usage of `AllocatedBuffer` from `stream_*` (Darshan Sen) [#&#8203;40293](https://github.com/nodejs/node/pull/40293) - \[[`f11493dfc9`](https://github.com/nodejs/node/commit/f11493dfc9)] - **src**: add missing initialization (Michael Dawson) [#&#8203;40370](https://github.com/nodejs/node/pull/40370) - \[[`5e248eceb6`](https://github.com/nodejs/node/commit/5e248eceb6)] - **src**: update NODE_MODULE_VERSION to 102 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`3f0b62375b`](https://github.com/nodejs/node/commit/3f0b62375b)] - **stream**: convert premature close to AbortError (Robert Nagy) [#&#8203;39524](https://github.com/nodejs/node/pull/39524) - \[[`79f4d5a345`](https://github.com/nodejs/node/commit/79f4d5a345)] - **stream**: fix toWeb typo (Robert Nagy) [#&#8203;39496](https://github.com/nodejs/node/pull/39496) - \[[`44ee6c2623`](https://github.com/nodejs/node/commit/44ee6c2623)] - **stream**: call done() in consistent fashion (Rich Trott) [#&#8203;39475](https://github.com/nodejs/node/pull/39475) - \[[`09ad64d66d`](https://github.com/nodejs/node/commit/09ad64d66d)] - **stream**: add CompressionStream and DecompressionStream (James M Snell) [#&#8203;39348](https://github.com/nodejs/node/pull/39348) - \[[`a99c230305`](https://github.com/nodejs/node/commit/a99c230305)] - **stream**: implement streams to webstreams adapters (James M Snell) [#&#8203;39134](https://github.com/nodejs/node/pull/39134) - \[[`a5ba28dda2`](https://github.com/nodejs/node/commit/a5ba28dda2)] - **stream**: fix performance regression (Brian White) [#&#8203;39254](https://github.com/nodejs/node/pull/39254) - \[[`ce00381751`](https://github.com/nodejs/node/commit/ce00381751)] - **stream**: use finished for async iteration (Robert Nagy) [#&#8203;39282](https://github.com/nodejs/node/pull/39282) - \[[`e0faf8c3e9`](https://github.com/nodejs/node/commit/e0faf8c3e9)] - **test**: replace common port with specific number (Daijiro Wachi) [#&#8203;40344](https://github.com/nodejs/node/pull/40344) - \[[`8068f40313`](https://github.com/nodejs/node/commit/8068f40313)] - **test**: fix typos in whatwg-webstreams explanations (Tobias Nießen) [#&#8203;40389](https://github.com/nodejs/node/pull/40389) - \[[`eafdeab97b`](https://github.com/nodejs/node/commit/eafdeab97b)] - **test**: add test for readStream.path when fd is specified (Qingyu Deng) [#&#8203;40359](https://github.com/nodejs/node/pull/40359) - \[[`24f045dae2`](https://github.com/nodejs/node/commit/24f045dae2)] - **test**: replace .then chains with await (gdccwxx) [#&#8203;40348](https://github.com/nodejs/node/pull/40348) - \[[`5b4ba52786`](https://github.com/nodejs/node/commit/5b4ba52786)] - **test**: fix "test/common/debugger" identify async function (gdccwxx) [#&#8203;40348](https://github.com/nodejs/node/pull/40348) - \[[`1d84e916d6`](https://github.com/nodejs/node/commit/1d84e916d6)] - **test**: improve test coverage of `fs.ReadStream` with `FileHandle` (Antoine du Hamel) [#&#8203;40018](https://github.com/nodejs/node/pull/40018) - \[[`b63e449b2e`](https://github.com/nodejs/node/commit/b63e449b2e)] - **test**: pass URL's toascii.window.js WPT (Khaidi Chu) [#&#8203;39910](https://github.com/nodejs/node/pull/39910) - \[[`842fd234b7`](https://github.com/nodejs/node/commit/842fd234b7)] - **test**: adapt test-repl to V8 9.5 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`d7b9b9f8d7`](https://github.com/nodejs/node/commit/d7b9b9f8d7)] - **test**: remove test-v8-untrusted-code-mitigations (Ross McIlroy) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`7624917069`](https://github.com/nodejs/node/commit/7624917069)] - **tools**: update tools/lint-md dependencies to support GFM footnotes (Rich Trott) [#&#8203;40445](https://github.com/nodejs/node/pull/40445) - \[[`350a95b89f`](https://github.com/nodejs/node/commit/350a95b89f)] - **tools**: update lint-md dependencies (Rich Trott) [#&#8203;40404](https://github.com/nodejs/node/pull/40404) - \[[`012152d7d6`](https://github.com/nodejs/node/commit/012152d7d6)] - **tools**: udpate [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`43c780e741`](https://github.com/nodejs/node/commit/43c780e741)] - **tools**: remove [@&#8203;babel/plugin-syntax-import-assertions](https://github.com/babel/plugin-syntax-import-assertions) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`b39db95737`](https://github.com/nodejs/node/commit/b39db95737)] - **tools**: remove [@&#8203;bable/plugin-syntax-class-properties](https://github.com/bable/plugin-syntax-class-properties) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`a6fd39f44f`](https://github.com/nodejs/node/commit/a6fd39f44f)] - **tools**: remove [@&#8203;babel/plugin-syntax-top-level-await](https://github.com/babel/plugin-syntax-top-level-await) (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`8ca76eba73`](https://github.com/nodejs/node/commit/8ca76eba73)] - **tools**: update ESLint to 8.0.0 (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`dd8e219d71`](https://github.com/nodejs/node/commit/dd8e219d71)] - **tools**: prepare ESLint rules for 8.0.0 requirements (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`0a1b399781`](https://github.com/nodejs/node/commit/0a1b399781)] - **tools**: fix ESLint update scripts (Rich Trott) [#&#8203;40394](https://github.com/nodejs/node/pull/40394) - \[[`d6d6b050ff`](https://github.com/nodejs/node/commit/d6d6b050ff)] - **tools**: warn about duplicates when generating AUTHORS file (Rich Trott) [#&#8203;40304](https://github.com/nodejs/node/pull/40304) - \[[`1fd984581c`](https://github.com/nodejs/node/commit/1fd984581c)] - **tools**: update V8 gypfiles for 9.5 (Michaël Zasso) [#&#8203;40178](https://github.com/nodejs/node/pull/40178) - \[[`a8a86387fa`](https://github.com/nodejs/node/commit/a8a86387fa)] - **tty**: enable buffering (Robert Nagy) [#&#8203;39253](https://github.com/nodejs/node/pull/39253) - \[[`9467cbadcb`](https://github.com/nodejs/node/commit/9467cbadcb)] - **typings**: define types for os binding (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222) - \[[`70a5b86049`](https://github.com/nodejs/node/commit/70a5b86049)] - **typings**: add missing types to options and util bindings (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222) - \[[`3815a21beb`](https://github.com/nodejs/node/commit/3815a21beb)] - **typings**: define types for timers binding (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222) - \[[`9e64336fbf`](https://github.com/nodejs/node/commit/9e64336fbf)] - **typings**: fix declaration of primordials (Michaël Zasso) [#&#8203;40222](https://github.com/nodejs/node/pull/40222) - \[[`f581f6da94`](https://github.com/nodejs/node/commit/f581f6da94)] - **url**: fix performance regression (Brian White) [#&#8203;39778](https://github.com/nodejs/node/pull/39778) - \[[`02de40246f`](https://github.com/nodejs/node/commit/02de40246f)] - **v8**: remove --harmony-top-level-await (Geoffrey Booth) [#&#8203;40226](https://github.com/nodejs/node/pull/40226) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovate-bot force-pushed renovate/node-18.x from 7868281570 to 4e2d429710 2022-04-21 02:03:51 +00:00 Compare
renovate-bot force-pushed renovate/node-18.x from 4e2d429710 to a70499f3d0 2022-04-21 04:03:54 +00:00 Compare
renovate-bot force-pushed renovate/node-18.x from a70499f3d0 to c2fac9e713 2022-04-21 08:03:51 +00:00 Compare
renovate-bot force-pushed renovate/node-18.x from c2fac9e713 to 920e577c18 2022-04-21 14:03:52 +00:00 Compare
renovate-bot force-pushed renovate/node-18.x from 920e577c18 to 715aedcd5a 2022-04-21 15:03:59 +00:00 Compare
renovate-bot force-pushed renovate/node-18.x from 715aedcd5a to baefe4fb5f 2022-05-01 23:03:51 +00:00 Compare
mwalbeck closed this pull request 2022-05-03 20:57:25 +00:00
Author
Collaborator

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 18.x releases. But if you manually upgrade to 18.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

### Renovate Ignore Notification Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for *any* future `18.x` releases. But if you manually upgrade to `18.x` then Renovate will re-enable `minor` and `patch` updates automatically. If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.
All checks were successful
continuous-integration/drone/pr Build is passing

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: mwalbeck/docker-cyberchef#60
No description provided.