Update Node.js to v17 #45

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

This PR contains the following updates:

Package Type Update Change
node stage major 10.24.1-buster -> 17.0.0-buster

Release Notes

nodejs/node

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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​39331](https://github.com/nodejs/node/pull/39331)
    
  • [`d0a898681f`](https://github.com/nodejs/node/commit/d0a898681f)] - **(SEMVER-MAJOR)** **lib**: add structuredClone() global (Ethan Arrowood) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​38259](https://github.com/nodejs/node/pull/38259)
    
  • [`d0a898681f`](https://github.com/nodejs/node/commit/d0a898681f)] - **(SEMVER-MAJOR)** **lib**: add structuredClone() global (Ethan Arrowood) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​39342](https://github.com/nodejs/node/pull/39342)
    
  • [`a5dec3a470`](https://github.com/nodejs/node/commit/a5dec3a470)] - **(SEMVER-MAJOR)** **stream**: validate abort signal (Robert Nagy) [#​39346](https://github.com/nodejs/node/pull/39346)
    
  • [`bb275ef2a4`](https://github.com/nodejs/node/commit/bb275ef2a4)] - **(SEMVER-MAJOR)** **stream**: unify stream utils (Robert Nagy) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​40339](https://github.com/nodejs/node/pull/40339)
    
  • [`8306051001`](https://github.com/nodejs/node/commit/8306051001)] - **(SEMVER-MINOR)** **stream**: add readableDidRead (Robert Nagy) [#​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) [#​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) [#​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) [#​40178](https://github.com/nodejs/node/pull/40178)
    
  • [`ed76b49834`](https://github.com/nodejs/node/commit/ed76b49834)] - **build**: fix actions pull request's branch (Mestery) [#​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) [#​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) [#​40423](https://github.com/nodejs/node/pull/40423)
    
  • [`983b757f3f`](https://github.com/nodejs/node/commit/983b757f3f)] - **build**: update codeowners-validator to 0.6 (FrankQiu) [#​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) [#​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) [#​39730](https://github.com/nodejs/node/pull/39730)
    
  • [`28f711b552`](https://github.com/nodejs/node/commit/28f711b552)] - **crypto**: remove incorrect constructor invocation (gc) [#​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) [#​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) [#​40463](https://github.com/nodejs/node/pull/40463)
    
  • [`d434c5382a`](https://github.com/nodejs/node/commit/d434c5382a)] - **deps**: regenerate OpenSSL arch files (Daniel Bevenius) [#​40478](https://github.com/nodejs/node/pull/40478)
    
  • [`2cebd5f02b`](https://github.com/nodejs/node/commit/2cebd5f02b)] - **deps**: add missing legacyprov.c source (Daniel Bevenius) [#​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) [#​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) [#​40422](https://github.com/nodejs/node/pull/40422)
    
  • [`5d7bd8616e`](https://github.com/nodejs/node/commit/5d7bd8616e)] - **deps**: suppress zlib compiler warnings (Daniel Bevenius) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​40295](https://github.com/nodejs/node/pull/40295)
    
  • [`7c77db0243`](https://github.com/nodejs/node/commit/7c77db0243)] - **dns**: refactor and use validators (Voltrex) [#​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) [#​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) [#​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) [#​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) [#​40412](https://github.com/nodejs/node/pull/40412)
    
  • [`40db88b7b5`](https://github.com/nodejs/node/commit/40db88b7b5)] - **doc**: format changelogs (Rich Trott) [#​40388](https://github.com/nodejs/node/pull/40388)
    
  • [`4f68839910`](https://github.com/nodejs/node/commit/4f68839910)] - **doc**: fix missing variable in deepStrictEqual example (OliverOdo) [#​40396](https://github.com/nodejs/node/pull/40396)
    
  • [`ca6adcf37e`](https://github.com/nodejs/node/commit/ca6adcf37e)] - **doc**: fix asyncLocalStorage.run() description (Constantine Kim) [#​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) [#​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) [#​40358](https://github.com/nodejs/node/pull/40358)
    
  • [`0d50dfdf61`](https://github.com/nodejs/node/commit/0d50dfdf61)] - **doc**: improve phrasing in fs.md (Arslan Ali) [#​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) [#​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) [#​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) [#​40320](https://github.com/nodejs/node/pull/40320)
    
  • [`0d2b6aca60`](https://github.com/nodejs/node/commit/0d2b6aca60)] - **doc**: assign missing deprecation number (Michaël Zasso) [#​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) [#​40275](https://github.com/nodejs/node/pull/40275)
    
  • [`03d25fe816`](https://github.com/nodejs/node/commit/03d25fe816)] - **doc**: fix typo in esm.md (Mason Malone) [#​40273](https://github.com/nodejs/node/pull/40273)
    
  • [`6199441b00`](https://github.com/nodejs/node/commit/6199441b00)] - **doc**: correct ESM load hook table header (Jacob) [#​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) [#​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) [#​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) [#​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) [#​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) [#​39304](https://github.com/nodejs/node/pull/39304)
    
  • [`7b7a0331f4`](https://github.com/nodejs/node/commit/7b7a0331f4)] - **doc**: reset added: version to REPLACEME (Luigi Pinca) [#​39901](https://github.com/nodejs/node/pull/39901)
    
  • [`58257b7c61`](https://github.com/nodejs/node/commit/58257b7c61)] - **doc**: fix typo in webstreams.md (Luigi Pinca) [#​39898](https://github.com/nodejs/node/pull/39898)
    
  • [`df22736d80`](https://github.com/nodejs/node/commit/df22736d80)] - **esm**: consolidate ESM loader hooks (Jacob) [#​37468](https://github.com/nodejs/node/pull/37468)
    
  • [`ac4f5e2437`](https://github.com/nodejs/node/commit/ac4f5e2437)] - **lib**: refactor to use let (gdccwxx) [#​40364](https://github.com/nodejs/node/pull/40364)
    
  • [`3d11bafaa0`](https://github.com/nodejs/node/commit/3d11bafaa0)] - **lib**: make structuredClone spec compliant (voltrexmaster) [#​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) [#​39848](https://github.com/nodejs/node/pull/39848)
    
  • [`c0a70203de`](https://github.com/nodejs/node/commit/c0a70203de)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​40485](https://github.com/nodejs/node/pull/40485)
    
  • [`cbc7b5d424`](https://github.com/nodejs/node/commit/cbc7b5d424)] - **meta**: consolidate AUTHORS entries for emanuelbuholzer (Rich Trott) [#​40469](https://github.com/nodejs/node/pull/40469)
    
  • [`881174e016`](https://github.com/nodejs/node/commit/881174e016)] - **meta**: consolidate AUTHORS entries for ebickle (Rich Trott) [#​40447](https://github.com/nodejs/node/pull/40447)
    
  • [`b80b85e130`](https://github.com/nodejs/node/commit/b80b85e130)] - **meta**: add `typings` to label-pr-config (Mestery) [#​40401](https://github.com/nodejs/node/pull/40401)
    
  • [`95cf944736`](https://github.com/nodejs/node/commit/95cf944736)] - **meta**: consolidate AUTHORS entries for evantorrie (Rich Trott) [#​40430](https://github.com/nodejs/node/pull/40430)
    
  • [`c350c217f4`](https://github.com/nodejs/node/commit/c350c217f4)] - **meta**: consolidate AUTHORS entries for gabrielschulhof (Rich Trott) [#​40420](https://github.com/nodejs/node/pull/40420)
    
  • [`a9411891cf`](https://github.com/nodejs/node/commit/a9411891cf)] - **meta**: consolidate AUTHORS information for geirha (Rich Trott) [#​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) [#​40391](https://github.com/nodejs/node/pull/40391)
    
  • [`49b7ec96a4`](https://github.com/nodejs/node/commit/49b7ec96a4)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​40392](https://github.com/nodejs/node/pull/40392)
    
  • [`a3c0713d9e`](https://github.com/nodejs/node/commit/a3c0713d9e)] - **meta**: consolidate AUTHORS entry for thw0rted (Rich Trott) [#​40387](https://github.com/nodejs/node/pull/40387)
    
  • [`eaa59571e0`](https://github.com/nodejs/node/commit/eaa59571e0)] - **meta**: update label-pr-config (Mestery) [#​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) [#​40367](https://github.com/nodejs/node/pull/40367)
    
  • [`f570109094`](https://github.com/nodejs/node/commit/f570109094)] - **net**: check if option is undefined (Daijiro Wachi) [#​40344](https://github.com/nodejs/node/pull/40344)
    
  • [`119558b6a2`](https://github.com/nodejs/node/commit/119558b6a2)] - **net**: remove unused ObjectKeys (Daijiro Wachi) [#​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) [#​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) [#​40344](https://github.com/nodejs/node/pull/40344)
    
  • [`38aa7cc7c7`](https://github.com/nodejs/node/commit/38aa7cc7c7)] - **src**: get embedder options on-demand (Joyee Cheung) [#​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) [#​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) [#​40293](https://github.com/nodejs/node/pull/40293)
    
  • [`f11493dfc9`](https://github.com/nodejs/node/commit/f11493dfc9)] - **src**: add missing initialization (Michael Dawson) [#​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) [#​40178](https://github.com/nodejs/node/pull/40178)
    
  • [`3f0b62375b`](https://github.com/nodejs/node/commit/3f0b62375b)] - **stream**: convert premature close to AbortError (Robert Nagy) [#​39524](https://github.com/nodejs/node/pull/39524)
    
  • [`79f4d5a345`](https://github.com/nodejs/node/commit/79f4d5a345)] - **stream**: fix toWeb typo (Robert Nagy) [#​39496](https://github.com/nodejs/node/pull/39496)
    
  • [`44ee6c2623`](https://github.com/nodejs/node/commit/44ee6c2623)] - **stream**: call done() in consistent fashion (Rich Trott) [#​39475](https://github.com/nodejs/node/pull/39475)
    
  • [`09ad64d66d`](https://github.com/nodejs/node/commit/09ad64d66d)] - **stream**: add CompressionStream and DecompressionStream (James M Snell) [#​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) [#​39134](https://github.com/nodejs/node/pull/39134)
    
  • [`a5ba28dda2`](https://github.com/nodejs/node/commit/a5ba28dda2)] - **stream**: fix performance regression (Brian White) [#​39254](https://github.com/nodejs/node/pull/39254)
    
  • [`ce00381751`](https://github.com/nodejs/node/commit/ce00381751)] - **stream**: use finished for async iteration (Robert Nagy) [#​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) [#​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) [#​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) [#​40359](https://github.com/nodejs/node/pull/40359)
    
  • [`24f045dae2`](https://github.com/nodejs/node/commit/24f045dae2)] - **test**: replace .then chains with await (gdccwxx) [#​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) [#​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) [#​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) [#​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) [#​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) [#​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) [#​40445](https://github.com/nodejs/node/pull/40445)
    
  • [`350a95b89f`](https://github.com/nodejs/node/commit/350a95b89f)] - **tools**: update lint-md dependencies (Rich Trott) [#​40404](https://github.com/nodejs/node/pull/40404)
    
  • [`012152d7d6`](https://github.com/nodejs/node/commit/012152d7d6)] - **tools**: udpate [@​babel/eslint-parser](https://github.com/babel/eslint-parser) (Rich Trott) [#​40394](https://github.com/nodejs/node/pull/40394)
    
  • [`43c780e741`](https://github.com/nodejs/node/commit/43c780e741)] - **tools**: remove [@​babel/plugin-syntax-import-assertions](https://github.com/babel/plugin-syntax-import-assertions) (Rich Trott) [#​40394](https://github.com/nodejs/node/pull/40394)
    
  • [`b39db95737`](https://github.com/nodejs/node/commit/b39db95737)] - **tools**: remove [@​bable/plugin-syntax-class-properties](https://github.com/bable/plugin-syntax-class-properties) (Rich Trott) [#​40394](https://github.com/nodejs/node/pull/40394)
    
  • [`a6fd39f44f`](https://github.com/nodejs/node/commit/a6fd39f44f)] - **tools**: remove [@​babel/plugin-syntax-top-level-await](https://github.com/babel/plugin-syntax-top-level-await) (Rich Trott) [#​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) [#​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) [#​40394](https://github.com/nodejs/node/pull/40394)
    
  • [`0a1b399781`](https://github.com/nodejs/node/commit/0a1b399781)] - **tools**: fix ESLint update scripts (Rich Trott) [#​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) [#​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) [#​40178](https://github.com/nodejs/node/pull/40178)
    
  • [`a8a86387fa`](https://github.com/nodejs/node/commit/a8a86387fa)] - **tty**: enable buffering (Robert Nagy) [#​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) [#​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) [#​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) [#​40222](https://github.com/nodejs/node/pull/40222)
    
  • [`9e64336fbf`](https://github.com/nodejs/node/commit/9e64336fbf)] - **typings**: fix declaration of primordials (Michaël Zasso) [#​40222](https://github.com/nodejs/node/pull/40222)
    
  • [`f581f6da94`](https://github.com/nodejs/node/commit/f581f6da94)] - **url**: fix performance regression (Brian White) [#​39778](https://github.com/nodejs/node/pull/39778)
    
  • [`02de40246f`](https://github.com/nodejs/node/commit/02de40246f)] - **v8**: remove --harmony-top-level-await (Geoffrey Booth) [#​40226](https://github.com/nodejs/node/pull/40226)
    
    

v16.11.1

Compare Source

This is a security release.

Notable changes
  • CVE-2021-22959: HTTP Request Smuggling due to spaced in headers (Medium)
    • The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at CVE-2021-22959 after publication.
  • CVE-2021-22960: HTTP Request Smuggling when parsing the body (Medium)
    • The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at CVE-2021-22960 after publication.
Commits
  • [`af488f8dc8`](https://github.com/nodejs/node/commit/af488f8dc8)] - **deps**: update llhttp to 6.0.4 (Matteo Collina) [nodejs-private/node-private#​284](https://github.com/nodejs-private/node-private/pull/284)
    
  • [`2d1eefad98`](https://github.com/nodejs/node/commit/2d1eefad98)] - **http**: add regression test for smuggling content length (Matteo Collina) [nodejs-private/node-private#​284](https://github.com/nodejs-private/node-private/pull/284)
    
  • [`45d419ab1c`](https://github.com/nodejs/node/commit/45d419ab1c)] - **http**: add regression test for chunked smuggling (Matteo Collina) [nodejs-private/node-private#​284](https://github.com/nodejs-private/node-private/pull/284)
    
    

v16.11.0

Compare Source

Notable Changes
  • crypto
    • update root certificates (Richard Lau) #​40280
  • deps
    • upgrade npm to 8.0.0 (npm team) #​40369
    • update nghttp2 to v1.45.1 (thunder-coding) #​40206
    • update V8 to 9.4.146.19 (Michaël Zasso) #​40285
  • tools
    • update certdata.txt (Richard Lau) #​40280
Commits
  • [`34f3021ca3`](https://github.com/nodejs/node/commit/34f3021ca3)] - **benchmark**: add `util.toUSVString()`'s benchmark (Khaidi Chu) [#​40203](https://github.com/nodejs/node/pull/40203)
    
  • [`f83b9bcb6f`](https://github.com/nodejs/node/commit/f83b9bcb6f)] - **build**: support Python 3.10.0 (FrankQiu) [#​40296](https://github.com/nodejs/node/pull/40296)
    
  • [`3148f9b64e`](https://github.com/nodejs/node/commit/3148f9b64e)] - **build**: check for duplicates in new AUTHORS entries (Rich Trott) [#​40264](https://github.com/nodejs/node/pull/40264)
    
  • [`48c162d457`](https://github.com/nodejs/node/commit/48c162d457)] - **build**: set DESTCPU correctly for 'make binary' on Apple Silicon (Chris Heisterkamp) [#​40147](https://github.com/nodejs/node/pull/40147)
    
  • [`7fbfb66d41`](https://github.com/nodejs/node/commit/7fbfb66d41)] - **build**: limit update authors CI scope (Jiawen Geng) [#​40219](https://github.com/nodejs/node/pull/40219)
    
  • [`a1bee94502`](https://github.com/nodejs/node/commit/a1bee94502)] - **build**: pass a tuple of alternatives to str.endswith() (Christian Clauss) [#​40017](https://github.com/nodejs/node/pull/40017)
    
  • [`eaf9d08332`](https://github.com/nodejs/node/commit/eaf9d08332)] - **build**: add --no-user for pip commands in Makefile (Rich Trott) [#​40169](https://github.com/nodejs/node/pull/40169)
    
  • [`e22ca06ac4`](https://github.com/nodejs/node/commit/e22ca06ac4)] - **build**: fix "test-internet.yml" workflows (SURYAPRATAP SINGH SURYAVANSHI) [#​40177](https://github.com/nodejs/node/pull/40177)
    
  • [`4da73d09bf`](https://github.com/nodejs/node/commit/4da73d09bf)] - **(SEMVER-MINOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​40285](https://github.com/nodejs/node/pull/40285)
    
  • [`4b117fbc81`](https://github.com/nodejs/node/commit/4b117fbc81)] - **console**: use validators for consistency (Voltrex) [#​39812](https://github.com/nodejs/node/pull/39812)
    
  • [`6489423187`](https://github.com/nodejs/node/commit/6489423187)] - **console**: avoid unnecessary variables (Pancake) [#​40183](https://github.com/nodejs/node/pull/40183)
    
  • [`9af2592e69`](https://github.com/nodejs/node/commit/9af2592e69)] - **crypto**: update root certificates (Richard Lau) [#​40280](https://github.com/nodejs/node/pull/40280)
    
  • [`2fa5e5011f`](https://github.com/nodejs/node/commit/2fa5e5011f)] - **crypto**: handle initEDRaw pkey failure (Shelley Vohr) [#​40188](https://github.com/nodejs/node/pull/40188)
    
  • [`7968c79301`](https://github.com/nodejs/node/commit/7968c79301)] - **crypto**: don't call callback twice in case crypto.randomBytes fails (Guilherme Bernal) [#​40157](https://github.com/nodejs/node/pull/40157)
    
  • [`b89c7ae297`](https://github.com/nodejs/node/commit/b89c7ae297)] - **deps**: upgrade npm to 8.0.0 (npm team) [#​40369](https://github.com/nodejs/node/pull/40369)
    
  • [`947f3dc9af`](https://github.com/nodejs/node/commit/947f3dc9af)] - **deps**: V8: patch jinja2 for Python 3.10 compat (Michaël Zasso) [#​40296](https://github.com/nodejs/node/pull/40296)
    
  • [`685c7d43a5`](https://github.com/nodejs/node/commit/685c7d43a5)] - **(SEMVER-MINOR)** **deps**: update `nghttp2` to v1.45.1 (thunder-coding) [#​40206](https://github.com/nodejs/node/pull/40206)
    
  • [`e7046e0ff1`](https://github.com/nodejs/node/commit/e7046e0ff1)] - **deps**: restore minimum ICU version to 68 (Michaël Zasso) [#​39470](https://github.com/nodejs/node/pull/39470)
    
  • [`a3db2033d4`](https://github.com/nodejs/node/commit/a3db2033d4)] - **(SEMVER-MINOR)** **deps**: make V8 9.4 abi-compatible with 9.0 (Michaël Zasso) [#​40285](https://github.com/nodejs/node/pull/40285)
    
  • [`5cc24e6d76`](https://github.com/nodejs/node/commit/5cc24e6d76)] - **deps**: V8: cherry-pick [`9a60704`](https://github.com/nodejs/node/commit/9a607043cb31) (Jiawen Geng) [#​40046](https://github.com/nodejs/node/pull/40046)
    
  • [`8de5eb88d3`](https://github.com/nodejs/node/commit/8de5eb88d3)] - **deps**: V8: cherry-pick [`5681a65`](https://github.com/nodejs/node/commit/5681a6565828) (Michaël Zasso) [#​39945](https://github.com/nodejs/node/pull/39945)
    
  • [`150d816edb`](https://github.com/nodejs/node/commit/150d816edb)] - **deps**: V8: cherry-pick [`bdcda72`](https://github.com/nodejs/node/commit/bdcda72cd1d8) (Michaël Zasso) [#​39945](https://github.com/nodejs/node/pull/39945)
    
  • [`807b68b430`](https://github.com/nodejs/node/commit/807b68b430)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#​39829](https://github.com/nodejs/node/pull/39829)
    
  • [`be016948df`](https://github.com/nodejs/node/commit/be016948df)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#​38990](https://github.com/nodejs/node/pull/38990)
    
  • [`22dcd3e4dc`](https://github.com/nodejs/node/commit/22dcd3e4dc)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#​37587](https://github.com/nodejs/node/pull/37587)
    
  • [`1aea6a771b`](https://github.com/nodejs/node/commit/1aea6a771b)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#​40060](https://github.com/nodejs/node/pull/40060)
    
  • [`e9812157f0`](https://github.com/nodejs/node/commit/e9812157f0)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`88ae710057`](https://github.com/nodejs/node/commit/88ae710057)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`e810f0766f`](https://github.com/nodejs/node/commit/e810f0766f)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`b8aabd5622`](https://github.com/nodejs/node/commit/b8aabd5622)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`309c4f05df`](https://github.com/nodejs/node/commit/309c4f05df)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.4.146.19 (Michaël Zasso) [#​40285](https://github.com/nodejs/node/pull/40285)
    
  • [`69eaaf6321`](https://github.com/nodejs/node/commit/69eaaf6321)] - **doc**: format general markdown files (Rich Trott) [#​40322](https://github.com/nodejs/node/pull/40322)
    
  • [`dc9c31985c`](https://github.com/nodejs/node/commit/dc9c31985c)] - **doc**: fix the inline code-block at the NodeDhKeyGenParams class (Justin) [#​40341](https://github.com/nodejs/node/pull/40341)
    
  • [`8d0546db39`](https://github.com/nodejs/node/commit/8d0546db39)] - **doc**: correct the codeblock for `hmacImportParams.hash` (Justin) [#​40340](https://github.com/nodejs/node/pull/40340)
    
  • [`1db2ffd008`](https://github.com/nodejs/node/commit/1db2ffd008)] - **doc**: fix typo in stream docs (Juan José Arboleda) [#​40337](https://github.com/nodejs/node/pull/40337)
    
  • [`abfcbcd14c`](https://github.com/nodejs/node/commit/abfcbcd14c)] - **doc**: update fast-track approval comment request (voltrexmaster) [#​40316](https://github.com/nodejs/node/pull/40316)
    
  • [`e2cd2f44f2`](https://github.com/nodejs/node/commit/e2cd2f44f2)] - **doc**: fix CVE-2021-22940 references (Michaël Zasso) [#​40308](https://github.com/nodejs/node/pull/40308)
    
  • [`88bdbf1e29`](https://github.com/nodejs/node/commit/88bdbf1e29)] - **doc**: format markdown files in test directory (Rich Trott) [#​40290](https://github.com/nodejs/node/pull/40290)
    
  • [`f71ac57a86`](https://github.com/nodejs/node/commit/f71ac57a86)] - **doc**: add triagers to the table of contents (FrankQiu) [#​39969](https://github.com/nodejs/node/pull/39969)
    
  • [`a5218b5313`](https://github.com/nodejs/node/commit/a5218b5313)] - **doc**: update Forrest Norvell's pronouns (Forrest L Norvell) [#​40292](https://github.com/nodejs/node/pull/40292)
    
  • [`d2e54e5d0c`](https://github.com/nodejs/node/commit/d2e54e5d0c)] - **doc**: reorder stream 'readable' paragraphs (Vincent Weevers) [#​40212](https://github.com/nodejs/node/pull/40212)
    
  • [`1d0a3e1a0c`](https://github.com/nodejs/node/commit/1d0a3e1a0c)] - **doc**: fix typo in fs (Brian White) [#​40257](https://github.com/nodejs/node/pull/40257)
    
  • [`66edb7bfe1`](https://github.com/nodejs/node/commit/66edb7bfe1)] - **doc**: fix typo in fs.md (Arslan Ali) [#​40254](https://github.com/nodejs/node/pull/40254)
    
  • [`614a7c21f8`](https://github.com/nodejs/node/commit/614a7c21f8)] - **doc**: fix typo in packages.md (Arslan Ali) [#​40230](https://github.com/nodejs/node/pull/40230)
    
  • [`9fa6dfbe76`](https://github.com/nodejs/node/commit/9fa6dfbe76)] - **doc**: fix example of crypto.generateKeySync (Gary Ho) [#​40225](https://github.com/nodejs/node/pull/40225)
    
  • [`9a2b94a142`](https://github.com/nodejs/node/commit/9a2b94a142)] - **doc**: update fs.watchFile doc (Clément Nardi) [#​40134](https://github.com/nodejs/node/pull/40134)
    
  • [`a68f91c884`](https://github.com/nodejs/node/commit/a68f91c884)] - **doc**: add version when diagnostics_channel APIs were added (Gerhard Stöbich) [#​40208](https://github.com/nodejs/node/pull/40208)
    
  • [`6bf67909ad`](https://github.com/nodejs/node/commit/6bf67909ad)] - **doc**: fix typo in 'maxHeaderSize' (Rebhi Alfa) [#​40164](https://github.com/nodejs/node/pull/40164)
    
  • [`73a127ba7b`](https://github.com/nodejs/node/commit/73a127ba7b)] - **doc**: fix buffer api example code's token error (m3m0ry) [#​40125](https://github.com/nodejs/node/pull/40125)
    
  • [`59db8293f4`](https://github.com/nodejs/node/commit/59db8293f4)] - **doc**: fix typo in `async_hooks.md` (xuchaobei) [#​40187](https://github.com/nodejs/node/pull/40187)
    
  • [`779dfd199b`](https://github.com/nodejs/node/commit/779dfd199b)] - **doc**: make version picker usable on mobile (Evan Lucas) [#​39958](https://github.com/nodejs/node/pull/39958)
    
  • [`7bd62f4809`](https://github.com/nodejs/node/commit/7bd62f4809)] - **doc**: fix typos in http.md (Luigi Pinca) [#​40161](https://github.com/nodejs/node/pull/40161)
    
  • [`94b415b980`](https://github.com/nodejs/node/commit/94b415b980)] - **doc**: add blank line between comments (Rich Trott) [#​40160](https://github.com/nodejs/node/pull/40160)
    
  • [`847b451d88`](https://github.com/nodejs/node/commit/847b451d88)] - **doc**: update markdown files in src for upcoming linting/formatting (Rich Trott) [#​40159](https://github.com/nodejs/node/pull/40159)
    
  • [`cea7395858`](https://github.com/nodejs/node/commit/cea7395858)] - **doc**: update benchmarks README.md for upcoming linting/formatting (Rich Trott) [#​40158](https://github.com/nodejs/node/pull/40158)
    
  • [`c231745837`](https://github.com/nodejs/node/commit/c231745837)] - **doc**: prepare markdown file for upcoming formatting/linting (Rich Trott) [#​40156](https://github.com/nodejs/node/pull/40156)
    
  • [`7e58cda6e0`](https://github.com/nodejs/node/commit/7e58cda6e0)] - **doc**: update tools .md files for upcoming lint/formatting (Rich Trott) [#​40155](https://github.com/nodejs/node/pull/40155)
    
  • [`02a87b096c`](https://github.com/nodejs/node/commit/02a87b096c)] - **doc**: update markdown formatting for \*.md files (Rich Trott) [#​40154](https://github.com/nodejs/node/pull/40154)
    
  • [`9b0e61a67f`](https://github.com/nodejs/node/commit/9b0e61a67f)] - **doc,src**: update crypto/README.md (Tobias Nießen) [#​40332](https://github.com/nodejs/node/pull/40332)
    
  • [`88e7bd073a`](https://github.com/nodejs/node/commit/88e7bd073a)] - **events**: allow dispatch many times without listener (MrBBot) [#​39772](https://github.com/nodejs/node/pull/39772)
    
  • [`c7f3294d02`](https://github.com/nodejs/node/commit/c7f3294d02)] - **(SEMVER-MINOR)** **fs**: add stream utilities to `FileHandle` (Antoine du Hamel) [#​40009](https://github.com/nodejs/node/pull/40009)
    
  • [`555af5b808`](https://github.com/nodejs/node/commit/555af5b808)] - **http**: remove 'data' and 'end' listener if client parser error (Matteo Collina) [#​40244](https://github.com/nodejs/node/pull/40244)
    
  • [`22725f5bdd`](https://github.com/nodejs/node/commit/22725f5bdd)] - **http**: use 0 as default for requests limit (Artur K) [#​40192](https://github.com/nodejs/node/pull/40192)
    
  • [`3d5eba8042`](https://github.com/nodejs/node/commit/3d5eba8042)] - **lib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#​40271](https://github.com/nodejs/node/pull/40271)
    
  • [`547fc86371`](https://github.com/nodejs/node/commit/547fc86371)] - **lib**: use `validateArray` (Voltrex) [#​39774](https://github.com/nodejs/node/pull/39774)
    
  • [`a37527ce8f`](https://github.com/nodejs/node/commit/a37527ce8f)] - **meta**: add mailmap entry for ratracegrad (Rich Trott) [#​40291](https://github.com/nodejs/node/pull/40291)
    
  • [`a75a8f2ca0`](https://github.com/nodejs/node/commit/a75a8f2ca0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​40289](https://github.com/nodejs/node/pull/40289)
    
  • [`66ab278bae`](https://github.com/nodejs/node/commit/66ab278bae)] - **meta**: add .mailmap entry for Jimbly (Rich Trott) [#​40267](https://github.com/nodejs/node/pull/40267)
    
  • [`e040f2cf0d`](https://github.com/nodejs/node/commit/e040f2cf0d)] - **meta**: add .mailmap entry for daguej (Rich Trott) [#​40223](https://github.com/nodejs/node/pull/40223)
    
  • [`d64740fbb3`](https://github.com/nodejs/node/commit/d64740fbb3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​40217](https://github.com/nodejs/node/pull/40217)
    
  • [`9ee9e41f5c`](https://github.com/nodejs/node/commit/9ee9e41f5c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​40115](https://github.com/nodejs/node/pull/40115)
    
  • [`da6c82b425`](https://github.com/nodejs/node/commit/da6c82b425)] - **meta**: update gdams contact information (Rich Trott) [#​40233](https://github.com/nodejs/node/pull/40233)
    
  • [`a660017915`](https://github.com/nodejs/node/commit/a660017915)] - **meta**: add .mailmap entry for kunalspathak (Rich Trott) [#​40202](https://github.com/nodejs/node/pull/40202)
    
  • [`4d46bde22e`](https://github.com/nodejs/node/commit/4d46bde22e)] - **meta**: add mailmap entry for ralphtheninja (Rich Trott) [#​40153](https://github.com/nodejs/node/pull/40153)
    
  • [`b856886d00`](https://github.com/nodejs/node/commit/b856886d00)] - **meta**: update mailmap for LakshmiSwethaG (Rich Trott) [#​40172](https://github.com/nodejs/node/pull/40172)
    
  • [`972d921855`](https://github.com/nodejs/node/commit/972d921855)] - **module**: fix ERR_REQUIRE_ESM for parentPath null (Guy Bedford) [#​40145](https://github.com/nodejs/node/pull/40145)
    
  • [`344c03b2e6`](https://github.com/nodejs/node/commit/344c03b2e6)] - **repl**: skip EmptyStatements and return result with TLA (Mestery) [#​40194](https://github.com/nodejs/node/pull/40194)
    
  • [`b694b0ca52`](https://github.com/nodejs/node/commit/b694b0ca52)] - **src**: use `As()` instead of `Cast()` for conversions (Darshan Sen) [#​40287](https://github.com/nodejs/node/pull/40287)
    
  • [`383dbe940d`](https://github.com/nodejs/node/commit/383dbe940d)] - **src**: implement changes suggested by [@​addaleax](https://github.com/addaleax) (kokke) [#​40128](https://github.com/nodejs/node/pull/40128)
    
  • [`a6112dd1de`](https://github.com/nodejs/node/commit/a6112dd1de)] - **src**: fix time-of-use vs time-of-check "bugs" (kokke) [#​40128](https://github.com/nodejs/node/pull/40128)
    
  • [`bbf1ed7c78`](https://github.com/nodejs/node/commit/bbf1ed7c78)] - **src**: remove AllocatedBuffer from crypto_common.cc (Darshan Sen) [#​40213](https://github.com/nodejs/node/pull/40213)
    
  • [`528f9228fd`](https://github.com/nodejs/node/commit/528f9228fd)] - **src**: remove usage of AllocatedBuffer from udp_wrap.cc (Darshan Sen) [#​40151](https://github.com/nodejs/node/pull/40151)
    
  • [`d36127d862`](https://github.com/nodejs/node/commit/d36127d862)] - **src**: move `ToUSVString()` to node_util.cc (Khaidi Chu) [#​40204](https://github.com/nodejs/node/pull/40204)
    
  • [`bddf8c28d9`](https://github.com/nodejs/node/commit/bddf8c28d9)] - **src,crypto**: eliminate code duplication between StatelessDiffieHellman\* (Darshan Sen) [#​40084](https://github.com/nodejs/node/pull/40084)
    
  • [`6a8689f1f9`](https://github.com/nodejs/node/commit/6a8689f1f9)] - **test**: fix typo in test/common/index.js (Tobias Nießen) [#​40297](https://github.com/nodejs/node/pull/40297)
    
  • [`dc0c2744cf`](https://github.com/nodejs/node/commit/dc0c2744cf)] - **test**: suppress compiler warning in test_bigint (Daniel Bevenius) [#​40253](https://github.com/nodejs/node/pull/40253)
    
  • [`18820bfa58`](https://github.com/nodejs/node/commit/18820bfa58)] - **tools**: patch jinja2 for Python 3.10 compat (Michaël Zasso) [#​40296](https://github.com/nodejs/node/pull/40296)
    
  • [`8d7710e6c3`](https://github.com/nodejs/node/commit/8d7710e6c3)] - **tools**: update rollup entry in lint-md package.json (FrankQiu) [#​40281](https://github.com/nodejs/node/pull/40281)
    
  • [`7bb4dc2406`](https://github.com/nodejs/node/commit/7bb4dc2406)] - **tools**: update certdata.txt (Richard Lau) [#​40280](https://github.com/nodejs/node/pull/40280)
    
  • [`f31b0c9700`](https://github.com/nodejs/node/commit/f31b0c9700)] - **tools**: update remark-preset-lint-node to 3.2.0 (Rich Trott) [#​40278](https://github.com/nodejs/node/pull/40278)
    
  • [`9c4e7a5158`](https://github.com/nodejs/node/commit/9c4e7a5158)] - **tools**: fix lint-md autolinking (Rich Trott) [#​40181](https://github.com/nodejs/node/pull/40181)
    
  • [`26db6db87f`](https://github.com/nodejs/node/commit/26db6db87f)] - **tools**: implement markdown formatting (Rich Trott) [#​40181](https://github.com/nodejs/node/pull/40181)
    
  • [`67812e8c65`](https://github.com/nodejs/node/commit/67812e8c65)] - **tools**: re-implement lint-md without unified-args (Rich Trott) [#​40180](https://github.com/nodejs/node/pull/40180)
    
  • [`0232f94175`](https://github.com/nodejs/node/commit/0232f94175)] - **tools**: update remark-preset-lint-node to 3.1.0 (Rich Trott) [#​40166](https://github.com/nodejs/node/pull/40166)
    
  • [`80fdedd184`](https://github.com/nodejs/node/commit/80fdedd184)] - **tools**: fix find-inactive-collaborators for recent README change (Rich Trott) [#​40163](https://github.com/nodejs/node/pull/40163)
    
  • [`ebf17102d1`](https://github.com/nodejs/node/commit/ebf17102d1)] - **tools**: extend default yamllint config (Michaël Zasso) [#​40150](https://github.com/nodejs/node/pull/40150)
    
  • [`f7c82749a7`](https://github.com/nodejs/node/commit/f7c82749a7)] - **tools**: update V8 gypfiles for 9.4 (Michaël Zasso) [#​39945](https://github.com/nodejs/node/pull/39945)
    
  • [`dd39422b8b`](https://github.com/nodejs/node/commit/dd39422b8b)] - **typings**: define types for symbols binding (Michaël Zasso) [#​40143](https://github.com/nodejs/node/pull/40143)
    
  • [`ced8467e20`](https://github.com/nodejs/node/commit/ced8467e20)] - **typings**: define types for worker and messaging bindings (Michaël Zasso) [#​40143](https://github.com/nodejs/node/pull/40143)
    
  • [`66d3101677`](https://github.com/nodejs/node/commit/66d3101677)] - **(SEMVER-MINOR)** **util**: improve ansi escape code regex (Colin Ihrig) [#​40214](https://github.com/nodejs/node/pull/40214)
    
  • [`f4164fa4c3`](https://github.com/nodejs/node/commit/f4164fa4c3)] - **(SEMVER-MINOR)** **util**: expose stripVTControlCharacters() (Colin Ihrig) [#​40214](https://github.com/nodejs/node/pull/40214)
    
    

v16.10.0

Compare Source

Notable Changes
  • [`fb226ff2ee`](https://github.com/nodejs/node/commit/fb226ff2ee)] - **(SEMVER-MINOR)** **crypto**: add rsa-pss keygen parameters (Filip Skokan) [#​39927](https://github.com/nodejs/node/pull/39927)
    
  • [`85206b7311`](https://github.com/nodejs/node/commit/85206b7311)] - **deps**: upgrade npm to 7.24.0 (npm team) [#​40167](https://github.com/nodejs/node/pull/40167)
    
  • [`98f56d179c`](https://github.com/nodejs/node/commit/98f56d179c)] - **deps**: update Acorn to v8.5.0 (Michaël Zasso) [#​40015](https://github.com/nodejs/node/pull/40015)
    
  • [`9655329772`](https://github.com/nodejs/node/commit/9655329772)] - **doc**: add Ayase-252 to collaborators (Qingyu Deng) [#​40078](https://github.com/nodejs/node/pull/40078)
    
  • [`59fff925be`](https://github.com/nodejs/node/commit/59fff925be)] - **(SEMVER-MINOR)** **fs**: make `open` and `close` stream override optional when unused (Antoine du Hamel) [#​40013](https://github.com/nodejs/node/pull/40013)
    
  • [`a63a4bce90`](https://github.com/nodejs/node/commit/a63a4bce90)] - **(SEMVER-MINOR)** **http**: limit requests per connection (Artur K) [#​40082](https://github.com/nodejs/node/pull/40082)
    -   The maximum number of requests a socket can handle before closing keep alive connection can be set with `server.maxRequestsPerSocket`.
    
  • [`9a672961fa`](https://github.com/nodejs/node/commit/9a672961fa)] - **(SEMVER-MINOR)** **src**: add --no-global-search-paths cli option (Cheng Zhao) [#​39754](https://github.com/nodejs/node/pull/39754)
    -   Adds the `--no-global-search-paths` command-line option to not search modules from global paths like `$HOME/.node_modules` and `$NODE_PATH`.
    
  • [`fe920b6cbf`](https://github.com/nodejs/node/commit/fe920b6cbf)] - **(SEMVER-MINOR)** **src**: make napi_create_reference accept symbol (JckXia) [#​39926](https://github.com/nodejs/node/pull/39926)
    
  • [`97f3072ceb`](https://github.com/nodejs/node/commit/97f3072ceb)] - **(SEMVER-MINOR)** **stream**: add signal support to pipeline generators (Robert Nagy) [#​39067](https://github.com/nodejs/node/pull/39067)
    
    
Commits
  • [`b7dc651884`](https://github.com/nodejs/node/commit/b7dc651884)] - **build**: run modified internet tests on GitHub Actions (Rich Trott) [#​40100](https://github.com/nodejs/node/pull/40100)
    
  • [`8d5787a043`](https://github.com/nodejs/node/commit/8d5787a043)] - **build**: add .mailmap/AUTHORS to paths-ignore for test-macos (Rich Trott) [#​40109](https://github.com/nodejs/node/pull/40109)
    
  • [`9793e7ff08`](https://github.com/nodejs/node/commit/9793e7ff08)] - **build**: add .mailmap/AUTHORS to path-ignore for test-asan (Rich Trott) [#​40109](https://github.com/nodejs/node/pull/40109)
    
  • [`886921de38`](https://github.com/nodejs/node/commit/886921de38)] - **build**: add paths-ignore for build-tarball workflow (Rich Trott) [#​40109](https://github.com/nodejs/node/pull/40109)
    
  • [`01b1946b38`](https://github.com/nodejs/node/commit/01b1946b38)] - **build**: only lint version numbers for pull requests (Michaël Zasso) [#​40027](https://github.com/nodejs/node/pull/40027)
    
  • [`c804d070a6`](https://github.com/nodejs/node/commit/c804d070a6)] - **build**: add daily/on-demand internet test workflow (Rich Trott) [#​40086](https://github.com/nodejs/node/pull/40086)
    
  • [`7bddaecbf4`](https://github.com/nodejs/node/commit/7bddaecbf4)] - **build**: add YAML linting to GitHub Actions (Rich Trott) [#​40007](https://github.com/nodejs/node/pull/40007)
    
  • [`5a20f9055c`](https://github.com/nodejs/node/commit/5a20f9055c)] - **build**: add YAML linting (Rich Trott) [#​40007](https://github.com/nodejs/node/pull/40007)
    
  • [`0b30867c08`](https://github.com/nodejs/node/commit/0b30867c08)] - **build**: run AUTHORS update weekly (Rich Trott) [#​40004](https://github.com/nodejs/node/pull/40004)
    
  • [`22a78a75ee`](https://github.com/nodejs/node/commit/22a78a75ee)] - **build**: preserves symbols during LTO with macOS linker (Jesse Chan) [#​39839](https://github.com/nodejs/node/pull/39839)
    
  • [`f0dec58d43`](https://github.com/nodejs/node/commit/f0dec58d43)] - **crypto**: fix webcrypto ed(25519|448) spki/pkcs8 import (Filip Skokan) [#​40131](https://github.com/nodejs/node/pull/40131)
    
  • [`d80082f3eb`](https://github.com/nodejs/node/commit/d80082f3eb)] - **crypto**: use `validateObject` (Voltrex) [#​39872](https://github.com/nodejs/node/pull/39872)
    
  • [`d657ae6f8a`](https://github.com/nodejs/node/commit/d657ae6f8a)] - **crypto**: fix RSA-PSS default saltLength (Tobias Nießen) [#​39999](https://github.com/nodejs/node/pull/39999)
    
  • [`fc45cbe7a8`](https://github.com/nodejs/node/commit/fc45cbe7a8)] - **crypto**: fix default MGF1 hash for OpenSSL 3 (Tobias Nießen) [#​40031](https://github.com/nodejs/node/pull/40031)
    
  • [`105c9e6d3b`](https://github.com/nodejs/node/commit/105c9e6d3b)] - **crypto**: check webcrypto asymmetric key types during importKey (Filip Skokan) [#​39962](https://github.com/nodejs/node/pull/39962)
    
  • [`fb226ff2ee`](https://github.com/nodejs/node/commit/fb226ff2ee)] - **(SEMVER-MINOR)** **crypto**: add rsa-pss keygen parameters (Filip Skokan) [#​39927](https://github.com/nodejs/node/pull/39927)
    
  • [`85206b7311`](https://github.com/nodejs/node/commit/85206b7311)] - **deps**: upgrade npm to 7.24.0 (npm team) [#​40167](https://github.com/nodejs/node/pull/40167)
    
  • [`06f6e01f37`](https://github.com/nodejs/node/commit/06f6e01f37)] - **deps**: add riscv64 into openssl Makefile and gen openssl-riscv64 (Lu Yahan) [#​40063](https://github.com/nodejs/node/pull/40063)
    
  • [`9c76c69972`](https://github.com/nodejs/node/commit/9c76c69972)] - **deps**: patch V8 to 9.3.345.19 (Michaël Zasso) [#​40108](https://github.com/nodejs/node/pull/40108)
    
  • [`0df47d5843`](https://github.com/nodejs/node/commit/0df47d5843)] - **deps**: upgrade npm to 7.23.0 (npm team) [#​40055](https://github.com/nodejs/node/pull/40055)
    
  • [`b3843bf417`](https://github.com/nodejs/node/commit/b3843bf417)] - **deps**: patch v8 for vs2019 in std17 (Jiawen Geng) [#​40060](https://github.com/nodejs/node/pull/40060)
    
  • [`67759585a0`](https://github.com/nodejs/node/commit/67759585a0)] - **deps**: patch for v8 on windows (Jiawen Geng) [#​40010](https://github.com/nodejs/node/pull/40010)
    
  • [`98f56d179c`](https://github.com/nodejs/node/commit/98f56d179c)] - **deps**: update Acorn to v8.5.0 (Michaël Zasso) [#​40015](https://github.com/nodejs/node/pull/40015)
    
  • [`5c6708582e`](https://github.com/nodejs/node/commit/5c6708582e)] - **dns**: cleanup validation (Voltrex) [#​40061](https://github.com/nodejs/node/pull/40061)
    
  • [`e4825dcfd5`](https://github.com/nodejs/node/commit/e4825dcfd5)] - **doc**: changes default values for fs.read fns (RISHABH BUDHIRAJA) [#​39163](https://github.com/nodejs/node/pull/39163)
    
  • [`0254b4b0d3`](https://github.com/nodejs/node/commit/0254b4b0d3)] - **doc**: fix markdown indentation in lists (Michaël Zasso) [#​40142](https://github.com/nodejs/node/pull/40142)
    
  • [`b6939a3419`](https://github.com/nodejs/node/commit/b6939a3419)] - **doc**: prepare README.md for stricter linting (Rich Trott) [#​40137](https://github.com/nodejs/node/pull/40137)
    
  • [`a07d8444f9`](https://github.com/nodejs/node/commit/a07d8444f9)] - **doc**: fix comma splice (Rich Trott) [#​40133](https://github.com/nodejs/node/pull/40133)
    
  • [`2488bc0c4f`](https://github.com/nodejs/node/commit/2488bc0c4f)] - **doc**: clean up weird notes about reentrancy (Anna Henningsen) [#​40107](https://github.com/nodejs/node/pull/40107)
    
  • [`8b80dcbc30`](https://github.com/nodejs/node/commit/8b80dcbc30)] - **doc**: correct parameters in fs and stream documentation (vipul kumar) [#​39984](https://github.com/nodejs/node/pull/39984)
    
  • [`1ced732078`](https://github.com/nodejs/node/commit/1ced732078)] - **doc**: fix CJS-ESM selector in Safari (Bradley Farias) [#​40135](https://github.com/nodejs/node/pull/40135)
    
  • [`7fdb12739d`](https://github.com/nodejs/node/commit/7fdb12739d)] - **doc**: add timeout.close (Nikita Galkin) [#​40036](https://github.com/nodejs/node/pull/40036)
    
  • [`81cb14bb58`](https://github.com/nodejs/node/commit/81cb14bb58)] - **doc**: clarify that ObjectWrap requires manual cleanup on shutdown (Gerhard Stöbich) [#​40074](https://github.com/nodejs/node/pull/40074)
    
  • [`8aad81dd99`](https://github.com/nodejs/node/commit/8aad81dd99)] - **doc**: add full list of subsystems (FrankQiu) [#​39971](https://github.com/nodejs/node/pull/39971)
    
  • [`9655329772`](https://github.com/nodejs/node/commit/9655329772)] - **doc**: add Ayase-252 to collaborators (Qingyu Deng) [#​40078](https://github.com/nodejs/node/pull/40078)
    
  • [`6d399e11e9`](https://github.com/nodejs/node/commit/6d399e11e9)] - **doc**: fix CCM cipher example in MJS (Tobias Nießen) [#​39949](https://github.com/nodejs/node/pull/39949)
    
  • [`d426ee9b17`](https://github.com/nodejs/node/commit/d426ee9b17)] - **doc**: fix property name 'detail' of performanceEntry (Christian Boehlke) [#​40019](https://github.com/nodejs/node/pull/40019)
    
  • [`846e7e880e`](https://github.com/nodejs/node/commit/846e7e880e)] - **doc**: fix list indentation in corepack.md (Alexey Ten) [#​40029](https://github.com/nodejs/node/pull/40029)
    
  • [`b6dd2ea930`](https://github.com/nodejs/node/commit/b6dd2ea930)] - **doc**: fix missing history version in `fs.md` (Antoine du Hamel) [#​39972](https://github.com/nodejs/node/pull/39972)
    
  • [`f666f5a8d1`](https://github.com/nodejs/node/commit/f666f5a8d1)] - **events**: fix duplicate require which cause performance penalty (wwwzbwcom) [#​39892](https://github.com/nodejs/node/pull/39892)
    
  • [`59fff925be`](https://github.com/nodejs/node/commit/59fff925be)] - **(SEMVER-MINOR)** **fs**: make `open` and `close` stream override optional when unused (Antoine du Hamel) [#​40013](https://github.com/nodejs/node/pull/40013)
    
  • [`a63a4bce90`](https://github.com/nodejs/node/commit/a63a4bce90)] - **(SEMVER-MINOR)** **http**: limit requests per connection (Artur K) [#​40082](https://github.com/nodejs/node/pull/40082)
    
  • [`bc9c2ca6af`](https://github.com/nodejs/node/commit/bc9c2ca6af)] - **http**: remove CRLF variable (shfshanyue) [#​40101](https://github.com/nodejs/node/pull/40101)
    
  • [`dd50b91f77`](https://github.com/nodejs/node/commit/dd50b91f77)] - **lib**: remove useless statement (Maledong) [#​39983](https://github.com/nodejs/node/pull/39983)
    
  • [`608528028c`](https://github.com/nodejs/node/commit/608528028c)] - **lib**: avoid creating a throw away object in `validateObject` (Antoine du Hamel) [#​39807](https://github.com/nodejs/node/pull/39807)
    
  • [`edcfffeaea`](https://github.com/nodejs/node/commit/edcfffeaea)] - **lib**: use standard property names (null) [#​39981](https://github.com/nodejs/node/pull/39981)
    
  • [`640353af86`](https://github.com/nodejs/node/commit/640353af86)] - **lib,repl**: ignore non-canBeRequiredByUsers built-in (Khaidi Chu) [#​39942](https://github.com/nodejs/node/pull/39942)
    
  • [`4444b5c938`](https://github.com/nodejs/node/commit/4444b5c938)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​40148](https://github.com/nodejs/node/pull/40148)
    
  • [`4993318862`](https://github.com/nodejs/node/commit/4993318862)] - **meta**: update GeoffreyBooth email addresses in AUTHORS and .mailmap (Rich Trott) [#​40132](https://github.com/nodejs/node/pull/40132)
    
  • [`98d42fa1f4`](https://github.com/nodejs/node/commit/98d42fa1f4)] - **meta**: add mailmap entry for LPardue (Rich Trott) [#​40129](https://github.com/nodejs/node/pull/40129)
    
  • [`effdfa91be`](https://github.com/nodejs/node/commit/effdfa91be)] - **meta**: update GeoffreyBooth email address (Geoffrey Booth) [#​40102](https://github.com/nodejs/node/pull/40102)
    
  • [`588257c00a`](https://github.com/nodejs/node/commit/588257c00a)] - **meta**: add .mailmap entry for arcanis (Rich Trott) [#​40103](https://github.com/nodejs/node/pull/40103)
    
  • [`7ee3fbd1e0`](https://github.com/nodejs/node/commit/7ee3fbd1e0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​40087](https://github.com/nodejs/node/pull/40087)
    
  • [`2a41530a5e`](https://github.com/nodejs/node/commit/2a41530a5e)] - **meta**: consolidate AUTHORS entry for mikemaccana (Rich Trott) [#​40051](https://github.com/nodejs/node/pull/40051)
    
  • [`a71579b05e`](https://github.com/nodejs/node/commit/a71579b05e)] - **meta**: add more mailmap entries for bajtos (Rich Trott) [#​40023](https://github.com/nodejs/node/pull/40023)
    
  • [`29104f5e64`](https://github.com/nodejs/node/commit/29104f5e64)] - **meta**: consolidate AUTHORS entries for mithunsasidharan (Rich Trott) [#​40003](https://github.com/nodejs/node/pull/40003)
    
  • [`381293f54a`](https://github.com/nodejs/node/commit/381293f54a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​39957](https://github.com/nodejs/node/pull/39957)
    
  • [`1eca9bc5b2`](https://github.com/nodejs/node/commit/1eca9bc5b2)] - **module**: support pattern trailers for imports field (Guy Bedford) [#​40041](https://github.com/nodejs/node/pull/40041)
    
  • [`7376edca6d`](https://github.com/nodejs/node/commit/7376edca6d)] - **module**: deprecate trailing slash pattern mappings (Guy Bedford) [#​40039](https://github.com/nodejs/node/pull/40039)
    
  • [`92f182b23d`](https://github.com/nodejs/node/commit/92f182b23d)] - **module**: fix $ pattern replacements (Guy Bedford) [#​40044](https://github.com/nodejs/node/pull/40044)
    
  • [`d6124d8259`](https://github.com/nodejs/node/commit/d6124d8259)] - **repl**: fix top level await with surrogate characters (Mestery) [#​39931](https://github.com/nodejs/node/pull/39931)
    
  • [`9a672961fa`](https://github.com/nodejs/node/commit/9a672961fa)] - **(SEMVER-MINOR)** **src**: add --no-global-search-paths cli option (Cheng Zhao) [#​39754](https://github.com/nodejs/node/pull/39754)
    
  • [`51f9ad4897`](https://github.com/nodejs/node/commit/51f9ad4897)] - **(SEMVER-MINOR)** **src**: add option to disable global search paths (Cheng Zhao) [#​39754](https://github.com/nodejs/node/pull/39754)
    
  • [`95528b284d`](https://github.com/nodejs/node/commit/95528b284d)] - **src**: remove unnecessary comment and add a CHECK in crypto_tls.cc (Darshan Sen) [#​39991](https://github.com/nodejs/node/pull/39991)
    
  • [`31994fbf8e`](https://github.com/nodejs/node/commit/31994fbf8e)] - **src**: register zlib external references for snapshot (Joyee Cheung) [#​40050](https://github.com/nodejs/node/pull/40050)
    
  • [`cfcd57182b`](https://github.com/nodejs/node/commit/cfcd57182b)] - **src**: fix -Wunreachable-code-return error (Shelley Vohr) [#​40034](https://github.com/nodejs/node/pull/40034)
    
  • [`9f3a015b60`](https://github.com/nodejs/node/commit/9f3a015b60)] - **src**: add option to disable loading native addons (Dominic Elm) [#​39977](https://github.com/nodejs/node/pull/39977)
    
  • [`570bef1710`](https://github.com/nodejs/node/commit/570bef1710)] - ***Revert*** "**src**: skip test_fatal/test_threads for Debug builds" (Anna Henningsen) [#​39954](https://github.com/nodejs/node/pull/39954)
    
  • [`842f936e04`](https://github.com/nodejs/node/commit/842f936e04)] - **src**: use Isolate::TryGetCurrent where appropriate (Anna Henningsen) [#​39954](https://github.com/nodejs/node/pull/39954)
    
  • [`fe920b6cbf`](https://github.com/nodejs/node/commit/fe920b6cbf)] - **(SEMVER-MINOR)** **src**: make napi_create_reference accept symbol (JckXia) [#​39926](https://github.com/nodejs/node/pull/39926)
    
  • [`73aa4e34ff`](https://github.com/nodejs/node/commit/73aa4e34ff)] - **src**: fix C4805 MSVC warning (Michaël Zasso) [#​39998](https://github.com/nodejs/node/pull/39998)
    
  • [`826eee363c`](https://github.com/nodejs/node/commit/826eee363c)] - **src**: register external references of PipeWrap for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`7a17cbfdea`](https://github.com/nodejs/node/commit/7a17cbfdea)] - **src**: register external references of TTYWrap for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`00cca48081`](https://github.com/nodejs/node/commit/00cca48081)] - **src**: register external references of TCPWrap for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`6095fb07b6`](https://github.com/nodejs/node/commit/6095fb07b6)] - **src**: register external references of SignalWrap for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`db75711c5c`](https://github.com/nodejs/node/commit/db75711c5c)] - **src**: register missing process methods external references (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`b4e074c295`](https://github.com/nodejs/node/commit/b4e074c295)] - **src**: register missing stream wrap external references (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`a2c1c3ef64`](https://github.com/nodejs/node/commit/a2c1c3ef64)] - **src**: register external references of BaseObject for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`6fdf02523e`](https://github.com/nodejs/node/commit/6fdf02523e)] - **src**: register external references of node-report for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`bef78a2f88`](https://github.com/nodejs/node/commit/bef78a2f88)] - **src**: register external references of dtrace for snapshot (Joyee Cheung) [#​39961](https://github.com/nodejs/node/pull/39961)
    
  • [`97f3072ceb`](https://github.com/nodejs/node/commit/97f3072ceb)] - **(SEMVER-MINOR)** **stream**: add signal support to pipeline generators (Robert Nagy) [#​39067](https://github.com/nodejs/node/pull/39067)
    
  • [`6be405bd7b`](https://github.com/nodejs/node/commit/6be405bd7b)] - **test**: fix test-dgram-udp6-link-local-address on Windows (Michaël Zasso) [#​40005](https://github.com/nodejs/node/pull/40005)
    
  • [`ec94bec9a3`](https://github.com/nodejs/node/commit/ec94bec9a3)] - **test**: do not run `test-corepack-yarn-install` with no internet (Antoine du Hamel) [#​40090](https://github.com/nodejs/node/pull/40090)
    
  • [`4aa2610252`](https://github.com/nodejs/node/commit/4aa2610252)] - **test**: update OpenSSL3 error messages for 3.0.0+quic (Daniel Bevenius) [#​40093](https://github.com/nodejs/node/pull/40093)
    
  • [`4367a61a9b`](https://github.com/nodejs/node/commit/4367a61a9b)] - **test**: mark test-crypto-timing-safe-equal-benchmarks flaky (Richard Lau) [#​40065](https://github.com/nodejs/node/pull/40065)
    
  • [`5b5e27281c`](https://github.com/nodejs/node/commit/5b5e27281c)] - **test**: fix internet/test-dns (Rich Trott) [#​40083](https://github.com/nodejs/node/pull/40083)
    
  • [`67bbfeb7e1`](https://github.com/nodejs/node/commit/67bbfeb7e1)] - **test**: make tests pass on Windows with Unix EOL (Michaël Zasso) [#​40002](https://github.com/nodejs/node/pull/40002)
    
  • [`a8c99d9f09`](https://github.com/nodejs/node/commit/a8c99d9f09)] - **tools**: update doc generator dependencies (Michaël Zasso) [#​40042](https://github.com/nodejs/node/pull/40042)
    
  • [`ec6de1195a`](https://github.com/nodejs/node/commit/ec6de1195a)] - **tools**: update ansi-regex in lint-md rollup (Rich Trott) [#​40112](https://github.com/nodejs/node/pull/40112)
    
  • [`d55804ca4e`](https://github.com/nodejs/node/commit/d55804ca4e)] - **tools**: update all dependencies of markdown linter (Michaël Zasso) [#​40035](https://github.com/nodejs/node/pull/40035)
    
  • [`f03bae7c82`](https://github.com/nodejs/node/commit/f03bae7c82)] - **tools**: update remark-html to v13.0.2 (Michaël Zasso) [#​40043](https://github.com/nodejs/node/pull/40043)
    
  • [`99af21292f`](https://github.com/nodejs/node/commit/99af21292f)] - **tools,build**: update YAML files in preparation for linting (Rich Trott) [#​40007](https://github.com/nodejs/node/pull/40007)
    
  • [`590ace418d`](https://github.com/nodejs/node/commit/590ace418d)] - **tools,doc**: fix misrendering of consecutive JS blocks (Rich Trott) [#​40146](https://github.com/nodejs/node/pull/40146)
    
  • [`5983568204`](https://github.com/nodejs/node/commit/5983568204)] - **worker**: avoid potential deadlock on NearHeapLimit (Santiago Gimeno) [#​38403](https://github.com/nodejs/node/pull/38403)
    
    

v16.9.1

Compare Source

Notable Changes

This release fixes a regression introduced by the V8 9.3 update in Node.js 16.9.0.

Commits
  • [`04f1943109`](https://github.com/nodejs/node/commit/04f1943109)] - **deps**: V8: cherry-pick [`9a60704`](https://github.com/nodejs/node/commit/9a607043cb31) (Jiawen Geng) [#​40046](https://github.com/nodejs/node/pull/40046)
    
    

v16.9.0

Compare Source

Notable Changes
Corepack

Node.js now includes Corepack, a script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development.
In practical terms, Corepack will let you use Yarn and pnpm without having to install them - just like what currently happens with npm, which is shipped in Node.js by default.
Please head over to the Corepack documentation page for more information on how to use it.

Contributed by Maël Nison - #​39608

V8 9.3

V8 is updated to version 9.3, which includes performance improvements and new JavaScript features.

Object.hasOwn

Object.hasOwn is a static alias for Object.prototype.hasOwnProperty.call:

Object.hasOwn({ value: 42 }, 'value'); // Returns `true`.
Error cause

Errors can now be optionally constructed with a cause option, pointing to another error.
This adds a cause property on the new error:

const error1 = new Error('Error one');
const error2 = new Error('Error two', { cause: error1 });
// error2.cause === error1

Contributed by Michaël Zasso - #​39947

Other Notable Changes
  • [`34c627e4bc`](https://github.com/nodejs/node/commit/34c627e4bc)] - **(SEMVER-MINOR)** **crypto**: add RSA-PSS params to asymmetricKeyDetails (Tobias Nießen) [#​39851](https://github.com/nodejs/node/pull/39851)
    
  • [`20da0a5379`](https://github.com/nodejs/node/commit/20da0a5379)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#​39635](https://github.com/nodejs/node/pull/39635)
    
  • [`cb44781371`](https://github.com/nodejs/node/commit/cb44781371)] - **(SEMVER-MINOR)** **stream**: add stream.compose (Robert Nagy) [#​39029](https://github.com/nodejs/node/pull/39029)
    
    
Commits
  • [`2343c394fb`](https://github.com/nodejs/node/commit/2343c394fb)] - **async_hooks**: use resource stack for AsyncLocalStorage run (Stephen Belanger) [#​39890](https://github.com/nodejs/node/pull/39890)
    
  • [`00951827cd`](https://github.com/nodejs/node/commit/00951827cd)] - ***Revert*** "**build**: add windows-2022 to GitHub test matrix" (Michaël Zasso) [#​39982](https://github.com/nodejs/node/pull/39982)
    
  • [`e7834535b3`](https://github.com/nodejs/node/commit/e7834535b3)] - **build**: add windows-2022 to GitHub test matrix (Michaël Zasso) [#​39857](https://github.com/nodejs/node/pull/39857)
    
  • [`c49b0c0dd4`](https://github.com/nodejs/node/commit/c49b0c0dd4)] - **build**: add support for Visual Studio 2022 (Michaël Zasso) [#​39857](https://github.com/nodejs/node/pull/39857)
    
  • [`afdb665e57`](https://github.com/nodejs/node/commit/afdb665e57)] - **build**: fix find-inactive-collaborators workflow token (Rich Trott) [#​39909](https://github.com/nodejs/node/pull/39909)
    
  • [`0ff88f362f`](https://github.com/nodejs/node/commit/0ff88f362f)] - **build**: update token used for pull requests (Rich Trott) [#​39907](https://github.com/nodejs/node/pull/39907)
    
  • [`beca890330`](https://github.com/nodejs/node/commit/beca890330)] - **build**: adapt v8\_pch.h to V8 9.3 (Michaël Zasso) [#​39469](https://github.com/nodejs/node/pull/39469)
    
  • [`2170346aa3`](https://github.com/nodejs/node/commit/2170346aa3)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​39947](https://github.com/nodejs/node/pull/39947)
    
  • [`d33ab968ab`](https://github.com/nodejs/node/commit/d33ab968ab)] - **cluster**: fix comment regarding child_process file (Yash Ladha) [#​39308](https://github.com/nodejs/node/pull/39308)
    
  • [`585199497f`](https://github.com/nodejs/node/commit/585199497f)] - **crypto**: fix regression in RSA-PSS keygen (Tobias Nießen) [#​39937](https://github.com/nodejs/node/pull/39937)
    
  • [`34c627e4bc`](https://github.com/nodejs/node/commit/34c627e4bc)] - **(SEMVER-MINOR)** **crypto**: add RSA-PSS params to asymmetricKeyDetails (Tobias Nießen) [#​39851](https://github.com/nodejs/node/pull/39851)
    
  • [`1dd91582da`](https://github.com/nodejs/node/commit/1dd91582da)] - **crypto**: fix rsa-pss one-shot sign/verify error handling (Filip Skokan) [#​39830](https://github.com/nodejs/node/pull/39830)
    
  • [`20cf47004e`](https://github.com/nodejs/node/commit/20cf47004e)] - **crypto**: fix JWK RSA-PSS SubtleCrypto.exportKey (Filip Skokan) [#​39828](https://github.com/nodejs/node/pull/39828)
    
  • [`e25dc8e470`](https://github.com/nodejs/node/commit/e25dc8e470)] - **deps**: upgrade npm to 7.21.1 (npm team) [#​39904](https://github.com/nodejs/node/pull/39904)
    
  • [`9270684837`](https://github.com/nodejs/node/commit/9270684837)] - **deps**: update archs files for OpenSSL-1.1.1l+quic (Richard Lau) [#​39867](https://github.com/nodejs/node/pull/39867)
    
  • [`4b5bbec6cc`](https://github.com/nodejs/node/commit/4b5bbec6cc)] - **deps**: upgrade openssl sources to OpenSSL\_1\_1\_1l+quic (Richard Lau) [#​39867](https://github.com/nodejs/node/pull/39867)
    
  • [`71659fd4ba`](https://github.com/nodejs/node/commit/71659fd4ba)] - **(SEMVER-MINOR)** **deps**: add corepack (Maël Nison) [#​39608](https://github.com/nodejs/node/pull/39608)
    
  • [`7470db0dfb`](https://github.com/nodejs/node/commit/7470db0dfb)] - **deps**: restore minimum ICU version to 68 (Michaël Zasso) [#​39470](https://github.com/nodejs/node/pull/39470)
    
  • [`92d83d18d2`](https://github.com/nodejs/node/commit/92d83d18d2)] - **deps**: make V8 9.3 abi-compatible with 9.0 (Michaël Zasso) [#​39947](https://github.com/nodejs/node/pull/39947)
    
  • [`0140face81`](https://github.com/nodejs/node/commit/0140face81)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#​39829](https://github.com/nodejs/node/pull/39829)
    
  • [`3e1053e755`](https://github.com/nodejs/node/commit/3e1053e755)] - **deps**: V8: cherry-pick [`81814ed`](https://github.com/nodejs/node/commit/81814ed44574) (Stephen Belanger) [#​39719](https://github.com/nodejs/node/pull/39719)
    
  • [`d9d0104878`](https://github.com/nodejs/node/commit/d9d0104878)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#​38990](https://github.com/nodejs/node/pull/38990)
    
  • [`cd9b03ea40`](https://github.com/nodejs/node/commit/cd9b03ea40)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#​37587](https://github.com/nodejs/node/pull/37587)
    
  • [`b83cab712f`](https://github.com/nodejs/node/commit/b83cab712f)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#​35415](https://github.com/nodejs/node/pull/35415)
    
  • [`068824d754`](https://github.com/nodejs/node/commit/068824d754)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`54f4f1af50`](https://github.com/nodejs/node/commit/54f4f1af50)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`10ba1cb8b2`](https://github.com/nodejs/node/commit/10ba1cb8b2)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`3ce6f72124`](https://github.com/nodejs/node/commit/3ce6f72124)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#​32116](https://github.com/nodejs/node/pull/32116)
    
  • [`f43c292520`](https://github.com/nodejs/node/commit/f43c292520)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.3.345.16 (Michaël Zasso) [#​39947](https://github.com/nodejs/node/pull/39947)
    
  • [`9e782eb758`](https://github.com/nodejs/node/commit/9e782eb758)] - **doc**: remove {C,Dec}ompressionStream documentation (Luigi Pinca) [#​39899](https://github.com/nodejs/node/pull/39899)
    
  • [`7857e9cc77`](https://github.com/nodejs/node/commit/7857e9cc77)] - **doc**: add descriptions about when `options.mode` is ignored (Ray) [#​39881](https://github.com/nodejs/node/pull/39881)
    
  • [`d43b555047`](https://github.com/nodejs/node/commit/d43b555047)] - **doc**: remove danbev from TSC member list (Daniel Bevenius) [#​39978](https://github.com/nodejs/node/pull/39978)
    
  • [`fc01dd916e`](https://github.com/nodejs/node/commit/fc01dd916e)] - **doc**: add missing changes to generateKeyPair(Sync) (Tobias Nießen) [#​39963](https://github.com/nodejs/node/pull/39963)
    
  • [`953f2e9f88`](https://github.com/nodejs/node/commit/953f2e9f88)] - **doc**: add nodejs/tweet issue creation to sec. doc (Daniel Bevenius) [#​39940](https://github.com/nodejs/node/pull/39940)
    
  • [`29c4b07716`](https://github.com/nodejs/node/commit/29c4b07716)] - **doc**: update WASI example to use import.meta.url (Guy Bedford) [#​39925](https://github.com/nodejs/node/pull/39925)
    
  • [`9eb4a70c14`](https://github.com/nodejs/node/commit/9eb4a70c14)] - **doc**: move reference to OpenSSL flags SSL_OP_\* (Tobias Nießen) [#​39935](https://github.com/nodejs/node/pull/39935)
    
  • [`8ea4befc82`](https://github.com/nodejs/node/commit/8ea4befc82)] - **doc**: add docs for duplex.allowHalfOpen property (Tim Perry) [#​39126](https://github.com/nodejs/node/pull/39126)
    
  • [`bc2b73ec9b`](https://github.com/nodejs/node/commit/bc2b73ec9b)] - **doc**: add FrankQiu to a triager (FrankQiu) [#​39922](https://github.com/nodejs/node/pull/39922)
    
  • [`8b68f8ec38`](https://github.com/nodejs/node/commit/8b68f8ec38)] - **doc**: add VoltrexMaster to triagers (voltrexmaster) [#​39920](https://github.com/nodejs/node/pull/39920)
    
  • [`3a8f77ac0d`](https://github.com/nodejs/node/commit/3a8f77ac0d)] - **doc**: document JavaScript tool for benchmark comparison (Michaël Zasso) [#​39835](https://github.com/nodejs/node/pull/39835)
    
  • [`4ac703ca8e`](https://github.com/nodejs/node/commit/4ac703ca8e)] - **doc**: add Mesteery to triagers (Mestery) [#​39887](https://github.com/nodejs/node/pull/39887)
    
  • [`d059a5186b`](https://github.com/nodejs/node/commit/d059a5186b)] - **doc**: update maintaining openssl guide (Richard Lau) [#​39878](https://github.com/nodejs/node/pull/39878)
    
  • [`486150580c`](https://github.com/nodejs/node/commit/486150580c)] - **doc**: move ERR_WORKER_UNSPPORTED_EXTENSION to legacy (Qingyu Deng) [#​39788](https://github.com/nodejs/node/pull/39788)
    
  • [`a4b8c13798`](https://github.com/nodejs/node/commit/a4b8c13798)] - **events**: protect property defs against prototype polution (James M Snell) [#​39773](https://github.com/nodejs/node/pull/39773)
    
  • [`cfbe9065ae`](https://github.com/nodejs/node/commit/cfbe9065ae)] - **events**: add brand checks for detached accessors (James M Snell) [#​39773](https://github.com/nodejs/node/pull/39773)
    
  • [`112af69194`](https://github.com/nodejs/node/commit/112af69194)] - **fs**: add docs and tests for `AsyncIterable` support in `fh.writeFile` (Antoine du Hamel) [#​39836](https://github.com/nodejs/node/pull/39836)
    
  • [`402071bc45`](https://github.com/nodejs/node/commit/402071bc45)] - **meta**: remove duplicate AUTHORS entry for NigelKibodeaux (Rich Trott) [#​39967](https://github.com/nodejs/node/pull/39967)
    
  • [`3588f07603`](https://github.com/nodejs/node/commit/3588f07603)] - **meta**: add mailmap entry for Ethan-Arrowood (Rich Trott) [#​39930](https://github.com/nodejs/node/pull/39930)
    
  • [`259e0cf4d7`](https://github.com/nodejs/node/commit/259e0cf4d7)] - **meta**: add mailmap entry for branisha (Rich Trott) [#​39889](https://github.com/nodejs/node/pull/39889)
    
  • [`bc236a6714`](https://github.com/nodejs/node/commit/bc236a6714)] - **meta**: update .mailmap to remove duplicate AUTHORS entry for addaleax (Rich Trott) [#​39880](https://github.com/nodejs/node/pull/39880)
    
  • [`20da0a5379`](https://github.com/nodejs/node/commit/20da0a5379)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#​39635](https://github.com/nodejs/node/pull/39635)
    
  • [`879dc4658e`](https://github.com/nodejs/node/commit/879dc4658e)] - **src**: remove usage of AllocatedBuffer from src/node_buffer.cc (Darshan Sen) [#​39941](https://github.com/nodejs/node/pull/39941)
    
  • [`79ce096470`](https://github.com/nodejs/node/commit/79ce096470)] - **src**: remove extra semicolons outside fns (Shelley Vohr) [#​39800](https://github.com/nodejs/node/pull/39800)
    
  • [`cb44781371`](https://github.com/nodejs/node/commit/cb44781371)] - **(SEMVER-MINOR)** **stream**: add stream.compose (Robert Nagy) [#​39029](https://github.com/nodejs/node/pull/39029)
    
  • [`ca9b781d20`](https://github.com/nodejs/node/commit/ca9b781d20)] - **test**: use `assert.match` instead of `regexp.test` (Michaël Zasso) [#​39928](https://github.com/nodejs/node/pull/39928)
    
  • [`007e2855af`](https://github.com/nodejs/node/commit/007e2855af)] - **test**: use error code mapping in place of raw errno (Darshan Sen) [#​38675](https://github.com/nodejs/node/pull/38675)
    
  • [`00529b0ef2`](https://github.com/nodejs/node/commit/00529b0ef2)] - **test**: add test to verify other extension can be loaded by worker (Qingyu Deng) [#​39788](https://github.com/nodejs/node/pull/39788)
    
  • [`4e7212c88c`](https://github.com/nodejs/node/commit/4e7212c88c)] - **test**: update error message keywords (leeight) [#​39826](https://github.com/nodejs/node/pull/39826)
    
  • [`549d717722`](https://github.com/nodejs/node/commit/549d717722)] - **test**: adapt test-fs-read to V8 9.3 (Michaël Zasso) [#​39469](https://github.com/nodejs/node/pull/39469)
    
  • [`644b25e068`](https://github.com/nodejs/node/commit/644b25e068)] - **test**: adapt test-util-inspect to V8 9.3 (Michaël Zasso) [#​39469](https://github.com/nodejs/node/pull/39469)
    
  • [`105bff9ea5`](https://github.com/nodejs/node/commit/105bff9ea5)] - **test**: adapt test-v8-flags to V8 9.3 (Michaël Zasso) [#​39469](https://github.com/nodejs/node/pull/39469)
    
  • [`d92bd9a982`](https://github.com/nodejs/node/commit/d92bd9a982)] - **tools**: add support for import assertions in linter (Antoine du Hamel) [#​39924](https://github.com/nodejs/node/pull/39924)
    
  • [`9763561e30`](https://github.com/nodejs/node/commit/9763561e30)] - **tools**: update gyp-next to v0.10.0 (Michaël Zasso) [#​39857](https://github.com/nodejs/node/pull/39857)
    
  • [`9f105c73fc`](https://github.com/nodejs/node/commit/9f105c73fc)] - **tools**: update V8 gypfiles for 9.3 (Michaël Zasso) [#​39469](https://github.com/nodejs/node/pull/39469)
    
  • [`16271d2f50`](https://github.com/nodejs/node/commit/16271d2f50)] - **worker**: remove file extension check (Qingyu Deng) [#​39788](https://github.com/nodejs/node/pull/39788)
    
  • [`3b1ce93e03`](https://github.com/nodejs/node/commit/3b1ce93e03)] - **worker**: add brand checks for detached MessageEvent accessors (James M Snell) [#​39773](https://github.com/nodejs/node/pull/39773)
    
    

v16.8.0

Compare Source

Notable Changes
  • [`2e90b10f35`](https://github.com/nodejs/node/commit/2e90b10f35)] - **doc**: deprecate type coercion for `dns.lookup` options (Antoine du Hamel) [#​38906](https://github.com/nodejs/node/pull/38906)
    
  • [`a6d50a18a0`](https://github.com/nodejs/node/commit/a6d50a18a0)] - **(SEMVER-MINOR)** **stream**: add `stream.Duplex.from` utility (Robert Nagy) [#​39519](https://github.com/nodejs/node/pull/39519)
    
  • [`af7047a815`](https://github.com/nodejs/node/commit/af7047a815)] - **(SEMVER-MINOR)** **stream**: add `isDisturbed` helper (Robert Nagy) [#​39628](https://github.com/nodejs/node/pull/39628)
    
  • [`66400374de`](https://github.com/nodejs/node/commit/66400374de)] - **(SEMVER-MINOR)** **util**: expose `toUSVString` (Robert Nagy) [#​39814](https://github.com/nodejs/node/pull/39814)
    
    
Commits
  • [`90bf247a55`](https://github.com/nodejs/node/commit/90bf247a55)] - **build**: fix update authors commit (Mestery) [#​39858](https://github.com/nodejs/node/pull/39858)
    
  • [`c968372e37`](https://github.com/nodejs/node/commit/c968372e37)] - **build**: add authors.yml (Tierney Cyren) [#​35831](https://github.com/nodejs/node/pull/35831)
    
  • [`3f284cf65c`](https://github.com/nodejs/node/commit/3f284cf65c)] - **build**: add option to hide console window (Cheng Zhao) [#​39712](https://github.com/nodejs/node/pull/39712)
    
  • [`a01e3ab41d`](https://github.com/nodejs/node/commit/a01e3ab41d)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#​39829](https://github.com/nodejs/node/pull/39829)
    
  • [`cce95c4c5b`](https://github.com/nodejs/node/commit/cce95c4c5b)] - **deps**: upgrade npm to 7.21.0 (Myles Borins) [#​39813](https://github.com/nodejs/node/pull/39813)
    
  • [`254810a22e`](https://github.com/nodejs/node/commit/254810a22e)] - **doc**: add duplicate CVE check in sec. release doc (Daniel Bevenius) [#​39845](https://github.com/nodejs/node/pull/39845)
    
  • [`8c50d16712`](https://github.com/nodejs/node/commit/8c50d16712)] - **doc**: improve description of the triagers team (Michaël Zasso) [#​39833](https://github.com/nodejs/node/pull/39833)
    
  • [`c02165d992`](https://github.com/nodejs/node/commit/c02165d992)] - **doc**: update instructions for cc (Michael Dawson) [#​39674](https://github.com/nodejs/node/pull/39674)
    
  • [`208305fd8f`](https://github.com/nodejs/node/commit/208305fd8f)] - **doc**: move util.toUSVString() outside of deprecated group (Luigi Pinca) [#​39840](https://github.com/nodejs/node/pull/39840)
    
  • [`2e90b10f35`](https://github.com/nodejs/node/commit/2e90b10f35)] - **doc**: deprecate type coercion for `dns.lookup` options (Antoine du Hamel) [#​38906](https://github.com/nodejs/node/pull/38906)
    
  • [`8460a3216c`](https://github.com/nodejs/node/commit/8460a3216c)] - **doc**: deprecate using non-boolean values in the `verbatim` option (Antoine du Hamel) [#​38906](https://github.com/nodejs/node/pull/38906)
    
  • [`3041d57201`](https://github.com/nodejs/node/commit/3041d57201)] - **doc**: fix malformed changelog entries (Rich Trott) [#​39791](https://github.com/nodejs/node/pull/39791)
    
  • [`2b02f747c3`](https://github.com/nodejs/node/commit/2b02f747c3)] - **doc**: fix lint errors in packages.md (Rich Trott) [#​39792](https://github.com/nodejs/node/pull/39792)
    
  • [`a387600d8f`](https://github.com/nodejs/node/commit/a387600d8f)] - **doc**: add example of self-reference in scoped packages (Jesús Leganés-Combarro 'piranna) [#​37630](https://github.com/nodejs/node/pull/37630)
    
  • [`7a25bf3a6d`](https://github.com/nodejs/node/commit/7a25bf3a6d)] - **doc**: add himadriganguly as a triager (Himadri Ganguly) [#​39757](https://github.com/nodejs/node/pull/39757)
    
  • [`d1900f43ce`](https://github.com/nodejs/node/commit/d1900f43ce)] - **fs**: combine require() and destructure (Colin Ihrig) [#​39806](https://github.com/nodejs/node/pull/39806)
    
  • [`158d4464d2`](https://github.com/nodejs/node/commit/158d4464d2)] - **meta**: add gyp as owner of gyp files and tools/gyp (Mary Marchini) [#​34847](https://github.com/nodejs/node/pull/34847)
    
  • [`8fa38500f2`](https://github.com/nodejs/node/commit/8fa38500f2)] - **policy**: canonicalize before resolving specifiers (Bradley Farias) [#​37863](https://github.com/nodejs/node/pull/37863)
    
  • [`a7a217be13`](https://github.com/nodejs/node/commit/a7a217be13)] - **repl**: fix tla function hoisting (Don Jayamanne) [#​39745](https://github.com/nodejs/node/pull/39745)
    
  • [`3a8399ee61`](https://github.com/nodejs/node/commit/3a8399ee61)] - **src**: return Maybe\<bool> from InitializeContextRuntime() (Darshan Sen) [#&#8203;39695](https://github.com/nodejs/node/pull/39695)
    
  • [`a704c9dfce`](https://github.com/nodejs/node/commit/a704c9dfce)] - **(SEMVER-MINOR)** **src**: call overload ctor from the original ctor (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768)
    
  • [`0918ea0683`](https://github.com/nodejs/node/commit/0918ea0683)] - **(SEMVER-MINOR)** **src**: add a constructor overload for CallbackScope (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768)
    
  • [`a6d50a18a0`](https://github.com/nodejs/node/commit/a6d50a18a0)] - **(SEMVER-MINOR)** **stream**: duplexify (Robert Nagy) [#&#8203;39519](https://github.com/nodejs/node/pull/39519)
    
  • [`af7047a815`](https://github.com/nodejs/node/commit/af7047a815)] - **(SEMVER-MINOR)** **stream**: add isDisturbed helper (Robert Nagy) [#&#8203;39628](https://github.com/nodejs/node/pull/39628)
    
  • [`f98311a7c8`](https://github.com/nodejs/node/commit/f98311a7c8)] - **tools**: update workflow to open a pull request (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825)
    
  • [`d33f897509`](https://github.com/nodejs/node/commit/d33f897509)] - **tools**: use find-inactive-collaborators to modify README.md (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825)
    
  • [`d82ee96861`](https://github.com/nodejs/node/commit/d82ee96861)] - **tools**: update gyp-next to v0.9.5 (Jiawen Geng) [#&#8203;39818](https://github.com/nodejs/node/pull/39818)
    
  • [`79079ea01b`](https://github.com/nodejs/node/commit/79079ea01b)] - **tools**: fix markdown linting (Rich Trott) [#&#8203;39832](https://github.com/nodejs/node/pull/39832)
    
  • [`01093b07cc`](https://github.com/nodejs/node/commit/01093b07cc)] - **tools**: update markdown linter dependencies and move to ESM (Antoine du Hamel) [#&#8203;39801](https://github.com/nodejs/node/pull/39801)
    
  • [`9dc0c91392`](https://github.com/nodejs/node/commit/9dc0c91392)] - **tools**: update rollup to latest version in markdown linter (Rich Trott) [#&#8203;39797](https://github.com/nodejs/node/pull/39797)
    
  • [`c34e2534ab`](https://github.com/nodejs/node/commit/c34e2534ab)] - **tools**: update markdown lint dependencies (Rich Trott) [#&#8203;39770](https://github.com/nodejs/node/pull/39770)
    
  • [`66400374de`](https://github.com/nodejs/node/commit/66400374de)] - **(SEMVER-MINOR)** **util**: expose toUSVString (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814)
    
    

v16.7.0

Compare Source

Notable Changes
  • fs:
    • experimental: add recursive cp method (Benjamin Coe) #​39372
Commits
  • [`a80c989306`](https://github.com/nodejs/node/commit/a80c989306)] - **async_hooks**: merge resource_symbol with owner_symbol (Darshan Sen) [#&#8203;38468](https://github.com/nodejs/node/pull/38468)
    
  • [`69a2a6b6c3`](https://github.com/nodejs/node/commit/69a2a6b6c3)] - **bootstrap**: call \_undestroy() inside \_destroy for stdout and stderr (Matteo Collina) [#&#8203;39685](https://github.com/nodejs/node/pull/39685)
    
  • [`5bc31ea0aa`](https://github.com/nodejs/node/commit/5bc31ea0aa)] - **buffer**: add endings option, remove Node.js specific encoding option (James M Snell) [#&#8203;39708](https://github.com/nodejs/node/pull/39708)
    
  • [`091a579275`](https://github.com/nodejs/node/commit/091a579275)] - **(SEMVER-MINOR)** **buffer**: add Blob.prototype.stream method and other cleanups (James M Snell) [#&#8203;39693](https://github.com/nodejs/node/pull/39693)
    
  • [`097d898e58`](https://github.com/nodejs/node/commit/097d898e58)] - **build**: run coverage for inspector protocol changes (Richard Lau) [#&#8203;39725](https://github.com/nodejs/node/pull/39725)
    
  • [`cf028df0ed`](https://github.com/nodejs/node/commit/cf028df0ed)] - **build**: fix V8 build with pointer compression (Michaël Zasso) [#&#8203;39664](https://github.com/nodejs/node/pull/39664)
    
  • [`9d38400de1`](https://github.com/nodejs/node/commit/9d38400de1)] - **build**: exclude markdown files from some GitHub Actions (Rich Trott) [#&#8203;39565](https://github.com/nodejs/node/pull/39565)
    
  • [`eeb804a7b7`](https://github.com/nodejs/node/commit/eeb804a7b7)] - **build**: use lts shorthand in GitHub Actions (Rich Trott) [#&#8203;39538](https://github.com/nodejs/node/pull/39538)
    
  • [`93a904d0ba`](https://github.com/nodejs/node/commit/93a904d0ba)] - **(SEMVER-MINOR)** **crypto**: implement webcrypto.randomUUID (Michaël Zasso) [#&#8203;39648](https://github.com/nodejs/node/pull/39648)
    
  • [`3321b65a5a`](https://github.com/nodejs/node/commit/3321b65a5a)] - **debugger**: prevent simultaneous heap snapshots (Rich Trott) [#&#8203;39638](https://github.com/nodejs/node/pull/39638)
    
  • [`6c375e18b6`](https://github.com/nodejs/node/commit/6c375e18b6)] - **debugger**: remove undefined parameter (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570)
    
  • [`103bf20988`](https://github.com/nodejs/node/commit/103bf20988)] - **deps**: V8: cherry-pick [`81814ed`](https://github.com/nodejs/node/commit/81814ed44574) (Stephen Belanger) [#&#8203;39719](https://github.com/nodejs/node/pull/39719)
    
  • [`cf5e5b5711`](https://github.com/nodejs/node/commit/cf5e5b5711)] - **deps**: upgrade to libuv 1.42.0 (Luigi Pinca) [#&#8203;39525](https://github.com/nodejs/node/pull/39525)
    
  • [`5f92d2fe6d`](https://github.com/nodejs/node/commit/5f92d2fe6d)] - **dgram**: use simplified validator (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753)
    
  • [`c7e918b06a`](https://github.com/nodejs/node/commit/c7e918b06a)] - **(SEMVER-MINOR)** **dns**: add "tries" option to Resolve options (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`5d66646b71`](https://github.com/nodejs/node/commit/5d66646b71)] - **doc**: correct cjs code to match mjs code (Raz Luvaton) [#&#8203;39509](https://github.com/nodejs/node/pull/39509)
    
  • [`f18bb2a0f1`](https://github.com/nodejs/node/commit/f18bb2a0f1)] - **doc**: fix typo in hmac.paramNames default (Justin) [#&#8203;39766](https://github.com/nodejs/node/pull/39766)
    
  • [`338a166e83`](https://github.com/nodejs/node/commit/338a166e83)] - **doc**: fix `fs.rmdir` `recursive` option deprecation history (Antoine du Hamel) [#&#8203;39728](https://github.com/nodejs/node/pull/39728)
    
  • [`bfb1dc0a2c`](https://github.com/nodejs/node/commit/bfb1dc0a2c)] - **doc**: fixed variable names in queueMicrotask example (ashish maurya) [#&#8203;39634](https://github.com/nodejs/node/pull/39634)
    
  • [`08b31f12f8`](https://github.com/nodejs/node/commit/08b31f12f8)] - **doc**: change "Version 4 UUID" to "version 4 UUID" (Tobias Nießen) [#&#8203;39682](https://github.com/nodejs/node/pull/39682)
    
  • [`f5200f9785`](https://github.com/nodejs/node/commit/f5200f9785)] - **doc**: update debugger.md description and examples (Rich Trott) [#&#8203;39661](https://github.com/nodejs/node/pull/39661)
    
  • [`4700f1e529`](https://github.com/nodejs/node/commit/4700f1e529)] - **doc**: fix color contrast issue in light mode (Rich Trott) [#&#8203;39660](https://github.com/nodejs/node/pull/39660)
    
  • [`88c83a4698`](https://github.com/nodejs/node/commit/88c83a4698)] - **(SEMVER-MINOR)** **doc**: add missing change to resolver ctor (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`760cafa5ed`](https://github.com/nodejs/node/commit/760cafa5ed)] - **doc**: fix typo in `url.md` (Howie Zhao) [#&#8203;39666](https://github.com/nodejs/node/pull/39666)
    
  • [`9ab5503693`](https://github.com/nodejs/node/commit/9ab5503693)] - **doc**: add point to ask H1 reporter about credit (Daniel Bevenius) [#&#8203;39585](https://github.com/nodejs/node/pull/39585)
    
  • [`7514405456`](https://github.com/nodejs/node/commit/7514405456)] - **doc**: update min mac ver + move mac arm64 to tier 1 (Ash Cripps) [#&#8203;39586](https://github.com/nodejs/node/pull/39586)
    
  • [`d7c8c6dcee`](https://github.com/nodejs/node/commit/d7c8c6dcee)] - **doc**: add missing `introduced_in` metadata (Richard Lau) [#&#8203;39575](https://github.com/nodejs/node/pull/39575)
    
  • [`8072517097`](https://github.com/nodejs/node/commit/8072517097)] - **doc**: add code examples to `Writable.destroy()` and `Writable.destroyed` (Juan José Arboleda) [#&#8203;39491](https://github.com/nodejs/node/pull/39491)
    
  • [`55f47cc2d0`](https://github.com/nodejs/node/commit/55f47cc2d0)] - **doc**: add `String.prototype.at` and `%TypedArray%.prototype.at` (Jordan Harband) [#&#8203;39583](https://github.com/nodejs/node/pull/39583)
    
  • [`0c0412e2c4`](https://github.com/nodejs/node/commit/0c0412e2c4)] - **doc**: move `NODE_MODULE_VERSION` in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`5df74f9b21`](https://github.com/nodejs/node/commit/5df74f9b21)] - **doc**: remove outdated ARM information from release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`8eccb11ea0`](https://github.com/nodejs/node/commit/8eccb11ea0)] - **doc**: fence command examples in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`0bd97e1f2d`](https://github.com/nodejs/node/commit/0bd97e1f2d)] - **doc**: update backport labels in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`2129ad6a0a`](https://github.com/nodejs/node/commit/2129ad6a0a)] - **doc**: add code example to `fs.truncate` method (Juan José Arboleda) [#&#8203;39454](https://github.com/nodejs/node/pull/39454)
    
  • [`3ff5e153ef`](https://github.com/nodejs/node/commit/3ff5e153ef)] - **doc**: add code example to `http.createServer` method (Juan José Arboleda) [#&#8203;39455](https://github.com/nodejs/node/pull/39455)
    
  • [`7d0c869cfa`](https://github.com/nodejs/node/commit/7d0c869cfa)] - **doc**: add PerformanceObserver `buffered` document (legendecas) [#&#8203;39514](https://github.com/nodejs/node/pull/39514)
    
  • [`0dc167a03f`](https://github.com/nodejs/node/commit/0dc167a03f)] - **(SEMVER-MINOR)** **fs**: add recursive cp method (Benjamin Coe) [#&#8203;39372](https://github.com/nodejs/node/pull/39372)
    
  • [`54dd3df943`](https://github.com/nodejs/node/commit/54dd3df943)] - **http**: decodes url.username and url.password for authorization header (Lew Gordon) [#&#8203;39310](https://github.com/nodejs/node/pull/39310)
    
  • [`81e62f67bf`](https://github.com/nodejs/node/commit/81e62f67bf)] - **inspector**: update inspector_protocol to [`89c4adf`](https://github.com/nodejs/node/commit/89c4adf) (Rich Trott) [#&#8203;39650](https://github.com/nodejs/node/pull/39650)
    
  • [`793fee4915`](https://github.com/nodejs/node/commit/793fee4915)] - **inspector**: update inspector_protocol to [`8ec18cf`](https://github.com/nodejs/node/commit/8ec18cf) (Rich Trott) [#&#8203;39614](https://github.com/nodejs/node/pull/39614)
    
  • [`5afdc1f4c0`](https://github.com/nodejs/node/commit/5afdc1f4c0)] - **lib**: simplify validators (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753)
    
  • [`ca3cb96d25`](https://github.com/nodejs/node/commit/ca3cb96d25)] - **lib**: cleanup validation (Voltrex) [#&#8203;39652](https://github.com/nodejs/node/pull/39652)
    
  • [`cc08d3062f`](https://github.com/nodejs/node/commit/cc08d3062f)] - **lib**: cleanup instance validation (Voltrex) [#&#8203;39656](https://github.com/nodejs/node/pull/39656)
    
  • [`2751cdf6f9`](https://github.com/nodejs/node/commit/2751cdf6f9)] - **lib**: use helper for readability (Voltrex) [#&#8203;39649](https://github.com/nodejs/node/pull/39649)
    
  • [`c68415cba2`](https://github.com/nodejs/node/commit/c68415cba2)] - **lib**: use validators (Voltrex) [#&#8203;39663](https://github.com/nodejs/node/pull/39663)
    
  • [`be2d60dd1d`](https://github.com/nodejs/node/commit/be2d60dd1d)] - **lib**: use validator (Voltrex) [#&#8203;39547](https://github.com/nodejs/node/pull/39547)
    
  • [`486d51ac0c`](https://github.com/nodejs/node/commit/486d51ac0c)] - **lib**: use `validateObject` (Voltrex) [#&#8203;39605](https://github.com/nodejs/node/pull/39605)
    
  • [`058e882a2a`](https://github.com/nodejs/node/commit/058e882a2a)] - **lib**: use ERR_ILLEGAL_CONSTRUCTOR (Mestery) [#&#8203;39556](https://github.com/nodejs/node/pull/39556)
    
  • [`07cadc4432`](https://github.com/nodejs/node/commit/07cadc4432)] - **meta**: consolidate AUTHORS entries for ooHmartY (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`6c788b8030`](https://github.com/nodejs/node/commit/6c788b8030)] - **meta**: consolidate AUTHORS entries for homosaur (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`07351edebe`](https://github.com/nodejs/node/commit/07351edebe)] - **meta**: consolidate AUTHORS entries for Ayase-252 (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`5fe282769b`](https://github.com/nodejs/node/commit/5fe282769b)] - **meta**: consolidate AUTHORS entries for robin-drexler (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`fc2a626357`](https://github.com/nodejs/node/commit/fc2a626357)] - **meta**: consolidate AUTHORS entries for samshull (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`67cfc66a47`](https://github.com/nodejs/node/commit/67cfc66a47)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`91008fbdeb`](https://github.com/nodejs/node/commit/91008fbdeb)] - **meta**: consolidate email addresses for MarshallOfSound (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651)
    
  • [`a76b63536a`](https://github.com/nodejs/node/commit/a76b63536a)] - **meta**: consolidate email addresses for tadjik1 (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651)
    
  • [`aaab2095db`](https://github.com/nodejs/node/commit/aaab2095db)] - **meta**: consolidate email addresses for szmarczak (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651)
    
  • [`f413a9d83c`](https://github.com/nodejs/node/commit/f413a9d83c)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39636](https://github.com/nodejs/node/pull/39636)
    
  • [`7a91d4bfe9`](https://github.com/nodejs/node/commit/7a91d4bfe9)] - **meta**: simplify mailmap (Rich Trott) [#&#8203;39612](https://github.com/nodejs/node/pull/39612)
    
  • [`4ec5d2de5d`](https://github.com/nodejs/node/commit/4ec5d2de5d)] - **meta**: consolidate emails for tadhgcreedon (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611)
    
  • [`bb88c38eac`](https://github.com/nodejs/node/commit/bb88c38eac)] - **meta**: consolidate emails for timcosta (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611)
    
  • [`0920a8cf6f`](https://github.com/nodejs/node/commit/0920a8cf6f)] - **meta**: consolidate emails for timruffles (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611)
    
  • [`1474a9d4b1`](https://github.com/nodejs/node/commit/1474a9d4b1)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39629](https://github.com/nodejs/node/pull/39629)
    
  • [`c59e3ec685`](https://github.com/nodejs/node/commit/c59e3ec685)] - **meta**: add mailmap entry for ryzokuken (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596)
    
  • [`34f4bb8277`](https://github.com/nodejs/node/commit/34f4bb8277)] - **meta**: add mailmap entry for uttampawar (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596)
    
  • [`fd213edda2`](https://github.com/nodejs/node/commit/fd213edda2)] - **meta**: add mailmap entry for dmabupt (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596)
    
  • [`6b664e224b`](https://github.com/nodejs/node/commit/6b664e224b)] - **meta**: align README/.mailmap/AUTHORS email entries (Rich Trott) [#&#8203;39505](https://github.com/nodejs/node/pull/39505)
    
  • [`96d8ecbd66`](https://github.com/nodejs/node/commit/96d8ecbd66)] - **meta**: add mailmap entry for garygsc (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588)
    
  • [`16d85f3f48`](https://github.com/nodejs/node/commit/16d85f3f48)] - **meta**: add mailmap entry for ttzztztz (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588)
    
  • [`60ab111fdb`](https://github.com/nodejs/node/commit/60ab111fdb)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39587](https://github.com/nodejs/node/pull/39587)
    
  • [`b43f87d729`](https://github.com/nodejs/node/commit/b43f87d729)] - **meta**: update .mailmap to remove duplication in AUTHORS (Rich Trott) [#&#8203;39561](https://github.com/nodejs/node/pull/39561)
    
  • [`6f4a2aa5a4`](https://github.com/nodejs/node/commit/6f4a2aa5a4)] - **meta**: add .mailmap entries to remove AUTHORS duplicates (Rich Trott) [#&#8203;39560](https://github.com/nodejs/node/pull/39560)
    
  • [`86d144c500`](https://github.com/nodejs/node/commit/86d144c500)] - **meta**: add .mailmap entry to remove duplication in AUTHORS (Rich Trott) [#&#8203;39559](https://github.com/nodejs/node/pull/39559)
    
  • [`110c088f02`](https://github.com/nodejs/node/commit/110c088f02)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521)
    
  • [`72af147bb5`](https://github.com/nodejs/node/commit/72af147bb5)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521)
    
  • [`23bc4cfb21`](https://github.com/nodejs/node/commit/23bc4cfb21)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521)
    
  • [`e4289728c7`](https://github.com/nodejs/node/commit/e4289728c7)] - **meta**: move gdams to emeritus (Rich Trott) [#&#8203;39539](https://github.com/nodejs/node/pull/39539)
    
  • [`4df59bc727`](https://github.com/nodejs/node/commit/4df59bc727)] - **module**: add some typings to `internal/modules/esm/resolve` (Antoine du Hamel) [#&#8203;39504](https://github.com/nodejs/node/pull/39504)
    
  • [`b5858589d0`](https://github.com/nodejs/node/commit/b5858589d0)] - **node-api**: handle pending exception in cb wrapper (Michael Dawson) [#&#8203;39476](https://github.com/nodejs/node/pull/39476)
    
  • [`016b7ba616`](https://github.com/nodejs/node/commit/016b7ba616)] - **perf_hooks**: fix PerformanceObserver gc crash (James M Snell) [#&#8203;39550](https://github.com/nodejs/node/pull/39550)
    
  • [`b37575b67c`](https://github.com/nodejs/node/commit/b37575b67c)] - **perf_hooks**: fix performance timeline wpt failures (legendecas) [#&#8203;39532](https://github.com/nodejs/node/pull/39532)
    
  • [`64c02eb3cc`](https://github.com/nodejs/node/commit/64c02eb3cc)] - **(SEMVER-MINOR)** **perf_hooks**: web performance timeline compliance (legendecas) [#&#8203;39297](https://github.com/nodejs/node/pull/39297)
    
  • [`7ff21397d6`](https://github.com/nodejs/node/commit/7ff21397d6)] - **policy**: fix integrity when DEFAULT_ENCODING is set (Tobias Nießen) [#&#8203;39750](https://github.com/nodejs/node/pull/39750)
    
  • [`03be967cad`](https://github.com/nodejs/node/commit/03be967cad)] - **src**: fix TextDecoder final flush size calculation (James M Snell) [#&#8203;39737](https://github.com/nodejs/node/pull/39737)
    
  • [`9046e78943`](https://github.com/nodejs/node/commit/9046e78943)] - **src**: fix crash in AfterGetAddrInfo (Anna Henningsen) [#&#8203;39735](https://github.com/nodejs/node/pull/39735)
    
  • [`2a00ef5ede`](https://github.com/nodejs/node/commit/2a00ef5ede)] - **(SEMVER-MINOR)** **src**: fix align in cares_wrap.h (Luan) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`60a2b31c68`](https://github.com/nodejs/node/commit/60a2b31c68)] - **src**: add cosmetic space character to `async_wrap.h` file (Juan José Arboleda) [#&#8203;39459](https://github.com/nodejs/node/pull/39459)
    
  • [`cd9b0bf68c`](https://github.com/nodejs/node/commit/cd9b0bf68c)] - **stream**: ensure text() stream consumer flushes correctly (James M Snell) [#&#8203;39737](https://github.com/nodejs/node/pull/39737)
    
  • [`f57a0e4d8b`](https://github.com/nodejs/node/commit/f57a0e4d8b)] - **(SEMVER-MINOR)** **stream**: utility consumers for web and node.js streams (James M Snell) [#&#8203;39594](https://github.com/nodejs/node/pull/39594)
    
  • [`975edf5330`](https://github.com/nodejs/node/commit/975edf5330)] - **stream**: clean `endWritableNT` (Mestery) [#&#8203;39645](https://github.com/nodejs/node/pull/39645)
    
  • [`9e38fc6757`](https://github.com/nodejs/node/commit/9e38fc6757)] - **(SEMVER-MINOR)** **stream**: add readableDidRead if has been read from (Robert Nagy) [#&#8203;39589](https://github.com/nodejs/node/pull/39589)
    
  • [`a5ded4a85a`](https://github.com/nodejs/node/commit/a5ded4a85a)] - **test**: use simplfied validator (voltrexmaster) [#&#8203;39753](https://github.com/nodejs/node/pull/39753)
    
  • [`53cf53c95a`](https://github.com/nodejs/node/commit/53cf53c95a)] - **(SEMVER-MINOR)** **test**: enable blob.prototype.stream tests (James M Snell) [#&#8203;39693](https://github.com/nodejs/node/pull/39693)
    
  • [`7e9884598f`](https://github.com/nodejs/node/commit/7e9884598f)] - **test**: update WPT abort tests (Michaël Zasso) [#&#8203;39697](https://github.com/nodejs/node/pull/39697)
    
  • [`94381fbdf5`](https://github.com/nodejs/node/commit/94381fbdf5)] - **test**: update WPT common and resources (Michaël Zasso) [#&#8203;39697](https://github.com/nodejs/node/pull/39697)
    
  • [`34a041a846`](https://github.com/nodejs/node/commit/34a041a846)] - **test**: fix test-debugger-heap-profiler for workers (Richard Lau) [#&#8203;39687](https://github.com/nodejs/node/pull/39687)
    
  • [`9f5acfa90e`](https://github.com/nodejs/node/commit/9f5acfa90e)] - **test**: increase memory for coverage action (Benjamin Coe) [#&#8203;39690](https://github.com/nodejs/node/pull/39690)
    
  • [`0be15cedc4`](https://github.com/nodejs/node/commit/0be15cedc4)] - **test**: use template to concatenate string (Himadri Ganguly) [#&#8203;39621](https://github.com/nodejs/node/pull/39621)
    
  • [`952a5282e2`](https://github.com/nodejs/node/commit/952a5282e2)] - **(SEMVER-MINOR)** **test**: pull Web Platform Tests for WebCryptoAPI (Michaël Zasso) [#&#8203;39648](https://github.com/nodejs/node/pull/39648)
    
  • [`3622fb1e03`](https://github.com/nodejs/node/commit/3622fb1e03)] - **test**: deflake test-http2-buffersize (Luigi Pinca) [#&#8203;39591](https://github.com/nodejs/node/pull/39591)
    
  • [`1962c7c7b3`](https://github.com/nodejs/node/commit/1962c7c7b3)] - **test**: convert anonymous function to arrow function (Himadri Ganguly) [#&#8203;39604](https://github.com/nodejs/node/pull/39604)
    
  • [`635e1a0274`](https://github.com/nodejs/node/commit/635e1a0274)] - **test**: add test-debugger-breakpoint-exists (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570)
    
  • [`cff2aea5df`](https://github.com/nodejs/node/commit/cff2aea5df)] - **test**: add known issues test for debugger heap snapshot race (Rich Trott) [#&#8203;39557](https://github.com/nodejs/node/pull/39557)
    
  • [`5e1011238a`](https://github.com/nodejs/node/commit/5e1011238a)] - **tools**: bump remark-preset-lint-node to 3.0.0 (Rich Trott) [#&#8203;39755](https://github.com/nodejs/node/pull/39755)
    
  • [`eb741253fd`](https://github.com/nodejs/node/commit/eb741253fd)] - **tools**: update path-parse in markdown linter package-lock file (Rich Trott) [#&#8203;39729](https://github.com/nodejs/node/pull/39729)
    
  • [`52a172f983`](https://github.com/nodejs/node/commit/52a172f983)] - **tools**: fix more build warnings in inspector_protocol (Richard Lau) [#&#8203;39725](https://github.com/nodejs/node/pull/39725)
    
  • [`77f9c1fa98`](https://github.com/nodejs/node/commit/77f9c1fa98)] - **tools**: cherry-pick [`ffb34b6`](https://github.com/nodejs/node/commit/ffb34b6d5dbf0) (Darshan Sen) [#&#8203;39725](https://github.com/nodejs/node/pull/39725)
    
  • [`b9510d21c9`](https://github.com/nodejs/node/commit/b9510d21c9)] - **tools**: update inspector_protocol to [`e8ba1a7`](https://github.com/nodejs/node/commit/e8ba1a7) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`8d509d8773`](https://github.com/nodejs/node/commit/8d509d8773)] - **tools**: update inspector_protocol to [`39ca567`](https://github.com/nodejs/node/commit/39ca567) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`ee7142fa37`](https://github.com/nodejs/node/commit/ee7142fa37)] - **tools**: update inspector_protocol to [`97d3146`](https://github.com/nodejs/node/commit/97d3146) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`c6323d847d`](https://github.com/nodejs/node/commit/c6323d847d)] - ***Revert*** "**tools**: fix compiler warning in inspector_protocol" (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`6e19c166e4`](https://github.com/nodejs/node/commit/6e19c166e4)] - **tools**: update inspector_protocol to [`a53e96d`](https://github.com/nodejs/node/commit/a53e96d31a2755eb16ca37) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`61c53f39d2`](https://github.com/nodejs/node/commit/61c53f39d2)] - **tools**: update inspector_protocol to [`fe0467f`](https://github.com/nodejs/node/commit/fe0467fd105a) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`b1b6f20353`](https://github.com/nodejs/node/commit/b1b6f20353)] - **tools**: improve error detection in find-inactive-collaborators (Rich Trott) [#&#8203;39617](https://github.com/nodejs/node/pull/39617)
    
  • [`d1360fcf48`](https://github.com/nodejs/node/commit/d1360fcf48)] - **tools**: update ESLint to 7.32.0 (Luigi Pinca) [#&#8203;39602](https://github.com/nodejs/node/pull/39602)
    
  • [`af1c782cad`](https://github.com/nodejs/node/commit/af1c782cad)] - **tools**: update ESLint to 7.31.0 (Colin Ihrig) [#&#8203;39424](https://github.com/nodejs/node/pull/39424)
    
  • [`37dda19461`](https://github.com/nodejs/node/commit/37dda19461)] - **(SEMVER-MINOR)** **url,buffer**: implement URL.createObjectURL (James M Snell) [#&#8203;39693](https://github.com/nodejs/node/pull/39693)
    
  • [`dcab88ad38`](https://github.com/nodejs/node/commit/dcab88ad38)] - **worker**: add brand checks for detached properties/methods (James M Snell) [#&#8203;39763](https://github.com/nodejs/node/pull/39763)
    
    

v16.6.2

Compare Source

This is a security release.

Notable Changes
  • CVE-2021-3672/CVE-2021-22931: Improper handling of untypical characters in domain names (High)
    • Node.js was vulnerable to Remote Code Execution, XSS, application crashes due to missing input validation of hostnames returned by Domain Name Servers in the Node.js DNS library which can lead to the output of wrong hostnames (leading to Domain Hijacking) and injection vulnerabilities in applications using the library. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22931.
  • CVE-2021-22940: Use after free on close http2 on stream canceling (High)
    • Node.js was vulnerable to a use after free attack where an attacker might be able to exploit memory corruption to change process behavior. This release includes a follow-up fix for CVE-2021-22930 as the issue was not completely resolved by the previous fix. You can read more about it at https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22940.
  • CVE-2021-22939: Incomplete validation of rejectUnauthorized parameter (Low)
    • If the Node.js HTTPS API was used incorrectly and "undefined" was in passed for the "rejectUnauthorized" parameter, no error was returned and connections to servers with an expired certificate would have been accepted. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22939.
Commits
  • [`054537cdc2`](https://github.com/nodejs/node/commit/054537cdc2)] - **deps**: update c-ares to 1.17.2 (Beth Griggs) [#&#8203;39724](https://github.com/nodejs/node/pull/39724)
    
  • [`ac544905b6`](https://github.com/nodejs/node/commit/ac544905b6)] - **deps**: reflect c-ares source tree (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653)
    
  • [`a914b23cbc`](https://github.com/nodejs/node/commit/a914b23cbc)] - **deps**: apply missed updates from c-ares 1.17.1 (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653)
    
  • [`31d5773654`](https://github.com/nodejs/node/commit/31d5773654)] - **http2**: add tests for cancel event while client is paused reading (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622)
    
  • [`a3c33d4ce7`](https://github.com/nodejs/node/commit/a3c33d4ce7)] - **http2**: update handling of rst_stream with error code NGHTTP2\_CANCEL (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622)
    
  • [`6c7fff6f1d`](https://github.com/nodejs/node/commit/6c7fff6f1d)] - **tls**: validate "rejectUnauthorized: undefined" (Matteo Collina) [nodejs-private/node-private#&#8203;276](https://github.com/nodejs-private/node-private/pull/276)
    
    

v16.6.1

Compare Source

Notable Changes
  • Updated npm to 7.20.3 (npm team) #​39579
  • Reverted an ABI-breaking change from V8 9.2 that could impact some native modules (Michaël Zasso) #​39624
  • Fixed a bug in error handling known to affect at least Webpack and Jest (Guy Bedford) #​39593
Commits
  • [`6c769ccedf`](https://github.com/nodejs/node/commit/6c769ccedf)] - **build**: override python executable path on configure (legendecas) [#&#8203;39465](https://github.com/nodejs/node/pull/39465)
    
  • [`cbf6a01c17`](https://github.com/nodejs/node/commit/cbf6a01c17)] - **crypto**: fix `generateKeyPair` with encoding 'jwk' (himself65) [#&#8203;39319](https://github.com/nodejs/node/pull/39319)
    
  • [`3091295609`](https://github.com/nodejs/node/commit/3091295609)] - **deps**: revert ABI-breaking change from V8 9.2 (Michaël Zasso) [#&#8203;39624](https://github.com/nodejs/node/pull/39624)
    
  • [`06d7b8e8c8`](https://github.com/nodejs/node/commit/06d7b8e8c8)] - **deps**: upgrade npm to 7.20.3 (npm team) [#&#8203;39579](https://github.com/nodejs/node/pull/39579)
    
  • [`7b612fadc2`](https://github.com/nodejs/node/commit/7b612fadc2)] - **doc**: fix crypto.hkdf callback derivedKey type (Filip Skokan) [#&#8203;39453](https://github.com/nodejs/node/pull/39453)
    
  • [`7a731efd97`](https://github.com/nodejs/node/commit/7a731efd97)] - **doc,lib,test**: rename HKDF 'key' argument (Tobias Nießen) [#&#8203;39474](https://github.com/nodejs/node/pull/39474)
    
  • [`93bbaa0ce9`](https://github.com/nodejs/node/commit/93bbaa0ce9)] - **module**: fix ERR_REQUIRE_ESM error for null frames (Guy Bedford) [#&#8203;39593](https://github.com/nodejs/node/pull/39593)
    
  • [`e13162de09`](https://github.com/nodejs/node/commit/e13162de09)] - **module**: refine `enrichCJSError` (Antoine du Hamel) [#&#8203;39507](https://github.com/nodejs/node/pull/39507)
    
  • [`815fbec6f1`](https://github.com/nodejs/node/commit/815fbec6f1)] - **repl**: do not include legacy getter/setter methods in completion (Anna Henningsen) [#&#8203;39576](https://github.com/nodejs/node/pull/39576)
    
  • [`0405c8d3f0`](https://github.com/nodejs/node/commit/0405c8d3f0)] - **zlib**: avoid converting `Uint8Array` instances to `Buffer` (Antoine du Hamel) [#&#8203;39492](https://github.com/nodejs/node/pull/39492)
    
    

v16.6.0

Compare Source

This is a security release.

Notable Changes
Say hello to V8 9.2

The V8 engine is updated to version 9.2.230.21.

It notably introduces the new Array.prototype.at method (also on Typed Arrays and strings):

const array = [1, 2, 3];

console.log(array.at(-1));
// Prints: 3

Contributed by Michaël Zasso - #​39470

Other notable changes
  • CVE-2021-22930: Use after free on close http2 on stream canceling (High) - #​39423
  • [`f93d2ac587`](https://github.com/nodejs/node/commit/f93d2ac587)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748)
    
  • [`89b4770d5c`](https://github.com/nodejs/node/commit/89b4770d5c)] - **punycode**: add pending deprecation (Antoine du Hamel) [#&#8203;38444](https://github.com/nodejs/node/pull/38444)
    
  • [`b67214fe31`](https://github.com/nodejs/node/commit/b67214fe31)] - **(SEMVER-MINOR)** **repl**: enable --experimental-repl-await /w opt-out (hemanth.hm) [#&#8203;34733](https://github.com/nodejs/node/pull/34733)
    
    
Commits
  • [`b5248d4000`](https://github.com/nodejs/node/commit/b5248d4000)] - **async_hooks**: emit promise trace events from JS (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`e18778d409`](https://github.com/nodejs/node/commit/e18778d409)] - **async_hooks**: eliminate native PromiseHook (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`90b9bb1a7d`](https://github.com/nodejs/node/commit/90b9bb1a7d)] - **build**: use Node.js 14 in commit-lint.yml (Rich Trott) [#&#8203;39506](https://github.com/nodejs/node/pull/39506)
    
  • [`5182e26f14`](https://github.com/nodejs/node/commit/5182e26f14)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470)
    
  • [`e1910ef290`](https://github.com/nodejs/node/commit/e1910ef290)] - **build**: fix `host_arch_cc()` for AIX/IBM i (Richard Lau) [#&#8203;39481](https://github.com/nodejs/node/pull/39481)
    
  • [`ce2011b7a1`](https://github.com/nodejs/node/commit/ce2011b7a1)] - **build**: update coverage Makefile target comments (Richard Lau) [#&#8203;39365](https://github.com/nodejs/node/pull/39365)
    
  • [`6b055f17b6`](https://github.com/nodejs/node/commit/6b055f17b6)] - **build**: run workflows when a PR is ready for review (Michaël Zasso) [#&#8203;39405](https://github.com/nodejs/node/pull/39405)
    
  • [`25f45d5018`](https://github.com/nodejs/node/commit/25f45d5018)] - **build**: update to setup-node@v2 (Rich Trott) [#&#8203;39366](https://github.com/nodejs/node/pull/39366)
    
  • [`a7472576d7`](https://github.com/nodejs/node/commit/a7472576d7)] - **build**: add `library_files` to gyp variables (himself65) [#&#8203;39293](https://github.com/nodejs/node/pull/39293)
    
  • [`d16d36f1c2`](https://github.com/nodejs/node/commit/d16d36f1c2)] - **crypto**: support Big(U)Int64Array in getRandomValues (Michaël Zasso) [#&#8203;39443](https://github.com/nodejs/node/pull/39443)
    
  • [`95db54482a`](https://github.com/nodejs/node/commit/95db54482a)] - **debugger**: validate sec-websocket-accept response header (Chris Opperwall) [#&#8203;39357](https://github.com/nodejs/node/pull/39357)
    
  • [`3751b92fa2`](https://github.com/nodejs/node/commit/3751b92fa2)] - **debugger**: rename internal module (Rich Trott) [#&#8203;39378](https://github.com/nodejs/node/pull/39378)
    
  • [`0e5eb8b17d`](https://github.com/nodejs/node/commit/0e5eb8b17d)] - **deps**: restore minimum ICU version to 68 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470)
    
  • [`e8da1f25fb`](https://github.com/nodejs/node/commit/e8da1f25fb)] - **(SEMVER-MINOR)** **deps**: make V8 9.2 abi-compatible with 9.0 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470)
    
  • [`a93e6ef777`](https://github.com/nodejs/node/commit/a93e6ef777)] - **deps**: V8: backport [`5c76da8`](https://github.com/nodejs/node/commit/5c76da8ddcf8) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`d612544199`](https://github.com/nodejs/node/commit/d612544199)] - **deps**: V8: cherry-pick [`359d44d`](https://github.com/nodejs/node/commit/359d44df4cdd) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`c6ec2b4817`](https://github.com/nodejs/node/commit/c6ec2b4817)] - **deps**: V8: cherry-pick [`3805a69`](https://github.com/nodejs/node/commit/3805a698f7b6) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`e6b84dfe84`](https://github.com/nodejs/node/commit/e6b84dfe84)] - **deps**: V8: cherry-pick [`56fe020`](https://github.com/nodejs/node/commit/56fe020eec0c) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`2393fae427`](https://github.com/nodejs/node/commit/2393fae427)] - **deps**: V8: cherry-pick [`2b77ca2`](https://github.com/nodejs/node/commit/2b77ca200c56) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`c8e7d80475`](https://github.com/nodejs/node/commit/c8e7d80475)] - **deps**: V8: cherry-pick [`53784bd`](https://github.com/nodejs/node/commit/53784bdb8f01) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`65062b3e0d`](https://github.com/nodejs/node/commit/65062b3e0d)] - **deps**: V8: cherry-pick [`7ff6609`](https://github.com/nodejs/node/commit/7ff6609a5385) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`c3efc70df7`](https://github.com/nodejs/node/commit/c3efc70df7)] - **deps**: V8: cherry-pick [`a5cea1b`](https://github.com/nodejs/node/commit/a5cea1bfc38c) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`201da87bc1`](https://github.com/nodejs/node/commit/201da87bc1)] - **deps**: V8: cherry-pick [`9862992`](https://github.com/nodejs/node/commit/986299250e6d) (Richard Lau) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`794ad2e016`](https://github.com/nodejs/node/commit/794ad2e016)] - **deps**: V8: backport [`71e8f8b`](https://github.com/nodejs/node/commit/71e8f8bb3c26) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`53cc6c8000`](https://github.com/nodejs/node/commit/53cc6c8000)] - **deps**: V8: cherry-pick [`3d24b3a`](https://github.com/nodejs/node/commit/3d24b3ab8af0) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`7f7cb8bfe1`](https://github.com/nodejs/node/commit/7f7cb8bfe1)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`16cbd8c8b6`](https://github.com/nodejs/node/commit/16cbd8c8b6)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`98150e2bc6`](https://github.com/nodejs/node/commit/98150e2bc6)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`3f3e167fea`](https://github.com/nodejs/node/commit/3f3e167fea)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`785b8990de`](https://github.com/nodejs/node/commit/785b8990de)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`38cb655f04`](https://github.com/nodejs/node/commit/38cb655f04)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`9082ecef66`](https://github.com/nodejs/node/commit/9082ecef66)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`6114198717`](https://github.com/nodejs/node/commit/6114198717)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.2.230.21 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470)
    
  • [`89796d0c7f`](https://github.com/nodejs/node/commit/89796d0c7f)] - **deps**: bump HdrHistogram_C to 0.11.2 (Matteo Collina) [#&#8203;39462](https://github.com/nodejs/node/pull/39462)
    
  • [`9dd232c42b`](https://github.com/nodejs/node/commit/9dd232c42b)] - **deps**: update to cjs-module-lexer@1.2.2 (Guy Bedford) [#&#8203;39402](https://github.com/nodejs/node/pull/39402)
    
  • [`626eb07fda`](https://github.com/nodejs/node/commit/626eb07fda)] - **deps**: extract gtest source files to deps/googletest (legendecas) [#&#8203;39386](https://github.com/nodejs/node/pull/39386)
    
  • [`487c45ffd9`](https://github.com/nodejs/node/commit/487c45ffd9)] - **doc**: move lball@redhat.com to emeritus (Lance Ball) [#&#8203;39501](https://github.com/nodejs/node/pull/39501)
    
  • [`5f84f47e13`](https://github.com/nodejs/node/commit/5f84f47e13)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39488](https://github.com/nodejs/node/pull/39488)
    
  • [`1d27ae1514`](https://github.com/nodejs/node/commit/1d27ae1514)] - **doc**: update strategic initiative champion (Rich Trott) [#&#8203;39487](https://github.com/nodejs/node/pull/39487)
    
  • [`e552b1a791`](https://github.com/nodejs/node/commit/e552b1a791)] - **doc**: improve node.js+fips instructions (Benjamin Mayr) [#&#8203;39390](https://github.com/nodejs/node/pull/39390)
    
  • [`aa1dfb3111`](https://github.com/nodejs/node/commit/aa1dfb3111)] - **doc**: simplify unnecessarily specific .mailmap entries (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430)
    
  • [`ae69656c61`](https://github.com/nodejs/node/commit/ae69656c61)] - **doc**: update checkbox label in backporting guide (Darshan Sen) [#&#8203;39420](https://github.com/nodejs/node/pull/39420)
    
  • [`4fd8db687d`](https://github.com/nodejs/node/commit/4fd8db687d)] - **doc**: remove \_Addenda\_ from headers (Rich Trott) [#&#8203;39427](https://github.com/nodejs/node/pull/39427)
    
  • [`cefd2fb1e4`](https://github.com/nodejs/node/commit/cefd2fb1e4)] - **doc**: simplify .mailmap file (Rich Trott) [#&#8203;39418](https://github.com/nodejs/node/pull/39418)
    
  • [`ade2eed9a6`](https://github.com/nodejs/node/commit/ade2eed9a6)] - **doc**: fix broken internal link in http.md (Rich Trott) [#&#8203;39425](https://github.com/nodejs/node/pull/39425)
    
  • [`5fdfcc069f`](https://github.com/nodejs/node/commit/5fdfcc069f)] - **doc**: remove outdated step in onboarding exercise (Rich Trott) [#&#8203;39410](https://github.com/nodejs/node/pull/39410)
    
  • [`94706c7012`](https://github.com/nodejs/node/commit/94706c7012)] - **doc**: revise strategic initiatives text (Rich Trott) [#&#8203;39417](https://github.com/nodejs/node/pull/39417)
    
  • [`9932e3589c`](https://github.com/nodejs/node/commit/9932e3589c)] - **doc**: remove typo (extra ' character) (Nikita Rykov) [#&#8203;39414](https://github.com/nodejs/node/pull/39414)
    
  • [`2b92b4ea2d`](https://github.com/nodejs/node/commit/2b92b4ea2d)] - **doc**: update mailmap and AUTHORS (Rich Trott) [#&#8203;39393](https://github.com/nodejs/node/pull/39393)
    
  • [`6d6396594b`](https://github.com/nodejs/node/commit/6d6396594b)] - **doc**: use a details tag for completed initiatves (Rich Trott) [#&#8203;39416](https://github.com/nodejs/node/pull/39416)
    
  • [`ac43e3331c`](https://github.com/nodejs/node/commit/ac43e3331c)] - **doc**: update commit-queue.md to indicate GitHub Actions are checked (Rich Trott) [#&#8203;39411](https://github.com/nodejs/node/pull/39411)
    
  • [`75130c94d1`](https://github.com/nodejs/node/commit/75130c94d1)] - **doc**: use \_pull request\_ instead of \_PR\_ in onboarding doc (Rich Trott) [#&#8203;39409](https://github.com/nodejs/node/pull/39409)
    
  • [`20bb3f6df0`](https://github.com/nodejs/node/commit/20bb3f6df0)] - **doc**: add strategic initiatives from TSC repo (Rich Trott) [#&#8203;39394](https://github.com/nodejs/node/pull/39394)
    
  • [`6979313abb`](https://github.com/nodejs/node/commit/6979313abb)] - **doc**: standardize on \_pull request\_ (Rich Trott) [#&#8203;39384](https://github.com/nodejs/node/pull/39384)
    
  • [`20124cc275`](https://github.com/nodejs/node/commit/20124cc275)] - **doc**: make minor edits to pull request text (Rich Trott) [#&#8203;39383](https://github.com/nodejs/node/pull/39383)
    
  • [`11482f02cf`](https://github.com/nodejs/node/commit/11482f02cf)] - **doc**: add docker-node and build-wg issue contents (Daniel Bevenius) [#&#8203;39215](https://github.com/nodejs/node/pull/39215)
    
  • [`c535956b6e`](https://github.com/nodejs/node/commit/c535956b6e)] - **doc**: add instructions for core vuln files (Daniel Bevenius) [#&#8203;39220](https://github.com/nodejs/node/pull/39220)
    
  • [`353a8bb27b`](https://github.com/nodejs/node/commit/353a8bb27b)] - **doc**: standardize on not capitalizing \_collaborator\_ (Rich Trott) [#&#8203;39379](https://github.com/nodejs/node/pull/39379)
    
  • [`9b15e5c155`](https://github.com/nodejs/node/commit/9b15e5c155)] - **doc**: update mailmap and deduplicate AUTHORS entry (Rich Trott) [#&#8203;39391](https://github.com/nodejs/node/pull/39391)
    
  • [`e44ccd9aad`](https://github.com/nodejs/node/commit/e44ccd9aad)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39367](https://github.com/nodejs/node/pull/39367)
    
  • [`39e6536a87`](https://github.com/nodejs/node/commit/39e6536a87)] - **doc**: move jdalton to emeritus (Rich Trott) [#&#8203;39380](https://github.com/nodejs/node/pull/39380)
    
  • [`bbff5a9e47`](https://github.com/nodejs/node/commit/bbff5a9e47)] - **doc**: edit guide on pull requests (Rich Trott) [#&#8203;39359](https://github.com/nodejs/node/pull/39359)
    
  • [`902ef9aca0`](https://github.com/nodejs/node/commit/902ef9aca0)] - **doc,meta**: update email addresses for misterdjules (Rich Trott) [#&#8203;39433](https://github.com/nodejs/node/pull/39433)
    
  • [`cc7b61721c`](https://github.com/nodejs/node/commit/cc7b61721c)] - **doc,tools**: remove `checkLinks.mjs` (Antoine du Hamel) [#&#8203;39206](https://github.com/nodejs/node/pull/39206)
    
  • [`e2fd015cda`](https://github.com/nodejs/node/commit/e2fd015cda)] - **domain**: do not add domain to promise from other context (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`93eff3f5a6`](https://github.com/nodejs/node/commit/93eff3f5a6)] - **esm**: refine ERR_REQUIRE_ESM errors (Guy Bedford) [#&#8203;39175](https://github.com/nodejs/node/pull/39175)
    
  • [`1fb0954202`](https://github.com/nodejs/node/commit/1fb0954202)] - **events**: allow an event to be dispatched multiple times (Luigi Pinca) [#&#8203;39395](https://github.com/nodejs/node/pull/39395)
    
  • [`6f2989c346`](https://github.com/nodejs/node/commit/6f2989c346)] - **events**: allow the options argument to be null (Luigi Pinca) [#&#8203;39486](https://github.com/nodejs/node/pull/39486)
    
  • [`72ad6d3f27`](https://github.com/nodejs/node/commit/72ad6d3f27)] - **fs**: check closing\_ in FileHandle::Close (James M Snell) [#&#8203;39472](https://github.com/nodejs/node/pull/39472)
    
  • [`8b58e574ba`](https://github.com/nodejs/node/commit/8b58e574ba)] - **fs**: fix FileHandle::ClosePromise to return persisted Promise (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331)
    
  • [`9d950a0956`](https://github.com/nodejs/node/commit/9d950a0956)] - **http2**: on receiving rst_stream with cancel code add it to pending list (Akshay K) [#&#8203;39423](https://github.com/nodejs/node/pull/39423)
    
  • [`19e9accf91`](https://github.com/nodejs/node/commit/19e9accf91)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748)
    
  • [`e4331cd43d`](https://github.com/nodejs/node/commit/e4331cd43d)] - **lib**: comment explaining special-case handling of promises (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`0a47f5fc54`](https://github.com/nodejs/node/commit/0a47f5fc54)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39510](https://github.com/nodejs/node/pull/39510)
    
  • [`65020110e8`](https://github.com/nodejs/node/commit/65020110e8)] - **meta**: remove unneeded .mailmap entry (Rich Trott) [#&#8203;39512](https://github.com/nodejs/node/pull/39512)
    
  • [`864ef11be8`](https://github.com/nodejs/node/commit/864ef11be8)] - **meta**: update email address for collaborator (Rich Trott) [#&#8203;39511](https://github.com/nodejs/node/pull/39511)
    
  • [`d3f58cb650`](https://github.com/nodejs/node/commit/d3f58cb650)] - **meta**: align collaborator name in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39489](https://github.com/nodejs/node/pull/39489)
    
  • [`5f9b2187a1`](https://github.com/nodejs/node/commit/5f9b2187a1)] - **meta**: align email address in README/.mailmap/AUTHORS (Rich Trott) [#&#8203;39503](https://github.com/nodejs/node/pull/39503)
    
  • [`9fbe3f6b49`](https://github.com/nodejs/node/commit/9fbe3f6b49)] - **meta**: revise .mailmap for README consistency (Rich Trott) [#&#8203;39457](https://github.com/nodejs/node/pull/39457)
    
  • [`f6fbb38924`](https://github.com/nodejs/node/commit/f6fbb38924)] - **meta**: alphabetize .mailmap file (Rich Trott) [#&#8203;39434](https://github.com/nodejs/node/pull/39434)
    
  • [`dc9c6aa428`](https://github.com/nodejs/node/commit/dc9c6aa428)] - **meta**: align collaborator email in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39478](https://github.com/nodejs/node/pull/39478)
    
  • [`febeb0df16`](https://github.com/nodejs/node/commit/febeb0df16)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39461](https://github.com/nodejs/node/pull/39461)
    
  • [`d059ed9242`](https://github.com/nodejs/node/commit/d059ed9242)] - **meta**: add .mailmap entry for new email for existing contributor (Rich Trott) [#&#8203;39431](https://github.com/nodejs/node/pull/39431)
    
  • [`cdf7251370`](https://github.com/nodejs/node/commit/cdf7251370)] - **process**: add api to enable source-maps programmatically (legendecas) [#&#8203;39085](https://github.com/nodejs/node/pull/39085)
    
  • [`eccc9a6578`](https://github.com/nodejs/node/commit/eccc9a6578)] - **punycode**: add pending deprecation (Antoine du Hamel) [#&#8203;38444](https://github.com/nodejs/node/pull/38444)
    
  • [`a082a705b3`](https://github.com/nodejs/node/commit/a082a705b3)] - **(SEMVER-MINOR)** **repl**: enable --experimental-repl-await /w opt-out (hemanth.hm) [#&#8203;34733](https://github.com/nodejs/node/pull/34733)
    
  • [`b230ac12d9`](https://github.com/nodejs/node/commit/b230ac12d9)] - **src**: stop using deprecated v8::ApiObject (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`929205e6b9`](https://github.com/nodejs/node/commit/929205e6b9)] - **src**: use non-deprecated Symbol::Description (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`42ff6d952a`](https://github.com/nodejs/node/commit/42ff6d952a)] - **src**: print native module id on native module not found (legendecas) [#&#8203;39460](https://github.com/nodejs/node/pull/39460)
    
  • [`f0287e52aa`](https://github.com/nodejs/node/commit/f0287e52aa)] - **src**: close HandleWraps instead of deleting them in OnGCCollect() (Anna Henningsen) [#&#8203;39441](https://github.com/nodejs/node/pull/39441)
    
  • [`2cf52f8db1`](https://github.com/nodejs/node/commit/2cf52f8db1)] - **src**: set SSL_OP_ALLOW_CLIENT_RENEGOTIATION (Daniel Bevenius) [#&#8203;38753](https://github.com/nodejs/node/pull/38753)
    
  • [`fc138376aa`](https://github.com/nodejs/node/commit/fc138376aa)] - **src**: remove unused guards around node-api reference (legendecas) [#&#8203;38334](https://github.com/nodejs/node/pull/38334)
    
  • [`26ada4971c`](https://github.com/nodejs/node/commit/26ada4971c)] - **stream**: import internal/util/types instead (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331)
    
  • [`e91053a465`](https://github.com/nodejs/node/commit/e91053a465)] - **stream**: implement TextEncoderStream and TextDecoderStream (James M Snell) [#&#8203;39347](https://github.com/nodejs/node/pull/39347)
    
  • [`efe74746f0`](https://github.com/nodejs/node/commit/efe74746f0)] - **stream**: fixup property definition to avoid prototype polution (James M Snell) [#&#8203;39371](https://github.com/nodejs/node/pull/39371)
    
  • [`4709da0372`](https://github.com/nodejs/node/commit/4709da0372)] - **test**: ensure microtask queues are not automatically drained (Jochen Eisinger) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`86ca9a8a80`](https://github.com/nodejs/node/commit/86ca9a8a80)] - **test**: remove test-debug-args (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`bbcd651cfd`](https://github.com/nodejs/node/commit/bbcd651cfd)] - **test**: update trace events test expectations (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`039f64f249`](https://github.com/nodejs/node/commit/039f64f249)] - **test**: fix WASI link test (Richard Lau) [#&#8203;39485](https://github.com/nodejs/node/pull/39485)
    
  • [`b1d38ddc8a`](https://github.com/nodejs/node/commit/b1d38ddc8a)] - **test**: update OpenSSL3 error messages for beta-1 (Daniel Bevenius) [#&#8203;39437](https://github.com/nodejs/node/pull/39437)
    
  • [`db4f802fba`](https://github.com/nodejs/node/commit/db4f802fba)] - ***Revert*** "**test**: skip tests for openssl-3.0.0-alpha15" (Daniel Bevenius) [#&#8203;39437](https://github.com/nodejs/node/pull/39437)
    
  • [`a30d021b94`](https://github.com/nodejs/node/commit/a30d021b94)] - **test**: add test for WebSocket secret verification in debugger (Rich Trott) [#&#8203;39357](https://github.com/nodejs/node/pull/39357)
    
  • [`04355afd24`](https://github.com/nodejs/node/commit/04355afd24)] - **test**: add NumberFormat resolvedOptions test (Richard Lau) [#&#8203;39401](https://github.com/nodejs/node/pull/39401)
    
  • [`d0fb02c26a`](https://github.com/nodejs/node/commit/d0fb02c26a)] - **test**: put common lint exceptions into config file (Rich Trott) [#&#8203;39358](https://github.com/nodejs/node/pull/39358)
    
  • [`259d091366`](https://github.com/nodejs/node/commit/259d091366)] - **test**: mark test-domain-error-types flaky (James M Snell) [#&#8203;39369](https://github.com/nodejs/node/pull/39369)
    
  • [`5517769472`](https://github.com/nodejs/node/commit/5517769472)] - **tools**: fetch googletest dependency for V8 CI (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`5fe74aa403`](https://github.com/nodejs/node/commit/5fe74aa403)] - **tools**: update V8 gypfiles for 9.2 (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990)
    
  • [`e58cf4e44c`](https://github.com/nodejs/node/commit/e58cf4e44c)] - **tools**: flag README/mailmap mismatches in find-inactive-collaborators (Rich Trott) [#&#8203;39477](https://github.com/nodejs/node/pull/39477)
    
  • [`0a46e66253`](https://github.com/nodejs/node/commit/0a46e66253)] - **tools**: use mailmap for find-inactive-collaborators (Rich Trott) [#&#8203;39432](https://github.com/nodejs/node/pull/39432)
    
  • [`7570f998df`](https://github.com/nodejs/node/commit/7570f998df)] - **tools**: email matchin is case insensitive for .mailmap (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430)
    
  • [`5c11a0279d`](https://github.com/nodejs/node/commit/5c11a0279d)] - **tools**: make internal link checker more robust (Rich Trott) [#&#8203;39429](https://github.com/nodejs/node/pull/39429)
    
  • [`4c32aa02db`](https://github.com/nodejs/node/commit/4c32aa02db)] - **tools**: added remark-frontmatter (Ben Halverson) [#&#8203;38717](https://github.com/nodejs/node/pull/38717)
    
  • [`c6a7c3d00d`](https://github.com/nodejs/node/commit/c6a7c3d00d)] - **tools**: fix broken link hash (Rich Trott) [#&#8203;39426](https://github.com/nodejs/node/pull/39426)
    
  • [`0f1d51578e`](https://github.com/nodejs/node/commit/0f1d51578e)] - **tools**: change commit fetch limiting in find-inactive-collaborators (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362)
    
  • [`e5d64473e8`](https://github.com/nodejs/node/commit/e5d64473e8)] - **tools**: use Node.js 16.x for GitHub workflow (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362)
    
  • [`68fd6d5282`](https://github.com/nodejs/node/commit/68fd6d5282)] - **url**: prevent pathname setter from erasing path of path-only URLs (Darshan Sen) [#&#8203;39060](https://github.com/nodejs/node/pull/39060)
    
    

v16.5.0

Compare Source

Notable Changes
Experimental Web Streams API

Node.js now exposes an experimental implementation of the
Web Streams API.

While it is experimental, the API is not exposed on the global object and is only
accessible using the new stream/web core module:

import { ReadableStream, WritableStream } from 'stream/web';
// Or from 'node:stream/web'

Importing the module will emit a single experimental warning per process.

The raw API is implemented and we are now working on its integration with
various existing core APIs.

Contributed by James M Snell - #​39062

Other notable changes
  • [`83f3b959f9`](https://github.com/nodejs/node/commit/83f3b959f9)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028)
    
  • [`c04fd2bb97`](https://github.com/nodejs/node/commit/c04fd2bb97)] - **deps**: upgrade npm to 7.19.1 (npm team) [#&#8203;39225](https://github.com/nodejs/node/pull/39225)
    
    
Commits
  • [`aafa08d7b9`](https://github.com/nodejs/node/commit/aafa08d7b9)] - **bootstrap**: load perf_hooks eagerly during bootstrap (Joyee Cheung) [#&#8203;38971](https://github.com/nodejs/node/pull/38971)
    
  • [`6e46eb186c`](https://github.com/nodejs/node/commit/6e46eb186c)] - **bootstrap**: support perf hooks in snapshot (Joyee Cheung) [#&#8203;38971](https://github.com/nodejs/node/pull/38971)
    
  • [`10681828ac`](https://github.com/nodejs/node/commit/10681828ac)] - **build**: update gcovr for gcc 8 compatibility (Richard Lau) [#&#8203;39326](https://github.com/nodejs/node/pull/39326)
    
  • [`8381132f76`](https://github.com/nodejs/node/commit/8381132f76)] - **build**: add riscv into host_arch_cc (Lu Yahan) [#&#8203;39004](https://github.com/nodejs/node/pull/39004)
    
  • [`a7ba21864d`](https://github.com/nodejs/node/commit/a7ba21864d)] - **build**: restore libplatform headers in distribution (Jeroen Ooms) [#&#8203;39288](https://github.com/nodejs/node/pull/39288)
    
  • [`41161eabf2`](https://github.com/nodejs/node/commit/41161eabf2)] - **build**: remove unused comment in Makefile (LitoMore) [#&#8203;39171](https://github.com/nodejs/node/pull/39171)
    
  • [`f6a1092471`](https://github.com/nodejs/node/commit/f6a1092471)] - **build**: allow to build riscv64 using Makefile (Makoto Kato) [#&#8203;39048](https://github.com/nodejs/node/pull/39048)
    
  • [`a7cd40ed8d`](https://github.com/nodejs/node/commit/a7cd40ed8d)] - **build**: uvwasi honours node_shared_libuv (Jérémy Lal) [#&#8203;39260](https://github.com/nodejs/node/pull/39260)
    
  • [`3ed04994b7`](https://github.com/nodejs/node/commit/3ed04994b7)] - **build**: shorten path used in tarball build workflow (Richard Lau) [#&#8203;39192](https://github.com/nodejs/node/pull/39192)
    
  • [`65b56b3774`](https://github.com/nodejs/node/commit/65b56b3774)] - **build**: fix building with external builtins (Momtchil Momtchev) [#&#8203;39091](https://github.com/nodejs/node/pull/39091)
    
  • [`412b1012d2`](https://github.com/nodejs/node/commit/412b1012d2)] - **build**: pass directory instead of list of files to js2c.py (Joyee Cheung) [#&#8203;39069](https://github.com/nodejs/node/pull/39069)
    
  • [`171ca6bb3c`](https://github.com/nodejs/node/commit/171ca6bb3c)] - **build**: don't pass `--mode` argument to V8 test-runner (Richard Lau) [#&#8203;39055](https://github.com/nodejs/node/pull/39055)
    
  • [`cf8536ea3f`](https://github.com/nodejs/node/commit/cf8536ea3f)] - **build**: fix commit linter on unrebased PRs (Mary Marchini) [#&#8203;39121](https://github.com/nodejs/node/pull/39121)
    
  • [`cf0533b8b2`](https://github.com/nodejs/node/commit/cf0533b8b2)] - **build**: use Actions to validate commit message (Mary Marchini) [#&#8203;32417](https://github.com/nodejs/node/pull/32417)
    
  • [`4202274851`](https://github.com/nodejs/node/commit/4202274851)] - **crypto**: move OPENSSL_IS_BORINGSSL guard (Shelley Vohr) [#&#8203;39136](https://github.com/nodejs/node/pull/39136)
    
  • [`89f5a73ba5`](https://github.com/nodejs/node/commit/89f5a73ba5)] - **crypto**: use compatible ecdh function (Shelley Vohr) [#&#8203;39054](https://github.com/nodejs/node/pull/39054)
    
  • [`30e878b603`](https://github.com/nodejs/node/commit/30e878b603)] - **crypto**: add OPENSSL_IS_BORINGSSL guard (Shelley Vohr) [#&#8203;39138](https://github.com/nodejs/node/pull/39138)
    
  • [`630266cba2`](https://github.com/nodejs/node/commit/630266cba2)] - **debugger**: indicate server is ending (Rich Trott) [#&#8203;39334](https://github.com/nodejs/node/pull/39334)
    
  • [`48d9680f84`](https://github.com/nodejs/node/commit/48d9680f84)] - **debugger**: remove final lint exceptions in inspect_repl.js (Rich Trott) [#&#8203;39078](https://github.com/nodejs/node/pull/39078)
    
  • [`4507714f9d`](https://github.com/nodejs/node/commit/4507714f9d)] - **deps**: V8: backport [`5c76da8`](https://github.com/nodejs/node/commit/5c76da8ddcf8) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`0e64bd0dd6`](https://github.com/nodejs/node/commit/0e64bd0dd6)] - **deps**: V8: cherry-pick [`359d44d`](https://github.com/nodejs/node/commit/359d44df4cdd) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`142ce6838b`](https://github.com/nodejs/node/commit/142ce6838b)] - **deps**: V8: cherry-pick [`3805a69`](https://github.com/nodejs/node/commit/3805a698f7b6) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`2657c305cb`](https://github.com/nodejs/node/commit/2657c305cb)] - **deps**: V8: cherry-pick [`56fe020`](https://github.com/nodejs/node/commit/56fe020eec0c) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`5c5a93e533`](https://github.com/nodejs/node/commit/5c5a93e533)] - **deps**: V8: cherry-pick [`2b77ca2`](https://github.com/nodejs/node/commit/2b77ca200c56) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`cf49ebb052`](https://github.com/nodejs/node/commit/cf49ebb052)] - **deps**: V8: cherry-pick [`53784bd`](https://github.com/nodejs/node/commit/53784bdb8f01) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`3d351b29c1`](https://github.com/nodejs/node/commit/3d351b29c1)] - **deps**: V8: cherry-pick [`cb4faa9`](https://github.com/nodejs/node/commit/cb4faa902e9f) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337)
    
  • [`165130a3e0`](https://github.com/nodejs/node/commit/165130a3e0)] - **deps**: patch V8 to 9.1.269.38 (Michaël Zasso) [#&#8203;39196](https://github.com/nodejs/node/pull/39196)
    
  • [`c04fd2bb97`](https://github.com/nodejs/node/commit/c04fd2bb97)] - **deps**: upgrade npm to 7.19.1 (npm team) [#&#8203;39225](https://github.com/nodejs/node/pull/39225)
    
  • [`bf4c50f9d9`](https://github.com/nodejs/node/commit/bf4c50f9d9)] - **deps**: upgrade npm to 7.19.0 (npm team) [#&#8203;39148](https://github.com/nodejs/node/pull/39148)
    
  • [`8630b39376`](https://github.com/nodejs/node/commit/8630b39376)] - **deps**: update Acorn to v8.4.1 (Michaël Zasso) [#&#8203;39166](https://github.com/nodejs/node/pull/39166)
    
  • [`38ae4077c7`](https://github.com/nodejs/node/commit/38ae4077c7)] - **doc**: fix typos in Web Streams API documentation (Tobias Nießen) [#&#8203;39351](https://github.com/nodejs/node/pull/39351)
    
  • [`fb6616ecbb`](https://github.com/nodejs/node/commit/fb6616ecbb)] - **doc**: add text about moving long commit lists out of PR description (Danielle Adams) [#&#8203;39186](https://github.com/nodejs/node/pull/39186)
    
  • [`29c9cc8f03`](https://github.com/nodejs/node/commit/29c9cc8f03)] - **doc**: do not use & for "and" in text (Rich Trott) [#&#8203;39345](https://github.com/nodejs/node/pull/39345)
    
  • [`0b3b2695bc`](https://github.com/nodejs/node/commit/0b3b2695bc)] - **doc**: do not use tilde for "about" or "approximately" (Rich Trott) [#&#8203;39344](https://github.com/nodejs/node/pull/39344)
    
  • [`64a185e595`](https://github.com/nodejs/node/commit/64a185e595)] - **doc**: use consistent abbreviation formatting (Rich Trott) [#&#8203;39343](https://github.com/nodejs/node/pull/39343)
    
  • [`2573bf5116`](https://github.com/nodejs/node/commit/2573bf5116)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39277](https://github.com/nodejs/node/pull/39277)
    
  • [`63b6084724`](https://github.com/nodejs/node/commit/63b6084724)] - **doc**: put information about the past in details tags (Rich Trott) [#&#8203;39321](https://github.com/nodejs/node/pull/39321)
    
  • [`e26635085a`](https://github.com/nodejs/node/commit/e26635085a)] - **doc**: replace outdated `util.promisify` timer examples with references (foxxyz) [#&#8203;39164](https://github.com/nodejs/node/pull/39164)
    
  • [`d101a85e36`](https://github.com/nodejs/node/commit/d101a85e36)] - **doc**: move AndreasMadsen to emeritus (Rich Trott) [#&#8203;39315](https://github.com/nodejs/node/pull/39315)
    
  • [`2d552a32d6`](https://github.com/nodejs/node/commit/2d552a32d6)] - **doc**: move ofrobots to collaborator emeritus (Rich Trott) [#&#8203;39307](https://github.com/nodejs/node/pull/39307)
    
  • [`131d676f64`](https://github.com/nodejs/node/commit/131d676f64)] - **doc**: simplify CRAN mirror text in benchmark guide (Rich Trott) [#&#8203;39287](https://github.com/nodejs/node/pull/39287)
    
  • [`c92b80e631`](https://github.com/nodejs/node/commit/c92b80e631)] - **doc**: use "repository" instead of "repo" in onboarding.md (Rich Trott) [#&#8203;39286](https://github.com/nodejs/node/pull/39286)
    
  • [`81df9b1e92`](https://github.com/nodejs/node/commit/81df9b1e92)] - **doc**: update collaborator email address (Rich Trott) [#&#8203;39263](https://github.com/nodejs/node/pull/39263)
    
  • [`b8860f35c9`](https://github.com/nodejs/node/commit/b8860f35c9)] - **doc**: remove GitHub mark (Rich Trott) [#&#8203;39251](https://github.com/nodejs/node/pull/39251)
    
  • [`f06ebf1775`](https://github.com/nodejs/node/commit/f06ebf1775)] - **doc**: remove emailing the TSC from offboarding doc (Rich Trott) [#&#8203;39280](https://github.com/nodejs/node/pull/39280)
    
  • [`175a6569f4`](https://github.com/nodejs/node/commit/175a6569f4)] - **doc**: add annotation to writeFile `data` as `Object` (Jacob) [#&#8203;39167](https://github.com/nodejs/node/pull/39167)
    
  • [`4d53c63c22`](https://github.com/nodejs/node/commit/4d53c63c22)] - **doc**: fix boldface punctuation for full sentences (Rich Trott) [#&#8203;39278](https://github.com/nodejs/node/pull/39278)
    
  • [`146f733f43`](https://github.com/nodejs/node/commit/146f733f43)] - **doc**: fix constants usage in fs.access example (Cyrille Bourgois) [#&#8203;39289](https://github.com/nodejs/node/pull/39289)
    
  • [`eacee0ab17`](https://github.com/nodejs/node/commit/eacee0ab17)] - **doc**: use "repository" in guides versus repo (Michael Dawson) [#&#8203;39198](https://github.com/nodejs/node/pull/39198)
    
  • [`04bcfcfff1`](https://github.com/nodejs/node/commit/04bcfcfff1)] - **doc**: update Node-api version matrix (Michael Dawson) [#&#8203;39197](https://github.com/nodejs/node/pull/39197)
    
  • [`4dd6ab389a`](https://github.com/nodejs/node/commit/4dd6ab389a)] - **doc**: remove onboarding-extras (Rich Trott) [#&#8203;39252](https://github.com/nodejs/node/pull/39252)
    
  • [`a01dacfdcd`](https://github.com/nodejs/node/commit/a01dacfdcd)] - **doc**: move Sam Ruby to emeritus (Rich Trott) [#&#8203;39264](https://github.com/nodejs/node/pull/39264)
    
  • [`2bb3713b74`](https://github.com/nodejs/node/commit/2bb3713b74)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39250](https://github.com/nodejs/node/pull/39250)
    
  • [`2227c1368f`](https://github.com/nodejs/node/commit/2227c1368f)] - **doc**: fix color contrast for anchor marks in dark mode (Rich Trott) [#&#8203;39168](https://github.com/nodejs/node/pull/39168)
    
  • [`f8cdaad9d4`](https://github.com/nodejs/node/commit/f8cdaad9d4)] - **doc**: rename datatypes to data types (FrankEntriken) [#&#8203;39209](https://github.com/nodejs/node/pull/39209)
    
  • [`250024eaec`](https://github.com/nodejs/node/commit/250024eaec)] - **doc**: normalize CSS variable names and indentation (Rich Trott) [#&#8203;39199](https://github.com/nodejs/node/pull/39199)
    
  • [`db74a35348`](https://github.com/nodejs/node/commit/db74a35348)] - **doc**: remove unnecessary module format comments (Rich Trott) [#&#8203;39219](https://github.com/nodejs/node/pull/39219)
    
  • [`24a1f7ec84`](https://github.com/nodejs/node/commit/24a1f7ec84)] - **doc**: use more consistent formatting for deprecations (Rich Trott) [#&#8203;39218](https://github.com/nodejs/node/pull/39218)
    
  • [`24c0d7d872`](https://github.com/nodejs/node/commit/24c0d7d872)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39217](https://github.com/nodejs/node/pull/39217)
    
  • [`3e5ed72b0a`](https://github.com/nodejs/node/commit/3e5ed72b0a)] - **doc**: use "pull request" instead of "PR" in packages.md (Rich Trott) [#&#8203;39213](https://github.com/nodejs/node/pull/39213)
    
  • [`ddc24b2105`](https://github.com/nodejs/node/commit/ddc24b2105)] - **doc**: move v8.stopCoverage() to expected location in doc (Rich Trott) [#&#8203;39212](https://github.com/nodejs/node/pull/39212)
    
  • [`68c334c8c9`](https://github.com/nodejs/node/commit/68c334c8c9)] - **doc**: move vm.measureMemory() to expected location in doc (Rich Trott) [#&#8203;39211](https://github.com/nodejs/node/pull/39211)
    
  • [`81d52d7c79`](https://github.com/nodejs/node/commit/81d52d7c79)] - **doc**: fix CHANGELOG.md formatting (Richard Lau) [#&#8203;39223](https://github.com/nodejs/node/pull/39223)
    
  • [`9c3a5fd53e`](https://github.com/nodejs/node/commit/9c3a5fd53e)] - **doc**: add cc oss-security@lists.openwall.com (Daniel Bevenius) [#&#8203;39191](https://github.com/nodejs/node/pull/39191)
    
  • [`07ba2875ae`](https://github.com/nodejs/node/commit/07ba2875ae)] - **doc**: remove instructions for unsupported Node.js versions (Rich Trott) [#&#8203;39185](https://github.com/nodejs/node/pull/39185)
    
  • [`482851f647`](https://github.com/nodejs/node/commit/482851f647)] - **doc**: remove obsolete cc recommendations (Rich Trott) [#&#8203;39181](https://github.com/nodejs/node/pull/39181)
    
  • [`8311b29083`](https://github.com/nodejs/node/commit/8311b29083)] - **doc**: use "repository" in maintaining-V8 doc (Rich Trott) [#&#8203;39179](https://github.com/nodejs/node/pull/39179)
    
  • [`952580e1bf`](https://github.com/nodejs/node/commit/952580e1bf)] - **doc**: fix broken link in errors.md (Rich Trott) [#&#8203;39200](https://github.com/nodejs/node/pull/39200)
    
  • [`af1e1dba36`](https://github.com/nodejs/node/commit/af1e1dba36)] - **doc**: correct JavaScript primitive value names in n-api.md (legendecas) [#&#8203;39129](https://github.com/nodejs/node/pull/39129)
    
  • [`00728d1301`](https://github.com/nodejs/node/commit/00728d1301)] - **doc**: apply logical ordering to CSS variables (Rich Trott) [#&#8203;39169](https://github.com/nodejs/node/pull/39169)
    
  • [`aec2744e14`](https://github.com/nodejs/node/commit/aec2744e14)] - **doc**: remove file name from self-reference links (Antoine du Hamel) [#&#8203;39165](https://github.com/nodejs/node/pull/39165)
    
  • [`74bb915178`](https://github.com/nodejs/node/commit/74bb915178)] - **doc**: use repository instead of repo (Rich Trott) [#&#8203;39157](https://github.com/nodejs/node/pull/39157)
    
  • [`a669a191a1`](https://github.com/nodejs/node/commit/a669a191a1)] - **doc**: use ASCII order for md refs (Antoine du Hamel) [#&#8203;39170](https://github.com/nodejs/node/pull/39170)
    
  • [`21e8720155`](https://github.com/nodejs/node/commit/21e8720155)] - **doc**: fix `EventTarget.dispatchEvent` docs (Rohan Sharma) [#&#8203;39127](https://github.com/nodejs/node/pull/39127)
    
  • [`90ec7660bc`](https://github.com/nodejs/node/commit/90ec7660bc)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39082](https://github.com/nodejs/node/pull/39082)
    
  • [`81cebec5cc`](https://github.com/nodejs/node/commit/81cebec5cc)] - **doc**: esm examples /w imports for process, Buffer (Guy Bedford) [#&#8203;39043](https://github.com/nodejs/node/pull/39043)
    
  • [`c1588887a6`](https://github.com/nodejs/node/commit/c1588887a6)] - **doc**: fix napi_default_property name (Davidson Francis) [#&#8203;39104](https://github.com/nodejs/node/pull/39104)
    
  • [`a440f6c69c`](https://github.com/nodejs/node/commit/a440f6c69c)] - **doc**: fix dead links in packages.md (Michaël Zasso) [#&#8203;39113](https://github.com/nodejs/node/pull/39113)
    
  • [`33cad271c5`](https://github.com/nodejs/node/commit/33cad271c5)] - **errors**: remove eager stack generation for node errors (Gus Caplan) [#&#8203;39182](https://github.com/nodejs/node/pull/39182)
    
  • [`ac05a0a8a3`](https://github.com/nodejs/node/commit/ac05a0a8a3)] - **errors**: don't throw TypeError on missing export (Benjamin Coe) [#&#8203;39017](https://github.com/nodejs/node/pull/39017)
    
  • [`83f3b959f9`](https://github.com/nodejs/node/commit/83f3b959f9)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028)
    
  • [`ac7184d8c7`](https://github.com/nodejs/node/commit/ac7184d8c7)] - **http**: clean up HttpParser correctly (Tobias Koppers) [#&#8203;39292](https://github.com/nodejs/node/pull/39292)
    
  • [`35331cbd13`](https://github.com/nodejs/node/commit/35331cbd13)] - **http,https**: align server option of https with http (Qingyu Deng) [#&#8203;38992](https://github.com/nodejs/node/pull/38992)
    
  • [`29194d4f88`](https://github.com/nodejs/node/commit/29194d4f88)] - **inspector**: move inspector async hooks to environment (Joyee Cheung) [#&#8203;39112](https://github.com/nodejs/node/pull/39112)
    
  • [`ecf627a9af`](https://github.com/nodejs/node/commit/ecf627a9af)] - **lib**: rename TransferedReadableStream etc (Tobias Nießen) [#&#8203;39352](https://github.com/nodejs/node/pull/39352)
    
  • [`0e55cb72df`](https://github.com/nodejs/node/commit/0e55cb72df)] - **lib**: make lazyDOMException more common (Khaidi Chu) [#&#8203;39105](https://github.com/nodejs/node/pull/39105)
    
  • [`cfd96aa8f9`](https://github.com/nodejs/node/commit/cfd96aa8f9)] - **meta**: fix tls code owners (Robert Nagy) [#&#8203;39355](https://github.com/nodejs/node/pull/39355)
    
  • [`e5c2d80560`](https://github.com/nodejs/node/commit/e5c2d80560)] - **meta**: use form schema for bug report template (Michaël Zasso) [#&#8203;39194](https://github.com/nodejs/node/pull/39194)
    
  • [`bd472daf0c`](https://github.com/nodejs/node/commit/bd472daf0c)] - **meta**: add [@&#8203;nodejs/actions](https://github.com/nodejs/actions) as CODEOWNERS (Mary Marchini) [#&#8203;39119](https://github.com/nodejs/node/pull/39119)
    
  • [`63f87027e3`](https://github.com/nodejs/node/commit/63f87027e3)] - **node-api**: cctest on v8impl::Reference (legendecas) [#&#8203;38970](https://github.com/nodejs/node/pull/38970)
    
  • [`7ea98fbccd`](https://github.com/nodejs/node/commit/7ea98fbccd)] - **perf_hooks**: refactor perf_hooks for snapshot building (Joyee Cheung) [#&#8203;38971](https://github.com/nodejs/node/pull/38971)
    
  • [`20cc8ec2af`](https://github.com/nodejs/node/commit/20cc8ec2af)] - **readline**: allow completer to rewrite existing input (Anna Henningsen) [#&#8203;39178](https://github.com/nodejs/node/pull/39178)
    
  • [`b168ec2a2a`](https://github.com/nodejs/node/commit/b168ec2a2a)] - **repl**: processTopLevelAwait fallback error handling (ejose19) [#&#8203;39290](https://github.com/nodejs/node/pull/39290)
    
  • [`a101fe68ad`](https://github.com/nodejs/node/commit/a101fe68ad)] - **repl**: correctly hoist top level await declarations (ejose19) [#&#8203;39265](https://github.com/nodejs/node/pull/39265)
    
  • [`d441d91450`](https://github.com/nodejs/node/commit/d441d91450)] - **repl**: ensure correct syntax err for await parsing (Guy Bedford) [#&#8203;39154](https://github.com/nodejs/node/pull/39154)
    
  • [`9184259a54`](https://github.com/nodejs/node/commit/9184259a54)] - **src**: add JSDoc typings for v8 (Voltrex) [#&#8203;38944](https://github.com/nodejs/node/pull/38944)
    
  • [`66553feeba`](https://github.com/nodejs/node/commit/66553feeba)] - **src**: compare IPv4 addresses in host byte order (Colin Ihrig) [#&#8203;39096](https://github.com/nodejs/node/pull/39096)
    
  • [`ea8d83bf59`](https://github.com/nodejs/node/commit/ea8d83bf59)] - **src,crypto**: fix 0-length output crash in webcrypto (Khaidi Chu) [#&#8203;38913](https://github.com/nodejs/node/pull/38913)
    
  • [`683c995001`](https://github.com/nodejs/node/commit/683c995001)] - **src,zlib**: tighten up Z_\*\_WINDOWBITS macros (Khaidi Chu) [#&#8203;39115](https://github.com/nodejs/node/pull/39115)
    
  • [`cb32f69e00`](https://github.com/nodejs/node/commit/cb32f69e00)] - **stream**: cleanup async handling (Robert Nagy) [#&#8203;39329](https://github.com/nodejs/node/pull/39329)
    
  • [`1fc6382942`](https://github.com/nodejs/node/commit/1fc6382942)] - **stream**: don't emit prefinish after error or close (Robert Nagy) [#&#8203;39332](https://github.com/nodejs/node/pull/39332)
    
  • [`35b6669e13`](https://github.com/nodejs/node/commit/35b6669e13)] - **stream**: use finished for pump (Robert Nagy) [#&#8203;39203](https://github.com/nodejs/node/pull/39203)
    
  • [`9af62a1357`](https://github.com/nodejs/node/commit/9af62a1357)] - **(SEMVER-MINOR)** **stream**: implement WHATWG streams (James M Snell) [#&#8203;39062](https://github.com/nodejs/node/pull/39062)
    
  • [`0bb980aeaf`](https://github.com/nodejs/node/commit/0bb980aeaf)] - **test**: remove eslint-disable comment from fixture file (Rich Trott) [#&#8203;39320](https://github.com/nodejs/node/pull/39320)
    
  • [`21f77031fb`](https://github.com/nodejs/node/commit/21f77031fb)] - **test**: move debugger test case to parallel (Rich Trott) [#&#8203;39300](https://github.com/nodejs/node/pull/39300)
    
  • [`0ec93a1fc1`](https://github.com/nodejs/node/commit/0ec93a1fc1)] - **test**: use common.PORT instead of hardcoded port number (Rich Trott) [#&#8203;39298](https://github.com/nodejs/node/pull/39298)
    
  • [`11a8b81caf`](https://github.com/nodejs/node/commit/11a8b81caf)] - **test**: remove debugger workaround for AIX (Rich Trott) [#&#8203;39296](https://github.com/nodejs/node/pull/39296)
    
  • [`8e77aa23f1`](https://github.com/nodejs/node/commit/8e77aa23f1)] - **test**: add test for debugger restart message issue (Rich Trott) [#&#8203;39273](https://github.com/nodejs/node/pull/39273)
    
  • [`13755599e1`](https://github.com/nodejs/node/commit/13755599e1)] - **test**: remove workaround code in debugger test (Rich Trott) [#&#8203;39238](https://github.com/nodejs/node/pull/39238)
    
  • [`1f31e3c774`](https://github.com/nodejs/node/commit/1f31e3c774)] - **test**: remove checks for armv6 (Rich Trott) [#&#8203;39162](https://github.com/nodejs/node/pull/39162)
    
  • [`d486d0117c`](https://github.com/nodejs/node/commit/d486d0117c)] - **test**: move test-debugger-address to parallel (Rich Trott) [#&#8203;39236](https://github.com/nodejs/node/pull/39236)
    
  • [`cdc7a19f48`](https://github.com/nodejs/node/commit/cdc7a19f48)] - **test**: remove common.enoughTestCpu (Rich Trott) [#&#8203;39161](https://github.com/nodejs/node/pull/39161)
    
  • [`cc32365f56`](https://github.com/nodejs/node/commit/cc32365f56)] - **(SEMVER-MINOR)** **test**: add WPT streams tests (James M Snell) [#&#8203;39062](https://github.com/nodejs/node/pull/39062)
    
  • [`fff21a4afb`](https://github.com/nodejs/node/commit/fff21a4afb)] - **test**: replace "inspector-cli" with "debugger" (Rich Trott) [#&#8203;39156](https://github.com/nodejs/node/pull/39156)
    
  • [`df17c62818`](https://github.com/nodejs/node/commit/df17c62818)] - **test**: use localhost test instead of connecting to remote (Adam Majer) [#&#8203;39011](https://github.com/nodejs/node/pull/39011)
    
  • [`dfe99d2aac`](https://github.com/nodejs/node/commit/dfe99d2aac)] - **tls**: move legacy code into own file (Robert Nagy) [#&#8203;39333](https://github.com/nodejs/node/pull/39333)
    
  • [`f338fddbb0`](https://github.com/nodejs/node/commit/f338fddbb0)] - **tools**: add GitHub Action to run find-inactive-collaborators.mjs (Rich Trott) [#&#8203;39335](https://github.com/nodejs/node/pull/39335)
    
  • [`b3a0dd1e4a`](https://github.com/nodejs/node/commit/b3a0dd1e4a)] - **tools**: pass bot token to node-pr-labeler (Michaël Zasso) [#&#8203;39271](https://github.com/nodejs/node/pull/39271)
    
  • [`b56a3d9009`](https://github.com/nodejs/node/commit/b56a3d9009)] - **tools**: update gyp-next to v0.9.3 (Jiawen Geng) [#&#8203;39291](https://github.com/nodejs/node/pull/39291)
    
  • [`3cd9f5e298`](https://github.com/nodejs/node/commit/3cd9f5e298)] - **tools**: add find-inactive-collaborators.js (Rich Trott) [#&#8203;39262](https://github.com/nodejs/node/pull/39262)
    
  • [`0673ede3ad`](https://github.com/nodejs/node/commit/0673ede3ad)] - **tools**: take ownership of deps/v8/tools/node (Michaël Zasso) [#&#8203;39222](https://github.com/nodejs/node/pull/39222)
    
  • [`cb8c6ffbce`](https://github.com/nodejs/node/commit/cb8c6ffbce)] - **tools**: update ESLint to 7.30.0 (Colin Ihrig) [#&#8203;39242](https://github.com/nodejs/node/pull/39242)
    
  • [`d5113f9e34`](https://github.com/nodejs/node/commit/d5113f9e34)] - **tools**: remove armv6 from test tools (Rich Trott) [#&#8203;39162](https://github.com/nodejs/node/pull/39162)
    
  • [`802d9c4488`](https://github.com/nodejs/node/commit/802d9c4488)] - **tools**: update path-parse to 1.0.7 (Rich Trott) [#&#8203;39232](https://github.com/nodejs/node/pull/39232)
    
  • [`ab9ccd014c`](https://github.com/nodejs/node/commit/ab9ccd014c)] - **tools**: remove unused `lint-pr-commit-message.sh` (Richard Lau) [#&#8203;39120](https://github.com/nodejs/node/pull/39120)
    
  • [`6200f3b35f`](https://github.com/nodejs/node/commit/6200f3b35f)] - **tools**: update [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) to 7.14.7 (Rich Trott) [#&#8203;39160](https://github.com/nodejs/node/pull/39160)
    
  • [`dfe5d1139c`](https://github.com/nodejs/node/commit/dfe5d1139c)] - **tools**: update remark-preset-lint-node to 2.4.1 (Rich Trott) [#&#8203;39201](https://github.com/nodejs/node/pull/39201)
    
  • [`4715105581`](https://github.com/nodejs/node/commit/4715105581)] - **tools**: upgrade `highlight.js` to version 11.0.1 (Antoine du Hamel) [#&#8203;39032](https://github.com/nodejs/node/pull/39032)
    
  • [`2481ddd08d`](https://github.com/nodejs/node/commit/2481ddd08d)] - **tools,doc**: fix error message for unrecognized type (Antoine du Hamel) [#&#8203;39221](https://github.com/nodejs/node/pull/39221)
    
  • [`adb812c042`](https://github.com/nodejs/node/commit/adb812c042)] - **typings**: add a few JSDoc typings for the net lib module (nerdthatnoonelikes) [#&#8203;38953](https://github.com/nodejs/node/pull/38953)
    
  • [`29673b8ac8`](https://github.com/nodejs/node/commit/29673b8ac8)] - **typings**: add JSDoc typings for timers (Voltrex) [#&#8203;38834](https://github.com/nodejs/node/pull/38834)
    
  • [`fe1c81f247`](https://github.com/nodejs/node/commit/fe1c81f247)] - **wasi**: use missing validator (Voltrex) [#&#8203;39070](https://github.com/nodejs/node/pull/39070)
    
    

v16.4.2

Compare Source

Notable Changes

Node.js 16.4.1 introduced a regression in the Windows installer on
non-English locales that is being fixed in this release. There is no
need to download this release if you are not using the Windows
installer.

Commits
  • [`76e709ec63`](https://github.com/nodejs/node/commit/76e709ec63)] - **win,msi**: use localized "Authenticated Users" name (Richard Lau) [#&#8203;39241](https://github.com/nodejs/node/pull/39241)
    
    

v16.4.1

Compare Source

This is a security release.

Notable Changes

Vulnerabilities fixed:

  • CVE-2021-22918: libuv upgrade - Out of bounds read (Medium)
    • Node.js is vulnerable to out-of-bounds read in libuv's uv__idna_toascii() function which is used to convert strings to ASCII. This is called by Node's dns module's lookup() function and can lead to information disclosures or crashes. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22918
  • CVE-2021-22921: Windows installer - Node Installer Local Privilege Escalation (Medium)
    • Node.js is vulnerable to local privilege escalation attacks under certain conditions on Windows platforms. More specifically, improper configuration of permissions in the installation directory allows an attacker to perform two different escalation attacks: PATH and DLL hijacking. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22921
Commits
  • [`d33aead28b`](https://github.com/nodejs/node/commit/d33aead28b)] - **deps**: uv: cherry-pick [`99c29c9`](https://github.com/nodejs/node/commit/99c29c9c2c9b) (Ben Noordhuis) [nodejs-private/node-private#&#8203;267](https://github.com/nodejs-private/node-private/pull/267)
    
  • [`2690907b81`](https://github.com/nodejs/node/commit/2690907b81)] - **win,msi**: set install directory permission (AkshayK) [nodejs-private/node-private#&#8203;269](https://github.com/nodejs-private/node-private/pull/269)
    
    

v16.4.0

Compare Source

Notable changes
  • async_hooks:
    • stabilize part of AsyncLocalStorage (Vladimir de Turckheim) #​37675
  • deps:
    • upgrade npm to 7.18.1 (npm team) #​39065
    • update V8 to 9.1.269.36 (Michaël Zasso) #​38273
  • dns:
    • allow --dns-result-order to change default dns verbatim (Ouyang Yadong) #​38099
Commits
  • [`d2b972ee52`](https://github.com/nodejs/node/commit/d2b972ee52)] - **async_hooks**: check for empty contexts before removing (Bryan English) [#&#8203;39095](https://github.com/nodejs/node/pull/39095)
    
  • [`03e75fda4c`](https://github.com/nodejs/node/commit/03e75fda4c)] - **async_hooks**: switch between native and context hooks correctly (Stephen Belanger) [#&#8203;38912](https://github.com/nodejs/node/pull/38912)
    
  • [`8115e6ee6d`](https://github.com/nodejs/node/commit/8115e6ee6d)] - **(SEMVER-MINOR)** **async_hooks**: stabilize part of AsyncLocalStorage (Vladimir de Turckheim) [#&#8203;37675](https://github.com/nodejs/node/pull/37675)
    
  • [`5f51729014`](https://github.com/nodejs/node/commit/5f51729014)] - **bootstrap**: move event loop handle checking into snapshot builder (Joyee Cheung) [#&#8203;39007](https://github.com/nodejs/node/pull/39007)
    
  • [`9d100aa269`](https://github.com/nodejs/node/commit/9d100aa269)] - **bootstrap**: split NodeMainInstance::Run() (Joyee Cheung) [#&#8203;39007](https://github.com/nodejs/node/pull/39007)
    
  • [`2aaf2f231f`](https://github.com/nodejs/node/commit/2aaf2f231f)] - **build**: reconfigure when gyp files change on Windows (Joyee Cheung) [#&#8203;39066](https://github.com/nodejs/node/pull/39066)
    
  • [`7f225a05ee`](https://github.com/nodejs/node/commit/7f225a05ee)] - ***Revert*** "**build**: work around bug in MSBuild v16.10.0" (Michaël Zasso) [#&#8203;38977](https://github.com/nodejs/node/pull/38977)
    
  • [`1853127dde`](https://github.com/nodejs/node/commit/1853127dde)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`c0d236f5ea`](https://github.com/nodejs/node/commit/c0d236f5ea)] - **build**: make build-addons errors fail the build (Richard Lau) [#&#8203;38983](https://github.com/nodejs/node/pull/38983)
    
  • [`173292bcf8`](https://github.com/nodejs/node/commit/173292bcf8)] - **build**: fix commit-queue default branch (Mary Marchini) [#&#8203;38998](https://github.com/nodejs/node/pull/38998)
    
  • [`e939e243bf`](https://github.com/nodejs/node/commit/e939e243bf)] - **build**: don't pass python override to V8 build (Richard Lau) [#&#8203;38969](https://github.com/nodejs/node/pull/38969)
    
  • [`651c58b412`](https://github.com/nodejs/node/commit/651c58b412)] - **build**: correct Xcode spelling in .gitignore (bl-ue) [#&#8203;38895](https://github.com/nodejs/node/pull/38895)
    
  • [`5203c9ced7`](https://github.com/nodejs/node/commit/5203c9ced7)] - **build**: fast-track npm PRs and dont-land them on LTS (Michaël Zasso) [#&#8203;38885](https://github.com/nodejs/node/pull/38885)
    
  • [`7de57d4d33`](https://github.com/nodejs/node/commit/7de57d4d33)] - **build**: dont-land gyp-next PRs on LTS branches (Michaël Zasso) [#&#8203;38887](https://github.com/nodejs/node/pull/38887)
    
  • [`e87cd4542b`](https://github.com/nodejs/node/commit/e87cd4542b)] - **child_process**: refactor to use `validateBoolean` (Qingyu Deng) [#&#8203;38927](https://github.com/nodejs/node/pull/38927)
    
  • [`69fa9e16e9`](https://github.com/nodejs/node/commit/69fa9e16e9)] - **(SEMVER-MINOR)** **child_process**: allow `options.cwd` receive a URL (Khaidi Chu) [#&#8203;38862](https://github.com/nodejs/node/pull/38862)
    
  • [`cf9d686c35`](https://github.com/nodejs/node/commit/cf9d686c35)] - **crypto**: fix aes crash when tag length too small (Khaidi Chu) [#&#8203;38914](https://github.com/nodejs/node/pull/38914)
    
  • [`1799ea36f0`](https://github.com/nodejs/node/commit/1799ea36f0)] - **crypto**: use compatible version of EVP_CIPHER_name (Shelley Vohr) [#&#8203;38925](https://github.com/nodejs/node/pull/38925)
    
  • [`6d5dc63ae4`](https://github.com/nodejs/node/commit/6d5dc63ae4)] - **crypto**: fix label cast in EVP_PKEY_CTX_set0\_rsa_oaep_label (Shelley Vohr) [#&#8203;38926](https://github.com/nodejs/node/pull/38926)
    
  • [`6e93c17bf5`](https://github.com/nodejs/node/commit/6e93c17bf5)] - **crypto**: use EVP_get_cipherbynid directly (Shelley Vohr) [#&#8203;38901](https://github.com/nodejs/node/pull/38901)
    
  • [`82c293959e`](https://github.com/nodejs/node/commit/82c293959e)] - **crypto**: add missing rand.h include (Shelley Vohr) [#&#8203;38864](https://github.com/nodejs/node/pull/38864)
    
  • [`e4f802de9a`](https://github.com/nodejs/node/commit/e4f802de9a)] - **debugger**: rename internal library for clarity (Rich Trott) [#&#8203;39080](https://github.com/nodejs/node/pull/39080)
    
  • [`1e8bdab581`](https://github.com/nodejs/node/commit/1e8bdab581)] - **debugger**: use ERR_DEBUGGER_STARTUP_ERROR in \_inspect.js (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`b43cb69fbb`](https://github.com/nodejs/node/commit/b43cb69fbb)] - **debugger**: use error codes in debugger REPL (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`dc9218136b`](https://github.com/nodejs/node/commit/dc9218136b)] - **debugger**: use ERR_DEBUGGER_ERROR in debugger client (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`711916a271`](https://github.com/nodejs/node/commit/711916a271)] - **debugger**: remove unnecessary boilerplate copyright comment (Rich Trott) [#&#8203;38952](https://github.com/nodejs/node/pull/38952)
    
  • [`0f65e41442`](https://github.com/nodejs/node/commit/0f65e41442)] - **debugger**: reduce scope of eslint disable comment (Rich Trott) [#&#8203;38946](https://github.com/nodejs/node/pull/38946)
    
  • [`1fa724ec5a`](https://github.com/nodejs/node/commit/1fa724ec5a)] - **deps**: upgrade npm to 7.18.1 (npm team) [#&#8203;39065](https://github.com/nodejs/node/pull/39065)
    
  • [`c6aa68598d`](https://github.com/nodejs/node/commit/c6aa68598d)] - **deps**: upgrade npm to 7.17.0 (npm team) [#&#8203;38999](https://github.com/nodejs/node/pull/38999)
    
  • [`864fe9910b`](https://github.com/nodejs/node/commit/864fe9910b)] - **deps**: make V8 9.1 abi-compatible with 9.0 (Michaël Zasso) [#&#8203;38991](https://github.com/nodejs/node/pull/38991)
    
  • [`c93f3573eb`](https://github.com/nodejs/node/commit/c93f3573eb)] - **deps**: V8: cherry-pick [`fa4cb17`](https://github.com/nodejs/node/commit/fa4cb172cde2) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`3c6c28b0a1`](https://github.com/nodejs/node/commit/3c6c28b0a1)] - **deps**: V8: cherry-pick [`4c07451`](https://github.com/nodejs/node/commit/4c074516397b) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`3c37396d5c`](https://github.com/nodejs/node/commit/3c37396d5c)] - **deps**: V8: cherry-pick [`5f44131`](https://github.com/nodejs/node/commit/5f4413194480) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`3433559a55`](https://github.com/nodejs/node/commit/3433559a55)] - **deps**: V8: cherry-pick [`272445f`](https://github.com/nodejs/node/commit/272445f10927) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`f56c78574e`](https://github.com/nodejs/node/commit/f56c78574e)] - **deps**: V8: cherry-pick [`c0fceaa`](https://github.com/nodejs/node/commit/c0fceaa0669b) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`7197fcec93`](https://github.com/nodejs/node/commit/7197fcec93)] - **deps**: V8: cherry-pick [`d59db06`](https://github.com/nodejs/node/commit/d59db06bf542) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`bf7aa9fef8`](https://github.com/nodejs/node/commit/bf7aa9fef8)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`eac377bc15`](https://github.com/nodejs/node/commit/eac377bc15)] - **deps**: V8: backport [`aaacffa`](https://github.com/nodejs/node/commit/aaacffa1e003) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`1a7c8a12c1`](https://github.com/nodejs/node/commit/1a7c8a12c1)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`3c9a75522b`](https://github.com/nodejs/node/commit/3c9a75522b)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`8ed258339a`](https://github.com/nodejs/node/commit/8ed258339a)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`4ef37c83a9`](https://github.com/nodejs/node/commit/4ef37c83a9)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`7c61c6ee25`](https://github.com/nodejs/node/commit/7c61c6ee25)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`e82ef4148e`](https://github.com/nodejs/node/commit/e82ef4148e)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.1.269.36 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`70af146745`](https://github.com/nodejs/node/commit/70af146745)] - **deps**: upgrade npm to 7.16.0 (npm team) [#&#8203;38920](https://github.com/nodejs/node/pull/38920)
    
  • [`a71df7630e`](https://github.com/nodejs/node/commit/a71df7630e)] - **(SEMVER-MINOR)** **dns**: allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099)
    
  • [`dce256b210`](https://github.com/nodejs/node/commit/dce256b210)] - **doc**: remove references to deleted freenode channels (devsnek) [#&#8203;39047](https://github.com/nodejs/node/pull/39047)
    
  • [`1afff98805`](https://github.com/nodejs/node/commit/1afff98805)] - **doc**: fix typos (bl-ue) [#&#8203;39049](https://github.com/nodejs/node/pull/39049)
    
  • [`858f66e691`](https://github.com/nodejs/node/commit/858f66e691)] - **doc**: add missing parameter types (Voltrex) [#&#8203;39013](https://github.com/nodejs/node/pull/39013)
    
  • [`ed91379186`](https://github.com/nodejs/node/commit/ed91379186)] - **doc**: clearify that http does chunked encoding itself (Mao Wtm) [#&#8203;28379](https://github.com/nodejs/node/pull/28379)
    
  • [`51561f390a`](https://github.com/nodejs/node/commit/51561f390a)] - **doc**: add missing changelog links (Antoine du Hamel) [#&#8203;39016](https://github.com/nodejs/node/pull/39016)
    
  • [`a19170eb9d`](https://github.com/nodejs/node/commit/a19170eb9d)] - **doc**: clarify that only one Python version is required to build (bl-ue) [#&#8203;38894](https://github.com/nodejs/node/pull/38894)
    
  • [`7b219992e0`](https://github.com/nodejs/node/commit/7b219992e0)] - **doc**: fix markup for aesImportParams (Tobias Nießen) [#&#8203;38898](https://github.com/nodejs/node/pull/38898)
    
  • [`405b50cdba`](https://github.com/nodejs/node/commit/405b50cdba)] - **doc**: use `await` in filehandle.truncate() snippet (RA80533) [#&#8203;38939](https://github.com/nodejs/node/pull/38939)
    
  • [`5218fe86d1`](https://github.com/nodejs/node/commit/5218fe86d1)] - **doc**: fixed typo in process.md (Derevianchenko Maksym) [#&#8203;38941](https://github.com/nodejs/node/pull/38941)
    
  • [`f903ad85f2`](https://github.com/nodejs/node/commit/f903ad85f2)] - **doc**: add missing semis after classes (Darshan Sen) [#&#8203;38931](https://github.com/nodejs/node/pull/38931)
    
  • [`0bdeeda3b5`](https://github.com/nodejs/node/commit/0bdeeda3b5)] - **doc**: update write callback documentation (Simone Busoli) [#&#8203;38959](https://github.com/nodejs/node/pull/38959)
    
  • [`7a7c0588ad`](https://github.com/nodejs/node/commit/7a7c0588ad)] - **doc**: mark util.inherits as legacy (Voltrex) [#&#8203;38896](https://github.com/nodejs/node/pull/38896)
    
  • [`f6964dc506`](https://github.com/nodejs/node/commit/f6964dc506)] - **doc**: clarify when `readable._read(...)` is called (Shaun Keys) [#&#8203;38726](https://github.com/nodejs/node/pull/38726)
    
  • [`3481b02e77`](https://github.com/nodejs/node/commit/3481b02e77)] - **doc**: mark Node.js v15.x as EOL (Antoine du Hamel) [#&#8203;38891](https://github.com/nodejs/node/pull/38891)
    
  • [`17a9846920`](https://github.com/nodejs/node/commit/17a9846920)] - **doc**: fix .mjs syntax in crypto.md (himself65) [#&#8203;38882](https://github.com/nodejs/node/pull/38882)
    
  • [`8c7b2bab5f`](https://github.com/nodejs/node/commit/8c7b2bab5f)] - **doc,fs**: remove experimental status for WHATWG URL as path (Antoine du Hamel) [#&#8203;38870](https://github.com/nodejs/node/pull/38870)
    
  • [`eddde6c31a`](https://github.com/nodejs/node/commit/eddde6c31a)] - **errors**: don't rekey on primitive type (Benjamin Coe) [#&#8203;39025](https://github.com/nodejs/node/pull/39025)
    
  • [`3d7892ef39`](https://github.com/nodejs/node/commit/3d7892ef39)] - **errors**: add ERR_DEBUGGER_STARTUP_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`631856ea32`](https://github.com/nodejs/node/commit/631856ea32)] - **errors**: add ERR_DEBUGGER_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`336571fbdd`](https://github.com/nodejs/node/commit/336571fbdd)] - ***Revert*** "**http**: make HEAD method to work with keep-alive" (Michaël Zasso) [#&#8203;38949](https://github.com/nodejs/node/pull/38949)
    
  • [`c2b4fbba0f`](https://github.com/nodejs/node/commit/c2b4fbba0f)] - **lib**: remove semicolon in preparation for babel/eslint-parser update (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094)
    
  • [`f17dde81f3`](https://github.com/nodejs/node/commit/f17dde81f3)] - **lib**: make internal/options lazy (Joyee Cheung) [#&#8203;38993](https://github.com/nodejs/node/pull/38993)
    
  • [`551430514b`](https://github.com/nodejs/node/commit/551430514b)] - **lib**: add JSDoc typings for child_process (Voltrex) [#&#8203;38222](https://github.com/nodejs/node/pull/38222)
    
  • [`ded83350a0`](https://github.com/nodejs/node/commit/ded83350a0)] - **lib**: make primordials Promise methods safe (Antoine du Hamel) [#&#8203;38650](https://github.com/nodejs/node/pull/38650)
    
  • [`637c1fa83c`](https://github.com/nodejs/node/commit/637c1fa83c)] - **lib**: refactor debuglog init (Antoine du Hamel) [#&#8203;38838](https://github.com/nodejs/node/pull/38838)
    
  • [`5b5e07a2cc`](https://github.com/nodejs/node/commit/5b5e07a2cc)] - **meta**: update label-pr-config (Michaël Zasso) [#&#8203;38950](https://github.com/nodejs/node/pull/38950)
    
  • [`92ed1c6cce`](https://github.com/nodejs/node/commit/92ed1c6cce)] - **module**: fix legacy `node` specifier resolution to resolve `"main"` field (Antoine du Hamel) [#&#8203;38979](https://github.com/nodejs/node/pull/38979)
    
  • [`4174f139b6`](https://github.com/nodejs/node/commit/4174f139b6)] - **net**: use missing validator (Voltrex) [#&#8203;38984](https://github.com/nodejs/node/pull/38984)
    
  • [`f7724ab342`](https://github.com/nodejs/node/commit/f7724ab342)] - **node-api**: avoid crashing on passed-in null string (Gabriel Schulhof) [#&#8203;38923](https://github.com/nodejs/node/pull/38923)
    
  • [`ec3e5b4c15`](https://github.com/nodejs/node/commit/ec3e5b4c15)] - **node-api**: avoid SecondPassCallback crash (Michael Dawson) [#&#8203;38899](https://github.com/nodejs/node/pull/38899)
    
  • [`74f5e30d69`](https://github.com/nodejs/node/commit/74f5e30d69)] - **node-api**: rtn pending excep on napi_new_instance (legendecas) [#&#8203;38798](https://github.com/nodejs/node/pull/38798)
    
  • [`4c6193fea1`](https://github.com/nodejs/node/commit/4c6193fea1)] - **report**: generates report on threads with no isolates (legendecas) [#&#8203;38994](https://github.com/nodejs/node/pull/38994)
    
  • [`3c7a7d9ee4`](https://github.com/nodejs/node/commit/3c7a7d9ee4)] - **(SEMVER-MINOR)** **src**: allow to negate boolean CLI flags (Michaël Zasso) [#&#8203;39023](https://github.com/nodejs/node/pull/39023)
    
  • [`284d9c6228`](https://github.com/nodejs/node/commit/284d9c6228)] - **src**: cleanup uv_fs_t regardless of success or not (legendecas) [#&#8203;38996](https://github.com/nodejs/node/pull/38996)
    
  • [`902bb858d7`](https://github.com/nodejs/node/commit/902bb858d7)] - **src**: refactor to use locale functions (Darshan Sen) [#&#8203;39014](https://github.com/nodejs/node/pull/39014)
    
  • [`10370c5e8a`](https://github.com/nodejs/node/commit/10370c5e8a)] - **src**: fix multiple AddLinkedBinding() calls (Anna Henningsen) [#&#8203;39012](https://github.com/nodejs/node/pull/39012)
    
  • [`ff8313c3a5`](https://github.com/nodejs/node/commit/ff8313c3a5)] - **src**: throw error in LoadBuiltinModuleSource when reading fails (Joyee Cheung) [#&#8203;38904](https://github.com/nodejs/node/pull/38904)
    
  • [`9ba5518f08`](https://github.com/nodejs/node/commit/9ba5518f08)] - **src**: skip test_fatal/test_threads for Debug builds (Daniel Bevenius) [#&#8203;38805](https://github.com/nodejs/node/pull/38805)
    
  • [`06afb8df65`](https://github.com/nodejs/node/commit/06afb8df65)] - **(SEMVER-MINOR)** **src**: make InitializeOncePerProcess more flexible (Shelley Vohr) [#&#8203;38888](https://github.com/nodejs/node/pull/38888)
    
  • [`db4b192113`](https://github.com/nodejs/node/commit/db4b192113)] - **src**: add not-weak DCHECK to PersistentToLocal::Strong (Anna Henningsen) [#&#8203;38875](https://github.com/nodejs/node/pull/38875)
    
  • [`08b2a4a138`](https://github.com/nodejs/node/commit/08b2a4a138)] - **src,test**: raise error for --enable-fips when no FIPS (Daniel Bevenius) [#&#8203;38859](https://github.com/nodejs/node/pull/38859)
    
  • [`5d92c09bbf`](https://github.com/nodejs/node/commit/5d92c09bbf)] - **src,url**: separate some tables out of node_url.cc (Khaidi Chu) [#&#8203;38988](https://github.com/nodejs/node/pull/38988)
    
  • [`c20e28e1a0`](https://github.com/nodejs/node/commit/c20e28e1a0)] - **stream**: fix pipeline pump (Robert Nagy) [#&#8203;39006](https://github.com/nodejs/node/pull/39006)
    
  • [`7b026d8a72`](https://github.com/nodejs/node/commit/7b026d8a72)] - **test**: move inspector-cli tests to sequential (Rich Trott) [#&#8203;39079](https://github.com/nodejs/node/pull/39079)
    
  • [`a53911b166`](https://github.com/nodejs/node/commit/a53911b166)] - **test**: improve buffer coverage (Rongjian Zhang) [#&#8203;38538](https://github.com/nodejs/node/pull/38538)
    
  • [`5e9175f148`](https://github.com/nodejs/node/commit/5e9175f148)] - **test**: fix name of variable in inspector-cli test (Tobias Nießen) [#&#8203;38869](https://github.com/nodejs/node/pull/38869)
    
  • [`bd924610ec`](https://github.com/nodejs/node/commit/bd924610ec)] - **test**: fix typo (Houssem Chebab) [#&#8203;39045](https://github.com/nodejs/node/pull/39045)
    
  • [`d50df5dec1`](https://github.com/nodejs/node/commit/d50df5dec1)] - **test**: fix typo in test-http2-invalidheaderfield.js (Ikko Ashimine) [#&#8203;39021](https://github.com/nodejs/node/pull/39021)
    
  • [`6111671d45`](https://github.com/nodejs/node/commit/6111671d45)] - **test**: adapt abort tests for new Windows code (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`1816d46cef`](https://github.com/nodejs/node/commit/1816d46cef)] - **test**: adapt test-linux-perf to V8 changes (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`32961c4781`](https://github.com/nodejs/node/commit/32961c4781)] - **test**: fix V8 serdes test for V8 9.1 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`f652284b3b`](https://github.com/nodejs/node/commit/f652284b3b)] - **test**: remove obsolete TLS test (Rich Trott) [#&#8203;39001](https://github.com/nodejs/node/pull/39001)
    
  • [`81bbeab3bd`](https://github.com/nodejs/node/commit/81bbeab3bd)] - **test**: improve coverage of lib/events.js (Rongjian Zhang) [#&#8203;38582](https://github.com/nodejs/node/pull/38582)
    
  • [`e82111f890`](https://github.com/nodejs/node/commit/e82111f890)] - **test**: http outgoing \_headers setter null (ycjcl868) [#&#8203;38881](https://github.com/nodejs/node/pull/38881)
    
  • [`1f10e84939`](https://github.com/nodejs/node/commit/1f10e84939)] - **test**: suppress warning in test_environment.cc (Daniel Bevenius) [#&#8203;38868](https://github.com/nodejs/node/pull/38868)
    
  • [`379b5f79a9`](https://github.com/nodejs/node/commit/379b5f79a9)] - **tls**: tweak clientCertEngine argument parsing (Shelley Vohr) [#&#8203;38900](https://github.com/nodejs/node/pull/38900)
    
  • [`78d2e0ed8e`](https://github.com/nodejs/node/commit/78d2e0ed8e)] - **tools**: update babel-eslint-parser to 7.14.5 (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094)
    
  • [`fed641127a`](https://github.com/nodejs/node/commit/fed641127a)] - **tools**: update ESLint to 7.29.0 (Rich Trott) [#&#8203;39083](https://github.com/nodejs/node/pull/39083)
    
  • [`3ae2a0be48`](https://github.com/nodejs/node/commit/3ae2a0be48)] - **tools**: fix typo (Houssem Chebab) [#&#8203;39044](https://github.com/nodejs/node/pull/39044)
    
  • [`a1d0aef60e`](https://github.com/nodejs/node/commit/a1d0aef60e)] - **tools**: update doctool dependencies, migrate to ESM (Michaël Zasso) [#&#8203;38966](https://github.com/nodejs/node/pull/38966)
    
  • [`2a292cf574`](https://github.com/nodejs/node/commit/2a292cf574)] - **tools**: update V8 gypfiles for 9.1 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273)
    
  • [`0c90fd8454`](https://github.com/nodejs/node/commit/0c90fd8454)] - **tools**: avoid crashing CQ when git push fails (Antoine du Hamel) [#&#8203;36861](https://github.com/nodejs/node/pull/36861)
    
  • [`f817c2d3bb`](https://github.com/nodejs/node/commit/f817c2d3bb)] - **tools**: fix typo in commit-queue.sh (bl-ue) [#&#8203;39000](https://github.com/nodejs/node/pull/39000)
    
  • [`be5101eb32`](https://github.com/nodejs/node/commit/be5101eb32)] - **tools**: update ESLint to 7.28.0 (Luigi Pinca) [#&#8203;38955](https://github.com/nodejs/node/pull/38955)
    
  • [`9bf9ddb490`](https://github.com/nodejs/node/commit/9bf9ddb490)] - **tools**: refactor snapshot builder (Joyee Cheung) [#&#8203;38902](https://github.com/nodejs/node/pull/38902)
    
  • [`0706565097`](https://github.com/nodejs/node/commit/0706565097)] - **tools**: bump remark-preset-lint-node to 2.3.0 (Rich Trott) [#&#8203;38910](https://github.com/nodejs/node/pull/38910)
    
  • [`7d35fa7938`](https://github.com/nodejs/node/commit/7d35fa7938)] - **tools**: update gyp-next to v0.9.1 (Jiawen Geng) [#&#8203;38867](https://github.com/nodejs/node/pull/38867)
    
  • [`00c20e621f`](https://github.com/nodejs/node/commit/00c20e621f)] - **tools,doc**: forbid CJS globals in ESM code snippets (Antoine du Hamel) [#&#8203;38889](https://github.com/nodejs/node/pull/38889)
    
  • [`99161b09f6`](https://github.com/nodejs/node/commit/99161b09f6)] - **url,src**: simplify ipv6 logic by using uv_inet_pton (Khaidi Chu) [#&#8203;38842](https://github.com/nodejs/node/pull/38842)
    
  • [`f40725f2a1`](https://github.com/nodejs/node/commit/f40725f2a1)] - **vm**: use missing validator (Voltrex) [#&#8203;38935](https://github.com/nodejs/node/pull/38935)
    
  • [`f959cb3c68`](https://github.com/nodejs/node/commit/f959cb3c68)] - **worker**: do not look up context twice in PostMessage (Anna Henningsen) [#&#8203;38784](https://github.com/nodejs/node/pull/38784)
    
    

v16.3.0

Compare Source

Notable Changes
  • cli:
    • add -C alias for --conditions flag (Guy Bedford) #​38755
  • deps:
    • add workspaces support to npm install commands (Ruy Adorno) #​38750
Commits
  • [`4e58ec4aa6`](https://github.com/nodejs/node/commit/4e58ec4aa6)] - **benchmark**: output JSON-compatible numbers (Michaël Zasso) [#&#8203;38778](https://github.com/nodejs/node/pull/38778)
    
  • [`7a9d0fd5a9`](https://github.com/nodejs/node/commit/7a9d0fd5a9)] - **benchmark**: fix http elapsed time (Antoine du Hamel) [#&#8203;38743](https://github.com/nodejs/node/pull/38743)
    
  • [`a98d631905`](https://github.com/nodejs/node/commit/a98d631905)] - **bootstrap**: include vm and contextify binding into the snapshot (Joyee Cheung) [#&#8203;38677](https://github.com/nodejs/node/pull/38677)
    
  • [`f1628960e1`](https://github.com/nodejs/node/commit/f1628960e1)] - **build**: remove outdated dont-land-on-v6.x label (Michaël Zasso) [#&#8203;38886](https://github.com/nodejs/node/pull/38886)
    
  • [`6986154b30`](https://github.com/nodejs/node/commit/6986154b30)] - **build**: work around bug in MSBuild v16.10.0 (Michaël Zasso) [#&#8203;38873](https://github.com/nodejs/node/pull/38873)
    
  • [`24cca7c5ea`](https://github.com/nodejs/node/commit/24cca7c5ea)] - **build**: add lto build to CI (Jiawen Geng) [#&#8203;38567](https://github.com/nodejs/node/pull/38567)
    
  • [`80c32b7a9a`](https://github.com/nodejs/node/commit/80c32b7a9a)] - **build**: allow LTO with Clang 3.9.1+ (Jesse Chan) [#&#8203;38751](https://github.com/nodejs/node/pull/38751)
    
  • [`e9be2095cf`](https://github.com/nodejs/node/commit/e9be2095cf)] - **build**: replace non-POSIX test -a|o (Issam E. Maghni) [#&#8203;38731](https://github.com/nodejs/node/pull/38731)
    
  • [`717a8b63e1`](https://github.com/nodejs/node/commit/717a8b63e1)] - **child_process**: retain reference to data with advanced serialization (Anna Henningsen) [#&#8203;38728](https://github.com/nodejs/node/pull/38728)
    
  • [`bc8400122c`](https://github.com/nodejs/node/commit/bc8400122c)] - **(SEMVER-MINOR)** **cli**: add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755)
    
  • [`eb7c932a6d`](https://github.com/nodejs/node/commit/eb7c932a6d)] - **debugger**: revise async iterator usage to comply with lint rules (Rich Trott) [#&#8203;38847](https://github.com/nodejs/node/pull/38847)
    
  • [`f1000e0e52`](https://github.com/nodejs/node/commit/f1000e0e52)] - **debugger**: removed unused function argument (Rich Trott) [#&#8203;38850](https://github.com/nodejs/node/pull/38850)
    
  • [`ee1056da60`](https://github.com/nodejs/node/commit/ee1056da60)] - **debugger**: wait for V8 debugger to be enabled (Michaël Zasso) [#&#8203;38811](https://github.com/nodejs/node/pull/38811)
    
  • [`47ad448def`](https://github.com/nodejs/node/commit/47ad448def)] - **deps**: upgrade npm to 7.15.1 (npm team) [#&#8203;38880](https://github.com/nodejs/node/pull/38880)
    
  • [`e8192b5e89`](https://github.com/nodejs/node/commit/e8192b5e89)] - **deps**: upgrade npm to 7.14.0 (Ruy Adorno) [#&#8203;38750](https://github.com/nodejs/node/pull/38750)
    
  • [`15aaf14690`](https://github.com/nodejs/node/commit/15aaf14690)] - **deps**: update llhttp to 6.0.2 (Fedor Indutny) [#&#8203;38665](https://github.com/nodejs/node/pull/38665)
    
  • [`108ffdb68f`](https://github.com/nodejs/node/commit/108ffdb68f)] - **doc**: fixed typo in n-api.md (julianjany) [#&#8203;38822](https://github.com/nodejs/node/pull/38822)
    
  • [`131a6918dd`](https://github.com/nodejs/node/commit/131a6918dd)] - **doc**: use "Long Term Support" in collaborator guide (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841)
    
  • [`4844337cd7`](https://github.com/nodejs/node/commit/4844337cd7)] - **doc**: use "Long Term Support" in technical values doc (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841)
    
  • [`f1e823b679`](https://github.com/nodejs/node/commit/f1e823b679)] - **doc**: use "Long Term Support" in README (Philip) [#&#8203;38839](https://github.com/nodejs/node/pull/38839)
    
  • [`4e11971a76`](https://github.com/nodejs/node/commit/4e11971a76)] - **doc**: fix grammar in `fs.md` (yotamselementor) [#&#8203;38818](https://github.com/nodejs/node/pull/38818)
    
  • [`e2f28c80d1`](https://github.com/nodejs/node/commit/e2f28c80d1)] - **doc**: fixup code sample in http.md (TodorTotev) [#&#8203;38776](https://github.com/nodejs/node/pull/38776)
    
  • [`96fa387082`](https://github.com/nodejs/node/commit/96fa387082)] - **doc**: document null target pattern (Guy Bedford) [#&#8203;38724](https://github.com/nodejs/node/pull/38724)
    
  • [`5553be3f4e`](https://github.com/nodejs/node/commit/5553be3f4e)] - **doc**: update code examples for `node:url` module (fisker Cheung) [#&#8203;38645](https://github.com/nodejs/node/pull/38645)
    
  • [`0c063a1258`](https://github.com/nodejs/node/commit/0c063a1258)] - **doc,url**: clarify domainTo\* when built without ICU (Darshan Sen) [#&#8203;38789](https://github.com/nodejs/node/pull/38789)
    
  • [`2054efa02c`](https://github.com/nodejs/node/commit/2054efa02c)] - **events**: refactor to use primordials in lib/events (Akhil Marsonya) [#&#8203;38117](https://github.com/nodejs/node/pull/38117)
    
  • [`4884991a12`](https://github.com/nodejs/node/commit/4884991a12)] - **lib**: include url in bootstrap snapshot and remove unnecessary lazy-loads (Joyee Cheung) [#&#8203;38826](https://github.com/nodejs/node/pull/38826)
    
  • [`08ad2f6c18`](https://github.com/nodejs/node/commit/08ad2f6c18)] - **lib**: fix typos (bl-ue) [#&#8203;38846](https://github.com/nodejs/node/pull/38846)
    
  • [`7d3a8cb854`](https://github.com/nodejs/node/commit/7d3a8cb854)] - **lib**: remove unnecessary lazy loads (Joyee Cheung) [#&#8203;38737](https://github.com/nodejs/node/pull/38737)
    
  • [`5d9442a024`](https://github.com/nodejs/node/commit/5d9442a024)] - **lib**: load internal/fs/watchers and internal/fs/read_file_context early (Joyee Cheung) [#&#8203;38737](https://github.com/nodejs/node/pull/38737)
    
  • [`2268d1cf4c`](https://github.com/nodejs/node/commit/2268d1cf4c)] - **lib**: refactor to reuse validators (Rongjian Zhang) [#&#8203;38608](https://github.com/nodejs/node/pull/38608)
    
  • [`496f7eae92`](https://github.com/nodejs/node/commit/496f7eae92)] - **node-api**: fix shutdown crashes (Michael Dawson) [#&#8203;38492](https://github.com/nodejs/node/pull/38492)
    
  • [`e1195312b9`](https://github.com/nodejs/node/commit/e1195312b9)] - **(SEMVER-MINOR)** **os**: add os.devNull (Luigi Pinca) [#&#8203;38569](https://github.com/nodejs/node/pull/38569)
    
  • [`7ba305552f`](https://github.com/nodejs/node/commit/7ba305552f)] - **src**: set PromiseHooks by Environment (Bryan English) [#&#8203;38821](https://github.com/nodejs/node/pull/38821)
    
  • [`74205b3542`](https://github.com/nodejs/node/commit/74205b3542)] - **src**: replace `auto`s in node_api.cc (Khaidi Chu) [#&#8203;38852](https://github.com/nodejs/node/pull/38852)
    
  • [`120849f609`](https://github.com/nodejs/node/commit/120849f609)] - **src**: cache necessary isolate & context in api/\* (Khaidi Chu) [#&#8203;38366](https://github.com/nodejs/node/pull/38366)
    
  • [`f25cd4f377`](https://github.com/nodejs/node/commit/f25cd4f377)] - **src**: fix typos (bl-ue) [#&#8203;38845](https://github.com/nodejs/node/pull/38845)
    
  • [`a1b0e64187`](https://github.com/nodejs/node/commit/a1b0e64187)] - **src**: support fs_event_wrap binding in the snapshot (Joyee Cheung) [#&#8203;38737](https://github.com/nodejs/node/pull/38737)
    
  • [`36d4a4331d`](https://github.com/nodejs/node/commit/36d4a4331d)] - **src**: remove redundant v8 namespaces in `env.cc` (Juan José Arboleda) [#&#8203;38792](https://github.com/nodejs/node/pull/38792)
    
  • [`3e6b3b22c5`](https://github.com/nodejs/node/commit/3e6b3b22c5)] - **src**: use SPrintF in ProcessEmitWarning (Darshan Sen) [#&#8203;38758](https://github.com/nodejs/node/pull/38758)
    
  • [`9ca5c0e29e`](https://github.com/nodejs/node/commit/9ca5c0e29e)] - **src**: fix compiler warnings in node_buffer.cc (Darshan Sen) [#&#8203;38722](https://github.com/nodejs/node/pull/38722)
    
  • [`3741595289`](https://github.com/nodejs/node/commit/3741595289)] - **src**: set CONF_MFLAGS_DEFAULT_SECTION for OpenSSL 3 (Daniel Bevenius) [#&#8203;38732](https://github.com/nodejs/node/pull/38732)
    
  • [`4e3353223e`](https://github.com/nodejs/node/commit/4e3353223e)] - **src**: use HandleScope in StreamReq::Done() (Darshan Sen) [#&#8203;38720](https://github.com/nodejs/node/pull/38720)
    
  • [`c576311954`](https://github.com/nodejs/node/commit/c576311954)] - **src**: remove commented code in `node_file.cc` (Juan José Arboleda) [#&#8203;38693](https://github.com/nodejs/node/pull/38693)
    
  • [`61c95f08b3`](https://github.com/nodejs/node/commit/61c95f08b3)] - **src**: write named pipe info in diagnostic report (legendecas) [#&#8203;38637](https://github.com/nodejs/node/pull/38637)
    
  • [`ba96f14233`](https://github.com/nodejs/node/commit/ba96f14233)] - **src**: remove unused `iostream` library (Juan José Arboleda) [#&#8203;38694](https://github.com/nodejs/node/pull/38694)
    
  • [`f5dd85bbe6`](https://github.com/nodejs/node/commit/f5dd85bbe6)] - **src**: remove more extra semis from member fns (Shelley Vohr) [#&#8203;38744](https://github.com/nodejs/node/pull/38744)
    
  • [`a47fd67154`](https://github.com/nodejs/node/commit/a47fd67154)] - **src**: replace `auto`s in node_contextify.cc (Khaidi Chu) [#&#8203;38644](https://github.com/nodejs/node/pull/38644)
    
  • [`9054d25acc`](https://github.com/nodejs/node/commit/9054d25acc)] - **stream**: add a non-destroying iterator to Readable (Nitzan Uziely) [#&#8203;38526](https://github.com/nodejs/node/pull/38526)
    
  • [`4131f94ca8`](https://github.com/nodejs/node/commit/4131f94ca8)] - **stream**: allow empty string as source of pipeline (Qingyu Deng) [#&#8203;38723](https://github.com/nodejs/node/pull/38723)
    
  • [`0aa3cb5c0e`](https://github.com/nodejs/node/commit/0aa3cb5c0e)] - **test**: improve coverage of fs internal utils (Rongjian Zhang) [#&#8203;38746](https://github.com/nodejs/node/pull/38746)
    
  • [`48ebebd2a8`](https://github.com/nodejs/node/commit/48ebebd2a8)] - **test**: remove unnecessary `--pending-deprecation` flag (Antoine du Hamel) [#&#8203;38819](https://github.com/nodejs/node/pull/38819)
    
  • [`3c492baa51`](https://github.com/nodejs/node/commit/3c492baa51)] - **test**: fix writefile with fd (Nitzan Uziely) [#&#8203;38820](https://github.com/nodejs/node/pull/38820)
    
  • [`e91d14c57c`](https://github.com/nodejs/node/commit/e91d14c57c)] - **test**: simplify test-path-resolve.js (himself65) [#&#8203;38671](https://github.com/nodejs/node/pull/38671)
    
  • [`1f5baaa2e7`](https://github.com/nodejs/node/commit/1f5baaa2e7)] - **test**: improve coverage for `question` in readline (Qingyu Deng) [#&#8203;38799](https://github.com/nodejs/node/pull/38799)
    
  • [`6d86f8afd5`](https://github.com/nodejs/node/commit/6d86f8afd5)] - **test**: os, replace custom flatten method with built-in Array.flat (Wael Almattar) [#&#8203;38770](https://github.com/nodejs/node/pull/38770)
    
  • [`c7a58578dc`](https://github.com/nodejs/node/commit/c7a58578dc)] - **test**: set locale for datetime-change-notify test (ZiJian Liu) [#&#8203;38741](https://github.com/nodejs/node/pull/38741)
    
  • [`695e982a42`](https://github.com/nodejs/node/commit/695e982a42)] - **test**: improve coverage of lib/fs.js (Rongjian Zhang) [#&#8203;38604](https://github.com/nodejs/node/pull/38604)
    
  • [`11ac9c6fcc`](https://github.com/nodejs/node/commit/11ac9c6fcc)] - **test**: improve coverage of lib/\_http_outgoing.js (Rongjian Zhang) [#&#8203;38734](https://github.com/nodejs/node/pull/38734)
    
  • [`6da4aa30c6`](https://github.com/nodejs/node/commit/6da4aa30c6)] - **test**: give js-native-api tests consistent names (Gabriel Schulhof) [#&#8203;38692](https://github.com/nodejs/node/pull/38692)
    
  • [`929e8df1c0`](https://github.com/nodejs/node/commit/929e8df1c0)] - **test**: improve coverage of stream.Readable (Rongjian Zhang) [#&#8203;38702](https://github.com/nodejs/node/pull/38702)
    
  • [`36ffd58105`](https://github.com/nodejs/node/commit/36ffd58105)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851)
    
  • [`6b8c712247`](https://github.com/nodejs/node/commit/6b8c712247)] - **tools**: bump cpplint to 1.5.5 (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851)
    
  • [`be8d934679`](https://github.com/nodejs/node/commit/be8d934679)] - **tools**: remove exception for Node.js 8 and earlier (Rich Trott) [#&#8203;38840](https://github.com/nodejs/node/pull/38840)
    
  • [`c0bde0cd4a`](https://github.com/nodejs/node/commit/c0bde0cd4a)] - **tools**: update setup-node to setup-node@v2 (pengjie) [#&#8203;38825](https://github.com/nodejs/node/pull/38825)
    
  • [`21ce3af904`](https://github.com/nodejs/node/commit/21ce3af904)] - **tools**: update ESLint to 7.27.0 (Luigi Pinca) [#&#8203;38764](https://github.com/nodejs/node/pull/38764)
    
  • [`ab44106555`](https://github.com/nodejs/node/commit/ab44106555)] - **tools**: use PrintCaughtException in the snapshot builder (Joyee Cheung) [#&#8203;38745](https://github.com/nodejs/node/pull/38745)
    
  • [`30c0020885`](https://github.com/nodejs/node/commit/30c0020885)] - **typings**: add JSDoc typings for https (Voltrex) [#&#8203;38589](https://github.com/nodejs/node/pull/38589)
    
  • [`7fb809b475`](https://github.com/nodejs/node/commit/7fb809b475)] - **typings**: add JSDoc typings for events (Voltrex) [#&#8203;38712](https://github.com/nodejs/node/pull/38712)
    
  • [`7773d58f1a`](https://github.com/nodejs/node/commit/7773d58f1a)] - **url**: exit early when : delimiter is seen in hostname (Timothy Gu) [#&#8203;38742](https://github.com/nodejs/node/pull/38742)
    
  • [`a2da9e254c`](https://github.com/nodejs/node/commit/a2da9e254c)] - **worker**: use rwlock for sibling group (Anna Henningsen) [#&#8203;38783](https://github.com/nodejs/node/pull/38783)
    
  • [`18f3ba3674`](https://github.com/nodejs/node/commit/18f3ba3674)] - **worker**: leave TODO comments for using std::variant when possible (Anna Henningsen) [#&#8203;38788](https://github.com/nodejs/node/pull/38788)
    
    

v16.2.0

Compare Source

Notable Changes
  • [`36b948560c`](https://github.com/nodejs/node/commit/36b948560c)] - **(SEMVER-MINOR)** **async_hooks**: use new v8::Context PromiseHook API (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`c0deeeacb2`](https://github.com/nodejs/node/commit/c0deeeacb2)] - **lib**: support setting process.env.TZ on windows (James M Snell) [#&#8203;38642](https://github.com/nodejs/node/pull/38642)
    
  • [`4c4902748c`](https://github.com/nodejs/node/commit/4c4902748c)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587)
    
  • [`c182198c44`](https://github.com/nodejs/node/commit/c182198c44)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659)
    
  • [`fbf02e3198`](https://github.com/nodejs/node/commit/fbf02e3198)] - **(SEMVER-MINOR)** **util**: add util.types.isKeyObject and util.types.isCryptoKey (Filip Skokan) [#&#8203;38619](https://github.com/nodejs/node/pull/38619)
    
    
Commits
  • [`36b948560c`](https://github.com/nodejs/node/commit/36b948560c)] - **(SEMVER-MINOR)** **async_hooks**: use new v8::Context PromiseHook API (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`dcae03203e`](https://github.com/nodejs/node/commit/dcae03203e)] - **buffer**: remove TODOs in `atob` / `btoa` (Khaidi Chu) [#&#8203;38548](https://github.com/nodejs/node/pull/38548)
    
  • [`48b557e904`](https://github.com/nodejs/node/commit/48b557e904)] - **buffer**: remove unreachable code (Rongjian Zhang) [#&#8203;38537](https://github.com/nodejs/node/pull/38537)
    
  • [`b0df28dea5`](https://github.com/nodejs/node/commit/b0df28dea5)] - **build**: add workaround for V8 builds (Richard Lau) [#&#8203;38632](https://github.com/nodejs/node/pull/38632)
    
  • [`3bb12db255`](https://github.com/nodejs/node/commit/3bb12db255)] - **build**: remove dependency on `distutils.spawn` (Richard Lau) [#&#8203;38600](https://github.com/nodejs/node/pull/38600)
    
  • [`10aaf30da1`](https://github.com/nodejs/node/commit/10aaf30da1)] - **build**: add missing torque output sources (Richard Lau) [#&#8203;38576](https://github.com/nodejs/node/pull/38576)
    
  • [`03b4a3a5bf`](https://github.com/nodejs/node/commit/03b4a3a5bf)] - **build**: compile with -std=gnu++14 (Darshan Sen) [#&#8203;38504](https://github.com/nodejs/node/pull/38504)
    
  • [`4296591154`](https://github.com/nodejs/node/commit/4296591154)] - **build,src,test,doc**: enable FIPS for OpenSSL 3.0 (Daniel Bevenius) [#&#8203;38633](https://github.com/nodejs/node/pull/38633)
    
  • [`36bb8daba5`](https://github.com/nodejs/node/commit/36bb8daba5)] - **crypto**: forbid NODE-ED25519 and NODE-ED448 "raw" key export (Filip Skokan) [#&#8203;38668](https://github.com/nodejs/node/pull/38668)
    
  • [`36bb7243ff`](https://github.com/nodejs/node/commit/36bb7243ff)] - **debugger**: refactor `inspect_repl` to use primordials (Antoine du Hamel) [#&#8203;38551](https://github.com/nodejs/node/pull/38551)
    
  • [`16a6c8d5a6`](https://github.com/nodejs/node/commit/16a6c8d5a6)] - **debugger**: refactor to use internal modules (Antoine du Hamel) [#&#8203;38550](https://github.com/nodejs/node/pull/38550)
    
  • [`11dd9a6838`](https://github.com/nodejs/node/commit/11dd9a6838)] - **debugger**: disable only the lint rules required by current file state (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529)
    
  • [`e79f540fa0`](https://github.com/nodejs/node/commit/e79f540fa0)] - **debugger**: avoid non-ASCII char in code file (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529)
    
  • [`d9867b9358`](https://github.com/nodejs/node/commit/d9867b9358)] - **debugger**: wrap lines longer than 80 chars (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529)
    
  • [`352a600142`](https://github.com/nodejs/node/commit/352a600142)] - **debugger**: rename inspector-cli test module to debugger (Rich Trott) [#&#8203;38530](https://github.com/nodejs/node/pull/38530)
    
  • [`608d0e11f3`](https://github.com/nodejs/node/commit/608d0e11f3)] - **deps**: upgrade npm to 7.13.0 (Ruy Adorno) [#&#8203;38682](https://github.com/nodejs/node/pull/38682)
    
  • [`5c71f49d3f`](https://github.com/nodejs/node/commit/5c71f49d3f)] - **deps**: upgrade npm to 7.12.1 (Ruy Adorno) [#&#8203;38628](https://github.com/nodejs/node/pull/38628)
    
  • [`ec2dbfb200`](https://github.com/nodejs/node/commit/ec2dbfb200)] - **deps**: patch V8 to 9.0.257.25 (Michaël Zasso) [#&#8203;38556](https://github.com/nodejs/node/pull/38556)
    
  • [`ab298723b5`](https://github.com/nodejs/node/commit/ab298723b5)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`fa4cb17`](https://github.com/nodejs/node/commit/fa4cb172cde2) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`a84e9b3e7d`](https://github.com/nodejs/node/commit/a84e9b3e7d)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`4c07451`](https://github.com/nodejs/node/commit/4c074516397b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`043b1aaa3f`](https://github.com/nodejs/node/commit/043b1aaa3f)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`5f44131`](https://github.com/nodejs/node/commit/5f4413194480) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`1a104bac74`](https://github.com/nodejs/node/commit/1a104bac74)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`272445f`](https://github.com/nodejs/node/commit/272445f10927) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`827ae05538`](https://github.com/nodejs/node/commit/827ae05538)] - **(SEMVER-MINOR)** **deps**: V8: backport [`c0fceaa`](https://github.com/nodejs/node/commit/c0fceaa0669b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`f31a6114a4`](https://github.com/nodejs/node/commit/f31a6114a4)] - **deps**: V8: cherry-pick [`530080c`](https://github.com/nodejs/node/commit/530080c44af2) (Milad Fa) [#&#8203;38489](https://github.com/nodejs/node/pull/38489)
    
  • [`4001dd28ba`](https://github.com/nodejs/node/commit/4001dd28ba)] - **dgram**: extract cluster lazy loading method to make it testable (Rongjian Zhang) [#&#8203;38563](https://github.com/nodejs/node/pull/38563)
    
  • [`a0dc194e31`](https://github.com/nodejs/node/commit/a0dc194e31)] - **doc**: document buffer.kStringMaxLength (Tobias Nießen) [#&#8203;38688](https://github.com/nodejs/node/pull/38688)
    
  • [`8590c151cd`](https://github.com/nodejs/node/commit/8590c151cd)] - **doc**: update abort signal in fs promise api example (Moritz Kneilmann) [#&#8203;38669](https://github.com/nodejs/node/pull/38669)
    
  • [`0100a3b026`](https://github.com/nodejs/node/commit/0100a3b026)] - **doc**: add documentation for fs.WriteStream.close() (Hitesh Sharma) [#&#8203;38610](https://github.com/nodejs/node/pull/38610)
    
  • [`5c38a554ec`](https://github.com/nodejs/node/commit/5c38a554ec)] - **doc**: clarify synchronous blocking of Worker stdio (James M Snell) [#&#8203;38658](https://github.com/nodejs/node/pull/38658)
    
  • [`1765e32c45`](https://github.com/nodejs/node/commit/1765e32c45)] - **doc**: update contact info (Gabriel Schulhof) [#&#8203;38689](https://github.com/nodejs/node/pull/38689)
    
  • [`c4b161cb89`](https://github.com/nodejs/node/commit/c4b161cb89)] - **doc**: change color of doctag on night mode (Qingyu Deng) [#&#8203;38652](https://github.com/nodejs/node/pull/38652)
    
  • [`6620a3182e`](https://github.com/nodejs/node/commit/6620a3182e)] - **doc**: add ESM code examples in url.md (Antoine du Hamel) [#&#8203;38651](https://github.com/nodejs/node/pull/38651)
    
  • [`d3de0ef5d4`](https://github.com/nodejs/node/commit/d3de0ef5d4)] - **doc**: fix fs.openSync() signature (Luigi Pinca) [#&#8203;38591](https://github.com/nodejs/node/pull/38591)
    
  • [`56bf6c1bcd`](https://github.com/nodejs/node/commit/56bf6c1bcd)] - **doc**: typo stats() should be stat(); clarity (Bryan Field) [#&#8203;38541](https://github.com/nodejs/node/pull/38541)
    
  • [`1d9fd49f41`](https://github.com/nodejs/node/commit/1d9fd49f41)] - **doc**: fix code example in ecdh.setPublicKey() (Jordan Baczuk) [#&#8203;38542](https://github.com/nodejs/node/pull/38542)
    
  • [`4c70e42928`](https://github.com/nodejs/node/commit/4c70e42928)] - **doc**: use `HEAD` instead of `master` for links (Antoine du Hamel) [#&#8203;38518](https://github.com/nodejs/node/pull/38518)
    
  • [`ae9128ec61`](https://github.com/nodejs/node/commit/ae9128ec61)] - **doc**: clarify DiffieHellmanGroup class docs (Nitzan Uziely) [#&#8203;38363](https://github.com/nodejs/node/pull/38363)
    
  • [`e59131d97f`](https://github.com/nodejs/node/commit/e59131d97f)] - **doc**: fix broken AHAFS link in fs doc (Rich Trott) [#&#8203;38534](https://github.com/nodejs/node/pull/38534)
    
  • [`e9d4c8587a`](https://github.com/nodejs/node/commit/e9d4c8587a)] - **doc**: use AIX instead of Aix in fs.md (Rich Trott) [#&#8203;38535](https://github.com/nodejs/node/pull/38535)
    
  • [`e0118f347a`](https://github.com/nodejs/node/commit/e0118f347a)] - **doc**: remove extraneous dash from flag prefix (Rodolfo Carvalho) [#&#8203;38532](https://github.com/nodejs/node/pull/38532)
    
  • [`9e10e1a76f`](https://github.com/nodejs/node/commit/9e10e1a76f)] - **doc**: corrected workload name as per the latest VS Installer (MrJithil) [#&#8203;38500](https://github.com/nodejs/node/pull/38500)
    
  • [`38644d6f96`](https://github.com/nodejs/node/commit/38644d6f96)] - **doc**: use sentence case in headers in src/crypto/README.md (Rich Trott) [#&#8203;38524](https://github.com/nodejs/node/pull/38524)
    
  • [`347b9f2304`](https://github.com/nodejs/node/commit/347b9f2304)] - **errors**: remove input from ERR_INVALID_URL message (moander) [#&#8203;38614](https://github.com/nodejs/node/pull/38614)
    
  • [`5b40e2f596`](https://github.com/nodejs/node/commit/5b40e2f596)] - **events**: use nullish coalencing operator (Voltrex) [#&#8203;38328](https://github.com/nodejs/node/pull/38328)
    
  • [`3a5856cbc3`](https://github.com/nodejs/node/commit/3a5856cbc3)] - **fs**: fix async iterator partial writes (Nitzan Uziely) [#&#8203;38615](https://github.com/nodejs/node/pull/38615)
    
  • [`e8761186a5`](https://github.com/nodejs/node/commit/e8761186a5)] - **fs**: fix error when writing buffers > INT32\_MAX (Zach Bjornson) [#&#8203;38546](https://github.com/nodejs/node/pull/38546)
    
  • [`47080bcfc8`](https://github.com/nodejs/node/commit/47080bcfc8)] - **fs**: use `assert` in `fsCall` argument checking (Rongjian Zhang) [#&#8203;38519](https://github.com/nodejs/node/pull/38519)
    
  • [`3d8b8e133f`](https://github.com/nodejs/node/commit/3d8b8e133f)] - **http**: refactor to remove redundant argument of \_deferToConnect (Rongjian Zhang) [#&#8203;38598](https://github.com/nodejs/node/pull/38598)
    
  • [`c0deeeacb2`](https://github.com/nodejs/node/commit/c0deeeacb2)] - **lib**: support setting process.env.TZ on windows (James M Snell) [#&#8203;38642](https://github.com/nodejs/node/pull/38642)
    
  • [`cf4dc80d5f`](https://github.com/nodejs/node/commit/cf4dc80d5f)] - **lib**: make `IterableWeakMap` safe to iterate (Antoine du Hamel) [#&#8203;38523](https://github.com/nodejs/node/pull/38523)
    
  • [`90b640efb1`](https://github.com/nodejs/node/commit/90b640efb1)] - **meta**: add v8 team (Jiawen Geng) [#&#8203;38566](https://github.com/nodejs/node/pull/38566)
    
  • [`4c4902748c`](https://github.com/nodejs/node/commit/4c4902748c)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587)
    
  • [`14a2a00cda`](https://github.com/nodejs/node/commit/14a2a00cda)] - **node-api**: faster threadsafe_function (Fedor Indutny) [#&#8203;38506](https://github.com/nodejs/node/pull/38506)
    
  • [`be4b3a4164`](https://github.com/nodejs/node/commit/be4b3a4164)] - **path**: inline conditions (Voltrex) [#&#8203;38613](https://github.com/nodejs/node/pull/38613)
    
  • [`c182198c44`](https://github.com/nodejs/node/commit/c182198c44)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659)
    
  • [`e2b8454582`](https://github.com/nodejs/node/commit/e2b8454582)] - **repl**: fix Ctrl+C on top level await (Antoine du Hamel) [#&#8203;38656](https://github.com/nodejs/node/pull/38656)
    
  • [`718ad105e5`](https://github.com/nodejs/node/commit/718ad105e5)] - **src**: fix fatal errors when a current isolate not exist (legendecas) [#&#8203;38624](https://github.com/nodejs/node/pull/38624)
    
  • [`524a9d6fcd`](https://github.com/nodejs/node/commit/524a9d6fcd)] - **src**: update cares_wrap OpenBSD defines (Anna Henningsen) [#&#8203;38670](https://github.com/nodejs/node/pull/38670)
    
  • [`6b409cf664`](https://github.com/nodejs/node/commit/6b409cf664)] - **src**: remove extra semi after member fn (Shelley Vohr) [#&#8203;38686](https://github.com/nodejs/node/pull/38686)
    
  • [`bfec80fd66`](https://github.com/nodejs/node/commit/bfec80fd66)] - **src**: make workers messaging more resilient (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510)
    
  • [`ff1b4322f5`](https://github.com/nodejs/node/commit/ff1b4322f5)] - **test**: refactor `test-readline-interface` to be shorter (Juan José Arboleda) [#&#8203;38691](https://github.com/nodejs/node/pull/38691)
    
  • [`8eea317227`](https://github.com/nodejs/node/commit/8eea317227)] - **test**: stream.finished detects a destroyed IncomingMessage (Nitzan Uziely) [#&#8203;38661](https://github.com/nodejs/node/pull/38661)
    
  • [`5b25fbe266`](https://github.com/nodejs/node/commit/5b25fbe266)] - **test**: set common.bits to 64 for riscv64 (Andreas Schwab) [#&#8203;38626](https://github.com/nodejs/node/pull/38626)
    
  • [`5a0b52120a`](https://github.com/nodejs/node/commit/5a0b52120a)] - **test**: improve coverage of lib/\_http_client.js (Rongjian Zhang) [#&#8203;38599](https://github.com/nodejs/node/pull/38599)
    
  • [`3d0fad3840`](https://github.com/nodejs/node/commit/3d0fad3840)] - **test**: improve coverage of lib/os.js (Rongjian Zhang) [#&#8203;38653](https://github.com/nodejs/node/pull/38653)
    
  • [`16b2fb4e0c`](https://github.com/nodejs/node/commit/16b2fb4e0c)] - **test**: increase coverage for repl (ZiJian Liu) [#&#8203;38559](https://github.com/nodejs/node/pull/38559)
    
  • [`8f78c6646e`](https://github.com/nodejs/node/commit/8f78c6646e)] - **test**: call functions internally (Voltrex) [#&#8203;38560](https://github.com/nodejs/node/pull/38560)
    
  • [`178fe215a4`](https://github.com/nodejs/node/commit/178fe215a4)] - **test**: increase coverage for Histogram (ZiJian Liu) [#&#8203;38555](https://github.com/nodejs/node/pull/38555)
    
  • [`95db7d5afc`](https://github.com/nodejs/node/commit/95db7d5afc)] - **test**: improve fs coverage (Rongjian Zhang) [#&#8203;38517](https://github.com/nodejs/node/pull/38517)
    
  • [`f2f768f261`](https://github.com/nodejs/node/commit/f2f768f261)] - **test**: complete coverage of querystring (Rongjian Zhang) [#&#8203;38520](https://github.com/nodejs/node/pull/38520)
    
  • [`5b44107ae9`](https://github.com/nodejs/node/commit/5b44107ae9)] - **test**: increase coverage for AbortController (ZiJian Liu) [#&#8203;38514](https://github.com/nodejs/node/pull/38514)
    
  • [`662265074c`](https://github.com/nodejs/node/commit/662265074c)] - **test**: increase coverage for Blob (ZiJian Liu) [#&#8203;38515](https://github.com/nodejs/node/pull/38515)
    
  • [`89e1daccf3`](https://github.com/nodejs/node/commit/89e1daccf3)] - **test**: run message and pseudo-tty tests in parallel (Richard Lau) [#&#8203;38502](https://github.com/nodejs/node/pull/38502)
    
  • [`727c2bcc24`](https://github.com/nodejs/node/commit/727c2bcc24)] - **test**: move test-net-connect-econnrefused from pummel to sequential (Rich Trott) [#&#8203;38462](https://github.com/nodejs/node/pull/38462)
    
  • [`e64ebac2da`](https://github.com/nodejs/node/commit/e64ebac2da)] - **test**: fix flaky inspector-cli tests when breakpionts are restored (Rich Trott) [#&#8203;38431](https://github.com/nodejs/node/pull/38431)
    
  • [`b51b4feece`](https://github.com/nodejs/node/commit/b51b4feece)] - **test**: skip tests for openssl-3.0.0-alpha15 (Daniel Bevenius) [#&#8203;38451](https://github.com/nodejs/node/pull/38451)
    
  • [`db5ee23edf`](https://github.com/nodejs/node/commit/db5ee23edf)] - **test**: update OpenSSL 3.0.0-alpha15 error messages (Daniel Bevenius) [#&#8203;38451](https://github.com/nodejs/node/pull/38451)
    
  • [`24472d9e0c`](https://github.com/nodejs/node/commit/24472d9e0c)] - **test,repl**: fix tests when inspector is disabled (Antoine du Hamel) [#&#8203;38564](https://github.com/nodejs/node/pull/38564)
    
  • [`267a84f5e1`](https://github.com/nodejs/node/commit/267a84f5e1)] - **tools**: remove redundant v8 config (Jiawen Geng) [#&#8203;38565](https://github.com/nodejs/node/pull/38565)
    
  • [`a028805f1b`](https://github.com/nodejs/node/commit/a028805f1b)] - **tools**: update ESLint to 7.26.0 (Colin Ihrig) [#&#8203;38605](https://github.com/nodejs/node/pull/38605)
    
  • [`ec8ab22ce6`](https://github.com/nodejs/node/commit/ec8ab22ce6)] - **(SEMVER-MINOR)** **tools**: add `Worker` to type-parser (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659)
    
  • [`151488539b`](https://github.com/nodejs/node/commit/151488539b)] - **tools**: make GH Actions workflows work if default branch is not master (Antoine du Hamel) [#&#8203;38516](https://github.com/nodejs/node/pull/38516)
    
  • [`c0f0c9a92d`](https://github.com/nodejs/node/commit/c0f0c9a92d)] - **typings**: add JSDoc typings for readline (Voltrex) [#&#8203;38253](https://github.com/nodejs/node/pull/38253)
    
  • [`fbf02e3198`](https://github.com/nodejs/node/commit/fbf02e3198)] - **(SEMVER-MINOR)** **util**: add util.types.isKeyObject and util.types.isCryptoKey (Filip Skokan) [#&#8203;38619](https://github.com/nodejs/node/pull/38619)
    
  • [`070ee4bb94`](https://github.com/nodejs/node/commit/070ee4bb94)] - ***Revert*** "**worker**: remove `ERR_CLOSED_MESSAGE_PORT`" (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510)
    
    

v16.1.0

Compare Source

Notable Changes
  • [`8a90f55a05`](https://github.com/nodejs/node/commit/8a90f55a05)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287)
    
    
Commits
  • [`28e16488cf`](https://github.com/nodejs/node/commit/28e16488cf)] - **async_hooks,doc**: replace process.stdout.fd with 1 (Darshan Sen) [#&#8203;38382](https://github.com/nodejs/node/pull/38382)
    
  • [`cbab7ec6e5`](https://github.com/nodejs/node/commit/cbab7ec6e5)] - **benchmark**: avoid using `console.log()` (Antoine du Hamel) [#&#8203;38370](https://github.com/nodejs/node/pull/38370)
    
  • [`ba15b20062`](https://github.com/nodejs/node/commit/ba15b20062)] - **benchmark**: use `process.hrtime.bigint()` (Antoine du Hamel) [#&#8203;38369](https://github.com/nodejs/node/pull/38369)
    
  • [`bc6e719884`](https://github.com/nodejs/node/commit/bc6e719884)] - **bootstrap**: freeze more intrinsics (Antoine du Hamel) [#&#8203;38217](https://github.com/nodejs/node/pull/38217)
    
  • [`29faf0f12e`](https://github.com/nodejs/node/commit/29faf0f12e)] - **build**: fix label-pr workflow (Michaël Zasso) [#&#8203;38399](https://github.com/nodejs/node/pull/38399)
    
  • [`b5d669a6ea`](https://github.com/nodejs/node/commit/b5d669a6ea)] - **build**: label PRs with GitHub Action instead of nodejs-github-bot (Phillip Johnsen) [#&#8203;38301](https://github.com/nodejs/node/pull/38301)
    
  • [`195f679331`](https://github.com/nodejs/node/commit/195f679331)] - **crypto**: don't crash with some selfsigned certs (Nils Dralle) [#&#8203;37990](https://github.com/nodejs/node/pull/37990)
    
  • [`4b073b0beb`](https://github.com/nodejs/node/commit/4b073b0beb)] - **crypto**: fix generateKeyPair type checks (Nitzan Uziely) [#&#8203;38364](https://github.com/nodejs/node/pull/38364)
    
  • [`c1d9b5b386`](https://github.com/nodejs/node/commit/c1d9b5b386)] - **crypto**: fix scrypt keylen validation (Antoine du Hamel) [#&#8203;38385](https://github.com/nodejs/node/pull/38385)
    
  • [`7354479ad5`](https://github.com/nodejs/node/commit/7354479ad5)] - **crypto**: fix DiffieHellman `generator` validation (eladkeyshawn) [#&#8203;38311](https://github.com/nodejs/node/pull/38311)
    
  • [`0e446d6048`](https://github.com/nodejs/node/commit/0e446d6048)] - **debugger**: enable linter on `internal/inspector/inspect_client` (Antoine du Hamel) [#&#8203;38417](https://github.com/nodejs/node/pull/38417)
    
  • [`9f0e80aa4d`](https://github.com/nodejs/node/commit/9f0e80aa4d)] - **debugger**: refactor `internal/inspector/_inspect` to use more primordials (Antoine du Hamel) [#&#8203;38406](https://github.com/nodejs/node/pull/38406)
    
  • [`a0c566f85a`](https://github.com/nodejs/node/commit/a0c566f85a)] - **debugger**: apply automatic lint fixes for inspect_repl.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411)
    
  • [`b884ea739b`](https://github.com/nodejs/node/commit/b884ea739b)] - **debugger**: apply automatic lint fixes for \_inspect.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411)
    
  • [`f946aa0360`](https://github.com/nodejs/node/commit/f946aa0360)] - **debugger**: remove unused function argument (Rich Trott) [#&#8203;38400](https://github.com/nodejs/node/pull/38400)
    
  • [`203a9689a3`](https://github.com/nodejs/node/commit/203a9689a3)] - **debugger**: align message with Node.js standard (Rich Trott) [#&#8203;38400](https://github.com/nodejs/node/pull/38400)
    
  • [`ef617dcbb0`](https://github.com/nodejs/node/commit/ef617dcbb0)] - **debugger**: add usage example for `--port` (Rafael Gonzaga) [#&#8203;38400](https://github.com/nodejs/node/pull/38400)
    
  • [`37b5ce2d5a`](https://github.com/nodejs/node/commit/37b5ce2d5a)] - **debugger**: fix race condition/deadlock on initialization (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`2a6203d155`](https://github.com/nodejs/node/commit/2a6203d155)] - **debugger**: replace internal use of deprecated API (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`6fff9fff97`](https://github.com/nodejs/node/commit/6fff9fff97)] - **debugger**: allow longer time to connect (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`def85daace`](https://github.com/nodejs/node/commit/def85daace)] - **debugger**: accommodate line chunking in Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`07361e6b77`](https://github.com/nodejs/node/commit/07361e6b77)] - **debugger**: fix inspect restart on Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`d65615e119`](https://github.com/nodejs/node/commit/d65615e119)] - **debugger**: remove unused code (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`62b03bc4f6`](https://github.com/nodejs/node/commit/62b03bc4f6)] - **debugger**: move node-inspect to internal library (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`e3b75cb5aa`](https://github.com/nodejs/node/commit/e3b75cb5aa)] - **deps**: V8: cherry-pick [`fd75c97`](https://github.com/nodejs/node/commit/fd75c97d3f56) (Michaël Zasso) [#&#8203;38455](https://github.com/nodejs/node/pull/38455)
    
  • [`aabddfbeb5`](https://github.com/nodejs/node/commit/aabddfbeb5)] - **deps**: upgrade npm to 7.11.2 (Ruy Adorno) [#&#8203;38475](https://github.com/nodejs/node/pull/38475)
    
  • [`7b9fb92d51`](https://github.com/nodejs/node/commit/7b9fb92d51)] - **deps**: update to cjs-module-lexer@1.2.1 (Guy Bedford) [#&#8203;38450](https://github.com/nodejs/node/pull/38450)
    
  • [`47626c52a3`](https://github.com/nodejs/node/commit/47626c52a3)] - **deps**: patch V8 to 9.0.257.24 (Michaël Zasso) [#&#8203;38423](https://github.com/nodejs/node/pull/38423)
    
  • [`f455e08621`](https://github.com/nodejs/node/commit/f455e08621)] - **deps**: patch V8 to 9.0.257.21 (Michaël Zasso) [#&#8203;38333](https://github.com/nodejs/node/pull/38333)
    
  • [`dd61a26d8c`](https://github.com/nodejs/node/commit/dd61a26d8c)] - **deps**: update llhttp to 6.0.1 (Fedor Indutny) [#&#8203;38359](https://github.com/nodejs/node/pull/38359)
    
  • [`05f41cdbcc`](https://github.com/nodejs/node/commit/05f41cdbcc)] - **deps**: patch V8 to 9.0.257.19 (Michaël Zasso) [#&#8203;38270](https://github.com/nodejs/node/pull/38270)
    
  • [`224faa0a05`](https://github.com/nodejs/node/commit/224faa0a05)] - ***Revert*** "**doc**: os.uptime() temporary bug notice" (Michaël Zasso) [#&#8203;38494](https://github.com/nodejs/node/pull/38494)
    
  • [`3b0480dde8`](https://github.com/nodejs/node/commit/3b0480dde8)] - **doc**: document `'secureConnect'` event limitation (James M Snell) [#&#8203;38447](https://github.com/nodejs/node/pull/38447)
    
  • [`92586046ec`](https://github.com/nodejs/node/commit/92586046ec)] - **doc**: fix outdated util inspect documentation and layout example (Ruben Bridgewater) [#&#8203;37079](https://github.com/nodejs/node/pull/37079)
    
  • [`13de4cf1ca`](https://github.com/nodejs/node/commit/13de4cf1ca)] - **doc**: mark Node.js 10 as End-of-Life (Richard Lau) [#&#8203;38482](https://github.com/nodejs/node/pull/38482)
    
  • [`3cbfde1f25`](https://github.com/nodejs/node/commit/3cbfde1f25)] - **doc**: mark querystring api as legacy (James M Snell) [#&#8203;38436](https://github.com/nodejs/node/pull/38436)
    
  • [`a5929c2487`](https://github.com/nodejs/node/commit/a5929c2487)] - **doc**: update node-api support matrix (Michael Dawson) [#&#8203;38424](https://github.com/nodejs/node/pull/38424)
    
  • [`f08650cefe`](https://github.com/nodejs/node/commit/f08650cefe)] - **doc**: add arguments for stream event of Http2Server and Http2SecureServer (Qingyu Deng) [#&#8203;37892](https://github.com/nodejs/node/pull/37892)
    
  • [`2d59273bed`](https://github.com/nodejs/node/commit/2d59273bed)] - **doc**: indicate that abort tests do not generate core files (Rich Trott) [#&#8203;38422](https://github.com/nodejs/node/pull/38422)
    
  • [`f1970127ee`](https://github.com/nodejs/node/commit/f1970127ee)] - **doc**: add try/catch in http2 respondWithFile example (Matteo Collina) [#&#8203;38410](https://github.com/nodejs/node/pull/38410)
    
  • [`f6f1317f43`](https://github.com/nodejs/node/commit/f6f1317f43)] - **doc**: note the system requirements for V8 tests (DeeDeeG) [#&#8203;38319](https://github.com/nodejs/node/pull/38319)
    
  • [`4b19beaf3c`](https://github.com/nodejs/node/commit/4b19beaf3c)] - **doc**: minor clarification to pathObject (James M Snell) [#&#8203;38437](https://github.com/nodejs/node/pull/38437)
    
  • [`1eae4af6f7`](https://github.com/nodejs/node/commit/1eae4af6f7)] - **doc**: clarify that fs.Dir async iterator closes automatically (James M Snell) [#&#8203;38438](https://github.com/nodejs/node/pull/38438)
    
  • [`14afb39259`](https://github.com/nodejs/node/commit/14afb39259)] - **doc**: document new TCP_KEEPCNT and TCP_KEEPINTVL socket option defaults (Arnold Zokas) [#&#8203;38313](https://github.com/nodejs/node/pull/38313)
    
  • [`ed5ef21690`](https://github.com/nodejs/node/commit/ed5ef21690)] - **doc**: do not mention TCP in the allowHalfOpen option description (Luigi Pinca) [#&#8203;38360](https://github.com/nodejs/node/pull/38360)
    
  • [`042985c139`](https://github.com/nodejs/node/commit/042985c139)] - **doc**: update message to match actual output (Rich Trott) [#&#8203;35271](https://github.com/nodejs/node/pull/35271)
    
  • [`bcc5e2af76`](https://github.com/nodejs/node/commit/bcc5e2af76)] - **doc**: request default snap track be updated for LTS (Rod Vagg) [#&#8203;37708](https://github.com/nodejs/node/pull/37708)
    
  • [`dfd4c7ba93`](https://github.com/nodejs/node/commit/dfd4c7ba93)] - **doc**: mark `process.hrtime()` as legacy (Antoine du Hamel) [#&#8203;38371](https://github.com/nodejs/node/pull/38371)
    
  • [`67cd88da00`](https://github.com/nodejs/node/commit/67cd88da00)] - **doc**: fix typo in worker_threads.md (takayama) [#&#8203;38368](https://github.com/nodejs/node/pull/38368)
    
  • [`a9314cda7d`](https://github.com/nodejs/node/commit/a9314cda7d)] - **doc**: fix version history for `"exports"` patterns (Antoine du Hamel) [#&#8203;38355](https://github.com/nodejs/node/pull/38355)
    
  • [`76885cd578`](https://github.com/nodejs/node/commit/76885cd578)] - **doc**: fix `package.json` `"imports"` field history (Antoine du Hamel) [#&#8203;38356](https://github.com/nodejs/node/pull/38356)
    
  • [`0e88ae7ec1`](https://github.com/nodejs/node/commit/0e88ae7ec1)] - **doc**: fix typo in buffer.md (divlo) [#&#8203;38323](https://github.com/nodejs/node/pull/38323)
    
  • [`1cccc2da51`](https://github.com/nodejs/node/commit/1cccc2da51)] - **doc**: fix YAML comment opening tags (Jayden Seric) [#&#8203;38324](https://github.com/nodejs/node/pull/38324)
    
  • [`25052dc987`](https://github.com/nodejs/node/commit/25052dc987)] - **doc**: add nodejs-sec email template (Daniel Bevenius) [#&#8203;38290](https://github.com/nodejs/node/pull/38290)
    
  • [`3858029262`](https://github.com/nodejs/node/commit/3858029262)] - **doc**: update TSC members list with three new members (Rich Trott) [#&#8203;38352](https://github.com/nodejs/node/pull/38352)
    
  • [`2eef587674`](https://github.com/nodejs/node/commit/2eef587674)] - **doc**: use `foo.prototype.bar` notation in buffer.md (Voltrex) [#&#8203;38032](https://github.com/nodejs/node/pull/38032)
    
  • [`8a90f55a05`](https://github.com/nodejs/node/commit/8a90f55a05)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287)
    
  • [`a696f1080c`](https://github.com/nodejs/node/commit/a696f1080c)] - **inspector**: remove redundant method for connection check (Yash Ladha) [#&#8203;37986](https://github.com/nodejs/node/pull/37986)
    
  • [`fcac2e0363`](https://github.com/nodejs/node/commit/fcac2e0363)] - **lib**: harden lint checks for globals (Antoine du Hamel) [#&#8203;38419](https://github.com/nodejs/node/pull/38419)
    
  • [`277122e1fa`](https://github.com/nodejs/node/commit/277122e1fa)] - **lib**: fix and improve os typings (Akhil Marsonya) [#&#8203;38316](https://github.com/nodejs/node/pull/38316)
    
  • [`f2c0258b4c`](https://github.com/nodejs/node/commit/f2c0258b4c)] - **lib**: add support for JSTransferable as a mixin (James M Snell) [#&#8203;38383](https://github.com/nodejs/node/pull/38383)
    
  • [`96f54d3446`](https://github.com/nodejs/node/commit/96f54d3446)] - **meta**: post comment when pr labeled fast-track (James M Snell) [#&#8203;38446](https://github.com/nodejs/node/pull/38446)
    
  • [`4711f57cf2`](https://github.com/nodejs/node/commit/4711f57cf2)] - **perf_hooks**: add toJSON to performance class (Yash Ladha) [#&#8203;37771](https://github.com/nodejs/node/pull/37771)
    
  • [`013fa59602`](https://github.com/nodejs/node/commit/013fa59602)] - **perf_hooks**: fix PerformanceObserver 'gc' crash (James M Snell) [#&#8203;38414](https://github.com/nodejs/node/pull/38414)
    
  • [`10147f191e`](https://github.com/nodejs/node/commit/10147f191e)] - **readline**: move utilities to internal modules (Antoine du Hamel) [#&#8203;38466](https://github.com/nodejs/node/pull/38466)
    
  • [`620ee42ab4`](https://github.com/nodejs/node/commit/620ee42ab4)] - **repl**: document top level await limitation with const/let (James M Snell) [#&#8203;38449](https://github.com/nodejs/node/pull/38449)
    
  • [`aa24681dcb`](https://github.com/nodejs/node/commit/aa24681dcb)] - **repl**: display prompt once after error callback (Anna Henningsen) [#&#8203;38314](https://github.com/nodejs/node/pull/38314)
    
  • [`9c06103a4f`](https://github.com/nodejs/node/commit/9c06103a4f)] - **src**: fix validation of negative offset to avoid abort (James M Snell) [#&#8203;38421](https://github.com/nodejs/node/pull/38421)
    
  • [`7d8cc2abf1`](https://github.com/nodejs/node/commit/7d8cc2abf1)] - **src**: use %progbits instead of [@&#8203;progbits](https://github.com/progbits) (Stephen Gallagher) [#&#8203;38312](https://github.com/nodejs/node/pull/38312)
    
  • [`17856f1f88`](https://github.com/nodejs/node/commit/17856f1f88)] - **src**: print arbitrary javascript exception value in node report (legendecas) [#&#8203;38009](https://github.com/nodejs/node/pull/38009)
    
  • [`769a210d55`](https://github.com/nodejs/node/commit/769a210d55)] - **src**: refactor to use THROW_\* argument based snprintf (Filip Skokan) [#&#8203;38357](https://github.com/nodejs/node/pull/38357)
    
  • [`e3538bbcd2`](https://github.com/nodejs/node/commit/e3538bbcd2)] - **src**: fix abort in pbkdf2 (Tobias Nießen) [#&#8203;38354](https://github.com/nodejs/node/pull/38354)
    
  • [`09cacd7418`](https://github.com/nodejs/node/commit/09cacd7418)] - **src**: fix setting Converter sub char length (James M Snell) [#&#8203;38331](https://github.com/nodejs/node/pull/38331)
    
  • [`3649ec5276`](https://github.com/nodejs/node/commit/3649ec5276)] - **src**: avoid deferred gc/cleanup for Buffer.from (James M Snell) [#&#8203;38337](https://github.com/nodejs/node/pull/38337)
    
  • [`f2ffaba78c`](https://github.com/nodejs/node/commit/f2ffaba78c)] - **stream**: the position of \_read() is wrong (helloyou2012) [#&#8203;38292](https://github.com/nodejs/node/pull/38292)
    
  • [`7ce39b8608`](https://github.com/nodejs/node/commit/7ce39b8608)] - **test**: fix `common.mustCall` `length` and `name` properties (Antoine du Hamel) [#&#8203;38464](https://github.com/nodejs/node/pull/38464)
    
  • [`d1cd1178e7`](https://github.com/nodejs/node/commit/d1cd1178e7)] - **test**: address deprecation warning (Rich Trott) [#&#8203;38448](https://github.com/nodejs/node/pull/38448)
    
  • [`67e9e71f75`](https://github.com/nodejs/node/commit/67e9e71f75)] - **test**: crypto KeyObject.from() ERR_INVALID_ARG_TYPE (pezhmanparsaee) [#&#8203;37890](https://github.com/nodejs/node/pull/37890)
    
  • [`9ad611c0b2`](https://github.com/nodejs/node/commit/9ad611c0b2)] - **test**: fix flaky test-crypto-timing-safe-dqual-benchmarks (Rich Trott) [#&#8203;38476](https://github.com/nodejs/node/pull/38476)
    
  • [`10b6b4e244`](https://github.com/nodejs/node/commit/10b6b4e244)] - **test**: update url Web Platform Tests (Leko) [#&#8203;38435](https://github.com/nodejs/node/pull/38435)
    
  • [`4f6c4eb144`](https://github.com/nodejs/node/commit/4f6c4eb144)] - **test**: move abort test from pummel to abort directory (Rich Trott) [#&#8203;38396](https://github.com/nodejs/node/pull/38396)
    
  • [`231ef4b0ce`](https://github.com/nodejs/node/commit/231ef4b0ce)] - **test**: move slower tests into pummel and skip on slow devices (Rich Trott) [#&#8203;38395](https://github.com/nodejs/node/pull/38395)
    
  • [`45322dfa12`](https://github.com/nodejs/node/commit/45322dfa12)] - **test**: skip some pummel tests on slower machines (Rich Trott) [#&#8203;38394](https://github.com/nodejs/node/pull/38394)
    
  • [`1bc47a4c0f`](https://github.com/nodejs/node/commit/1bc47a4c0f)] - **test**: fix test to allow quictls fork of OpenSSL 3 (Richard Lau) [#&#8203;38372](https://github.com/nodejs/node/pull/38372)
    
  • [`6ac02755f5`](https://github.com/nodejs/node/commit/6ac02755f5)] - **test**: extend timeout on debugger tests for slower machines (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`93b0c78de0`](https://github.com/nodejs/node/commit/93b0c78de0)] - **test**: fix comment typo (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`6c3e5043b0`](https://github.com/nodejs/node/commit/6c3e5043b0)] - **test**: fix test-inspector-cli-address (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`27d7588ad5`](https://github.com/nodejs/node/commit/27d7588ad5)] - **test**: add ancestor package.json checks for tmpdir (Richard Lau) [#&#8203;38285](https://github.com/nodejs/node/pull/38285)
    
  • [`30de03630e`](https://github.com/nodejs/node/commit/30de03630e)] - **test**: replace function with arrow function and remove unused argument (Andres) [#&#8203;38235](https://github.com/nodejs/node/pull/38235)
    
  • [`eb8f5ce44f`](https://github.com/nodejs/node/commit/eb8f5ce44f)] - **test**: use .test domain for not found address (Richard Lau) [#&#8203;38286](https://github.com/nodejs/node/pull/38286)
    
  • [`a4084d66c6`](https://github.com/nodejs/node/commit/a4084d66c6)] - **test,debugger**: migrate node-inspect tests to core (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`16eb078aa8`](https://github.com/nodejs/node/commit/16eb078aa8)] - **test,readline**: improve tab completion coverage (Antoine du Hamel) [#&#8203;38465](https://github.com/nodejs/node/pull/38465)
    
  • [`b3ca1b358e`](https://github.com/nodejs/node/commit/b3ca1b358e)] - **timers**: remove redundant unref calls (Giora Guttsait) [#&#8203;38320](https://github.com/nodejs/node/pull/38320)
    
  • [`5b393d9258`](https://github.com/nodejs/node/commit/5b393d9258)] - **tls**: validate ticket keys buffer (Antoine du Hamel) [#&#8203;38308](https://github.com/nodejs/node/pull/38308)
    
  • [`f6745e9370`](https://github.com/nodejs/node/commit/f6745e9370)] - **tls**: fix `tlsSocket.setMaxSendFragment` abort (eladkeyshawn) [#&#8203;38170](https://github.com/nodejs/node/pull/38170)
    
  • [`499da2d9e3`](https://github.com/nodejs/node/commit/499da2d9e3)] - **tools**: use mktemp to create the workspace directory (Luigi Pinca) [#&#8203;38432](https://github.com/nodejs/node/pull/38432)
    
  • [`8a83bfd1bd`](https://github.com/nodejs/node/commit/8a83bfd1bd)] - **tools**: use a shallow clone of the npm/cli repository (Luigi Pinca) [#&#8203;38463](https://github.com/nodejs/node/pull/38463)
    
  • [`bec959ef8b`](https://github.com/nodejs/node/commit/bec959ef8b)] - **tools**: disable LTO for "v8\_cppgc_shared" target (Jesse Chan) [#&#8203;38346](https://github.com/nodejs/node/pull/38346)
    
  • [`6350d35b3c`](https://github.com/nodejs/node/commit/6350d35b3c)] - **tools**: remove fixer for non-ascii-character ESLint custom rule (Rich Trott) [#&#8203;38413](https://github.com/nodejs/node/pull/38413)
    
  • [`dce8d2968a`](https://github.com/nodejs/node/commit/dce8d2968a)] - **tools**: fix doc generation when version info is not available (Antoine du Hamel) [#&#8203;38398](https://github.com/nodejs/node/pull/38398)
    
  • [`1033f6c8cb`](https://github.com/nodejs/node/commit/1033f6c8cb)] - **tools**: add \_depot_tools to PATH (for V8 tests) (DeeDeeG) [#&#8203;38299](https://github.com/nodejs/node/pull/38299)
    
  • [`28f02cb8cf`](https://github.com/nodejs/node/commit/28f02cb8cf)] - **tools**: update ESLint to 7.25.0 (Colin Ihrig) [#&#8203;38378](https://github.com/nodejs/node/pull/38378)
    
  • [`f1ea2c8e2b`](https://github.com/nodejs/node/commit/f1ea2c8e2b)] - **tools**: update markdown linter rules (Rich Trott) [#&#8203;38384](https://github.com/nodejs/node/pull/38384)
    
  • [`02e875c645`](https://github.com/nodejs/node/commit/02e875c645)] - **tools**: remove node-inspect from license (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`d3bd4b4771`](https://github.com/nodejs/node/commit/d3bd4b4771)] - **tools**: fix type mismatch in test runner (Richard Lau) [#&#8203;38289](https://github.com/nodejs/node/pull/38289)
    
  • [`9a2651352b`](https://github.com/nodejs/node/commit/9a2651352b)] - **typings**: add JSDoc typings for fs (Voltrex) [#&#8203;38306](https://github.com/nodejs/node/pull/38306)
    
  • [`e389e86b6b`](https://github.com/nodejs/node/commit/e389e86b6b)] - **typings**: add JSDoc typings for util (Rohit Gohri) [#&#8203;38213](https://github.com/nodejs/node/pull/38213)
    
  • [`ec5b06eae3`](https://github.com/nodejs/node/commit/ec5b06eae3)] - **util**: fix infinite recursion during inspection (Ruben Bridgewater) [#&#8203;37079](https://github.com/nodejs/node/pull/37079)
    
  • [`67bd0ec15c`](https://github.com/nodejs/node/commit/67bd0ec15c)] - **zlib**: fix brotli flush range (Khaidi Chu) [#&#8203;38408](https://github.com/nodejs/node/pull/38408)
    
    

v16.0.0

Compare Source

Notable Changes
Deprecations and Removals
  • (SEMVER-MAJOR) fs: remove permissive rmdir recursive (Antoine du Hamel) #​37216
  • (SEMVER-MAJOR) fs: runtime deprecate rmdir recursive option (Antoine du Hamel) #​37302
  • (SEMVER-MAJOR) lib: runtime deprecate access to process.binding('http_parser') (James M Snell) #​37813
  • (SEMVER-MAJOR) lib: runtime deprecate access to process.binding('url') (James M Snell) #​37799
  • (SEMVER-MAJOR) lib: make process.binding('util') return only type checkers (Anna Henningsen) #​37819
  • (SEMVER-MAJOR) lib: runtime deprecate access to process.binding('crypto') (James M Snell) #​37790
  • (SEMVER-MAJOR) lib: runtime deprecate access to process.binding('signal_wrap') (James M Snell) #​37800
  • (SEMVER-MAJOR) lib: runtime deprecate access to process.binding('v8') (James M Snell) #​37789
  • (SEMVER-MAJOR) lib: runtime deprecate access to process.binding('async_wrap') (James M Snell) #​37576
  • (SEMVER-MAJOR) module: remove module.createRequireFromPath (Antoine du Hamel) #​37201
  • (SEMVER-MAJOR) module: runtime deprecate subpath folder mappings (Antoine du Hamel) #​37215
  • (SEMVER-MAJOR) module: runtime deprecate "main" index and extension lookups (Antoine du Hamel) #​37206
  • (SEMVER-MAJOR) module: runtime deprecate invalid package.json main entries (Antoine du Hamel) #​37204
  • (SEMVER-MAJOR) process: runtime deprecate changing process.config (James M Snell) #​36902
Stable Timers Promises API

The Timers Promises API provides an alternative set of timer functions that return Promise objects. Added in Node.js v15.0.0, in this release they graduate from experimental status to stable.

Contributed by James Snell - #​38112

Toolchain and Compiler Upgrades

Node.js v16.0.0 will be the first release where we ship prebuilt binaries for Apple Silicon. While we’ll be providing separate tarballs for the Intel (darwin-x64) and ARM (darwin-arm64) architectures the macOS installer (.pkg) will be shipped as a ‘fat’ (multi-architecture) binary.

  • (SEMVER-MAJOR) build: remove support for Python 2 (Christian Clauss) #​36691
  • (SEMVER-MAJOR) build: default PYTHON to python3 in Makefile (Michaël Zasso) #​37764
  • build: update Makefile to support fat binary (Ash Cripps) #​37861
  • (SEMVER-MAJOR) build: enable ASLR (PIE) on OS X (woodfairy) #​35704
  • build: warn for gcc versions earlier than 8.3.0 (Richard Lau) #​37935
  • (SEMVER-MAJOR) doc: update minimum supported Xcode to 11 (Michaël Zasso) #​37872
  • (SEMVER-MAJOR) doc: update minimum supported GCC to 8.3 (Michaël Zasso) #​37871
  • (SEMVER-MAJOR) doc: update AIX to GCC8 for v16.x (Ash Cripps) #​37677
  • tools: set arch in Distribution.xml (Ash Cripps) #​38261
V8 9.0

The V8 JavaScript engine is updated to V8 9.0, including performance tweaks and improvements.

This update also brings the ECMAScript RegExp Match Indices, which provide the start and end indices of the captured string. The indices array is available via the .indices property on match objects when the regular expression has the /d flag.

Contributed by Michaël Zasso - #​37587

Other Notable Changes
  • (SEMVER-MINOR) assert: graduate assert.match and assert.doesNotMatch (James M Snell) #​38111
  • (SEMVER-MAJOR) buffer: expose btoa and atob as globals (James M Snell) #​37786
  • (SEMVER-MAJOR) deps: bump minimum ICU version to 68 (Michaël Zasso) #​37330
  • deps: update ICU to 69.1 (Michaël Zasso) #​38178
  • deps: update llhttp to 6.0.0 (Fedor Indutny) #​38277
  • deps: upgrade npm to 7.10.0 (Ruy Adorno) #​38254
  • (SEMVER-MINOR) http: add http.ClientRequest.getRawHeaderNames() (simov) #​37660
  • (SEMVER-MAJOR) lib,src: update cluster to use Parent (Michael Dawson) #​36478
  • (SEMVER-MINOR) module: add support for node:‑prefixed require(…) calls (ExE Boss) #​37246
  • (SEMVER-MINOR) perf_hooks: add histogram option to timerify (James M Snell) #​37475
  • (SEMVER-MINOR) repl: add auto‑completion for node:‑prefixed require(…) calls (ExE Boss) #​37246
  • (SEMVER-MINOR) util: add getSystemErrorMap() impl (eladkeyshawn) #​38101
Semver-Major Commits
  • [`324a6c235a`](https://github.com/nodejs/node/commit/324a6c235a)] - **(SEMVER-MAJOR)** **async_hooks**: add thisArg to AsyncResource.bind (James M Snell) [#&#8203;36782](https://github.com/nodejs/node/pull/36782)
    
  • [`d1e2184c8e`](https://github.com/nodejs/node/commit/d1e2184c8e)] - **(SEMVER-MAJOR)** **buffer**: expose btoa and atob as globals (James M Snell) [#&#8203;37786](https://github.com/nodejs/node/pull/37786)
    
  • [`4268fae04a`](https://github.com/nodejs/node/commit/4268fae04a)] - **(SEMVER-MAJOR)** **build**: remove support for Python 2 (Christian Clauss) [#&#8203;36691](https://github.com/nodejs/node/pull/36691)
    
  • [`c3a5e15ebe`](https://github.com/nodejs/node/commit/c3a5e15ebe)] - **(SEMVER-MAJOR)** **build**: default PYTHON to python3 in Makefile (Michaël Zasso) [#&#8203;37764](https://github.com/nodejs/node/pull/37764)
    
  • [`1d8c022544`](https://github.com/nodejs/node/commit/1d8c022544)] - **(SEMVER-MAJOR)** **build**: update Makefile to support fat binary (Ash Cripps) [#&#8203;37861](https://github.com/nodejs/node/pull/37861)
    
  • [`38f32386c1`](https://github.com/nodejs/node/commit/38f32386c1)] - **(SEMVER-MAJOR)** **build**: include minimal V8 headers in distribution (Michaël Zasso) [#&#8203;37570](https://github.com/nodejs/node/pull/37570)
    
  • [`a19af5ee71`](https://github.com/nodejs/node/commit/a19af5ee71)] - **(SEMVER-MAJOR)** **build**: use C++11 ABI with libstdc++ (Anna Henningsen) [#&#8203;36634](https://github.com/nodejs/node/pull/36634)
    
  • [`8d6b74d347`](https://github.com/nodejs/node/commit/8d6b74d347)] - **(SEMVER-MAJOR)** **build**: enable ASLR (PIE) on OS X (woodfairy) [#&#8203;35704](https://github.com/nodejs/node/pull/35704)
    
  • [`732ad99e47`](https://github.com/nodejs/node/commit/732ad99e47)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.0.257.11 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`43cc8e4b2e`](https://github.com/nodejs/node/commit/43cc8e4b2e)] - **(SEMVER-MAJOR)** **deps**: bump minimum ICU version to 68 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`c5ff019a4e`](https://github.com/nodejs/node/commit/c5ff019a4e)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.9.255.19 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`c7b3292251`](https://github.com/nodejs/node/commit/c7b3292251)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.8.278.17 (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`48db20f6f5`](https://github.com/nodejs/node/commit/48db20f6f5)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.7.220 (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`d85e1f0703`](https://github.com/nodejs/node/commit/d85e1f0703)] - **(SEMVER-MAJOR)** **dns**: use url module instead of punycode for IDNA (Antoine du Hamel) [#&#8203;35091](https://github.com/nodejs/node/pull/35091)
    
  • [`290c158018`](https://github.com/nodejs/node/commit/290c158018)] - **(SEMVER-MAJOR)** **doc**: update minimum supported Xcode to 11 (Michaël Zasso) [#&#8203;37872](https://github.com/nodejs/node/pull/37872)
    
  • [`1ff2918d80`](https://github.com/nodejs/node/commit/1ff2918d80)] - **(SEMVER-MAJOR)** **doc**: update minimum supported GCC to 8.3 (Michaël Zasso) [#&#8203;37871](https://github.com/nodejs/node/pull/37871)
    
  • [`2706e67116`](https://github.com/nodejs/node/commit/2706e67116)] - **(SEMVER-MAJOR)** **doc**: update AIX to GCC8 for v16.x (Ash Cripps) [#&#8203;37677](https://github.com/nodejs/node/pull/37677)
    
  • [`5ae5ca90ef`](https://github.com/nodejs/node/commit/5ae5ca90ef)] - **(SEMVER-MAJOR)** **doc**: add http.IncomingMessage#connection (Pranshu Srivastava) [#&#8203;33768](https://github.com/nodejs/node/pull/33768)
    
  • [`83d6e63aee`](https://github.com/nodejs/node/commit/83d6e63aee)] - **(SEMVER-MAJOR)** **events**: change EventTarget handler exception behavior (Nitzan Uziely) [#&#8203;37237](https://github.com/nodejs/node/pull/37237)
    
  • [`9948036ee0`](https://github.com/nodejs/node/commit/9948036ee0)] - **(SEMVER-MAJOR)** **fs**: remove permissive rmdir recursive (Antoine du Hamel) [#&#8203;37216](https://github.com/nodejs/node/pull/37216)
    
  • [`d4693ff430`](https://github.com/nodejs/node/commit/d4693ff430)] - **(SEMVER-MAJOR)** **fs**: add validation for fd and path (Dylan Elliott) [#&#8203;35187](https://github.com/nodejs/node/pull/35187)
    
  • [`0ddd75bcd8`](https://github.com/nodejs/node/commit/0ddd75bcd8)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate rmdir recursive option (Antoine du Hamel) [#&#8203;37302](https://github.com/nodejs/node/pull/37302)
    
  • [`da217d0773`](https://github.com/nodejs/node/commit/da217d0773)] - **(SEMVER-MAJOR)** **fs**: fix flag and mode validation (James M Snell) [#&#8203;37480](https://github.com/nodejs/node/pull/37480)
    
  • [`2ef9a76ece`](https://github.com/nodejs/node/commit/2ef9a76ece)] - **(SEMVER-MAJOR)** **http**: use objects with null prototype in Agent (Michaël Zasso) [#&#8203;36409](https://github.com/nodejs/node/pull/36409)
    
  • [`25e30005b8`](https://github.com/nodejs/node/commit/25e30005b8)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('http_parser') (James M Snell) [#&#8203;37813](https://github.com/nodejs/node/pull/37813)
    
  • [`8bb4e048af`](https://github.com/nodejs/node/commit/8bb4e048af)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('url') (James M Snell) [#&#8203;37799](https://github.com/nodejs/node/pull/37799)
    
  • [`fe73e4d578`](https://github.com/nodejs/node/commit/fe73e4d578)] - **(SEMVER-MAJOR)** **lib**: make process.binding('util') return only type checkers (Anna Henningsen) [#&#8203;37819](https://github.com/nodejs/node/pull/37819)
    
  • [`3bee6d8aad`](https://github.com/nodejs/node/commit/3bee6d8aad)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('crypto') (James M Snell) [#&#8203;37790](https://github.com/nodejs/node/pull/37790)
    
  • [`ac00df112e`](https://github.com/nodejs/node/commit/ac00df112e)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('signal_wrap') (James M Snell) [#&#8203;37800](https://github.com/nodejs/node/pull/37800)
    
  • [`ae595d76e3`](https://github.com/nodejs/node/commit/ae595d76e3)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('v8') (James M Snell) [#&#8203;37789](https://github.com/nodejs/node/pull/37789)
    
  • [`104dac79cc`](https://github.com/nodejs/node/commit/104dac79cc)] - **(SEMVER-MAJOR)** **lib**: aggregate errors to avoid error swallowing (Antoine du Hamel) [#&#8203;37460](https://github.com/nodejs/node/pull/37460)
    
  • [`1468c9ff7c`](https://github.com/nodejs/node/commit/1468c9ff7c)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('async_wrap') (James M Snell) [#&#8203;37576](https://github.com/nodejs/node/pull/37576)
    
  • [`295e766c27`](https://github.com/nodejs/node/commit/295e766c27)] - **(SEMVER-MAJOR)** **lib**: remove usage of url.parse (raisinten) [#&#8203;36853](https://github.com/nodejs/node/pull/36853)
    
  • [`cb3020d824`](https://github.com/nodejs/node/commit/cb3020d824)] - **(SEMVER-MAJOR)** **lib**: add error handling for input stream (rexagod) [#&#8203;31603](https://github.com/nodejs/node/pull/31603)
    
  • [`15164cebce`](https://github.com/nodejs/node/commit/15164cebce)] - **(SEMVER-MAJOR)** **lib,src**: update cluster to use Parent (Michael Dawson) [#&#8203;36478](https://github.com/nodejs/node/pull/36478)
    
  • [`3cc9aec988`](https://github.com/nodejs/node/commit/3cc9aec988)] - **(SEMVER-MAJOR)** **module**: runtime deprecate subpath folder mappings (Antoine du Hamel) [#&#8203;37215](https://github.com/nodejs/node/pull/37215)
    
  • [`9fab73c73b`](https://github.com/nodejs/node/commit/9fab73c73b)] - **(SEMVER-MAJOR)** **module**: runtime deprecate "main" index and extension lookups (Antoine du Hamel) [#&#8203;37206](https://github.com/nodejs/node/pull/37206)
    
  • [`76a073b67e`](https://github.com/nodejs/node/commit/76a073b67e)] - **(SEMVER-MAJOR)** **module**: runtime deprecate invalid package.json main entries (Antoine du Hamel) [#&#8203;37204](https://github.com/nodejs/node/pull/37204)
    
  • [`674614b3f5`](https://github.com/nodejs/node/commit/674614b3f5)] - **(SEMVER-MAJOR)** **module**: remove module.createRequireFromPath (Antoine du Hamel) [#&#8203;37201](https://github.com/nodejs/node/pull/37201)
    
  • [`aecd5ebf49`](https://github.com/nodejs/node/commit/aecd5ebf49)] - **(SEMVER-MAJOR)** **module**: only set cache when finding module succeeds (Yongsheng Zhang) [#&#8203;36642](https://github.com/nodejs/node/pull/36642)
    
  • [`f0bf373176`](https://github.com/nodejs/node/commit/f0bf373176)] - **(SEMVER-MAJOR)** **perf_hooks**: make performance a global (James M Snell) [#&#8203;37970](https://github.com/nodejs/node/pull/37970)
    
  • [`f3eb224c83`](https://github.com/nodejs/node/commit/f3eb224c83)] - **(SEMVER-MAJOR)** **perf_hooks**: complete overhaul of the implementation (James M Snell) [#&#8203;37136](https://github.com/nodejs/node/pull/37136)
    
  • [`f1753d4c76`](https://github.com/nodejs/node/commit/f1753d4c76)] - **(SEMVER-MAJOR)** **process**: disallow adding options to process.allowedNodeEnvironmentFlags (Antoine du Hamel) [#&#8203;36660](https://github.com/nodejs/node/pull/36660)
    
  • [`96f3977ded`](https://github.com/nodejs/node/commit/96f3977ded)] - **(SEMVER-MAJOR)** **process**: runtime deprecate changing process.config (James M Snell) [#&#8203;36902](https://github.com/nodejs/node/pull/36902)
    
  • [`45dbcbef90`](https://github.com/nodejs/node/commit/45dbcbef90)] - **(SEMVER-MAJOR)** **readline**: cursorTo throw error on NaN (Zijian Liu) [#&#8203;36379](https://github.com/nodejs/node/pull/36379)
    
  • [`bf79987433`](https://github.com/nodejs/node/commit/bf79987433)] - **(SEMVER-MAJOR)** **src**: mark internally exported functions as explicitly internal (Tyler Ang-Wanek) [#&#8203;37000](https://github.com/nodejs/node/pull/37000)
    
  • [`1fe571aa0c`](https://github.com/nodejs/node/commit/1fe571aa0c)] - **(SEMVER-MAJOR)** **src**: inline AsyncCleanupHookHandle in headers (Tyler Ang-Wanek) [#&#8203;37000](https://github.com/nodejs/node/pull/37000)
    
  • [`dfc288e7fd`](https://github.com/nodejs/node/commit/dfc288e7fd)] - **(SEMVER-MAJOR)** **src**: clean up embedder API (Anna Henningsen) [#&#8203;35897](https://github.com/nodejs/node/pull/35897)
    
  • [`65e8864fa3`](https://github.com/nodejs/node/commit/65e8864fa3)] - **(SEMVER-MAJOR)** **worker**: send correct error status for worker init (Yash Ladha) [#&#8203;36242](https://github.com/nodejs/node/pull/36242)
    
    
Semver-Minor Commits
  • [`944a956087`](https://github.com/nodejs/node/commit/944a956087)] - **(SEMVER-MINOR)** **assert**: graduate assert.match and assert.doesNotMatch (James M Snell) [#&#8203;38111](https://github.com/nodejs/node/pull/38111)
    
  • [`6a1986d50a`](https://github.com/nodejs/node/commit/6a1986d50a)] - **(SEMVER-MINOR)** **deps**: update llhttp to 5.1.0 (Fedor Indutny) [#&#8203;38146](https://github.com/nodejs/node/pull/38146)
    
  • [`069b5df4f6`](https://github.com/nodejs/node/commit/069b5df4f6)] - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246)
    
  • [`b803bca4fa`](https://github.com/nodejs/node/commit/b803bca4fa)] - **(SEMVER-MINOR)** **perf_hooks**: add histogram option to timerify (James M Snell) [#&#8203;37475](https://github.com/nodejs/node/pull/37475)
    
  • [`95391fe689`](https://github.com/nodejs/node/commit/95391fe689)] - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246)
    
  • [`15b8e6b1c4`](https://github.com/nodejs/node/commit/15b8e6b1c4)] - **(SEMVER-MINOR)** **timers**: graduate awaitable timers and improve docs (James M Snell) [#&#8203;38112](https://github.com/nodejs/node/pull/38112)
    
  • [`802171057f`](https://github.com/nodejs/node/commit/802171057f)] - **(SEMVER-MINOR)** **util**: add getSystemErrorMap() impl (eladkeyshawn) [#&#8203;38101](https://github.com/nodejs/node/pull/38101)
    
    
Semver-Patch Commits
  • [`8930eba199`](https://github.com/nodejs/node/commit/8930eba199)] - **assert**: change status of legacy asserts (James M Snell) [#&#8203;38113](https://github.com/nodejs/node/pull/38113)
    
  • [`0180fc5b9b`](https://github.com/nodejs/node/commit/0180fc5b9b)] - **benchmark**: improve compare.R output (Brian White) [#&#8203;38118](https://github.com/nodejs/node/pull/38118)
    
  • [`8d9d8236b7`](https://github.com/nodejs/node/commit/8d9d8236b7)] - **bootstrap**: mksnapshot should show JS error (Bradley Meck) [#&#8203;38174](https://github.com/nodejs/node/pull/38174)
    
  • [`6cb314bbe5`](https://github.com/nodejs/node/commit/6cb314bbe5)] - **bootstrap**: print information for snapshot at environment exit in debug (Joyee Cheung) [#&#8203;37967](https://github.com/nodejs/node/pull/37967)
    
  • [`14aed60941`](https://github.com/nodejs/node/commit/14aed60941)] - **buffer,errors**: add missing n literal in range error string (Cactysman) [#&#8203;37750](https://github.com/nodejs/node/pull/37750)
    
  • [`049b703a28`](https://github.com/nodejs/node/commit/049b703a28)] - **build**: sync generation of `v8\_build\_config.json` (Richard Lau) [#&#8203;38263](https://github.com/nodejs/node/pull/38263)
    
  • [`1d21a8d140`](https://github.com/nodejs/node/commit/1d21a8d140)] - **build**: add riscv64 configure (luyahan) [#&#8203;37980](https://github.com/nodejs/node/pull/37980)
    
  • [`f5eea1744d`](https://github.com/nodejs/node/commit/f5eea1744d)] - **build**: don't run test workflow on doc dir on macOS (ycjcl868) [#&#8203;37999](https://github.com/nodejs/node/pull/37999)
    
  • [`2853b76e20`](https://github.com/nodejs/node/commit/2853b76e20)] - **build**: add pummel tests to ci runs (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`24426cd8c4`](https://github.com/nodejs/node/commit/24426cd8c4)] - **build**: prepare Windows coverage GitHub Action for pummel tests (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`7df0fc5c5c`](https://github.com/nodejs/node/commit/7df0fc5c5c)] - **build**: move OPENSSL_API_COMPAT to else clause (Daniel Bevenius) [#&#8203;38126](https://github.com/nodejs/node/pull/38126)
    
  • [`9cfb418e1f`](https://github.com/nodejs/node/commit/9cfb418e1f)] - **build**: package release changelog for releases (Richard Lau) [#&#8203;38033](https://github.com/nodejs/node/pull/38033)
    
  • [`558d1e6c22`](https://github.com/nodejs/node/commit/558d1e6c22)] - **build**: warn for gcc versions earlier than 8.3.0 (Richard Lau) [#&#8203;37935](https://github.com/nodejs/node/pull/37935)
    
  • [`a572a4e34e`](https://github.com/nodejs/node/commit/a572a4e34e)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`f3c7078245`](https://github.com/nodejs/node/commit/f3c7078245)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`842389839b`](https://github.com/nodejs/node/commit/842389839b)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`98d1ae47cf`](https://github.com/nodejs/node/commit/98d1ae47cf)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`993ed19f9c`](https://github.com/nodejs/node/commit/993ed19f9c)] - **crypto**: reduce range of size to int max (Qingyu Deng) [#&#8203;38096](https://github.com/nodejs/node/pull/38096)
    
  • [`896dc39951`](https://github.com/nodejs/node/commit/896dc39951)] - **crypto**: fix webcrypto derive(Bits|Key) resolve values and docs (Filip Skokan) [#&#8203;38148](https://github.com/nodejs/node/pull/38148)
    
  • [`d2f116c6bb`](https://github.com/nodejs/node/commit/d2f116c6bb)] - **crypto**: fixup randomFill size and offset handling (James M Snell) [#&#8203;38138](https://github.com/nodejs/node/pull/38138)
    
  • [`dfe3f952a3`](https://github.com/nodejs/node/commit/dfe3f952a3)] - **crypto**: fix crash in CCM mode without data (Tobias Nießen) [#&#8203;38102](https://github.com/nodejs/node/pull/38102)
    
  • [`e8cb6446ef`](https://github.com/nodejs/node/commit/e8cb6446ef)] - **crypto**: reconcile oneshot sign/verify sync and async implementations (Filip Skokan) [#&#8203;37816](https://github.com/nodejs/node/pull/37816)
    
  • [`1e4a2bcbee`](https://github.com/nodejs/node/commit/1e4a2bcbee)] - **crypto**: remove check for condition that is always true (Rich Trott) [#&#8203;38072](https://github.com/nodejs/node/pull/38072)
    
  • [`64d5be25ab`](https://github.com/nodejs/node/commit/64d5be25ab)] - **deps**: V8: cherry-pick [`1648e05`](https://github.com/nodejs/node/commit/1648e050cade) (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`621b544909`](https://github.com/nodejs/node/commit/621b544909)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`0d78bc3101`](https://github.com/nodejs/node/commit/0d78bc3101)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`5214918856`](https://github.com/nodejs/node/commit/5214918856)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`6b3caf77b2`](https://github.com/nodejs/node/commit/6b3caf77b2)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`d0a032fafb`](https://github.com/nodejs/node/commit/d0a032fafb)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`c8b2fa642e`](https://github.com/nodejs/node/commit/c8b2fa642e)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`8eeecc19ae`](https://github.com/nodejs/node/commit/8eeecc19ae)] - **deps**: V8: cherry-pick [`8957d46`](https://github.com/nodejs/node/commit/8957d4677aa7) (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`b186142a0b`](https://github.com/nodejs/node/commit/b186142a0b)] - **deps**: V8: backport [`a113954`](https://github.com/nodejs/node/commit/a11395433dbd) (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`290f2d8d3e`](https://github.com/nodejs/node/commit/290f2d8d3e)] - **deps**: V8: cherry-pick [`deb0813`](https://github.com/nodejs/node/commit/deb0813166f3) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`63ed0b8bfe`](https://github.com/nodejs/node/commit/63ed0b8bfe)] - **deps**: V8: cherry-pick [`9a6a228`](https://github.com/nodejs/node/commit/9a6a22874c81) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`47f1c5257a`](https://github.com/nodejs/node/commit/47f1c5257a)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`19d975241f`](https://github.com/nodejs/node/commit/19d975241f)] - **deps**: workaround stod() limitations on SmartOS (Colin Ihrig) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`70f928c6a6`](https://github.com/nodejs/node/commit/70f928c6a6)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`b045e39513`](https://github.com/nodejs/node/commit/b045e39513)] - **deps**: patch V8 to run on Xcode 8 (Mary Marchini) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`32725d2224`](https://github.com/nodejs/node/commit/32725d2224)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`fe3cee7b37`](https://github.com/nodejs/node/commit/fe3cee7b37)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`b2d05f7349`](https://github.com/nodejs/node/commit/b2d05f7349)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`c7a0ab4e3d`](https://github.com/nodejs/node/commit/c7a0ab4e3d)] - **deps**: patch V8 to run on older XCode versions (Ujjwal Sharma) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`60b623ee90`](https://github.com/nodejs/node/commit/60b623ee90)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`577ff9fee5`](https://github.com/nodejs/node/commit/577ff9fee5)] - **deps**: V8: cherry-pick [`deb0813`](https://github.com/nodejs/node/commit/deb0813166f3) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`00e1c7ea83`](https://github.com/nodejs/node/commit/00e1c7ea83)] - **deps**: V8: cherry-pick [`9a6a228`](https://github.com/nodejs/node/commit/9a6a22874c81) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`ee01d6b7fc`](https://github.com/nodejs/node/commit/ee01d6b7fc)] - **deps**: V8: cherry-pick [`2059ee8`](https://github.com/nodejs/node/commit/2059ee813359) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`2dad8d43cc`](https://github.com/nodejs/node/commit/2dad8d43cc)] - **deps**: V8: cherry-pick [`bde7ee5`](https://github.com/nodejs/node/commit/bde7ee5473d6) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`3046131ea0`](https://github.com/nodejs/node/commit/3046131ea0)] - **deps**: V8: cherry-pick [`9a71298`](https://github.com/nodejs/node/commit/9a712984025e) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`d178d0738f`](https://github.com/nodejs/node/commit/d178d0738f)] - **deps**: V8: cherry-pick [`0b96e5b`](https://github.com/nodejs/node/commit/0b96e5b0bfb2) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`5c71ea151a`](https://github.com/nodejs/node/commit/5c71ea151a)] - **deps**: V8: cherry-pick [`fbb2890`](https://github.com/nodejs/node/commit/fbb28902e049) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`c8e15cd2c6`](https://github.com/nodejs/node/commit/c8e15cd2c6)] - **deps**: V8: cherry-pick [`821fb38`](https://github.com/nodejs/node/commit/821fb3883a8e) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`b0d67426af`](https://github.com/nodejs/node/commit/b0d67426af)] - **deps**: workaround stod() limitations on SmartOS (Colin Ihrig) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`c8a658ac53`](https://github.com/nodejs/node/commit/c8a658ac53)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`153b8cea36`](https://github.com/nodejs/node/commit/153b8cea36)] - **deps**: patch V8 to run on Xcode 8 (Mary Marchini) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`a785984133`](https://github.com/nodejs/node/commit/a785984133)] - **deps**: V8: silence irrelevant warnings (Michaël Zasso) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`246c9b8c31`](https://github.com/nodejs/node/commit/246c9b8c31)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`96a567f9e9`](https://github.com/nodejs/node/commit/96a567f9e9)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`e74383cecb`](https://github.com/nodejs/node/commit/e74383cecb)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`732847f1eb`](https://github.com/nodejs/node/commit/732847f1eb)] - **deps**: patch V8 to run on older XCode versions (Ujjwal Sharma) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`70171d186f`](https://github.com/nodejs/node/commit/70171d186f)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`15c91c6dd5`](https://github.com/nodejs/node/commit/15c91c6dd5)] - **deps**: V8: cherry-pick [`821fb38`](https://github.com/nodejs/node/commit/821fb3883a8e) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`40b2fa4832`](https://github.com/nodejs/node/commit/40b2fa4832)] - **deps**: V8: cherry-pick [`45e4977`](https://github.com/nodejs/node/commit/45e49775f5a3) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`cd91ab5865`](https://github.com/nodejs/node/commit/cd91ab5865)] - **deps**: V8: cherry-pick [`7b3a27b`](https://github.com/nodejs/node/commit/7b3a27b7ae65) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`f4fc099080`](https://github.com/nodejs/node/commit/f4fc099080)] - **deps**: V8: cherry-pick [`d76abfe`](https://github.com/nodejs/node/commit/d76abfed3512) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`6200176ef0`](https://github.com/nodejs/node/commit/6200176ef0)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`bd5642deb9`](https://github.com/nodejs/node/commit/bd5642deb9)] - **deps**: update V8 postmortem metadata script (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`9ae7159216`](https://github.com/nodejs/node/commit/9ae7159216)] - **deps**: update V8 postmortem metadata script (Colin Ihrig) [#&#8203;33579](https://github.com/nodejs/node/pull/33579)
    
  • [`f4b4e21b2f`](https://github.com/nodejs/node/commit/f4b4e21b2f)] - **deps**: patch V8 to run on Xcode 8 (Mary Marchini) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`f6a84540d8`](https://github.com/nodejs/node/commit/f6a84540d8)] - **deps**: V8: silence irrelevant warnings (Michaël Zasso) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`bbc3f46572`](https://github.com/nodejs/node/commit/bbc3f46572)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`0c988642dc`](https://github.com/nodejs/node/commit/0c988642dc)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`703bf933d4`](https://github.com/nodejs/node/commit/703bf933d4)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`5451975b18`](https://github.com/nodejs/node/commit/5451975b18)] - **deps**: patch V8 to run on older XCode versions (Ujjwal Sharma) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`c460f7af4d`](https://github.com/nodejs/node/commit/c460f7af4d)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116)
    
  • [`bfee9daaa5`](https://github.com/nodejs/node/commit/bfee9daaa5)] - **deps**: update llhttp to 6.0.0 (Fedor Indutny) [#&#8203;38277](https://github.com/nodejs/node/pull/38277)
    
  • [`94405650ae`](https://github.com/nodejs/node/commit/94405650ae)] - **deps**: upgrade npm to 7.10.0 (Ruy Adorno) [#&#8203;38254](https://github.com/nodejs/node/pull/38254)
    
  • [`8e80fc7ff8`](https://github.com/nodejs/node/commit/8e80fc7ff8)] - **deps**: patch V8 to 9.0.257.17 (Michaël Zasso) [#&#8203;38237](https://github.com/nodejs/node/pull/38237)
    
  • [`5b358d57e1`](https://github.com/nodejs/node/commit/5b358d57e1)] - **deps**: patch V8 to 9.0.257.16 (Michaël Zasso) [#&#8203;38218](https://github.com/nodejs/node/pull/38218)
    
  • [`ee669a0d29`](https://github.com/nodejs/node/commit/ee669a0d29)] - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178)
    
  • [`2468e4ed3e`](https://github.com/nodejs/node/commit/2468e4ed3e)] - **deps**: V8: backport [`d59db06`](https://github.com/nodejs/node/commit/d59db06bf542) (Antoine du Hamel) [#&#8203;38162](https://github.com/nodejs/node/pull/38162)
    
  • [`c748668704`](https://github.com/nodejs/node/commit/c748668704)] - **deps**: upgrade npm to 7.9.0 (Ruy Adorno) [#&#8203;38156](https://github.com/nodejs/node/pull/38156)
    
  • [`ca13f7aaf3`](https://github.com/nodejs/node/commit/ca13f7aaf3)] - **deps**: V8: cherry-pick [`501482c`](https://github.com/nodejs/node/commit/501482cbc704) (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121)
    
  • [`bc531d1860`](https://github.com/nodejs/node/commit/bc531d1860)] - **deps**: upgrade npm to 7.8.0 (Darcy Clarke) [#&#8203;38030](https://github.com/nodejs/node/pull/38030)
    
  • [`d639321acd`](https://github.com/nodejs/node/commit/d639321acd)] - **deps**: patch V8 to 9.0.257.13 (Michaël Zasso) [#&#8203;37830](https://github.com/nodejs/node/pull/37830)
    
  • [`bc31dc0e0f`](https://github.com/nodejs/node/commit/bc31dc0e0f)] - **dns**: refactor cares_wrap internals (James M Snell) [#&#8203;38172](https://github.com/nodejs/node/pull/38172)
    
  • [`36decec87f`](https://github.com/nodejs/node/commit/36decec87f)] - **doc**: remove superfluous await from fsPromises.readdir example (Michael Rommel) [#&#8203;38293](https://github.com/nodejs/node/pull/38293)
    
  • [`ac2c8c530d`](https://github.com/nodejs/node/commit/ac2c8c530d)] - **doc**: fixup http.IncomingMessage deprecation code (Guy Bedford) [#&#8203;36917](https://github.com/nodejs/node/pull/36917)
    
  • [`767643fc19`](https://github.com/nodejs/node/commit/767643fc19)] - **doc**: restore minimum Xcode version for macOS (Richard Lau) [#&#8203;38266](https://github.com/nodejs/node/pull/38266)
    
  • [`e541032276`](https://github.com/nodejs/node/commit/e541032276)] - **doc**: fix typo in repl.md (Arkerone) [#&#8203;38244](https://github.com/nodejs/node/pull/38244)
    
  • [`fb93b71307`](https://github.com/nodejs/node/commit/fb93b71307)] - **doc**: fix typo in buffer.md (Arkerone) [#&#8203;38243](https://github.com/nodejs/node/pull/38243)
    
  • [`7d688d4b36`](https://github.com/nodejs/node/commit/7d688d4b36)] - **doc**: fix missing backtick in fs.md (Siddharth) [#&#8203;38260](https://github.com/nodejs/node/pull/38260)
    
  • [`6d04cc6849`](https://github.com/nodejs/node/commit/6d04cc6849)] - **doc**: change "oject" to "object" (Arkerone) [#&#8203;38256](https://github.com/nodejs/node/pull/38256)
    
  • [`b4363f726c`](https://github.com/nodejs/node/commit/b4363f726c)] - **doc**: revise TLS minVersion/maxVersion text (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202)
    
  • [`98c2067f13`](https://github.com/nodejs/node/commit/98c2067f13)] - **doc**: update BUILDING.md for Apple Silicon (Ash Cripps) [#&#8203;38227](https://github.com/nodejs/node/pull/38227)
    
  • [`4def7c4418`](https://github.com/nodejs/node/commit/4def7c4418)] - **doc**: standardize on pseudorandom (Rich Trott) [#&#8203;38196](https://github.com/nodejs/node/pull/38196)
    
  • [`f1027ecf29`](https://github.com/nodejs/node/commit/f1027ecf29)] - **doc**: standardize command flag notes (Ferdi) [#&#8203;38199](https://github.com/nodejs/node/pull/38199)
    
  • [`756d2e48d8`](https://github.com/nodejs/node/commit/756d2e48d8)] - **doc**: update `buffer.constants.MAX\_LENGTH` (Qingyu Deng) [#&#8203;38109](https://github.com/nodejs/node/pull/38109)
    
  • [`474fbb5f6e`](https://github.com/nodejs/node/commit/474fbb5f6e)] - **doc**: clarify child_process close event (Nitzan Uziely) [#&#8203;38181](https://github.com/nodejs/node/pull/38181)
    
  • [`eee2c331ef`](https://github.com/nodejs/node/commit/eee2c331ef)] - **doc**: add command flag to import.meta.resolve (Ferdi) [#&#8203;38171](https://github.com/nodejs/node/pull/38171)
    
  • [`f46d29360c`](https://github.com/nodejs/node/commit/f46d29360c)] - **doc**: advise against using randomFill on floats (Tobias Nießen) [#&#8203;38150](https://github.com/nodejs/node/pull/38150)
    
  • [`5823fc79ba`](https://github.com/nodejs/node/commit/5823fc79ba)] - **doc**: update links in ICU guide (Michaël Zasso) [#&#8203;38177](https://github.com/nodejs/node/pull/38177)
    
  • [`993a1da47c`](https://github.com/nodejs/node/commit/993a1da47c)] - **doc**: mention cryptographic prng in description of randomUUID (Serkan Özel) [#&#8203;38074](https://github.com/nodejs/node/pull/38074)
    
  • [`5ba5cc8619`](https://github.com/nodejs/node/commit/5ba5cc8619)] - **doc**: fix typos in doc/api/cli.md (Arkerone) [#&#8203;38163](https://github.com/nodejs/node/pull/38163)
    
  • [`6a2314acd7`](https://github.com/nodejs/node/commit/6a2314acd7)] - **doc**: add link to V8 (Voltrex) [#&#8203;38144](https://github.com/nodejs/node/pull/38144)
    
  • [`093b527b25`](https://github.com/nodejs/node/commit/093b527b25)] - **doc**: fix typo in assert.md (Arkerone) [#&#8203;38152](https://github.com/nodejs/node/pull/38152)
    
  • [`0fa579ac2a`](https://github.com/nodejs/node/commit/0fa579ac2a)] - **doc**: add missing comma in crypto doc (Tobias Nießen) [#&#8203;38142](https://github.com/nodejs/node/pull/38142)
    
  • [`4bc8f7542f`](https://github.com/nodejs/node/commit/4bc8f7542f)] - **doc**: fix typo in crypto (Arkerone) [#&#8203;38130](https://github.com/nodejs/node/pull/38130)
    
  • [`005ebafbd1`](https://github.com/nodejs/node/commit/005ebafbd1)] - **doc**: improve security text in collaborators guide (Rich Trott) [#&#8203;38107](https://github.com/nodejs/node/pull/38107)
    
  • [`54322b8d8b`](https://github.com/nodejs/node/commit/54322b8d8b)] - **doc**: apply consistent punctuation to header contributing guide (Akhil Marsonya) [#&#8203;38047](https://github.com/nodejs/node/pull/38047)
    
  • [`0d34767c4c`](https://github.com/nodejs/node/commit/0d34767c4c)] - **doc**: sending http request to localhost to avoid https redirect (Hassaan Pasha) [#&#8203;38036](https://github.com/nodejs/node/pull/38036)
    
  • [`f851efd2e1`](https://github.com/nodejs/node/commit/f851efd2e1)] - **doc**: apply sentence case to backporting-to-release-lines.md headers (marsonya) [#&#8203;37617](https://github.com/nodejs/node/pull/37617)
    
  • [`36bc8b905c`](https://github.com/nodejs/node/commit/36bc8b905c)] - **doc**: fix typo in fs.md (Antoine du Hamel) [#&#8203;38100](https://github.com/nodejs/node/pull/38100)
    
  • [`f52c92134c`](https://github.com/nodejs/node/commit/f52c92134c)] - **doc**: internal/test/binding for testing (Bradley Meck) [#&#8203;38026](https://github.com/nodejs/node/pull/38026)
    
  • [`ab42ef3930`](https://github.com/nodejs/node/commit/ab42ef3930)] - **doc**: add parentheses to function and move reference (Rich Trott) [#&#8203;38066](https://github.com/nodejs/node/pull/38066)
    
  • [`2861778ecd`](https://github.com/nodejs/node/commit/2861778ecd)] - **doc**: change wording in doc/api/domain.md comment (Akhil Marsonya) [#&#8203;38044](https://github.com/nodejs/node/pull/38044)
    
  • [`361632dab1`](https://github.com/nodejs/node/commit/361632dab1)] - **doc**: fix lint error in modules.md (Rich Trott) [#&#8203;37811](https://github.com/nodejs/node/pull/37811)
    
  • [`b3f35e2c70`](https://github.com/nodejs/node/commit/b3f35e2c70)] - **doc,lib**: add missing deprecation code (Colin Ihrig) [#&#8203;37541](https://github.com/nodejs/node/pull/37541)
    
  • [`cbe3b27166`](https://github.com/nodejs/node/commit/cbe3b27166)] - **doc,tools**: allow stability table to be updated (Richard Lau) [#&#8203;38048](https://github.com/nodejs/node/pull/38048)
    
  • [`8dd06850ae`](https://github.com/nodejs/node/commit/8dd06850ae)] - **esm**: use correct URL for error decoration (Bradley Meck) [#&#8203;37854](https://github.com/nodejs/node/pull/37854)
    
  • [`6bbe28552c`](https://github.com/nodejs/node/commit/6bbe28552c)] - **fs**: use byteLength to handle ArrayBuffer views (Michaël Zasso) [#&#8203;38187](https://github.com/nodejs/node/pull/38187)
    
  • [`8e76397fab`](https://github.com/nodejs/node/commit/8e76397fab)] - **fs**: validate encoding to binding.writeString() (Colin Ihrig) [#&#8203;38183](https://github.com/nodejs/node/pull/38183)
    
  • [`24fd791184`](https://github.com/nodejs/node/commit/24fd791184)] - **fs**: move constants to internal/fs/utils.js (Darshan Sen) [#&#8203;38061](https://github.com/nodejs/node/pull/38061)
    
  • [`40ace47396`](https://github.com/nodejs/node/commit/40ace47396)] - **http**: fixup perf regression (James M Snell) [#&#8203;38110](https://github.com/nodejs/node/pull/38110)
    
  • [`f4d3d12327`](https://github.com/nodejs/node/commit/f4d3d12327)] - **http**: use CRLF conistently in \_http_outgoing.js (Daniel Bevenius) [#&#8203;37851](https://github.com/nodejs/node/pull/37851)
    
  • [`ee9e2a2eb6`](https://github.com/nodejs/node/commit/ee9e2a2eb6)] - **lib**: revert primordials in a hot path (Antoine du Hamel) [#&#8203;38248](https://github.com/nodejs/node/pull/38248)
    
  • [`d756d2b99c`](https://github.com/nodejs/node/commit/d756d2b99c)] - **lib**: enforce using `primordials.globalThis` instead of `global` (Antoine du Hamel) [#&#8203;38230](https://github.com/nodejs/node/pull/38230)
    
  • [`09c9e5dea4`](https://github.com/nodejs/node/commit/09c9e5dea4)] - **lib**: avoid mutating `Error.stackTraceLimit` when it is not writable (Antoine du Hamel) [#&#8203;38215](https://github.com/nodejs/node/pull/38215)
    
  • [`23d2c54bab`](https://github.com/nodejs/node/commit/23d2c54bab)] - **lib**: add `globalThis` to primordials (Antoine du Hamel) [#&#8203;38211](https://github.com/nodejs/node/pull/38211)
    
  • [`78343bbdc5`](https://github.com/nodejs/node/commit/78343bbdc5)] - **lib**: add `WeakRef` and `FinalizationRegistry` to `primordials` (ExE Boss) [#&#8203;37263](https://github.com/nodejs/node/pull/37263)
    
  • [`656fb4657a`](https://github.com/nodejs/node/commit/656fb4657a)] - **lib**: add tsconfig for code completions (Bradley Meck) [#&#8203;38042](https://github.com/nodejs/node/pull/38042)
    
  • [`d86132488d`](https://github.com/nodejs/node/commit/d86132488d)] - **lib**: properly process JavaScript exceptions on async_hooks fatal error (legendecas) [#&#8203;38106](https://github.com/nodejs/node/pull/38106)
    
  • [`a9332e84bf`](https://github.com/nodejs/node/commit/a9332e84bf)] - **lib**: refactor to use primordials in lib/internal/cli_table (Akhil Marsonya) [#&#8203;38046](https://github.com/nodejs/node/pull/38046)
    
  • [`8d78d9ef27`](https://github.com/nodejs/node/commit/8d78d9ef27)] - **lib**: load v8\_prof_processor dependencies as ESM (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`7b2bad4005`](https://github.com/nodejs/node/commit/7b2bad4005)] - **module**: clarify CJS global-like variables not defined error message (Antoine du Hamel) [#&#8203;37852](https://github.com/nodejs/node/pull/37852)
    
  • [`7869761c2e`](https://github.com/nodejs/node/commit/7869761c2e)] - **net**: fix typo (Luigi Pinca) [#&#8203;38127](https://github.com/nodejs/node/pull/38127)
    
  • [`4afcd55274`](https://github.com/nodejs/node/commit/4afcd55274)] - **node-api**: make reference weak parameter an indirect link to references (Chengzhong Wu) [#&#8203;38000](https://github.com/nodejs/node/pull/38000)
    
  • [`e38d62a8c9`](https://github.com/nodejs/node/commit/e38d62a8c9)] - **path**: fix POSIX path.resolve() perf regression (Brian White) [#&#8203;38064](https://github.com/nodejs/node/pull/38064)
    
  • [`b0d5e036d8`](https://github.com/nodejs/node/commit/b0d5e036d8)] - **path**: fix posix.relative() on Windows (Rich Trott) [#&#8203;37747](https://github.com/nodejs/node/pull/37747)
    
  • [`548cbf0625`](https://github.com/nodejs/node/commit/548cbf0625)] - **perf_hooks**: fix loop delay resolution validation (Antoine du Hamel) [#&#8203;38166](https://github.com/nodejs/node/pull/38166)
    
  • [`13c931a9dc`](https://github.com/nodejs/node/commit/13c931a9dc)] - **process**: add range validation to debugPort (Colin Ihrig) [#&#8203;38205](https://github.com/nodejs/node/pull/38205)
    
  • [`8dd5dd8a4b`](https://github.com/nodejs/node/commit/8dd5dd8a4b)] - **process**: do not lazily load AsyncResource (Michaël Zasso) [#&#8203;38041](https://github.com/nodejs/node/pull/38041)
    
  • [`4e833b6059`](https://github.com/nodejs/node/commit/4e833b6059)] - **process,doc**: add missing deprecation code (Colin Ihrig) [#&#8203;37091](https://github.com/nodejs/node/pull/37091)
    
  • [`d6669645c0`](https://github.com/nodejs/node/commit/d6669645c0)] - **repl**: fix declaring a variable with the name `util` (eladkeyshawn) [#&#8203;38141](https://github.com/nodejs/node/pull/38141)
    
  • [`e7391967c2`](https://github.com/nodejs/node/commit/e7391967c2)] - **repl**: fix error message printing (Anna Henningsen) [#&#8203;38209](https://github.com/nodejs/node/pull/38209)
    
  • [`4e9212bb7b`](https://github.com/nodejs/node/commit/4e9212bb7b)] - **src**: cache some context in locals (Khaidi Chu) [#&#8203;37473](https://github.com/nodejs/node/pull/37473)
    
  • [`fc20e833ca`](https://github.com/nodejs/node/commit/fc20e833ca)] - **src**: fix finalization crash (James M Snell) [#&#8203;38250](https://github.com/nodejs/node/pull/38250)
    
  • [`6c9b19a7af`](https://github.com/nodejs/node/commit/6c9b19a7af)] - **src**: refactor SecureContext Initialization (James M Snell) [#&#8203;38116](https://github.com/nodejs/node/pull/38116)
    
  • [`8d63aa828e`](https://github.com/nodejs/node/commit/8d63aa828e)] - **src**: fix typo for initialization (Yash Ladha) [#&#8203;37974](https://github.com/nodejs/node/pull/37974)
    
  • [`66c8f76c2c`](https://github.com/nodejs/node/commit/66c8f76c2c)] - **src**: remove KeyObjectData::CreateSecret overload (Tobias Nießen) [#&#8203;38067](https://github.com/nodejs/node/pull/38067)
    
  • [`87dc152229`](https://github.com/nodejs/node/commit/87dc152229)] - **src**: fix node version (Richard Lau) [#&#8203;36460](https://github.com/nodejs/node/pull/36460)
    
  • [`e929d1f2c8`](https://github.com/nodejs/node/commit/e929d1f2c8)] - **src**: fix node version (Brian White) [#&#8203;36385](https://github.com/nodejs/node/pull/36385)
    
  • [`8e8dea36cc`](https://github.com/nodejs/node/commit/8e8dea36cc)] - **src**: use non-deprecated GetCreationContext from V8 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`b1c1c4695c`](https://github.com/nodejs/node/commit/b1c1c4695c)] - **src**: remove V8\_FT_ADAPTOR for V8 update (Colin Ihrig) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`8f5cce6862`](https://github.com/nodejs/node/commit/8f5cce6862)] - **src**: use non-deprecated V8 module APIs (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`497f6ca5b4`](https://github.com/nodejs/node/commit/497f6ca5b4)] - **src**: update NODE_MODULE_VERSION to 93 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`001dc16cf1`](https://github.com/nodejs/node/commit/001dc16cf1)] - **src**: use non-deprecated V8 module and script APIs (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`47a90d9f37`](https://github.com/nodejs/node/commit/47a90d9f37)] - **src**: update NODE_MODULE_VERSION to 92 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`5259d17309`](https://github.com/nodejs/node/commit/5259d17309)] - **src**: update NODE_MODULE_VERSION to 91 (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`6f9cbcf6a6`](https://github.com/nodejs/node/commit/6f9cbcf6a6)] - **src**: fix v8 api deprecation (Jiawen Geng) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`9d4d55bd94`](https://github.com/nodejs/node/commit/9d4d55bd94)] - **src**: update NODE_MODULE_VERSION to 90 (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`369f239503`](https://github.com/nodejs/node/commit/369f239503)] - **stream**: fix multiple Writable.destroy() calls (Robert Nagy) [#&#8203;38221](https://github.com/nodejs/node/pull/38221)
    
  • [`4ad46e2fef`](https://github.com/nodejs/node/commit/4ad46e2fef)] - **stream**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37126](https://github.com/nodejs/node/pull/37126)
    
  • [`419686cdfb`](https://github.com/nodejs/node/commit/419686cdfb)] - **stream**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36346](https://github.com/nodejs/node/pull/36346)
    
  • [`c704faa0f9`](https://github.com/nodejs/node/commit/c704faa0f9)] - **test**: fix flaky test-dns and test-dns-lookup (Rich Trott) [#&#8203;38282](https://github.com/nodejs/node/pull/38282)
    
  • [`5e588c1c7c`](https://github.com/nodejs/node/commit/5e588c1c7c)] - **test**: fixup failing test/internet/test-dns.js (James M Snell) [#&#8203;38241](https://github.com/nodejs/node/pull/38241)
    
  • [`18c9913ce1`](https://github.com/nodejs/node/commit/18c9913ce1)] - **test**: add tests for missing https agent options (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202)
    
  • [`4ad8e83a3d`](https://github.com/nodejs/node/commit/4ad8e83a3d)] - **test**: fix test-https-agent-additional-options.js (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202)
    
  • [`05df701e70`](https://github.com/nodejs/node/commit/05df701e70)] - **test**: remove common.disableCrashOnUnhandledRejection (Michaël Zasso) [#&#8203;38210](https://github.com/nodejs/node/pull/38210)
    
  • [`8f4850d5c7`](https://github.com/nodejs/node/commit/8f4850d5c7)] - **test**: fix typo in comment in binding.c (Tobias Nießen) [#&#8203;38220](https://github.com/nodejs/node/pull/38220)
    
  • [`9498e97015`](https://github.com/nodejs/node/commit/9498e97015)] - **test**: fix typo in gtest-all.cc (Ikko Ashimine) [#&#8203;38224](https://github.com/nodejs/node/pull/38224)
    
  • [`c8bbd83ab2`](https://github.com/nodejs/node/commit/c8bbd83ab2)] - **test**: add undefined fatalException exit code test (Nitzan Uziely) [#&#8203;38119](https://github.com/nodejs/node/pull/38119)
    
  • [`db9cf52dcf`](https://github.com/nodejs/node/commit/db9cf52dcf)] - **test**: check the different error code on IBM i (Xu Meng) [#&#8203;38159](https://github.com/nodejs/node/pull/38159)
    
  • [`95ca351fd8`](https://github.com/nodejs/node/commit/95ca351fd8)] - **test**: skip fs.watch() test on IBMi (Rich Trott) [#&#8203;38192](https://github.com/nodejs/node/pull/38192)
    
  • [`8cee28465c`](https://github.com/nodejs/node/commit/8cee28465c)] - **test**: fix test-dh-regr for OpenSSL 3 (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`213ae4f4c6`](https://github.com/nodejs/node/commit/213ae4f4c6)] - **test**: skip test-vm-memleak in ASAN (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`50208915a0`](https://github.com/nodejs/node/commit/50208915a0)] - **test**: skip test-hash-seed on armv6 and armv7 (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`7216eb67df`](https://github.com/nodejs/node/commit/7216eb67df)] - **test**: update OpenSSL 3.x expected error message (Daniel Bevenius) [#&#8203;38164](https://github.com/nodejs/node/pull/38164)
    
  • [`7e516aaac0`](https://github.com/nodejs/node/commit/7e516aaac0)] - **test**: remove unneeded m flag on regular expressions (Rich Trott) [#&#8203;38124](https://github.com/nodejs/node/pull/38124)
    
  • [`269f5132cc`](https://github.com/nodejs/node/commit/269f5132cc)] - **test**: skip different params test for OpenSSL 3.x (Daniel Bevenius) [#&#8203;38165](https://github.com/nodejs/node/pull/38165)
    
  • [`f96dffb7ae`](https://github.com/nodejs/node/commit/f96dffb7ae)] - **test**: fix flaky test-zlib-unused-weak.js (Ouyang Yadong) [#&#8203;38149](https://github.com/nodejs/node/pull/38149)
    
  • [`e96773b94b`](https://github.com/nodejs/node/commit/e96773b94b)] - **test**: add regression test for serdes readDouble() (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121)
    
  • [`cc4ee6cba8`](https://github.com/nodejs/node/commit/cc4ee6cba8)] - **test**: deflake test-http-many-ended-pipelines (Luigi Pinca) [#&#8203;38018](https://github.com/nodejs/node/pull/38018)
    
  • [`098a4d6551`](https://github.com/nodejs/node/commit/098a4d6551)] - **test**: skip test-crypto-dh-keys on armv6 and armv7 (Rich Trott) [#&#8203;38076](https://github.com/nodejs/node/pull/38076)
    
  • [`f9b63b8530`](https://github.com/nodejs/node/commit/f9b63b8530)] - **test**: update parallel/test-crypto-keygen for OpenSSL 3 (Richard Lau) [#&#8203;38136](https://github.com/nodejs/node/pull/38136)
    
  • [`6a6cdfad03`](https://github.com/nodejs/node/commit/6a6cdfad03)] - **test**: fix skip message for test-macos-app-sandbox (Tobias Nießen) [#&#8203;38114](https://github.com/nodejs/node/pull/38114)
    
  • [`e155b1f2f7`](https://github.com/nodejs/node/commit/e155b1f2f7)] - **test**: correct test comment (Evan Lucas) [#&#8203;38095](https://github.com/nodejs/node/pull/38095)
    
  • [`d61977f03e`](https://github.com/nodejs/node/commit/d61977f03e)] - **test**: remove dead code (Luigi Pinca) [#&#8203;38016](https://github.com/nodejs/node/pull/38016)
    
  • [`8b05e32519`](https://github.com/nodejs/node/commit/8b05e32519)] - **test**: fix flaky test-net-timeout (Rich Trott) [#&#8203;38060](https://github.com/nodejs/node/pull/38060)
    
  • [`a0492ba391`](https://github.com/nodejs/node/commit/a0492ba391)] - **test**: fix test-vm-memleak for high baseline platforms (Rich Trott) [#&#8203;38062](https://github.com/nodejs/node/pull/38062)
    
  • [`30d7f05fef`](https://github.com/nodejs/node/commit/30d7f05fef)] - **test**: improve code coverage in webcrypto API (Juan José Arboleda) [#&#8203;38052](https://github.com/nodejs/node/pull/38052)
    
  • [`d75543d8b5`](https://github.com/nodejs/node/commit/d75543d8b5)] - **test**: fix flaky timeout-delayed-body and headers tests (Nitzan Uziely) [#&#8203;38045](https://github.com/nodejs/node/pull/38045)
    
  • [`4f387c25cb`](https://github.com/nodejs/node/commit/4f387c25cb)] - **test**: fix flaky test-vm-memleak (Rich Trott) [#&#8203;38054](https://github.com/nodejs/node/pull/38054)
    
  • [`330f25ef82`](https://github.com/nodejs/node/commit/330f25ef82)] - **test**: prepare for consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930)
    
  • [`31fe3b215f`](https://github.com/nodejs/node/commit/31fe3b215f)] - **test**: make sure http pipelining does not emit a warning (Matteo Collina) [#&#8203;37964](https://github.com/nodejs/node/pull/37964)
    
  • [`978bbf987c`](https://github.com/nodejs/node/commit/978bbf987c)] - **test**: fix flaky test-http2-pack-end-stream-flag (James M Snell) [#&#8203;37814](https://github.com/nodejs/node/pull/37814)
    
  • [`ecc584251e`](https://github.com/nodejs/node/commit/ecc584251e)] - **test**: fixup flaky test-performance-function-async test (James M Snell) [#&#8203;37493](https://github.com/nodejs/node/pull/37493)
    
  • [`32482a828b`](https://github.com/nodejs/node/commit/32482a828b)] - **test**: remove FLAKY for test-domain-error-types (Rich Trott) [#&#8203;37458](https://github.com/nodejs/node/pull/37458)
    
  • [`501ae0e6e3`](https://github.com/nodejs/node/commit/501ae0e6e3)] - **test**: remove outdated V8 flag (Michaël Zasso) [#&#8203;37151](https://github.com/nodejs/node/pull/37151)
    
  • [`fa3997d75a`](https://github.com/nodejs/node/commit/fa3997d75a)] - **test**: mark test-return-on-exit as flaky (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`896ae96a15`](https://github.com/nodejs/node/commit/896ae96a15)] - **test**: mark WASI's test-return-on-exit as flaky (Colin Ihrig) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`0da7a11e54`](https://github.com/nodejs/node/commit/0da7a11e54)] - **test,http**: check that http server is robust from handler abuse (Rich Trott) [#&#8203;37958](https://github.com/nodejs/node/pull/37958)
    
  • [`a0261d231c`](https://github.com/nodejs/node/commit/a0261d231c)] - ***Revert*** "**timers**: refactor to use optional chaining" (Matteo Collina) [#&#8203;38245](https://github.com/nodejs/node/pull/38245)
    
  • [`3da003cc1c`](https://github.com/nodejs/node/commit/3da003cc1c)] - **tls**: fix session and keylog add listener segfault (Nitzan Uziely) [#&#8203;38180](https://github.com/nodejs/node/pull/38180)
    
  • [`eb20447407`](https://github.com/nodejs/node/commit/eb20447407)] - **tls**: extract out SecureContext configuration (James M Snell) [#&#8203;38116](https://github.com/nodejs/node/pull/38116)
    
  • [`b16e79e05b`](https://github.com/nodejs/node/commit/b16e79e05b)] - **tls**: fix typo (Arkerone) [#&#8203;38129](https://github.com/nodejs/node/pull/38129)
    
  • [`d4f33f109e`](https://github.com/nodejs/node/commit/d4f33f109e)] - **tools**: skip macOS GitHub Actions test on doc-only changes (Rich Trott) [#&#8203;38296](https://github.com/nodejs/node/pull/38296)
    
  • [`13d0de5954`](https://github.com/nodejs/node/commit/13d0de5954)] - **tools**: set arch in Distribution.xml (Ash Cripps) [#&#8203;38261](https://github.com/nodejs/node/pull/38261)
    
  • [`28bca33f28`](https://github.com/nodejs/node/commit/28bca33f28)] - **tools**: update ESLint to 7.24.0 (Colin Ihrig) [#&#8203;38179](https://github.com/nodejs/node/pull/38179)
    
  • [`038608d401`](https://github.com/nodejs/node/commit/038608d401)] - **tools**: relax max-len lint rule for template strings (Rich Trott) [#&#8203;38097](https://github.com/nodejs/node/pull/38097)
    
  • [`e67fb569f4`](https://github.com/nodejs/node/commit/e67fb569f4)] - **tools**: apply consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930)
    
  • [`9843361c07`](https://github.com/nodejs/node/commit/9843361c07)] - **tools**: update V8 gypfiles for 9.0 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587)
    
  • [`017661768a`](https://github.com/nodejs/node/commit/017661768a)] - **tools**: update V8 gypfiles for 8.9 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330)
    
  • [`79da253473`](https://github.com/nodejs/node/commit/79da253473)] - **tools**: update V8 gypfiles for 8.8 (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139)
    
  • [`770d9e2542`](https://github.com/nodejs/node/commit/770d9e2542)] - **tools**: update V8 gypfiles for 8.7 (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700)
    
  • [`b87f1be92d`](https://github.com/nodejs/node/commit/b87f1be92d)] - **typings**: add types for "http_parser" and "options" bindings (Michaël Zasso) [#&#8203;38239](https://github.com/nodejs/node/pull/38239)
    
  • [`1c8b2956d1`](https://github.com/nodejs/node/commit/1c8b2956d1)] - **typings**: add types for internalBinding('serdes') (Michaël Zasso) [#&#8203;38204](https://github.com/nodejs/node/pull/38204)
    
  • [`d97787fccc`](https://github.com/nodejs/node/commit/d97787fccc)] - **typings**: add JSDoc to os module functions (David Brownman) [#&#8203;38197](https://github.com/nodejs/node/pull/38197)
    
  • [`8acfe5c2a4`](https://github.com/nodejs/node/commit/8acfe5c2a4)] - **typings**: add JSDoc Types to lib/querystring (Simon Knott) [#&#8203;38185](https://github.com/nodejs/node/pull/38185)
    
  • [`d3162da8dd`](https://github.com/nodejs/node/commit/d3162da8dd)] - **typings**: add JSDoc typings for http (Voltrex) [#&#8203;38191](https://github.com/nodejs/node/pull/38191)
    
  • [`82d59882b1`](https://github.com/nodejs/node/commit/82d59882b1)] - **typings**: add JSDoc typings for assert (Voltrex) [#&#8203;38188](https://github.com/nodejs/node/pull/38188)
    
  • [`f1a21e5c91`](https://github.com/nodejs/node/commit/f1a21e5c91)] - **typings**: add JSDoc types to lib/path (Simon Knott) [#&#8203;38186](https://github.com/nodejs/node/pull/38186)
    
  • [`3377eb9641`](https://github.com/nodejs/node/commit/3377eb9641)] - **typings**: add types for internalBinding('util') (Michaël Zasso) [#&#8203;38200](https://github.com/nodejs/node/pull/38200)
    
  • [`cb2bdc632a`](https://github.com/nodejs/node/commit/cb2bdc632a)] - **typings**: add types for internalBinding('fs') (Michaël Zasso) [#&#8203;38198](https://github.com/nodejs/node/pull/38198)
    
  • [`26eed3e0ed`](https://github.com/nodejs/node/commit/26eed3e0ed)] - **vm**: add import assertion support (Gus Caplan) [#&#8203;37176](https://github.com/nodejs/node/pull/37176)
    
  • [`6986fa07eb`](https://github.com/nodejs/node/commit/6986fa07eb)] - **worker**: fix exit code for error thrown in handler (Nitzan Uziely) [#&#8203;38012](https://github.com/nodejs/node/pull/38012)
    
    

v15.14.0

Compare Source

This is a security release.

Notable Changes

Vulnerabilties Fixed:

  • CVE-2021-3450: OpenSSL - CA certificate check bypass with X509_V_FLAG_X509_STRICT (High)
  • CVE-2021-3449: OpenSSL - NULL pointer deref in signature_algorithms processing (High)
  • CVE-2020-7774: npm upgrade - Update y18n to fix Prototype-Pollution (High)

Other Notable Changes:

  • [`b6f4901221`](https://github.com/nodejs/node/commit/b6f4901221)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490)
    
  • [`0709cbb7fe`](https://github.com/nodejs/node/commit/0709cbb7fe)] - **(SEMVER-MINOR)** **net**: allow net.BlockList to use net.SocketAddress objects (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`daa8a7bbcf`](https://github.com/nodejs/node/commit/daa8a7bbcf)] - **(SEMVER-MINOR)** **net**: add SocketAddress class (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`a4169ce519`](https://github.com/nodejs/node/commit/a4169ce519)] - **(SEMVER-MINOR)** **net**: make net.BlockList cloneable (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`669b81c68b`](https://github.com/nodejs/node/commit/669b81c68b)] - **(SEMVER-MINOR)** **net,tls**: add abort signal support to connect (Nitzan Uziely) [#&#8203;37735](https://github.com/nodejs/node/pull/37735)
    
  • [`a1123f0a29`](https://github.com/nodejs/node/commit/a1123f0a29)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932)
    
    
Commits
  • [`ac69b95e47`](https://github.com/nodejs/node/commit/ac69b95e47)] - **crypto**: use correct webcrypto RSASSA-PKCS1-v1\_5 algorithm name (Filip Skokan) [#&#8203;38029](https://github.com/nodejs/node/pull/38029)
    
  • [`960c6be229`](https://github.com/nodejs/node/commit/960c6be229)] - **crypto**: add buffering to randomInt (Tobias Nießen) [#&#8203;35110](https://github.com/nodejs/node/pull/35110)
    
  • [`4ef102d34e`](https://github.com/nodejs/node/commit/4ef102d34e)] - **deps**: update to cjs-module-lexer@1.1.1 (Guy Bedford) [#&#8203;37992](https://github.com/nodejs/node/pull/37992)
    
  • [`f0e77149a4`](https://github.com/nodejs/node/commit/f0e77149a4)] - **deps**: update archs files for OpenSSL-1.1.1k (Hassaan Pasha) [#&#8203;37916](https://github.com/nodejs/node/pull/37916)
    
  • [`bbdcdad2c6`](https://github.com/nodejs/node/commit/bbdcdad2c6)] - **deps**: upgrade openssl sources to 1.1.1k+quic (Hassaan Pasha) [#&#8203;37916](https://github.com/nodejs/node/pull/37916)
    
  • [`913ec56798`](https://github.com/nodejs/node/commit/913ec56798)] - **deps**: cjs-module-lexer: cherry-pick [`22093e7`](https://github.com/nodejs/node/commit/22093e765f) (pezhmanparsaee) [#&#8203;37895](https://github.com/nodejs/node/pull/37895)
    
  • [`afc6ab2122`](https://github.com/nodejs/node/commit/afc6ab2122)] - **doc**: fix asyncLocalStorage.run() description (Darkripper214) [#&#8203;38023](https://github.com/nodejs/node/pull/38023)
    
  • [`b40d35d649`](https://github.com/nodejs/node/commit/b40d35d649)] - **doc**: document how to unref stdin when using readline.Interface (Anu Pasumarthy) [#&#8203;38019](https://github.com/nodejs/node/pull/38019)
    
  • [`ce14080473`](https://github.com/nodejs/node/commit/ce14080473)] - **doc**: move psmarshall to collaborators emeriti (Peter Marshall) [#&#8203;37994](https://github.com/nodejs/node/pull/37994)
    
  • [`ae70aa3c63`](https://github.com/nodejs/node/commit/ae70aa3c63)] - **doc**: add distinctive color for code elements inside links (Antoine du Hamel) [#&#8203;37950](https://github.com/nodejs/node/pull/37950)
    
  • [`8792c7c96b`](https://github.com/nodejs/node/commit/8792c7c96b)] - **doc**: add missing events.on metadata (Anna Henningsen) [#&#8203;37965](https://github.com/nodejs/node/pull/37965)
    
  • [`a57dc06adf`](https://github.com/nodejs/node/commit/a57dc06adf)] - **doc**: improve Buffer's encoding documentation (Michaël Zasso) [#&#8203;37945](https://github.com/nodejs/node/pull/37945)
    
  • [`f3fabb57cf`](https://github.com/nodejs/node/commit/f3fabb57cf)] - **doc**: add missing cleanup step in OpenSSL upgrade (Tobias Nießen) [#&#8203;37927](https://github.com/nodejs/node/pull/37927)
    
  • [`13c3924af8`](https://github.com/nodejs/node/commit/13c3924af8)] - **doc**: add Windows-specific info to subprocess.kill() (João Lucas Lucchetta) [#&#8203;34867](https://github.com/nodejs/node/pull/34867)
    
  • [`b6f4901221`](https://github.com/nodejs/node/commit/b6f4901221)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490)
    
  • [`ad7e34446c`](https://github.com/nodejs/node/commit/ad7e34446c)] - **fs**: fix chown abort (Darshan Sen) [#&#8203;38004](https://github.com/nodejs/node/pull/38004)
    
  • [`d86aca9a77`](https://github.com/nodejs/node/commit/d86aca9a77)] - **http**: optimize debug function correctly (Michaël Zasso) [#&#8203;37966](https://github.com/nodejs/node/pull/37966)
    
  • [`062541aae5`](https://github.com/nodejs/node/commit/062541aae5)] - **http2**: add specific error code for custom frames (Anna Henningsen) [#&#8203;37936](https://github.com/nodejs/node/pull/37936)
    
  • [`8525231902`](https://github.com/nodejs/node/commit/8525231902)] - **lib**: change wording in lib/domain.js comment (Akhil Marsonya) [#&#8203;37933](https://github.com/nodejs/node/pull/37933)
    
  • [`21e399be4c`](https://github.com/nodejs/node/commit/21e399be4c)] - **lib**: change wording in lib/internal/child_process comment (Akhil Marsonya) [#&#8203;37903](https://github.com/nodejs/node/pull/37903)
    
  • [`3ab9619e56`](https://github.com/nodejs/node/commit/3ab9619e56)] - **module**: improve error message for invalid data URL (Antoine du Hamel) [#&#8203;37701](https://github.com/nodejs/node/pull/37701)
    
  • [`0709cbb7fe`](https://github.com/nodejs/node/commit/0709cbb7fe)] - **(SEMVER-MINOR)** **net**: allow net.BlockList to use net.SocketAddress objects (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`daa8a7bbcf`](https://github.com/nodejs/node/commit/daa8a7bbcf)] - **(SEMVER-MINOR)** **net**: add SocketAddress class (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`a4169ce519`](https://github.com/nodejs/node/commit/a4169ce519)] - **(SEMVER-MINOR)** **net**: make net.BlockList cloneable (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`669b81c68b`](https://github.com/nodejs/node/commit/669b81c68b)] - **(SEMVER-MINOR)** **net,tls**: add abort signal support to connect (Nitzan Uziely) [#&#8203;37735](https://github.com/nodejs/node/pull/37735)
    
  • [`a94cc27cbe`](https://github.com/nodejs/node/commit/a94cc27cbe)] - **path**: refactor to use more primordials (Akhil Marsonya) [#&#8203;37893](https://github.com/nodejs/node/pull/37893)
    
  • [`6cc1e15669`](https://github.com/nodejs/node/commit/6cc1e15669)] - **readline**: fix pre-aborted signal question handling (Nitzan Uziely) [#&#8203;37929](https://github.com/nodejs/node/pull/37929)
    
  • [`a1123f0a29`](https://github.com/nodejs/node/commit/a1123f0a29)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932)
    
  • [`629e72e9f4`](https://github.com/nodejs/node/commit/629e72e9f4)] - **src**: fix typo in node_mutex (Tobias Nießen) [#&#8203;38011](https://github.com/nodejs/node/pull/38011)
    
  • [`e61cc0bfb0`](https://github.com/nodejs/node/commit/e61cc0bfb0)] - **src**: fix typos in crypto comments (Tobias Nießen) [#&#8203;38024](https://github.com/nodejs/node/pull/38024)
    
  • [`6ad0b6f0f5`](https://github.com/nodejs/node/commit/6ad0b6f0f5)] - **src**: fix error handling for CryptoJob::ToResult (Tobias Nießen) [#&#8203;37076](https://github.com/nodejs/node/pull/37076)
    
  • [`3175559bed`](https://github.com/nodejs/node/commit/3175559bed)] - **test**: add extra space in test failure output (Qingyu Deng) [#&#8203;37957](https://github.com/nodejs/node/pull/37957)
    
  • [`0243376cfc`](https://github.com/nodejs/node/commit/0243376cfc)] - **test**: use faster variant for rss (Pooja D P) [#&#8203;36839](https://github.com/nodejs/node/pull/36839)
    
  • [`b02c352ad6`](https://github.com/nodejs/node/commit/b02c352ad6)] - **test**: fix test-tls-no-sslv3 for OpenSSL 3 (Richard Lau) [#&#8203;38027](https://github.com/nodejs/node/pull/38027)
    
  • [`0db1a1eacf`](https://github.com/nodejs/node/commit/0db1a1eacf)] - **test**: deflake test-fs-read-optional-params (Luigi Pinca) [#&#8203;37991](https://github.com/nodejs/node/pull/37991)
    
  • [`4d50975cd7`](https://github.com/nodejs/node/commit/4d50975cd7)] - **test**: improve clarity of ALS-enable-disable.js (Darkripper214) [#&#8203;38008](https://github.com/nodejs/node/pull/38008)
    
  • [`5e15ae05d0`](https://github.com/nodejs/node/commit/5e15ae05d0)] - **test**: add DataView test case for v8 serdes (Rich Trott) [#&#8203;37955](https://github.com/nodejs/node/pull/37955)
    
  • [`6d28a24f1c`](https://github.com/nodejs/node/commit/6d28a24f1c)] - **tools**: update ESLint to 7.23.0 (Luigi Pinca) [#&#8203;37979](https://github.com/nodejs/node/pull/37979)
    
  • [`51e7a33d54`](https://github.com/nodejs/node/commit/51e7a33d54)] - **tools,doc**: add "legacy" badge in the TOC (Antoine du Hamel) [#&#8203;37949](https://github.com/nodejs/node/pull/37949)
    
  • [`570fbcef93`](https://github.com/nodejs/node/commit/570fbcef93)] - **url**: forbid pipe in URL host (Darshan Sen) [#&#8203;37877](https://github.com/nodejs/node/pull/37877)
    
    

v15.13.0

Compare Source

Notable Changes
  • buffer:
    • implement btoa and atob (James M Snell) #​37529
  • deps:
  • doc:
  • http:
    • add http.ClientRequest.getRawHeaderNames() (simov) #​37660
Commits
  • [`dc9cd43d8f`](https://github.com/nodejs/node/commit/dc9cd43d8f)] - **(SEMVER-MINOR)** **buffer**: implement btoa and atob (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529)
    
  • [`377830fd28`](https://github.com/nodejs/node/commit/377830fd28)] - **child_process**: remove unused argument (Rich Trott) [#&#8203;37923](https://github.com/nodejs/node/pull/37923)
    
  • [`cdfc1c8692`](https://github.com/nodejs/node/commit/cdfc1c8692)] - **child_process**: cleanup AbortSignal duplication (Nitzan Uziely) [#&#8203;37823](https://github.com/nodejs/node/pull/37823)
    
  • [`95aa032413`](https://github.com/nodejs/node/commit/95aa032413)] - **(SEMVER-MINOR)** **child_process**: add timeout to spawn and fork (Nitzan Uziely) [#&#8203;37256](https://github.com/nodejs/node/pull/37256)
    
  • [`50fc6b9df0`](https://github.com/nodejs/node/commit/50fc6b9df0)] - **crypto**: clear errors in SignTraits::DeriveBits (Filip Skokan) [#&#8203;37820](https://github.com/nodejs/node/pull/37820)
    
  • [`79259389a1`](https://github.com/nodejs/node/commit/79259389a1)] - **crypto**: fix DiffieHellman argument validation (Antoine du Hamel) [#&#8203;37810](https://github.com/nodejs/node/pull/37810)
    
  • [`11d45855cd`](https://github.com/nodejs/node/commit/11d45855cd)] - **crypto**: fix header name (Jiawen Geng) [#&#8203;37792](https://github.com/nodejs/node/pull/37792)
    
  • [`c37806d0ba`](https://github.com/nodejs/node/commit/c37806d0ba)] - **crypto**: use macro map for NodeCryptoError (Darshan Sen) [#&#8203;37758](https://github.com/nodejs/node/pull/37758)
    
  • [`bfe3f21ee0`](https://github.com/nodejs/node/commit/bfe3f21ee0)] - **crypto**: fix crypto.verify callback invocation with a private keyobject (Filip Skokan) [#&#8203;37795](https://github.com/nodejs/node/pull/37795)
    
  • [`f2cef54b6f`](https://github.com/nodejs/node/commit/f2cef54b6f)] - **deps**: upgrade npm to 7.7.6 (Ruy Adorno) [#&#8203;37968](https://github.com/nodejs/node/pull/37968)
    
  • [`ec82feb728`](https://github.com/nodejs/node/commit/ec82feb728)] - **deps**: upgrade npm to 7.7.5 (Ruy Adorno) [#&#8203;37919](https://github.com/nodejs/node/pull/37919)
    
  • [`649e04c4a5`](https://github.com/nodejs/node/commit/649e04c4a5)] - **deps**: upgrade npm to 7.7.4 (Ruy Adorno) [#&#8203;37897](https://github.com/nodejs/node/pull/37897)
    
  • [`d5b472b70d`](https://github.com/nodejs/node/commit/d5b472b70d)] - **deps**: upgrade npm to 7.7.0 (Ruy Adorno) [#&#8203;37879](https://github.com/nodejs/node/pull/37879)
    
  • [`9e6aa190e3`](https://github.com/nodejs/node/commit/9e6aa190e3)] - **deps**: add ngtcp2 and nghttp3 (James M Snell) [#&#8203;37682](https://github.com/nodejs/node/pull/37682)
    
  • [`659fc5d684`](https://github.com/nodejs/node/commit/659fc5d684)] - **doc**: fix typos in lib/internal/bootstrap/pre_execution.js (marsonya) [#&#8203;37658](https://github.com/nodejs/node/pull/37658)
    
  • [`ac60d018e2`](https://github.com/nodejs/node/commit/ac60d018e2)] - **doc**: add more commands for cherry-picking and changelog to release docs (Danielle Adams) [#&#8203;37785](https://github.com/nodejs/node/pull/37785)
    
  • [`0fe3c7edd3`](https://github.com/nodejs/node/commit/0fe3c7edd3)] - **doc**: spell out ICU acronym on first occurrence (Rich Trott) [#&#8203;37942](https://github.com/nodejs/node/pull/37942)
    
  • [`364c8ac40d`](https://github.com/nodejs/node/commit/364c8ac40d)] - **doc**: update GOVERNANCE.md for TSC Charter changes (Rich Trott) [#&#8203;37888](https://github.com/nodejs/node/pull/37888)
    
  • [`e84252b35d`](https://github.com/nodejs/node/commit/e84252b35d)] - **doc**: reduce header nesting in async_hooks.md (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839)
    
  • [`a6f21e2cfc`](https://github.com/nodejs/node/commit/a6f21e2cfc)] - **doc**: fix wording in outgoingMessage.write (Tobias Nießen) [#&#8203;37894](https://github.com/nodejs/node/pull/37894)
    
  • [`30bc2e43e4`](https://github.com/nodejs/node/commit/30bc2e43e4)] - **doc**: add examples for WHATWG URL objects (James M Snell) [#&#8203;37822](https://github.com/nodejs/node/pull/37822)
    
  • [`c0a424f3e9`](https://github.com/nodejs/node/commit/c0a424f3e9)] - **doc**: clarify when child process 'spawn' event is \*not\* emitted (Matthew Francis Brunetti) [#&#8203;37833](https://github.com/nodejs/node/pull/37833)
    
  • [`9defe10371`](https://github.com/nodejs/node/commit/9defe10371)] - **doc**: fix legacy stability indicator display (Rich Trott) [#&#8203;37838](https://github.com/nodejs/node/pull/37838)
    
  • [`f97a5dd22f`](https://github.com/nodejs/node/commit/f97a5dd22f)] - **doc**: use sentence-style capitlaztion in template header (Rich Trott) [#&#8203;37837](https://github.com/nodejs/node/pull/37837)
    
  • [`71fde07274`](https://github.com/nodejs/node/commit/71fde07274)] - **doc**: add Ayase-252 to triagers (Qingyu Deng) [#&#8203;37781](https://github.com/nodejs/node/pull/37781)
    
  • [`8f18133de0`](https://github.com/nodejs/node/commit/8f18133de0)] - **doc**: use sentence case in issues.md headers (marsonya) [#&#8203;37537](https://github.com/nodejs/node/pull/37537)
    
  • [`3376051a0e`](https://github.com/nodejs/node/commit/3376051a0e)] - **doc**: fix JS flavor selection (Antoine du Hamel) [#&#8203;37791](https://github.com/nodejs/node/pull/37791)
    
  • [`b09d032683`](https://github.com/nodejs/node/commit/b09d032683)] - **doc**: move Derek Lewis back to collaborators (Derek Lewis) [#&#8203;37726](https://github.com/nodejs/node/pull/37726)
    
  • [`6da0a0e85a`](https://github.com/nodejs/node/commit/6da0a0e85a)] - **doc**: apply style for legacy status (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784)
    
  • [`185d4cd4aa`](https://github.com/nodejs/node/commit/185d4cd4aa)] - **doc**: revoke deprecation of legacy url, change status to legacy (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784)
    
  • [`9d160daa89`](https://github.com/nodejs/node/commit/9d160daa89)] - **doc**: add legacy status to stability index (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784)
    
  • [`4700042a9b`](https://github.com/nodejs/node/commit/4700042a9b)] - **doc**: add [@&#8203;linkgoron](https://github.com/linkgoron) to collaborators (Nitzan Uziely) [#&#8203;37817](https://github.com/nodejs/node/pull/37817)
    
  • [`c4183bbea4`](https://github.com/nodejs/node/commit/c4183bbea4)] - **doc**: fix AbortError example for timers (dbachko) [#&#8203;37738](https://github.com/nodejs/node/pull/37738)
    
  • [`50f3ad1946`](https://github.com/nodejs/node/commit/50f3ad1946)] - **doc**: fix typo in stream docs (Ian Kerins) [#&#8203;37716](https://github.com/nodejs/node/pull/37716)
    
  • [`2e82a97520`](https://github.com/nodejs/node/commit/2e82a97520)] - **doc**: add gyp maintain info (Jiawen Geng) [#&#8203;37765](https://github.com/nodejs/node/pull/37765)
    
  • [`3925458df7`](https://github.com/nodejs/node/commit/3925458df7)] - **doc,tools**: use only one level 1 header per page (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839)
    
  • [`e9c161ce12`](https://github.com/nodejs/node/commit/e9c161ce12)] - **http**: fix double AbortSignal registration (Nitzan Uziely) [#&#8203;37730](https://github.com/nodejs/node/pull/37730)
    
  • [`a5205819d8`](https://github.com/nodejs/node/commit/a5205819d8)] - **(SEMVER-MINOR)** **http**: add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660)
    
  • [`1c043272ea`](https://github.com/nodejs/node/commit/1c043272ea)] - **http2**: treat non-EOF empty frames like other invalid frames (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875)
    
  • [`a5bf7de6eb`](https://github.com/nodejs/node/commit/a5bf7de6eb)] - **http2**: fix setting options before handle exists (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875)
    
  • [`af7489cb6c`](https://github.com/nodejs/node/commit/af7489cb6c)] - **lib**: add brand checks to AbortController and AbortSignal (Mattias Buelens) [#&#8203;37720](https://github.com/nodejs/node/pull/37720)
    
  • [`6e2b60931c`](https://github.com/nodejs/node/commit/6e2b60931c)] - **lib**: fix typo in internal/modules/esm/module_job.js (marsonya) [#&#8203;37773](https://github.com/nodejs/node/pull/37773)
    
  • [`3a440ecdf8`](https://github.com/nodejs/node/commit/3a440ecdf8)] - **lib**: fix typo in lib/internal/crypto/certificate.js (marsonya) [#&#8203;37741](https://github.com/nodejs/node/pull/37741)
    
  • [`3ab223dd32`](https://github.com/nodejs/node/commit/3ab223dd32)] - **node-api**: fix crash in finalization (Michael Dawson) [#&#8203;37876](https://github.com/nodejs/node/pull/37876)
    
  • [`d1a3e0efb6`](https://github.com/nodejs/node/commit/d1a3e0efb6)] - **node-api**: stop ref gc during environment teardown (Gabriel Schulhof) [#&#8203;37616](https://github.com/nodejs/node/pull/37616)
    
  • [`e60bd1a7dc`](https://github.com/nodejs/node/commit/e60bd1a7dc)] - **(SEMVER-MINOR)** **perf_hooks**: make Performance extend EventTarget (Michaël Zasso) [#&#8203;37621](https://github.com/nodejs/node/pull/37621)
    
  • [`b6ad8e4cc1`](https://github.com/nodejs/node/commit/b6ad8e4cc1)] - **src**: indent long help text properly (David Glasser) [#&#8203;37911](https://github.com/nodejs/node/pull/37911)
    
  • [`13ecff63d6`](https://github.com/nodejs/node/commit/13ecff63d6)] - **src**: document newer values for --unhandled-rejections flag (David Glasser) [#&#8203;37899](https://github.com/nodejs/node/pull/37899)
    
  • [`bd87e195ed`](https://github.com/nodejs/node/commit/bd87e195ed)] - **src**: fix typo in src code guide (Tobias Nießen) [#&#8203;37956](https://github.com/nodejs/node/pull/37956)
    
  • [`2da532cef8`](https://github.com/nodejs/node/commit/2da532cef8)] - **src**: report idle time correctly (Stephen Belanger) [#&#8203;37868](https://github.com/nodejs/node/pull/37868)
    
  • [`836cb67945`](https://github.com/nodejs/node/commit/836cb67945)] - **src**: add .note.GNU-stack section (James Addison) [#&#8203;37688](https://github.com/nodejs/node/pull/37688)
    
  • [`9557dda2eb`](https://github.com/nodejs/node/commit/9557dda2eb)] - **(SEMVER-MINOR)** **stream**: pipeline accept Buffer as a valid first argument (Nitzan Uziely) [#&#8203;37739](https://github.com/nodejs/node/pull/37739)
    
  • [`43c3b43ea3`](https://github.com/nodejs/node/commit/43c3b43ea3)] - **stream**: make Readable.from performance better (wwwzbwcom) [#&#8203;37609](https://github.com/nodejs/node/pull/37609)
    
  • [`b0226b39f2`](https://github.com/nodejs/node/commit/b0226b39f2)] - **test**: split promisified timers test for coverage purposes (Rich Trott) [#&#8203;37943](https://github.com/nodejs/node/pull/37943)
    
  • [`e256c4d11d`](https://github.com/nodejs/node/commit/e256c4d11d)] - **test**: fix typeof comparison (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924)
    
  • [`76ebc4bbd9`](https://github.com/nodejs/node/commit/76ebc4bbd9)] - **test**: increase wiggle room for memory in test-worker-resource-limits (Rich Trott) [#&#8203;37901](https://github.com/nodejs/node/pull/37901)
    
  • [`5cdeb76708`](https://github.com/nodejs/node/commit/5cdeb76708)] - **test**: add OpenSSL 3.0 checks to tls-passphrase (Daniel Bevenius) [#&#8203;37860](https://github.com/nodejs/node/pull/37860)
    
  • [`33c35a38dc`](https://github.com/nodejs/node/commit/33c35a38dc)] - **test**: add OpenSSL 3.0 checks to test-crypto-keygen (Daniel Bevenius) [#&#8203;37860](https://github.com/nodejs/node/pull/37860)
    
  • [`86bf341a35`](https://github.com/nodejs/node/commit/86bf341a35)] - **test**: fix deprecation warning in test-doctool-html (Antoine du Hamel) [#&#8203;37858](https://github.com/nodejs/node/pull/37858)
    
  • [`aa529b73b7`](https://github.com/nodejs/node/commit/aa529b73b7)] - **test**: fix ibmi skip message (Tobias Nießen) [#&#8203;37821](https://github.com/nodejs/node/pull/37821)
    
  • [`d9ab1d56ce`](https://github.com/nodejs/node/commit/d9ab1d56ce)] - **test**: fix flaky test-vm-timeout-escape-promise-module-2 (Rich Trott) [#&#8203;37842](https://github.com/nodejs/node/pull/37842)
    
  • [`5d4c610727`](https://github.com/nodejs/node/commit/5d4c610727)] - **test**: remove duplicated test for eventtarget (himself65) [#&#8203;37853](https://github.com/nodejs/node/pull/37853)
    
  • [`44490af948`](https://github.com/nodejs/node/commit/44490af948)] - **test**: relax Y2K38 check in test-fs-utimes-y2K38 (Richard Lau) [#&#8203;37825](https://github.com/nodejs/node/pull/37825)
    
  • [`9bc6fe7eb3`](https://github.com/nodejs/node/commit/9bc6fe7eb3)] - **test**: remove references to unsupported AIX versions (Richard Lau) [#&#8203;37826](https://github.com/nodejs/node/pull/37826)
    
  • [`f07428ae51`](https://github.com/nodejs/node/commit/f07428ae51)] - **test**: remove skip for fixed test-benchmark-fs (Rich Trott) [#&#8203;37803](https://github.com/nodejs/node/pull/37803)
    
  • [`9f61cbd1fd`](https://github.com/nodejs/node/commit/9f61cbd1fd)] - **test**: account for OOM risks in heapsnapshot-near-heap-limit tests (Joyee Cheung) [#&#8203;37761](https://github.com/nodejs/node/pull/37761)
    
  • [`e85f311cf2`](https://github.com/nodejs/node/commit/e85f311cf2)] - **test**: refactor code to use AbortSignal.abort() (Wassim Chegham) [#&#8203;37798](https://github.com/nodejs/node/pull/37798)
    
  • [`6ed9e0bd81`](https://github.com/nodejs/node/commit/6ed9e0bd81)] - **test**: improve test-arm-math-illegal-instruction (marsonya) [#&#8203;37670](https://github.com/nodejs/node/pull/37670)
    
  • [`505f9c95d1`](https://github.com/nodejs/node/commit/505f9c95d1)] - **(SEMVER-MINOR)** **test**: app atob web platform tests (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529)
    
  • [`a8edf1aafe`](https://github.com/nodejs/node/commit/a8edf1aafe)] - **test**: add known_issues test for [#&#8203;13683](https://github.com/nodejs/node/issues/13683) (Rich Trott) [#&#8203;37744](https://github.com/nodejs/node/pull/37744)
    
  • [`4487483d9d`](https://github.com/nodejs/node/commit/4487483d9d)] - **test**: fix test-fs-utimes on non-Y2K38 file systems (Rich Trott) [#&#8203;37707](https://github.com/nodejs/node/pull/37707)
    
  • [`d44b268910`](https://github.com/nodejs/node/commit/d44b268910)] - **timers**: fix arbitrary object clearImmediate errors (Nitzan Uziely) [#&#8203;37824](https://github.com/nodejs/node/pull/37824)
    
  • [`b7e7384109`](https://github.com/nodejs/node/commit/b7e7384109)] - **tools**: improve valid-typeof lint rule (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924)
    
  • [`ca93e52783`](https://github.com/nodejs/node/commit/ca93e52783)] - **tools**: simplify eslint comma-dangle configuration (tools) (Rich Trott) [#&#8203;37883](https://github.com/nodejs/node/pull/37883)
    
  • [`b5879efef1`](https://github.com/nodejs/node/commit/b5879efef1)] - **tools**: improve macos-firewall.sh output (Rich Trott) [#&#8203;37846](https://github.com/nodejs/node/pull/37846)
    
  • [`dbc4804468`](https://github.com/nodejs/node/commit/dbc4804468)] - **tools**: simplify eslint comma-dangle configuration (Rich Trott) [#&#8203;37850](https://github.com/nodejs/node/pull/37850)
    
  • [`0f2e142946`](https://github.com/nodejs/node/commit/0f2e142946)] - **tools**: make genv8constants.py Python3-compatible (Michaël Zasso) [#&#8203;37835](https://github.com/nodejs/node/pull/37835)
    
  • [`b6be472456`](https://github.com/nodejs/node/commit/b6be472456)] - **tools**: update gitignore for CMake (Jiawen Geng) [#&#8203;37793](https://github.com/nodejs/node/pull/37793)
    
  • [`2227aa61ea`](https://github.com/nodejs/node/commit/2227aa61ea)] - **tools**: partially detect quic support in shared_openssl (James M Snell) [#&#8203;37682](https://github.com/nodejs/node/pull/37682)
    
  • [`01dcf4d1d8`](https://github.com/nodejs/node/commit/01dcf4d1d8)] - **tools**: update ESLint to 7.22.0 (Colin Ihrig) [#&#8203;37734](https://github.com/nodejs/node/pull/37734)
    
  • [`3452618905`](https://github.com/nodejs/node/commit/3452618905)] - **tty**: validate file descriptor to avoid int32 overflow (Antoine du Hamel) [#&#8203;37809](https://github.com/nodejs/node/pull/37809)
    
  • [`d33f446abd`](https://github.com/nodejs/node/commit/d33f446abd)] - **util**: remove unreachable inspect code (Rich Trott) [#&#8203;37941](https://github.com/nodejs/node/pull/37941)
    
    

v15.12.0

Compare Source

Notable Changes
  • crypto:
    • add optional callback to crypto.sign and crypto.verify (Filip Skokan) #​37500
    • support JWK objects in create*Key (Filip Skokan) #​37254
  • deps:
    • switch openssl to quictls/openssl (James M Snell) #​37601
    • update to cjs-module-lexer@1.1.0 (Guy Bedford) #​37712
  • fs:
    • improve fsPromises writeFile performance (Nitzan Uziely) #​37610
    • improve fsPromises readFile performance (Nitzan Uziely) #​37608
  • lib:
    • implement AbortSignal.abort() (James M Snell) #​37693
  • node-api:
    • define version 8 (Gabriel Schulhof) #​37652
  • worker:
    • add setEnvironmentData/getEnvironmentData (James M Snell) #​37486
Commits
  • [`44514600b2`](https://github.com/nodejs/node/commit/44514600b2)] - **assert,util**: fix commutativity edge case (Ruben Bridgewater) [#&#8203;37711](https://github.com/nodejs/node/pull/37711)
    
  • [`8666d777cc`](https://github.com/nodejs/node/commit/8666d777cc)] - **benchmark**: add benchmark for fsPromises.writeFile (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610)
    
  • [`e9028eb646`](https://github.com/nodejs/node/commit/e9028eb646)] - **cluster**: restructure to same prototype for cluster child (Yash Ladha) [#&#8203;36610](https://github.com/nodejs/node/pull/36610)
    
  • [`8e1257e26d`](https://github.com/nodejs/node/commit/8e1257e26d)] - **cluster**: clarify construct Handle (Jackson Tian) [#&#8203;37385](https://github.com/nodejs/node/pull/37385)
    
  • [`341ee31e15`](https://github.com/nodejs/node/commit/341ee31e15)] - **crypto**: reconcile duplicated code (James M Snell) [#&#8203;37704](https://github.com/nodejs/node/pull/37704)
    
  • [`a2d08d5dfd`](https://github.com/nodejs/node/commit/a2d08d5dfd)] - **crypto**: add internal error codes (Darshan Sen) [#&#8203;37650](https://github.com/nodejs/node/pull/37650)
    
  • [`922f2f0eb2`](https://github.com/nodejs/node/commit/922f2f0eb2)] - **(SEMVER-MINOR)** **crypto**: add optional callback to crypto.sign and crypto.verify (Filip Skokan) [#&#8203;37500](https://github.com/nodejs/node/pull/37500)
    
  • [`55e522ca23`](https://github.com/nodejs/node/commit/55e522ca23)] - **(SEMVER-MINOR)** **crypto**: support JWK objects in create\*Key (Filip Skokan) [#&#8203;37254](https://github.com/nodejs/node/pull/37254)
    
  • [`33180fad81`](https://github.com/nodejs/node/commit/33180fad81)] - **crypto**: add separate error for INVALID_KEY_TYPE (Darshan Sen) [#&#8203;37555](https://github.com/nodejs/node/pull/37555)
    
  • [`d81b9af1fc`](https://github.com/nodejs/node/commit/d81b9af1fc)] - **crypto**: improve randomUUID performance (Dawid Rusnak) [#&#8203;37243](https://github.com/nodejs/node/pull/37243)
    
  • [`23d654105f`](https://github.com/nodejs/node/commit/23d654105f)] - **crypto,test**: improve hmac coverage with webcrypto tests (obi-el) [#&#8203;37571](https://github.com/nodejs/node/pull/37571)
    
  • [`dfca2fac24`](https://github.com/nodejs/node/commit/dfca2fac24)] - **(SEMVER-MINOR)** **deps**: update to cjs-module-lexer@1.1.0 (Guy Bedford) [#&#8203;37712](https://github.com/nodejs/node/pull/37712)
    
  • [`ce357c0c11`](https://github.com/nodejs/node/commit/ce357c0c11)] - **(SEMVER-MINOR)** **deps**: update archs files for OpenSSL-1.1.1+quic (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601)
    
  • [`6d77b6174f`](https://github.com/nodejs/node/commit/6d77b6174f)] - **(SEMVER-MINOR)** **deps**: switch openssl to quictls/openssl (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601)
    
  • [`3e1a46a6a8`](https://github.com/nodejs/node/commit/3e1a46a6a8)] - **deps**: upgrade npm to 7.6.3 (Ruy Adorno) [#&#8203;37721](https://github.com/nodejs/node/pull/37721)
    
  • [`b2fd00398c`](https://github.com/nodejs/node/commit/b2fd00398c)] - **deps**: V8: cherry-pick [`1648e05`](https://github.com/nodejs/node/commit/1648e050cade) (Colin Ihrig) [#&#8203;37664](https://github.com/nodejs/node/pull/37664)
    
  • [`7422453072`](https://github.com/nodejs/node/commit/7422453072)] - **deps**: upgrade npm to 7.6.1 (Ruy Adorno) [#&#8203;37606](https://github.com/nodejs/node/pull/37606)
    
  • [`89f3aa92b4`](https://github.com/nodejs/node/commit/89f3aa92b4)] - **doc**: add marsonya as a triager (marsonya) [#&#8203;37667](https://github.com/nodejs/node/pull/37667)
    
  • [`3710857de3`](https://github.com/nodejs/node/commit/3710857de3)] - **doc**: add hints to http.request() options (Luigi Pinca) [#&#8203;37745](https://github.com/nodejs/node/pull/37745)
    
  • [`5d793737d7`](https://github.com/nodejs/node/commit/5d793737d7)] - **(SEMVER-MINOR)** **doc**: update maintaining-openssl guide (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601)
    
  • [`1022d3d947`](https://github.com/nodejs/node/commit/1022d3d947)] - **doc**: recommend checking abortSignal.aborted first (James M Snell) [#&#8203;37714](https://github.com/nodejs/node/pull/37714)
    
  • [`764aa2dcee`](https://github.com/nodejs/node/commit/764aa2dcee)] - **doc**: fix link to googletest fixtures (Tobias Nießen) [#&#8203;37698](https://github.com/nodejs/node/pull/37698)
    
  • [`0d3cc2dc82`](https://github.com/nodejs/node/commit/0d3cc2dc82)] - **doc**: fix typo in description of close event (Tobias Nießen) [#&#8203;37662](https://github.com/nodejs/node/pull/37662)
    
  • [`e55058fed1`](https://github.com/nodejs/node/commit/e55058fed1)] - **doc**: use sentence case in README.md headers (marsonya) [#&#8203;37645](https://github.com/nodejs/node/pull/37645)
    
  • [`e7fc7a4c23`](https://github.com/nodejs/node/commit/e7fc7a4c23)] - **doc**: crypto esm examples (James M Snell) [#&#8203;37594](https://github.com/nodejs/node/pull/37594)
    
  • [`a3abd52e1e`](https://github.com/nodejs/node/commit/a3abd52e1e)] - **doc**: add localPort to http.request() options (Luigi Pinca) [#&#8203;37586](https://github.com/nodejs/node/pull/37586)
    
  • [`705bdfbe3e`](https://github.com/nodejs/node/commit/705bdfbe3e)] - **doc**: fix grammar errors in http document (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265)
    
  • [`e5f7179d1e`](https://github.com/nodejs/node/commit/e5f7179d1e)] - **doc**: add document for http.OutgoingMessage (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265)
    
  • [`7c0ce17e65`](https://github.com/nodejs/node/commit/7c0ce17e65)] - **doc**: fix typo in doc/guides/collaborator-guide.md (marsonya) [#&#8203;37643](https://github.com/nodejs/node/pull/37643)
    
  • [`60d8afa9ab`](https://github.com/nodejs/node/commit/60d8afa9ab)] - **doc**: document that module.evaluate fulfills as undefined (James M Snell) [#&#8203;37663](https://github.com/nodejs/node/pull/37663)
    
  • [`6192315cf3`](https://github.com/nodejs/node/commit/6192315cf3)] - **doc**: remove generated from dsaEncoding description (Marko Kaznovac) [#&#8203;37459](https://github.com/nodejs/node/pull/37459)
    
  • [`e4c8c50b28`](https://github.com/nodejs/node/commit/e4c8c50b28)] - **doc**: fix typos in /doc/api/fs.md (Merlin Luntke) [#&#8203;37557](https://github.com/nodejs/node/pull/37557)
    
  • [`ebc6f41072`](https://github.com/nodejs/node/commit/ebc6f41072)] - **doc**: fix linter issue (Antoine du Hamel) [#&#8203;37657](https://github.com/nodejs/node/pull/37657)
    
  • [`d17aab1775`](https://github.com/nodejs/node/commit/d17aab1775)] - **doc**: add esm examples for assert (James M Snell) [#&#8203;37607](https://github.com/nodejs/node/pull/37607)
    
  • [`366772bf87`](https://github.com/nodejs/node/commit/366772bf87)] - **doc**: add return type of readline.createInterface (Darshan Sen) [#&#8203;37600](https://github.com/nodejs/node/pull/37600)
    
  • [`f50db89a52`](https://github.com/nodejs/node/commit/f50db89a52)] - **doc**: change lang info string in fs JS snippets (Antoine du Hamel) [#&#8203;37605](https://github.com/nodejs/node/pull/37605)
    
  • [`5a9196e0e4`](https://github.com/nodejs/node/commit/5a9196e0e4)] - **doc**: apply sentence case to headers in pull-requests.md (marsonya) [#&#8203;37602](https://github.com/nodejs/node/pull/37602)
    
  • [`05badcf755`](https://github.com/nodejs/node/commit/05badcf755)] - **doc**: fix small typo in 15.11.0 release (Tierney Cyren) [#&#8203;37590](https://github.com/nodejs/node/pull/37590)
    
  • [`e0e7aa1058`](https://github.com/nodejs/node/commit/e0e7aa1058)] - **doc**: add top-level await syntax in vm.md (Antoine du Hamel) [#&#8203;37077](https://github.com/nodejs/node/pull/37077)
    
  • [`732d8ca811`](https://github.com/nodejs/node/commit/732d8ca811)] - **doc**: clarify that columnOffset applies only to the first line (James M Snell) [#&#8203;37563](https://github.com/nodejs/node/pull/37563)
    
  • [`267bbe3412`](https://github.com/nodejs/node/commit/267bbe3412)] - **doc**: document that NODE_EXTRA_CA_CERTS is read only once (James M Snell) [#&#8203;37562](https://github.com/nodejs/node/pull/37562)
    
  • [`f56a805a0d`](https://github.com/nodejs/node/commit/f56a805a0d)] - **doc**: refactor signal info in child_process.md (Darshan Sen) [#&#8203;37528](https://github.com/nodejs/node/pull/37528)
    
  • [`236ba04a79`](https://github.com/nodejs/node/commit/236ba04a79)] - **domain**: add name to monkey-patched emit function (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550)
    
  • [`1c09776106`](https://github.com/nodejs/node/commit/1c09776106)] - **domain**: show falsy names as anonymous for DEP0097 (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550)
    
  • [`5a49e3139e`](https://github.com/nodejs/node/commit/5a49e3139e)] - **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37743](https://github.com/nodejs/node/pull/37743)
    
  • [`e384291c90`](https://github.com/nodejs/node/commit/e384291c90)] - **events**: remove return value on addEventListener (James M Snell) [#&#8203;37696](https://github.com/nodejs/node/pull/37696)
    
  • [`ba91ef2d08`](https://github.com/nodejs/node/commit/ba91ef2d08)] - **fs**: improve fsPromises writeFile performance (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610)
    
  • [`3572299fc2`](https://github.com/nodejs/node/commit/3572299fc2)] - **fs**: add promisified readFile benchmark (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608)
    
  • [`b277776845`](https://github.com/nodejs/node/commit/b277776845)] - **fs**: improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608)
    
  • [`6688569a50`](https://github.com/nodejs/node/commit/6688569a50)] - **http**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37654](https://github.com/nodejs/node/pull/37654)
    
  • [`c737df64fe`](https://github.com/nodejs/node/commit/c737df64fe)] - **http2**: make res.req a normal property (Colin Ihrig) [#&#8203;37706](https://github.com/nodejs/node/pull/37706)
    
  • [`ac2f50b3fd`](https://github.com/nodejs/node/commit/ac2f50b3fd)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.abort() (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693)
    
  • [`12fb2ffc33`](https://github.com/nodejs/node/commit/12fb2ffc33)] - **lib**: use AbortError consistently (James M Snell) [#&#8203;37715](https://github.com/nodejs/node/pull/37715)
    
  • [`e63a25e2ff`](https://github.com/nodejs/node/commit/e63a25e2ff)] - **lib**: fix typo in lib/internal/http2/core.js (marsonya) [#&#8203;37695](https://github.com/nodejs/node/pull/37695)
    
  • [`852f53ed7e`](https://github.com/nodejs/node/commit/852f53ed7e)] - **lib**: fix typo in lib/internal/bootstrap/loaders.js (marsonya) [#&#8203;37644](https://github.com/nodejs/node/pull/37644)
    
  • [`daa4ac54c5`](https://github.com/nodejs/node/commit/daa4ac54c5)] - **lib**: remove use of array destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818)
    
  • [`ae0e76c264`](https://github.com/nodejs/node/commit/ae0e76c264)] - **module**: refactor NativeModule to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37656](https://github.com/nodejs/node/pull/37656)
    
  • [`a86334fbb9`](https://github.com/nodejs/node/commit/a86334fbb9)] - **(SEMVER-MINOR)** **node-api**: define version 8 (Gabriel Schulhof) [#&#8203;37652](https://github.com/nodejs/node/pull/37652)
    
  • [`d28ce328ed`](https://github.com/nodejs/node/commit/d28ce328ed)] - **src**: fix variable name of OnCloseReceived callback (Tobias Nießen) [#&#8203;37521](https://github.com/nodejs/node/pull/37521)
    
  • [`d59c6de7e8`](https://github.com/nodejs/node/commit/d59c6de7e8)] - **src**: add error formatting support (Gus Caplan) [#&#8203;37598](https://github.com/nodejs/node/pull/37598)
    
  • [`33436e39fe`](https://github.com/nodejs/node/commit/33436e39fe)] - **src**: make BaseObject::is_snapshotable virtual (Anna Henningsen) [#&#8203;37539](https://github.com/nodejs/node/pull/37539)
    
  • [`30c62dee1c`](https://github.com/nodejs/node/commit/30c62dee1c)] - **src,test**: support dynamically linking OpenSSL 3.0 (Daniel Bevenius) [#&#8203;37669](https://github.com/nodejs/node/pull/37669)
    
  • [`4bf1f333c7`](https://github.com/nodejs/node/commit/4bf1f333c7)] - **stream,util**: fix "the the" typo in comments (Luigi Pinca) [#&#8203;37674](https://github.com/nodejs/node/pull/37674)
    
  • [`1b53087541`](https://github.com/nodejs/node/commit/1b53087541)] - **(SEMVER-MINOR)** **test**: update dom/abort tests (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693)
    
  • [`c2cb153646`](https://github.com/nodejs/node/commit/c2cb153646)] - **(SEMVER-MINOR)** **test**: fixup test to account for quic openssl version (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601)
    
  • [`ede34aa128`](https://github.com/nodejs/node/commit/ede34aa128)] - **test**: address flaky wpt/test-timers (Rich Trott) [#&#8203;37691](https://github.com/nodejs/node/pull/37691)
    
  • [`ed32cd4e67`](https://github.com/nodejs/node/commit/ed32cd4e67)] - **test**: fixup flaky test-crypto-x509 (Filip Skokan) [#&#8203;37709](https://github.com/nodejs/node/pull/37709)
    
  • [`013b3ff2d4`](https://github.com/nodejs/node/commit/013b3ff2d4)] - **test**: remove unnecessary V8 flag (Antoine du Hamel) [#&#8203;37671](https://github.com/nodejs/node/pull/37671)
    
  • [`cc48816826`](https://github.com/nodejs/node/commit/cc48816826)] - **test**: fix WPT URL tests that fetch JSON data (Michaël Zasso) [#&#8203;37624](https://github.com/nodejs/node/pull/37624)
    
  • [`b0ed1e790e`](https://github.com/nodejs/node/commit/b0ed1e790e)] - **test**: improve error reporting in test-child-process-pipe-dataflow (Rich Trott) [#&#8203;37632](https://github.com/nodejs/node/pull/37632)
    
  • [`f7edb07ec2`](https://github.com/nodejs/node/commit/f7edb07ec2)] - **test**: terminate WPT workers after test completion (Michaël Zasso) [#&#8203;37627](https://github.com/nodejs/node/pull/37627)
    
  • [`b7ef829dac`](https://github.com/nodejs/node/commit/b7ef829dac)] - **test**: ignore WPT worker errors after tests finished (Michaël Zasso) [#&#8203;37626](https://github.com/nodejs/node/pull/37626)
    
  • [`257b1ab225`](https://github.com/nodejs/node/commit/257b1ab225)] - **test**: update Web Platform Tests (Michaël Zasso) [#&#8203;37620](https://github.com/nodejs/node/pull/37620)
    
  • [`1f6341852f`](https://github.com/nodejs/node/commit/1f6341852f)] - **test**: remove FLAKY status for test-async-hooks-http-parser-destroy (Rich Trott) [#&#8203;37636](https://github.com/nodejs/node/pull/37636)
    
  • [`044fd2fc86`](https://github.com/nodejs/node/commit/044fd2fc86)] - **test**: remove FLAKY status for fixed test (Rich Trott) [#&#8203;37633](https://github.com/nodejs/node/pull/37633)
    
  • [`d5ff50d2a7`](https://github.com/nodejs/node/commit/d5ff50d2a7)] - **test**: clear flaky designation for test-stream-pipeline-http2 (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631)
    
  • [`381fb98061`](https://github.com/nodejs/node/commit/381fb98061)] - **test**: clear FLAKY designation for test-http2-pipe (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631)
    
  • [`0582c51754`](https://github.com/nodejs/node/commit/0582c51754)] - **test**: fix wasi/test-return-on-exit on 32-bit systems (Colin Ihrig) [#&#8203;37615](https://github.com/nodejs/node/pull/37615)
    
  • [`0d04b6c043`](https://github.com/nodejs/node/commit/0d04b6c043)] - **test**: fix flaky test-child-process-exec-abortcontroller-promisified (Antoine du Hamel) [#&#8203;37572](https://github.com/nodejs/node/pull/37572)
    
  • [`a44daff34d`](https://github.com/nodejs/node/commit/a44daff34d)] - **test**: update all Web Platform Tests (Michaël Zasso) [#&#8203;37467](https://github.com/nodejs/node/pull/37467)
    
  • [`c09bd77daf`](https://github.com/nodejs/node/commit/c09bd77daf)] - **test**: redownload wpt fixtures with correct encoding (Michaël Zasso) [#&#8203;37467](https://github.com/nodejs/node/pull/37467)
    
  • [`57319770bb`](https://github.com/nodejs/node/commit/57319770bb)] - **test,crypto**: ensure promises resolve in webcrypto tests (Antoine du Hamel) [#&#8203;37653](https://github.com/nodejs/node/pull/37653)
    
  • [`2d9b624668`](https://github.com/nodejs/node/commit/2d9b624668)] - **tls**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37655](https://github.com/nodejs/node/pull/37655)
    
  • [`72af5d9895`](https://github.com/nodejs/node/commit/72af5d9895)] - **tools**: parse changelogs only in the default branch (Antoine du Hamel) [#&#8203;37768](https://github.com/nodejs/node/pull/37768)
    
  • [`bd62771a22`](https://github.com/nodejs/node/commit/bd62771a22)] - **tools**: use bundled npm in update scripts (Ruy Adorno) [#&#8203;37613](https://github.com/nodejs/node/pull/37613)
    
  • [`4de3b8483a`](https://github.com/nodejs/node/commit/4de3b8483a)] - **tools**: update glob-parent to 5.1.2 (Rich Trott) [#&#8203;37646](https://github.com/nodejs/node/pull/37646)
    
  • [`ec71a0f817`](https://github.com/nodejs/node/commit/ec71a0f817)] - **tools**: check version number in YAML comments from changelogs (Antoine du Hamel) [#&#8203;37599](https://github.com/nodejs/node/pull/37599)
    
  • [`07fc61b900`](https://github.com/nodejs/node/commit/07fc61b900)] - **tools**: add support for mjs and cjs JS snippet linting (Antoine du Hamel) [#&#8203;37311](https://github.com/nodejs/node/pull/37311)
    
  • [`440c944420`](https://github.com/nodejs/node/commit/440c944420)] - **tools**: fix object name in prefer-assert-methods.js (Tobias Nießen) [#&#8203;37544](https://github.com/nodejs/node/pull/37544)
    
  • [`7042ec89f1`](https://github.com/nodejs/node/commit/7042ec89f1)] - **tools**: update remark-preset-lint-node to 2.1.1 (Rich Trott) [#&#8203;37604](https://github.com/nodejs/node/pull/37604)
    
  • [`82e78f7c12`](https://github.com/nodejs/node/commit/82e78f7c12)] - **tools**: fix compiler warning in inspector_protocol (Darshan Sen) [#&#8203;37573](https://github.com/nodejs/node/pull/37573)
    
  • [`fd7234c52f`](https://github.com/nodejs/node/commit/fd7234c52f)] - **tools**: make update-eslint.sh work with npm@7 (Luigi Pinca) [#&#8203;37566](https://github.com/nodejs/node/pull/37566)
    
  • [`057c6a842a`](https://github.com/nodejs/node/commit/057c6a842a)] - **tools**: add ESLint rule no-array-destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818)
    
  • [`25a5f0b3b8`](https://github.com/nodejs/node/commit/25a5f0b3b8)] - **tools**: update eslint-plugin-markdown configuration (Colin Ihrig) [#&#8203;37549](https://github.com/nodejs/node/pull/37549)
    
  • [`7a1de1fce9`](https://github.com/nodejs/node/commit/7a1de1fce9)] - **tools**: update ESLint to 7.21.0 (Luigi Pinca) [#&#8203;37546](https://github.com/nodejs/node/pull/37546)
    
  • [`9c0ca4689d`](https://github.com/nodejs/node/commit/9c0ca4689d)] - **tools,doc**: add support for several flavors of JS code snippets (Antoine du Hamel) [#&#8203;37162](https://github.com/nodejs/node/pull/37162)
    
  • [`80af610d95`](https://github.com/nodejs/node/commit/80af610d95)] - **util**: inspect \__proto\_\_ key as written in object literal (Anna Henningsen) [#&#8203;37713](https://github.com/nodejs/node/pull/37713)
    
  • [`0d135e8316`](https://github.com/nodejs/node/commit/0d135e8316)] - **(SEMVER-MINOR)** **worker**: add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486)
    
  • [`8024ffbba4`](https://github.com/nodejs/node/commit/8024ffbba4)] - **worker**: add ports property to MessageEvents (Anna Henningsen) [#&#8203;37538](https://github.com/nodejs/node/pull/37538)
    
  • [`f4fd3fb6a7`](https://github.com/nodejs/node/commit/f4fd3fb6a7)] - **worker**: allow BroadcastChannel in receiveMessageOnPort (Anna Henningsen) [#&#8203;37535](https://github.com/nodejs/node/pull/37535)
    
    

v15.11.0

Compare Source

Notable Changes
  • [`a3e3156b52`](https://github.com/nodejs/node/commit/a3e3156b52)] - **(SEMVER-MINOR)** **crypto**: make FIPS related options always awailable (Vít Ondruch) [#&#8203;36341](https://github.com/nodejs/node/pull/36341)
    
  • [`9ba5c0f9ba`](https://github.com/nodejs/node/commit/9ba5c0f9ba)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362)
    
    
Commits
  • [`d039e6fa80`](https://github.com/nodejs/node/commit/d039e6fa80)] - **assert**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37344](https://github.com/nodejs/node/pull/37344)
    
  • [`d2e5529e08`](https://github.com/nodejs/node/commit/d2e5529e08)] - **bootstrap**: include v8 module into the builtin snapshot (Joyee Cheung) [#&#8203;36943](https://github.com/nodejs/node/pull/36943)
    
  • [`59861bac0e`](https://github.com/nodejs/node/commit/59861bac0e)] - **bootstrap**: include fs module into the builtin snapshot (Joyee Cheung) [#&#8203;36943](https://github.com/nodejs/node/pull/36943)
    
  • [`458a4108b7`](https://github.com/nodejs/node/commit/458a4108b7)] - **buffer**: make Blob's constructor more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361)
    
  • [`0d564ce214`](https://github.com/nodejs/node/commit/0d564ce214)] - **buffer**: make Blob's slice method more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361)
    
  • [`ddae112133`](https://github.com/nodejs/node/commit/ddae112133)] - **child_process**: fix spawn and fork abort behavior (Nitzan Uziely) [#&#8203;37325](https://github.com/nodejs/node/pull/37325)
    
  • [`b1e188de8d`](https://github.com/nodejs/node/commit/b1e188de8d)] - **crypto**: refactor hasAnyNotIn to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37433](https://github.com/nodejs/node/pull/37433)
    
  • [`291d9e9936`](https://github.com/nodejs/node/commit/291d9e9936)] - **crypto**: check ed/x webcrypto key import algorithm names (Filip Skokan) [#&#8203;37305](https://github.com/nodejs/node/pull/37305)
    
  • [`a3e3156b52`](https://github.com/nodejs/node/commit/a3e3156b52)] - **(SEMVER-MINOR)** **crypto**: make FIPS related options always awailable (Vít Ondruch) [#&#8203;36341](https://github.com/nodejs/node/pull/36341)
    
  • [`b634469c38`](https://github.com/nodejs/node/commit/b634469c38)] - **crypto**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37364](https://github.com/nodejs/node/pull/37364)
    
  • [`01773ab614`](https://github.com/nodejs/node/commit/01773ab614)] - **crypto**: use BoringSSL compatible errors (Shelley Vohr) [#&#8203;37297](https://github.com/nodejs/node/pull/37297)
    
  • [`f3d67000a0`](https://github.com/nodejs/node/commit/f3d67000a0)] - **deps**: upgrade npm to 7.6.0 (Ruy Adorno) [#&#8203;37559](https://github.com/nodejs/node/pull/37559)
    
  • [`e1045f1004`](https://github.com/nodejs/node/commit/e1045f1004)] - **deps**: upgrade npm to 7.5.6 (Ruy Adorno) [#&#8203;37496](https://github.com/nodejs/node/pull/37496)
    
  • [`80d3c118f4`](https://github.com/nodejs/node/commit/80d3c118f4)] - **deps**: V8: cherry-pick [`373f4ae`](https://github.com/nodejs/node/commit/373f4ae739ee) (Richard Lau) [#&#8203;37505](https://github.com/nodejs/node/pull/37505)
    
  • [`1408de7e24`](https://github.com/nodejs/node/commit/1408de7e24)] - **deps**: cherry-pick [`8957d46`](https://github.com/nodejs/node/commit/8957d4677aa794c230577f234071af0) from V8 upstream (Antoine du Hamel) [#&#8203;37471](https://github.com/nodejs/node/pull/37471)
    
  • [`725d48ae77`](https://github.com/nodejs/node/commit/725d48ae77)] - **doc**: remove experimental from --enable-source-maps (Colin Ihrig) [#&#8203;37540](https://github.com/nodejs/node/pull/37540)
    
  • [`5d939b7a49`](https://github.com/nodejs/node/commit/5d939b7a49)] - **doc**: fix typo in doc/api/packages.md (marsonya) [#&#8203;37536](https://github.com/nodejs/node/pull/37536)
    
  • [`cbfc6b1692`](https://github.com/nodejs/node/commit/cbfc6b1692)] - **doc**: document how to register external bindings for snapshot (Joyee Cheung) [#&#8203;37463](https://github.com/nodejs/node/pull/37463)
    
  • [`dd7a04dc9f`](https://github.com/nodejs/node/commit/dd7a04dc9f)] - **doc**: fix typo "director" instead of "directory" (humanwebpl) [#&#8203;37523](https://github.com/nodejs/node/pull/37523)
    
  • [`ba81e7cb5e`](https://github.com/nodejs/node/commit/ba81e7cb5e)] - **doc**: revise LTS text in collaborator guide (Rich Trott) [#&#8203;37527](https://github.com/nodejs/node/pull/37527)
    
  • [`7529a97a5c`](https://github.com/nodejs/node/commit/7529a97a5c)] - **doc**: revise CI text in collaborator guide (Rich Trott) [#&#8203;37526](https://github.com/nodejs/node/pull/37526)
    
  • [`1285b907ce`](https://github.com/nodejs/node/commit/1285b907ce)] - **doc**: revise objections section of collaborator guide (Rich Trott) [#&#8203;37525](https://github.com/nodejs/node/pull/37525)
    
  • [`bc86208a0a`](https://github.com/nodejs/node/commit/bc86208a0a)] - **doc**: revise premature disclosure text in collaborator guide (Rich Trott) [#&#8203;37524](https://github.com/nodejs/node/pull/37524)
    
  • [`46af56752e`](https://github.com/nodejs/node/commit/46af56752e)] - **doc**: change links to use HEAD in top level docs (Michael Dawson) [#&#8203;37494](https://github.com/nodejs/node/pull/37494)
    
  • [`3b737e63ce`](https://github.com/nodejs/node/commit/3b737e63ce)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37506](https://github.com/nodejs/node/pull/37506)
    
  • [`fb5e5bed21`](https://github.com/nodejs/node/commit/fb5e5bed21)] - **doc**: fix typo in webcrypto.md (marsonya) [#&#8203;37507](https://github.com/nodejs/node/pull/37507)
    
  • [`3b7cb75554`](https://github.com/nodejs/node/commit/3b7cb75554)] - **doc**: document the NO_COLOR and FORCE_COLOR env vars (James M Snell) [#&#8203;37477](https://github.com/nodejs/node/pull/37477)
    
  • [`0fac27d546`](https://github.com/nodejs/node/commit/0fac27d546)] - **doc**: add url.resolve replacement example (Antoine du Hamel) [#&#8203;37501](https://github.com/nodejs/node/pull/37501)
    
  • [`2228f44b25`](https://github.com/nodejs/node/commit/2228f44b25)] - **doc**: apply sentence case to guides headers (marsonya) [#&#8203;37497](https://github.com/nodejs/node/pull/37497)
    
  • [`617819e4fb`](https://github.com/nodejs/node/commit/617819e4fb)] - **doc**: update CI requirements for landing pull requests (Antoine du Hamel) [#&#8203;37308](https://github.com/nodejs/node/pull/37308)
    
  • [`4a40759b33`](https://github.com/nodejs/node/commit/4a40759b33)] - **doc**: recommend queueMicrotask over process.nextTick (James M Snell) [#&#8203;37484](https://github.com/nodejs/node/pull/37484)
    
  • [`834f63793a`](https://github.com/nodejs/node/commit/834f63793a)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37478](https://github.com/nodejs/node/pull/37478)
    
  • [`7ac0820da0`](https://github.com/nodejs/node/commit/7ac0820da0)] - **doc**: fix typo in doc/api/http2/md (marsonya) [#&#8203;37479](https://github.com/nodejs/node/pull/37479)
    
  • [`4ad7a78448`](https://github.com/nodejs/node/commit/4ad7a78448)] - **doc**: alphabetize vm Module class properties (Rich Trott) [#&#8203;37451](https://github.com/nodejs/node/pull/37451)
    
  • [`a193d7ca87`](https://github.com/nodejs/node/commit/a193d7ca87)] - **doc**: alphabetize crypto Cipher class entries (Rich Trott) [#&#8203;37450](https://github.com/nodejs/node/pull/37450)
    
  • [`54b6f1bcf9`](https://github.com/nodejs/node/commit/54b6f1bcf9)] - **doc**: use HEAD for links in api docs (Michael Dawson) [#&#8203;37437](https://github.com/nodejs/node/pull/37437)
    
  • [`549d24b8ad`](https://github.com/nodejs/node/commit/549d24b8ad)] - **doc**: fix alignment of parameters (Michael Dawson) [#&#8203;37422](https://github.com/nodejs/node/pull/37422)
    
  • [`f3559a922b`](https://github.com/nodejs/node/commit/f3559a922b)] - **doc**: fix typo in doc/api/esm.md (marsonya) [#&#8203;37400](https://github.com/nodejs/node/pull/37400)
    
  • [`c3d236d405`](https://github.com/nodejs/node/commit/c3d236d405)] - **doc**: fix "referred to" in fs docs (Tobias Nießen) [#&#8203;37388](https://github.com/nodejs/node/pull/37388)
    
  • [`9ac8c74539`](https://github.com/nodejs/node/commit/9ac8c74539)] - **doc**: document x509 error codes (Dan Čermák) [#&#8203;37096](https://github.com/nodejs/node/pull/37096)
    
  • [`9a454afcd6`](https://github.com/nodejs/node/commit/9a454afcd6)] - **doc**: fix typo in esm.md (Jay Tailor) [#&#8203;37417](https://github.com/nodejs/node/pull/37417)
    
  • [`b3bf3d9824`](https://github.com/nodejs/node/commit/b3bf3d9824)] - **doc**: use HEAD in links where possible (Michael Dawson) [#&#8203;37421](https://github.com/nodejs/node/pull/37421)
    
  • [`6675342cd9`](https://github.com/nodejs/node/commit/6675342cd9)] - **doc**: clarify that async_hook callbacks cannot be async (James M Snell) [#&#8203;37384](https://github.com/nodejs/node/pull/37384)
    
  • [`4b54c10500`](https://github.com/nodejs/node/commit/4b54c10500)] - **doc**: use \*\*Default:\*\* more consistently (Colin Ihrig) [#&#8203;37387](https://github.com/nodejs/node/pull/37387)
    
  • [`f20ce47dbb`](https://github.com/nodejs/node/commit/f20ce47dbb)] - **doc,child_process**: `pid` can be `undefined` when `ENOENT` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014)
    
  • [`6205e29cb9`](https://github.com/nodejs/node/commit/6205e29cb9)] - **doc,lib**: prepare for stricter multi-line array linting (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088)
    
  • [`9ba5c0f9ba`](https://github.com/nodejs/node/commit/9ba5c0f9ba)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362)
    
  • [`c0cdb83433`](https://github.com/nodejs/node/commit/c0cdb83433)] - **fs**: fix writeFile signal does not close file (Nitzan Uziely) [#&#8203;37402](https://github.com/nodejs/node/pull/37402)
    
  • [`e8b1e2c0a3`](https://github.com/nodejs/node/commit/e8b1e2c0a3)] - **fs**: fix pre-aborted writeFile AbortSignal file leak (Nitzan Uziely) [#&#8203;37393](https://github.com/nodejs/node/pull/37393)
    
  • [`6b42e65983`](https://github.com/nodejs/node/commit/6b42e65983)] - **fs**: fixup negative length in fs.truncate (James M Snell) [#&#8203;37483](https://github.com/nodejs/node/pull/37483)
    
  • [`d141fce634`](https://github.com/nodejs/node/commit/d141fce634)] - **fs**: use createDeferredPromise() in promises.watch() (Colin Ihrig) [#&#8203;37386](https://github.com/nodejs/node/pull/37386)
    
  • [`bb81accb16`](https://github.com/nodejs/node/commit/bb81accb16)] - **lib**: use \<array>.push and \<array>.unshift instead of \<array>.concat (Antoine du Hamel) [#&#8203;37239](https://github.com/nodejs/node/pull/37239)
    
  • [`dc3c299862`](https://github.com/nodejs/node/commit/dc3c299862)] - **lib**: remove outdated todo comment (Antoine du Hamel) [#&#8203;37396](https://github.com/nodejs/node/pull/37396)
    
  • [`856d20b772`](https://github.com/nodejs/node/commit/856d20b772)] - **lib**: add URI handling functions to primordials (Antoine du Hamel) [#&#8203;37394](https://github.com/nodejs/node/pull/37394)
    
  • [`a1ed78cb3b`](https://github.com/nodejs/node/commit/a1ed78cb3b)] - **module**: improve support of data: URLs (Antoine du Hamel) [#&#8203;37392](https://github.com/nodejs/node/pull/37392)
    
  • [`27816eac61`](https://github.com/nodejs/node/commit/27816eac61)] - **node-api**: force env shutdown deferring behavior (Gabriel Schulhof) [#&#8203;37303](https://github.com/nodejs/node/pull/37303)
    
  • [`f1381f7a7a`](https://github.com/nodejs/node/commit/f1381f7a7a)] - **src**: fix alloc-dealloc-mismatch in node_snapshotable.h (Darshan Sen) [#&#8203;37443](https://github.com/nodejs/node/pull/37443)
    
  • [`5ea2ed611f`](https://github.com/nodejs/node/commit/5ea2ed611f)] - **src**: fix ETW_WRITE_EMPTY_EVENT macro (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334)
    
  • [`96bcd52d3e`](https://github.com/nodejs/node/commit/96bcd52d3e)] - **src**: disable unfixable MSVC warnings (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334)
    
  • [`c75f5f372d`](https://github.com/nodejs/node/commit/c75f5f372d)] - **src**: avoid implicit type conversions (take 2) (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334)
    
  • [`e400f8c9c8`](https://github.com/nodejs/node/commit/e400f8c9c8)] - **src**: support serialization of binding data (Joyee Cheung) [#&#8203;36943](https://github.com/nodejs/node/pull/36943)
    
  • [`daad7bbd34`](https://github.com/nodejs/node/commit/daad7bbd34)] - **src**: adjust THP sysfs config token retrieval and file closure (James Addison) [#&#8203;37187](https://github.com/nodejs/node/pull/37187)
    
  • [`4cc76457d9`](https://github.com/nodejs/node/commit/4cc76457d9)] - **stream**: move duplicated code to an internal module (Rich Trott) [#&#8203;37508](https://github.com/nodejs/node/pull/37508)
    
  • [`3d3df0c005`](https://github.com/nodejs/node/commit/3d3df0c005)] - **stream**: add AbortSignal support to finished (Nitzan Uziely) [#&#8203;37354](https://github.com/nodejs/node/pull/37354)
    
  • [`429dffd32e`](https://github.com/nodejs/node/commit/429dffd32e)] - **stream**: add AbortSignal to promisified pipeline (Nitzan Uziely) [#&#8203;37359](https://github.com/nodejs/node/pull/37359)
    
  • [`9696cf7142`](https://github.com/nodejs/node/commit/9696cf7142)] - **test**: remove FLAKY status for test-http2-multistream-destroy-on-read-tls (Rich Trott) [#&#8203;37533](https://github.com/nodejs/node/pull/37533)
    
  • [`453113938d`](https://github.com/nodejs/node/commit/453113938d)] - **test**: make status file names consistent (Rich Trott) [#&#8203;37532](https://github.com/nodejs/node/pull/37532)
    
  • [`00b3446a8e`](https://github.com/nodejs/node/commit/00b3446a8e)] - **test**: account for pending deprecations in esm test (Rich Trott) [#&#8203;37542](https://github.com/nodejs/node/pull/37542)
    
  • [`f2aa305348`](https://github.com/nodejs/node/commit/f2aa305348)] - **test**: fix incorrect timers-promisified case (ttzztztz) [#&#8203;37425](https://github.com/nodejs/node/pull/37425)
    
  • [`ce7fbbf94c`](https://github.com/nodejs/node/commit/ce7fbbf94c)] - **test**: fix typo in test_node_crypto.cc (Ikko Ashimine) [#&#8203;37469](https://github.com/nodejs/node/pull/37469)
    
  • [`ba319f0c60`](https://github.com/nodejs/node/commit/ba319f0c60)] - **test**: remove FLAKY for test-http2-compat-client-upload-reject (Rich Trott) [#&#8203;37462](https://github.com/nodejs/node/pull/37462)
    
  • [`dfa0440341`](https://github.com/nodejs/node/commit/dfa0440341)] - **test**: validate no debug info for http2 (Michael Dawson) [#&#8203;37447](https://github.com/nodejs/node/pull/37447)
    
  • [`b38404ee17`](https://github.com/nodejs/node/commit/b38404ee17)] - **test**: remove FLAKY designation for test-http2-client-upload-reject (Rich Trott) [#&#8203;37461](https://github.com/nodejs/node/pull/37461)
    
  • [`b569105183`](https://github.com/nodejs/node/commit/b569105183)] - **test**: clarify usage of tmpdir.refresh() (Darshan Sen) [#&#8203;37383](https://github.com/nodejs/node/pull/37383)
    
  • [`4f41900687`](https://github.com/nodejs/node/commit/4f41900687)] - **test**: update upload.zip to be uncorrupted (Greg Ziskind) [#&#8203;37294](https://github.com/nodejs/node/pull/37294)
    
  • [`d5c311ed15`](https://github.com/nodejs/node/commit/d5c311ed15)] - **test**: fix flaky test-worker-prof (Rich Trott) [#&#8203;37372](https://github.com/nodejs/node/pull/37372)
    
  • [`df538ebc8e`](https://github.com/nodejs/node/commit/df538ebc8e)] - **test**: fix flaky test-webcrypto-encrypt-decrypt-aes (Darshan Sen) [#&#8203;37380](https://github.com/nodejs/node/pull/37380)
    
  • [`19d6eb929c`](https://github.com/nodejs/node/commit/19d6eb929c)] - **test**: fix flaky test-fs-promises-file-handle-read (Rich Trott) [#&#8203;37371](https://github.com/nodejs/node/pull/37371)
    
  • [`c554aa149c`](https://github.com/nodejs/node/commit/c554aa149c)] - **test,child_process**: add check for `subProcess.pid` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014)
    
  • [`5c27fd73b0`](https://github.com/nodejs/node/commit/5c27fd73b0)] - **tools**: run doctool tests on GitHub Actions CI (Antoine du Hamel) [#&#8203;37398](https://github.com/nodejs/node/pull/37398)
    
  • [`49013fcee1`](https://github.com/nodejs/node/commit/49013fcee1)] - **tools**: make comma-dangle ESLint rule more stringent … (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088)
    
  • [`31f4600b7a`](https://github.com/nodejs/node/commit/31f4600b7a)] - **worker**: fix interaction of terminate() with messaging port (Anna Henningsen) [#&#8203;37319](https://github.com/nodejs/node/pull/37319)
    
  • [`d93137b2a9`](https://github.com/nodejs/node/commit/d93137b2a9)] - **workers**: fix spawning from preload scripts (James M Snell) [#&#8203;37481](https://github.com/nodejs/node/pull/37481)
    
    

v15.10.0

Compare Source

This is a security release.

Notable changes

Vulnerabilities fixed:

  • CVE-2021-22883: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion
    • Affected Node.js versions are vulnerable to denial of service attacks when too many connection attempts with an 'unknownProtocol' are established. This leads to a leak of file descriptors. If a file descriptor limit is configured on the system, then the server is unable to accept new connections and prevent the process also from opening, e.g. a file. If no file descriptor limit is configured, then this lead to an excessive memory usage and cause the system to run out of memory.
  • CVE-2021-22884: DNS rebinding in --inspect
    • Affected Node.js versions are vulnerable to denial of service attacks when the whitelist includes “localhost6”. When “localhost6” is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the “localhost6” domain. As long as the attacker uses the “localhost6” domain, they can still apply the attack described in CVE-2018-7160.
  • CVE-2021-23840: OpenSSL - Integer overflow in CipherUpdate
Commits
  • [`2a3ce5974b`](https://github.com/nodejs/node/commit/2a3ce5974b)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412)
    
  • [`afbce66874`](https://github.com/nodejs/node/commit/afbce66874)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412)
    
  • [`4184806dee`](https://github.com/nodejs/node/commit/4184806dee)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#&#8203;246](https://github.com/nodejs-private/node-private/pull/246)
    
  • [`43ae9c46c3`](https://github.com/nodejs/node/commit/43ae9c46c3)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#&#8203;244](https://github.com/nodejs-private/node-private/pull/244)
    
    

v15.9.0

Compare Source

Notable Changes
  • crypto:
    • add keyObject.export() 'jwk' format option (Filip Skokan) #​37081
  • deps:
    • upgrade to libuv 1.41.0 (Colin Ihrig) #​37360
  • doc:
    • add dmabupt to collaborators (Xu Meng) #​37377
    • refactor fs docs structure (James M Snell) #​37170
  • fs:
    • add fsPromises.watch() (James M Snell) #​37179
    • use a default callback for fs.close() (James M Snell) #​37174
    • add AbortSignal support to watch (Benjamin Gruenbaum) #​37190
  • perf_hooks:
    • introduce createHistogram (James M Snell) #​37155
  • stream:
    • improve Readable.from error handling (Benjamin Gruenbaum) #​37158
  • timers:
    • introduce setInterval async iterator (linkgoron) #​37153
  • tls:
    • add ability to get cert/peer cert as X509Certificate object (James M Snell) #​37070
Commits
  • [`d0f1ff53ff`](https://github.com/nodejs/node/commit/d0f1ff53ff)] - **async_hooks**: set unhandledRejection async context (Sajal Khandelwal) [#&#8203;37281](https://github.com/nodejs/node/pull/37281)
    
  • [`c160d88c9e`](https://github.com/nodejs/node/commit/c160d88c9e)] - **buffer**: add @&#8203;[@&#8203;toStringTag](https://github.com/toStringTag) to Blob (Colin Ihrig) [#&#8203;37336](https://github.com/nodejs/node/pull/37336)
    
  • [`8487184457`](https://github.com/nodejs/node/commit/8487184457)] - **child_process**: fix bad abort signal leak (Nitzan Uziely) [#&#8203;37257](https://github.com/nodejs/node/pull/37257)
    
  • [`e28ea89b1a`](https://github.com/nodejs/node/commit/e28ea89b1a)] - **crypto**: fix subtle.importKey JWK OKP public key import (Filip Skokan) [#&#8203;37255](https://github.com/nodejs/node/pull/37255)
    
  • [`55fd6b6611`](https://github.com/nodejs/node/commit/55fd6b6611)] - **crypto**: avoid infinite loops in prime generation (Tobias Nießen) [#&#8203;37212](https://github.com/nodejs/node/pull/37212)
    
  • [`9dac99a11a`](https://github.com/nodejs/node/commit/9dac99a11a)] - **crypto**: fix and simplify prime option validation (Tobias Nießen) [#&#8203;37164](https://github.com/nodejs/node/pull/37164)
    
  • [`3e2746ff63`](https://github.com/nodejs/node/commit/3e2746ff63)] - **crypto**: remove webcrypto "DSA" JWK Key Type operations (Filip Skokan) [#&#8203;37203](https://github.com/nodejs/node/pull/37203)
    
  • [`011910b424`](https://github.com/nodejs/node/commit/011910b424)] - **(SEMVER-MINOR)** **crypto**: add keyObject.export() 'jwk' format option (Filip Skokan) [#&#8203;37081](https://github.com/nodejs/node/pull/37081)
    
  • [`c0eadef495`](https://github.com/nodejs/node/commit/c0eadef495)] - **deps**: upgrade to libuv 1.41.0 (Colin Ihrig) [#&#8203;37360](https://github.com/nodejs/node/pull/37360)
    
  • [`50e81ba0b8`](https://github.com/nodejs/node/commit/50e81ba0b8)] - **deps**: V8: cherry-pick [`0c8b6e4`](https://github.com/nodejs/node/commit/0c8b6e415c30) (Matin Zadehdolatabad) [#&#8203;37276](https://github.com/nodejs/node/pull/37276)
    
  • [`d1c1724c69`](https://github.com/nodejs/node/commit/d1c1724c69)] - **deps**: upgrade npm to 7.5.3 (Ruy Adorno) [#&#8203;37283](https://github.com/nodejs/node/pull/37283)
    
  • [`20c65b00c2`](https://github.com/nodejs/node/commit/20c65b00c2)] - **deps**: V8: backport [`dfcf1e8`](https://github.com/nodejs/node/commit/dfcf1e86fac0) (Michaël Zasso) [#&#8203;37245](https://github.com/nodejs/node/pull/37245)
    
  • [`e63b380f76`](https://github.com/nodejs/node/commit/e63b380f76)] - **deps**: upgrade npm to 7.5.2 (Ruy Adorno) [#&#8203;37191](https://github.com/nodejs/node/pull/37191)
    
  • [`d808db2732`](https://github.com/nodejs/node/commit/d808db2732)] - **doc**: add dmabupt to collaborators (Xu Meng) [#&#8203;37377](https://github.com/nodejs/node/pull/37377)
    
  • [`dd054ca37f`](https://github.com/nodejs/node/commit/dd054ca37f)] - **doc**: optimize HTML rendering (Antoine du Hamel) [#&#8203;37301](https://github.com/nodejs/node/pull/37301)
    
  • [`c188466a18`](https://github.com/nodejs/node/commit/c188466a18)] - **doc**: fix quotes in stream docs (Tobias Nießen) [#&#8203;37269](https://github.com/nodejs/node/pull/37269)
    
  • [`f5e4625468`](https://github.com/nodejs/node/commit/f5e4625468)] - **doc**: fix backticks in crypto API docs (Tobias Nießen) [#&#8203;37269](https://github.com/nodejs/node/pull/37269)
    
  • [`e2a2bab44e`](https://github.com/nodejs/node/commit/e2a2bab44e)] - **doc**: link PACKAGE_EXPORTS_RESOLVE to ESM section (Utku Gultopu) [#&#8203;37135](https://github.com/nodejs/node/pull/37135)
    
  • [`1e99175e01`](https://github.com/nodejs/node/commit/1e99175e01)] - **doc**: alphabetize crypto.\* methods (Rich Trott) [#&#8203;37353](https://github.com/nodejs/node/pull/37353)
    
  • [`392c86d38b`](https://github.com/nodejs/node/commit/392c86d38b)] - **doc**: use sentence case in benchmark doc (Rich Trott) [#&#8203;37351](https://github.com/nodejs/node/pull/37351)
    
  • [`62b2648a96`](https://github.com/nodejs/node/commit/62b2648a96)] - **doc**: apply sentence-consistently in C++ style guide (Rich Trott) [#&#8203;37350](https://github.com/nodejs/node/pull/37350)
    
  • [`189ce399da`](https://github.com/nodejs/node/commit/189ce399da)] - **doc**: apply sentence case to release doc headers (Rich Trott) [#&#8203;37349](https://github.com/nodejs/node/pull/37349)
    
  • [`610b29b8bd`](https://github.com/nodejs/node/commit/610b29b8bd)] - **doc**: fix performanceEntry.flags style format (Cheng Liu) [#&#8203;37274](https://github.com/nodejs/node/pull/37274)
    
  • [`85b1476f1d`](https://github.com/nodejs/node/commit/85b1476f1d)] - **doc**: fix typo in deprecations.md (marsonya) [#&#8203;37282](https://github.com/nodejs/node/pull/37282)
    
  • [`f253cb9303`](https://github.com/nodejs/node/commit/f253cb9303)] - **doc**: fix typo in buffer.md (marsonya) [#&#8203;37268](https://github.com/nodejs/node/pull/37268)
    
  • [`804e7ae713`](https://github.com/nodejs/node/commit/804e7ae713)] - **doc**: add version metadata for packages features (Antoine du Hamel) [#&#8203;37289](https://github.com/nodejs/node/pull/37289)
    
  • [`cdd2fe5651`](https://github.com/nodejs/node/commit/cdd2fe5651)] - **doc**: fix typo in /api/dns.md (marsonya) [#&#8203;37312](https://github.com/nodejs/node/pull/37312)
    
  • [`7d8fd3f576`](https://github.com/nodejs/node/commit/7d8fd3f576)] - **doc**: refactor fs docs structure (James M Snell) [#&#8203;37170](https://github.com/nodejs/node/pull/37170)
    
  • [`facf3a5c23`](https://github.com/nodejs/node/commit/facf3a5c23)] - **doc**: fix description of hasSubscribers (Tobias Nießen) [#&#8203;37324](https://github.com/nodejs/node/pull/37324)
    
  • [`3464c9f007`](https://github.com/nodejs/node/commit/3464c9f007)] - **doc**: discourage error event (Benjamin Gruenbaum) [#&#8203;37264](https://github.com/nodejs/node/pull/37264)
    
  • [`85bed2ec26`](https://github.com/nodejs/node/commit/85bed2ec26)] - **doc**: fix misnamed SHASUMS256.txt name in README.md (marsonya) [#&#8203;37260](https://github.com/nodejs/node/pull/37260)
    
  • [`cd50e93307`](https://github.com/nodejs/node/commit/cd50e93307)] - **doc**: warn about using strings as inputs in crypto (Tobias Nießen) [#&#8203;37248](https://github.com/nodejs/node/pull/37248)
    
  • [`5a4288ebb6`](https://github.com/nodejs/node/commit/5a4288ebb6)] - **doc**: fix typo in crypto.md (marsonya) [#&#8203;37279](https://github.com/nodejs/node/pull/37279)
    
  • [`0e887caf32`](https://github.com/nodejs/node/commit/0e887caf32)] - **doc**: fix typo in console.md (marsonya) [#&#8203;37279](https://github.com/nodejs/node/pull/37279)
    
  • [`47c4f1fc54`](https://github.com/nodejs/node/commit/47c4f1fc54)] - **doc**: use sentence case in README headers (Rich Trott) [#&#8203;37251](https://github.com/nodejs/node/pull/37251)
    
  • [`7da1c9b219`](https://github.com/nodejs/node/commit/7da1c9b219)] - **doc**: use sentence case for headers in BUILDING.md (Rich Trott) [#&#8203;37250](https://github.com/nodejs/node/pull/37250)
    
  • [`ebf3597db1`](https://github.com/nodejs/node/commit/ebf3597db1)] - **doc**: rename N-API to Node-API (Gabriel Schulhof) [#&#8203;37259](https://github.com/nodejs/node/pull/37259)
    
  • [`760f126adb`](https://github.com/nodejs/node/commit/760f126adb)] - **doc**: mark Certificate methods as static, add missing KeyObject.from (Filip Skokan) [#&#8203;37198](https://github.com/nodejs/node/pull/37198)
    
  • [`aebe532967`](https://github.com/nodejs/node/commit/aebe532967)] - **doc**: consistent webcrypto `node.keyObject` format (Filip Skokan) [#&#8203;37200](https://github.com/nodejs/node/pull/37200)
    
  • [`596bfb36a0`](https://github.com/nodejs/node/commit/596bfb36a0)] - **doc**: mention CryptoKey in port.postMessage() (Filip Skokan) [#&#8203;37196](https://github.com/nodejs/node/pull/37196)
    
  • [`0702d60def`](https://github.com/nodejs/node/commit/0702d60def)] - **doc**: fix webcrypto HMAC generateKey example (Filip Skokan) [#&#8203;37197](https://github.com/nodejs/node/pull/37197)
    
  • [`8a254058f5`](https://github.com/nodejs/node/commit/8a254058f5)] - **doc**: fix accommodate typos (Colin Ihrig) [#&#8203;37229](https://github.com/nodejs/node/pull/37229)
    
  • [`5906e85ce2`](https://github.com/nodejs/node/commit/5906e85ce2)] - **doc**: fix version number for DEP006 (Antoine du Hamel) [#&#8203;37231](https://github.com/nodejs/node/pull/37231)
    
  • [`52c40c7a48`](https://github.com/nodejs/node/commit/52c40c7a48)] - **doc**: fix CHANGELOG_ARCHIVE table of contents (Antoine du Hamel) [#&#8203;37232](https://github.com/nodejs/node/pull/37232)
    
  • [`eb08afdf24`](https://github.com/nodejs/node/commit/eb08afdf24)] - **doc**: fix typo in globals.md (Darshan Sen) [#&#8203;37228](https://github.com/nodejs/node/pull/37228)
    
  • [`b87c0d6c16`](https://github.com/nodejs/node/commit/b87c0d6c16)] - **doc**: fix typo in cli.md (Kalvin Vasconcellos) [#&#8203;37214](https://github.com/nodejs/node/pull/37214)
    
  • [`3f815d93bf`](https://github.com/nodejs/node/commit/3f815d93bf)] - **doc**: fix pr-url for DEP0148 (Antoine du Hamel) [#&#8203;37205](https://github.com/nodejs/node/pull/37205)
    
  • [`ff02e5e12c`](https://github.com/nodejs/node/commit/ff02e5e12c)] - **doc**: fix 404 links in module.md (Antoine du Hamel) [#&#8203;37202](https://github.com/nodejs/node/pull/37202)
    
  • [`67c9a8e176`](https://github.com/nodejs/node/commit/67c9a8e176)] - **doc**: improve promise terminology (Benjamin Gruenbaum) [#&#8203;37181](https://github.com/nodejs/node/pull/37181)
    
  • [`15804e0b3f`](https://github.com/nodejs/node/commit/15804e0b3f)] - **errors**: align source-map stacks with spec (Benjamin Coe) [#&#8203;37252](https://github.com/nodejs/node/pull/37252)
    
  • [`88d3f74c85`](https://github.com/nodejs/node/commit/88d3f74c85)] - **(SEMVER-MINOR)** **fs**: add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179)
    
  • [`c30245072a`](https://github.com/nodejs/node/commit/c30245072a)] - **fs**: allow passing negative zero fd (Darshan Sen) [#&#8203;37123](https://github.com/nodejs/node/pull/37123)
    
  • [`655d19638a`](https://github.com/nodejs/node/commit/655d19638a)] - **(SEMVER-MINOR)** **fs**: use a default callback for fs.close() (James M Snell) [#&#8203;37174](https://github.com/nodejs/node/pull/37174)
    
  • [`acd087dffb`](https://github.com/nodejs/node/commit/acd087dffb)] - **(SEMVER-MINOR)** **fs**: add AbortSignal support to watch (Benjamin Gruenbaum) [#&#8203;37190](https://github.com/nodejs/node/pull/37190)
    
  • [`f5d1bf9d0e`](https://github.com/nodejs/node/commit/f5d1bf9d0e)] - **http**: explain the possibilty of refactor unused argument (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275)
    
  • [`d63ac28a9a`](https://github.com/nodejs/node/commit/d63ac28a9a)] - **http**: explain the unused argument in IncomingMessage.\_read (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275)
    
  • [`4cdc5ea823`](https://github.com/nodejs/node/commit/4cdc5ea823)] - **http**: fix ClientRequest unhandled errors (Robert Nagy) [#&#8203;36970](https://github.com/nodejs/node/pull/36970)
    
  • [`c6198fddc7`](https://github.com/nodejs/node/commit/c6198fddc7)] - **lib**: simplify check in child_process (Darshan Sen) [#&#8203;37367](https://github.com/nodejs/node/pull/37367)
    
  • [`f6f9af6a59`](https://github.com/nodejs/node/commit/f6f9af6a59)] - **lib**: fix WebIDL `object` and dictionary type conversion (ExE Boss) [#&#8203;37047](https://github.com/nodejs/node/pull/37047)
    
  • [`acabe08b10`](https://github.com/nodejs/node/commit/acabe08b10)] - **lib**: add weak event handlers (Benjamin Gruenbaum) [#&#8203;36607](https://github.com/nodejs/node/pull/36607)
    
  • [`3db1b30732`](https://github.com/nodejs/node/commit/3db1b30732)] - **meta**: update README releases section (Zuzana Svetlikova) [#&#8203;37318](https://github.com/nodejs/node/pull/37318)
    
  • [`d96a97a2b9`](https://github.com/nodejs/node/commit/d96a97a2b9)] - **module**: make synthetic module evaluation steps return a Promise to support top level await (Daniel Clark) [#&#8203;37300](https://github.com/nodejs/node/pull/37300)
    
  • [`a693baa0cb`](https://github.com/nodejs/node/commit/a693baa0cb)] - **module**: use optional chaining in cjs/loader.js (Darshan Sen) [#&#8203;37238](https://github.com/nodejs/node/pull/37238)
    
  • [`061939d2f6`](https://github.com/nodejs/node/commit/061939d2f6)] - **(SEMVER-MINOR)** **node-api**: allow retrieval of add-on file name (Gabriel Schulhof) [#&#8203;37195](https://github.com/nodejs/node/pull/37195)
    
  • [`c4faa39768`](https://github.com/nodejs/node/commit/c4faa39768)] - **(SEMVER-MINOR)** **perf_hooks**: introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155)
    
  • [`799b2d5275`](https://github.com/nodejs/node/commit/799b2d5275)] - **policy**: fix cascade getting scope (Bradley Meck) [#&#8203;37298](https://github.com/nodejs/node/pull/37298)
    
  • [`6d53e797d7`](https://github.com/nodejs/node/commit/6d53e797d7)] - **repl**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37345](https://github.com/nodejs/node/pull/37345)
    
  • [`3fee5b2219`](https://github.com/nodejs/node/commit/3fee5b2219)] - **repl**: add auto‑completion for dynamic import calls (ExE Boss) [#&#8203;37178](https://github.com/nodejs/node/pull/37178)
    
  • [`c3778343aa`](https://github.com/nodejs/node/commit/c3778343aa)] - **repl**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37188](https://github.com/nodejs/node/pull/37188)
    
  • [`e28fa6c3fc`](https://github.com/nodejs/node/commit/e28fa6c3fc)] - **src**: fix return type of method in string_search.h (Darshan Sen) [#&#8203;37167](https://github.com/nodejs/node/pull/37167)
    
  • [`42cc33cc48`](https://github.com/nodejs/node/commit/42cc33cc48)] - **src**: add mutex to ManagedEVPPKey class (Daniel Bevenius) [#&#8203;36825](https://github.com/nodejs/node/pull/36825)
    
  • [`1a9bcdf1d9`](https://github.com/nodejs/node/commit/1a9bcdf1d9)] - **src**: refactor v8 binding (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112)
    
  • [`54d36b00af`](https://github.com/nodejs/node/commit/54d36b00af)] - **src**: rename binding_data_name to type_name in BindingData (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112)
    
  • [`3079a78428`](https://github.com/nodejs/node/commit/3079a78428)] - **src**: avoid implicit type conversions (Michaël Zasso) [#&#8203;37149](https://github.com/nodejs/node/pull/37149)
    
  • [`a6053dc14a`](https://github.com/nodejs/node/commit/a6053dc14a)] - **src**: add context for TODO comment in env.cc (Yash Ladha) [#&#8203;37140](https://github.com/nodejs/node/pull/37140)
    
  • [`354df9e8a1`](https://github.com/nodejs/node/commit/354df9e8a1)] - **src**: use make_shared for safe allocation (Yash Ladha) [#&#8203;37139](https://github.com/nodejs/node/pull/37139)
    
  • [`337b4e7540`](https://github.com/nodejs/node/commit/337b4e7540)] - **src**: put (de)serialization code into node_snapshotable.h/cc (Joyee Cheung) [#&#8203;37114](https://github.com/nodejs/node/pull/37114)
    
  • [`2a5f67b381`](https://github.com/nodejs/node/commit/2a5f67b381)] - **src**: refactor bookkeeping of bootstrap status (Joyee Cheung) [#&#8203;37113](https://github.com/nodejs/node/pull/37113)
    
  • [`48ce1eb364`](https://github.com/nodejs/node/commit/48ce1eb364)] - **src**: fix warning in string_search.h (Darshan Sen) [#&#8203;37146](https://github.com/nodejs/node/pull/37146)
    
  • [`bfe0b46d92`](https://github.com/nodejs/node/commit/bfe0b46d92)] - **src**: simplify calls to BN_bin2bn in prime gen (Tobias Nießen) [#&#8203;37169](https://github.com/nodejs/node/pull/37169)
    
  • [`9946c1137e`](https://github.com/nodejs/node/commit/9946c1137e)] - **src**: read exactly two tokens from Linux THP sysfs config (James Addison) [#&#8203;37065](https://github.com/nodejs/node/pull/37065)
    
  • [`1fea05149a`](https://github.com/nodejs/node/commit/1fea05149a)] - **(SEMVER-MINOR)** **stream**: improve Readable.from error handling (Benjamin Gruenbaum) [#&#8203;37158](https://github.com/nodejs/node/pull/37158)
    
  • [`d2a487e640`](https://github.com/nodejs/node/commit/d2a487e640)] - ***Revert*** "**stream**: fix .end() error propagation" (Matteo Collina) [#&#8203;37060](https://github.com/nodejs/node/pull/37060)
    
  • [`b5692b4b06`](https://github.com/nodejs/node/commit/b5692b4b06)] - **test**: fix test-doctool-html (Antoine du Hamel) [#&#8203;37397](https://github.com/nodejs/node/pull/37397)
    
  • [`b09d21b06b`](https://github.com/nodejs/node/commit/b09d21b06b)] - **test**: enable no-restricted-syntax rule for test-timers-promisified (Rich Trott) [#&#8203;37357](https://github.com/nodejs/node/pull/37357)
    
  • [`1fc8307138`](https://github.com/nodejs/node/commit/1fc8307138)] - **test**: re-implement promises.setInterval() test robustly (Rich Trott) [#&#8203;37230](https://github.com/nodejs/node/pull/37230)
    
  • [`8483de4da8`](https://github.com/nodejs/node/commit/8483de4da8)] - **test**: only run prime test with supported OpenSSL (Tobias Nießen) [#&#8203;37212](https://github.com/nodejs/node/pull/37212)
    
  • [`48a634e514`](https://github.com/nodejs/node/commit/48a634e514)] - **test**: rename n-api to node-api (Gabriel Schulhof) [#&#8203;37217](https://github.com/nodejs/node/pull/37217)
    
  • [`51575252f5`](https://github.com/nodejs/node/commit/51575252f5)] - **test**: remove flaky designation for test-http2-large-file (Rich Trott) [#&#8203;37156](https://github.com/nodejs/node/pull/37156)
    
  • [`13fe17c4ef`](https://github.com/nodejs/node/commit/13fe17c4ef)] - **test**: split heap snapshot limit tests (Rich Trott) [#&#8203;37189](https://github.com/nodejs/node/pull/37189)
    
  • [`dc38dd2c6f`](https://github.com/nodejs/node/commit/dc38dd2c6f)] - **timers**: fix unsafe array iteration (Darshan Sen) [#&#8203;37223](https://github.com/nodejs/node/pull/37223)
    
  • [`eb7ec1b257`](https://github.com/nodejs/node/commit/eb7ec1b257)] - **timers**: remove flaky setInterval test (Nitzan Uziely) [#&#8203;37227](https://github.com/nodejs/node/pull/37227)
    
  • [`4ebe38b212`](https://github.com/nodejs/node/commit/4ebe38b212)] - **(SEMVER-MINOR)** **timers**: introduce setInterval async iterator (linkgoron) [#&#8203;37153](https://github.com/nodejs/node/pull/37153)
    
  • [`dc84c181c3`](https://github.com/nodejs/node/commit/dc84c181c3)] - **(SEMVER-MINOR)** **tls**: add ability to get cert/peer cert as X509Certificate object (James M Snell) [#&#8203;37070](https://github.com/nodejs/node/pull/37070)
    
  • [`2e1f1c6f3c`](https://github.com/nodejs/node/commit/2e1f1c6f3c)] - **tools**: refactor prefer-primordials (Antoine du Hamel) [#&#8203;36018](https://github.com/nodejs/node/pull/36018)
    
  • [`b2b64113b1`](https://github.com/nodejs/node/commit/b2b64113b1)] - **tools**: update ESLint to 7.20.0 (Colin Ihrig) [#&#8203;37339](https://github.com/nodejs/node/pull/37339)
    
  • [`a483c284f3`](https://github.com/nodejs/node/commit/a483c284f3)] - **tools**: fix lint-pr-url message (Antoine du Hamel) [#&#8203;37304](https://github.com/nodejs/node/pull/37304)
    
  • [`1ff375beb3`](https://github.com/nodejs/node/commit/1ff375beb3)] - **tools**: avoid pending deprecation in doc generator (Michaël Zasso) [#&#8203;37267](https://github.com/nodejs/node/pull/37267)
    
  • [`6db5e7958a`](https://github.com/nodejs/node/commit/6db5e7958a)] - **tools**: add GitHub Action linter for pr-url (Antoine du Hamel) [#&#8203;37221](https://github.com/nodejs/node/pull/37221)
    
  • [`d8d851ac5c`](https://github.com/nodejs/node/commit/d8d851ac5c)] - **tools**: bump remark-present-lint-node from 2.0.0 to 2.0.1 (Rich Trott) [#&#8203;37270](https://github.com/nodejs/node/pull/37270)
    
  • [`eb0daaedf9`](https://github.com/nodejs/node/commit/eb0daaedf9)] - **tools**: fix d8 macOS build (Michaël Zasso) [#&#8203;37211](https://github.com/nodejs/node/pull/37211)
    
  • [`745aad73dc`](https://github.com/nodejs/node/commit/745aad73dc)] - **tools**: update ESLint to 7.19.0 (Colin Ihrig) [#&#8203;37159](https://github.com/nodejs/node/pull/37159)
    
  • [`676f696a99`](https://github.com/nodejs/node/commit/676f696a99)] - **url**: fix definitions of `URL`/`SearchParams` methods and accessors (ExE Boss) [#&#8203;36799](https://github.com/nodejs/node/pull/36799)
    
  • [`fbcab109de`](https://github.com/nodejs/node/commit/fbcab109de)] - **url**: move `URLSearchParams` method definitions (ExE Boss) [#&#8203;36799](https://github.com/nodejs/node/pull/36799)
    
  • [`7c51cecbca`](https://github.com/nodejs/node/commit/7c51cecbca)] - **util**: use assert for unreachable code (Rich Trott) [#&#8203;37249](https://github.com/nodejs/node/pull/37249)
    
  • [`66a14d3992`](https://github.com/nodejs/node/commit/66a14d3992)] - **vm**: add importModuleDynamically option to compileFunction (Gus Caplan) [#&#8203;35431](https://github.com/nodejs/node/pull/35431)
    
  • [`05a16e7259`](https://github.com/nodejs/node/commit/05a16e7259)] - **worker**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37346](https://github.com/nodejs/node/pull/37346)
    
    

v15.8.0

Compare Source

Notable Changes
  • [`110063d694`](https://github.com/nodejs/node/commit/110063d694)] - **(SEMVER-MINOR)** **crypto**: add generatePrime/checkPrime (James M Snell) [#&#8203;36997](https://github.com/nodejs/node/pull/36997)
    
  • [`53a0bdff47`](https://github.com/nodejs/node/commit/53a0bdff47)] - **(SEMVER-MINOR)** **crypto**: experimental (Ed/X)25519/(Ed/X)448 support (James M Snell) [#&#8203;36879](https://github.com/nodejs/node/pull/36879)
    
  • [`03460432af`](https://github.com/nodejs/node/commit/03460432af)] - **deps**: upgrade npm to 7.5.0 (Ruy Adorno) [#&#8203;37117](https://github.com/nodejs/node/pull/37117)
    -   This update adds a new [`npm diff` command](https://github.com/npm/cli/pull/1319).
    
  • [`2c7ad38c75`](https://github.com/nodejs/node/commit/2c7ad38c75)] - **(SEMVER-MINOR)** **dgram**: support AbortSignal in createSocket (Nitzan Uziely) [#&#8203;37026](https://github.com/nodejs/node/pull/37026)
    
  • [`b7c3f99f7e`](https://github.com/nodejs/node/commit/b7c3f99f7e)] - **doc**: add Zijian Liu to collaborators (ZiJian Liu) [#&#8203;37075](https://github.com/nodejs/node/pull/37075)
    
  • [`02f1d2fda4`](https://github.com/nodejs/node/commit/02f1d2fda4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918)
    
  • [`75124298d5`](https://github.com/nodejs/node/commit/75124298d5)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662)
    
  • [`4e757eab96`](https://github.com/nodejs/node/commit/4e757eab96)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676)
    
    
Commits
  • [`602aaf25af`](https://github.com/nodejs/node/commit/602aaf25af)] - **async_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37125](https://github.com/nodejs/node/pull/37125)
    
  • [`dcd34b0144`](https://github.com/nodejs/node/commit/dcd34b0144)] - **benchmark**: add benchmark for NODE_V8\_COVERAGE (Benjamin Coe) [#&#8203;36972](https://github.com/nodejs/node/pull/36972)
    
  • [`ec22756ac9`](https://github.com/nodejs/node/commit/ec22756ac9)] - **benchmark**: make output RFC 4180 compliant (Tobias Nießen) [#&#8203;37038](https://github.com/nodejs/node/pull/37038)
    
  • [`96cec1e5f3`](https://github.com/nodejs/node/commit/96cec1e5f3)] - **benchmark**: improve explanations in R script (Tobias Nießen) [#&#8203;36995](https://github.com/nodejs/node/pull/36995)
    
  • [`e4b88b521a`](https://github.com/nodejs/node/commit/e4b88b521a)] - **buffer**: avoid creating the backing store in the thread (James M Snell) [#&#8203;37052](https://github.com/nodejs/node/pull/37052)
    
  • [`7b78c6773d`](https://github.com/nodejs/node/commit/7b78c6773d)] - **child_process**: allow promisified exec to be cancel (Carlos Fuentes) [#&#8203;34249](https://github.com/nodejs/node/pull/34249)
    
  • [`c4193ba8ae`](https://github.com/nodejs/node/commit/c4193ba8ae)] - **crypto**: fix encrypted private -> public import (Tobias Nießen) [#&#8203;37056](https://github.com/nodejs/node/pull/37056)
    
  • [`cb3b0ec4fc`](https://github.com/nodejs/node/commit/cb3b0ec4fc)] - **crypto**: generateKeyPair('ec') should not support NODE-ED\* and NODE-X\* (Filip Skokan) [#&#8203;37063](https://github.com/nodejs/node/pull/37063)
    
  • [`110063d694`](https://github.com/nodejs/node/commit/110063d694)] - **(SEMVER-MINOR)** **crypto**: add generatePrime/checkPrime (James M Snell) [#&#8203;36997](https://github.com/nodejs/node/pull/36997)
    
  • [`ab64d74791`](https://github.com/nodejs/node/commit/ab64d74791)] - **crypto**: throw error on invalid object in diffieHellman() (ZiJian Liu) [#&#8203;37016](https://github.com/nodejs/node/pull/37016)
    
  • [`53a0bdff47`](https://github.com/nodejs/node/commit/53a0bdff47)] - **(SEMVER-MINOR)** **crypto**: experimental (Ed/X)25519/(Ed/X)448 support (James M Snell) [#&#8203;36879](https://github.com/nodejs/node/pull/36879)
    
  • [`4551d14b8e`](https://github.com/nodejs/node/commit/4551d14b8e)] - **deps**: upgrade npm to 7.5.1 (Ruy Adorno) [#&#8203;37177](https://github.com/nodejs/node/pull/37177)
    
  • [`9d6fd4586f`](https://github.com/nodejs/node/commit/9d6fd4586f)] - **deps**: update openssl config (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067)
    
  • [`f74b376596`](https://github.com/nodejs/node/commit/f74b376596)] - ***Revert*** "**deps**: various quic patches from akamai/openssl" (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067)
    
  • [`6756130c4b`](https://github.com/nodejs/node/commit/6756130c4b)] - ***Revert*** "**deps**: re-enable OPENSSL_NO_QUIC guards" (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067)
    
  • [`52ce1d5f1a`](https://github.com/nodejs/node/commit/52ce1d5f1a)] - ***Revert*** "**deps**: update patch and docs for openssl update" (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067)
    
  • [`03460432af`](https://github.com/nodejs/node/commit/03460432af)] - **deps**: upgrade npm to 7.5.0 (Ruy Adorno) [#&#8203;37117](https://github.com/nodejs/node/pull/37117)
    
  • [`2c7ad38c75`](https://github.com/nodejs/node/commit/2c7ad38c75)] - **(SEMVER-MINOR)** **dgram**: support AbortSignal in createSocket (Nitzan Uziely) [#&#8203;37026](https://github.com/nodejs/node/pull/37026)
    
  • [`47bfde00fd`](https://github.com/nodejs/node/commit/47bfde00fd)] - **doc**: fix color contrast on \<kbd> elements (Antoine du Hamel) [#&#8203;37185](https://github.com/nodejs/node/pull/37185)
    
  • [`3c9077130d`](https://github.com/nodejs/node/commit/3c9077130d)] - **doc**: fix list format in Developer's Certificate of Origin (Akash Negi) [#&#8203;37138](https://github.com/nodejs/node/pull/37138)
    
  • [`8cecce3ff4`](https://github.com/nodejs/node/commit/8cecce3ff4)] - **doc**: fix markup and alphabetization in errors.md (Rich Trott) [#&#8203;37144](https://github.com/nodejs/node/pull/37144)
    
  • [`a7780815bf`](https://github.com/nodejs/node/commit/a7780815bf)] - **doc**: clarify ERR_INVALID_REPL_INPUT usage (Rich Trott) [#&#8203;37143](https://github.com/nodejs/node/pull/37143)
    
  • [`e7126503e0`](https://github.com/nodejs/node/commit/e7126503e0)] - **doc**: clarify repl exception conditions (Rich Trott) [#&#8203;37142](https://github.com/nodejs/node/pull/37142)
    
  • [`e55d3d0953`](https://github.com/nodejs/node/commit/e55d3d0953)] - **doc**: add example for test structure (Turner Jabbour) [#&#8203;35046](https://github.com/nodejs/node/pull/35046)
    
  • [`9b9a1801ba`](https://github.com/nodejs/node/commit/9b9a1801ba)] - **doc**: remove TOC summary for pages with no TOC (Rich Trott) [#&#8203;37043](https://github.com/nodejs/node/pull/37043)
    
  • [`ae42658be9`](https://github.com/nodejs/node/commit/ae42658be9)] - **doc**: add missing deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147)
    
  • [`b79b82de8e`](https://github.com/nodejs/node/commit/b79b82de8e)] - **doc**: update Buffer encoding option count (Dave Cardwell) [#&#8203;37102](https://github.com/nodejs/node/pull/37102)
    
  • [`ddee21b587`](https://github.com/nodejs/node/commit/ddee21b587)] - **doc**: update BUILDING.md previous versions links (Richard Lau) [#&#8203;37082](https://github.com/nodejs/node/pull/37082)
    
  • [`1710016053`](https://github.com/nodejs/node/commit/1710016053)] - **doc**: mention adding Fixes to collaborator onboarding PR (Joyee Cheung) [#&#8203;37097](https://github.com/nodejs/node/pull/37097)
    
  • [`b7c3f99f7e`](https://github.com/nodejs/node/commit/b7c3f99f7e)] - **doc**: add Zijian Liu to collaborators (ZiJian Liu) [#&#8203;37075](https://github.com/nodejs/node/pull/37075)
    
  • [`7ddfa81612`](https://github.com/nodejs/node/commit/7ddfa81612)] - **doc**: add tooltip for light/dark mode toggle (Rich Trott) [#&#8203;37044](https://github.com/nodejs/node/pull/37044)
    
  • [`c79688ffe3`](https://github.com/nodejs/node/commit/c79688ffe3)] - **doc**: improve AsyncLocalStorage introduction (Romuald Brillout) [#&#8203;36946](https://github.com/nodejs/node/pull/36946)
    
  • [`a7b6464097`](https://github.com/nodejs/node/commit/a7b6464097)] - **doc**: `EventTarget` and `Event` are available to user code since v15.0.0 (ExE Boss) [#&#8203;37059](https://github.com/nodejs/node/pull/37059)
    
  • [`3722c15a75`](https://github.com/nodejs/node/commit/3722c15a75)] - **doc**: add missing comma in tty (Matthew Mario Di Pasquale) [#&#8203;37039](https://github.com/nodejs/node/pull/37039)
    
  • [`2cfe7954fc`](https://github.com/nodejs/node/commit/2cfe7954fc)] - **doc**: list Unsupported Directory Import resolve err (Guy Bedford) [#&#8203;37032](https://github.com/nodejs/node/pull/37032)
    
  • [`fef6ac77e5`](https://github.com/nodejs/node/commit/fef6ac77e5)] - **doc**: add missing ARIA label for button (Rich Trott) [#&#8203;37031](https://github.com/nodejs/node/pull/37031)
    
  • [`634bedcd6f`](https://github.com/nodejs/node/commit/634bedcd6f)] - **doc,test**: fix prime generation description (Tobias Nießen) [#&#8203;37085](https://github.com/nodejs/node/pull/37085)
    
  • [`181719d4c4`](https://github.com/nodejs/node/commit/181719d4c4)] - **esm**: update to correct deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147)
    
  • [`02f1d2fda4`](https://github.com/nodejs/node/commit/02f1d2fda4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918)
    
  • [`69402522fd`](https://github.com/nodejs/node/commit/69402522fd)] - **fs**: read full size if known in promises.readFile (Anna Henningsen) [#&#8203;37127](https://github.com/nodejs/node/pull/37127)
    
  • [`ad12fefcb0`](https://github.com/nodejs/node/commit/ad12fefcb0)] - **fs**: only use Buffer.concat in promises.readFile when necessary (Anna Henningsen) [#&#8203;37127](https://github.com/nodejs/node/pull/37127)
    
  • [`6f54a14cda`](https://github.com/nodejs/node/commit/6f54a14cda)] - **fs**: add validatePosition and use in read and readSync (Darshan Sen) [#&#8203;37051](https://github.com/nodejs/node/pull/37051)
    
  • [`175f6f0be3`](https://github.com/nodejs/node/commit/175f6f0be3)] - **fs**: use throwIfNoEntry option on statSync calls (Antoine du Hamel) [#&#8203;36975](https://github.com/nodejs/node/pull/36975)
    
  • [`97fc7d8396`](https://github.com/nodejs/node/commit/97fc7d8396)] - **fs**: refactor to remove redundant validation (Darshan Sen) [#&#8203;36984](https://github.com/nodejs/node/pull/36984)
    
  • [`0129a79d0a`](https://github.com/nodejs/node/commit/0129a79d0a)] - **fs**: add explicit note about undefined path when recursive (Sebastian Silbermann) [#&#8203;37010](https://github.com/nodejs/node/pull/37010)
    
  • [`7196ac19c1`](https://github.com/nodejs/node/commit/7196ac19c1)] - **http**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37124](https://github.com/nodejs/node/pull/37124)
    
  • [`ed58065d1f`](https://github.com/nodejs/node/commit/ed58065d1f)] - **lib**: add `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005)
    
  • [`67b58f68c9`](https://github.com/nodejs/node/commit/67b58f68c9)] - **lib**: refactor to use validateObject (ZiJian Liu) [#&#8203;37028](https://github.com/nodejs/node/pull/37028)
    
  • [`5227c5e6f5`](https://github.com/nodejs/node/commit/5227c5e6f5)] - **lib**: refactor to use validateFunction (ZiJian Liu) [#&#8203;37045](https://github.com/nodejs/node/pull/37045)
    
  • [`34adf7f74b`](https://github.com/nodejs/node/commit/34adf7f74b)] - **lib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37029](https://github.com/nodejs/node/pull/37029)
    
  • [`4a1fc42178`](https://github.com/nodejs/node/commit/4a1fc42178)] - **lib**: refactor to use optional chaining in internal/options.js (raisinten) [#&#8203;36939](https://github.com/nodejs/node/pull/36939)
    
  • [`d76400a264`](https://github.com/nodejs/node/commit/d76400a264)] - **lib**: refactor to use validateString (ZiJian Liu) [#&#8203;37006](https://github.com/nodejs/node/pull/37006)
    
  • [`a29da64b46`](https://github.com/nodejs/node/commit/a29da64b46)] - **lib**: refactor to use validateNumber (ZiJian Liu) [#&#8203;36993](https://github.com/nodejs/node/pull/36993)
    
  • [`56377d6cee`](https://github.com/nodejs/node/commit/56377d6cee)] - **lib**: support returning Safe collections from C++ (ExE Boss) [#&#8203;36989](https://github.com/nodejs/node/pull/36989)
    
  • [`c4cab1f408`](https://github.com/nodejs/node/commit/c4cab1f408)] - **lib**: refactor to use validateBoolean (ZiJian Liu) [#&#8203;36983](https://github.com/nodejs/node/pull/36983)
    
  • [`11dd2672cd`](https://github.com/nodejs/node/commit/11dd2672cd)] - **quic**: remove quic (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067)
    
  • [`b533485f32`](https://github.com/nodejs/node/commit/b533485f32)] - **quic**: remove duplicate checks (ZiJian Liu) [#&#8203;37017](https://github.com/nodejs/node/pull/37017)
    
  • [`1714998e2c`](https://github.com/nodejs/node/commit/1714998e2c)] - **readline**: replace \_questionCancel with a symbol (Colin Ihrig) [#&#8203;37094](https://github.com/nodejs/node/pull/37094)
    
  • [`3d64d2b5ef`](https://github.com/nodejs/node/commit/3d64d2b5ef)] - **readline**: check for null input in question() (Colin Ihrig) [#&#8203;37089](https://github.com/nodejs/node/pull/37089)
    
  • [`75124298d5`](https://github.com/nodejs/node/commit/75124298d5)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662)
    
  • [`4e757eab96`](https://github.com/nodejs/node/commit/4e757eab96)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676)
    
  • [`a26dfb323b`](https://github.com/nodejs/node/commit/a26dfb323b)] - **src**: expose BaseObject::kInternalFieldCount in post-mortem metadata (Joyee Cheung) [#&#8203;37111](https://github.com/nodejs/node/pull/37111)
    
  • [`9c831c0d8f`](https://github.com/nodejs/node/commit/9c831c0d8f)] - **src**: fix dead code in RandomPrimeTraits (Tobias Nießen) [#&#8203;37083](https://github.com/nodejs/node/pull/37083)
    
  • [`81e9acf242`](https://github.com/nodejs/node/commit/81e9acf242)] - **src**: rename crypto_ecdh.(h|cc) to crypto_ec.(h|cc) (Tobias Nießen) [#&#8203;37048](https://github.com/nodejs/node/pull/37048)
    
  • [`1f819ec47d`](https://github.com/nodejs/node/commit/1f819ec47d)] - **test**: add tests for `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005)
    
  • [`db38cf27c2`](https://github.com/nodejs/node/commit/db38cf27c2)] - **test**: increase inspect coverage (Emil Sivervik) [#&#8203;36755](https://github.com/nodejs/node/pull/36755)
    
  • [`10da5c1104`](https://github.com/nodejs/node/commit/10da5c1104)] - **test**: skip tests consistently in parallel.status (Rich Trott) [#&#8203;37035](https://github.com/nodejs/node/pull/37035)
    
  • [`da07eb654e`](https://github.com/nodejs/node/commit/da07eb654e)] - **test**: increase read file abort coverage (Moshe vilner) [#&#8203;36716](https://github.com/nodejs/node/pull/36716)
    
  • [`55407b826f`](https://github.com/nodejs/node/commit/55407b826f)] - **test**: update to improve terminology (Michael Dawson) [#&#8203;37011](https://github.com/nodejs/node/pull/37011)
    
  • [`ef2b25088d`](https://github.com/nodejs/node/commit/ef2b25088d)] - **test**: increase coverage for assert/calltracker (ZiJian Liu) [#&#8203;36728](https://github.com/nodejs/node/pull/36728)
    
  • [`074641c2e9`](https://github.com/nodejs/node/commit/074641c2e9)] - **test**: improve assertion message for test-vm-memleak (Rich Trott) [#&#8203;37034](https://github.com/nodejs/node/pull/37034)
    
  • [`4086b230b8`](https://github.com/nodejs/node/commit/4086b230b8)] - **test**: increase fs promise coverage (Emil Sivervik) [#&#8203;36813](https://github.com/nodejs/node/pull/36813)
    
  • [`94204f7e46`](https://github.com/nodejs/node/commit/94204f7e46)] - **test**: process.nextTick for before exit (ttzztztz) [#&#8203;37012](https://github.com/nodejs/node/pull/37012)
    
  • [`2135618052`](https://github.com/nodejs/node/commit/2135618052)] - **test**: increase timeout on ASAN Action (Antoine du Hamel) [#&#8203;37007](https://github.com/nodejs/node/pull/37007)
    
  • [`de6dca12e8`](https://github.com/nodejs/node/commit/de6dca12e8)] - **test**: improve coverage of `SourceTextModule` getters (Juan José Arboleda) [#&#8203;37013](https://github.com/nodejs/node/pull/37013)
    
  • [`36cc8df358`](https://github.com/nodejs/node/commit/36cc8df358)] - **test**: log error in test-fs-realpath-pipe (Joyee Cheung) [#&#8203;36996](https://github.com/nodejs/node/pull/36996)
    
  • [`36930e4fe7`](https://github.com/nodejs/node/commit/36930e4fe7)] - **test**: test mode passed as an options object in mkdir/mkdirSync (Darshan Sen) [#&#8203;37008](https://github.com/nodejs/node/pull/37008)
    
  • [`9c69ca5e54`](https://github.com/nodejs/node/commit/9c69ca5e54)] - **test,doc,lib**: adjust object literal newlines for lint rule (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040)
    
  • [`fe9f4fdba5`](https://github.com/nodejs/node/commit/fe9f4fdba5)] - **tools**: remove commented code from stability.js (Colin Ihrig) [#&#8203;37092](https://github.com/nodejs/node/pull/37092)
    
  • [`d2d6121f3e`](https://github.com/nodejs/node/commit/d2d6121f3e)] - **tools**: enable object-curly-newline in ESLint rules (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040)
    
  • [`3187845980`](https://github.com/nodejs/node/commit/3187845980)] - **util**: add internal createDeferredPromise() (Colin Ihrig) [#&#8203;37095](https://github.com/nodejs/node/pull/37095)
    
    

v15.7.0

Compare Source

Notable changes
Commits
  • [`775b34b822`](https://github.com/nodejs/node/commit/775b34b822)] - **(SEMVER-MINOR)** **buffer**: introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811)
    
  • [`832cd015d5`](https://github.com/nodejs/node/commit/832cd015d5)] - **(SEMVER-MINOR)** **buffer**: add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952)
    
  • [`7ce7404f79`](https://github.com/nodejs/node/commit/7ce7404f79)] - **build**: fix compiling against openssl with no-psk (Caleb ツ Everett) [#&#8203;36881](https://github.com/nodejs/node/pull/36881)
    
  • [`b7d8e61ef1`](https://github.com/nodejs/node/commit/b7d8e61ef1)] - **crypto**: fix randomInt bias (Tobias Nießen) [#&#8203;36894](https://github.com/nodejs/node/pull/36894)
    
  • [`1149af6265`](https://github.com/nodejs/node/commit/1149af6265)] - **(SEMVER-MINOR)** **crypto**: add keyObject.asymmetricKeyDetails for asymmetric keys (Filip Skokan) [#&#8203;36188](https://github.com/nodejs/node/pull/36188)
    
  • [`0398167b35`](https://github.com/nodejs/node/commit/0398167b35)] - **crypto**: fix WebCrypto import of RSA-PSS keys (Tobias Nießen) [#&#8203;36877](https://github.com/nodejs/node/pull/36877)
    
  • [`e52e860172`](https://github.com/nodejs/node/commit/e52e860172)] - **deps**: upgrade npm to 7.4.3 (Ruy Adorno) [#&#8203;37018](https://github.com/nodejs/node/pull/37018)
    
  • [`ef3a5f6958`](https://github.com/nodejs/node/commit/ef3a5f6958)] - **deps**: update ICU to 68.2 (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980)
    
  • [`ca479b9e9d`](https://github.com/nodejs/node/commit/ca479b9e9d)] - **deps**: V8: cherry-pick [`fe191e8`](https://github.com/nodejs/node/commit/fe191e8d05cc) (Benjamin Coe) [#&#8203;36956](https://github.com/nodejs/node/pull/36956)
    
  • [`6f773fbe84`](https://github.com/nodejs/node/commit/6f773fbe84)] - **deps**: upgrade npm to 7.4.2 (Ruy Adorno) [#&#8203;36953](https://github.com/nodejs/node/pull/36953)
    
  • [`4b952d8d3e`](https://github.com/nodejs/node/commit/4b952d8d3e)] - **doc**: fix maintaining ICU guide (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980)
    
  • [`a2559b9044`](https://github.com/nodejs/node/commit/a2559b9044)] - **doc**: add [@&#8203;RaisinTen](https://github.com/RaisinTen) to collaborators (Darshan Sen) [#&#8203;36998](https://github.com/nodejs/node/pull/36998)
    
  • [`4d5273b156`](https://github.com/nodejs/node/commit/4d5273b156)] - **doc**: fix typo in http.server.requestTimout docs (alexbs) [#&#8203;36987](https://github.com/nodejs/node/pull/36987)
    
  • [`93fc295b75`](https://github.com/nodejs/node/commit/93fc295b75)] - **doc**: add performance notes for fs.readFile (James M Snell) [#&#8203;36880](https://github.com/nodejs/node/pull/36880)
    
  • [`7ea374b159`](https://github.com/nodejs/node/commit/7ea374b159)] - **doc**: clarify maxSockets option of http.Agent (Pooja D P) [#&#8203;36941](https://github.com/nodejs/node/pull/36941)
    
  • [`f3637d5328`](https://github.com/nodejs/node/commit/f3637d5328)] - **doc**: remove pull-requests.md preamble (Rich Trott) [#&#8203;36960](https://github.com/nodejs/node/pull/36960)
    
  • [`d2d9ad7477`](https://github.com/nodejs/node/commit/d2d9ad7477)] - **doc**: fix module.isPreloading documentation (Antoine du Hamel) [#&#8203;36944](https://github.com/nodejs/node/pull/36944)
    
  • [`48b6781151`](https://github.com/nodejs/node/commit/48b6781151)] - **doc**: fix crypto.generateKeySync aes allowed length list (Filip Skokan) [#&#8203;36928](https://github.com/nodejs/node/pull/36928)
    
  • [`120db2c169`](https://github.com/nodejs/node/commit/120db2c169)] - **doc**: fix grammar and link to QUIC in changelog (Dan Dascalescu) [#&#8203;36959](https://github.com/nodejs/node/pull/36959)
    
  • [`af0f0a0f65`](https://github.com/nodejs/node/commit/af0f0a0f65)] - **doc**: fix percentile range in perf_hooks.md (raisinten) [#&#8203;36938](https://github.com/nodejs/node/pull/36938)
    
  • [`8cf280d9ab`](https://github.com/nodejs/node/commit/8cf280d9ab)] - **doc**: improve perf_hooks docs (Juan José Arboleda) [#&#8203;36909](https://github.com/nodejs/node/pull/36909)
    
  • [`3ea37c2d67`](https://github.com/nodejs/node/commit/3ea37c2d67)] - **doc**: fix invalid HTML in doc template (Rich Trott) [#&#8203;36930](https://github.com/nodejs/node/pull/36930)
    
  • [`eaf378aa46`](https://github.com/nodejs/node/commit/eaf378aa46)] - **doc**: remove issue template duplication from contributing docs (Rich Trott) [#&#8203;36908](https://github.com/nodejs/node/pull/36908)
    
  • [`7a794417f3`](https://github.com/nodejs/node/commit/7a794417f3)] - **doc**: remove resolving-a-bug-report from contributing docs (Rich Trott) [#&#8203;36905](https://github.com/nodejs/node/pull/36905)
    
  • [`707b97307d`](https://github.com/nodejs/node/commit/707b97307d)] - **doc**: use ESM syntax for WASI example (Antoine du Hamel) [#&#8203;36848](https://github.com/nodejs/node/pull/36848)
    
  • [`5a9a07e7cd`](https://github.com/nodejs/node/commit/5a9a07e7cd)] - **doc**: add iansu to collaborators (Ian Sutherland) [#&#8203;36951](https://github.com/nodejs/node/pull/36951)
    
  • [`aa3bc74cd6`](https://github.com/nodejs/node/commit/aa3bc74cd6)] - **doc**: fixup typo in metadata entry (James M Snell) [#&#8203;36947](https://github.com/nodejs/node/pull/36947)
    
  • [`22e29ccfa3`](https://github.com/nodejs/node/commit/22e29ccfa3)] - **doc**: add alternative version links to the packages page (Filip Skokan) [#&#8203;36915](https://github.com/nodejs/node/pull/36915)
    
  • [`80c84a1136`](https://github.com/nodejs/node/commit/80c84a1136)] - **doc**: add miladfarca to collaborators (Milad Fa) [#&#8203;36934](https://github.com/nodejs/node/pull/36934)
    
  • [`e73b1072f3`](https://github.com/nodejs/node/commit/e73b1072f3)] - **doc**: update tls test to use better terminology (Michael Dawson) [#&#8203;36851](https://github.com/nodejs/node/pull/36851)
    
  • [`5cbf638c06`](https://github.com/nodejs/node/commit/5cbf638c06)] - **doc**: remove unnecessary contributing.md section (Rich Trott) [#&#8203;36891](https://github.com/nodejs/node/pull/36891)
    
  • [`f99b38fedd`](https://github.com/nodejs/node/commit/f99b38fedd)] - **doc**: wrap TOC in a \<details> tag (Mattia Pontonio) [#&#8203;36896](https://github.com/nodejs/node/pull/36896)
    
  • [`82eccddf1e`](https://github.com/nodejs/node/commit/82eccddf1e)] - **doc**: update fs.l/statSync API history for throwIfNoEntry (Andrew Casey) [#&#8203;36882](https://github.com/nodejs/node/pull/36882)
    
  • [`70cd43c32e`](https://github.com/nodejs/node/commit/70cd43c32e)] - **doc**: change "it's" to "its" where necessary (Tobias Nießen) [#&#8203;36913](https://github.com/nodejs/node/pull/36913)
    
  • [`02a8f52040`](https://github.com/nodejs/node/commit/02a8f52040)] - **doc**: fix indentation on http2 doc entry (Rich Trott) [#&#8203;36869](https://github.com/nodejs/node/pull/36869)
    
  • [`dc596d0607`](https://github.com/nodejs/node/commit/dc596d0607)] - **events**: remove error listener on signal abort (ZiJian Liu) [#&#8203;36969](https://github.com/nodejs/node/pull/36969)
    
  • [`c4cdf1d830`](https://github.com/nodejs/node/commit/c4cdf1d830)] - **(SEMVER-MINOR)** **fs**: allow `position` parameter to be a `BigInt` in read and readSync (raisinten) [#&#8203;36190](https://github.com/nodejs/node/pull/36190)
    
  • [`70ee7dce62`](https://github.com/nodejs/node/commit/70ee7dce62)] - **(SEMVER-MINOR)** **http**: attach request as res.req (Ian Storm Taylor) [#&#8203;36505](https://github.com/nodejs/node/pull/36505)
    
  • [`f07e1c9d03`](https://github.com/nodejs/node/commit/f07e1c9d03)] - **http**: abortIncoming only on socket close (Robert Nagy) [#&#8203;36821](https://github.com/nodejs/node/pull/36821)
    
  • [`aa7243e3d4`](https://github.com/nodejs/node/commit/aa7243e3d4)] - **http**: refactor ClientRequest destroy (Robert Nagy) [#&#8203;36863](https://github.com/nodejs/node/pull/36863)
    
  • [`80051abfcb`](https://github.com/nodejs/node/commit/80051abfcb)] - **http**: cleanup ClientRequest oncreate (Robert Nagy) [#&#8203;36862](https://github.com/nodejs/node/pull/36862)
    
  • [`f5b8e7b068`](https://github.com/nodejs/node/commit/f5b8e7b068)] - **http2**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36700](https://github.com/nodejs/node/pull/36700)
    
  • [`8aeba3cb92`](https://github.com/nodejs/node/commit/8aeba3cb92)] - **lib**: refactor to use validateArray (ZiJian Liu) [#&#8203;36982](https://github.com/nodejs/node/pull/36982)
    
  • [`743dd8f89d`](https://github.com/nodejs/node/commit/743dd8f89d)] - **lib**: remove non used getter in `lib/perf\_hooks.js` (Juan José Arboleda) [#&#8203;36907](https://github.com/nodejs/node/pull/36907)
    
  • [`f2ac4bb8e2`](https://github.com/nodejs/node/commit/f2ac4bb8e2)] - **lib**: expose primordials object (Antoine du Hamel) [#&#8203;36872](https://github.com/nodejs/node/pull/36872)
    
  • [`850d3578b6`](https://github.com/nodejs/node/commit/850d3578b6)] - **lib**: refactor `primordials.makeSafe` to use more primordials (ExE Boss) [#&#8203;36865](https://github.com/nodejs/node/pull/36865)
    
  • [`b86c48cc91`](https://github.com/nodejs/node/commit/b86c48cc91)] - **lib**: refactor source_map to use more primordials (Antoine du Hamel) [#&#8203;36733](https://github.com/nodejs/node/pull/36733)
    
  • [`1ef92f61fa`](https://github.com/nodejs/node/commit/1ef92f61fa)] - **lib**: refactor source_map to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36734](https://github.com/nodejs/node/pull/36734)
    
  • [`5290d63e7f`](https://github.com/nodejs/node/commit/5290d63e7f)] - **module**: simplify tryStatSync with throwIfNoEntry option (Antoine du Hamel) [#&#8203;36971](https://github.com/nodejs/node/pull/36971)
    
  • [`89a7941425`](https://github.com/nodejs/node/commit/89a7941425)] - **os**: performance improvement in vector allocation (Yash Ladha) [#&#8203;36748](https://github.com/nodejs/node/pull/36748)
    
  • [`3f75a60b51`](https://github.com/nodejs/node/commit/3f75a60b51)] - **perf_hooks**: throw ERR_INVALID_ARG_VALUE if histogram.percentile param is NaN (ZiJian Liu) [#&#8203;36937](https://github.com/nodejs/node/pull/36937)
    
  • [`9951daefbd`](https://github.com/nodejs/node/commit/9951daefbd)] - **repl**: refactor to avoid unsafe array iteration (raisinten) [#&#8203;36663](https://github.com/nodejs/node/pull/36663)
    
  • [`868d3b2ff6`](https://github.com/nodejs/node/commit/868d3b2ff6)] - **src**: use BaseObject::kInteralFieldCount in Blob (Joyee Cheung) [#&#8203;36991](https://github.com/nodejs/node/pull/36991)
    
  • [`a5ffdaee1c`](https://github.com/nodejs/node/commit/a5ffdaee1c)] - **src**: replace push_back with emplace_back in debug_utils (raisinten) [#&#8203;36897](https://github.com/nodejs/node/pull/36897)
    
  • [`d54998538e`](https://github.com/nodejs/node/commit/d54998538e)] - **src**: use BaseObject::kInternalFieldCount in X509Certificate constructor (Joyee Cheung) [#&#8203;36892](https://github.com/nodejs/node/pull/36892)
    
  • [`7acea78493`](https://github.com/nodejs/node/commit/7acea78493)] - **test**: mark flaky tests on IBM i (Richard Lau) [#&#8203;36986](https://github.com/nodejs/node/pull/36986)
    
  • [`e69c4a941d`](https://github.com/nodejs/node/commit/e69c4a941d)] - **(SEMVER-MINOR)** **test**: add wpt tests for Blob (Michaël Zasso) [#&#8203;36811](https://github.com/nodejs/node/pull/36811)
    
  • [`2f1f1dadaa`](https://github.com/nodejs/node/commit/2f1f1dadaa)] - **test**: increase buffer list coverage (Emil Sivervik) [#&#8203;36688](https://github.com/nodejs/node/pull/36688)
    
  • [`8d49ce9d75`](https://github.com/nodejs/node/commit/8d49ce9d75)] - **test**: fix warning in test_environment.cc (raisinten) [#&#8203;36846](https://github.com/nodejs/node/pull/36846)
    
  • [`98369aaf7b`](https://github.com/nodejs/node/commit/98369aaf7b)] - **test**: remove unused ecdhPeerKey (Daniel Bevenius) [#&#8203;36942](https://github.com/nodejs/node/pull/36942)
    
  • [`ba87be0b0e`](https://github.com/nodejs/node/commit/ba87be0b0e)] - **test**: improve coverage for `Module` getters (Juan José Arboleda) [#&#8203;36950](https://github.com/nodejs/node/pull/36950)
    
  • [`c7dd9c8c69`](https://github.com/nodejs/node/commit/c7dd9c8c69)] - **test**: skip internet for test-npm-install (Ruy Adorno) [#&#8203;36933](https://github.com/nodejs/node/pull/36933)
    
  • [`3bbe9a5588`](https://github.com/nodejs/node/commit/3bbe9a5588)] - **test**: improve coverage on worker threads (Juan José Arboleda) [#&#8203;36910](https://github.com/nodejs/node/pull/36910)
    
  • [`f589bb2052`](https://github.com/nodejs/node/commit/f589bb2052)] - **test**: improve coverage at `lib/internal/vm/module.js` (Juan José Arboleda) [#&#8203;36898](https://github.com/nodejs/node/pull/36898)
    
  • [`8a8241529e`](https://github.com/nodejs/node/commit/8a8241529e)] - ***Revert*** "**test**: mark test-cluster-bind-privileged-port flaky on arm" (Rod Vagg) [#&#8203;36884](https://github.com/nodejs/node/pull/36884)
    
  • [`99c15909ad`](https://github.com/nodejs/node/commit/99c15909ad)] - **test**: fixup flaky test-crypto-x509 on windows (James M Snell) [#&#8203;36966](https://github.com/nodejs/node/pull/36966)
    
  • [`c2ec15aff6`](https://github.com/nodejs/node/commit/c2ec15aff6)] - **test**: check mustCall errors in test-fs-read-type (Tobias Nießen) [#&#8203;36914](https://github.com/nodejs/node/pull/36914)
    
  • [`30b2aac98a`](https://github.com/nodejs/node/commit/30b2aac98a)] - **test**: fix variable name for non-RSA keys (Tobias Nießen) [#&#8203;36912](https://github.com/nodejs/node/pull/36912)
    
  • [`fada6b0087`](https://github.com/nodejs/node/commit/fada6b0087)] - **test,benchmark**: stop requiring URL and URLSearchParams (raisinten) [#&#8203;36927](https://github.com/nodejs/node/pull/36927)
    
  • [`864b97b24d`](https://github.com/nodejs/node/commit/864b97b24d)] - **tls**: use recently added matching SecureContext in default SNICallback (Mateusz Krawczuk) [#&#8203;36072](https://github.com/nodejs/node/pull/36072)
    
  • [`6ef54bb9ca`](https://github.com/nodejs/node/commit/6ef54bb9ca)] - **tools**: cleanup old ICU version-specific fixes (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980)
    
  • [`8e02b53b09`](https://github.com/nodejs/node/commit/8e02b53b09)] - **tools**: update ESLint to 7.18.0 (Colin Ihrig) [#&#8203;36955](https://github.com/nodejs/node/pull/36955)
    
  • [`8dc8adc782`](https://github.com/nodejs/node/commit/8dc8adc782)] - **tools**: add support for top-level await syntax in linter (Antoine du Hamel) [#&#8203;36911](https://github.com/nodejs/node/pull/36911)
    
  • [`17bdcd9d18`](https://github.com/nodejs/node/commit/17bdcd9d18)] - **tools,doc**: list the stability status of each API (Zijian Liu) [#&#8203;36223](https://github.com/nodejs/node/pull/36223)
    
  • [`889654d36c`](https://github.com/nodejs/node/commit/889654d36c)] - **url**: align url format behavior with browsers (ZiJian Liu) [#&#8203;36903](https://github.com/nodejs/node/pull/36903)
    
  • [`64fed319ef`](https://github.com/nodejs/node/commit/64fed319ef)] - **(SEMVER-MINOR)** **url**: expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960)
    
  • [`f2704170a3`](https://github.com/nodejs/node/commit/f2704170a3)] - **util**: prefer `Reflect.ownKeys(…)` (ExE Boss) [#&#8203;36740](https://github.com/nodejs/node/pull/36740)
    
  • [`0d719476e0`](https://github.com/nodejs/node/commit/0d719476e0)] - **vm**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36752](https://github.com/nodejs/node/pull/36752)
    
  • [`bf695ebdb1`](https://github.com/nodejs/node/commit/bf695ebdb1)] - **worker**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36735](https://github.com/nodejs/node/pull/36735)
    
  • [`403b595ef5`](https://github.com/nodejs/node/commit/403b595ef5)] - **zlib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36722](https://github.com/nodejs/node/pull/36722)
    
    

v15.6.0

Compare Source

Notable Changes
  • child_process:
    • add 'overlapped' stdio flag (Thiago Padilha) #​29412
    • support AbortSignal in fork (Benjamin Gruenbaum) #​36603
  • crypto:
    • implement basic secure heap support (James M Snell) #​36779
    • fixup bug in keygen error handling (James M Snell) #​36779
    • introduce X509Certificate API (James M Snell) #​36804
    • implement randomuuid (James M Snell) #​36729
  • doc:
    • update release key for Danielle Adams (Danielle Adams) #​36793
    • add dnlup to collaborators (Daniele Belardi) #​36849
    • add panva to collaborators (Filip Skokan) #​36802
    • add yashLadha to collaborator (Yash Ladha) #​36666
  • http:
    • set lifo as the default scheduling strategy in Agent (Matteo Collina) #​36685
  • net:
    • support abortSignal in server.listen (Nitzan Uziely) #​36623
  • process:
    • add direct access to rss without iterating pages (Adrien Maret) #​34291
  • v8:
    • fix native serdes constructors (ExE Boss) #​36549
Commits
  • [`3ca7a786c5`](https://github.com/nodejs/node/commit/3ca7a786c5)] - **benchmark**: fix http2 benchmarks (Rich Trott) [#&#8203;36871](https://github.com/nodejs/node/pull/36871)
    
  • [`4601886d7c`](https://github.com/nodejs/node/commit/4601886d7c)] - **benchmark**: fix http/headers.js with test-double (Rich Trott) [#&#8203;36794](https://github.com/nodejs/node/pull/36794)
    
  • [`7aedda9dcd`](https://github.com/nodejs/node/commit/7aedda9dcd)] - **benchmark**: add simple https benchmark (Andrey Pechkurov) [#&#8203;36612](https://github.com/nodejs/node/pull/36612)
    
  • [`822ac48272`](https://github.com/nodejs/node/commit/822ac48272)] - **buffer**: make FastBuffer safe to construct (Antoine du Hamel) [#&#8203;36587](https://github.com/nodejs/node/pull/36587)
    
  • [`21f329532f`](https://github.com/nodejs/node/commit/21f329532f)] - **build**: refactor Makefile (raisinten) [#&#8203;36759](https://github.com/nodejs/node/pull/36759)
    
  • [`857b98eed9`](https://github.com/nodejs/node/commit/857b98eed9)] - **build**: fix unknown warning option (raisinten) [#&#8203;36629](https://github.com/nodejs/node/pull/36629)
    
  • [`ffaa8c1735`](https://github.com/nodejs/node/commit/ffaa8c1735)] - **build**: do not "exit" a script meant to be "source"d (François-Denis Gonthier) [#&#8203;35520](https://github.com/nodejs/node/pull/35520)
    
  • [`9bc2cec848`](https://github.com/nodejs/node/commit/9bc2cec848)] - **(SEMVER-MINOR)** **child_process**: add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412)
    
  • [`b98cc51be2`](https://github.com/nodejs/node/commit/b98cc51be2)] - **child_process**: reduce abort handler code duplication (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`78d4d91e54`](https://github.com/nodejs/node/commit/78d4d91e54)] - **child_process**: treat already-aborted controller as aborting (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`a8a427f646`](https://github.com/nodejs/node/commit/a8a427f646)] - **(SEMVER-MINOR)** **child_process**: support AbortSignal in fork (Benjamin Gruenbaum) [#&#8203;36603](https://github.com/nodejs/node/pull/36603)
    
  • [`7134d49e56`](https://github.com/nodejs/node/commit/7134d49e56)] - **child_process**: clean event listener correctly (Benjamin Gruenbaum) [#&#8203;36424](https://github.com/nodejs/node/pull/36424)
    
  • [`54bd4ab855`](https://github.com/nodejs/node/commit/54bd4ab855)] - **cluster**: fix edge cases that throw ERR_INTERNAL_ASSERTION (Ouyang Yadong) [#&#8203;36764](https://github.com/nodejs/node/pull/36764)
    
  • [`0c11a17d82`](https://github.com/nodejs/node/commit/0c11a17d82)] - **console**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36753](https://github.com/nodejs/node/pull/36753)
    
  • [`53cf996270`](https://github.com/nodejs/node/commit/53cf996270)] - **(SEMVER-MINOR)** **crypto**: implement basic secure heap support (James M Snell) [#&#8203;36779](https://github.com/nodejs/node/pull/36779)
    
  • [`42aca13953`](https://github.com/nodejs/node/commit/42aca13953)] - **(SEMVER-MINOR)** **crypto**: fixup bug in keygen error handling (James M Snell) [#&#8203;36779](https://github.com/nodejs/node/pull/36779)
    
  • [`c4ad50e0ff`](https://github.com/nodejs/node/commit/c4ad50e0ff)] - **(SEMVER-MINOR)** **crypto**: introduce X509Certificate API (James M Snell) [#&#8203;36804](https://github.com/nodejs/node/pull/36804)
    
  • [`4e4deca90d`](https://github.com/nodejs/node/commit/4e4deca90d)] - **(SEMVER-MINOR)** **crypto**: implement randomuuid (James M Snell) [#&#8203;36729](https://github.com/nodejs/node/pull/36729)
    
  • [`1c9ec2529e`](https://github.com/nodejs/node/commit/1c9ec2529e)] - **deps**: upgrade npm to 7.4.0 (Ruy Adorno) [#&#8203;36829](https://github.com/nodejs/node/pull/36829)
    
  • [`ff5bd04900`](https://github.com/nodejs/node/commit/ff5bd04900)] - **deps**: update nghttp2 to 1.42.0 (Michaël Zasso) [#&#8203;36842](https://github.com/nodejs/node/pull/36842)
    
  • [`578fa0fedf`](https://github.com/nodejs/node/commit/578fa0fedf)] - **deps**: V8: cherry-pick [`dfcdf78`](https://github.com/nodejs/node/commit/dfcdf7837e23) (Benjamin Coe) [#&#8203;36573](https://github.com/nodejs/node/pull/36573)
    
  • [`05f34c6963`](https://github.com/nodejs/node/commit/05f34c6963)] - **doc**: define "browser", "production", "development" (Guy Bedford) [#&#8203;36856](https://github.com/nodejs/node/pull/36856)
    
  • [`e8bb1f7350`](https://github.com/nodejs/node/commit/e8bb1f7350)] - **doc**: clarify event.isTrusted text (Rich Trott) [#&#8203;36827](https://github.com/nodejs/node/pull/36827)
    
  • [`153be6c80e`](https://github.com/nodejs/node/commit/153be6c80e)] - **doc**: fix module syncBuiltinESMExports example (Bruce A. MacNaughton) [#&#8203;34284](https://github.com/nodejs/node/pull/34284)
    
  • [`3b64b38142`](https://github.com/nodejs/node/commit/3b64b38142)] - **doc**: os.uptime() temporary bug notice (Nicholas Schamberg) [#&#8203;36503](https://github.com/nodejs/node/pull/36503)
    
  • [`da49624a46`](https://github.com/nodejs/node/commit/da49624a46)] - **doc**: update release key for Danielle Adams (Danielle Adams) [#&#8203;36793](https://github.com/nodejs/node/pull/36793)
    
  • [`2d8423da3c`](https://github.com/nodejs/node/commit/2d8423da3c)] - **doc**: clarify child_process.exec inherits cwd (ugultopu) [#&#8203;36809](https://github.com/nodejs/node/pull/36809)
    
  • [`1a4d34ebd0`](https://github.com/nodejs/node/commit/1a4d34ebd0)] - **doc**: clarify descriptions of \_writev chunks argument (James M Snell) [#&#8203;36822](https://github.com/nodejs/node/pull/36822)
    
  • [`7c7180a6f7`](https://github.com/nodejs/node/commit/7c7180a6f7)] - **doc**: document buffer's "Uint" aliases clearly (Michaël Zasso) [#&#8203;36796](https://github.com/nodejs/node/pull/36796)
    
  • [`ff6edbc6b2`](https://github.com/nodejs/node/commit/ff6edbc6b2)] - **doc**: add dnlup to collaborators (Daniele Belardi) [#&#8203;36849](https://github.com/nodejs/node/pull/36849)
    
  • [`835bdf0e50`](https://github.com/nodejs/node/commit/835bdf0e50)] - **doc**: improve crypto.randomUUID() text (Rich Trott) [#&#8203;36830](https://github.com/nodejs/node/pull/36830)
    
  • [`d4bcb3689d`](https://github.com/nodejs/node/commit/d4bcb3689d)] - **doc**: clarify subprocess.stdout/in/err/io properties (James M Snell) [#&#8203;36784](https://github.com/nodejs/node/pull/36784)
    
  • [`a956fb3fdd`](https://github.com/nodejs/node/commit/a956fb3fdd)] - **doc**: add dark mode (Ajay Poshak) [#&#8203;36313](https://github.com/nodejs/node/pull/36313)
    
  • [`757b9664cd`](https://github.com/nodejs/node/commit/757b9664cd)] - **doc**: revise method text in async_hooks.md (Rich Trott) [#&#8203;36736](https://github.com/nodejs/node/pull/36736)
    
  • [`b4091ea59b`](https://github.com/nodejs/node/commit/b4091ea59b)] - **doc**: clarify when messageerror is emitted (James M Snell) [#&#8203;36780](https://github.com/nodejs/node/pull/36780)
    
  • [`61b039365c`](https://github.com/nodejs/node/commit/61b039365c)] - **doc**: avoid memory leak warning in async_hooks example (James M Snell) [#&#8203;36783](https://github.com/nodejs/node/pull/36783)
    
  • [`a7bb4da55e`](https://github.com/nodejs/node/commit/a7bb4da55e)] - **doc**: clarify that --require only supports cjs (James M Snell) [#&#8203;36806](https://github.com/nodejs/node/pull/36806)
    
  • [`c6eb2b4fec`](https://github.com/nodejs/node/commit/c6eb2b4fec)] - **doc**: clarify Buffer.from when using ArrayBuffer (James M Snell) [#&#8203;36785](https://github.com/nodejs/node/pull/36785)
    
  • [`ad1d8fba9f`](https://github.com/nodejs/node/commit/ad1d8fba9f)] - **doc**: fix broken link for ChildProcess (James M Snell) [#&#8203;36788](https://github.com/nodejs/node/pull/36788)
    
  • [`ef628891f7`](https://github.com/nodejs/node/commit/ef628891f7)] - **doc**: revise exit() and run() text in async_hooks.md (Rich Trott) [#&#8203;36738](https://github.com/nodejs/node/pull/36738)
    
  • [`ff39464559`](https://github.com/nodejs/node/commit/ff39464559)] - **doc**: add OpenSSL CVE fix to notable changes in v15.5.0 (Beth Griggs) [#&#8203;36798](https://github.com/nodejs/node/pull/36798)
    
  • [`6db465a99f`](https://github.com/nodejs/node/commit/6db465a99f)] - **doc**: clarify that N-API addons are context-aware (Alba Mendez) [#&#8203;36640](https://github.com/nodejs/node/pull/36640)
    
  • [`fad07d5439`](https://github.com/nodejs/node/commit/fad07d5439)] - **doc**: fix typo in esm documentation (Mohamed Kamagate) [#&#8203;36800](https://github.com/nodejs/node/pull/36800)
    
  • [`67dd48ed05`](https://github.com/nodejs/node/commit/67dd48ed05)] - **doc**: add panva to collaborators (Filip Skokan) [#&#8203;36802](https://github.com/nodejs/node/pull/36802)
    
  • [`b2c1aeb694`](https://github.com/nodejs/node/commit/b2c1aeb694)] - **doc**: revise process.memoryUsage() text (Rich Trott) [#&#8203;36757](https://github.com/nodejs/node/pull/36757)
    
  • [`8f672ebbd6`](https://github.com/nodejs/node/commit/8f672ebbd6)] - **doc**: add YAML metadata for process.memoryUsage.rss (Gerhard Stoebich) [#&#8203;36781](https://github.com/nodejs/node/pull/36781)
    
  • [`fa54f012b8`](https://github.com/nodejs/node/commit/fa54f012b8)] - **doc**: reduce abbreviations in async_hooks.md (Rich Trott) [#&#8203;36737](https://github.com/nodejs/node/pull/36737)
    
  • [`56c00d7b2f`](https://github.com/nodejs/node/commit/56c00d7b2f)] - **doc**: simplify pull request template (Rich Trott) [#&#8203;36739](https://github.com/nodejs/node/pull/36739)
    
  • [`214dbac8ff`](https://github.com/nodejs/node/commit/214dbac8ff)] - **doc**: clarify undocumented stream properties (James M Snell) [#&#8203;36715](https://github.com/nodejs/node/pull/36715)
    
  • [`242ce19346`](https://github.com/nodejs/node/commit/242ce19346)] - **doc**: document common warning types (James M Snell) [#&#8203;36713](https://github.com/nodejs/node/pull/36713)
    
  • [`d3dc124575`](https://github.com/nodejs/node/commit/d3dc124575)] - **doc**: update emitClose default for fs streams (Kevin Locke) [#&#8203;36653](https://github.com/nodejs/node/pull/36653)
    
  • [`181bd0510f`](https://github.com/nodejs/node/commit/181bd0510f)] - **doc**: improve ALS.enterWith and exit descriptions (Andrey Pechkurov) [#&#8203;36705](https://github.com/nodejs/node/pull/36705)
    
  • [`edf8c6de5a`](https://github.com/nodejs/node/commit/edf8c6de5a)] - **doc**: add note about uncloneable objects (James M Snell) [#&#8203;36534](https://github.com/nodejs/node/pull/36534)
    
  • [`651e7d27b7`](https://github.com/nodejs/node/commit/651e7d27b7)] - **doc**: document http.IncomingMessage behaviour change (Dr) [#&#8203;36641](https://github.com/nodejs/node/pull/36641)
    
  • [`72b0ab0739`](https://github.com/nodejs/node/commit/72b0ab0739)] - **doc**: add yashLadha to collaborator (Yash Ladha) [#&#8203;36666](https://github.com/nodejs/node/pull/36666)
    
  • [`8a0cdb3b4e`](https://github.com/nodejs/node/commit/8a0cdb3b4e)] - **doc**: alphabetize http response properties (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631)
    
  • [`ff4674b033`](https://github.com/nodejs/node/commit/ff4674b033)] - **doc**: correct callback parameter type for createPushResponse() (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631)
    
  • [`f623d5d377`](https://github.com/nodejs/node/commit/f623d5d377)] - **doc**: use \_code name\_ rather than \_codename\_ (Rich Trott) [#&#8203;36611](https://github.com/nodejs/node/pull/36611)
    
  • [`1ed517c176`](https://github.com/nodejs/node/commit/1ed517c176)] - **doc**: document return value of https.request (Michael Chen) [#&#8203;36370](https://github.com/nodejs/node/pull/36370)
    
  • [`5645b21e23`](https://github.com/nodejs/node/commit/5645b21e23)] - **doc**: document "http: lazy create IncomingMessage.headers" (ExE Boss) [#&#8203;36601](https://github.com/nodejs/node/pull/36601)
    
  • [`3ee4cfc7d7`](https://github.com/nodejs/node/commit/3ee4cfc7d7)] - **doc**: fix bugs in \_construct() example (Maksym Baranovskyi) [#&#8203;36509](https://github.com/nodejs/node/pull/36509)
    
  • [`93237c5999`](https://github.com/nodejs/node/commit/93237c5999)] - **doc**: remove replication of GitHub template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590)
    
  • [`538f226f6d`](https://github.com/nodejs/node/commit/538f226f6d)] - **doc**: remove "Related Issues" from pull request template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590)
    
  • [`dcc93d3dce`](https://github.com/nodejs/node/commit/dcc93d3dce)] - **doc**: expand openssl instructions (Michael Dawson) [#&#8203;36554](https://github.com/nodejs/node/pull/36554)
    
  • [`41e278bf61`](https://github.com/nodejs/node/commit/41e278bf61)] - **docs**: add references to punycode.md (Isaac Levy) [#&#8203;36761](https://github.com/nodejs/node/pull/36761)
    
  • [`9b9b6d5fc5`](https://github.com/nodejs/node/commit/9b9b6d5fc5)] - **domain**: make node resilient to Array prototype tempering (Antoine du Hamel) [#&#8203;36676](https://github.com/nodejs/node/pull/36676)
    
  • [`f0a9c53bec`](https://github.com/nodejs/node/commit/f0a9c53bec)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36651](https://github.com/nodejs/node/pull/36651)
    
  • [`c844d22b72`](https://github.com/nodejs/node/commit/c844d22b72)] - **errors**: eliminate all overhead for hidden calls (Momtchil Momtchev) [#&#8203;35644](https://github.com/nodejs/node/pull/35644)
    
  • [`3fa470a3c9`](https://github.com/nodejs/node/commit/3fa470a3c9)] - **events**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36763](https://github.com/nodejs/node/pull/36763)
    
  • [`82393aefff`](https://github.com/nodejs/node/commit/82393aefff)] - **events**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36304](https://github.com/nodejs/node/pull/36304)
    
  • [`e3a091d9f3`](https://github.com/nodejs/node/commit/e3a091d9f3)] - **fs**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36699](https://github.com/nodejs/node/pull/36699)
    
  • [`d5e1b82125`](https://github.com/nodejs/node/commit/d5e1b82125)] - **fs**: accept non-32-bit length in writeBuffer (raisinten) [#&#8203;36667](https://github.com/nodejs/node/pull/36667)
    
  • [`d858c9576a`](https://github.com/nodejs/node/commit/d858c9576a)] - **http**: remove dead code from internal/http.js (ZiJian Liu) [#&#8203;36630](https://github.com/nodejs/node/pull/36630)
    
  • [`7e3ad1be32`](https://github.com/nodejs/node/commit/7e3ad1be32)] - ***Revert*** "**http**: remove dead code from internal/http.js" (ZiJian Liu) [#&#8203;36890](https://github.com/nodejs/node/pull/36890)
    
  • [`a9a2dd32e3`](https://github.com/nodejs/node/commit/a9a2dd32e3)] - **http**: don't cork noop .end() (Robert Nagy) [#&#8203;36633](https://github.com/nodejs/node/pull/36633)
    
  • [`dfc962f67a`](https://github.com/nodejs/node/commit/dfc962f67a)] - **http**: add test case for req-res close ordering (Daniele Belardi) [#&#8203;36645](https://github.com/nodejs/node/pull/36645)
    
  • [`cc28d2f541`](https://github.com/nodejs/node/commit/cc28d2f541)] - **(SEMVER-MINOR)** **http**: set lifo as the default scheduling strategy in Agent (Matteo Collina) [#&#8203;36685](https://github.com/nodejs/node/pull/36685)
    
  • [`954a36947d`](https://github.com/nodejs/node/commit/954a36947d)] - **http**: make HEAD method to work with keep-alive (Joseph Hackman) [#&#8203;34231](https://github.com/nodejs/node/pull/34231)
    
  • [`9156f430b5`](https://github.com/nodejs/node/commit/9156f430b5)] - **http**: remove dead code from internal/http.js (ZiJian Liu) [#&#8203;36630](https://github.com/nodejs/node/pull/36630)
    
  • [`5e499c490e`](https://github.com/nodejs/node/commit/5e499c490e)] - **http**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36194](https://github.com/nodejs/node/pull/36194)
    
  • [`c784f15588`](https://github.com/nodejs/node/commit/c784f15588)] - ***Revert*** "**http**: use `autoDestroy: true` in incoming message" (Daniele Belardi) [#&#8203;36647](https://github.com/nodejs/node/pull/36647)
    
  • [`a38ad0709c`](https://github.com/nodejs/node/commit/a38ad0709c)] - **http2**: refactor to use primordials instead of \<string>.indexOf (Rohan Chougule) [#&#8203;36679](https://github.com/nodejs/node/pull/36679)
    
  • [`e85fbb778d`](https://github.com/nodejs/node/commit/e85fbb778d)] - **http2**: fix typos in core.js (Pranshu Jethmalani) [#&#8203;36719](https://github.com/nodejs/node/pull/36719)
    
  • [`a4d64f967a`](https://github.com/nodejs/node/commit/a4d64f967a)] - **https**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36195](https://github.com/nodejs/node/pull/36195)
    
  • [`1db3772c95`](https://github.com/nodejs/node/commit/1db3772c95)] - **lib**: simplify `primordials.uncurryThis` (ExE Boss) [#&#8203;36866](https://github.com/nodejs/node/pull/36866)
    
  • [`95219eac08`](https://github.com/nodejs/node/commit/95219eac08)] - **lib**: refactor to use mapping in cluster master (Yash Ladha) [#&#8203;36250](https://github.com/nodejs/node/pull/36250)
    
  • [`b764269437`](https://github.com/nodejs/node/commit/b764269437)] - **lib**: remove v8\_prof_polyfill from eslint ignore list (Antoine du Hamel) [#&#8203;36537](https://github.com/nodejs/node/pull/36537)
    
  • [`eb6b38639a`](https://github.com/nodejs/node/commit/eb6b38639a)] - **lib**: remove unused code (Brian White) [#&#8203;36632](https://github.com/nodejs/node/pull/36632)
    
  • [`7fe1b5ef5a`](https://github.com/nodejs/node/commit/7fe1b5ef5a)] - **lib**: refactor to use validateCallback (ZiJian Liu) [#&#8203;36609](https://github.com/nodejs/node/pull/36609)
    
  • [`bb4f8c8732`](https://github.com/nodejs/node/commit/bb4f8c8732)] - **lib**: use more primordials in shared validators (Pooja D P) [#&#8203;36552](https://github.com/nodejs/node/pull/36552)
    
  • [`181bad58d3`](https://github.com/nodejs/node/commit/181bad58d3)] - **lib**: add primordials.SafeArrayIterator (Antoine du Hamel) [#&#8203;36532](https://github.com/nodejs/node/pull/36532)
    
  • [`6e338dac3c`](https://github.com/nodejs/node/commit/6e338dac3c)] - **lib**: refactor to use more primordials in internal/encoding.js (raisinten) [#&#8203;36480](https://github.com/nodejs/node/pull/36480)
    
  • [`ec3e841f59`](https://github.com/nodejs/node/commit/ec3e841f59)] - **lib**: refactor to use primordials in internal/priority_queue.js (ZiJian Liu) [#&#8203;36560](https://github.com/nodejs/node/pull/36560)
    
  • [`8ac2016229`](https://github.com/nodejs/node/commit/8ac2016229)] - **lib**: add primordials.SafeStringIterator (Antoine du Hamel) [#&#8203;36526](https://github.com/nodejs/node/pull/36526)
    
  • [`56af1250fe`](https://github.com/nodejs/node/commit/56af1250fe)] - **lib**: make safe primordials safe to construct (Antoine du Hamel) [#&#8203;36428](https://github.com/nodejs/node/pull/36428)
    
  • [`d20235b6cb`](https://github.com/nodejs/node/commit/d20235b6cb)] - **lib**: fix diagnostics_channel hasSubscribers error (ZiJian Liu) [#&#8203;36599](https://github.com/nodejs/node/pull/36599)
    
  • [`63091f8440`](https://github.com/nodejs/node/commit/63091f8440)] - **lib**: refactor to use more primordials in internal/histogram.js (raisinten) [#&#8203;36455](https://github.com/nodejs/node/pull/36455)
    
  • [`eca2df0909`](https://github.com/nodejs/node/commit/eca2df0909)] - **meta**: notify slack when someone force pushes (Mary Marchini) [#&#8203;35131](https://github.com/nodejs/node/pull/35131)
    
  • [`01213c71b9`](https://github.com/nodejs/node/commit/01213c71b9)] - **module**: fix Windows folder exports deprecation warning (Guy Bedford) [#&#8203;36859](https://github.com/nodejs/node/pull/36859)
    
  • [`302be57be4`](https://github.com/nodejs/node/commit/302be57be4)] - **module**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36680](https://github.com/nodejs/node/pull/36680)
    
  • [`24246a29d7`](https://github.com/nodejs/node/commit/24246a29d7)] - **net**: throw ERR_OUT_OF_RANGE if blockList.addSubnet prefix is NaN (ZiJian Liu) [#&#8203;36732](https://github.com/nodejs/node/pull/36732)
    
  • [`02dbcc4317`](https://github.com/nodejs/node/commit/02dbcc4317)] - **(SEMVER-MINOR)** **net**: support abortSignal in server.listen (Nitzan Uziely) [#&#8203;36623](https://github.com/nodejs/node/pull/36623)
    
  • [`a258bc9b70`](https://github.com/nodejs/node/commit/a258bc9b70)] - **perf_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36723](https://github.com/nodejs/node/pull/36723)
    
  • [`94afc3e712`](https://github.com/nodejs/node/commit/94afc3e712)] - **process**: passing -1 to setuid/setgid should not abort (James M Snell) [#&#8203;36786](https://github.com/nodejs/node/pull/36786)
    
  • [`92af50327e`](https://github.com/nodejs/node/commit/92af50327e)] - **(SEMVER-MINOR)** **process**: add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291)
    
  • [`8b7336b072`](https://github.com/nodejs/node/commit/8b7336b072)] - **quic,timers**: refactor to use validateAbortSignal (ZiJian Liu) [#&#8203;36604](https://github.com/nodejs/node/pull/36604)
    
  • [`b17130a55a`](https://github.com/nodejs/node/commit/b17130a55a)] - **readline**: fix behaviour of Interface plugged to a non-terminal output (Antoine du Hamel) [#&#8203;36774](https://github.com/nodejs/node/pull/36774)
    
  • [`d70824f567`](https://github.com/nodejs/node/commit/d70824f567)] - **src**: fix typo in crypto_aes.cc (Ikko Ashimine) [#&#8203;36717](https://github.com/nodejs/node/pull/36717)
    
  • [`8b43388903`](https://github.com/nodejs/node/commit/8b43388903)] - **src**: reduce duplicated boilerplate with new env utility fn (James M Snell) [#&#8203;36536](https://github.com/nodejs/node/pull/36536)
    
  • [`a53997e6c0`](https://github.com/nodejs/node/commit/a53997e6c0)] - **src**: fix leading backslash bug in URL (raisinten) [#&#8203;36613](https://github.com/nodejs/node/pull/36613)
    
  • [`abae61e230`](https://github.com/nodejs/node/commit/abae61e230)] - **stream**: finished waits for 'close' on OutgoingMessage (Robert Nagy) [#&#8203;36648](https://github.com/nodejs/node/pull/36648)
    
  • [`4c819d65f9`](https://github.com/nodejs/node/commit/4c819d65f9)] - **stream**: fix .end() error propagation (Robert Nagy) [#&#8203;36817](https://github.com/nodejs/node/pull/36817)
    
  • [`cb0b53edb1`](https://github.com/nodejs/node/commit/cb0b53edb1)] - **stream**: lazy read ReadStream (Momtchil Momtchev) [#&#8203;36823](https://github.com/nodejs/node/pull/36823)
    
  • [`b996e3b4b5`](https://github.com/nodejs/node/commit/b996e3b4b5)] - **stream**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36684](https://github.com/nodejs/node/pull/36684)
    
  • [`190ddced46`](https://github.com/nodejs/node/commit/190ddced46)] - **stream**: only use legacy close listeners if not willEmitClose (Robert Nagy) [#&#8203;36649](https://github.com/nodejs/node/pull/36649)
    
  • [`1fc30a84ac`](https://github.com/nodejs/node/commit/1fc30a84ac)] - **stream,zlib**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36618](https://github.com/nodejs/node/pull/36618)
    
  • [`d2b9e7cb01`](https://github.com/nodejs/node/commit/d2b9e7cb01)] - **string_decoder**: throw ERR_STRING_TOO_LONG for UTF-8 (Michaël Zasso) [#&#8203;36661](https://github.com/nodejs/node/pull/36661)
    
  • [`abc2ff47c2`](https://github.com/nodejs/node/commit/abc2ff47c2)] - **test**: disable test-crypto-secure-heap with asan (James M Snell) [#&#8203;36900](https://github.com/nodejs/node/pull/36900)
    
  • [`17a52337c4`](https://github.com/nodejs/node/commit/17a52337c4)] - **test**: http complete response after socket double end (Dimitris Halatsis) [#&#8203;36633](https://github.com/nodejs/node/pull/36633)
    
  • [`cc37ff24dc`](https://github.com/nodejs/node/commit/cc37ff24dc)] - **test**: use faster variant for rss in test-crypto-dh-leak (Pooja D P) [#&#8203;36766](https://github.com/nodejs/node/pull/36766)
    
  • [`daad0ab1cc`](https://github.com/nodejs/node/commit/daad0ab1cc)] - **test**: use faster variant for rss in test-vm-memleak.js (Pooja D P) [#&#8203;36769](https://github.com/nodejs/node/pull/36769)
    
  • [`9d25d25cfd`](https://github.com/nodejs/node/commit/9d25d25cfd)] - **test**: mark test-cluster-bind-privileged-port flaky on arm (James M Snell) [#&#8203;36850](https://github.com/nodejs/node/pull/36850)
    
  • [`c64db20fdd`](https://github.com/nodejs/node/commit/c64db20fdd)] - **test**: use faster variant for rss test-memoryusage-emfile (Pooja D P) [#&#8203;36768](https://github.com/nodejs/node/pull/36768)
    
  • [`d48e00e5a3`](https://github.com/nodejs/node/commit/d48e00e5a3)] - **test**: fix test-memory-usage.js for IBMi (Rich Trott) [#&#8203;36758](https://github.com/nodejs/node/pull/36758)
    
  • [`9b7d2c2523`](https://github.com/nodejs/node/commit/9b7d2c2523)] - **test**: guard large string decoder allocation (Michaël Zasso) [#&#8203;36795](https://github.com/nodejs/node/pull/36795)
    
  • [`5bc130bd9e`](https://github.com/nodejs/node/commit/5bc130bd9e)] - **test**: increase coverage for events (ZiJian Liu) [#&#8203;36668](https://github.com/nodejs/node/pull/36668)
    
  • [`9f7fbcc64d`](https://github.com/nodejs/node/commit/9f7fbcc64d)] - **test**: add coverage for breakLength one-column array (Rich Trott) [#&#8203;36657](https://github.com/nodejs/node/pull/36657)
    
  • [`9eff709c23`](https://github.com/nodejs/node/commit/9eff709c23)] - **test**: update wpt interfaces (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659)
    
  • [`a7f743f5cc`](https://github.com/nodejs/node/commit/a7f743f5cc)] - **test**: update wpt resources (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659)
    
  • [`4acc2732f9`](https://github.com/nodejs/node/commit/4acc2732f9)] - **test**: update wpt encoding (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659)
    
  • [`986d5aca44`](https://github.com/nodejs/node/commit/986d5aca44)] - **test**: update wpt url (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659)
    
  • [`833e614682`](https://github.com/nodejs/node/commit/833e614682)] - **test**: increase coverage for diagnostics_channel (ZiJian Liu) [#&#8203;36602](https://github.com/nodejs/node/pull/36602)
    
  • [`f0dfe57bd1`](https://github.com/nodejs/node/commit/f0dfe57bd1)] - **test**: add already-aborted-controller test for spawn() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`d5d56ec3d4`](https://github.com/nodejs/node/commit/d5d56ec3d4)] - **test**: add test for reused AbortController with execfile() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`f81556563a`](https://github.com/nodejs/node/commit/f81556563a)] - **test**: increase coverage for internal/error_serdes.js (ZiJian Liu) [#&#8203;36628](https://github.com/nodejs/node/pull/36628)
    
  • [`34d1d791e5`](https://github.com/nodejs/node/commit/34d1d791e5)] - **test**: improve coverage for util.inspect() with classes (Rich Trott) [#&#8203;36625](https://github.com/nodejs/node/pull/36625)
    
  • [`1f3bc5ed73`](https://github.com/nodejs/node/commit/1f3bc5ed73)] - **test**: increase runInAsyncScope() coverage (Rich Trott) [#&#8203;36624](https://github.com/nodejs/node/pull/36624)
    
  • [`863bfc44d2`](https://github.com/nodejs/node/commit/863bfc44d2)] - **test**: redirect stderr EnvironmentWithNoESMLoader (Daniel Bevenius) [#&#8203;36548](https://github.com/nodejs/node/pull/36548)
    
  • [`8e8b16ff7e`](https://github.com/nodejs/node/commit/8e8b16ff7e)] - **timers**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36767](https://github.com/nodejs/node/pull/36767)
    
  • [`c23cca2de9`](https://github.com/nodejs/node/commit/c23cca2de9)] - **tls**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36772](https://github.com/nodejs/node/pull/36772)
    
  • [`37becfda8c`](https://github.com/nodejs/node/commit/37becfda8c)] - **tools**: update all lint-md rollup dependencies (Michaël Zasso) [#&#8203;36843](https://github.com/nodejs/node/pull/36843)
    
  • [`cfdbb79ccf`](https://github.com/nodejs/node/commit/cfdbb79ccf)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36844](https://github.com/nodejs/node/pull/36844)
    
  • [`1f2a198c32`](https://github.com/nodejs/node/commit/1f2a198c32)] - **tools**: fix md5 hash for ICU 68.1 src (Richard Lau) [#&#8203;36777](https://github.com/nodejs/node/pull/36777)
    
  • [`4e0995bc60`](https://github.com/nodejs/node/commit/4e0995bc60)] - **tools**: update ESLint to 7.17.0 (Colin Ihrig) [#&#8203;36726](https://github.com/nodejs/node/pull/36726)
    
  • [`8ad3455ae3`](https://github.com/nodejs/node/commit/8ad3455ae3)] - **tools**: revise install.py for minor improvements (Rich Trott) [#&#8203;36626](https://github.com/nodejs/node/pull/36626)
    
  • [`b367d5a61d`](https://github.com/nodejs/node/commit/b367d5a61d)] - **tools**: update gyp-next to v0.7.0 (Michaël Zasso) [#&#8203;36580](https://github.com/nodejs/node/pull/36580)
    
  • [`10f1c893c8`](https://github.com/nodejs/node/commit/10f1c893c8)] - **tools**: correct usage message for genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606)
    
  • [`37b39a2d6b`](https://github.com/nodejs/node/commit/37b39a2d6b)] - **tools**: call close() explicitly in genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606)
    
  • [`7664f3678c`](https://github.com/nodejs/node/commit/7664f3678c)] - **tools**: use `is None` consistently in Python (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606)
    
  • [`cb7f73c9d4`](https://github.com/nodejs/node/commit/cb7f73c9d4)] - **tools**: revise line in configure.py for clarity (Rich Trott) [#&#8203;36551](https://github.com/nodejs/node/pull/36551)
    
  • [`258aa50986`](https://github.com/nodejs/node/commit/258aa50986)] - **tty**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36771](https://github.com/nodejs/node/pull/36771)
    
  • [`5cb8b16452`](https://github.com/nodejs/node/commit/5cb8b16452)] - **url**: fix url.format with ipv6 hostname (ZiJian Liu) [#&#8203;36665](https://github.com/nodejs/node/pull/36665)
    
  • [`b1c6a44caf`](https://github.com/nodejs/node/commit/b1c6a44caf)] - **url**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36316](https://github.com/nodejs/node/pull/36316)
    
  • [`baa8064bd0`](https://github.com/nodejs/node/commit/baa8064bd0)] - **util**: refactor inspect.js to use more primodials (Rohan Chougule) [#&#8203;36730](https://github.com/nodejs/node/pull/36730)
    
  • [`bff201a66d`](https://github.com/nodejs/node/commit/bff201a66d)] - **util**: remove unreachable defensive coding (Rich Trott) [#&#8203;36744](https://github.com/nodejs/node/pull/36744)
    
  • [`64bf2f229e`](https://github.com/nodejs/node/commit/64bf2f229e)] - **util**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36265](https://github.com/nodejs/node/pull/36265)
    
  • [`2dd2ec3836`](https://github.com/nodejs/node/commit/2dd2ec3836)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36527](https://github.com/nodejs/node/pull/36527)
    
  • [`3170636a8e`](https://github.com/nodejs/node/commit/3170636a8e)] - **(SEMVER-MINOR)** **v8**: fix native `serdes` constructors (ExE Boss) [#&#8203;36549](https://github.com/nodejs/node/pull/36549)
    
  • [`d5a9799e76`](https://github.com/nodejs/node/commit/d5a9799e76)] - **wasi**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36724](https://github.com/nodejs/node/pull/36724)
    
  • [`b6f74b0b09`](https://github.com/nodejs/node/commit/b6f74b0b09)] - **zlib**: refactor to use primordial instead of \<string>.startsWith (Rohan Chougule) [#&#8203;36718](https://github.com/nodejs/node/pull/36718)
    
    

v15.5.1

Compare Source

This is a security release.

Notable changes

Vulnerabilities fixed:

  • CVE-2020-8265: use-after-free in TLSWrap (High)

    • Affected Node.js versions are vulnerable to a use-after-free bug in
      its TLS implementation. When writing to a TLS enabled socket,
      node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly
      allocated WriteWrap object as first argument. If the DoWrite method
      does not return an error, this object is passed back to the caller as
      part of a StreamWriteResult structure. This may be exploited to
      corrupt memory leading to a Denial of Service or potentially other
      exploits.
  • CVE-2020-8287: HTTP Request Smuggling in nodejs (Low)

    • Affected versions of Node.js allow two copies of a header field in
      a http request. For example, two Transfer-Encoding header fields. In
      this case Node.js identifies the first header field and ignores the
      second. This can lead to HTTP Request Smuggling
      (https://cwe.mitre.org/data/definitions/444.html).
Commits
  • [`c5dbe831b7`](https://github.com/nodejs/node/commit/c5dbe831b7)] - **http**: add test for http transfer encoding smuggling (Matteo Collina) [nodejs-private/node-private#&#8203;228](https://github.com/nodejs-private/node-private/pull/228)
    
  • [`e0c9a2285c`](https://github.com/nodejs/node/commit/e0c9a2285c)] - **http**: unset `F_CHUNKED` on new `Transfer-Encoding` (Matteo Collina) [nodejs-private/node-private#&#8203;228](https://github.com/nodejs-private/node-private/pull/228)
    
  • [`9834ef85a0`](https://github.com/nodejs/node/commit/9834ef85a0)] - **src**: retain pointers to WriteWrap/ShutdownWrap (James M Snell) [nodejs-private/node-private#&#8203;23](https://github.com/nodejs-private/node-private/pull/23)
    
    

v15.5.0

Compare Source

Notable Changes
Extended support for AbortSignal in child_process and stream

The following APIs now support an AbortSignal in their options object:

  • child_process.spawn()

Calling .abort() on the corresponding AbortController is similar to calling .kill() on the child process except the error passed to the callback will be an AbortError:

const controller = new AbortController();
const { signal } = controller;
const grep = spawn('grep', ['ssh'], { signal });
grep.on('error', (err) => {
  // This will be called with err being an AbortError if the controller aborts
});
controller.abort(); // stops the process
  • new stream.Writable() and new stream.Readable()

Calling .abort() on the corresponding AbortController will behave the same way as calling .destroy(new AbortError()) on the stream:

const { Readable } = require('stream');
const controller = new AbortController();
const read = new Readable({
  read(size) {
    // ...
  },
  signal: controller.signal
});
// Later, abort the operation closing the stream
controller.abort();

Contributed by Benjamin Gruenbaum #​36431, #​36432.

BigInt support in querystring.stringify()

If querystring.stringify() is called with an object that contains BigInt values, they will now be serialized to their decimal representation instead of the empty string:

const querystring = require('querystring');
console.log(querystring.stringify({ bigint: 2n ** 64n }));
// Prints: bigint=18446744073709551616

Contributed by Darshan Sen #​36499.

Additions to the C++ embedder APIs

A new IsolateSettingsFlag is available for those calling SetIsolateUpForNode(): SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK can be used to prevent Node.js from setting a custom callback to prepare stack traces.

Contributed by Shelley Vohr #​36447.


Added node::GetEnvironmentIsolateData() and node::GetArrayBufferAllocator() to respectively get the current IsolateData* and, from it, the current Node.js ArrayBufferAllocator if there is one.

Contributed by Anna Henningsen #​36441.

New core collaborator

With this release, we welcome a new Node.js core collaborator:

Commits
Semver-minor commits
  • [`e449571230`](https://github.com/nodejs/node/commit/e449571230)] - **(SEMVER-MINOR)** **child_process**: add signal support to spawn (Benjamin Gruenbaum) [#&#8203;36432](https://github.com/nodejs/node/pull/36432)
    
  • [`25d7e90386`](https://github.com/nodejs/node/commit/25d7e90386)] - **(SEMVER-MINOR)** **http**: use `autoDestroy: true` in incoming message (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`5481be8cbd`](https://github.com/nodejs/node/commit/5481be8cbd)] - **(SEMVER-MINOR)** **lib**: support BigInt in querystring.stringify (raisinten) [#&#8203;36499](https://github.com/nodejs/node/pull/36499)
    
  • [`036ed1fafc`](https://github.com/nodejs/node/commit/036ed1fafc)] - **(SEMVER-MINOR)** **src**: add way to get IsolateData and allocator from Environment (Anna Henningsen) [#&#8203;36441](https://github.com/nodejs/node/pull/36441)
    
  • [`e23309486b`](https://github.com/nodejs/node/commit/e23309486b)] - **(SEMVER-MINOR)** **src**: allow preventing SetPrepareStackTraceCallback (Shelley Vohr) [#&#8203;36447](https://github.com/nodejs/node/pull/36447)
    
  • [`6ecbc1dcb3`](https://github.com/nodejs/node/commit/6ecbc1dcb3)] - **(SEMVER-MINOR)** **stream**: support abortsignal in constructor (Benjamin Gruenbaum) [#&#8203;36431](https://github.com/nodejs/node/pull/36431)
    
    
Semver-patch commits
  • [`1330995b80`](https://github.com/nodejs/node/commit/1330995b80)] - **build,lib,test**: change whitelist to allowlist (Michaël Zasso) [#&#8203;36406](https://github.com/nodejs/node/pull/36406)
    
  • [`dc8d1a74a6`](https://github.com/nodejs/node/commit/dc8d1a74a6)] - **deps**: upgrade npm to 7.3.0 (Ruy Adorno) [#&#8203;36572](https://github.com/nodejs/node/pull/36572)
    
  • [`b6a31f0a70`](https://github.com/nodejs/node/commit/b6a31f0a70)] - **deps**: update archs files for OpenSSL-1.1.1i (Myles Borins) [#&#8203;36520](https://github.com/nodejs/node/pull/36520)
    
  • [`5b49807c3f`](https://github.com/nodejs/node/commit/5b49807c3f)] - **deps**: re-enable OPENSSL_NO_QUIC guards (James M Snell) [#&#8203;36520](https://github.com/nodejs/node/pull/36520)
    
  • [`309e2971a2`](https://github.com/nodejs/node/commit/309e2971a2)] - **deps**: various quic patches from akamai/openssl (Todd Short) [#&#8203;36520](https://github.com/nodejs/node/pull/36520)
    
  • [`27fb651cbc`](https://github.com/nodejs/node/commit/27fb651cbc)] - **deps**: upgrade openssl sources to 1.1.1i (Myles Borins) [#&#8203;36520](https://github.com/nodejs/node/pull/36520)
    
  • [`1f43aadf90`](https://github.com/nodejs/node/commit/1f43aadf90)] - **deps**: update patch and docs for openssl update (Myles Borins) [#&#8203;36520](https://github.com/nodejs/node/pull/36520)
    
  • [`752c94d202`](https://github.com/nodejs/node/commit/752c94d202)] - **deps**: fix npm doctor tests for pre-release node (nlf) [#&#8203;36543](https://github.com/nodejs/node/pull/36543)
    
  • [`b0393fa2ed`](https://github.com/nodejs/node/commit/b0393fa2ed)] - **deps**: upgrade npm to 7.2.0 (Myles Borins) [#&#8203;36543](https://github.com/nodejs/node/pull/36543)
    
  • [`cb4652e91d`](https://github.com/nodejs/node/commit/cb4652e91d)] - **deps**: update to c-ares 1.17.1 (Danny Sonnenschein) [#&#8203;36207](https://github.com/nodejs/node/pull/36207)
    
  • [`21fbcb6f81`](https://github.com/nodejs/node/commit/21fbcb6f81)] - **deps**: V8: backport [`4bf051d`](https://github.com/nodejs/node/commit/4bf051d536a1) (Anna Henningsen) [#&#8203;36482](https://github.com/nodejs/node/pull/36482)
    
  • [`30fe0ff681`](https://github.com/nodejs/node/commit/30fe0ff681)] - **deps**: upgrade npm to 7.1.2 (Darcy Clarke) [#&#8203;36487](https://github.com/nodejs/node/pull/36487)
    
  • [`0baa610c3e`](https://github.com/nodejs/node/commit/0baa610c3e)] - **deps**: upgrade npm to 7.1.1 (Ruy Adorno) [#&#8203;36459](https://github.com/nodejs/node/pull/36459)
    
  • [`5929b08851`](https://github.com/nodejs/node/commit/5929b08851)] - **deps**: upgrade npm to 7.1.0 (Ruy Adorno) [#&#8203;36395](https://github.com/nodejs/node/pull/36395)
    
  • [`deaafd5788`](https://github.com/nodejs/node/commit/deaafd5788)] - **dns**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36314](https://github.com/nodejs/node/pull/36314)
    
  • [`e30af7be33`](https://github.com/nodejs/node/commit/e30af7be33)] - **fs**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36524](https://github.com/nodejs/node/pull/36524)
    
  • [`213dcd7930`](https://github.com/nodejs/node/commit/213dcd7930)] - **http**: add test for incomingmessage destroy (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`36b4ddd382`](https://github.com/nodejs/node/commit/36b4ddd382)] - **http**: use standard args order in IncomingMEssage onError (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`60b5e696fc`](https://github.com/nodejs/node/commit/60b5e696fc)] - **http**: remove trailing space (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`f11a648d8e`](https://github.com/nodejs/node/commit/f11a648d8e)] - **http**: add comments in \_http_incoming (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`4b81d79b58`](https://github.com/nodejs/node/commit/4b81d79b58)] - **http**: fix lint error in incoming message (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`397e31e25f`](https://github.com/nodejs/node/commit/397e31e25f)] - **http**: reafactor incoming message destroy (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035)
    
  • [`9852ebca8d`](https://github.com/nodejs/node/commit/9852ebca8d)] - **http**: do not loop over prototype in Agent (Michaël Zasso) [#&#8203;36410](https://github.com/nodejs/node/pull/36410)
    
  • [`e46a46a4cd`](https://github.com/nodejs/node/commit/e46a46a4cd)] - **inspector**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36356](https://github.com/nodejs/node/pull/36356)
    
  • [`728f512c7d`](https://github.com/nodejs/node/commit/728f512c7d)] - **lib**: make safe primordials safe to iterate (Antoine du Hamel) [#&#8203;36391](https://github.com/nodejs/node/pull/36391)
    
  • [`f368d697cf`](https://github.com/nodejs/node/commit/f368d697cf)] - ***Revert*** "**perf_hooks**: make PerformanceObserver an AsyncResource" (Nicolai Stange) [#&#8203;36343](https://github.com/nodejs/node/pull/36343)
    
  • [`e2ced0d401`](https://github.com/nodejs/node/commit/e2ced0d401)] - **perf_hooks**: invoke performance_entry_callback via MakeSyncCallback() (Nicolai Stange) [#&#8203;36343](https://github.com/nodejs/node/pull/36343)
    
  • [`7c903ec6c8`](https://github.com/nodejs/node/commit/7c903ec6c8)] - **repl**: disable blocking completions by default (Anna Henningsen) [#&#8203;36564](https://github.com/nodejs/node/pull/36564)
    
  • [`d38a0ec93e`](https://github.com/nodejs/node/commit/d38a0ec93e)] - **src**: remove unnecessary ToLocalChecked node_errors (Daniel Bevenius) [#&#8203;36547](https://github.com/nodejs/node/pull/36547)
    
  • [`bbc0d14cd2`](https://github.com/nodejs/node/commit/bbc0d14cd2)] - **src**: use correct microtask queue for checkpoints (Anna Henningsen) [#&#8203;36581](https://github.com/nodejs/node/pull/36581)
    
  • [`7efb3111e8`](https://github.com/nodejs/node/commit/7efb3111e8)] - **src**: remove unnecessary ToLocalChecked call (Daniel Bevenius) [#&#8203;36523](https://github.com/nodejs/node/pull/36523)
    
  • [`68687d3419`](https://github.com/nodejs/node/commit/68687d3419)] - **src**: remove empty name check in node_env_var.cc (raisinten) [#&#8203;36133](https://github.com/nodejs/node/pull/36133)
    
  • [`1b4984de98`](https://github.com/nodejs/node/commit/1b4984de98)] - **src**: remove duplicate V macros in node_v8.cc (Daniel Bevenius) [#&#8203;36454](https://github.com/nodejs/node/pull/36454)
    
  • [`5ff7f42e65`](https://github.com/nodejs/node/commit/5ff7f42e65)] - **src**: use correct outer Context’s microtask queue (Anna Henningsen) [#&#8203;36482](https://github.com/nodejs/node/pull/36482)
    
  • [`96c095f237`](https://github.com/nodejs/node/commit/96c095f237)] - **src**: guard against env != null in node_errors.cc (Anna Henningsen) [#&#8203;36414](https://github.com/nodejs/node/pull/36414)
    
  • [`4f3d7bb417`](https://github.com/nodejs/node/commit/4f3d7bb417)] - **src**: introduce convenience node::MakeSyncCallback() (Nicolai Stange) [#&#8203;36343](https://github.com/nodejs/node/pull/36343)
    
  • [`e59788262c`](https://github.com/nodejs/node/commit/e59788262c)] - **src**: add typedef for CleanupHookCallback callback (Daniel Bevenius) [#&#8203;36442](https://github.com/nodejs/node/pull/36442)
    
  • [`2a60e3b9df`](https://github.com/nodejs/node/commit/2a60e3b9df)] - **src**: fix indentation in memory_tracker-inl.h (Daniel Bevenius) [#&#8203;36425](https://github.com/nodejs/node/pull/36425)
    
  • [`210390f6fd`](https://github.com/nodejs/node/commit/210390f6fd)] - **src**: remove identical V macro (Daniel Bevenius) [#&#8203;36427](https://github.com/nodejs/node/pull/36427)
    
  • [`02afe586aa`](https://github.com/nodejs/node/commit/02afe586aa)] - **src**: use using declarations consistently (Daniel Bevenius) [#&#8203;36365](https://github.com/nodejs/node/pull/36365)
    
  • [`169406b7d7`](https://github.com/nodejs/node/commit/169406b7d7)] - **src**: add missing context scopes (Anna Henningsen) [#&#8203;36413](https://github.com/nodejs/node/pull/36413)
    
  • [`3f33d0bcda`](https://github.com/nodejs/node/commit/3f33d0bcda)] - **stream**: fix pipe deadlock when starting with needDrain (Robert Nagy) [#&#8203;36563](https://github.com/nodejs/node/pull/36563)
    
  • [`d8b5b9499c`](https://github.com/nodejs/node/commit/d8b5b9499c)] - **stream**: accept iterable as a valid first argument (ZiJian Liu) [#&#8203;36479](https://github.com/nodejs/node/pull/36479)
    
  • [`58319d5336`](https://github.com/nodejs/node/commit/58319d5336)] - **tls**: forward new SecureContext options (Alba Mendez) [#&#8203;36416](https://github.com/nodejs/node/pull/36416)
    
  • [`fa40366276`](https://github.com/nodejs/node/commit/fa40366276)] - **util**: simplify constructor retrieval in inspect() (Rich Trott) [#&#8203;36466](https://github.com/nodejs/node/pull/36466)
    
  • [`cc544dbfaa`](https://github.com/nodejs/node/commit/cc544dbfaa)] - **util**: fix instanceof checks with null prototypes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178)
    
  • [`13d6597b4b`](https://github.com/nodejs/node/commit/13d6597b4b)] - **util**: fix module prefixes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178)
    
  • [`20ecc82569`](https://github.com/nodejs/node/commit/20ecc82569)] - **worker**: fix broadcast channel SharedArrayBuffer passing (Anna Henningsen) [#&#8203;36501](https://github.com/nodejs/node/pull/36501)
    
  • [`56fe9bae26`](https://github.com/nodejs/node/commit/56fe9bae26)] - **worker**: refactor MessagePort entanglement management (Anna Henningsen) [#&#8203;36345](https://github.com/nodejs/node/pull/36345)
    
    
Documentation commits
  • [`19c233232f`](https://github.com/nodejs/node/commit/19c233232f)] - **doc**: fix AbortSignal example for stream.Readable (Michaël Zasso) [#&#8203;36596](https://github.com/nodejs/node/pull/36596)
    
  • [`9fbab3e2f5`](https://github.com/nodejs/node/commit/9fbab3e2f5)] - **doc**: update and run license-builder for Babel (Michaël Zasso) [#&#8203;36504](https://github.com/nodejs/node/pull/36504)
    
  • [`a1ba6686a0`](https://github.com/nodejs/node/commit/a1ba6686a0)] - **doc**: add remark about Collaborators discussion page (FrankQiu) [#&#8203;36420](https://github.com/nodejs/node/pull/36420)
    
  • [`c5602fb166`](https://github.com/nodejs/node/commit/c5602fb166)] - **doc**: simplify worker_threads.md text (Rich Trott) [#&#8203;36545](https://github.com/nodejs/node/pull/36545)
    
  • [`149f2cfac1`](https://github.com/nodejs/node/commit/149f2cfac1)] - **doc**: add two tips for speeding the dev builds (Momtchil Momtchev) [#&#8203;36452](https://github.com/nodejs/node/pull/36452)
    
  • [`ad75c78c32`](https://github.com/nodejs/node/commit/ad75c78c32)] - **doc**: add note about timingSafeEqual for TypedArray (Tobias Nießen) [#&#8203;36323](https://github.com/nodejs/node/pull/36323)
    
  • [`9830fe5c9e`](https://github.com/nodejs/node/commit/9830fe5c9e)] - **doc**: move Derek Lewis to emeritus (Rich Trott) [#&#8203;36514](https://github.com/nodejs/node/pull/36514)
    
  • [`eb29a16bae`](https://github.com/nodejs/node/commit/eb29a16bae)] - **doc**: add issue reference to github pr template (Chinmoy Chakraborty) [#&#8203;36440](https://github.com/nodejs/node/pull/36440)
    
  • [`f09985d42a`](https://github.com/nodejs/node/commit/f09985d42a)] - **doc**: update url.md (Rock) [#&#8203;36147](https://github.com/nodejs/node/pull/36147)
    
  • [`c3ec90d23c`](https://github.com/nodejs/node/commit/c3ec90d23c)] - **doc**: make explicit reverting node_version.h changes (Richard Lau) [#&#8203;36461](https://github.com/nodejs/node/pull/36461)
    
  • [`7a34452b1d`](https://github.com/nodejs/node/commit/7a34452b1d)] - **doc**: add license info to the README (FrankQiu) [#&#8203;36278](https://github.com/nodejs/node/pull/36278)
    
  • [`22f039339f`](https://github.com/nodejs/node/commit/22f039339f)] - **doc**: revise addon mulitple initializations text (Rich Trott) [#&#8203;36457](https://github.com/nodejs/node/pull/36457)
    
  • [`25a245443a`](https://github.com/nodejs/node/commit/25a245443a)] - **doc**: add v15.4.0 link to CHANGELOG.md (Danielle Adams) [#&#8203;36456](https://github.com/nodejs/node/pull/36456)
    
  • [`1ec8516fd6`](https://github.com/nodejs/node/commit/1ec8516fd6)] - **doc**: add PoojaDurgad to collaborators (Pooja D P) [#&#8203;36511](https://github.com/nodejs/node/pull/36511)
    
  • [`98918110a1`](https://github.com/nodejs/node/commit/98918110a1)] - **doc**: edit addon text about event loop blocking (Rich Trott) [#&#8203;36448](https://github.com/nodejs/node/pull/36448)
    
  • [`62bfe3d313`](https://github.com/nodejs/node/commit/62bfe3d313)] - **doc**: note v15.0.0 changed default --unhandled-rejections=throw (kai zhu) [#&#8203;36361](https://github.com/nodejs/node/pull/36361)
    
  • [`129053fe4c`](https://github.com/nodejs/node/commit/129053fe4c)] - **doc**: update terminology (Michael Dawson) [#&#8203;36475](https://github.com/nodejs/node/pull/36475)
    
  • [`e331de2571`](https://github.com/nodejs/node/commit/e331de2571)] - **doc**: reword POSIX threads text in addons.md (Rich Trott) [#&#8203;36436](https://github.com/nodejs/node/pull/36436)
    
  • [`04f166389b`](https://github.com/nodejs/node/commit/04f166389b)] - **doc**: add RaisinTen as a triager (raisinten) [#&#8203;36404](https://github.com/nodejs/node/pull/36404)
    
  • [`3341b2cb9d`](https://github.com/nodejs/node/commit/3341b2cb9d)] - **doc**: document ABORT_ERR code (Benjamin Gruenbaum) [#&#8203;36319](https://github.com/nodejs/node/pull/36319)
    
  • [`6a6b3af736`](https://github.com/nodejs/node/commit/6a6b3af736)] - **doc**: provide more context on techinical values (Michael Dawson) [#&#8203;36201](https://github.com/nodejs/node/pull/36201)
    
    
Other commits
  • [`e1f00fd996`](https://github.com/nodejs/node/commit/e1f00fd996)] - **benchmark**: reduce code duplication (Rich Trott) [#&#8203;36568](https://github.com/nodejs/node/pull/36568)
    
  • [`82a26268d7`](https://github.com/nodejs/node/commit/82a26268d7)] - **build**: do not run GitHub actions for draft PRs (Michaël Zasso) [#&#8203;35910](https://github.com/nodejs/node/pull/35910)
    
  • [`95c80f5fb0`](https://github.com/nodejs/node/commit/95c80f5fb0)] - **build**: run some workflows only on nodejs/node (Michaël Zasso) [#&#8203;36507](https://github.com/nodejs/node/pull/36507)
    
  • [`584ea8b26c`](https://github.com/nodejs/node/commit/584ea8b26c)] - **build**: fix make test-npm (Ruy Adorno) [#&#8203;36369](https://github.com/nodejs/node/pull/36369)
    
  • [`01576fbc19`](https://github.com/nodejs/node/commit/01576fbc19)] - **test**: increase abort logic coverage (Moshe vilner) [#&#8203;36586](https://github.com/nodejs/node/pull/36586)
    
  • [`22ac2279ee`](https://github.com/nodejs/node/commit/22ac2279ee)] - **test**: increase coverage for stream (ZiJian Liu) [#&#8203;36538](https://github.com/nodejs/node/pull/36538)
    
  • [`9fc2479707`](https://github.com/nodejs/node/commit/9fc2479707)] - **test**: increase coverage for worker (ZiJian Liu) [#&#8203;36491](https://github.com/nodejs/node/pull/36491)
    
  • [`81e603b7cf`](https://github.com/nodejs/node/commit/81e603b7cf)] - **test**: specify global object for globals (Rich Trott) [#&#8203;36498](https://github.com/nodejs/node/pull/36498)
    
  • [`109ab787fd`](https://github.com/nodejs/node/commit/109ab787fd)] - **test**: increase coverage for fs/dir read (Zijian Liu) [#&#8203;36388](https://github.com/nodejs/node/pull/36388)
    
  • [`9f2d3c291b`](https://github.com/nodejs/node/commit/9f2d3c291b)] - **test**: remove test-http2-client-upload as flaky (Rich Trott) [#&#8203;36496](https://github.com/nodejs/node/pull/36496)
    
  • [`d299ceeac7`](https://github.com/nodejs/node/commit/d299ceeac7)] - **test**: increase coverage for net/blocklist (Zijian Liu) [#&#8203;36405](https://github.com/nodejs/node/pull/36405)
    
  • [`f7635fd86d`](https://github.com/nodejs/node/commit/f7635fd86d)] - **test**: make executable name more general (Shelley Vohr) [#&#8203;36489](https://github.com/nodejs/node/pull/36489)
    
  • [`acd78d9d25`](https://github.com/nodejs/node/commit/acd78d9d25)] - **test**: increased externalized string length (Shelley Vohr) [#&#8203;36451](https://github.com/nodejs/node/pull/36451)
    
  • [`0f749a35ec`](https://github.com/nodejs/node/commit/0f749a35ec)] - **test**: add test for async contexts in PerformanceObserver (ZauberNerd) [#&#8203;36343](https://github.com/nodejs/node/pull/36343)
    
  • [`dd705ad1f0`](https://github.com/nodejs/node/commit/dd705ad1f0)] - **test**: increase execFile abort coverage (Moshe vilner) [#&#8203;36429](https://github.com/nodejs/node/pull/36429)
    
  • [`31b062d591`](https://github.com/nodejs/node/commit/31b062d591)] - **test**: fix flaky test-repl (Rich Trott) [#&#8203;36415](https://github.com/nodejs/node/pull/36415)
    
  • [`023291b43c`](https://github.com/nodejs/node/commit/023291b43c)] - **test**: check null proto-of-proto in util.inspect() (Rich Trott) [#&#8203;36399](https://github.com/nodejs/node/pull/36399)
    
  • [`d3d1f338c7`](https://github.com/nodejs/node/commit/d3d1f338c7)] - **test**: add SIGTRAP to test-signal-handler (Ash Cripps) [#&#8203;36368](https://github.com/nodejs/node/pull/36368)
    
  • [`166aa8a7b5`](https://github.com/nodejs/node/commit/166aa8a7b5)] - **test**: fix child-process-pipe-dataflow (Santiago Gimeno) [#&#8203;36366](https://github.com/nodejs/node/pull/36366)
    
  • [`ecbb757ae0`](https://github.com/nodejs/node/commit/ecbb757ae0)] - **tools**: fix make-v8.sh (Richard Lau) [#&#8203;36594](https://github.com/nodejs/node/pull/36594)
    
  • [`e3c5adc6d0`](https://github.com/nodejs/node/commit/e3c5adc6d0)] - **tools**: fix release script sign function (Antoine du Hamel) [#&#8203;36556](https://github.com/nodejs/node/pull/36556)
    
  • [`0d4d34748d`](https://github.com/nodejs/node/commit/0d4d34748d)] - **tools**: update ESLint to 7.16.0 (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579)
    
  • [`f3828c9dcb`](https://github.com/nodejs/node/commit/f3828c9dcb)] - **tools**: fix update-eslint.sh (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579)
    
  • [`27260c70b4`](https://github.com/nodejs/node/commit/27260c70b4)] - **tools**: fix release script (Antoine du Hamel) [#&#8203;36540](https://github.com/nodejs/node/pull/36540)
    
  • [`c6700ad041`](https://github.com/nodejs/node/commit/c6700ad041)] - **tools**: remove unused variable in configure.py (Rich Trott) [#&#8203;36525](https://github.com/nodejs/node/pull/36525)
    
  • [`7b8d373d5e`](https://github.com/nodejs/node/commit/7b8d373d5e)] - **tools**: lint shell scripts (Antoine du Hamel) [#&#8203;36099](https://github.com/nodejs/node/pull/36099)
    
  • [`c6e65d09ef`](https://github.com/nodejs/node/commit/c6e65d09ef)] - **tools**: update ini in tools/node-lint-md-cli-rollup (Myles Borins) [#&#8203;36474](https://github.com/nodejs/node/pull/36474)
    
  • [`7542a3bd55`](https://github.com/nodejs/node/commit/7542a3bd55)] - **tools**: enable no-unsafe-optional-chaining lint rule (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411)
    
  • [`26f8ccfbe6`](https://github.com/nodejs/node/commit/26f8ccfbe6)] - **tools**: update ESLint to 7.15.0 (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411)
    
  • [`8ecf2f9976`](https://github.com/nodejs/node/commit/8ecf2f9976)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36407](https://github.com/nodejs/node/pull/36407)
    
  • [`040b39f076`](https://github.com/nodejs/node/commit/040b39f076)] - **tools**: enable no-unused-expressions lint rule (Michaël Zasso) [#&#8203;36248](https://github.com/nodejs/node/pull/36248)
    
    

v15.4.0

Compare Source

Notable Changes
  • child_processes:
    • add AbortSignal support (Benjamin Gruenbaum) #​36308
  • deps:
    • update ICU to 68.1 (Michaël Zasso) #​36187
  • events:
    • support signal in EventTarget (Benjamin Gruenbaum) #​36258
    • graduate Event, EventTarget, AbortController (James M Snell) #​35949
  • http:
    • enable call chaining with setHeader() (pooja d.p) #​35924
  • module:
    • add isPreloading indicator (James M Snell) #​36263
  • stream:
    • support abort signal (Benjamin Gruenbaum) #​36061
    • add FileHandle support to Read/WriteStream (Momtchil Momtchev) #​35922
  • worker:
    • add experimental BroadcastChannel (James M Snell) #​36271
Commits
  • [`e79bdc313a`](https://github.com/nodejs/node/commit/e79bdc313a)] - **assert**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36234](https://github.com/nodejs/node/pull/36234)
    
  • [`2344e3e360`](https://github.com/nodejs/node/commit/2344e3e360)] - **benchmark**: changed `fstat` to `fstatSync` (Narasimha Prasanna HN) [#&#8203;36206](https://github.com/nodejs/node/pull/36206)
    
  • [`ca8db41151`](https://github.com/nodejs/node/commit/ca8db41151)] - **benchmark,child_process**: remove failing benchmark parameter (Antoine du Hamel) [#&#8203;36295](https://github.com/nodejs/node/pull/36295)
    
  • [`9db9be774b`](https://github.com/nodejs/node/commit/9db9be774b)] - **buffer**: refactor to use primordials instead of Array#reduce (Antoine du Hamel) [#&#8203;36392](https://github.com/nodejs/node/pull/36392)
    
  • [`8d8d2261a5`](https://github.com/nodejs/node/commit/8d8d2261a5)] - **buffer**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36166](https://github.com/nodejs/node/pull/36166)
    
  • [`74adc441c4`](https://github.com/nodejs/node/commit/74adc441c4)] - **build**: fix typo in Makefile (raisinten) [#&#8203;36176](https://github.com/nodejs/node/pull/36176)
    
  • [`224a6471cc`](https://github.com/nodejs/node/commit/224a6471cc)] - **(SEMVER-MINOR)** **child_process**: add AbortSignal support (Benjamin Gruenbaum) [#&#8203;36308](https://github.com/nodejs/node/pull/36308)
    
  • [`4ca1bd8806`](https://github.com/nodejs/node/commit/4ca1bd8806)] - **child_process**: refactor to use more primordials (Zijian Liu) [#&#8203;36269](https://github.com/nodejs/node/pull/36269)
    
  • [`841e8f444e`](https://github.com/nodejs/node/commit/841e8f444e)] - **crypto**: fix "Invalid JWK" error messages (Filip Skokan) [#&#8203;36200](https://github.com/nodejs/node/pull/36200)
    
  • [`278862aeb9`](https://github.com/nodejs/node/commit/278862aeb9)] - **deps**: upgrade npm to 7.0.15 (Ruy Adorno) [#&#8203;36293](https://github.com/nodejs/node/pull/36293)
    
  • [`66bc2067ce`](https://github.com/nodejs/node/commit/66bc2067ce)] - **deps**: V8: cherry-pick [`86991d0`](https://github.com/nodejs/node/commit/86991d0587a1) (Benjamin Coe) [#&#8203;36254](https://github.com/nodejs/node/pull/36254)
    
  • [`095cef2c11`](https://github.com/nodejs/node/commit/095cef2c11)] - **deps**: update ICU to 68.1 (Michaël Zasso) [#&#8203;36187](https://github.com/nodejs/node/pull/36187)
    
  • [`8d69d8387e`](https://github.com/nodejs/node/commit/8d69d8387e)] - **dgram**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36286](https://github.com/nodejs/node/pull/36286)
    
  • [`bef550a50c`](https://github.com/nodejs/node/commit/bef550a50c)] - **doc**: add Powershell oneliner to get Windows version (Michael Bashurov) [#&#8203;30289](https://github.com/nodejs/node/pull/30289)
    
  • [`2649c384c6`](https://github.com/nodejs/node/commit/2649c384c6)] - **doc**: add version metadata to timers/promises (Colin Ihrig) [#&#8203;36378](https://github.com/nodejs/node/pull/36378)
    
  • [`0401ffbfb6`](https://github.com/nodejs/node/commit/0401ffbfb6)] - **doc**: add process for handling premature disclosure (Michael Dawson) [#&#8203;36155](https://github.com/nodejs/node/pull/36155)
    
  • [`3e5fcda13e`](https://github.com/nodejs/node/commit/3e5fcda13e)] - **doc**: add table header in intl.md (Rich Trott) [#&#8203;36261](https://github.com/nodejs/node/pull/36261)
    
  • [`65d89fdd69`](https://github.com/nodejs/node/commit/65d89fdd69)] - **doc**: adding example to Buffer.isBuffer method (naortedgi) [#&#8203;36233](https://github.com/nodejs/node/pull/36233)
    
  • [`03cf8dbc0e`](https://github.com/nodejs/node/commit/03cf8dbc0e)] - **doc**: fix typo in events.md (Luigi Pinca) [#&#8203;36231](https://github.com/nodejs/node/pull/36231)
    
  • [`b176d61e8c`](https://github.com/nodejs/node/commit/b176d61e8c)] - **doc**: fix --experimental-wasm-modules text location (Colin Ihrig) [#&#8203;36220](https://github.com/nodejs/node/pull/36220)
    
  • [`44c4aaddad`](https://github.com/nodejs/node/commit/44c4aaddad)] - **doc**: stabilize subpath patterns (Guy Bedford) [#&#8203;36177](https://github.com/nodejs/node/pull/36177)
    
  • [`fdf5d851d0`](https://github.com/nodejs/node/commit/fdf5d851d0)] - **doc**: add missing version to update cmd (Ruy Adorno) [#&#8203;36204](https://github.com/nodejs/node/pull/36204)
    
  • [`186ad24fdf`](https://github.com/nodejs/node/commit/186ad24fdf)] - **doc**: cleanup events.md structure (James M Snell) [#&#8203;36100](https://github.com/nodejs/node/pull/36100)
    
  • [`c14512b9a5`](https://github.com/nodejs/node/commit/c14512b9a5)] - **errors**: display original symbol name (Benjamin Coe) [#&#8203;36042](https://github.com/nodejs/node/pull/36042)
    
  • [`855a85c124`](https://github.com/nodejs/node/commit/855a85c124)] - **(SEMVER-MINOR)** **events**: support signal in EventTarget (Benjamin Gruenbaum) [#&#8203;36258](https://github.com/nodejs/node/pull/36258)
    
  • [`dc1930923b`](https://github.com/nodejs/node/commit/dc1930923b)] - **(SEMVER-MINOR)** **events**: graduate Event, EventTarget, AbortController (James M Snell) [#&#8203;35949](https://github.com/nodejs/node/pull/35949)
    
  • [`537e5cbf51`](https://github.com/nodejs/node/commit/537e5cbf51)] - **fs**: move method definition from header (Yash Ladha) [#&#8203;36256](https://github.com/nodejs/node/pull/36256)
    
  • [`744b8aa807`](https://github.com/nodejs/node/commit/744b8aa807)] - **fs**: pass ERR_DIR_CLOSED asynchronously to dir.close (Zijian Liu) [#&#8203;36243](https://github.com/nodejs/node/pull/36243)
    
  • [`c04a2df185`](https://github.com/nodejs/node/commit/c04a2df185)] - **fs**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36196](https://github.com/nodejs/node/pull/36196)
    
  • [`58abdcaceb`](https://github.com/nodejs/node/commit/58abdcaceb)] - **(SEMVER-MINOR)** **http**: enable call chaining with setHeader() (pooja d.p) [#&#8203;35924](https://github.com/nodejs/node/pull/35924)
    
  • [`cedf51f3ce`](https://github.com/nodejs/node/commit/cedf51f3ce)] - **http2**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36357](https://github.com/nodejs/node/pull/36357)
    
  • [`5f41f1b19e`](https://github.com/nodejs/node/commit/5f41f1b19e)] - **http2**: check write not scheduled in scope destructor (David Halls) [#&#8203;36241](https://github.com/nodejs/node/pull/36241)
    
  • [`4127eb2405`](https://github.com/nodejs/node/commit/4127eb2405)] - **https**: add abortcontroller test (Benjamin Gruenbaum) [#&#8203;36307](https://github.com/nodejs/node/pull/36307)
    
  • [`c2938bde6c`](https://github.com/nodejs/node/commit/c2938bde6c)] - **lib**: add uncurried accessor properties to `primordials` (ExE Boss) [#&#8203;36329](https://github.com/nodejs/node/pull/36329)
    
  • [`f73a0a8069`](https://github.com/nodejs/node/commit/f73a0a8069)] - **lib**: fix typo in internal/errors.js (raisinten) [#&#8203;36426](https://github.com/nodejs/node/pull/36426)
    
  • [`617cb58cc8`](https://github.com/nodejs/node/commit/617cb58cc8)] - **lib**: refactor primordials.uncurryThis (Antoine du Hamel) [#&#8203;36221](https://github.com/nodejs/node/pull/36221)
    
  • [`cc18907ec4`](https://github.com/nodejs/node/commit/cc18907ec4)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36348](https://github.com/nodejs/node/pull/36348)
    
  • [`d4de7c7eb9`](https://github.com/nodejs/node/commit/d4de7c7eb9)] - **(SEMVER-MINOR)** **module**: add isPreloading indicator (James M Snell) [#&#8203;36263](https://github.com/nodejs/node/pull/36263)
    
  • [`8611b8f98a`](https://github.com/nodejs/node/commit/8611b8f98a)] - **net**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36303](https://github.com/nodejs/node/pull/36303)
    
  • [`2a24096720`](https://github.com/nodejs/node/commit/2a24096720)] - **os**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36284](https://github.com/nodejs/node/pull/36284)
    
  • [`0e7f0c6d27`](https://github.com/nodejs/node/commit/0e7f0c6d27)] - **path**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36302](https://github.com/nodejs/node/pull/36302)
    
  • [`ea46ca8cbf`](https://github.com/nodejs/node/commit/ea46ca8cbf)] - **perf_hooks**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36297](https://github.com/nodejs/node/pull/36297)
    
  • [`a9ac86d1ee`](https://github.com/nodejs/node/commit/a9ac86d1ee)] - **policy**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36210](https://github.com/nodejs/node/pull/36210)
    
  • [`39d0ceda48`](https://github.com/nodejs/node/commit/39d0ceda48)] - **process**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36212](https://github.com/nodejs/node/pull/36212)
    
  • [`ab084c199e`](https://github.com/nodejs/node/commit/ab084c199e)] - **querystring**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36315](https://github.com/nodejs/node/pull/36315)
    
  • [`d29199ef82`](https://github.com/nodejs/node/commit/d29199ef82)] - **quic**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36211](https://github.com/nodejs/node/pull/36211)
    
  • [`b885409e48`](https://github.com/nodejs/node/commit/b885409e48)] - **readline**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36296](https://github.com/nodejs/node/pull/36296)
    
  • [`9cb53f635a`](https://github.com/nodejs/node/commit/9cb53f635a)] - **repl**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36264](https://github.com/nodejs/node/pull/36264)
    
  • [`8dadaa652e`](https://github.com/nodejs/node/commit/8dadaa652e)] - **src**: remove some duplication in DeserializeProps (Daniel Bevenius) [#&#8203;36336](https://github.com/nodejs/node/pull/36336)
    
  • [`a03aa0a6b2`](https://github.com/nodejs/node/commit/a03aa0a6b2)] - **src**: rename AliasedBufferInfo->AliasedBufferIndex (Daniel Bevenius) [#&#8203;36339](https://github.com/nodejs/node/pull/36339)
    
  • [`e7b2d91e04`](https://github.com/nodejs/node/commit/e7b2d91e04)] - **src**: use transferred consistently (Daniel Bevenius) [#&#8203;36340](https://github.com/nodejs/node/pull/36340)
    
  • [`6ebb98af11`](https://github.com/nodejs/node/commit/6ebb98af11)] - **src**: use ToLocal in DeserializeProperties (Daniel Bevenius) [#&#8203;36279](https://github.com/nodejs/node/pull/36279)
    
  • [`47397ffd56`](https://github.com/nodejs/node/commit/47397ffd56)] - **src**: update node.rc file description (devsnek) [#&#8203;36197](https://github.com/nodejs/node/pull/36197)
    
  • [`cfc8ec18db`](https://github.com/nodejs/node/commit/cfc8ec18db)] - **src**: fix label indentation (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213)
    
  • [`197ba21279`](https://github.com/nodejs/node/commit/197ba21279)] - **(SEMVER-MINOR)** **stream**: support abort signal (Benjamin Gruenbaum) [#&#8203;36061](https://github.com/nodejs/node/pull/36061)
    
  • [`6033d30361`](https://github.com/nodejs/node/commit/6033d30361)] - **(SEMVER-MINOR)** **stream**: add FileHandle support to Read/WriteStream (Momtchil Momtchev) [#&#8203;35922](https://github.com/nodejs/node/pull/35922)
    
  • [`a15addc153`](https://github.com/nodejs/node/commit/a15addc153)] - **string_decoder**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36358](https://github.com/nodejs/node/pull/36358)
    
  • [`b39d150e60`](https://github.com/nodejs/node/commit/b39d150e60)] - **test**: fix comment misspellings of transferred (Rich Trott) [#&#8203;36360](https://github.com/nodejs/node/pull/36360)
    
  • [`a7e794d1bf`](https://github.com/nodejs/node/commit/a7e794d1bf)] - **test**: fix flaky test-http2-respond-file-error-pipe-offset (Rich Trott) [#&#8203;36305](https://github.com/nodejs/node/pull/36305)
    
  • [`1091a658e1`](https://github.com/nodejs/node/commit/1091a658e1)] - **test**: fix bootstrap test (Benjamin Gruenbaum) [#&#8203;36418](https://github.com/nodejs/node/pull/36418)
    
  • [`fbcb72a665`](https://github.com/nodejs/node/commit/fbcb72a665)] - **test**: increase coverage for readline (Zijian Liu) [#&#8203;36389](https://github.com/nodejs/node/pull/36389)
    
  • [`22028aae54`](https://github.com/nodejs/node/commit/22028aae54)] - **test**: skip flaky parts of broadcastchannel test on Windows (Rich Trott) [#&#8203;36386](https://github.com/nodejs/node/pull/36386)
    
  • [`faca2b829e`](https://github.com/nodejs/node/commit/faca2b829e)] - **test**: fix test-worker-broadcastchannel-wpt (Rich Trott) [#&#8203;36353](https://github.com/nodejs/node/pull/36353)
    
  • [`ea09da492c`](https://github.com/nodejs/node/commit/ea09da492c)] - **test**: fix typo in comment (inokawa) [#&#8203;36312](https://github.com/nodejs/node/pull/36312)
    
  • [`b61ca1bfe6`](https://github.com/nodejs/node/commit/b61ca1bfe6)] - **test**: replace anonymous functions by arrows (Aleksandr Krutko) [#&#8203;36125](https://github.com/nodejs/node/pull/36125)
    
  • [`2c7358ef43`](https://github.com/nodejs/node/commit/2c7358ef43)] - **test**: fix flaky sequential/test-fs-watch (Rich Trott) [#&#8203;36249](https://github.com/nodejs/node/pull/36249)
    
  • [`b613950016`](https://github.com/nodejs/node/commit/b613950016)] - **test**: increase coverage for util.inspect() (Rich Trott) [#&#8203;36228](https://github.com/nodejs/node/pull/36228)
    
  • [`69a8f05488`](https://github.com/nodejs/node/commit/69a8f05488)] - **test**: improve test coverage SourceMap API (Juan José Arboleda) [#&#8203;36089](https://github.com/nodejs/node/pull/36089)
    
  • [`44d6d0bf0d`](https://github.com/nodejs/node/commit/44d6d0bf0d)] - **test**: fix missed warning for non-experimental AbortController (James M Snell) [#&#8203;36240](https://github.com/nodejs/node/pull/36240)
    
  • [`29b5236256`](https://github.com/nodejs/node/commit/29b5236256)] - **timers**: reject with AbortError on cancellation (Benjamin Gruenbaum) [#&#8203;36317](https://github.com/nodejs/node/pull/36317)
    
  • [`b20409e985`](https://github.com/nodejs/node/commit/b20409e985)] - **tls**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36266](https://github.com/nodejs/node/pull/36266)
    
  • [`f317bba034`](https://github.com/nodejs/node/commit/f317bba034)] - **tls**: permit null as a cipher value (Rich Trott) [#&#8203;36318](https://github.com/nodejs/node/pull/36318)
    
  • [`9ae59c847a`](https://github.com/nodejs/node/commit/9ae59c847a)] - **tools**: upgrade to [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) 7.12.1 (Antoine du Hamel) [#&#8203;36321](https://github.com/nodejs/node/pull/36321)
    
  • [`e798770803`](https://github.com/nodejs/node/commit/e798770803)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324)
    
  • [`a8b95cfcb2`](https://github.com/nodejs/node/commit/a8b95cfcb2)] - **tools**: bump cpplint to 1.5.4 (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324)
    
  • [`754b7a76b1`](https://github.com/nodejs/node/commit/754b7a76b1)] - **tools**: remove bashisms from macOS release scripts (Antoine du Hamel) [#&#8203;36121](https://github.com/nodejs/node/pull/36121)
    
  • [`2868ffb331`](https://github.com/nodejs/node/commit/2868ffb331)] - **tools**: remove bashisms from release script (Antoine du Hamel) [#&#8203;36123](https://github.com/nodejs/node/pull/36123)
    
  • [`8cf1addaa8`](https://github.com/nodejs/node/commit/8cf1addaa8)] - **tools**: update stability index linking logic (Rich Trott) [#&#8203;36280](https://github.com/nodejs/node/pull/36280)
    
  • [`d95ae65986`](https://github.com/nodejs/node/commit/d95ae65986)] - **tools**: update highlight.js to 10.1.2 (Myles Borins) [#&#8203;36309](https://github.com/nodejs/node/pull/36309)
    
  • [`5935ccc11c`](https://github.com/nodejs/node/commit/5935ccc11c)] - **tools**: fix undeclared identifier FALSE (Antoine du Hamel) [#&#8203;36276](https://github.com/nodejs/node/pull/36276)
    
  • [`a2da7ba914`](https://github.com/nodejs/node/commit/a2da7ba914)] - **tools**: use using-declaration consistently (Daniel Bevenius) [#&#8203;36245](https://github.com/nodejs/node/pull/36245)
    
  • [`82c1e39c4a`](https://github.com/nodejs/node/commit/82c1e39c4a)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235)
    
  • [`bcf7393412`](https://github.com/nodejs/node/commit/bcf7393412)] - **tools**: bump cpplint to 1.5.3 (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235)
    
  • [`be11976407`](https://github.com/nodejs/node/commit/be11976407)] - **tools**: enable no-nonoctal-decimal-escape lint rule (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217)
    
  • [`c86c2399a2`](https://github.com/nodejs/node/commit/c86c2399a2)] - **tools**: update ESLint to 7.14.0 (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217)
    
  • [`cfadd82cf3`](https://github.com/nodejs/node/commit/cfadd82cf3)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213)
    
  • [`03e8aaf613`](https://github.com/nodejs/node/commit/03e8aaf613)] - **tools**: bump cpplint.py to 1.5.2 (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213)
    
  • [`6bc007fc94`](https://github.com/nodejs/node/commit/6bc007fc94)] - **tty**: refactor to use more primordials (Zijian Liu) [#&#8203;36272](https://github.com/nodejs/node/pull/36272)
    
  • [`fbd5652943`](https://github.com/nodejs/node/commit/fbd5652943)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36285](https://github.com/nodejs/node/pull/36285)
    
  • [`8731a80439`](https://github.com/nodejs/node/commit/8731a80439)] - **vm**: add `SafeForTerminationScope`s for SIGINT interruptions (Anna Henningsen) [#&#8203;36344](https://github.com/nodejs/node/pull/36344)
    
  • [`47345a1f84`](https://github.com/nodejs/node/commit/47345a1f84)] - **worker**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36393](https://github.com/nodejs/node/pull/36393)
    
  • [`21c4704c7b`](https://github.com/nodejs/node/commit/21c4704c7b)] - **worker**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36267](https://github.com/nodejs/node/pull/36267)
    
  • [`802d44b1a9`](https://github.com/nodejs/node/commit/802d44b1a9)] - **(SEMVER-MINOR)** **worker**: add experimental BroadcastChannel (James M Snell) [#&#8203;36271](https://github.com/nodejs/node/pull/36271)
    
  • [`4b4caada9f`](https://github.com/nodejs/node/commit/4b4caada9f)] - **zlib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36347](https://github.com/nodejs/node/pull/36347)
    
    

v15.3.0

Compare Source

Notable Changes
  • [`6349b1d673`](https://github.com/nodejs/node/commit/6349b1d673)] - **(SEMVER-MINOR)** **dns**: add a cancel() method to the promise Resolver (Szymon Marczak) [#&#8203;33099](https://github.com/nodejs/node/pull/33099)
    
  • [`9ce9b016e6`](https://github.com/nodejs/node/commit/9ce9b016e6)] - **(SEMVER-MINOR)** **events**: add max listener warning for EventTarget (James M Snell) [#&#8203;36001](https://github.com/nodejs/node/pull/36001)
    
  • [`8390f8a86b`](https://github.com/nodejs/node/commit/8390f8a86b)] - **(SEMVER-MINOR)** **http**: add support for abortsignal to http.request (Benjamin Gruenbaum) [#&#8203;36048](https://github.com/nodejs/node/pull/36048)
    
  • [`9c6be3cc90`](https://github.com/nodejs/node/commit/9c6be3cc90)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978)
    
  • [`15ff155c12`](https://github.com/nodejs/node/commit/15ff155c12)] - **(SEMVER-MINOR)** **lib**: add throws option to fs.f/l/statSync (Andrew Casey) [#&#8203;33716](https://github.com/nodejs/node/pull/33716)
    
  • [`85c85d368a`](https://github.com/nodejs/node/commit/85c85d368a)] - **(SEMVER-MINOR)** **path**: add `path/posix` and `path/win32` alias modules (ExE Boss) [#&#8203;34962](https://github.com/nodejs/node/pull/34962)
    
  • [`d1baae3640`](https://github.com/nodejs/node/commit/d1baae3640)] - **(SEMVER-MINOR)** **readline**: add getPrompt to get the current prompt (Mattias Runge-Broberg) [#&#8203;33675](https://github.com/nodejs/node/pull/33675)
    
  • [`5729478509`](https://github.com/nodejs/node/commit/5729478509)] - **(SEMVER-MINOR)** **src**: add loop idle time in diagnostic report (Gireesh Punathil) [#&#8203;35940](https://github.com/nodejs/node/pull/35940)
    
  • [`baa87c1a7d`](https://github.com/nodejs/node/commit/baa87c1a7d)] - **(SEMVER-MINOR)** **util**: add `util/types` alias module (ExE Boss) [#&#8203;34055](https://github.com/nodejs/node/pull/34055)
    
    
Commits
  • [`34aa0c868e`](https://github.com/nodejs/node/commit/34aa0c868e)] - **assert**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35998](https://github.com/nodejs/node/pull/35998)
    
  • [`28d710164a`](https://github.com/nodejs/node/commit/28d710164a)] - **async_hooks**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36168](https://github.com/nodejs/node/pull/36168)
    
  • [`1924255fdb`](https://github.com/nodejs/node/commit/1924255fdb)] - **async_hooks**: fix leak in AsyncLocalStorage exit (Stephen Belanger) [#&#8203;35779](https://github.com/nodejs/node/pull/35779)
    
  • [`3ee556a867`](https://github.com/nodejs/node/commit/3ee556a867)] - **benchmark**: fix build warnings (Gabriel Schulhof) [#&#8203;36157](https://github.com/nodejs/node/pull/36157)
    
  • [`fcc38a1312`](https://github.com/nodejs/node/commit/fcc38a1312)] - **build**: replace which with command -v (raisinten) [#&#8203;36118](https://github.com/nodejs/node/pull/36118)
    
  • [`60874ba941`](https://github.com/nodejs/node/commit/60874ba941)] - **build**: try “python3” as a last resort for 3.x (Ole André Vadla Ravnås) [#&#8203;35983](https://github.com/nodejs/node/pull/35983)
    
  • [`fbe210b2a1`](https://github.com/nodejs/node/commit/fbe210b2a1)] - **build**: conditionally clear vcinstalldir (Brian Ingenito) [#&#8203;36009](https://github.com/nodejs/node/pull/36009)
    
  • [`56f83e6876`](https://github.com/nodejs/node/commit/56f83e6876)] - **build**: refactor configure.py to use argparse (raisinten) [#&#8203;35755](https://github.com/nodejs/node/pull/35755)
    
  • [`0b70822461`](https://github.com/nodejs/node/commit/0b70822461)] - **child_process**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36003](https://github.com/nodejs/node/pull/36003)
    
  • [`e54108f2e4`](https://github.com/nodejs/node/commit/e54108f2e4)] - **cluster**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36011](https://github.com/nodejs/node/pull/36011)
    
  • [`272fc794b2`](https://github.com/nodejs/node/commit/272fc794b2)] - **crypto**: fix format warning in AdditionalConfig (raisinten) [#&#8203;36060](https://github.com/nodejs/node/pull/36060)
    
  • [`63a138e02f`](https://github.com/nodejs/node/commit/63a138e02f)] - **crypto**: fix passing TypedArray to webcrypto AES methods (Antoine du Hamel) [#&#8203;36087](https://github.com/nodejs/node/pull/36087)
    
  • [`4a88c73fa5`](https://github.com/nodejs/node/commit/4a88c73fa5)] - **deps**: upgrade npm to 7.0.14 (nlf) [#&#8203;36238](https://github.com/nodejs/node/pull/36238)
    
  • [`d16e8622a7`](https://github.com/nodejs/node/commit/d16e8622a7)] - **deps**: upgrade npm to 7.0.13 (Ruy Adorno) [#&#8203;36202](https://github.com/nodejs/node/pull/36202)
    
  • [`c23ee3744f`](https://github.com/nodejs/node/commit/c23ee3744f)] - **deps**: upgrade npm to 7.0.12 (Ruy Adorno) [#&#8203;36153](https://github.com/nodejs/node/pull/36153)
    
  • [`0fcbb1c0d5`](https://github.com/nodejs/node/commit/0fcbb1c0d5)] - **deps**: V8: cherry-pick [`3176bfd`](https://github.com/nodejs/node/commit/3176bfd447a9) (Anna Henningsen) [#&#8203;35612](https://github.com/nodejs/node/pull/35612)
    
  • [`27f1bc05fd`](https://github.com/nodejs/node/commit/27f1bc05fd)] - **deps**: upgrade npm to 7.0.11 (Darcy Clarke) [#&#8203;36112](https://github.com/nodejs/node/pull/36112)
    
  • [`8ae3ffe2be`](https://github.com/nodejs/node/commit/8ae3ffe2be)] - **deps**: V8: cherry-pick [`1d0f426`](https://github.com/nodejs/node/commit/1d0f426311d4) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`4b7ba11d67`](https://github.com/nodejs/node/commit/4b7ba11d67)] - **deps**: V8: cherry-pick [`4e077ff`](https://github.com/nodejs/node/commit/4e077ff0444a) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`098a5b1298`](https://github.com/nodejs/node/commit/098a5b1298)] - **deps**: V8: cherry-pick [`086eecb`](https://github.com/nodejs/node/commit/086eecbd96b6) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`d2c757ab19`](https://github.com/nodejs/node/commit/d2c757ab19)] - **deps**: V8: cherry-pick [`27e1ac1`](https://github.com/nodejs/node/commit/27e1ac1a79ff) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`6349b1d673`](https://github.com/nodejs/node/commit/6349b1d673)] - **(SEMVER-MINOR)** **dns**: add a cancel() method to the promise Resolver (Szymon Marczak) [#&#8203;33099](https://github.com/nodejs/node/pull/33099)
    
  • [`0fbade38ef`](https://github.com/nodejs/node/commit/0fbade38ef)] - **doc**: add arm64 macOS as experimental (Richard Lau) [#&#8203;36189](https://github.com/nodejs/node/pull/36189)
    
  • [`42dfda8f78`](https://github.com/nodejs/node/commit/42dfda8f78)] - **doc**: remove stray comma in url.md (Rich Trott) [#&#8203;36175](https://github.com/nodejs/node/pull/36175)
    
  • [`8bbdbccbb6`](https://github.com/nodejs/node/commit/8bbdbccbb6)] - **doc**: revise agent.destroy() text (Rich Trott) [#&#8203;36163](https://github.com/nodejs/node/pull/36163)
    
  • [`545ac1fec5`](https://github.com/nodejs/node/commit/545ac1fec5)] - **doc**: fix punctuation in v8.md (Rich Trott) [#&#8203;36192](https://github.com/nodejs/node/pull/36192)
    
  • [`a6a90af8c0`](https://github.com/nodejs/node/commit/a6a90af8c0)] - **doc**: add compatibility/interop technical value (Geoffrey Booth) [#&#8203;35323](https://github.com/nodejs/node/pull/35323)
    
  • [`4ab4a99900`](https://github.com/nodejs/node/commit/4ab4a99900)] - **doc**: de-emphasize wrapping in napi_define_class (Gabriel Schulhof) [#&#8203;36159](https://github.com/nodejs/node/pull/36159)
    
  • [`bb29508e8f`](https://github.com/nodejs/node/commit/bb29508e8f)] - **doc**: add link for v8.takeCoverage() (Rich Trott) [#&#8203;36135](https://github.com/nodejs/node/pull/36135)
    
  • [`24065b92f1`](https://github.com/nodejs/node/commit/24065b92f1)] - **doc**: mark modules implementation as stable (Guy Bedford) [#&#8203;35781](https://github.com/nodejs/node/pull/35781)
    
  • [`142cacdc63`](https://github.com/nodejs/node/commit/142cacdc63)] - **doc**: clarify text about process not responding (Rich Trott) [#&#8203;36117](https://github.com/nodejs/node/pull/36117)
    
  • [`0ff384b0be`](https://github.com/nodejs/node/commit/0ff384b0be)] - **doc**: esm docs consolidation and reordering (Guy Bedford) [#&#8203;36046](https://github.com/nodejs/node/pull/36046)
    
  • [`b17a83a00d`](https://github.com/nodejs/node/commit/b17a83a00d)] - **doc**: claim ABI version for Electron v13 (Shelley Vohr) [#&#8203;36101](https://github.com/nodejs/node/pull/36101)
    
  • [`e8a8513b2c`](https://github.com/nodejs/node/commit/e8a8513b2c)] - **doc**: fix invalid link in worker_threads.md (Rich Trott) [#&#8203;36109](https://github.com/nodejs/node/pull/36109)
    
  • [`cd33594a0d`](https://github.com/nodejs/node/commit/cd33594a0d)] - **doc**: move shigeki to emeritus (Rich Trott) [#&#8203;36093](https://github.com/nodejs/node/pull/36093)
    
  • [`eefc6aa6c9`](https://github.com/nodejs/node/commit/eefc6aa6c9)] - **doc**: document the error when cwd not exists in child_process.spawn (FeelyChau) [#&#8203;34505](https://github.com/nodejs/node/pull/34505)
    
  • [`841a2812d0`](https://github.com/nodejs/node/commit/841a2812d0)] - **doc**: fix typo in debugger.md (Rich Trott) [#&#8203;36066](https://github.com/nodejs/node/pull/36066)
    
  • [`500e709439`](https://github.com/nodejs/node/commit/500e709439)] - **doc**: update list styles for remark-parse@9 rendering (Rich Trott) [#&#8203;36049](https://github.com/nodejs/node/pull/36049)
    
  • [`a8dab217eb`](https://github.com/nodejs/node/commit/a8dab217eb)] - **doc,url**: fix url.hostname example (Rishabh Mehan) [#&#8203;33735](https://github.com/nodejs/node/pull/33735)
    
  • [`e48ec703ba`](https://github.com/nodejs/node/commit/e48ec703ba)] - **domain**: improve deprecation warning text for DEP0097 (Anna Henningsen) [#&#8203;36136](https://github.com/nodejs/node/pull/36136)
    
  • [`bcbf176c22`](https://github.com/nodejs/node/commit/bcbf176c22)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36167](https://github.com/nodejs/node/pull/36167)
    
  • [`66788970ac`](https://github.com/nodejs/node/commit/66788970ac)] - **esm**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36019](https://github.com/nodejs/node/pull/36019)
    
  • [`9ce9b016e6`](https://github.com/nodejs/node/commit/9ce9b016e6)] - **(SEMVER-MINOR)** **events**: add max listener warning for EventTarget (James M Snell) [#&#8203;36001](https://github.com/nodejs/node/pull/36001)
    
  • [`1550073dbc`](https://github.com/nodejs/node/commit/1550073dbc)] - **events**: disabled manual construction AbortSignal (raisinten) [#&#8203;36094](https://github.com/nodejs/node/pull/36094)
    
  • [`8a6cabbb23`](https://github.com/nodejs/node/commit/8a6cabbb23)] - **events**: port some wpt tests (Ethan Arrowood) [#&#8203;34169](https://github.com/nodejs/node/pull/34169)
    
  • [`3691eccf0a`](https://github.com/nodejs/node/commit/3691eccf0a)] - **fs**: remove experimental from promises.rmdir recursive (Anders Kaseorg) [#&#8203;36131](https://github.com/nodejs/node/pull/36131)
    
  • [`76b1863240`](https://github.com/nodejs/node/commit/76b1863240)] - **fs**: filehandle read now accepts object as argument (Nikola Glavina) [#&#8203;34180](https://github.com/nodejs/node/pull/34180)
    
  • [`2fdf509268`](https://github.com/nodejs/node/commit/2fdf509268)] - **http**: fix typo in comment (Hollow Man) [#&#8203;36193](https://github.com/nodejs/node/pull/36193)
    
  • [`8390f8a86b`](https://github.com/nodejs/node/commit/8390f8a86b)] - **(SEMVER-MINOR)** **http**: add support for abortsignal to http.request (Benjamin Gruenbaum) [#&#8203;36048](https://github.com/nodejs/node/pull/36048)
    
  • [`387d92fd0e`](https://github.com/nodejs/node/commit/387d92fd0e)] - **http**: onFinish will not be triggered again when finished (rickyes) [#&#8203;35845](https://github.com/nodejs/node/pull/35845)
    
  • [`48bf59bb8b`](https://github.com/nodejs/node/commit/48bf59bb8b)] - **http2**: add support for AbortSignal to http2Session.request (Madara Uchiha) [#&#8203;36070](https://github.com/nodejs/node/pull/36070)
    
  • [`8a0c3b9c76`](https://github.com/nodejs/node/commit/8a0c3b9c76)] - **http2**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36142](https://github.com/nodejs/node/pull/36142)
    
  • [`f0aed8c01c`](https://github.com/nodejs/node/commit/f0aed8c01c)] - **http2**: add support for TypedArray to getUnpackedSettings (Antoine du Hamel) [#&#8203;36141](https://github.com/nodejs/node/pull/36141)
    
  • [`9c6be3cc90`](https://github.com/nodejs/node/commit/9c6be3cc90)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978)
    
  • [`0b40568afe`](https://github.com/nodejs/node/commit/0b40568afe)] - **http2**: delay session.receive() by a tick (Szymon Marczak) [#&#8203;35985](https://github.com/nodejs/node/pull/35985)
    
  • [`1a4d43f840`](https://github.com/nodejs/node/commit/1a4d43f840)] - **lib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36140](https://github.com/nodejs/node/pull/36140)
    
  • [`d6ea12e003`](https://github.com/nodejs/node/commit/d6ea12e003)] - **lib**: set abort-controller toStringTag (Benjamin Gruenbaum) [#&#8203;36115](https://github.com/nodejs/node/pull/36115)
    
  • [`82f1cde57e`](https://github.com/nodejs/node/commit/82f1cde57e)] - **lib**: remove primordials.SafePromise (Antoine du Hamel) [#&#8203;36149](https://github.com/nodejs/node/pull/36149)
    
  • [`15ff155c12`](https://github.com/nodejs/node/commit/15ff155c12)] - **(SEMVER-MINOR)** **lib**: add throws option to fs.f/l/statSync (Andrew Casey) [#&#8203;33716](https://github.com/nodejs/node/pull/33716)
    
  • [`75707f45eb`](https://github.com/nodejs/node/commit/75707f45eb)] - **lib,tools**: enforce access to prototype from primordials (Antoine du Hamel) [#&#8203;36025](https://github.com/nodejs/node/pull/36025)
    
  • [`79b2ba6744`](https://github.com/nodejs/node/commit/79b2ba6744)] - **n-api**: clean up binding creation (Gabriel Schulhof) [#&#8203;36170](https://github.com/nodejs/node/pull/36170)
    
  • [`5698cc08f0`](https://github.com/nodejs/node/commit/5698cc08f0)] - **n-api**: fix test_async_context warnings (Gabriel Schulhof) [#&#8203;36171](https://github.com/nodejs/node/pull/36171)
    
  • [`3d623d850c`](https://github.com/nodejs/node/commit/3d623d850c)] - **n-api**: improve consistency of how we get context (Michael Dawson) [#&#8203;36068](https://github.com/nodejs/node/pull/36068)
    
  • [`89da0c3353`](https://github.com/nodejs/node/commit/89da0c3353)] - **n-api**: factor out calling pattern (Gabriel Schulhof) [#&#8203;36113](https://github.com/nodejs/node/pull/36113)
    
  • [`5c0ddbca01`](https://github.com/nodejs/node/commit/5c0ddbca01)] - **net**: fix invalid write after end error (Robert Nagy) [#&#8203;36043](https://github.com/nodejs/node/pull/36043)
    
  • [`85c85d368a`](https://github.com/nodejs/node/commit/85c85d368a)] - **(SEMVER-MINOR)** **path**: add `path/posix` and `path/win32` alias modules (ExE Boss) [#&#8203;34962](https://github.com/nodejs/node/pull/34962)
    
  • [`ed8af3a8b7`](https://github.com/nodejs/node/commit/ed8af3a8b7)] - **perf_hooks**: make nodeTiming a first-class object (Momtchil Momtchev) [#&#8203;35977](https://github.com/nodejs/node/pull/35977)
    
  • [`eb9295b583`](https://github.com/nodejs/node/commit/eb9295b583)] - **promise**: emit error on domain unhandled rejections (Benjamin Gruenbaum) [#&#8203;36082](https://github.com/nodejs/node/pull/36082)
    
  • [`59af919d6b`](https://github.com/nodejs/node/commit/59af919d6b)] - **querystring**: reduce memory usage by Int8Array (sapics) [#&#8203;34179](https://github.com/nodejs/node/pull/34179)
    
  • [`d1baae3640`](https://github.com/nodejs/node/commit/d1baae3640)] - **(SEMVER-MINOR)** **readline**: add getPrompt to get the current prompt (Mattias Runge-Broberg) [#&#8203;33675](https://github.com/nodejs/node/pull/33675)
    
  • [`6d1b1c7ad0`](https://github.com/nodejs/node/commit/6d1b1c7ad0)] - **src**: integrate URL::href() and use in inspector (Daijiro Wachi) [#&#8203;35912](https://github.com/nodejs/node/pull/35912)
    
  • [`7086f2e653`](https://github.com/nodejs/node/commit/7086f2e653)] - **src**: refactor using-declarations node_env_var.cc (raisinten) [#&#8203;36128](https://github.com/nodejs/node/pull/36128)
    
  • [`122797e87f`](https://github.com/nodejs/node/commit/122797e87f)] - **src**: remove duplicate logic for getting buffer (Yash Ladha) [#&#8203;34553](https://github.com/nodejs/node/pull/34553)
    
  • [`5729478509`](https://github.com/nodejs/node/commit/5729478509)] - **(SEMVER-MINOR)** **src**: add loop idle time in diagnostic report (Gireesh Punathil) [#&#8203;35940](https://github.com/nodejs/node/pull/35940)
    
  • [`a81dc9ae18`](https://github.com/nodejs/node/commit/a81dc9ae18)] - **src,crypto**: refactoring of crypto_context, SecureContext (James M Snell) [#&#8203;35665](https://github.com/nodejs/node/pull/35665)
    
  • [`5fa35f6934`](https://github.com/nodejs/node/commit/5fa35f6934)] - **test**: update comments in test-fs-read-offset-null (Rich Trott) [#&#8203;36152](https://github.com/nodejs/node/pull/36152)
    
  • [`73bb54af77`](https://github.com/nodejs/node/commit/73bb54af77)] - **test**: update wpt url and resource (Daijiro Wachi) [#&#8203;36032](https://github.com/nodejs/node/pull/36032)
    
  • [`77b47dfd08`](https://github.com/nodejs/node/commit/77b47dfd08)] - **test**: fix typo in inspector-helper.js (Luigi Pinca) [#&#8203;36127](https://github.com/nodejs/node/pull/36127)
    
  • [`474664963c`](https://github.com/nodejs/node/commit/474664963c)] - **test**: deflake test-http-destroyed-socket-write2 (Luigi Pinca) [#&#8203;36120](https://github.com/nodejs/node/pull/36120)
    
  • [`f9bbd35937`](https://github.com/nodejs/node/commit/f9bbd35937)] - **test**: make test-http2-client-jsstream-destroy.js reliable (Rich Trott) [#&#8203;36129](https://github.com/nodejs/node/pull/36129)
    
  • [`c19df17acb`](https://github.com/nodejs/node/commit/c19df17acb)] - **test**: add test for fs.read when offset key is null (mayank agarwal) [#&#8203;35918](https://github.com/nodejs/node/pull/35918)
    
  • [`9405cddbee`](https://github.com/nodejs/node/commit/9405cddbee)] - **test**: improve test-stream-duplex-readable-end (Luigi Pinca) [#&#8203;36056](https://github.com/nodejs/node/pull/36056)
    
  • [`3be5e86c57`](https://github.com/nodejs/node/commit/3be5e86c57)] - **test**: add util.inspect test for null maxStringLength (Rich Trott) [#&#8203;36086](https://github.com/nodejs/node/pull/36086)
    
  • [`6a4cc43028`](https://github.com/nodejs/node/commit/6a4cc43028)] - **test**: replace var with const (Aleksandr Krutko) [#&#8203;36069](https://github.com/nodejs/node/pull/36069)
    
  • [`a367c0dfc2`](https://github.com/nodejs/node/commit/a367c0dfc2)] - **timers**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36132](https://github.com/nodejs/node/pull/36132)
    
  • [`a6ef92bc27`](https://github.com/nodejs/node/commit/a6ef92bc27)] - **tools**: bump unist-util-find@1.0.1 to unist-util-find@1.0.2 (Rich Trott) [#&#8203;36106](https://github.com/nodejs/node/pull/36106)
    
  • [`2d2491284e`](https://github.com/nodejs/node/commit/2d2491284e)] - **tools**: only use 2 cores for macos action (Myles Borins) [#&#8203;36169](https://github.com/nodejs/node/pull/36169)
    
  • [`d8fcf2c324`](https://github.com/nodejs/node/commit/d8fcf2c324)] - **tools**: remove bashisms from license builder script (Antoine du Hamel) [#&#8203;36122](https://github.com/nodejs/node/pull/36122)
    
  • [`7e7ddb11c0`](https://github.com/nodejs/node/commit/7e7ddb11c0)] - **tools**: hide commit queue action link (Antoine du Hamel) [#&#8203;36124](https://github.com/nodejs/node/pull/36124)
    
  • [`63494e434a`](https://github.com/nodejs/node/commit/63494e434a)] - **tools**: update doc tools to remark-parse@9.0.0 (Rich Trott) [#&#8203;36049](https://github.com/nodejs/node/pull/36049)
    
  • [`bf0550ce4e`](https://github.com/nodejs/node/commit/bf0550ce4e)] - **tools**: enforce use of single quotes in editorconfig (Antoine du Hamel) [#&#8203;36020](https://github.com/nodejs/node/pull/36020)
    
  • [`49649a499e`](https://github.com/nodejs/node/commit/49649a499e)] - **tools**: fix config serialization w/ long strings (Ole André Vadla Ravnås) [#&#8203;35982](https://github.com/nodejs/node/pull/35982)
    
  • [`be220b213d`](https://github.com/nodejs/node/commit/be220b213d)] - **tools**: update ESLint to 7.13.0 (Luigi Pinca) [#&#8203;36031](https://github.com/nodejs/node/pull/36031)
    
  • [`4140f491fd`](https://github.com/nodejs/node/commit/4140f491fd)] - **util**: fix to inspect getters that access this (raisinten) [#&#8203;36052](https://github.com/nodejs/node/pull/36052)
    
  • [`baa87c1a7d`](https://github.com/nodejs/node/commit/baa87c1a7d)] - **(SEMVER-MINOR)** **util**: add `util/types` alias module (ExE Boss) [#&#8203;34055](https://github.com/nodejs/node/pull/34055)
    
  • [`f7b2fce1c1`](https://github.com/nodejs/node/commit/f7b2fce1c1)] - **vm**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36023](https://github.com/nodejs/node/pull/36023)
    
  • [`4e3883ec2d`](https://github.com/nodejs/node/commit/4e3883ec2d)] - **win,build,tools**: support VS prerelease (Baruch Odem) [#&#8203;36033](https://github.com/nodejs/node/pull/36033)
    
    

v15.2.1

Compare Source

Notable changes

This is a security release.

Vulnerabilities fixed:

  • CVE-2020-8277: Denial of Service through DNS request (High). A Node.js application that allows an attacker to trigger a DNS request for a host of their choice could trigger a Denial of service by getting the application to resolve a DNS record with a larger number of responses.
Commits
  • [`2a44836eeb`](https://github.com/nodejs/node/commit/2a44836eeb)] - **deps**: cherry-pick [`0d252eb`](https://github.com/nodejs/node/commit/0d252eb) from upstream c-ares (Michael Dawson) [nodejs-private/node-private#&#8203;231](https://github.com/nodejs-private/node-private/pull/231)
    
  • [`b1f5518a0a`](https://github.com/nodejs/node/commit/b1f5518a0a)] - **doc**: fix `events.getEventListeners` example (Dmitry Semigradsky) [#&#8203;36085](https://github.com/nodejs/node/pull/36085)
    
  • [`b477447a55`](https://github.com/nodejs/node/commit/b477447a55)] - **doc**: fix `added:` info for `stream.\_construct()` (Luigi Pinca) [#&#8203;36067](https://github.com/nodejs/node/pull/36067)
    
  • [`df211208c0`](https://github.com/nodejs/node/commit/df211208c0)] - **test**: add missing test coverage for setLocalAddress() (Rich Trott) [#&#8203;36039](https://github.com/nodejs/node/pull/36039)
    
  • [`f5191f5bd2`](https://github.com/nodejs/node/commit/f5191f5bd2)] - **test**: remove flaky designation for fixed test (Rich Trott) [#&#8203;35961](https://github.com/nodejs/node/pull/35961)
    
  • [`a2f652f7c5`](https://github.com/nodejs/node/commit/a2f652f7c5)] - **test**: move test-worker-eventlooputil to sequential (Rich Trott) [#&#8203;35996](https://github.com/nodejs/node/pull/35996)
    
  • [`b0b43b27d6`](https://github.com/nodejs/node/commit/b0b43b27d6)] - **test**: fix unreliable test-fs-write-file.js (Rich Trott) [#&#8203;36102](https://github.com/nodejs/node/pull/36102)
    
    

v15.2.0

Compare Source

Notable changes
  • events:
    • getEventListeners static (Benjamin Gruenbaum) #​35991
  • fs:
    • support abortsignal in writeFile (Benjamin Gruenbaum) #​35993
    • add support for AbortSignal in readFile (Benjamin Gruenbaum) #​35911
  • stream:
    • fix thrown object reference (Gil Pedersen) #​36065
Commits
  • [`9d9a044c1b`](https://github.com/nodejs/node/commit/9d9a044c1b)] - **benchmark**: ignore build artifacts for napi addons (Richard Lau) [#&#8203;35970](https://github.com/nodejs/node/pull/35970)
    
  • [`4c6de854be`](https://github.com/nodejs/node/commit/4c6de854be)] - **benchmark**: remove modules that require intl (Richard Lau) [#&#8203;35968](https://github.com/nodejs/node/pull/35968)
    
  • [`292915a6a8`](https://github.com/nodejs/node/commit/292915a6a8)] - **bootstrap**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35999](https://github.com/nodejs/node/pull/35999)
    
  • [`10c9ea771d`](https://github.com/nodejs/node/commit/10c9ea771d)] - **build**: fix zlib inlining for IA-32 (raisinten) [#&#8203;35679](https://github.com/nodejs/node/pull/35679)
    
  • [`6ac9c8f31b`](https://github.com/nodejs/node/commit/6ac9c8f31b)] - **build, tools**: look for local installation of NASM (Richard Lau) [#&#8203;36014](https://github.com/nodejs/node/pull/36014)
    
  • [`9757b47c44`](https://github.com/nodejs/node/commit/9757b47c44)] - **console**: use more primordials (Antoine du Hamel) [#&#8203;35734](https://github.com/nodejs/node/pull/35734)
    
  • [`0d7422651b`](https://github.com/nodejs/node/commit/0d7422651b)] - **crypto**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36012](https://github.com/nodejs/node/pull/36012)
    
  • [`dc4936ba50`](https://github.com/nodejs/node/commit/dc4936ba50)] - **crypto**: fix comment in ByteSource (Tobias Nießen) [#&#8203;35972](https://github.com/nodejs/node/pull/35972)
    
  • [`7cb5c0911e`](https://github.com/nodejs/node/commit/7cb5c0911e)] - **deps**: cherry-pick [`9a49b22`](https://github.com/nodejs/node/commit/9a49b22) from V8 upstream (Daniel Bevenius) [#&#8203;35939](https://github.com/nodejs/node/pull/35939)
    
  • [`4b03670877`](https://github.com/nodejs/node/commit/4b03670877)] - **dns**: fix trace_events name for resolveCaa() (Rich Trott) [#&#8203;35979](https://github.com/nodejs/node/pull/35979)
    
  • [`dcb27600da`](https://github.com/nodejs/node/commit/dcb27600da)] - **doc**: escape asterisk in cctest gtest-filter (raisinten) [#&#8203;36034](https://github.com/nodejs/node/pull/36034)
    
  • [`923276ca53`](https://github.com/nodejs/node/commit/923276ca53)] - **doc**: move v8.getHeapCodeStatistics() (Rich Trott) [#&#8203;36027](https://github.com/nodejs/node/pull/36027)
    
  • [`71fa9c6b24`](https://github.com/nodejs/node/commit/71fa9c6b24)] - **doc**: add note regarding file structure in src/README.md (Denys Otrishko) [#&#8203;35000](https://github.com/nodejs/node/pull/35000)
    
  • [`99cb36238d`](https://github.com/nodejs/node/commit/99cb36238d)] - **doc**: advise users to import the full set of trusted release keys (Reşat SABIQ) [#&#8203;32655](https://github.com/nodejs/node/pull/32655)
    
  • [`06cc400160`](https://github.com/nodejs/node/commit/06cc400160)] - **doc**: fix crypto doc linter errors (Antoine du Hamel) [#&#8203;36035](https://github.com/nodejs/node/pull/36035)
    
  • [`01129a7b39`](https://github.com/nodejs/node/commit/01129a7b39)] - **doc**: revise v8.getHeapSnapshot() (Rich Trott) [#&#8203;35849](https://github.com/nodejs/node/pull/35849)
    
  • [`77d33c9b2f`](https://github.com/nodejs/node/commit/77d33c9b2f)] - **doc**: update core-validate-commit link in guide (Daijiro Wachi) [#&#8203;35938](https://github.com/nodejs/node/pull/35938)
    
  • [`6d56ba03e2`](https://github.com/nodejs/node/commit/6d56ba03e2)] - **doc**: update benchmark CI test indicator in README (Rich Trott) [#&#8203;35945](https://github.com/nodejs/node/pull/35945)
    
  • [`8bd364a9b3`](https://github.com/nodejs/node/commit/8bd364a9b3)] - **doc**: add new wordings to the API description (Pooja D.P) [#&#8203;35588](https://github.com/nodejs/node/pull/35588)
    
  • [`acd3617e1a`](https://github.com/nodejs/node/commit/acd3617e1a)] - **doc**: option --prof documentation help added (krank2me) [#&#8203;34991](https://github.com/nodejs/node/pull/34991)
    
  • [`6968b0fd49`](https://github.com/nodejs/node/commit/6968b0fd49)] - **doc**: fix release-schedule link in backport guide (Daijiro Wachi) [#&#8203;35920](https://github.com/nodejs/node/pull/35920)
    
  • [`efbfeff62b`](https://github.com/nodejs/node/commit/efbfeff62b)] - **doc**: fix incorrect heading level (Bryan Field) [#&#8203;35965](https://github.com/nodejs/node/pull/35965)
    
  • [`9c4b360d08`](https://github.com/nodejs/node/commit/9c4b360d08)] - **doc,crypto**: added sign/verify method changes about dsaEncoding (Filip Skokan) [#&#8203;35480](https://github.com/nodejs/node/pull/35480)
    
  • [`85cf30541d`](https://github.com/nodejs/node/commit/85cf30541d)] - **doc,fs**: document value of stats.isDirectory on symbolic links (coderaiser) [#&#8203;27413](https://github.com/nodejs/node/pull/27413)
    
  • [`d6bd78ff82`](https://github.com/nodejs/node/commit/d6bd78ff82)] - **doc,net**: document socket.timeout (Brandon Kobel) [#&#8203;34543](https://github.com/nodejs/node/pull/34543)
    
  • [`36c20d939a`](https://github.com/nodejs/node/commit/36c20d939a)] - **doc,stream**: write(chunk, encoding, cb) encoding can be null (dev-script) [#&#8203;35372](https://github.com/nodejs/node/pull/35372)
    
  • [`9d26c4d496`](https://github.com/nodejs/node/commit/9d26c4d496)] - **domain**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35885](https://github.com/nodejs/node/pull/35885)
    
  • [`d83e253065`](https://github.com/nodejs/node/commit/d83e253065)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35944](https://github.com/nodejs/node/pull/35944)
    
  • [`567f8d8caf`](https://github.com/nodejs/node/commit/567f8d8caf)] - **(SEMVER-MINOR)** **events**: getEventListeners static (Benjamin Gruenbaum) [#&#8203;35991](https://github.com/nodejs/node/pull/35991)
    
  • [`9e673723e3`](https://github.com/nodejs/node/commit/9e673723e3)] - **events**: fire handlers in correct oder (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`ff59fcdf7b`](https://github.com/nodejs/node/commit/ff59fcdf7b)] - **events**: define abort on prototype (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`ab0eb4f2c9`](https://github.com/nodejs/node/commit/ab0eb4f2c9)] - **events**: support event handlers on prototypes (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`33e2ee58a7`](https://github.com/nodejs/node/commit/33e2ee58a7)] - **events**: define event handler as enumerable (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`a7d0c76f86`](https://github.com/nodejs/node/commit/a7d0c76f86)] - **events**: support emit on nodeeventtarget (Benjamin Gruenbaum) [#&#8203;35851](https://github.com/nodejs/node/pull/35851)
    
  • [`76332a0439`](https://github.com/nodejs/node/commit/76332a0439)] - **events**: port some wpt tests (Benjamin Gruenbaum) [#&#8203;33621](https://github.com/nodejs/node/pull/33621)
    
  • [`ccf9f0e62e`](https://github.com/nodejs/node/commit/ccf9f0e62e)] - **(SEMVER-MINOR)** **fs**: support abortsignal in writeFile (Benjamin Gruenbaum) [#&#8203;35993](https://github.com/nodejs/node/pull/35993)
    
  • [`7ef9c707e9`](https://github.com/nodejs/node/commit/7ef9c707e9)] - **fs**: replace finally with PromisePrototypeFinally (Baruch Odem (Rothkoff)) [#&#8203;35995](https://github.com/nodejs/node/pull/35995)
    
  • [`ccbe267515`](https://github.com/nodejs/node/commit/ccbe267515)] - **fs**: remove unnecessary Function#bind() in fs/promises (Ben Noordhuis) [#&#8203;35208](https://github.com/nodejs/node/pull/35208)
    
  • [`6011bfdec5`](https://github.com/nodejs/node/commit/6011bfdec5)] - **fs**: remove unused assignment (Rich Trott) [#&#8203;35882](https://github.com/nodejs/node/pull/35882)
    
  • [`92bdfd141b`](https://github.com/nodejs/node/commit/92bdfd141b)] - **(SEMVER-MINOR)** **fs**: add support for AbortSignal in readFile (Benjamin Gruenbaum) [#&#8203;35911](https://github.com/nodejs/node/pull/35911)
    
  • [`11f592450b`](https://github.com/nodejs/node/commit/11f592450b)] - **http2**: add has method to proxySocketHandler (masx200) [#&#8203;35197](https://github.com/nodejs/node/pull/35197)
    
  • [`28ed7d062e`](https://github.com/nodejs/node/commit/28ed7d062e)] - **http2**: centralise socket event binding in Http2Session (Momtchil Momtchev) [#&#8203;35772](https://github.com/nodejs/node/pull/35772)
    
  • [`429113ebfb`](https://github.com/nodejs/node/commit/429113ebfb)] - **http2**: move events to the JSStreamSocket (Momtchil Momtchev) [#&#8203;35772](https://github.com/nodejs/node/pull/35772)
    
  • [`1dd744a420`](https://github.com/nodejs/node/commit/1dd744a420)] - **http2**: fix error stream write followed by destroy (David Halls) [#&#8203;35951](https://github.com/nodejs/node/pull/35951)
    
  • [`af2a560c42`](https://github.com/nodejs/node/commit/af2a560c42)] - **lib**: add %TypedArray% abstract constructor to primordials (ExE Boss) [#&#8203;36016](https://github.com/nodejs/node/pull/36016)
    
  • [`b700900d02`](https://github.com/nodejs/node/commit/b700900d02)] - **lib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35875](https://github.com/nodejs/node/pull/35875)
    
  • [`7a375902ff`](https://github.com/nodejs/node/commit/7a375902ff)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36024](https://github.com/nodejs/node/pull/36024)
    
  • [`8d76db86b5`](https://github.com/nodejs/node/commit/8d76db86b5)] - **module**: refactor to use iterable-weak-map (Benjamin Coe) [#&#8203;35915](https://github.com/nodejs/node/pull/35915)
    
  • [`9b6512f7de`](https://github.com/nodejs/node/commit/9b6512f7de)] - **n-api**: unlink reference during its destructor (Gabriel Schulhof) [#&#8203;35933](https://github.com/nodejs/node/pull/35933)
    
  • [`1b277d97f3`](https://github.com/nodejs/node/commit/1b277d97f3)] - **src**: remove ERR prefix in crypto status enums (Daniel Bevenius) [#&#8203;35867](https://github.com/nodejs/node/pull/35867)
    
  • [`9774b4cc72`](https://github.com/nodejs/node/commit/9774b4cc72)] - **stream**: fix thrown object reference (Gil Pedersen) [#&#8203;36065](https://github.com/nodejs/node/pull/36065)
    
  • [`359a6590b0`](https://github.com/nodejs/node/commit/359a6590b0)] - **stream**: writableNeedDrain (Robert Nagy) [#&#8203;35348](https://github.com/nodejs/node/pull/35348)
    
  • [`b7aa5e2296`](https://github.com/nodejs/node/commit/b7aa5e2296)] - **stream**: remove isPromise utility function (Antoine du Hamel) [#&#8203;35925](https://github.com/nodejs/node/pull/35925)
    
  • [`fdae9ad188`](https://github.com/nodejs/node/commit/fdae9ad188)] - **test**: fix races in test-performance-eventlooputil (Gerhard Stoebich) [#&#8203;36028](https://github.com/nodejs/node/pull/36028)
    
  • [`0a4c96a7df`](https://github.com/nodejs/node/commit/0a4c96a7df)] - **test**: use global.EventTarget instead of internals (Antoine du Hamel) [#&#8203;36002](https://github.com/nodejs/node/pull/36002)
    
  • [`f73b8d84db`](https://github.com/nodejs/node/commit/f73b8d84db)] - **test**: improve error message for policy failures (Bradley Meck) [#&#8203;35633](https://github.com/nodejs/node/pull/35633)
    
  • [`cb6f0d3d89`](https://github.com/nodejs/node/commit/cb6f0d3d89)] - **test**: update old comment style test_util.cc (raisinten) [#&#8203;35884](https://github.com/nodejs/node/pull/35884)
    
  • [`23f0d0c45c`](https://github.com/nodejs/node/commit/23f0d0c45c)] - **test**: fix error in test/internet/test-dns.js (Rich Trott) [#&#8203;35969](https://github.com/nodejs/node/pull/35969)
    
  • [`77e4f19701`](https://github.com/nodejs/node/commit/77e4f19701)] - **timers**: cleanup abort listener on awaitable timers (James M Snell) [#&#8203;36006](https://github.com/nodejs/node/pull/36006)
    
  • [`a7350b3a8f`](https://github.com/nodejs/node/commit/a7350b3a8f)] - **tools**: don't print gold linker warning w/o flag (Myles Borins) [#&#8203;35955](https://github.com/nodejs/node/pull/35955)
    
  • [`1f27214480`](https://github.com/nodejs/node/commit/1f27214480)] - **tools**: add new ESLint rule: prefer-primordials (Leko) [#&#8203;35448](https://github.com/nodejs/node/pull/35448)
    
  • [`da3c2ab828`](https://github.com/nodejs/node/commit/da3c2ab828)] - **tools,doc**: enable ecmaVersion 2021 in acorn parser (Antoine du Hamel) [#&#8203;35994](https://github.com/nodejs/node/pull/35994)
    
  • [`f8098c3e43`](https://github.com/nodejs/node/commit/f8098c3e43)] - **tools,lib**: recommend using safe primordials (Antoine du Hamel) [#&#8203;36026](https://github.com/nodejs/node/pull/36026)
    
  • [`eea7e3b0d0`](https://github.com/nodejs/node/commit/eea7e3b0d0)] - **tools,lib**: tighten prefer-primordials rules for Error statics (Antoine du Hamel) [#&#8203;36017](https://github.com/nodejs/node/pull/36017)
    
  • [`7a2edea7ed`](https://github.com/nodejs/node/commit/7a2edea7ed)] - **win, build**: fix build time on Windows (Bartosz Sosnowski) [#&#8203;35932](https://github.com/nodejs/node/pull/35932)
    
    

v15.1.0

Compare Source

Notable Changes
Diagnostics channel (experimental module)

diagnostics_channel is a new experimental module that provides an API to create named channels to report arbitrary message data for diagnostics purposes.

With diagnostics_channel, Node.js core and module authors can publish contextual data about what they are doing at a given time. This could be the hostname and query string of a mysql query, for example. Just create a named channel with dc.channel(name) and call channel.publish(data) to send the data to any listeners to that channel.

const dc = require('diagnostics_channel');
const channel = dc.channel('mysql.query');

MySQL.prototype.query = function query(queryString, values, callback) {
  // Broadcast query information whenever a query is made
  channel.publish({
    query: queryString,
    host: this.hostname,
  });

  this.doQuery(queryString, values, callback);
};

Channels are like one big global event emitter but are split into separate objects to ensure they get the best performance. If nothing is listening to the channel, the publishing overhead should be as close to zero as possible. Consuming channel data is as easy as using channel.subscribe(listener) to run a function whenever a message is published to that channel.

const dc = require('diagnostics_channel');
const channel = dc.channel('mysql.query');

channel.subscribe(({ query, host }) => {
  console.log(`mysql query to ${host}: ${query}`);
});

The data captured can be used to provide context for what an app is doing at a given time. This can be used for things like augmenting tracing data, tracking network and filesystem activity, logging queries, and many other things. It's also a very useful data source for diagnostics tools to provide a clearer picture of exactly what the application is doing at a given point in the data they are presenting.

Contributed by Stephen Belanger #​34895.

New child process 'spawn' event

Instances of ChildProcess now emit a new 'spawn' event once the child process has spawned successfully.

If emitted, the 'spawn' event comes before all other events and before any data is received via stdout or stderr.

The 'spawn' event will fire regardless of whether an error occurs within the spawned process.
For example, if bash some-command spawns successfully, the 'spawn' event will fire, though bash may fail to spawn some-command.
This caveat also applies when using { shell: true }.

Contributed by Matthew Francis Brunetti #​35369.

Set the local address for DNS resolution

It is now possible to set the local IP address used by a Resolver instance to send its requests.
This allows programs to specify outbound interfaces when used on multi-homed
systems.

The resolver will use the v4 local address when making requests to IPv4 DNS servers, and the v6 local address when making requests to IPv6 DNS servers.

const { Resolver } = require('dns');

const resolver = new Resolver();

resolver.setLocalAddress('10.1.2.3');
// Equivalent to: resolver.setLocalAddress('10.1.2.3', '::0');

Contributed by Josh Dague #​34824.

Control V8 coverage at runtime

The v8 module includes two new methods to control the V8 coverage started by the NODE_V8_COVERAGE environment variable.

With v8.takeCoverage(), it is possible to write a coverage report to disk on demand. This can be done multiple times during the lifetime of the process, and the execution counter will be reset on each call.
When the process is about to exit, one last coverage will still be written to disk, unless v8.stopCoverage() was invoked before.

The v8.stopCoverage() method allows to stop the coverage collection, so that V8 can release the execution counters and optimize code.

Contributed by Joyee Cheung #​33807.

Analyze Worker's event loop utilization

Worker instances now have a performance property, with a single eventLoopUtilization method that can be used to gather information about the worker's event loop utilization between the 'online' and 'exit' events.

The method works the same way as perf_hooks eventLoopUtilization().

Contributed by Trevor Norris #​35664.

Take a V8 heap snapshot just before running out of memory (experimental)

With the new --heapsnapshot-near-heap-limit=max_count experimental command line flag, it is now possible to automatically generate a heap snapshot when the V8 heap usage is approaching the heap limit. count should be a non-negative integer (in which case Node.js will write no more than max_count snapshots to disk).

When generating snapshots, garbage collection may be triggered and bring the heap usage down, therefore multiple snapshots may be written to disk before the Node.js instance finally runs out of memory. These heap snapshots can be compared to determine what objects are being allocated during the time consecutive snapshots are taken.

Generating V8 snapshots takes time and memory (both memory managed by the V8 heap and native memory outside the V8 heap). The bigger the heap is, the more resources it needs. Node.js will adjust the V8 heap to accommondate the additional V8 heap memory overhead, and try its best to avoid using up all the memory avialable to the process.

$ node --max-old-space-size=100 --heapsnapshot-near-heap-limit=3 index.js
Wrote snapshot to Heap.20200430.100036.49580.0.001.heapsnapshot
Wrote snapshot to Heap.20200430.100037.49580.0.002.heapsnapshot
Wrote snapshot to Heap.20200430.100038.49580.0.003.heapsnapshot

<--- Last few GCs --->

[49580:0x110000000]     4826 ms: Mark-sweep 130.6 (147.8) -> 130.5 (147.8) MB, 27.4 / 0.0 ms  (average mu = 0.126, current mu = 0.034) allocation failure scavenge might not succeed
[49580:0x110000000]     4845 ms: Mark-sweep 130.6 (147.8) -> 130.6 (147.8) MB, 18.8 / 0.0 ms  (average mu = 0.088, current mu = 0.031) allocation failure scavenge might not succeed

<--- JS stacktrace --->

FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
....

Contributed by Joyee Cheung #​33010.

Commits
Semver-minor commits
  • [`8169902b40`](https://github.com/nodejs/node/commit/8169902b40)] - **(SEMVER-MINOR)** **child_process**: add ChildProcess 'spawn' event (Matthew Francis Brunetti) [#&#8203;35369](https://github.com/nodejs/node/pull/35369)
    
  • [`548f91af2c`](https://github.com/nodejs/node/commit/548f91af2c)] - **(SEMVER-MINOR)** **dns**: add setLocalAddress to Resolver (Josh Dague) [#&#8203;34824](https://github.com/nodejs/node/pull/34824)
    
  • [`f861733bac`](https://github.com/nodejs/node/commit/f861733bac)] - **(SEMVER-MINOR)** **http**: report request start and end with diagnostics_channel (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895)
    
  • [`883ed4b7f1`](https://github.com/nodejs/node/commit/883ed4b7f1)] - **(SEMVER-MINOR)** **http2**: add updateSettings to both http2 servers (Vincent Boivin) [#&#8203;35383](https://github.com/nodejs/node/pull/35383)
    
  • [`b38a43d5d9`](https://github.com/nodejs/node/commit/b38a43d5d9)] - **(SEMVER-MINOR)** **lib**: create diagnostics_channel module (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895)
    
  • [`a7f37bc725`](https://github.com/nodejs/node/commit/a7f37bc725)] - **(SEMVER-MINOR)** **src**: add --heapsnapshot-near-heap-limit option (Joyee Cheung) [#&#8203;33010](https://github.com/nodejs/node/pull/33010)
    
  • [`7bfa872013`](https://github.com/nodejs/node/commit/7bfa872013)] - **(SEMVER-MINOR)** **v8**: implement v8.stopCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807)
    
  • [`15ffed5319`](https://github.com/nodejs/node/commit/15ffed5319)] - **(SEMVER-MINOR)** **v8**: implement v8.takeCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807)
    
  • [`221e28311f`](https://github.com/nodejs/node/commit/221e28311f)] - **(SEMVER-MINOR)** **worker**: add eventLoopUtilization() (Trevor Norris) [#&#8203;35664](https://github.com/nodejs/node/pull/35664)
    
    
Semver-patch commits
  • [`d95013f399`](https://github.com/nodejs/node/commit/d95013f399)] - **assert,repl**: enable ecmaVersion 2021 in acorn parser (Michaël Zasso) [#&#8203;35827](https://github.com/nodejs/node/pull/35827)
    
  • [`b11c7378e3`](https://github.com/nodejs/node/commit/b11c7378e3)] - **build**: fix lint-js-fix target (Antoine du Hamel) [#&#8203;35927](https://github.com/nodejs/node/pull/35927)
    
  • [`a5fa849631`](https://github.com/nodejs/node/commit/a5fa849631)] - **build**: add vcbuilt test-doc target (Antoine du Hamel) [#&#8203;35708](https://github.com/nodejs/node/pull/35708)
    
  • [`34281cdaba`](https://github.com/nodejs/node/commit/34281cdaba)] - **build**: turn off Codecov comments (bcoe) [#&#8203;35800](https://github.com/nodejs/node/pull/35800)
    
  • [`a9c09246bb`](https://github.com/nodejs/node/commit/a9c09246bb)] - **build**: add license-builder GitHub Action (Tierney Cyren) [#&#8203;35712](https://github.com/nodejs/node/pull/35712)
    
  • [`4447ff1162`](https://github.com/nodejs/node/commit/4447ff1162)] - **build,tools**: gitHub Actions: use Node.js Fermium (Antoine du Hamel) [#&#8203;35840](https://github.com/nodejs/node/pull/35840)
    
  • [`273e147017`](https://github.com/nodejs/node/commit/273e147017)] - **build,tools**: add lint-js-doc target (Antoine du Hamel) [#&#8203;35708](https://github.com/nodejs/node/pull/35708)
    
  • [`0ebf44b466`](https://github.com/nodejs/node/commit/0ebf44b466)] - **crypto**: pass empty passphrases to OpenSSL properly (Tobias Nießen) [#&#8203;35914](https://github.com/nodejs/node/pull/35914)
    
  • [`644c416389`](https://github.com/nodejs/node/commit/644c416389)] - **crypto**: rename check to createJob (Daniel Bevenius) [#&#8203;35858](https://github.com/nodejs/node/pull/35858)
    
  • [`79a8fb62e6`](https://github.com/nodejs/node/commit/79a8fb62e6)] - **crypto**: fixup scrypt regressions (James M Snell) [#&#8203;35821](https://github.com/nodejs/node/pull/35821)
    
  • [`abd7c9447c`](https://github.com/nodejs/node/commit/abd7c9447c)] - **crypto**: fix webcrypto ECDH JWK import (Filip Skokan) [#&#8203;35855](https://github.com/nodejs/node/pull/35855)
    
  • [`d3f1cde908`](https://github.com/nodejs/node/commit/d3f1cde908)] - **deps**: upgrade npm to 7.0.8 (Myles Borins) [#&#8203;35953](https://github.com/nodejs/node/pull/35953)
    
  • [`55adee0947`](https://github.com/nodejs/node/commit/55adee0947)] - **deps**: upgrade npm to 7.0.7 (Luigi Pinca) [#&#8203;35908](https://github.com/nodejs/node/pull/35908)
    
  • [`5cb77f2e79`](https://github.com/nodejs/node/commit/5cb77f2e79)] - **deps**: upgrade to cjs-module-lexer@1.0.0 (Guy Bedford) [#&#8203;35928](https://github.com/nodejs/node/pull/35928)
    
  • [`1303a1fca8`](https://github.com/nodejs/node/commit/1303a1fca8)] - **deps**: update to cjs-module-lexer@0.5.2 (Guy Bedford) [#&#8203;35901](https://github.com/nodejs/node/pull/35901)
    
  • [`20accb08fa`](https://github.com/nodejs/node/commit/20accb08fa)] - **deps**: upgrade to cjs-module-lexer@0.5.0 (Guy Bedford) [#&#8203;35871](https://github.com/nodejs/node/pull/35871)
    
  • [`52a77db759`](https://github.com/nodejs/node/commit/52a77db759)] - **deps**: update acorn to v8.0.4 (Michaël Zasso) [#&#8203;35791](https://github.com/nodejs/node/pull/35791)
    
  • [`e0a1541260`](https://github.com/nodejs/node/commit/e0a1541260)] - **deps**: update to cjs-module-lexer@0.4.3 (Guy Bedford) [#&#8203;35745](https://github.com/nodejs/node/pull/35745)
    
  • [`894419c1f4`](https://github.com/nodejs/node/commit/894419c1f4)] - **deps**: V8: backport [`4263f8a`](https://github.com/nodejs/node/commit/4263f8a5e8e0) (Brian 'bdougie' Douglas) [#&#8203;35650](https://github.com/nodejs/node/pull/35650)
    
  • [`564aadedac`](https://github.com/nodejs/node/commit/564aadedac)] - **doc,src,test**: revise C++ code for linter update (Rich Trott) [#&#8203;35719](https://github.com/nodejs/node/pull/35719)
    
  • [`7c8b5e5e0e`](https://github.com/nodejs/node/commit/7c8b5e5e0e)] - **errors**: do not call resolve on URLs with schemes (bcoe) [#&#8203;35903](https://github.com/nodejs/node/pull/35903)
    
  • [`1cdfaa80f8`](https://github.com/nodejs/node/commit/1cdfaa80f8)] - **events**: add a few tests (Benjamin Gruenbaum) [#&#8203;35806](https://github.com/nodejs/node/pull/35806)
    
  • [`f08e2c0213`](https://github.com/nodejs/node/commit/f08e2c0213)] - **events**: make abort_controller event trusted (Benjamin Gruenbaum) [#&#8203;35811](https://github.com/nodejs/node/pull/35811)
    
  • [`438d9debfd`](https://github.com/nodejs/node/commit/438d9debfd)] - **events**: make eventTarget.removeAllListeners() return this (Luigi Pinca) [#&#8203;35805](https://github.com/nodejs/node/pull/35805)
    
  • [`b6b7a3b86a`](https://github.com/nodejs/node/commit/b6b7a3b86a)] - **http**: lazy create IncomingMessage.headers (Robert Nagy) [#&#8203;35281](https://github.com/nodejs/node/pull/35281)
    
  • [`86ed87b6b7`](https://github.com/nodejs/node/commit/86ed87b6b7)] - **http2**: fix reinjection check (Momtchil Momtchev) [#&#8203;35678](https://github.com/nodejs/node/pull/35678)
    
  • [`5833007eb0`](https://github.com/nodejs/node/commit/5833007eb0)] - **http2**: reinject data received before http2 is attached (Momtchil Momtchev) [#&#8203;35678](https://github.com/nodejs/node/pull/35678)
    
  • [`cfe61b8714`](https://github.com/nodejs/node/commit/cfe61b8714)] - **http2**: remove unsupported %.\* specifier (Momtchil Momtchev) [#&#8203;35694](https://github.com/nodejs/node/pull/35694)
    
  • [`d2f574b5be`](https://github.com/nodejs/node/commit/d2f574b5be)] - **lib**: let abort_controller target be EventTarget (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869)
    
  • [`b1e531a70b`](https://github.com/nodejs/node/commit/b1e531a70b)] - **lib**: use primordials when calling methods of Error (Antoine du Hamel) [#&#8203;35837](https://github.com/nodejs/node/pull/35837)
    
  • [`0f5a8c55c2`](https://github.com/nodejs/node/commit/0f5a8c55c2)] - **module**: runtime deprecate subpath folder mappings (Guy Bedford) [#&#8203;35747](https://github.com/nodejs/node/pull/35747)
    
  • [`d16e2fa69a`](https://github.com/nodejs/node/commit/d16e2fa69a)] - **n-api**: napi_make_callback emit async init with resource of async_context (legendecas) [#&#8203;32930](https://github.com/nodejs/node/pull/32930)
    
  • [`0c17dbd201`](https://github.com/nodejs/node/commit/0c17dbd201)] - **n-api**: revert change to finalization (Michael Dawson) [#&#8203;35777](https://github.com/nodejs/node/pull/35777)
    
  • [`fb7196434e`](https://github.com/nodejs/node/commit/fb7196434e)] - **src**: remove redundant OpenSSLBuffer (James M Snell) [#&#8203;35663](https://github.com/nodejs/node/pull/35663)
    
  • [`c9225789d3`](https://github.com/nodejs/node/commit/c9225789d3)] - **src**: remove ERR prefix in WebCryptoKeyExportStatus (Daniel Bevenius) [#&#8203;35639](https://github.com/nodejs/node/pull/35639)
    
  • [`4128eefcb3`](https://github.com/nodejs/node/commit/4128eefcb3)] - **src**: remove ignore GCC -Wcast-function-type for v8 (Daniel Bevenius) [#&#8203;35768](https://github.com/nodejs/node/pull/35768)
    
  • [`4b8b5fee6a`](https://github.com/nodejs/node/commit/4b8b5fee6a)] - **src**: use MaybeLocal.ToLocal instead of IsEmpty (Daniel Bevenius) [#&#8203;35716](https://github.com/nodejs/node/pull/35716)
    
  • [`01d7c46776`](https://github.com/nodejs/node/commit/01d7c46776)] - ***Revert*** "**src**: ignore GCC -Wcast-function-type for v8.h" (Daniel Bevenius) [#&#8203;35758](https://github.com/nodejs/node/pull/35758)
    
  • [`2868f52a5c`](https://github.com/nodejs/node/commit/2868f52a5c)] - **stream**: fix regression on duplex end (Momtchil Momtchev) [#&#8203;35941](https://github.com/nodejs/node/pull/35941)
    
  • [`70c41a830d`](https://github.com/nodejs/node/commit/70c41a830d)] - **stream**: remove redundant context from comments (Yash Ladha) [#&#8203;35728](https://github.com/nodejs/node/pull/35728)
    
  • [`88eb6191e4`](https://github.com/nodejs/node/commit/88eb6191e4)] - **stream**: fix duplicate logic in stream destroy (Yash Ladha) [#&#8203;35727](https://github.com/nodejs/node/pull/35727)
    
  • [`a41e3ebc3a`](https://github.com/nodejs/node/commit/a41e3ebc3a)] - **timers**: correct explanation in comment (Turner Jabbour) [#&#8203;35437](https://github.com/nodejs/node/pull/35437)
    
  • [`ee15142fef`](https://github.com/nodejs/node/commit/ee15142fef)] - **tls**: allow reading data into a static buffer (Andrey Pechkurov) [#&#8203;35753](https://github.com/nodejs/node/pull/35753)
    
  • [`102d7dfe02`](https://github.com/nodejs/node/commit/102d7dfe02)] - **zlib**: test BrotliCompress throws invalid arg value (raisinten) [#&#8203;35830](https://github.com/nodejs/node/pull/35830)
    
    
Documentation commits
  • [`7937fbe3bc`](https://github.com/nodejs/node/commit/7937fbe3bc)] - **doc**: update tables in README files for linting changes (Rich Trott) [#&#8203;35905](https://github.com/nodejs/node/pull/35905)
    
  • [`c5b94220c5`](https://github.com/nodejs/node/commit/c5b94220c5)] - **doc**: temporarily disable list-item-bullet-indent (Nick Schonning) [#&#8203;35647](https://github.com/nodejs/node/pull/35647)
    
  • [`59b36af8d5`](https://github.com/nodejs/node/commit/59b36af8d5)] - **doc**: disable no-undefined-references workarounds (Nick Schonning) [#&#8203;35647](https://github.com/nodejs/node/pull/35647)
    
  • [`eb55462a75`](https://github.com/nodejs/node/commit/eb55462a75)] - **doc**: adjust table alignment for remark v13 (Nick Schonning) [#&#8203;35647](https://github.com/nodejs/node/pull/35647)
    
  • [`0ac4a6ab16`](https://github.com/nodejs/node/commit/0ac4a6ab16)] - **doc**: update crypto.createSecretKey history (Ben Turner) [#&#8203;35874](https://github.com/nodejs/node/pull/35874)
    
  • [`4899998855`](https://github.com/nodejs/node/commit/4899998855)] - **doc**: move bnoordhuis to emeritus (Ben Noordhuis) [#&#8203;35865](https://github.com/nodejs/node/pull/35865)
    
  • [`337bfcf614`](https://github.com/nodejs/node/commit/337bfcf614)] - **doc**: add on statement in the APIs docs (Pooja D.P) [#&#8203;35610](https://github.com/nodejs/node/pull/35610)
    
  • [`9703219fdb`](https://github.com/nodejs/node/commit/9703219fdb)] - **doc**: fix a typo in CHANGELOG_V15 (Takuya Noguchi) [#&#8203;35804](https://github.com/nodejs/node/pull/35804)
    
  • [`c14889bcc1`](https://github.com/nodejs/node/commit/c14889bcc1)] - **doc**: move ronkorving to emeritus (Rich Trott) [#&#8203;35828](https://github.com/nodejs/node/pull/35828)
    
  • [`8c2b17926c`](https://github.com/nodejs/node/commit/8c2b17926c)] - **doc**: recommend test-doc instead of lint-md (Antoine du Hamel) [#&#8203;35708](https://github.com/nodejs/node/pull/35708)
    
  • [`0580258449`](https://github.com/nodejs/node/commit/0580258449)] - **doc**: fix reference to googletest test fixture (Tobias Nießen) [#&#8203;35813](https://github.com/nodejs/node/pull/35813)
    
  • [`d291e3abd9`](https://github.com/nodejs/node/commit/d291e3abd9)] - **doc**: stabilize packages features (Myles Borins) [#&#8203;35742](https://github.com/nodejs/node/pull/35742)
    
  • [`5e8d821b4c`](https://github.com/nodejs/node/commit/5e8d821b4c)] - **doc**: add conditional example for setBreakpoint() (Chris Opperwall) [#&#8203;35823](https://github.com/nodejs/node/pull/35823)
    
  • [`8074f69f82`](https://github.com/nodejs/node/commit/8074f69f82)] - **doc**: make small improvements to REPL doc (Rich Trott) [#&#8203;35808](https://github.com/nodejs/node/pull/35808)
    
  • [`4e76a3c106`](https://github.com/nodejs/node/commit/4e76a3c106)] - **doc**: update MessagePort documentation for EventTarget inheritance (Anna Henningsen) [#&#8203;35839](https://github.com/nodejs/node/pull/35839)
    
  • [`3db4354cc8`](https://github.com/nodejs/node/commit/3db4354cc8)] - **doc**: use case-sensitive in the example (Pooja D.P) [#&#8203;35624](https://github.com/nodejs/node/pull/35624)
    
  • [`b07f4a3f7a`](https://github.com/nodejs/node/commit/b07f4a3f7a)] - **doc**: consolidate and clarify breakOnSigInt text (Rich Trott) [#&#8203;35787](https://github.com/nodejs/node/pull/35787)
    
  • [`c2e6a4b081`](https://github.com/nodejs/node/commit/c2e6a4b081)] - **doc**: fix \_construct example params order (Alejandro Oviedo) [#&#8203;35790](https://github.com/nodejs/node/pull/35790)
    
  • [`6513a589fe`](https://github.com/nodejs/node/commit/6513a589fe)] - **doc**: add a subsystems header in pull-requests.md (Pooja D.P) [#&#8203;35718](https://github.com/nodejs/node/pull/35718)
    
  • [`c365867c60`](https://github.com/nodejs/node/commit/c365867c60)] - **doc**: fix typo in BUILDING.md (raisinten) [#&#8203;35807](https://github.com/nodejs/node/pull/35807)
    
  • [`6211ffd2f7`](https://github.com/nodejs/node/commit/6211ffd2f7)] - **doc**: add require statement in the example (Pooja D.P) [#&#8203;35554](https://github.com/nodejs/node/pull/35554)
    
  • [`7b3743d8dd`](https://github.com/nodejs/node/commit/7b3743d8dd)] - **doc**: modified memory set statement set size (Pooja D.P) [#&#8203;35517](https://github.com/nodejs/node/pull/35517)
    
  • [`afbe23d800`](https://github.com/nodejs/node/commit/afbe23d800)] - **doc**: use kbd element in readline doc prose (Rich Trott) [#&#8203;35737](https://github.com/nodejs/node/pull/35737)
    
  • [`c0a4fac040`](https://github.com/nodejs/node/commit/c0a4fac040)] - **doc**: fix a typo in CHANGELOG_V12 (Shubham Parihar) [#&#8203;35786](https://github.com/nodejs/node/pull/35786)
    
  • [`0e9acf83f7`](https://github.com/nodejs/node/commit/0e9acf83f7)] - **doc**: fix header level in fs.md (ax1) [#&#8203;35771](https://github.com/nodejs/node/pull/35771)
    
  • [`f49afb5e10`](https://github.com/nodejs/node/commit/f49afb5e10)] - **doc**: remove stability warning in v8 module doc (Rich Trott) [#&#8203;35774](https://github.com/nodejs/node/pull/35774)
    
  • [`368ae952b2`](https://github.com/nodejs/node/commit/368ae952b2)] - **doc**: mark optional parameters in timers.md (Vse Mozhe Buty) [#&#8203;35764](https://github.com/nodejs/node/pull/35764)
    
  • [`f6aa7c82c5`](https://github.com/nodejs/node/commit/f6aa7c82c5)] - **doc**: add a example code to API doc property (Pooja D.P) [#&#8203;35738](https://github.com/nodejs/node/pull/35738)
    
  • [`55b7a6cea3`](https://github.com/nodejs/node/commit/55b7a6cea3)] - **doc**: document changes for `\*/promises` alias modules (ExE Boss) [#&#8203;34002](https://github.com/nodejs/node/pull/34002)
    
  • [`4b7708a316`](https://github.com/nodejs/node/commit/4b7708a316)] - **doc**: update console.error example (Lee, Bonggi) [#&#8203;34964](https://github.com/nodejs/node/pull/34964)
    
  • [`292b529dfa`](https://github.com/nodejs/node/commit/292b529dfa)] - **doc**: add missing link in Node.js 14 Changelog (Antoine du Hamel) [#&#8203;35782](https://github.com/nodejs/node/pull/35782)
    
  • [`890b03ecd6`](https://github.com/nodejs/node/commit/890b03ecd6)] - **doc**: improve text for breakOnSigint (Rich Trott) [#&#8203;35692](https://github.com/nodejs/node/pull/35692)
    
  • [`1892532ee8`](https://github.com/nodejs/node/commit/1892532ee8)] - **doc**: this prints replaced with this is printed (Pooja D.P) [#&#8203;35515](https://github.com/nodejs/node/pull/35515)
    
  • [`6590f8cb4a`](https://github.com/nodejs/node/commit/6590f8cb4a)] - **doc**: update package.json field definitions (Myles Borins) [#&#8203;35741](https://github.com/nodejs/node/pull/35741)
    
  • [`f269c6cbe2`](https://github.com/nodejs/node/commit/f269c6cbe2)] - **doc**: add Installing Node.js header in BUILDING.md (Pooja D.P) [#&#8203;35710](https://github.com/nodejs/node/pull/35710)
    
  • [`05a888a8c3`](https://github.com/nodejs/node/commit/05a888a8c3)] - **doc,esm**: document experimental warning removal (Antoine du Hamel) [#&#8203;35750](https://github.com/nodejs/node/pull/35750)
    
  • [`092c6c4f8f`](https://github.com/nodejs/node/commit/092c6c4f8f)] - **doc,test**: update v8 method doc and comment (Rich Trott) [#&#8203;35795](https://github.com/nodejs/node/pull/35795)
    
    
Other commits
  • [`76ebae4c05`](https://github.com/nodejs/node/commit/76ebae4c05)] - **benchmark**: make the benchmark tool work with Node 10 (Joyee Cheung) [#&#8203;35817](https://github.com/nodejs/node/pull/35817)
    
  • [`9b549c1691`](https://github.com/nodejs/node/commit/9b549c1691)] - **benchmark**: add startup benchmark for loading public modules (Joyee Cheung) [#&#8203;35816](https://github.com/nodejs/node/pull/35816)
    
  • [`5d61e3db4b`](https://github.com/nodejs/node/commit/5d61e3db4b)] - **test**: add missing ref comments to parallel.status (Rich Trott) [#&#8203;35896](https://github.com/nodejs/node/pull/35896)
    
  • [`231af88001`](https://github.com/nodejs/node/commit/231af88001)] - **test**: correct test-worker-eventlooputil (Gerhard Stoebich) [#&#8203;35891](https://github.com/nodejs/node/pull/35891)
    
  • [`da612dfc20`](https://github.com/nodejs/node/commit/da612dfc20)] - **test**: integrate abort_controller tests from wpt (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869)
    
  • [`66ad4be2c1`](https://github.com/nodejs/node/commit/66ad4be2c1)] - **test**: add test to fs/promises setImmediate (tyankatsu) [#&#8203;35852](https://github.com/nodejs/node/pull/35852)
    
  • [`830b789299`](https://github.com/nodejs/node/commit/830b789299)] - **test**: mark test-worker-eventlooputil flaky (Myles Borins) [#&#8203;35886](https://github.com/nodejs/node/pull/35886)
    
  • [`7691b673dc`](https://github.com/nodejs/node/commit/7691b673dc)] - **test**: mark test-http2-respond-file-error-pipe-offset flaky (Myles Borins) [#&#8203;35883](https://github.com/nodejs/node/pull/35883)
    
  • [`de3dcd7356`](https://github.com/nodejs/node/commit/de3dcd7356)] - **test**: fix reference to WPT testharness.js (Tobias Nießen) [#&#8203;35814](https://github.com/nodejs/node/pull/35814)
    
  • [`8958af4aa0`](https://github.com/nodejs/node/commit/8958af4aa0)] - **test**: add onerror test cases to policy (Daijiro Wachi) [#&#8203;35797](https://github.com/nodejs/node/pull/35797)
    
  • [`dd3cbb455a`](https://github.com/nodejs/node/commit/dd3cbb455a)] - **test**: add upstream test cases to encoding (Daijiro Wachi) [#&#8203;35794](https://github.com/nodejs/node/pull/35794)
    
  • [`76991c039f`](https://github.com/nodejs/node/commit/76991c039f)] - **test**: add upstream test cases to urlsearchparam (Daijiro Wachi) [#&#8203;35792](https://github.com/nodejs/node/pull/35792)
    
  • [`110ef8aa50`](https://github.com/nodejs/node/commit/110ef8aa50)] - **test**: refactor coverage logic (bcoe) [#&#8203;35767](https://github.com/nodejs/node/pull/35767)
    
  • [`0c5e8ed651`](https://github.com/nodejs/node/commit/0c5e8ed651)] - **test**: add additional deprecation warning tests for rmdir recursive (Ian Sutherland) [#&#8203;35683](https://github.com/nodejs/node/pull/35683)
    
  • [`11eca36e83`](https://github.com/nodejs/node/commit/11eca36e83)] - **test**: add windows and C++ coverage (Benjamin Coe) [#&#8203;35670](https://github.com/nodejs/node/pull/35670)
    
  • [`fd027cd61a`](https://github.com/nodejs/node/commit/fd027cd61a)] - **tools**: bump remark-lint-preset-node to 2.0.0 (Rich Trott) [#&#8203;35905](https://github.com/nodejs/node/pull/35905)
    
  • [`c09fdba786`](https://github.com/nodejs/node/commit/c09fdba786)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;35866](https://github.com/nodejs/node/pull/35866)
    
  • [`3955ccd305`](https://github.com/nodejs/node/commit/3955ccd305)] - **tools**: bump cpplint to 1.5.1 (Rich Trott) [#&#8203;35866](https://github.com/nodejs/node/pull/35866)
    
  • [`a07d1af4ea`](https://github.com/nodejs/node/commit/a07d1af4ea)] - **tools**: update ESLint to 7.12.1 (cjihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799)
    
  • [`d20b318c58`](https://github.com/nodejs/node/commit/d20b318c58)] - **tools**: update ESLint to 7.12.0 (cjihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799)
    
  • [`31753ec8aa`](https://github.com/nodejs/node/commit/31753ec8aa)] - **tools**: add msvc /P output to .gitignore (Jiawen Geng) [#&#8203;35735](https://github.com/nodejs/node/pull/35735)
    
  • [`afb3e24cb0`](https://github.com/nodejs/node/commit/afb3e24cb0)] - **tools**: add update-npm script (Myles Borins) [#&#8203;35822](https://github.com/nodejs/node/pull/35822)
    
  • [`66da122d46`](https://github.com/nodejs/node/commit/66da122d46)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;35719](https://github.com/nodejs/node/pull/35719)
    
  • [`042d4dd71c`](https://github.com/nodejs/node/commit/042d4dd71c)] - **tools**: bump cpplint to 1.5.0 (Rich Trott) [#&#8203;35719](https://github.com/nodejs/node/pull/35719)
    
    

v15.0.1

Compare Source

Notable changes
Commits
  • [`c509485c19`](https://github.com/nodejs/node/commit/c509485c19)] - **build**: use make functions instead of echo (Antoine du Hamel) [#&#8203;35707](https://github.com/nodejs/node/pull/35707)
    
  • [`f5acc2d030`](https://github.com/nodejs/node/commit/f5acc2d030)] - **crypto**: fix regression on randomFillSync (James M Snell) [#&#8203;35723](https://github.com/nodejs/node/pull/35723)
    
  • [`595c8df48d`](https://github.com/nodejs/node/commit/595c8df48d)] - **deps**: upgrade npm to 7.0.3 (Ruy Adorno) [#&#8203;35724](https://github.com/nodejs/node/pull/35724)
    
  • [`69e7f20f2d`](https://github.com/nodejs/node/commit/69e7f20f2d)] - **deps**: V8: set correct V8 version patch number (Michaël Zasso) [#&#8203;35732](https://github.com/nodejs/node/pull/35732)
    
  • [`b78294dc00`](https://github.com/nodejs/node/commit/b78294dc00)] - **doc**: use kbd element in readline doc (Rich Trott) [#&#8203;35698](https://github.com/nodejs/node/pull/35698)
    
  • [`1efa87082b`](https://github.com/nodejs/node/commit/1efa87082b)] - **doc**: add release key for Danielle Adams (Danielle Adams) [#&#8203;35545](https://github.com/nodejs/node/pull/35545)
    
  • [`6e91d644e3`](https://github.com/nodejs/node/commit/6e91d644e3)] - **doc**: use kbd element in os doc (Rich Trott) [#&#8203;35656](https://github.com/nodejs/node/pull/35656)
    
  • [`5a48a7b6f8`](https://github.com/nodejs/node/commit/5a48a7b6f8)] - **doc**: add a statement in the documentation. (Pooja D.P) [#&#8203;35585](https://github.com/nodejs/node/pull/35585)
    
  • [`6a7a61be7c`](https://github.com/nodejs/node/commit/6a7a61be7c)] - **src**: mark/pop OpenSSL errors in NewRootCertStore (Daniel Bevenius) [#&#8203;35514](https://github.com/nodejs/node/pull/35514)
    
  • [`d54edece99`](https://github.com/nodejs/node/commit/d54edece99)] - **test**: refactor test-crypto-pbkdf2 (Tobias Nießen) [#&#8203;35693](https://github.com/nodejs/node/pull/35693)
    
    

v15.0.0

Compare Source

Notable Changes
Deprecations and Removals
  • [`a11788736a`](https://github.com/nodejs/node/commit/a11788736a)] - **(SEMVER-MAJOR)** **build**: remove --build-v8-with-gn configure option (Yang Guo) [#&#8203;27576](https://github.com/nodejs/node/pull/27576)
    
  • [`89428c7a2d`](https://github.com/nodejs/node/commit/89428c7a2d)] - **(SEMVER-MAJOR)** **build**: drop support for VS2017 (Michaël Zasso) [#&#8203;33694](https://github.com/nodejs/node/pull/33694)
    
  • [`c25cf34ac1`](https://github.com/nodejs/node/commit/c25cf34ac1)] - **(SEMVER-MAJOR)** **doc**: move DEP0018 to End-of-Life (Rich Trott) [#&#8203;35316](https://github.com/nodejs/node/pull/35316)
    
  • [`2002d90abd`](https://github.com/nodejs/node/commit/2002d90abd)] - **(SEMVER-MAJOR)** **fs**: deprecation warning on recursive rmdir (Ian Sutherland) [#&#8203;35562](https://github.com/nodejs/node/pull/35562)
    
  • [`eee522ac29`](https://github.com/nodejs/node/commit/eee522ac29)] - **(SEMVER-MAJOR)** **lib**: add EventTarget-related browser globals (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496)
    
  • [`41796ebd30`](https://github.com/nodejs/node/commit/41796ebd30)] - **(SEMVER-MAJOR)** **net**: remove long deprecated server.connections property (James M Snell) [#&#8203;33647](https://github.com/nodejs/node/pull/33647)
    
  • [`a416692e93`](https://github.com/nodejs/node/commit/a416692e93)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.memory function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`f217b2dfb0`](https://github.com/nodejs/node/commit/f217b2dfb0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.turnOffEditorMode() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`a1bcad8dc0`](https://github.com/nodejs/node/commit/a1bcad8dc0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.parseREPLKeyword() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`4ace010b53`](https://github.com/nodejs/node/commit/4ace010b53)] - **(SEMVER-MAJOR)** **repl**: remove deprecated bufferedCommand property (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`37524307fe`](https://github.com/nodejs/node/commit/37524307fe)] - **(SEMVER-MAJOR)** **repl**: remove deprecated .rli (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`a85ce885bd`](https://github.com/nodejs/node/commit/a85ce885bd)] - **(SEMVER-MAJOR)** **src**: remove deprecated node debug command (James M Snell) [#&#8203;33648](https://github.com/nodejs/node/pull/33648)
    
  • [`a8904e8eee`](https://github.com/nodejs/node/commit/a8904e8eee)] - **(SEMVER-MAJOR)** **timers**: introduce timers/promises (James M Snell) [#&#8203;33950](https://github.com/nodejs/node/pull/33950)
    
  • [`1211b9a72f`](https://github.com/nodejs/node/commit/1211b9a72f)] - **(SEMVER-MAJOR)** **util**: change default value of `maxStringLength` to 10000 (unknown) [#&#8203;32744](https://github.com/nodejs/node/pull/32744)
    
  • [`ca8f3ef2e5`](https://github.com/nodejs/node/commit/ca8f3ef2e5)] - **(SEMVER-MAJOR)** **wasi**: drop --experimental-wasm-bigint requirement (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
    
npm 7 - #​35631

Node.js 15 comes with a new major release of npm, npm 7. npm 7 comes with many new features - including npm workspaces and a new package-lock.json format. npm 7 also includes yarn.lock file support. One of the big changes in npm 7 is that peer dependencies are now installed by default.

Throw On Unhandled Rejections - #​33021

As of Node.js 15, the default mode for unhandledRejection is changed to throw (from warn). In throw mode, if an unhandledRejection hook is not set, the unhandledRejection is raised as an uncaught exception. Users that have an unhandledRejection hook should see no change in behavior, and it’s still possible to switch modes using the --unhandled-rejections=mode process flag.

QUIC - #​32379

Node.js 15 comes with experimental support QUIC, which can be enabled by compiling Node.js with the --experimental-quic configuration flag. The Node.js QUIC implementation is exposed by the core net module.

V8 8.6 - #​35415

The V8 JavaScript engine has been updated to V8 8.6 (V8 8.4 is the latest available in Node.js 14). Along with performance tweaks and improvements the V8 update also brings the following language features:

  • Promise.any() (from V8 8.5)
  • AggregateError (from V8 8.5)
  • String.prototype.replaceAll() (from V8 8.5)
  • Logical assignment operators &&=, ||=, and ??= (from V8 8.5)
Other Notable Changes
  • [`50228cf6ff`](https://github.com/nodejs/node/commit/50228cf6ff)] - **(SEMVER-MAJOR)** **assert**: add `assert/strict` alias module (ExE Boss) [#&#8203;34001](https://github.com/nodejs/node/pull/34001)
    
  • [`039cd00a9a`](https://github.com/nodejs/node/commit/039cd00a9a)] - **(SEMVER-MAJOR)** **dns**: add dns/promises alias (shisama) [#&#8203;32953](https://github.com/nodejs/node/pull/32953)
    
  • [`54b36e401d`](https://github.com/nodejs/node/commit/54b36e401d)] - **(SEMVER-MAJOR)** **fs**: reimplement read and write streams using stream.construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656)
    
  • [`f5c0e282cc`](https://github.com/nodejs/node/commit/f5c0e282cc)] - **(SEMVER-MAJOR)** **http2**: allow Host in HTTP/2 requests (Alba Mendez) [#&#8203;34664](https://github.com/nodejs/node/pull/34664)
    
  • [`eee522ac29`](https://github.com/nodejs/node/commit/eee522ac29)] - **(SEMVER-MAJOR)** **lib**: add EventTarget-related browser globals (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496)
    
  • [`a8b26d72c5`](https://github.com/nodejs/node/commit/a8b26d72c5)] - **(SEMVER-MAJOR)** **lib**: unflag AbortController (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527)
    
  • [`74ca960aac`](https://github.com/nodejs/node/commit/74ca960aac)] - **(SEMVER-MAJOR)** **lib**: initial experimental AbortController implementation (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527)
    
  • [`efefdd668d`](https://github.com/nodejs/node/commit/efefdd668d)] - **(SEMVER-MAJOR)** **net**: autoDestroy Socket (Robert Nagy) [#&#8203;31806](https://github.com/nodejs/node/pull/31806)
    
  • [`0fb91acedf`](https://github.com/nodejs/node/commit/0fb91acedf)] - **(SEMVER-MAJOR)** **src**: disallow JS execution inside FreeEnvironment (Anna Henningsen) [#&#8203;33874](https://github.com/nodejs/node/pull/33874)
    
  • [`21782277c2`](https://github.com/nodejs/node/commit/21782277c2)] - **(SEMVER-MAJOR)** **src**: use node:moduleName as builtin module filename (Michaël Zasso) [#&#8203;35498](https://github.com/nodejs/node/pull/35498)
    
  • [`fb8cc72e73`](https://github.com/nodejs/node/commit/fb8cc72e73)] - **(SEMVER-MAJOR)** **stream**: construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656)
    
  • [`705d888387`](https://github.com/nodejs/node/commit/705d888387)] - **(SEMVER-MAJOR)** **worker**: make MessageEvent class more Web-compatible (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496)
    
    
Semver-Major Commits
  • [`50228cf6ff`](https://github.com/nodejs/node/commit/50228cf6ff)] - **(SEMVER-MAJOR)** **assert**: add `assert/strict` alias module (ExE Boss) [#&#8203;34001](https://github.com/nodejs/node/pull/34001)
    
  • [`d701247165`](https://github.com/nodejs/node/commit/d701247165)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`a11788736a`](https://github.com/nodejs/node/commit/a11788736a)] - **(SEMVER-MAJOR)** **build**: remove --build-v8-with-gn configure option (Yang Guo) [#&#8203;27576](https://github.com/nodejs/node/pull/27576)
    
  • [`89428c7a2d`](https://github.com/nodejs/node/commit/89428c7a2d)] - **(SEMVER-MAJOR)** **build**: drop support for VS2017 (Michaël Zasso) [#&#8203;33694](https://github.com/nodejs/node/pull/33694)
    
  • [`dae283d96f`](https://github.com/nodejs/node/commit/dae283d96f)] - **(SEMVER-MAJOR)** **crypto**: refactoring internals, add WebCrypto (James M Snell) [#&#8203;35093](https://github.com/nodejs/node/pull/35093)
    
  • [`ba77dc8597`](https://github.com/nodejs/node/commit/ba77dc8597)] - **(SEMVER-MAJOR)** **crypto**: move node_crypto files to src/crypto (James M Snell) [#&#8203;35093](https://github.com/nodejs/node/pull/35093)
    
  • [`9378070da0`](https://github.com/nodejs/node/commit/9378070da0)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`d76abfe`](https://github.com/nodejs/node/commit/d76abfed3512) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`efee8341ad`](https://github.com/nodejs/node/commit/efee8341ad)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`717543b`](https://github.com/nodejs/node/commit/717543bbf0ef) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`b006fa8730`](https://github.com/nodejs/node/commit/b006fa8730)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`6be2f6e`](https://github.com/nodejs/node/commit/6be2f6e26e8d) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`3c23af4cb7`](https://github.com/nodejs/node/commit/3c23af4cb7)] - **(SEMVER-MAJOR)** **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`b803b3f48b`](https://github.com/nodejs/node/commit/b803b3f48b)] - **(SEMVER-MAJOR)** **deps**: fix platform-embedded-file-writer-win for ARM64 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`47cb9f14e8`](https://github.com/nodejs/node/commit/47cb9f14e8)] - **(SEMVER-MAJOR)** **deps**: update V8 postmortem metadata script (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`a1d639ba5d`](https://github.com/nodejs/node/commit/a1d639ba5d)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.6.395 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`3ddcad55fb`](https://github.com/nodejs/node/commit/3ddcad55fb)] - **(SEMVER-MAJOR)** **deps**: upgrade npm to 7.0.0 (Myles Borins) [#&#8203;35631](https://github.com/nodejs/node/pull/35631)
    
  • [`2e54524955`](https://github.com/nodejs/node/commit/2e54524955)] - **(SEMVER-MAJOR)** **deps**: update npm to 7.0.0-rc.3 (Myles Borins) [#&#8203;35474](https://github.com/nodejs/node/pull/35474)
    
  • [`e983b1cece`](https://github.com/nodejs/node/commit/e983b1cece)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0d6debc`](https://github.com/nodejs/node/commit/0d6debcc5f08) (Gus Caplan) [#&#8203;33600](https://github.com/nodejs/node/pull/33600)
    
  • [`039cd00a9a`](https://github.com/nodejs/node/commit/039cd00a9a)] - **(SEMVER-MAJOR)** **dns**: add dns/promises alias (shisama) [#&#8203;32953](https://github.com/nodejs/node/pull/32953)
    
  • [`c25cf34ac1`](https://github.com/nodejs/node/commit/c25cf34ac1)] - **(SEMVER-MAJOR)** **doc**: move DEP0018 to End-of-Life (Rich Trott) [#&#8203;35316](https://github.com/nodejs/node/pull/35316)
    
  • [`8bf37ee496`](https://github.com/nodejs/node/commit/8bf37ee496)] - **(SEMVER-MAJOR)** **doc**: update support macos version for 15.x (Ash Cripps) [#&#8203;35022](https://github.com/nodejs/node/pull/35022)
    
  • [`2002d90abd`](https://github.com/nodejs/node/commit/2002d90abd)] - **(SEMVER-MAJOR)** **fs**: deprecation warning on recursive rmdir (Ian Sutherland) [#&#8203;35562](https://github.com/nodejs/node/pull/35562)
    
  • [`54b36e401d`](https://github.com/nodejs/node/commit/54b36e401d)] - **(SEMVER-MAJOR)** **fs**: reimplement read and write streams using stream.construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656)
    
  • [`32b641e528`](https://github.com/nodejs/node/commit/32b641e528)] - **(SEMVER-MAJOR)** **http**: fixed socket.setEncoding fatal error (iskore) [#&#8203;33405](https://github.com/nodejs/node/pull/33405)
    
  • [`8a6fab02ad`](https://github.com/nodejs/node/commit/8a6fab02ad)] - **(SEMVER-MAJOR)** **http**: emit 'error' on aborted server request (Robert Nagy) [#&#8203;33172](https://github.com/nodejs/node/pull/33172)
    
  • [`d005f490a8`](https://github.com/nodejs/node/commit/d005f490a8)] - **(SEMVER-MAJOR)** **http**: cleanup end argument handling (Robert Nagy) [#&#8203;31818](https://github.com/nodejs/node/pull/31818)
    
  • [`f5c0e282cc`](https://github.com/nodejs/node/commit/f5c0e282cc)] - **(SEMVER-MAJOR)** **http2**: allow Host in HTTP/2 requests (Alba Mendez) [#&#8203;34664](https://github.com/nodejs/node/pull/34664)
    
  • [`1e4187fcf4`](https://github.com/nodejs/node/commit/1e4187fcf4)] - **(SEMVER-MAJOR)** **http2**: add `invalidheaders` test (Pranshu Srivastava) [#&#8203;33161](https://github.com/nodejs/node/pull/33161)
    
  • [`d79c330186`](https://github.com/nodejs/node/commit/d79c330186)] - **(SEMVER-MAJOR)** **http2**: refactor state code validation for the http2Stream class (rickyes) [#&#8203;33535](https://github.com/nodejs/node/pull/33535)
    
  • [`df31f71f1e`](https://github.com/nodejs/node/commit/df31f71f1e)] - **(SEMVER-MAJOR)** **http2**: header field valid checks (Pranshu Srivastava) [#&#8203;33193](https://github.com/nodejs/node/pull/33193)
    
  • [`1428db8a1f`](https://github.com/nodejs/node/commit/1428db8a1f)] - **(SEMVER-MAJOR)** **lib**: refactor Socket.\_getpeername and Socket.\_getsockname (himself65) [#&#8203;32969](https://github.com/nodejs/node/pull/32969)
    
  • [`eee522ac29`](https://github.com/nodejs/node/commit/eee522ac29)] - **(SEMVER-MAJOR)** **lib**: add EventTarget-related browser globals (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496)
    
  • [`c66e6471e7`](https://github.com/nodejs/node/commit/c66e6471e7)] - **(SEMVER-MAJOR)** **lib**: remove ERR_INVALID_OPT_VALUE and ERR_INVALID_OPT_VALUE_ENCODING (Denys Otrishko) [#&#8203;34682](https://github.com/nodejs/node/pull/34682)
    
  • [`b546a2b469`](https://github.com/nodejs/node/commit/b546a2b469)] - **(SEMVER-MAJOR)** **lib**: handle one of args case in ERR_MISSING_ARGS (Denys Otrishko) [#&#8203;34022](https://github.com/nodejs/node/pull/34022)
    
  • [`a86a295fd7`](https://github.com/nodejs/node/commit/a86a295fd7)] - **(SEMVER-MAJOR)** **lib**: remove NodeError from the prototype of errors with code (Michaël Zasso) [#&#8203;33857](https://github.com/nodejs/node/pull/33857)
    
  • [`a8b26d72c5`](https://github.com/nodejs/node/commit/a8b26d72c5)] - **(SEMVER-MAJOR)** **lib**: unflag AbortController (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527)
    
  • [`74ca960aac`](https://github.com/nodejs/node/commit/74ca960aac)] - **(SEMVER-MAJOR)** **lib**: initial experimental AbortController implementation (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527)
    
  • [`78ca61e2cf`](https://github.com/nodejs/node/commit/78ca61e2cf)] - **(SEMVER-MAJOR)** **net**: check args in net.connect() and socket.connect() calls (Denys Otrishko) [#&#8203;34022](https://github.com/nodejs/node/pull/34022)
    
  • [`41796ebd30`](https://github.com/nodejs/node/commit/41796ebd30)] - **(SEMVER-MAJOR)** **net**: remove long deprecated server.connections property (James M Snell) [#&#8203;33647](https://github.com/nodejs/node/pull/33647)
    
  • [`efefdd668d`](https://github.com/nodejs/node/commit/efefdd668d)] - **(SEMVER-MAJOR)** **net**: autoDestroy Socket (Robert Nagy) [#&#8203;31806](https://github.com/nodejs/node/pull/31806)
    
  • [`6cfba9f7f6`](https://github.com/nodejs/node/commit/6cfba9f7f6)] - **(SEMVER-MAJOR)** **process**: update v8 fast api calls usage (Maya Lekova) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`3b10f7f933`](https://github.com/nodejs/node/commit/3b10f7f933)] - **(SEMVER-MAJOR)** **process**: change default --unhandled-rejections=throw (Dan Fabulich) [#&#8203;33021](https://github.com/nodejs/node/pull/33021)
    
  • [`d8eef83757`](https://github.com/nodejs/node/commit/d8eef83757)] - **(SEMVER-MAJOR)** **process**: use v8 fast api calls for hrtime (Gus Caplan) [#&#8203;33600](https://github.com/nodejs/node/pull/33600)
    
  • [`49745cdef0`](https://github.com/nodejs/node/commit/49745cdef0)] - **(SEMVER-MAJOR)** **process**: delay throwing an error using `throwDeprecation` (Ruben Bridgewater) [#&#8203;32312](https://github.com/nodejs/node/pull/32312)
    
  • [`a416692e93`](https://github.com/nodejs/node/commit/a416692e93)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.memory function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`f217b2dfb0`](https://github.com/nodejs/node/commit/f217b2dfb0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.turnOffEditorMode() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`a1bcad8dc0`](https://github.com/nodejs/node/commit/a1bcad8dc0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.parseREPLKeyword() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`4ace010b53`](https://github.com/nodejs/node/commit/4ace010b53)] - **(SEMVER-MAJOR)** **repl**: remove deprecated bufferedCommand property (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`37524307fe`](https://github.com/nodejs/node/commit/37524307fe)] - **(SEMVER-MAJOR)** **repl**: remove deprecated .rli (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286)
    
  • [`b65e5aeaa7`](https://github.com/nodejs/node/commit/b65e5aeaa7)] - **(SEMVER-MAJOR)** **src**: implement NodePlatform::PostJob (Clemens Backes) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`b1e8e0e604`](https://github.com/nodejs/node/commit/b1e8e0e604)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 88 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`eeb6b473fd`](https://github.com/nodejs/node/commit/eeb6b473fd)] - **(SEMVER-MAJOR)** **src**: error reporting on CPUUsage (Yash Ladha) [#&#8203;34762](https://github.com/nodejs/node/pull/34762)
    
  • [`21782277c2`](https://github.com/nodejs/node/commit/21782277c2)] - **(SEMVER-MAJOR)** **src**: use node:moduleName as builtin module filename (Michaël Zasso) [#&#8203;35498](https://github.com/nodejs/node/pull/35498)
    
  • [`05771279af`](https://github.com/nodejs/node/commit/05771279af)] - **(SEMVER-MAJOR)** **src**: enable wasm trap handler on windows (Gus Caplan) [#&#8203;35033](https://github.com/nodejs/node/pull/35033)
    
  • [`b7cf823410`](https://github.com/nodejs/node/commit/b7cf823410)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 86 (Michaël Zasso) [#&#8203;33579](https://github.com/nodejs/node/pull/33579)
    
  • [`0fb91acedf`](https://github.com/nodejs/node/commit/0fb91acedf)] - **(SEMVER-MAJOR)** **src**: disallow JS execution inside FreeEnvironment (Anna Henningsen) [#&#8203;33874](https://github.com/nodejs/node/pull/33874)
    
  • [`53fb2b6b41`](https://github.com/nodejs/node/commit/53fb2b6b41)] - **(SEMVER-MAJOR)** **src**: remove \_third_party_main support (Anna Henningsen) [#&#8203;33971](https://github.com/nodejs/node/pull/33971)
    
  • [`a85ce885bd`](https://github.com/nodejs/node/commit/a85ce885bd)] - **(SEMVER-MAJOR)** **src**: remove deprecated node debug command (James M Snell) [#&#8203;33648](https://github.com/nodejs/node/pull/33648)
    
  • [`ac3714637e`](https://github.com/nodejs/node/commit/ac3714637e)] - **(SEMVER-MAJOR)** **src**: remove unused CancelPendingDelayedTasks (Anna Henningsen) [#&#8203;32859](https://github.com/nodejs/node/pull/32859)
    
  • [`a65218f5e8`](https://github.com/nodejs/node/commit/a65218f5e8)] - **(SEMVER-MAJOR)** **stream**: try to wait for flush to complete before 'finish' (Robert Nagy) [#&#8203;34314](https://github.com/nodejs/node/pull/34314)
    
  • [`4e3f6f355b`](https://github.com/nodejs/node/commit/4e3f6f355b)] - **(SEMVER-MAJOR)** **stream**: cleanup and fix Readable.wrap (Robert Nagy) [#&#8203;34204](https://github.com/nodejs/node/pull/34204)
    
  • [`527e2147af`](https://github.com/nodejs/node/commit/527e2147af)] - **(SEMVER-MAJOR)** **stream**: add promises version to utility functions (rickyes) [#&#8203;33991](https://github.com/nodejs/node/pull/33991)
    
  • [`c7e55c6b72`](https://github.com/nodejs/node/commit/c7e55c6b72)] - **(SEMVER-MAJOR)** **stream**: fix writable.end callback behavior (Robert Nagy) [#&#8203;34101](https://github.com/nodejs/node/pull/34101)
    
  • [`fb8cc72e73`](https://github.com/nodejs/node/commit/fb8cc72e73)] - **(SEMVER-MAJOR)** **stream**: construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656)
    
  • [`4bc7025309`](https://github.com/nodejs/node/commit/4bc7025309)] - **(SEMVER-MAJOR)** **stream**: write should throw on unknown encoding (Robert Nagy) [#&#8203;33075](https://github.com/nodejs/node/pull/33075)
    
  • [`ea87809bb6`](https://github.com/nodejs/node/commit/ea87809bb6)] - **(SEMVER-MAJOR)** **stream**: fix \_final and 'prefinish' timing (Robert Nagy) [#&#8203;32780](https://github.com/nodejs/node/pull/32780)
    
  • [`0bd5595509`](https://github.com/nodejs/node/commit/0bd5595509)] - **(SEMVER-MAJOR)** **stream**: simplify Transform stream implementation (Robert Nagy) [#&#8203;32763](https://github.com/nodejs/node/pull/32763)
    
  • [`8f86986985`](https://github.com/nodejs/node/commit/8f86986985)] - **(SEMVER-MAJOR)** **stream**: use callback to properly propagate error (Robert Nagy) [#&#8203;29179](https://github.com/nodejs/node/pull/29179)
    
  • [`94dd7b9f94`](https://github.com/nodejs/node/commit/94dd7b9f94)] - **(SEMVER-MAJOR)** **test**: update tests after increasing typed array size to 4GB (Kim-Anh Tran) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`d9e98df01b`](https://github.com/nodejs/node/commit/d9e98df01b)] - **(SEMVER-MAJOR)** **test**: fix tests for npm 7.0.0 (Myles Borins) [#&#8203;35631](https://github.com/nodejs/node/pull/35631)
    
  • [`c87641aa97`](https://github.com/nodejs/node/commit/c87641aa97)] - **(SEMVER-MAJOR)** **test**: fix test suite to work with npm 7 (Myles Borins) [#&#8203;35474](https://github.com/nodejs/node/pull/35474)
    
  • [`eb9d7a437e`](https://github.com/nodejs/node/commit/eb9d7a437e)] - **(SEMVER-MAJOR)** **test**: update WPT harness and tests (Michaël Zasso) [#&#8203;33770](https://github.com/nodejs/node/pull/33770)
    
  • [`a8904e8eee`](https://github.com/nodejs/node/commit/a8904e8eee)] - **(SEMVER-MAJOR)** **timers**: introduce timers/promises (James M Snell) [#&#8203;33950](https://github.com/nodejs/node/pull/33950)
    
  • [`c55f661551`](https://github.com/nodejs/node/commit/c55f661551)] - **(SEMVER-MAJOR)** **tools**: disable x86 safe exception handlers in V8 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`80e8aec4a5`](https://github.com/nodejs/node/commit/80e8aec4a5)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 8.6 (Ujjwal Sharma) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`faeb9607c6`](https://github.com/nodejs/node/commit/faeb9607c6)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 8.5 (Ujjwal Sharma) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`bb62f4ad9e`](https://github.com/nodejs/node/commit/bb62f4ad9e)] - **(SEMVER-MAJOR)** **url**: file URL path normalization (Daijiro Wachi) [#&#8203;35477](https://github.com/nodejs/node/pull/35477)
    
  • [`69ef4c2375`](https://github.com/nodejs/node/commit/69ef4c2375)] - **(SEMVER-MAJOR)** **url**: verify domain is not empty after "ToASCII" (Michaël Zasso) [#&#8203;33770](https://github.com/nodejs/node/pull/33770)
    
  • [`4831278a16`](https://github.com/nodejs/node/commit/4831278a16)] - **(SEMVER-MAJOR)** **url**: remove U+0000 case in the fragment state (Michaël Zasso) [#&#8203;33770](https://github.com/nodejs/node/pull/33770)
    
  • [`0d08d5ae7c`](https://github.com/nodejs/node/commit/0d08d5ae7c)] - **(SEMVER-MAJOR)** **url**: remove gopher from special schemes (Michaël Zasso) [#&#8203;33325](https://github.com/nodejs/node/pull/33325)
    
  • [`9be51ee9a1`](https://github.com/nodejs/node/commit/9be51ee9a1)] - **(SEMVER-MAJOR)** **url**: forbid lt and gt in url host code point (Yash Ladha) [#&#8203;33328](https://github.com/nodejs/node/pull/33328)
    
  • [`1211b9a72f`](https://github.com/nodejs/node/commit/1211b9a72f)] - **(SEMVER-MAJOR)** **util**: change default value of `maxStringLength` to 10000 (unknown) [#&#8203;32744](https://github.com/nodejs/node/pull/32744)
    
  • [`ca8f3ef2e5`](https://github.com/nodejs/node/commit/ca8f3ef2e5)] - **(SEMVER-MAJOR)** **wasi**: drop --experimental-wasm-bigint requirement (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415)
    
  • [`abd8cdfc4e`](https://github.com/nodejs/node/commit/abd8cdfc4e)] - **(SEMVER-MAJOR)** **win, child_process**: sanitize env variables (Bartosz Sosnowski) [#&#8203;35210](https://github.com/nodejs/node/pull/35210)
    
  • [`705d888387`](https://github.com/nodejs/node/commit/705d888387)] - **(SEMVER-MAJOR)** **worker**: make MessageEvent class more Web-compatible (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496)
    
  • [`7603c7e50c`](https://github.com/nodejs/node/commit/7603c7e50c)] - **(SEMVER-MAJOR)** **worker**: set trackUnmanagedFds to true by default (Anna Henningsen) [#&#8203;34394](https://github.com/nodejs/node/pull/34394)
    
  • [`5ef5116311`](https://github.com/nodejs/node/commit/5ef5116311)] - **(SEMVER-MAJOR)** **worker**: rename error code to be more accurate (Anna Henningsen) [#&#8203;33872](https://github.com/nodejs/node/pull/33872)
    
    
Semver-Minor Commits
  • [`1d5fa88eb8`](https://github.com/nodejs/node/commit/1d5fa88eb8)] - **(SEMVER-MINOR)** **cli**: add --node-memory-debug option (Anna Henningsen) [#&#8203;35537](https://github.com/nodejs/node/pull/35537)
    
  • [`095be6a01f`](https://github.com/nodejs/node/commit/095be6a01f)] - **(SEMVER-MINOR)** **crypto**: add getCipherInfo method (James M Snell) [#&#8203;35368](https://github.com/nodejs/node/pull/35368)
    
  • [`df1023bb22`](https://github.com/nodejs/node/commit/df1023bb22)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with on (James M Snell) [#&#8203;34912](https://github.com/nodejs/node/pull/34912)
    
  • [`883fc779b6`](https://github.com/nodejs/node/commit/883fc779b6)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with once (James M Snell) [#&#8203;34911](https://github.com/nodejs/node/pull/34911)
    
  • [`e876c0c308`](https://github.com/nodejs/node/commit/e876c0c308)] - **(SEMVER-MINOR)** **http2**: add support for sensitive headers (Anna Henningsen) [#&#8203;34145](https://github.com/nodejs/node/pull/34145)
    
  • [`6f34498148`](https://github.com/nodejs/node/commit/6f34498148)] - **(SEMVER-MINOR)** **net**: add support for resolving DNS CAA records (Danny Sonnenschein) [#&#8203;35466](https://github.com/nodejs/node/pull/35466)
    
  • [`37a8179673`](https://github.com/nodejs/node/commit/37a8179673)] - **(SEMVER-MINOR)** **net**: make blocklist family case insensitive (James M Snell) [#&#8203;34864](https://github.com/nodejs/node/pull/34864)
    
  • [`1f9b20b637`](https://github.com/nodejs/node/commit/1f9b20b637)] - **(SEMVER-MINOR)** **net**: introduce net.BlockList (James M Snell) [#&#8203;34625](https://github.com/nodejs/node/pull/34625)
    
  • [`278d38f4cf`](https://github.com/nodejs/node/commit/278d38f4cf)] - **(SEMVER-MINOR)** **src**: add maybe versions of EmitExit and EmitBeforeExit (Anna Henningsen) [#&#8203;35486](https://github.com/nodejs/node/pull/35486)
    
  • [`2310f679a1`](https://github.com/nodejs/node/commit/2310f679a1)] - **(SEMVER-MINOR)** **src**: move node_binding to modern THROW_ERR\* (James M Snell) [#&#8203;35469](https://github.com/nodejs/node/pull/35469)
    
  • [`744a284ccc`](https://github.com/nodejs/node/commit/744a284ccc)] - **(SEMVER-MINOR)** **stream**: support async for stream impl functions (James M Snell) [#&#8203;34416](https://github.com/nodejs/node/pull/34416)
    
  • [`bfbdc84738`](https://github.com/nodejs/node/commit/bfbdc84738)] - **(SEMVER-MINOR)** **timers**: allow promisified timeouts/immediates to be canceled (James M Snell) [#&#8203;33833](https://github.com/nodejs/node/pull/33833)
    
  • [`a8971f87d3`](https://github.com/nodejs/node/commit/a8971f87d3)] - **(SEMVER-MINOR)** **url**: support non-special URLs (Daijiro Wachi) [#&#8203;34925](https://github.com/nodejs/node/pull/34925)
    
    
Semver-Patch Commits
  • [`d10c59fc60`](https://github.com/nodejs/node/commit/d10c59fc60)] - **benchmark,test**: remove output from readable-async-iterator benchmark (Rich Trott) [#&#8203;34411](https://github.com/nodejs/node/pull/34411)
    
  • [`8a12e9994f`](https://github.com/nodejs/node/commit/8a12e9994f)] - **bootstrap**: use file URL instead of relative url (Daijiro Wachi) [#&#8203;35622](https://github.com/nodejs/node/pull/35622)
    
  • [`f8bde7ce06`](https://github.com/nodejs/node/commit/f8bde7ce06)] - **bootstrap**: build fast APIs in pre-execution (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`b18651bcd2`](https://github.com/nodejs/node/commit/b18651bcd2)] - **build**: do not pass mode option to test-v8 command (Michaël Zasso) [#&#8203;35705](https://github.com/nodejs/node/pull/35705)
    
  • [`bb2945ed6b`](https://github.com/nodejs/node/commit/bb2945ed6b)] - **build**: add GitHub Action for code coverage (Benjamin Coe) [#&#8203;35653](https://github.com/nodejs/node/pull/35653)
    
  • [`cfbbeea4a1`](https://github.com/nodejs/node/commit/cfbbeea4a1)] - **build**: use GITHUB_ENV file to set env variables (Michaël Zasso) [#&#8203;35638](https://github.com/nodejs/node/pull/35638)
    
  • [`8a93b371a3`](https://github.com/nodejs/node/commit/8a93b371a3)] - **build**: do not install jq in workflows (Michaël Zasso) [#&#8203;35638](https://github.com/nodejs/node/pull/35638)
    
  • [`ccbd1d5efa`](https://github.com/nodejs/node/commit/ccbd1d5efa)] - **build**: add quic to github action (gengjiawen) [#&#8203;34336](https://github.com/nodejs/node/pull/34336)
    
  • [`f4f191bbc2`](https://github.com/nodejs/node/commit/f4f191bbc2)] - **build**: define NODE_EXPERIMENTAL_QUIC in mkcodecache and node_mksnapshot (Joyee Cheung) [#&#8203;34454](https://github.com/nodejs/node/pull/34454)
    
  • [`5b2c263ba8`](https://github.com/nodejs/node/commit/5b2c263ba8)] - **deps**: fix typo in zlib.gyp that break arm-fpu-neon build (lucasg) [#&#8203;35659](https://github.com/nodejs/node/pull/35659)
    
  • [`5b9593f727`](https://github.com/nodejs/node/commit/5b9593f727)] - **deps**: upgrade npm to 7.0.2 (Myles Borins) [#&#8203;35667](https://github.com/nodejs/node/pull/35667)
    
  • [`dabc6ddddc`](https://github.com/nodejs/node/commit/dabc6ddddc)] - **deps**: upgrade npm to 7.0.0-rc.4 (Myles Borins) [#&#8203;35576](https://github.com/nodejs/node/pull/35576)
    
  • [`757bac6711`](https://github.com/nodejs/node/commit/757bac6711)] - **deps**: update nghttp3 (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752)
    
  • [`c788be2e6e`](https://github.com/nodejs/node/commit/c788be2e6e)] - **deps**: update ngtcp2 (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752)
    
  • [`7816e5f7b9`](https://github.com/nodejs/node/commit/7816e5f7b9)] - **deps**: fix indenting of sources in ngtcp2.gyp (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`f5343d1b40`](https://github.com/nodejs/node/commit/f5343d1b40)] - **deps**: re-enable OPENSSL_NO_QUIC guards (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`9de95f494e`](https://github.com/nodejs/node/commit/9de95f494e)] - **deps**: temporary fixup for ngtcp2 to build on windows (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`ec7ad1d0ec`](https://github.com/nodejs/node/commit/ec7ad1d0ec)] - **deps**: cherry-pick akamai/openssl/commit/bf4b08ecfbb7a26ca4b0b9ecaee3b31d18d7bda9 (Tatsuhiro Tsujikawa) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`c3d85b7637`](https://github.com/nodejs/node/commit/c3d85b7637)] - **deps**: cherry-pick akamai/openssl/commit/a5a08cb8050bb69120e833456e355f482e392456 (Benjamin Kaduk) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`bad1a150ea`](https://github.com/nodejs/node/commit/bad1a150ea)] - **deps**: cherry-pick akamai/openssl/commit/d5a13ca6e29f3ff85c731770ab0ee2f2487bf8b3 (Benjamin Kaduk) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`74cbfd3f36`](https://github.com/nodejs/node/commit/74cbfd3f36)] - **deps**: cherry-pick akamai/openssl/commit/a6282c566d88db11300c82abc3c84a4e2e9ea568 (Benjamin Kaduk) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`8a9763a8ea`](https://github.com/nodejs/node/commit/8a9763a8ea)] - **deps**: update nghttp3 (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`6b27d07779`](https://github.com/nodejs/node/commit/6b27d07779)] - **deps**: update ngtcp2 (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`a041723774`](https://github.com/nodejs/node/commit/a041723774)] - **deps**: fix indentation for sources in nghttp3.gyp (Daniel Bevenius) [#&#8203;33942](https://github.com/nodejs/node/pull/33942)
    
  • [`a0cbd676e7`](https://github.com/nodejs/node/commit/a0cbd676e7)] - **deps**: add defines to nghttp3/ngtcp2 gyp configs (Daniel Bevenius) [#&#8203;33942](https://github.com/nodejs/node/pull/33942)
    
  • [`bccb514936`](https://github.com/nodejs/node/commit/bccb514936)] - **deps**: maintaining ngtcp2 and nghttp3 (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379)
    
  • [`834fa8f23f`](https://github.com/nodejs/node/commit/834fa8f23f)] - **deps**: add ngtcp2 and nghttp3 (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379)
    
  • [`f96b981528`](https://github.com/nodejs/node/commit/f96b981528)] - **deps**: details for updating openssl quic support (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379)
    
  • [`98c8498552`](https://github.com/nodejs/node/commit/98c8498552)] - **deps**: update archs files for OpenSSL-1.1.0 (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379)
    
  • [`2c549e505e`](https://github.com/nodejs/node/commit/2c549e505e)] - **deps**: add support for BoringSSL QUIC APIs (Todd Short) [#&#8203;32379](https://github.com/nodejs/node/pull/32379)
    
  • [`1103b15af6`](https://github.com/nodejs/node/commit/1103b15af6)] - **doc**: fix YAML lint error on master (Rich Trott) [#&#8203;35709](https://github.com/nodejs/node/pull/35709)
    
  • [`7798e59e98`](https://github.com/nodejs/node/commit/7798e59e98)] - **doc**: upgrade stability status of report API (Gireesh Punathil) [#&#8203;35654](https://github.com/nodejs/node/pull/35654)
    
  • [`ce03a182cf`](https://github.com/nodejs/node/commit/ce03a182cf)] - **doc**: clarify experimental API elements in vm.md (Rich Trott) [#&#8203;35594](https://github.com/nodejs/node/pull/35594)
    
  • [`89defff3b9`](https://github.com/nodejs/node/commit/89defff3b9)] - **doc**: correct order of metadata for deprecation (Rich Trott) [#&#8203;35668](https://github.com/nodejs/node/pull/35668)
    
  • [`ee85eb9f8a`](https://github.com/nodejs/node/commit/ee85eb9f8a)] - **doc**: importModuleDynamically gets Script, not Module (Simen Bekkhus) [#&#8203;35593](https://github.com/nodejs/node/pull/35593)
    
  • [`9e5a27a9d3`](https://github.com/nodejs/node/commit/9e5a27a9d3)] - **doc**: fix EventEmitter examples (Sourav Shaw) [#&#8203;33513](https://github.com/nodejs/node/pull/33513)
    
  • [`2c2c87e291`](https://github.com/nodejs/node/commit/2c2c87e291)] - **doc**: fix stability indicator in webcrypto doc (Rich Trott) [#&#8203;35672](https://github.com/nodejs/node/pull/35672)
    
  • [`f59d4e05a2`](https://github.com/nodejs/node/commit/f59d4e05a2)] - **doc**: add example code for process.getgroups() (Pooja D.P) [#&#8203;35625](https://github.com/nodejs/node/pull/35625)
    
  • [`8a3808dc37`](https://github.com/nodejs/node/commit/8a3808dc37)] - **doc**: use kbd element in tty doc (Rich Trott) [#&#8203;35613](https://github.com/nodejs/node/pull/35613)
    
  • [`4079bfd462`](https://github.com/nodejs/node/commit/4079bfd462)] - **doc**: Remove reference to io.js (Hussaina Begum Nandyala) [#&#8203;35618](https://github.com/nodejs/node/pull/35618)
    
  • [`e6d5af3c95`](https://github.com/nodejs/node/commit/e6d5af3c95)] - **doc**: fix typos in quic.md (Luigi Pinca) [#&#8203;35444](https://github.com/nodejs/node/pull/35444)
    
  • [`524123fbf0`](https://github.com/nodejs/node/commit/524123fbf0)] - **doc**: update releaser in v12.18.4 changelog (Beth Griggs) [#&#8203;35217](https://github.com/nodejs/node/pull/35217)
    
  • [`ccdd1bd82a`](https://github.com/nodejs/node/commit/ccdd1bd82a)] - **doc**: fix incorrectly marked Buffer in quic.md (Rich Trott) [#&#8203;35075](https://github.com/nodejs/node/pull/35075)
    
  • [`cc754f2985`](https://github.com/nodejs/node/commit/cc754f2985)] - **doc**: make AbortSignal text consistent in events.md (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005)
    
  • [`f9c362ff6c`](https://github.com/nodejs/node/commit/f9c362ff6c)] - **doc**: revise AbortSignal text and example using events.once() (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005)
    
  • [`7aeff6b8c8`](https://github.com/nodejs/node/commit/7aeff6b8c8)] - **doc**: claim ABI version for Electron v12 (Shelley Vohr) [#&#8203;34816](https://github.com/nodejs/node/pull/34816)
    
  • [`7a1220a1d7`](https://github.com/nodejs/node/commit/7a1220a1d7)] - **doc**: fix headings in quic.md (Anna Henningsen) [#&#8203;34717](https://github.com/nodejs/node/pull/34717)
    
  • [`d5c7aec3cb`](https://github.com/nodejs/node/commit/d5c7aec3cb)] - **doc**: use \_can\_ to describe actions in quic.md (Rich Trott) [#&#8203;34613](https://github.com/nodejs/node/pull/34613)
    
  • [`319c275b26`](https://github.com/nodejs/node/commit/319c275b26)] - **doc**: use \_can\_ to describe actions in quic.md (Rich Trott) [#&#8203;34613](https://github.com/nodejs/node/pull/34613)
    
  • [`2c30920886`](https://github.com/nodejs/node/commit/2c30920886)] - **doc**: use sentence-case in quic.md headers (Rich Trott) [#&#8203;34453](https://github.com/nodejs/node/pull/34453)
    
  • [`8ada27510d`](https://github.com/nodejs/node/commit/8ada27510d)] - **doc**: add missing backticks in timers.md (vsemozhetbyt) [#&#8203;34030](https://github.com/nodejs/node/pull/34030)
    
  • [`862d005e60`](https://github.com/nodejs/node/commit/862d005e60)] - **doc**: make globals Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777)
    
  • [`85dbd17bde`](https://github.com/nodejs/node/commit/85dbd17bde)] - **doc**: make perf_hooks Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777)
    
  • [`2e49010bc8`](https://github.com/nodejs/node/commit/2e49010bc8)] - **doc**: make events Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777)
    
  • [`680fb8fc62`](https://github.com/nodejs/node/commit/680fb8fc62)] - **doc**: fix deprecation "End-of-Life" capitalization (Colin Ihrig) [#&#8203;33691](https://github.com/nodejs/node/pull/33691)
    
  • [`458677f5ef`](https://github.com/nodejs/node/commit/458677f5ef)] - **errors**: print original exception context (Benjamin Coe) [#&#8203;33491](https://github.com/nodejs/node/pull/33491)
    
  • [`b1831fed3a`](https://github.com/nodejs/node/commit/b1831fed3a)] - **events**: simplify event target agnostic logic in on and once (Denys Otrishko) [#&#8203;34997](https://github.com/nodejs/node/pull/34997)
    
  • [`7f25fe8b67`](https://github.com/nodejs/node/commit/7f25fe8b67)] - **fs**: remove unused assignment (Rich Trott) [#&#8203;35642](https://github.com/nodejs/node/pull/35642)
    
  • [`2c4f30deea`](https://github.com/nodejs/node/commit/2c4f30deea)] - **fs**: fix when path is buffer on fs.symlinkSync (himself65) [#&#8203;34540](https://github.com/nodejs/node/pull/34540)
    
  • [`db0e991d52`](https://github.com/nodejs/node/commit/db0e991d52)] - **fs**: remove custom Buffer pool for streams (Robert Nagy) [#&#8203;33981](https://github.com/nodejs/node/pull/33981)
    
  • [`51a2df4439`](https://github.com/nodejs/node/commit/51a2df4439)] - **fs**: document why isPerformingIO is required (Robert Nagy) [#&#8203;33982](https://github.com/nodejs/node/pull/33982)
    
  • [`999e7d7b44`](https://github.com/nodejs/node/commit/999e7d7b44)] - **gyp,build**: consistent shared library location (Rod Vagg) [#&#8203;35635](https://github.com/nodejs/node/pull/35635)
    
  • [`30cc54275d`](https://github.com/nodejs/node/commit/30cc54275d)] - **http**: don't emit error after close (Robert Nagy) [#&#8203;33654](https://github.com/nodejs/node/pull/33654)
    
  • [`ddff2b2b22`](https://github.com/nodejs/node/commit/ddff2b2b22)] - **lib**: honor setUncaughtExceptionCaptureCallback (Gireesh Punathil) [#&#8203;35595](https://github.com/nodejs/node/pull/35595)
    
  • [`a8806535d9`](https://github.com/nodejs/node/commit/a8806535d9)] - **lib**: use Object static properties from primordials (Michaël Zasso) [#&#8203;35380](https://github.com/nodejs/node/pull/35380)
    
  • [`11f1ad939f`](https://github.com/nodejs/node/commit/11f1ad939f)] - **module**: only try to enrich CJS syntax errors (Michaël Zasso) [#&#8203;35691](https://github.com/nodejs/node/pull/35691)
    
  • [`aaf225a2a0`](https://github.com/nodejs/node/commit/aaf225a2a0)] - **module**: add setter for module.parent (Antoine du Hamel) [#&#8203;35522](https://github.com/nodejs/node/pull/35522)
    
  • [`109a296e2a`](https://github.com/nodejs/node/commit/109a296e2a)] - **quic**: fix typo in code comment (Ikko Ashimine) [#&#8203;35308](https://github.com/nodejs/node/pull/35308)
    
  • [`186230527b`](https://github.com/nodejs/node/commit/186230527b)] - **quic**: fix error message on invalid connection ID (Rich Trott) [#&#8203;35026](https://github.com/nodejs/node/pull/35026)
    
  • [`e5116b304f`](https://github.com/nodejs/node/commit/e5116b304f)] - **quic**: remove unused function arguments (Rich Trott) [#&#8203;35010](https://github.com/nodejs/node/pull/35010)
    
  • [`449f73e05f`](https://github.com/nodejs/node/commit/449f73e05f)] - **quic**: remove undefined variable (Rich Trott) [#&#8203;35007](https://github.com/nodejs/node/pull/35007)
    
  • [`44e6a6af67`](https://github.com/nodejs/node/commit/44e6a6af67)] - **quic**: use qlog fin flag (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752)
    
  • [`2a80737278`](https://github.com/nodejs/node/commit/2a80737278)] - **quic**: fixups after ngtcp2/nghttp3 update (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752)
    
  • [`c855c3e8ca`](https://github.com/nodejs/node/commit/c855c3e8ca)] - **quic**: use net.BlockList for limiting access to a QuicSocket (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`bfc35354c1`](https://github.com/nodejs/node/commit/bfc35354c1)] - **quic**: consolidate stats collecting in QuicSession (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`94aa291348`](https://github.com/nodejs/node/commit/94aa291348)] - **quic**: clarify TODO statements (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`19e712b9b2`](https://github.com/nodejs/node/commit/19e712b9b2)] - **quic**: resolve InitializeSecureContext TODO comment (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`240592228b`](https://github.com/nodejs/node/commit/240592228b)] - **quic**: fixup session ticket app data todo comments (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`c17eaa3f3f`](https://github.com/nodejs/node/commit/c17eaa3f3f)] - **quic**: add natRebinding argument to docs (James M Snell) [#&#8203;34669](https://github.com/nodejs/node/pull/34669)
    
  • [`442968c92a`](https://github.com/nodejs/node/commit/442968c92a)] - **quic**: check setSocket natRebinding argument, extend test (James M Snell) [#&#8203;34669](https://github.com/nodejs/node/pull/34669)
    
  • [`10d5047a4f`](https://github.com/nodejs/node/commit/10d5047a4f)] - **quic**: fixup set_socket, fix skipped test (James M Snell) [#&#8203;34669](https://github.com/nodejs/node/pull/34669)
    
  • [`344c5e4e50`](https://github.com/nodejs/node/commit/344c5e4e50)] - **quic**: limit push check to http/3 (James M Snell) [#&#8203;34655](https://github.com/nodejs/node/pull/34655)
    
  • [`34165f03aa`](https://github.com/nodejs/node/commit/34165f03aa)] - **quic**: resolve some minor TODOs (James M Snell) [#&#8203;34655](https://github.com/nodejs/node/pull/34655)
    
  • [`1e6e5c3ef3`](https://github.com/nodejs/node/commit/1e6e5c3ef3)] - **quic**: resolve minor TODO in QuicSocket (James M Snell) [#&#8203;34655](https://github.com/nodejs/node/pull/34655)
    
  • [`ba5c64bf45`](https://github.com/nodejs/node/commit/ba5c64bf45)] - **quic**: use AbortController with correct name/message (Anna Henningsen) [#&#8203;34763](https://github.com/nodejs/node/pull/34763)
    
  • [`a7477704c4`](https://github.com/nodejs/node/commit/a7477704c4)] - **quic**: prefer modernize-make-unique (gengjiawen) [#&#8203;34692](https://github.com/nodejs/node/pull/34692)
    
  • [`5b6cd6fa1a`](https://github.com/nodejs/node/commit/5b6cd6fa1a)] - **quic**: use the SocketAddressLRU to track validation status (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618)
    
  • [`f75e69a94b`](https://github.com/nodejs/node/commit/f75e69a94b)] - **quic**: use SocketAddressLRU to track known SocketAddress info (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618)
    
  • [`6b0b33cd4c`](https://github.com/nodejs/node/commit/6b0b33cd4c)] - **quic**: cleanup some outstanding todo items (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618)
    
  • [`6e65f26b73`](https://github.com/nodejs/node/commit/6e65f26b73)] - **quic**: use QuicCallbackScope consistently for QuicSession (James M Snell) [#&#8203;34541](https://github.com/nodejs/node/pull/34541)
    
  • [`d96083bad5`](https://github.com/nodejs/node/commit/d96083bad5)] - **quic**: introduce QuicCallbackScope (James M Snell) [#&#8203;34541](https://github.com/nodejs/node/pull/34541)
    
  • [`4b0275ab87`](https://github.com/nodejs/node/commit/4b0275ab87)] - **quic**: refactor clientHello (James M Snell) [#&#8203;34541](https://github.com/nodejs/node/pull/34541)
    
  • [`a97b5f9c6a`](https://github.com/nodejs/node/commit/a97b5f9c6a)] - **quic**: use OpenSSL built-in cert and hostname validation (James M Snell) [#&#8203;34533](https://github.com/nodejs/node/pull/34533)
    
  • [`7a5fbafe96`](https://github.com/nodejs/node/commit/7a5fbafe96)] - **quic**: fix build for macOS (gengjiawen) [#&#8203;34336](https://github.com/nodejs/node/pull/34336)
    
  • [`1f94b89309`](https://github.com/nodejs/node/commit/1f94b89309)] - **quic**: refactor ocsp to use async function rather than event/callback (James M Snell) [#&#8203;34498](https://github.com/nodejs/node/pull/34498)
    
  • [`06664298fa`](https://github.com/nodejs/node/commit/06664298fa)] - **quic**: remove no-longer relevant TODO statements (James M Snell) [#&#8203;34498](https://github.com/nodejs/node/pull/34498)
    
  • [`2fb92f4cc6`](https://github.com/nodejs/node/commit/2fb92f4cc6)] - **quic**: remove extraneous unused debug property (James M Snell) [#&#8203;34498](https://github.com/nodejs/node/pull/34498)
    
  • [`b06fe33de1`](https://github.com/nodejs/node/commit/b06fe33de1)] - **quic**: use async \_construct for QuicStream (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`8bd61d4c38`](https://github.com/nodejs/node/commit/8bd61d4c38)] - **quic**: documentation updates (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`086c916997`](https://github.com/nodejs/node/commit/086c916997)] - **quic**: extensive refactoring of QuicStream lifecycle (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`cf28f8a7dd`](https://github.com/nodejs/node/commit/cf28f8a7dd)] - **quic**: gitignore qlog files (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`83bf0d7e8c`](https://github.com/nodejs/node/commit/83bf0d7e8c)] - **quic**: remove unneeded quicstream.aborted and fixup docs (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`a65296db2c`](https://github.com/nodejs/node/commit/a65296db2c)] - **quic**: remove stream pending code (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`da20287e1a`](https://github.com/nodejs/node/commit/da20287e1a)] - **quic**: simplify QuicStream construction logic (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`6e30fe7a7f`](https://github.com/nodejs/node/commit/6e30fe7a7f)] - **quic**: convert openStream to Promise (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351)
    
  • [`89453cfc08`](https://github.com/nodejs/node/commit/89453cfc08)] - **quic**: fixup quic.md (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`4523d4a813`](https://github.com/nodejs/node/commit/4523d4a813)] - **quic**: fixup closing/draining period timing (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`ed4882241c`](https://github.com/nodejs/node/commit/ed4882241c)] - **quic**: properly pass readable/writable constructor options (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`57c1129508`](https://github.com/nodejs/node/commit/57c1129508)] - **quic**: implement QuicSession close as promise (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`8e5c5b16ab`](https://github.com/nodejs/node/commit/8e5c5b16ab)] - **quic**: cleanup QuicClientSession constructor (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`fe4e7e4598`](https://github.com/nodejs/node/commit/fe4e7e4598)] - **quic**: use promisified dns lookup (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`346aeaf874`](https://github.com/nodejs/node/commit/346aeaf874)] - **quic**: eliminate "ready"/"not ready" states for QuicSession (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`6665dda9f6`](https://github.com/nodejs/node/commit/6665dda9f6)] - **quic**: implement QuicSocket Promise API, part 2 (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`79c0e892dd`](https://github.com/nodejs/node/commit/79c0e892dd)] - **quic**: implement QuicSocket Promise API, part 1 (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`53b12f0c7b`](https://github.com/nodejs/node/commit/53b12f0c7b)] - **quic**: implement QuicEndpoint Promise API (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`16b32eae3e`](https://github.com/nodejs/node/commit/16b32eae3e)] - **quic**: handle unhandled rejections on QuicSession (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`e5d963e24d`](https://github.com/nodejs/node/commit/e5d963e24d)] - **quic**: fixup kEndpointClose (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`9f552df5b4`](https://github.com/nodejs/node/commit/9f552df5b4)] - **quic**: fix endpointClose error handling, document (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`b80108c033`](https://github.com/nodejs/node/commit/b80108c033)] - **quic**: restrict addEndpoint to before QuicSocket bind (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`81c01bbdba`](https://github.com/nodejs/node/commit/81c01bbdba)] - **quic**: use a getter for stream options (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`b8945ba2ab`](https://github.com/nodejs/node/commit/b8945ba2ab)] - **quic**: clarifying code comments (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`429ab1dce6`](https://github.com/nodejs/node/commit/429ab1dce6)] - **quic**: minor reduction in code duplication (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`aafdc2fcad`](https://github.com/nodejs/node/commit/aafdc2fcad)] - **quic**: replace ipv6Only option with `'udp6-only'` type (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283)
    
  • [`fbc38ee134`](https://github.com/nodejs/node/commit/fbc38ee134)] - **quic**: clear clang warning (gengjiawen) [#&#8203;34335](https://github.com/nodejs/node/pull/34335)
    
  • [`c176d5fac2`](https://github.com/nodejs/node/commit/c176d5fac2)] - **quic**: set destroyed at timestamps for duration calculation (James M Snell) [#&#8203;34262](https://github.com/nodejs/node/pull/34262)
    
  • [`48a349efd9`](https://github.com/nodejs/node/commit/48a349efd9)] - **quic**: use Number instead of BigInt for more stats (James M Snell) [#&#8203;34262](https://github.com/nodejs/node/pull/34262)
    
  • [`5e769b2eaf`](https://github.com/nodejs/node/commit/5e769b2eaf)] - **quic**: use less specific error codes (James M Snell) [#&#8203;34262](https://github.com/nodejs/node/pull/34262)
    
  • [`26493c02a2`](https://github.com/nodejs/node/commit/26493c02a2)] - **quic**: remove no longer valid CHECK (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`458d243f20`](https://github.com/nodejs/node/commit/458d243f20)] - **quic**: proper custom inspect for QuicStream (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`0860b11655`](https://github.com/nodejs/node/commit/0860b11655)] - **quic**: proper custom inspect for QuicSession (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`b047930d76`](https://github.com/nodejs/node/commit/b047930d76)] - **quic**: proper custom inspect for QuicSocket (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`511f8c1138`](https://github.com/nodejs/node/commit/511f8c1138)] - **quic**: proper custom inspect for QuicEndpoint (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`fe11f6bf7c`](https://github.com/nodejs/node/commit/fe11f6bf7c)] - **quic**: cleanup QuicSocketFlags, used shared state struct (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`d08e99de24`](https://github.com/nodejs/node/commit/d08e99de24)] - **quic**: use getter/setter for stateless reset toggle (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`f2753c7695`](https://github.com/nodejs/node/commit/f2753c7695)] - **quic**: unref timers again (Anna Henningsen) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`71236097d0`](https://github.com/nodejs/node/commit/71236097d0)] - **quic**: use Number() instead of bigint for QuicSocket stats (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`94372b124a`](https://github.com/nodejs/node/commit/94372b124a)] - **quic**: refactor/improve/document QuicSocket listening event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`afc9390ae5`](https://github.com/nodejs/node/commit/afc9390ae5)] - **quic**: refactor/improve QuicSocket ready event handling (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`e3813261b8`](https://github.com/nodejs/node/commit/e3813261b8)] - **quic**: add tests confirming error handling for QuicSocket close event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`cc89aac5f7`](https://github.com/nodejs/node/commit/cc89aac5f7)] - **quic**: refactor/improve error handling for busy event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`edc71ef008`](https://github.com/nodejs/node/commit/edc71ef008)] - **quic**: handle errors thrown / rejections in the session event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`bcde849be9`](https://github.com/nodejs/node/commit/bcde849be9)] - **quic**: remove unnecessary bool conversion (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`c535131627`](https://github.com/nodejs/node/commit/c535131627)] - **quic**: additional minor cleanups in node_quic_session.h (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247)
    
  • [`0f97d6066a`](https://github.com/nodejs/node/commit/0f97d6066a)] - **quic**: use TimerWrap for idle and retransmit timers (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186)
    
  • [`1b1e985478`](https://github.com/nodejs/node/commit/1b1e985478)] - **quic**: add missing memory tracker fields (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`5a87e9b0a5`](https://github.com/nodejs/node/commit/5a87e9b0a5)] - **quic**: cleanup timers if they haven't been already (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`3837d9cf1f`](https://github.com/nodejs/node/commit/3837d9cf1f)] - **quic**: fixup lint issues (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`7b062ca015`](https://github.com/nodejs/node/commit/7b062ca015)] - **quic**: refactor qlog handling (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`e4d369e96e`](https://github.com/nodejs/node/commit/e4d369e96e)] - **quic**: remove onSessionDestroy callback (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`3acdd6aac7`](https://github.com/nodejs/node/commit/3acdd6aac7)] - **quic**: refactor QuicSession shared state to use AliasedStruct (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`f9c2245fb5`](https://github.com/nodejs/node/commit/f9c2245fb5)] - **quic**: refactor QuicSession close/destroy flow (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`f7510ca439`](https://github.com/nodejs/node/commit/f7510ca439)] - **quic**: additional cleanups on the c++ side (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`b5bf5bb20f`](https://github.com/nodejs/node/commit/b5bf5bb20f)] - **quic**: refactor native object flags for better readability (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`b1750a4d53`](https://github.com/nodejs/node/commit/b1750a4d53)] - **quic**: continued refactoring for quic_stream/quic_session (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160)
    
  • [`31d6d9d0f7`](https://github.com/nodejs/node/commit/31d6d9d0f7)] - **quic**: reduce duplication of code (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`b5fe31ef19`](https://github.com/nodejs/node/commit/b5fe31ef19)] - **quic**: avoid using private JS fields for now (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`2afc1abd05`](https://github.com/nodejs/node/commit/2afc1abd05)] - **quic**: fixup constant exports, export all protocol error codes (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`b1fab88ff0`](https://github.com/nodejs/node/commit/b1fab88ff0)] - **quic**: remove unused callback function (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`3bae2d5073`](https://github.com/nodejs/node/commit/3bae2d5073)] - **quic**: consolidate onSessionClose and onSessionSilentClose (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`def8e76999`](https://github.com/nodejs/node/commit/def8e76999)] - **quic**: fixup set_final_size (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`d6034186d6`](https://github.com/nodejs/node/commit/d6034186d6)] - **quic**: cleanups for QuicSocket (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`73a51bb9dc`](https://github.com/nodejs/node/commit/73a51bb9dc)] - **quic**: cleanups in JS API (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137)
    
  • [`204f20f2d1`](https://github.com/nodejs/node/commit/204f20f2d1)] - **quic**: minor cleanups in quic_buffer (James M Snell) [#&#8203;34087](https://github.com/nodejs/node/pull/34087)
    
  • [`68634d2592`](https://github.com/nodejs/node/commit/68634d2592)] - **quic**: remove redundant cast (gengjiawen) [#&#8203;34086](https://github.com/nodejs/node/pull/34086)
    
  • [`213cac0b94`](https://github.com/nodejs/node/commit/213cac0b94)] - **quic**: temporarily skip quic-ipv6only test (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`99f7c4bb5e`](https://github.com/nodejs/node/commit/99f7c4bb5e)] - **quic**: possibly resolve flaky assertion failure in ipv6only test (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`2a5922e483`](https://github.com/nodejs/node/commit/2a5922e483)] - **quic**: temporarily disable packetloss tests (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`86e67aaa69`](https://github.com/nodejs/node/commit/86e67aaa69)] - **quic**: updates to implement for h3-29 (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033)
    
  • [`adf14e2617`](https://github.com/nodejs/node/commit/adf14e2617)] - **quic**: fix lint error in node_quic_crypto (Daniel Bevenius) [#&#8203;34019](https://github.com/nodejs/node/pull/34019)
    
  • [`9f2e00fb99`](https://github.com/nodejs/node/commit/9f2e00fb99)] - **quic**: temporarily disable preferred address tests (James M Snell) [#&#8203;33934](https://github.com/nodejs/node/pull/33934)
    
  • [`0e7c8bdc0c`](https://github.com/nodejs/node/commit/0e7c8bdc0c)] - **quic**: return 0 from SSL_CTX_sess_set_new_cb callback (Anna Henningsen) [#&#8203;33931](https://github.com/nodejs/node/pull/33931)
    
  • [`c7d859e756`](https://github.com/nodejs/node/commit/c7d859e756)] - **quic**: refactor and improve ipv6Only (James M Snell) [#&#8203;33935](https://github.com/nodejs/node/pull/33935)
    
  • [`1b7434dfc0`](https://github.com/nodejs/node/commit/1b7434dfc0)] - **quic**: set up FunctionTemplates more cleanly (Anna Henningsen) [#&#8203;33968](https://github.com/nodejs/node/pull/33968)
    
  • [`8ef86a920c`](https://github.com/nodejs/node/commit/8ef86a920c)] - **quic**: fix clang warning (gengjiawen) [#&#8203;33963](https://github.com/nodejs/node/pull/33963)
    
  • [`013cd1ac6f`](https://github.com/nodejs/node/commit/013cd1ac6f)] - **quic**: use Check instead of FromJust in node_quic.cc (Daniel Bevenius) [#&#8203;33937](https://github.com/nodejs/node/pull/33937)
    
  • [`09330fc155`](https://github.com/nodejs/node/commit/09330fc155)] - **quic**: fix clang-tidy performance-faster-string-find issue (gengjiawen) [#&#8203;33975](https://github.com/nodejs/node/pull/33975)
    
  • [`9743624c0b`](https://github.com/nodejs/node/commit/9743624c0b)] - **quic**: fix typo in comments (gengjiawen) [#&#8203;33975](https://github.com/nodejs/node/pull/33975)
    
  • [`88ef15812c`](https://github.com/nodejs/node/commit/88ef15812c)] - **quic**: remove unused string include http3\_application (Daniel Bevenius) [#&#8203;33926](https://github.com/nodejs/node/pull/33926)
    
  • [`1bd88a3ac6`](https://github.com/nodejs/node/commit/1bd88a3ac6)] - **quic**: fix up node_quic_stream includes (Daniel Bevenius) [#&#8203;33921](https://github.com/nodejs/node/pull/33921)
    
  • [`d7d79f2163`](https://github.com/nodejs/node/commit/d7d79f2163)] - **quic**: avoid memory fragmentation issue (James M Snell) [#&#8203;33912](https://github.com/nodejs/node/pull/33912)
    
  • [`16116f5f5f`](https://github.com/nodejs/node/commit/16116f5f5f)] - **quic**: remove noop code (Robert Nagy) [#&#8203;33914](https://github.com/nodejs/node/pull/33914)
    
  • [`272b46e04d`](https://github.com/nodejs/node/commit/272b46e04d)] - **quic**: skip test-quic-preferred-address-ipv6.js when no ipv6 (James M Snell) [#&#8203;33919](https://github.com/nodejs/node/pull/33919)
    
  • [`4b70f95d64`](https://github.com/nodejs/node/commit/4b70f95d64)] - **quic**: use Check instead of FromJust in QuicStream (Daniel Bevenius) [#&#8203;33909](https://github.com/nodejs/node/pull/33909)
    
  • [`133a97f60d`](https://github.com/nodejs/node/commit/133a97f60d)] - **quic**: always copy stateless reset token (Anna Henningsen) [#&#8203;33917](https://github.com/nodejs/node/pull/33917)
    
  • [`14d012ef96`](https://github.com/nodejs/node/commit/14d012ef96)] - **quic**: fix minor linting issue (James M Snell) [#&#8203;33913](https://github.com/nodejs/node/pull/33913)
    
  • [`55360443ce`](https://github.com/nodejs/node/commit/55360443ce)] - **quic**: initial QUIC implementation (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379)
    
  • [`a12a2d892f`](https://github.com/nodejs/node/commit/a12a2d892f)] - **repl**: update deprecation codes (Antoine du HAMEL) [#&#8203;33430](https://github.com/nodejs/node/pull/33430)
    
  • [`2b3acc44f0`](https://github.com/nodejs/node/commit/2b3acc44f0)] - **src**: large pages support in illumos/solaris systems (David Carlier) [#&#8203;34320](https://github.com/nodejs/node/pull/34320)
    
  • [`84a7880749`](https://github.com/nodejs/node/commit/84a7880749)] - **src**: minor cleanup and simplification of crypto::Hash (James M Snell) [#&#8203;35651](https://github.com/nodejs/node/pull/35651)
    
  • [`bfc906906f`](https://github.com/nodejs/node/commit/bfc906906f)] - **src**: combine TLSWrap/SSLWrap (James M Snell) [#&#8203;35552](https://github.com/nodejs/node/pull/35552)
    
  • [`9fd6122659`](https://github.com/nodejs/node/commit/9fd6122659)] - **src**: add embedding helpers to reduce boilerplate code (Anna Henningsen) [#&#8203;35597](https://github.com/nodejs/node/pull/35597)
    
  • [`f7ed5f4ae3`](https://github.com/nodejs/node/commit/f7ed5f4ae3)] - **src**: remove toLocalChecked in crypto_context (James M Snell) [#&#8203;35509](https://github.com/nodejs/node/pull/35509)
    
  • [`17d5d94921`](https://github.com/nodejs/node/commit/17d5d94921)] - **src**: replace more toLocalCheckeds in crypto_\* (James M Snell) [#&#8203;35509](https://github.com/nodejs/node/pull/35509)
    
  • [`83eaaf9731`](https://github.com/nodejs/node/commit/83eaaf9731)] - **src**: remove unused AsyncWrapObject (James M Snell) [#&#8203;35511](https://github.com/nodejs/node/pull/35511)
    
  • [`ee5f849fda`](https://github.com/nodejs/node/commit/ee5f849fda)] - **src**: fix compiler warning in env.cc (Anna Henningsen) [#&#8203;35547](https://github.com/nodejs/node/pull/35547)
    
  • [`40364b181d`](https://github.com/nodejs/node/commit/40364b181d)] - **src**: add check against non-weak BaseObjects at process exit (Anna Henningsen) [#&#8203;35490](https://github.com/nodejs/node/pull/35490)
    
  • [`bc0c094b74`](https://github.com/nodejs/node/commit/bc0c094b74)] - **src**: unset NODE_VERSION_IS_RELEASE from master (Antoine du Hamel) [#&#8203;35531](https://github.com/nodejs/node/pull/35531)
    
  • [`fdf0a84e82`](https://github.com/nodejs/node/commit/fdf0a84e82)] - **src**: move all base64.h inline methods into -inl.h header file (Anna Henningsen) [#&#8203;35432](https://github.com/nodejs/node/pull/35432)
    
  • [`ff4cf817a3`](https://github.com/nodejs/node/commit/ff4cf817a3)] - **src**: create helper for reading Uint32BE (Juan José Arboleda) [#&#8203;34944](https://github.com/nodejs/node/pull/34944)
    
  • [`c6e1edcc28`](https://github.com/nodejs/node/commit/c6e1edcc28)] - **src**: add Update(const sockaddr\*) variant (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752)
    
  • [`1c14810edc`](https://github.com/nodejs/node/commit/1c14810edc)] - **src**: allow instances of net.BlockList to be created internally (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`6d1f0aed52`](https://github.com/nodejs/node/commit/6d1f0aed52)] - **src**: add SocketAddressLRU Utility (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618)
    
  • [`feb93c4e84`](https://github.com/nodejs/node/commit/feb93c4e84)] - **src**: guard against nullptr deref in TimerWrapHandle::Stop (Anna Henningsen) [#&#8203;34460](https://github.com/nodejs/node/pull/34460)
    
  • [`7a447bcd54`](https://github.com/nodejs/node/commit/7a447bcd54)] - **src**: snapshot node (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`c943cb4809`](https://github.com/nodejs/node/commit/c943cb4809)] - **src**: reset zero fill toggle at pre-execution (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`0b8ae5f2cd`](https://github.com/nodejs/node/commit/0b8ae5f2cd)] - **src**: snapshot loaders (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`7ecb285842`](https://github.com/nodejs/node/commit/7ecb285842)] - **src**: make code cache test work with snapshots (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`1faf6f459f`](https://github.com/nodejs/node/commit/1faf6f459f)] - **src**: snapshot Environment upon instantiation (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`ef9964f4c1`](https://github.com/nodejs/node/commit/ef9964f4c1)] - **src**: add an ExternalReferenceRegistry class (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`404302fff5`](https://github.com/nodejs/node/commit/404302fff5)] - **src**: split the main context initialization from Environemnt ctor (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`874460a1d1`](https://github.com/nodejs/node/commit/874460a1d1)] - **src**: refactor TimerWrap lifetime management (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252)
    
  • [`e2f9dc6e5a`](https://github.com/nodejs/node/commit/e2f9dc6e5a)] - **src**: remove user_data from TimerWrap (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252)
    
  • [`e19a251824`](https://github.com/nodejs/node/commit/e19a251824)] - **src**: replace InspectorTimer with TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186)
    
  • [`d4f69002b4`](https://github.com/nodejs/node/commit/d4f69002b4)] - **src**: add TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186)
    
  • [`52de4cb107`](https://github.com/nodejs/node/commit/52de4cb107)] - **src**: minor updates to FastHrtime (Anna Henningsen) [#&#8203;33851](https://github.com/nodejs/node/pull/33851)
    
  • [`4678e44bb2`](https://github.com/nodejs/node/commit/4678e44bb2)] - **src**: perform bounds checking on error source line (Anna Henningsen) [#&#8203;33645](https://github.com/nodejs/node/pull/33645)
    
  • [`7232c2a160`](https://github.com/nodejs/node/commit/7232c2a160)] - **src**: use getauxval in node_main.cc (Daniel Bevenius) [#&#8203;33693](https://github.com/nodejs/node/pull/33693)
    
  • [`6be80e1893`](https://github.com/nodejs/node/commit/6be80e1893)] - **stream**: fix legacy pipe error handling (Robert Nagy) [#&#8203;35257](https://github.com/nodejs/node/pull/35257)
    
  • [`2b9003b165`](https://github.com/nodejs/node/commit/2b9003b165)] - **stream**: don't destroy on async iterator success (Robert Nagy) [#&#8203;35122](https://github.com/nodejs/node/pull/35122)
    
  • [`9c62e0e384`](https://github.com/nodejs/node/commit/9c62e0e384)] - **stream**: move to internal/streams (Matteo Collina) [#&#8203;35239](https://github.com/nodejs/node/pull/35239)
    
  • [`e0d3b758a0`](https://github.com/nodejs/node/commit/e0d3b758a0)] - **stream**: improve Writable.destroy performance (Robert Nagy) [#&#8203;35067](https://github.com/nodejs/node/pull/35067)
    
  • [`02c4869bee`](https://github.com/nodejs/node/commit/02c4869bee)] - **stream**: fix Duplex.\_construct race (Robert Nagy) [#&#8203;34456](https://github.com/nodejs/node/pull/34456)
    
  • [`5aeaff6499`](https://github.com/nodejs/node/commit/5aeaff6499)] - **stream**: refactor lazyLoadPromises (rickyes) [#&#8203;34354](https://github.com/nodejs/node/pull/34354)
    
  • [`a55b77d2d3`](https://github.com/nodejs/node/commit/a55b77d2d3)] - **stream**: finished on closed OutgoingMessage (Robert Nagy) [#&#8203;34313](https://github.com/nodejs/node/pull/34313)
    
  • [`e10e292c5e`](https://github.com/nodejs/node/commit/e10e292c5e)] - **stream**: remove unused \_transformState (Robert Nagy) [#&#8203;33105](https://github.com/nodejs/node/pull/33105)
    
  • [`f5c11a1a0a`](https://github.com/nodejs/node/commit/f5c11a1a0a)] - **stream**: don't emit finish after close (Robert Nagy) [#&#8203;32933](https://github.com/nodejs/node/pull/32933)
    
  • [`089d654dd8`](https://github.com/nodejs/node/commit/089d654dd8)] - **test**: fix addons/dlopen-ping-pong for npm 7.0.1 (Myles Borins) [#&#8203;35667](https://github.com/nodejs/node/pull/35667)
    
  • [`9ce5a03148`](https://github.com/nodejs/node/commit/9ce5a03148)] - **test**: add test for listen callback runtime binding (H Adinarayana) [#&#8203;35657](https://github.com/nodejs/node/pull/35657)
    
  • [`a3731309cc`](https://github.com/nodejs/node/commit/a3731309cc)] - **test**: refactor test-https-host-headers (himself65) [#&#8203;32805](https://github.com/nodejs/node/pull/32805)
    
  • [`30fb4a015d`](https://github.com/nodejs/node/commit/30fb4a015d)] - **test**: add common.mustSucceed (Tobias Nießen) [#&#8203;35086](https://github.com/nodejs/node/pull/35086)
    
  • [`c143266b55`](https://github.com/nodejs/node/commit/c143266b55)] - **test**: add a few uncovered url tests from wpt (Daijiro Wachi) [#&#8203;35636](https://github.com/nodejs/node/pull/35636)
    
  • [`6751b6dc3d`](https://github.com/nodejs/node/commit/6751b6dc3d)] - **test**: check for AbortController existence (James M Snell) [#&#8203;35616](https://github.com/nodejs/node/pull/35616)
    
  • [`9f2e19fa30`](https://github.com/nodejs/node/commit/9f2e19fa30)] - **test**: update url test for win (Daijiro Wachi) [#&#8203;35622](https://github.com/nodejs/node/pull/35622)
    
  • [`c88d845db3`](https://github.com/nodejs/node/commit/c88d845db3)] - **test**: update wpt status for url (Daijiro Wachi) [#&#8203;35335](https://github.com/nodejs/node/pull/35335)
    
  • [`589dbf1392`](https://github.com/nodejs/node/commit/589dbf1392)] - **test**: update wpt tests for url (Daijiro Wachi) [#&#8203;35329](https://github.com/nodejs/node/pull/35329)
    
  • [`46bef7b771`](https://github.com/nodejs/node/commit/46bef7b771)] - **test**: add Actions annotation output (Mary Marchini) [#&#8203;34590](https://github.com/nodejs/node/pull/34590)
    
  • [`a9c5b873ca`](https://github.com/nodejs/node/commit/a9c5b873ca)] - **test**: move buffer-as-path symlink test to its own test file (Rich Trott) [#&#8203;34569](https://github.com/nodejs/node/pull/34569)
    
  • [`31ba9a20bd`](https://github.com/nodejs/node/commit/31ba9a20bd)] - **test**: run test-benchmark-napi on arm (Rich Trott) [#&#8203;34502](https://github.com/nodejs/node/pull/34502)
    
  • [`2c4ebe0426`](https://github.com/nodejs/node/commit/2c4ebe0426)] - **test**: use `.then(common.mustCall())` for all async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363)
    
  • [`772fdb0cd3`](https://github.com/nodejs/node/commit/772fdb0cd3)] - **test**: fix flaky test-fs-stream-construct (Rich Trott) [#&#8203;34203](https://github.com/nodejs/node/pull/34203)
    
  • [`9b8d317d99`](https://github.com/nodejs/node/commit/9b8d317d99)] - **test**: fix flaky test-http2-invalidheaderfield (Rich Trott) [#&#8203;34173](https://github.com/nodejs/node/pull/34173)
    
  • [`2ccf15b2bf`](https://github.com/nodejs/node/commit/2ccf15b2bf)] - **test**: ensure finish is emitted before destroy (Robert Nagy) [#&#8203;33137](https://github.com/nodejs/node/pull/33137)
    
  • [`27f3530da3`](https://github.com/nodejs/node/commit/27f3530da3)] - **test**: remove unnecessary eslint-disable comment (Rich Trott) [#&#8203;34000](https://github.com/nodejs/node/pull/34000)
    
  • [`326a79ebb9`](https://github.com/nodejs/node/commit/326a79ebb9)] - **test**: fix typo in test-quic-client-empty-preferred-address.js (gengjiawen) [#&#8203;33976](https://github.com/nodejs/node/pull/33976)
    
  • [`b0b268f5a2`](https://github.com/nodejs/node/commit/b0b268f5a2)] - **test**: fix flaky fs-construct test (Robert Nagy) [#&#8203;33625](https://github.com/nodejs/node/pull/33625)
    
  • [`cbe955c227`](https://github.com/nodejs/node/commit/cbe955c227)] - **test**: add net regression test (Robert Nagy) [#&#8203;32794](https://github.com/nodejs/node/pull/32794)
    
  • [`5d179cb2ec`](https://github.com/nodejs/node/commit/5d179cb2ec)] - **timers**: use AbortController with correct name/message (Anna Henningsen) [#&#8203;34763](https://github.com/nodejs/node/pull/34763)
    
  • [`64d22c320c`](https://github.com/nodejs/node/commit/64d22c320c)] - **timers**: fix multipleResolves in promisified timeouts/immediates (Denys Otrishko) [#&#8203;33949](https://github.com/nodejs/node/pull/33949)
    
  • [`fbe33aa52e`](https://github.com/nodejs/node/commit/fbe33aa52e)] - **tools**: bump remark-lint-preset-node to 1.17.1 (Rich Trott) [#&#8203;35668](https://github.com/nodejs/node/pull/35668)
    
  • [`35a6946193`](https://github.com/nodejs/node/commit/35a6946193)] - **tools**: update gyp-next to v0.6.2 (Michaël Zasso) [#&#8203;35690](https://github.com/nodejs/node/pull/35690)
    
  • [`be80faa0c8`](https://github.com/nodejs/node/commit/be80faa0c8)] - **tools**: update gyp-next to v0.6.0 (Ujjwal Sharma) [#&#8203;35635](https://github.com/nodejs/node/pull/35635)
    
  • [`2d83e743d9`](https://github.com/nodejs/node/commit/2d83e743d9)] - **tools**: update ESLint to 7.11.0 (Colin Ihrig) [#&#8203;35578](https://github.com/nodejs/node/pull/35578)
    
  • [`0eca660948`](https://github.com/nodejs/node/commit/0eca660948)] - **tools**: update ESLint to 7.7.0 (Colin Ihrig) [#&#8203;34783](https://github.com/nodejs/node/pull/34783)
    
  • [`77b68f9a29`](https://github.com/nodejs/node/commit/77b68f9a29)] - **tools**: add linting rule for async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363)
    
  • [`f04538761f`](https://github.com/nodejs/node/commit/f04538761f)] - **tools**: enable Node.js command line flags in node_mksnapshot (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984)
    
  • [`b0d4eb37c7`](https://github.com/nodejs/node/commit/b0d4eb37c7)] - **tools**: update ESLint to 7.4.0 (Colin Ihrig) [#&#8203;34205](https://github.com/nodejs/node/pull/34205)
    
  • [`076e4ed2d1`](https://github.com/nodejs/node/commit/076e4ed2d1)] - **tools**: update ESLint from 7.2.0 to 7.3.1 (Rich Trott) [#&#8203;34000](https://github.com/nodejs/node/pull/34000)
    
  • [`7afe3af200`](https://github.com/nodejs/node/commit/7afe3af200)] - **url**: fix file url reparse (Daijiro Wachi) [#&#8203;35671](https://github.com/nodejs/node/pull/35671)
    
    

v14.18.1

Compare Source

This is a security release.

Notable changes
  • CVE-2021-22959: HTTP Request Smuggling due to spaced in headers (Medium)
    • The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at CVE-2021-22959 after publication.
  • CVE-2021-22960: HTTP Request Smuggling when parsing the body (Medium)
    • The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at CVE-2021-22960 after publication.
Commits
  • [`8c254ca7e4`](https://github.com/nodejs/node/commit/8c254ca7e4)] - **deps**: update llhttp to 2.1.4 (Fedor Indutny) [nodejs-private/node-private#&#8203;285](https://github.com/nodejs-private/node-private/pull/285)
    
  • [`9b92ae2499`](https://github.com/nodejs/node/commit/9b92ae2499)] - **http**: add regression test for smuggling content length (Matteo Collina) [nodejs-private/node-private#&#8203;285](https://github.com/nodejs-private/node-private/pull/285)
    
  • [`f467539719`](https://github.com/nodejs/node/commit/f467539719)] - **http**: add regression test for chunked smuggling (Matteo Collina) [nodejs-private/node-private#&#8203;285](https://github.com/nodejs-private/node-private/pull/285)
    
    

v14.18.0

Compare Source

Notable Changes
  • [`3a60de0135`](https://github.com/nodejs/node/commit/3a60de0135)] - **assert**: change status of legacy asserts (James M Snell) [#&#8203;38113](https://github.com/nodejs/node/pull/38113)
    
  • [`df37c106a7`](https://github.com/nodejs/node/commit/df37c106a7)] - **(SEMVER-MINOR)** **buffer**: introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811)
    
  • [`223494c548`](https://github.com/nodejs/node/commit/223494c548)] - **(SEMVER-MINOR)** **buffer**: add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952)
    
  • [`14fc4ddabc`](https://github.com/nodejs/node/commit/14fc4ddabc)] - **(SEMVER-MINOR)** **child_process**: allow `options.cwd` receive a URL (Khaidi Chu) [#&#8203;38862](https://github.com/nodejs/node/pull/38862)
    
  • [`b68b13acb3`](https://github.com/nodejs/node/commit/b68b13acb3)] - **(SEMVER-MINOR)** **child_process**: add timeout to spawn and fork (Nitzan Uziely) [#&#8203;37256](https://github.com/nodejs/node/pull/37256)
    
  • [`da98c9f99b`](https://github.com/nodejs/node/commit/da98c9f99b)] - **(SEMVER-MINOR)** **child_process**: allow promisified exec to be cancel (Carlos Fuentes) [#&#8203;34249](https://github.com/nodejs/node/pull/34249)
    
  • [`779310ac87`](https://github.com/nodejs/node/commit/779310ac87)] - **(SEMVER-MINOR)** **child_process**: add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412)
    
  • [`40eb3b79f1`](https://github.com/nodejs/node/commit/40eb3b79f1)] - **(SEMVER-MINOR)** **cli**: add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755)
    
  • [`39eba0a2e1`](https://github.com/nodejs/node/commit/39eba0a2e1)] - **(SEMVER-MINOR)** **cli**: add --node-memory-debug option (Anna Henningsen) [#&#8203;35537](https://github.com/nodejs/node/pull/35537)
    
  • [`d8d9a9628a`](https://github.com/nodejs/node/commit/d8d9a9628a)] - **(SEMVER-MINOR)** **dns**: add "tries" option to Resolve options (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`15ba19b020`](https://github.com/nodejs/node/commit/15ba19b020)] - **(SEMVER-MINOR)** **dns**: allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099)
    
  • [`307c1d817f`](https://github.com/nodejs/node/commit/307c1d817f)] - **doc**: refactor fs docs structure (James M Snell) [#&#8203;37170](https://github.com/nodejs/node/pull/37170)
    
  • [`9ee3f77e32`](https://github.com/nodejs/node/commit/9ee3f77e32)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362)
    
  • [`e73bfed2f4`](https://github.com/nodejs/node/commit/e73bfed2f4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918)
    
  • [`989c204a58`](https://github.com/nodejs/node/commit/989c204a58)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028)
    
  • [`ef72490cde`](https://github.com/nodejs/node/commit/ef72490cde)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287)
    
  • [`cad9d20f64`](https://github.com/nodejs/node/commit/cad9d20f64)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490)
    
  • [`2b0e2706c0`](https://github.com/nodejs/node/commit/2b0e2706c0)] - **fs**: improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608)
    
  • [`fe12cc07b3`](https://github.com/nodejs/node/commit/fe12cc07b3)] - **(SEMVER-MINOR)** **fs**: add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179)
    
  • [`2459c115a8`](https://github.com/nodejs/node/commit/2459c115a8)] - **(SEMVER-MINOR)** **fs**: allow `position` parameter to be a `BigInt` in read and readSync (Darshan Sen) [#&#8203;36190](https://github.com/nodejs/node/pull/36190)
    
  • [`6544cfb4b9`](https://github.com/nodejs/node/commit/6544cfb4b9)] - **(SEMVER-MINOR)** **http2**: add support for sensitive headers (Anna Henningsen) [#&#8203;34145](https://github.com/nodejs/node/pull/34145)
    
  • [`a6c6cbb4e6`](https://github.com/nodejs/node/commit/a6c6cbb4e6)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978)
    
  • [`1e5aca550c`](https://github.com/nodejs/node/commit/1e5aca550c)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748)
    
  • [`93af04afbb`](https://github.com/nodejs/node/commit/93af04afbb)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587)
    
  • [`f9f9389d83`](https://github.com/nodejs/node/commit/f9f9389d83)] - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246)
    
  • [`87c71065eb`](https://github.com/nodejs/node/commit/87c71065eb)] - **(SEMVER-MINOR)** **net**: introduce net.BlockList (James M Snell) [#&#8203;34625](https://github.com/nodejs/node/pull/34625)
    
  • [`b421d99a48`](https://github.com/nodejs/node/commit/b421d99a48)] - **(SEMVER-MINOR)** **node-api**: allow retrieval of add-on file name (Gabriel Schulhof) [#&#8203;37195](https://github.com/nodejs/node/pull/37195)
    
  • [`6a4811df8a`](https://github.com/nodejs/node/commit/6a4811df8a)] - **(SEMVER-MINOR)** **os**: add os.devNull (Luigi Pinca) [#&#8203;38569](https://github.com/nodejs/node/pull/38569)
    
  • [`4a88ddeeca`](https://github.com/nodejs/node/commit/4a88ddeeca)] - **(SEMVER-MINOR)** **perf_hooks**: introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155)
    
  • [`1a6bf1c4a3`](https://github.com/nodejs/node/commit/1a6bf1c4a3)] - **(SEMVER-MINOR)** **process**: add api to enable source-maps programmatically (legendecas) [#&#8203;39085](https://github.com/nodejs/node/pull/39085)
    
  • [`99735a6fe8`](https://github.com/nodejs/node/commit/99735a6fe8)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659)
    
  • [`3982919317`](https://github.com/nodejs/node/commit/3982919317)] - **(SEMVER-MINOR)** **process**: add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291)
    
  • [`526e6c7bde`](https://github.com/nodejs/node/commit/526e6c7bde)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932)
    
  • [`e6eee08692`](https://github.com/nodejs/node/commit/e6eee08692)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676)
    
  • [`32de361d70`](https://github.com/nodejs/node/commit/32de361d70)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662)
    
  • [`797f7f8a38`](https://github.com/nodejs/node/commit/797f7f8a38)] - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246)
    
  • [`abfd71b64c`](https://github.com/nodejs/node/commit/abfd71b64c)] - **(SEMVER-MINOR)** **src**: call overload ctor from the original ctor (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768)
    
  • [`1efae01b18`](https://github.com/nodejs/node/commit/1efae01b18)] - **(SEMVER-MINOR)** **src**: add a constructor overload for CallbackScope (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768)
    
  • [`f7933804ba`](https://github.com/nodejs/node/commit/f7933804ba)] - **(SEMVER-MINOR)** **src**: allow to negate boolean CLI flags (Michaël Zasso) [#&#8203;39023](https://github.com/nodejs/node/pull/39023)
    
  • [`6d06ac2202`](https://github.com/nodejs/node/commit/6d06ac2202)] - **(SEMVER-MINOR)** **src**: add --heapsnapshot-near-heap-limit option (Joyee Cheung) [#&#8203;33010](https://github.com/nodejs/node/pull/33010)
    
  • [`577d228ca0`](https://github.com/nodejs/node/commit/577d228ca0)] - **(SEMVER-MINOR)** **src**: add way to get IsolateData and allocator from Environment (Anna Henningsen) [#&#8203;36441](https://github.com/nodejs/node/pull/36441)
    
  • [`658a266cd4`](https://github.com/nodejs/node/commit/658a266cd4)] - **(SEMVER-MINOR)** **src**: allow preventing SetPrepareStackTraceCallback (Shelley Vohr) [#&#8203;36447](https://github.com/nodejs/node/pull/36447)
    
  • [`f421422ea4`](https://github.com/nodejs/node/commit/f421422ea4)] - **(SEMVER-MINOR)** **src**: add maybe versions of EmitExit and EmitBeforeExit (Anna Henningsen) [#&#8203;35486](https://github.com/nodejs/node/pull/35486)
    
  • [`a62d4d60f4`](https://github.com/nodejs/node/commit/a62d4d60f4)] - **(SEMVER-MINOR)** **stream**: add readableDidRead if has been read from (Robert Nagy) [#&#8203;39589](https://github.com/nodejs/node/pull/39589)
    
  • [`63502131a3`](https://github.com/nodejs/node/commit/63502131a3)] - **(SEMVER-MINOR)** **stream**: pipeline accept Buffer as a valid first argument (Nitzan Uziely) [#&#8203;37739](https://github.com/nodejs/node/pull/37739)
    
  • [`68bbebd42c`](https://github.com/nodejs/node/commit/68bbebd42c)] - **(SEMVER-MINOR)** **tls**: allow reading data into a static buffer (Andrey Pechkurov) [#&#8203;35753](https://github.com/nodejs/node/pull/35753)
    
  • [`1cbb74d63d`](https://github.com/nodejs/node/commit/1cbb74d63d)] - **(SEMVER-MINOR)** **url**: expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960)
    
  • [`8eb11356dd`](https://github.com/nodejs/node/commit/8eb11356dd)] - **(SEMVER-MINOR)** **util**: expose toUSVString (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814)
    
  • [`84fcdc3074`](https://github.com/nodejs/node/commit/84fcdc3074)] - **(SEMVER-MINOR)** **v8**: implement v8.stopCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807)
    
  • [`b238b6bf17`](https://github.com/nodejs/node/commit/b238b6bf17)] - **(SEMVER-MINOR)** **v8**: implement v8.takeCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807)
    
  • [`9f6bc58da8`](https://github.com/nodejs/node/commit/9f6bc58da8)] - **(SEMVER-MINOR)** **worker**: add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486)
    
    
Commits
Semver-minor commits
  • [`f3563d3197`](https://github.com/nodejs/node/commit/f3563d3197)] - **(SEMVER-MINOR)** **async_hooks**: use new v8::Context PromiseHook API (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`df37c106a7`](https://github.com/nodejs/node/commit/df37c106a7)] - **(SEMVER-MINOR)** **buffer**: introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811)
    
  • [`223494c548`](https://github.com/nodejs/node/commit/223494c548)] - **(SEMVER-MINOR)** **buffer**: add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952)
    
  • [`14fc4ddabc`](https://github.com/nodejs/node/commit/14fc4ddabc)] - **(SEMVER-MINOR)** **child_process**: allow `options.cwd` receive a URL (Khaidi Chu) [#&#8203;38862](https://github.com/nodejs/node/pull/38862)
    
  • [`b68b13acb3`](https://github.com/nodejs/node/commit/b68b13acb3)] - **(SEMVER-MINOR)** **child_process**: add timeout to spawn and fork (Nitzan Uziely) [#&#8203;37256](https://github.com/nodejs/node/pull/37256)
    
  • [`da98c9f99b`](https://github.com/nodejs/node/commit/da98c9f99b)] - **(SEMVER-MINOR)** **child_process**: allow promisified exec to be cancel (Carlos Fuentes) [#&#8203;34249](https://github.com/nodejs/node/pull/34249)
    
  • [`779310ac87`](https://github.com/nodejs/node/commit/779310ac87)] - **(SEMVER-MINOR)** **child_process**: add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412)
    
  • [`40eb3b79f1`](https://github.com/nodejs/node/commit/40eb3b79f1)] - **(SEMVER-MINOR)** **cli**: add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755)
    
  • [`39eba0a2e1`](https://github.com/nodejs/node/commit/39eba0a2e1)] - **(SEMVER-MINOR)** **cli**: add --node-memory-debug option (Anna Henningsen) [#&#8203;35537](https://github.com/nodejs/node/pull/35537)
    
  • [`d9b58a0262`](https://github.com/nodejs/node/commit/d9b58a0262)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`fa4cb17`](https://github.com/nodejs/node/commit/fa4cb172cde2) (Stephen Belanger) [#&#8203;38577](https://github.com/nodejs/node/pull/38577)
    
  • [`9d7177c152`](https://github.com/nodejs/node/commit/9d7177c152)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`4c07451`](https://github.com/nodejs/node/commit/4c074516397b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`ec0f0ef8ef`](https://github.com/nodejs/node/commit/ec0f0ef8ef)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`5f44131`](https://github.com/nodejs/node/commit/5f4413194480) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`3e7238e45a`](https://github.com/nodejs/node/commit/3e7238e45a)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`272445f`](https://github.com/nodejs/node/commit/272445f10927) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`214e568597`](https://github.com/nodejs/node/commit/214e568597)] - **(SEMVER-MINOR)** **deps**: V8: backport [`c0fceaa`](https://github.com/nodejs/node/commit/c0fceaa0669b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394)
    
  • [`d8d9a9628a`](https://github.com/nodejs/node/commit/d8d9a9628a)] - **(SEMVER-MINOR)** **dns**: add "tries" option to Resolve options (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`15ba19b020`](https://github.com/nodejs/node/commit/15ba19b020)] - **(SEMVER-MINOR)** **dns**: allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099)
    
  • [`defb77cac9`](https://github.com/nodejs/node/commit/defb77cac9)] - **(SEMVER-MINOR)** **doc**: add missing change to resolver ctor (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`9ee3f77e32`](https://github.com/nodejs/node/commit/9ee3f77e32)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362)
    
  • [`989c204a58`](https://github.com/nodejs/node/commit/989c204a58)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028)
    
  • [`ef72490cde`](https://github.com/nodejs/node/commit/ef72490cde)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287)
    
  • [`cad9d20f64`](https://github.com/nodejs/node/commit/cad9d20f64)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490)
    
  • [`fe12cc07b3`](https://github.com/nodejs/node/commit/fe12cc07b3)] - **(SEMVER-MINOR)** **fs**: add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179)
    
  • [`2459c115a8`](https://github.com/nodejs/node/commit/2459c115a8)] - **(SEMVER-MINOR)** **fs**: allow `position` parameter to be a `BigInt` in read and readSync (Darshan Sen) [#&#8203;36190](https://github.com/nodejs/node/pull/36190)
    
  • [`6544cfb4b9`](https://github.com/nodejs/node/commit/6544cfb4b9)] - **(SEMVER-MINOR)** **http2**: add support for sensitive headers (Anna Henningsen) [#&#8203;34145](https://github.com/nodejs/node/pull/34145)
    
  • [`a6c6cbb4e6`](https://github.com/nodejs/node/commit/a6c6cbb4e6)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978)
    
  • [`93af04afbb`](https://github.com/nodejs/node/commit/93af04afbb)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587)
    
  • [`f9f9389d83`](https://github.com/nodejs/node/commit/f9f9389d83)] - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246)
    
  • [`76d4f22bab`](https://github.com/nodejs/node/commit/76d4f22bab)] - **(SEMVER-MINOR)** **net**: allow net.BlockList to use net.SocketAddress objects (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`82363d864d`](https://github.com/nodejs/node/commit/82363d864d)] - **(SEMVER-MINOR)** **net**: add SocketAddress class (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`0202ba46b8`](https://github.com/nodejs/node/commit/0202ba46b8)] - **(SEMVER-MINOR)** **net**: make net.BlockList cloneable (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917)
    
  • [`a41a3e3b3f`](https://github.com/nodejs/node/commit/a41a3e3b3f)] - **(SEMVER-MINOR)** **net**: make blocklist family case insensitive (James M Snell) [#&#8203;34864](https://github.com/nodejs/node/pull/34864)
    
  • [`87c71065eb`](https://github.com/nodejs/node/commit/87c71065eb)] - **(SEMVER-MINOR)** **net**: introduce net.BlockList (James M Snell) [#&#8203;34625](https://github.com/nodejs/node/pull/34625)
    
  • [`b421d99a48`](https://github.com/nodejs/node/commit/b421d99a48)] - **(SEMVER-MINOR)** **node-api**: allow retrieval of add-on file name (Gabriel Schulhof) [#&#8203;37195](https://github.com/nodejs/node/pull/37195)
    
  • [`6a4811df8a`](https://github.com/nodejs/node/commit/6a4811df8a)] - **(SEMVER-MINOR)** **os**: add os.devNull (Luigi Pinca) [#&#8203;38569](https://github.com/nodejs/node/pull/38569)
    
  • [`4a88ddeeca`](https://github.com/nodejs/node/commit/4a88ddeeca)] - **(SEMVER-MINOR)** **perf_hooks**: introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155)
    
  • [`1a6bf1c4a3`](https://github.com/nodejs/node/commit/1a6bf1c4a3)] - **(SEMVER-MINOR)** **process**: add api to enable source-maps programmatically (legendecas) [#&#8203;39085](https://github.com/nodejs/node/pull/39085)
    
  • [`99735a6fe8`](https://github.com/nodejs/node/commit/99735a6fe8)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659)
    
  • [`3982919317`](https://github.com/nodejs/node/commit/3982919317)] - **(SEMVER-MINOR)** **process**: add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291)
    
  • [`526e6c7bde`](https://github.com/nodejs/node/commit/526e6c7bde)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932)
    
  • [`e6eee08692`](https://github.com/nodejs/node/commit/e6eee08692)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676)
    
  • [`32de361d70`](https://github.com/nodejs/node/commit/32de361d70)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662)
    
  • [`797f7f8a38`](https://github.com/nodejs/node/commit/797f7f8a38)] - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246)
    
  • [`abfd71b64c`](https://github.com/nodejs/node/commit/abfd71b64c)] - **(SEMVER-MINOR)** **src**: call overload ctor from the original ctor (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768)
    
  • [`1efae01b18`](https://github.com/nodejs/node/commit/1efae01b18)] - **(SEMVER-MINOR)** **src**: add a constructor overload for CallbackScope (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768)
    
  • [`1aa2080d29`](https://github.com/nodejs/node/commit/1aa2080d29)] - **(SEMVER-MINOR)** **src**: fix align in cares_wrap.h (Luan) [#&#8203;39610](https://github.com/nodejs/node/pull/39610)
    
  • [`f7933804ba`](https://github.com/nodejs/node/commit/f7933804ba)] - **(SEMVER-MINOR)** **src**: allow to negate boolean CLI flags (Michaël Zasso) [#&#8203;39023](https://github.com/nodejs/node/pull/39023)
    
  • [`6d06ac2202`](https://github.com/nodejs/node/commit/6d06ac2202)] - **(SEMVER-MINOR)** **src**: add --heapsnapshot-near-heap-limit option (Joyee Cheung) [#&#8203;33010](https://github.com/nodejs/node/pull/33010)
    
  • [`4091eb9db7`](https://github.com/nodejs/node/commit/4091eb9db7)] - **(SEMVER-MINOR)** **src**: move node_binding to modern THROW_ERR\* (James M Snell) [#&#8203;35469](https://github.com/nodejs/node/pull/35469)
    
  • [`577d228ca0`](https://github.com/nodejs/node/commit/577d228ca0)] - **(SEMVER-MINOR)** **src**: add way to get IsolateData and allocator from Environment (Anna Henningsen) [#&#8203;36441](https://github.com/nodejs/node/pull/36441)
    
  • [`658a266cd4`](https://github.com/nodejs/node/commit/658a266cd4)] - **(SEMVER-MINOR)** **src**: allow preventing SetPrepareStackTraceCallback (Shelley Vohr) [#&#8203;36447](https://github.com/nodejs/node/pull/36447)
    
  • [`f421422ea4`](https://github.com/nodejs/node/commit/f421422ea4)] - **(SEMVER-MINOR)** **src**: add maybe versions of EmitExit and EmitBeforeExit (Anna Henningsen) [#&#8203;35486](https://github.com/nodejs/node/pull/35486)
    
  • [`a62d4d60f4`](https://github.com/nodejs/node/commit/a62d4d60f4)] - **(SEMVER-MINOR)** **stream**: add readableDidRead if has been read from (Robert Nagy) [#&#8203;39589](https://github.com/nodejs/node/pull/39589)
    
  • [`63502131a3`](https://github.com/nodejs/node/commit/63502131a3)] - **(SEMVER-MINOR)** **stream**: pipeline accept Buffer as a valid first argument (Nitzan Uziely) [#&#8203;37739](https://github.com/nodejs/node/pull/37739)
    
  • [`72ef41c72b`](https://github.com/nodejs/node/commit/72ef41c72b)] - **(SEMVER-MINOR)** **test**: add wpt tests for Blob (Michaël Zasso) [#&#8203;36811](https://github.com/nodejs/node/pull/36811)
    
  • [`68bbebd42c`](https://github.com/nodejs/node/commit/68bbebd42c)] - **(SEMVER-MINOR)** **tls**: allow reading data into a static buffer (Andrey Pechkurov) [#&#8203;35753](https://github.com/nodejs/node/pull/35753)
    
  • [`587deacad9`](https://github.com/nodejs/node/commit/587deacad9)] - **(SEMVER-MINOR)** **tools**: add `Worker` to type-parser (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659)
    
  • [`1cbb74d63d`](https://github.com/nodejs/node/commit/1cbb74d63d)] - **(SEMVER-MINOR)** **url**: expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960)
    
  • [`8eb11356dd`](https://github.com/nodejs/node/commit/8eb11356dd)] - **(SEMVER-MINOR)** **util**: expose toUSVString (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814)
    
  • [`84fcdc3074`](https://github.com/nodejs/node/commit/84fcdc3074)] - **(SEMVER-MINOR)** **v8**: implement v8.stopCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807)
    
  • [`b238b6bf17`](https://github.com/nodejs/node/commit/b238b6bf17)] - **(SEMVER-MINOR)** **v8**: implement v8.takeCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807)
    
  • [`9f6bc58da8`](https://github.com/nodejs/node/commit/9f6bc58da8)] - **(SEMVER-MINOR)** **worker**: add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486)
    
    
Semver-patch commits
  • [`3a60de0135`](https://github.com/nodejs/node/commit/3a60de0135)] - **assert**: change status of legacy asserts (James M Snell) [#&#8203;38113](https://github.com/nodejs/node/pull/38113)
    
  • [`5a42be9719`](https://github.com/nodejs/node/commit/5a42be9719)] - **async_hooks**: use resource stack for AsyncLocalStorage run (Stephen Belanger) [#&#8203;39890](https://github.com/nodejs/node/pull/39890)
    
  • [`fc29ddb38e`](https://github.com/nodejs/node/commit/fc29ddb38e)] - **async_hooks**: emit promise trace events from JS (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`13296d1abf`](https://github.com/nodejs/node/commit/13296d1abf)] - **async_hooks**: eliminate native PromiseHook (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`48e5971e51`](https://github.com/nodejs/node/commit/48e5971e51)] - **async_hooks**: check for empty contexts before removing (Bryan English) [#&#8203;39095](https://github.com/nodejs/node/pull/39095)
    
  • [`691c00c48b`](https://github.com/nodejs/node/commit/691c00c48b)] - **async_hooks**: switch between native and context hooks correctly (Stephen Belanger) [#&#8203;38912](https://github.com/nodejs/node/pull/38912)
    
  • [`8484ab2a6c`](https://github.com/nodejs/node/commit/8484ab2a6c)] - **buffer**: avoid creating the backing store in the thread (James M Snell) [#&#8203;37052](https://github.com/nodejs/node/pull/37052)
    
  • [`c8d039a872`](https://github.com/nodejs/node/commit/c8d039a872)] - **buffer**: make Blob's constructor more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361)
    
  • [`05d73ac286`](https://github.com/nodejs/node/commit/05d73ac286)] - **buffer**: make Blob's slice method more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361)
    
  • [`e7cf2efc60`](https://github.com/nodejs/node/commit/e7cf2efc60)] - **buffer**: add @&#8203;[@&#8203;toStringTag](https://github.com/toStringTag) to Blob (Colin Ihrig) [#&#8203;37336](https://github.com/nodejs/node/pull/37336)
    
  • [`d99deeaf97`](https://github.com/nodejs/node/commit/d99deeaf97)] - **build**: fix update authors commit (Mestery) [#&#8203;39858](https://github.com/nodejs/node/pull/39858)
    
  • [`5e1cba81bf`](https://github.com/nodejs/node/commit/5e1cba81bf)] - **build**: add authors.yml (Tierney Cyren) [#&#8203;35831](https://github.com/nodejs/node/pull/35831)
    
  • [`ed3c332089`](https://github.com/nodejs/node/commit/ed3c332089)] - **build**: add option to hide console window (Cheng Zhao) [#&#8203;39712](https://github.com/nodejs/node/pull/39712)
    
  • [`c696f97c5e`](https://github.com/nodejs/node/commit/c696f97c5e)] - **build**: exclude markdown files from some GitHub Actions (Rich Trott) [#&#8203;39565](https://github.com/nodejs/node/pull/39565)
    
  • [`0bd6dd1ee2`](https://github.com/nodejs/node/commit/0bd6dd1ee2)] - **build**: use lts shorthand in GitHub Actions (Rich Trott) [#&#8203;39538](https://github.com/nodejs/node/pull/39538)
    
  • [`3482bca643`](https://github.com/nodejs/node/commit/3482bca643)] - **build**: override python executable path on configure (legendecas) [#&#8203;39465](https://github.com/nodejs/node/pull/39465)
    
  • [`61261cdb8e`](https://github.com/nodejs/node/commit/61261cdb8e)] - **build**: use Node.js 14 in commit-lint.yml (Rich Trott) [#&#8203;39506](https://github.com/nodejs/node/pull/39506)
    
  • [`719f1563c1`](https://github.com/nodejs/node/commit/719f1563c1)] - **build**: fix `host_arch_cc()` for AIX/IBM i (Richard Lau) [#&#8203;39481](https://github.com/nodejs/node/pull/39481)
    
  • [`6e06b2ff9d`](https://github.com/nodejs/node/commit/6e06b2ff9d)] - **build**: update coverage Makefile target comments (Richard Lau) [#&#8203;39365](https://github.com/nodejs/node/pull/39365)
    
  • [`4e28d2b2c0`](https://github.com/nodejs/node/commit/4e28d2b2c0)] - **build**: run workflows when a PR is ready for review (Michaël Zasso) [#&#8203;39405](https://github.com/nodejs/node/pull/39405)
    
  • [`0da5d74da4`](https://github.com/nodejs/node/commit/0da5d74da4)] - **build**: update to setup-node@v2 (Rich Trott) [#&#8203;39366](https://github.com/nodejs/node/pull/39366)
    
  • [`f2e1c2267e`](https://github.com/nodejs/node/commit/f2e1c2267e)] - **build**: update gcovr for gcc 8 compatibility (Richard Lau) [#&#8203;39326](https://github.com/nodejs/node/pull/39326)
    
  • [`131dd6ec4d`](https://github.com/nodejs/node/commit/131dd6ec4d)] - **build**: remove unused comment in Makefile (LitoMore) [#&#8203;39171](https://github.com/nodejs/node/pull/39171)
    
  • [`40e46321b0`](https://github.com/nodejs/node/commit/40e46321b0)] - **build**: uvwasi honours node_shared_libuv (Jérémy Lal) [#&#8203;39260](https://github.com/nodejs/node/pull/39260)
    
  • [`5c6ab719f2`](https://github.com/nodejs/node/commit/5c6ab719f2)] - **build**: shorten path used in tarball build workflow (Richard Lau) [#&#8203;39192](https://github.com/nodejs/node/pull/39192)
    
  • [`870526374c`](https://github.com/nodejs/node/commit/870526374c)] - **build**: add `library_files` to gyp variables (himself65) [#&#8203;39293](https://github.com/nodejs/node/pull/39293)
    
  • [`0e221156aa`](https://github.com/nodejs/node/commit/0e221156aa)] - **build**: pass directory instead of list of files to js2c.py (Joyee Cheung) [#&#8203;39069](https://github.com/nodejs/node/pull/39069)
    
  • [`8d8415415b`](https://github.com/nodejs/node/commit/8d8415415b)] - **build**: don't pass `--mode` argument to V8 test-runner (Richard Lau) [#&#8203;39055](https://github.com/nodejs/node/pull/39055)
    
  • [`2d50217634`](https://github.com/nodejs/node/commit/2d50217634)] - **build**: fix commit linter on unrebased PRs (Mary Marchini) [#&#8203;39121](https://github.com/nodejs/node/pull/39121)
    
  • [`c93d5e006e`](https://github.com/nodejs/node/commit/c93d5e006e)] - **build**: use Actions to validate commit message (Mary Marchini) [#&#8203;32417](https://github.com/nodejs/node/pull/32417)
    
  • [`0bcaf9c4d1`](https://github.com/nodejs/node/commit/0bcaf9c4d1)] - **child_process**: fix spawn and fork abort behavior (Nitzan Uziely) [#&#8203;37325](https://github.com/nodejs/node/pull/37325)
    
  • [`8010c83180`](https://github.com/nodejs/node/commit/8010c83180)] - **child_process**: fix bad abort signal leak (Nitzan Uziely) [#&#8203;37257](https://github.com/nodejs/node/pull/37257)
    
  • [`32aff2f5a0`](https://github.com/nodejs/node/commit/32aff2f5a0)] - **console**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36753](https://github.com/nodejs/node/pull/36753)
    
  • [`f46e8cdf79`](https://github.com/nodejs/node/commit/f46e8cdf79)] - **debugger**: remove undefined parameter (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570)
    
  • [`482459edd4`](https://github.com/nodejs/node/commit/482459edd4)] - **debugger**: validate sec-websocket-accept response header (Chris Opperwall) [#&#8203;39357](https://github.com/nodejs/node/pull/39357)
    
  • [`e9c46107d7`](https://github.com/nodejs/node/commit/e9c46107d7)] - **debugger**: rename internal module (Rich Trott) [#&#8203;39378](https://github.com/nodejs/node/pull/39378)
    
  • [`49e0883c75`](https://github.com/nodejs/node/commit/49e0883c75)] - **debugger**: indicate server is ending (Rich Trott) [#&#8203;39334](https://github.com/nodejs/node/pull/39334)
    
  • [`72a3419510`](https://github.com/nodejs/node/commit/72a3419510)] - **debugger**: rename inspector-cli test module to debugger (Rich Trott) [#&#8203;38530](https://github.com/nodejs/node/pull/38530)
    
  • [`b3352cfba4`](https://github.com/nodejs/node/commit/b3352cfba4)] - **debugger**: prevent simultaneous heap snapshots (Rich Trott) [#&#8203;39638](https://github.com/nodejs/node/pull/39638)
    
  • [`e5826ab1c2`](https://github.com/nodejs/node/commit/e5826ab1c2)] - **debugger**: remove final lint exceptions in inspect_repl.js (Rich Trott) [#&#8203;39078](https://github.com/nodejs/node/pull/39078)
    
  • [`34c0701952`](https://github.com/nodejs/node/commit/34c0701952)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#&#8203;39829](https://github.com/nodejs/node/pull/39829)
    
  • [`42359ab582`](https://github.com/nodejs/node/commit/42359ab582)] - **deps**: upgrade to libuv 1.42.0 (Luigi Pinca) [#&#8203;39525](https://github.com/nodejs/node/pull/39525)
    
  • [`d863a9db68`](https://github.com/nodejs/node/commit/d863a9db68)] - **deps**: bump HdrHistogram_C to 0.11.2 (Matteo Collina) [#&#8203;39462](https://github.com/nodejs/node/pull/39462)
    
  • [`4c93968a62`](https://github.com/nodejs/node/commit/4c93968a62)] - **deps**: extract gtest source files to deps/googletest (legendecas) [#&#8203;39386](https://github.com/nodejs/node/pull/39386)
    
  • [`fcae391fed`](https://github.com/nodejs/node/commit/fcae391fed)] - **deps**: update Acorn to v8.4.1 (Michaël Zasso) [#&#8203;39166](https://github.com/nodejs/node/pull/39166)
    
  • [`327838dd96`](https://github.com/nodejs/node/commit/327838dd96)] - **deps**: V8: backport [`c922458`](https://github.com/nodejs/node/commit/c9224589cf53) (Stephen Belanger) [#&#8203;39743](https://github.com/nodejs/node/pull/39743)
    
  • [`89c1bbd7b2`](https://github.com/nodejs/node/commit/89c1bbd7b2)] - **deps**: V8: cherry-pick [`81814ed`](https://github.com/nodejs/node/commit/81814ed44574) (Stephen Belanger) [#&#8203;39719](https://github.com/nodejs/node/pull/39719)
    
  • [`8b9215d07c`](https://github.com/nodejs/node/commit/8b9215d07c)] - **deps**: update to cjs-module-lexer@1.2.2 (Guy Bedford) [#&#8203;39402](https://github.com/nodejs/node/pull/39402)
    
  • [`e201293ddb`](https://github.com/nodejs/node/commit/e201293ddb)] - **dgram**: use simplified validator (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753)
    
  • [`6fdac38f91`](https://github.com/nodejs/node/commit/6fdac38f91)] - **doc,fs**: remove experimental status for WHATWG URL as path (Antoine du Hamel) [#&#8203;38870](https://github.com/nodejs/node/pull/38870)
    
  • [`d56e8268f9`](https://github.com/nodejs/node/commit/d56e8268f9)] - **doc,lib**: prepare for stricter multi-line array linting (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088)
    
  • [`5500ae9236`](https://github.com/nodejs/node/commit/5500ae9236)] - **domain**: do not add domain to promise from other context (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`dc855af18e`](https://github.com/nodejs/node/commit/dc855af18e)] - **errors**: don't throw TypeError on missing export (Benjamin Coe) [#&#8203;39017](https://github.com/nodejs/node/pull/39017)
    
  • [`c13eadc218`](https://github.com/nodejs/node/commit/c13eadc218)] - **errors**: eliminate all overhead for hidden calls (Momtchil Momtchev) [#&#8203;35644](https://github.com/nodejs/node/pull/35644)
    
  • [`d42bbe48c5`](https://github.com/nodejs/node/commit/d42bbe48c5)] - **esm**: use correct URL for error decoration (Bradley Farias) [#&#8203;37854](https://github.com/nodejs/node/pull/37854)
    
  • [`9db3304368`](https://github.com/nodejs/node/commit/9db3304368)] - **esm**: update to correct deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147)
    
  • [`e73bfed2f4`](https://github.com/nodejs/node/commit/e73bfed2f4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918)
    
  • [`c1782ea1f5`](https://github.com/nodejs/node/commit/c1782ea1f5)] - **events**: allow the options argument to be null (Luigi Pinca) [#&#8203;39486](https://github.com/nodejs/node/pull/39486)
    
  • [`d2834fb97f`](https://github.com/nodejs/node/commit/d2834fb97f)] - **fs**: improve fsPromises writeFile performance (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610)
    
  • [`ee1d13c90d`](https://github.com/nodejs/node/commit/ee1d13c90d)] - **fs**: use byteLength to handle ArrayBuffer views (Michaël Zasso) [#&#8203;38187](https://github.com/nodejs/node/pull/38187)
    
  • [`b38d6b475b`](https://github.com/nodejs/node/commit/b38d6b475b)] - **fs**: fixup negative length in fs.truncate (James M Snell) [#&#8203;37483](https://github.com/nodejs/node/pull/37483)
    
  • [`fe28128f3c`](https://github.com/nodejs/node/commit/fe28128f3c)] - **fs**: add docs and tests for `AsyncIterable` support in `fh.writeFile` (Antoine du Hamel) [#&#8203;39836](https://github.com/nodejs/node/pull/39836)
    
  • [`2b0e2706c0`](https://github.com/nodejs/node/commit/2b0e2706c0)] - **fs**: improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608)
    
  • [`a4d6f78619`](https://github.com/nodejs/node/commit/a4d6f78619)] - **fs**: move constants to internal/fs/utils.js (Darshan Sen) [#&#8203;38061](https://github.com/nodejs/node/pull/38061)
    
  • [`402f7722ce`](https://github.com/nodejs/node/commit/402f7722ce)] - **fs**: add validatePosition and use in read and readSync (Darshan Sen) [#&#8203;37051](https://github.com/nodejs/node/pull/37051)
    
  • [`2bc301dcff`](https://github.com/nodejs/node/commit/2bc301dcff)] - **http**: decodes url.username and url.password for authorization header (Lew Gordon) [#&#8203;39310](https://github.com/nodejs/node/pull/39310)
    
  • [`5459f4af33`](https://github.com/nodejs/node/commit/5459f4af33)] - **http**: clean up HttpParser correctly (Tobias Koppers) [#&#8203;39292](https://github.com/nodejs/node/pull/39292)
    
  • [`8b3feee148`](https://github.com/nodejs/node/commit/8b3feee148)] - **http,https**: align server option of https with http (Qingyu Deng) [#&#8203;38992](https://github.com/nodejs/node/pull/38992)
    
  • [`cf59e87c8b`](https://github.com/nodejs/node/commit/cf59e87c8b)] - **inspector**: update inspector_protocol to [`89c4adf`](https://github.com/nodejs/node/commit/89c4adf) (Rich Trott) [#&#8203;39650](https://github.com/nodejs/node/pull/39650)
    
  • [`ea5f2047a2`](https://github.com/nodejs/node/commit/ea5f2047a2)] - **inspector**: update inspector_protocol to [`8ec18cf`](https://github.com/nodejs/node/commit/8ec18cf) (Rich Trott) [#&#8203;39614](https://github.com/nodejs/node/pull/39614)
    
  • [`1e5aca550c`](https://github.com/nodejs/node/commit/1e5aca550c)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748)
    
  • [`8a2ce5dae6`](https://github.com/nodejs/node/commit/8a2ce5dae6)] - **inspector**: move inspector async hooks to environment (Joyee Cheung) [#&#8203;39112](https://github.com/nodejs/node/pull/39112)
    
  • [`338189ff6f`](https://github.com/nodejs/node/commit/338189ff6f)] - **lib**: simplify validators (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753)
    
  • [`e1019351e8`](https://github.com/nodejs/node/commit/e1019351e8)] - **lib**: cleanup validation (Voltrex) [#&#8203;39652](https://github.com/nodejs/node/pull/39652)
    
  • [`dbaf4988bc`](https://github.com/nodejs/node/commit/dbaf4988bc)] - **lib**: use validators (Voltrex) [#&#8203;39663](https://github.com/nodejs/node/pull/39663)
    
  • [`9c33e4bfb2`](https://github.com/nodejs/node/commit/9c33e4bfb2)] - **lib**: use validator (Voltrex) [#&#8203;39547](https://github.com/nodejs/node/pull/39547)
    
  • [`5b1104291d`](https://github.com/nodejs/node/commit/5b1104291d)] - **lib**: use `validateObject` (Voltrex) [#&#8203;39605](https://github.com/nodejs/node/pull/39605)
    
  • [`1ce81079df`](https://github.com/nodejs/node/commit/1ce81079df)] - **lib**: remove use of array destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818)
    
  • [`b24b34effd`](https://github.com/nodejs/node/commit/b24b34effd)] - **lib**: add `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005)
    
  • [`7cdff9a6a8`](https://github.com/nodejs/node/commit/7cdff9a6a8)] - **lib**: refactor `primordials.makeSafe` to use more primordials (ExE Boss) [#&#8203;36865](https://github.com/nodejs/node/pull/36865)
    
  • [`1737352580`](https://github.com/nodejs/node/commit/1737352580)] - **lib**: comment explaining special-case handling of promises (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135)
    
  • [`7f54cccb6c`](https://github.com/nodejs/node/commit/7f54cccb6c)] - **lib**: refactor to use validateString (ZiJian Liu) [#&#8203;37006](https://github.com/nodejs/node/pull/37006)
    
  • [`98259dc527`](https://github.com/nodejs/node/commit/98259dc527)] - **module**: improve support of data: URLs (Antoine du Hamel) [#&#8203;37392](https://github.com/nodejs/node/pull/37392)
    
  • [`9aba2888a1`](https://github.com/nodejs/node/commit/9aba2888a1)] - **net**: throw ERR_OUT_OF_RANGE if blockList.addSubnet prefix is NaN (ZiJian Liu) [#&#8203;36732](https://github.com/nodejs/node/pull/36732)
    
  • [`2ca12c83b4`](https://github.com/nodejs/node/commit/2ca12c83b4)] - **node-api**: handle pending exception in cb wrapper (Michael Dawson) [#&#8203;39476](https://github.com/nodejs/node/pull/39476)
    
  • [`9e5edf2158`](https://github.com/nodejs/node/commit/9e5edf2158)] - **node-api**: cctest on v8impl::Reference (legendecas) [#&#8203;38970](https://github.com/nodejs/node/pull/38970)
    
  • [`a74032a490`](https://github.com/nodejs/node/commit/a74032a490)] - **node-api**: rtn pending excep on napi_new_instance (legendecas) [#&#8203;38798](https://github.com/nodejs/node/pull/38798)
    
  • [`bcb85adee6`](https://github.com/nodejs/node/commit/bcb85adee6)] - **policy**: canonicalize before resolving specifiers (Bradley Farias) [#&#8203;37863](https://github.com/nodejs/node/pull/37863)
    
  • [`0ff520cf02`](https://github.com/nodejs/node/commit/0ff520cf02)] - **policy**: fix integrity when DEFAULT_ENCODING is set (Tobias Nießen) [#&#8203;39750](https://github.com/nodejs/node/pull/39750)
    
  • [`6c87b591d9`](https://github.com/nodejs/node/commit/6c87b591d9)] - **readline**: allow completer to rewrite existing input (Anna Henningsen) [#&#8203;39178](https://github.com/nodejs/node/pull/39178)
    
  • [`37b4708b19`](https://github.com/nodejs/node/commit/37b4708b19)] - **repl**: fix tla function hoisting (Don Jayamanne) [#&#8203;39745](https://github.com/nodejs/node/pull/39745)
    
  • [`9264caeafe`](https://github.com/nodejs/node/commit/9264caeafe)] - **repl**: do not include legacy getter/setter methods in completion (Anna Henningsen) [#&#8203;39576](https://github.com/nodejs/node/pull/39576)
    
  • [`50c5e71e22`](https://github.com/nodejs/node/commit/50c5e71e22)] - **repl**: correctly hoist top level await declarations (ejose19) [#&#8203;39265](https://github.com/nodejs/node/pull/39265)
    
  • [`1e065a0a43`](https://github.com/nodejs/node/commit/1e065a0a43)] - **repl**: processTopLevelAwait fallback error handling (ejose19) [#&#8203;39290](https://github.com/nodejs/node/pull/39290)
    
  • [`99664494ff`](https://github.com/nodejs/node/commit/99664494ff)] - **repl**: ensure correct syntax err for await parsing (Guy Bedford) [#&#8203;39154](https://github.com/nodejs/node/pull/39154)
    
  • [`761dafafde`](https://github.com/nodejs/node/commit/761dafafde)] - **repl**: fix Ctrl+C on top level await (Antoine du Hamel) [#&#8203;38656](https://github.com/nodejs/node/pull/38656)
    
  • [`88b02cbb08`](https://github.com/nodejs/node/commit/88b02cbb08)] - **repl**: add auto‑completion for dynamic import calls (ExE Boss) [#&#8203;37178](https://github.com/nodejs/node/pull/37178)
    
  • [`8f3a8830ba`](https://github.com/nodejs/node/commit/8f3a8830ba)] - **repl**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37188](https://github.com/nodejs/node/pull/37188)
    
  • [`a48e2d6ec7`](https://github.com/nodejs/node/commit/a48e2d6ec7)] - **repl**: refactor to avoid unsafe array iteration (Darshan Sen) [#&#8203;36663](https://github.com/nodejs/node/pull/36663)
    
  • [`20ffadf437`](https://github.com/nodejs/node/commit/20ffadf437)] - **repl**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36264](https://github.com/nodejs/node/pull/36264)
    
  • [`f69c934ad4`](https://github.com/nodejs/node/commit/f69c934ad4)] - **report**: generates report on threads with no isolates (legendecas) [#&#8203;38994](https://github.com/nodejs/node/pull/38994)
    
  • [`c4686fa5a7`](https://github.com/nodejs/node/commit/c4686fa5a7)] - **src**: fix TextDecoder final flush size calculation (James M Snell) [#&#8203;39737](https://github.com/nodejs/node/pull/39737)
    
  • [`495cd02c20`](https://github.com/nodejs/node/commit/495cd02c20)] - **src**: add cosmetic space character to `async_wrap.h` file (Juan José Arboleda) [#&#8203;39459](https://github.com/nodejs/node/pull/39459)
    
  • [`985ec48975`](https://github.com/nodejs/node/commit/985ec48975)] - **src**: print native module id on native module not found (legendecas) [#&#8203;39460](https://github.com/nodejs/node/pull/39460)
    
  • [`e6ff7e648e`](https://github.com/nodejs/node/commit/e6ff7e648e)] - **src**: close HandleWraps instead of deleting them in OnGCCollect() (Anna Henningsen) [#&#8203;39441](https://github.com/nodejs/node/pull/39441)
    
  • [`5c473bdc12`](https://github.com/nodejs/node/commit/5c473bdc12)] - **src**: remove unused guards around node-api reference (legendecas) [#&#8203;38334](https://github.com/nodejs/node/pull/38334)
    
  • [`41213bd507`](https://github.com/nodejs/node/commit/41213bd507)] - **src**: add JSDoc typings for v8 (Voltrex) [#&#8203;38944](https://github.com/nodejs/node/pull/38944)
    
  • [`02b1df9fac`](https://github.com/nodejs/node/commit/02b1df9fac)] - **src**: fix crash in AfterGetAddrInfo (Anna Henningsen) [#&#8203;39735](https://github.com/nodejs/node/pull/39735)
    
  • [`99493b07d4`](https://github.com/nodejs/node/commit/99493b07d4)] - **src**: fix fatal errors when a current isolate not exist (legendecas) [#&#8203;38624](https://github.com/nodejs/node/pull/38624)
    
  • [`9433c28c14`](https://github.com/nodejs/node/commit/9433c28c14)] - **src**: remove more extra semis from member fns (Shelley Vohr) [#&#8203;38744](https://github.com/nodejs/node/pull/38744)
    
  • [`bad990c934`](https://github.com/nodejs/node/commit/bad990c934)] - **src**: use BaseObject::kInteralFieldCount in Blob (Joyee Cheung) [#&#8203;36991](https://github.com/nodejs/node/pull/36991)
    
  • [`0a759dff52`](https://github.com/nodejs/node/commit/0a759dff52)] - **src**: compare IPv4 addresses in host byte order (Colin Ihrig) [#&#8203;39096](https://github.com/nodejs/node/pull/39096)
    
  • [`d73181f243`](https://github.com/nodejs/node/commit/d73181f243)] - **src**: reduce duplicated boilerplate with new env utility fn (James M Snell) [#&#8203;36536](https://github.com/nodejs/node/pull/36536)
    
  • [`85af15a8b6`](https://github.com/nodejs/node/commit/85af15a8b6)] - **src**: allow instances of net.BlockList to be created internally (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741)
    
  • [`1008c80176`](https://github.com/nodejs/node/commit/1008c80176)] - **src**: add SocketAddressLRU Utility (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618)
    
  • [`e404841a9c`](https://github.com/nodejs/node/commit/e404841a9c)] - **src**: set PromiseHooks by Environment (Bryan English) [#&#8203;38821](https://github.com/nodejs/node/pull/38821)
    
  • [`c8c290ae8f`](https://github.com/nodejs/node/commit/c8c290ae8f)] - **src,zlib**: tighten up Z_\*\_WINDOWBITS macros (Khaidi Chu) [#&#8203;39115](https://github.com/nodejs/node/pull/39115)
    
  • [`de171177b4`](https://github.com/nodejs/node/commit/de171177b4)] - **stream**: clean `endWritableNT` (Mestery) [#&#8203;39645](https://github.com/nodejs/node/pull/39645)
    
  • [`32a5b8f59b`](https://github.com/nodejs/node/commit/32a5b8f59b)] - **stream**: move duplicated code to an internal module (Rich Trott) [#&#8203;37508](https://github.com/nodejs/node/pull/37508)
    
  • [`f90b22d351`](https://github.com/nodejs/node/commit/f90b22d351)] - **util**: add internal createDeferredPromise() (Colin Ihrig) [#&#8203;37095](https://github.com/nodejs/node/pull/37095)
    
  • [`61b4a98480`](https://github.com/nodejs/node/commit/61b4a98480)] - **zlib**: avoid converting `Uint8Array` instances to `Buffer` (Antoine du Hamel) [#&#8203;39492](https://github.com/nodejs/node/pull/39492)
    
    
Documentation commits
  • [`8efd559347`](https://github.com/nodejs/node/commit/8efd559347)] - **doc**: add duplicate CVE check in sec. release doc (Daniel Bevenius) [#&#8203;39845](https://github.com/nodejs/node/pull/39845)
    
  • [`7b123ec78d`](https://github.com/nodejs/node/commit/7b123ec78d)] - **doc**: improve description of the triagers team (Michaël Zasso) [#&#8203;39833](https://github.com/nodejs/node/pull/39833)
    
  • [`615477f67b`](https://github.com/nodejs/node/commit/615477f67b)] - **doc**: update instructions for cc (Michael Dawson) [#&#8203;39674](https://github.com/nodejs/node/pull/39674)
    
  • [`1a8a26d92e`](https://github.com/nodejs/node/commit/1a8a26d92e)] - **doc**: fix malformed changelog entries (Rich Trott) [#&#8203;39791](https://github.com/nodejs/node/pull/39791)
    
  • [`9e772ca9a1`](https://github.com/nodejs/node/commit/9e772ca9a1)] - **doc**: fix lint errors in packages.md (Rich Trott) [#&#8203;39792](https://github.com/nodejs/node/pull/39792)
    
  • [`2624c98207`](https://github.com/nodejs/node/commit/2624c98207)] - **doc**: add example of self-reference in scoped packages (Jesús Leganés-Combarro 'piranna) [#&#8203;37630](https://github.com/nodejs/node/pull/37630)
    
  • [`00f2cee26c`](https://github.com/nodejs/node/commit/00f2cee26c)] - **doc**: add himadriganguly as a triager (Himadri Ganguly) [#&#8203;39757](https://github.com/nodejs/node/pull/39757)
    
  • [`95b9cc78d2`](https://github.com/nodejs/node/commit/95b9cc78d2)] - **doc**: fix YAML comment opening tags (Jayden Seric) [#&#8203;38324](https://github.com/nodejs/node/pull/38324)
    
  • [`49a7962d58`](https://github.com/nodejs/node/commit/49a7962d58)] - **doc**: fix `fs.rmdir` `recursive` option deprecation history (Antoine du Hamel) [#&#8203;39728](https://github.com/nodejs/node/pull/39728)
    
  • [`53300d33c7`](https://github.com/nodejs/node/commit/53300d33c7)] - **doc**: fixed variable names in queueMicrotask example (ashish maurya) [#&#8203;39634](https://github.com/nodejs/node/pull/39634)
    
  • [`df1e20aaf1`](https://github.com/nodejs/node/commit/df1e20aaf1)] - **doc**: update debugger.md description and examples (Rich Trott) [#&#8203;39661](https://github.com/nodejs/node/pull/39661)
    
  • [`9672bbf01c`](https://github.com/nodejs/node/commit/9672bbf01c)] - **doc**: fix color contrast issue in light mode (Rich Trott) [#&#8203;39660](https://github.com/nodejs/node/pull/39660)
    
  • [`48281ecfcd`](https://github.com/nodejs/node/commit/48281ecfcd)] - **doc**: add code examples to `Writable.destroy()` and `Writable.destroyed` (Juan José Arboleda) [#&#8203;39491](https://github.com/nodejs/node/pull/39491)
    
  • [`8799a134e4`](https://github.com/nodejs/node/commit/8799a134e4)] - **doc**: move `NODE_MODULE_VERSION` in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`89c8afcf48`](https://github.com/nodejs/node/commit/89c8afcf48)] - **doc**: remove outdated ARM information from release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`a718b26f28`](https://github.com/nodejs/node/commit/a718b26f28)] - **doc**: fence command examples in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`42669bb049`](https://github.com/nodejs/node/commit/42669bb049)] - **doc**: update backport labels in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544)
    
  • [`a437de3c5f`](https://github.com/nodejs/node/commit/a437de3c5f)] - **doc**: add code example to `http.createServer` method (Juan José Arboleda) [#&#8203;39455](https://github.com/nodejs/node/pull/39455)
    
  • [`695569fc17`](https://github.com/nodejs/node/commit/695569fc17)] - **doc**: move lball@redhat.com to emeritus (Lance Ball) [#&#8203;39501](https://github.com/nodejs/node/pull/39501)
    
  • [`c7523da86c`](https://github.com/nodejs/node/commit/c7523da86c)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39488](https://github.com/nodejs/node/pull/39488)
    
  • [`e826109d5c`](https://github.com/nodejs/node/commit/e826109d5c)] - **doc**: update strategic initiative champion (Rich Trott) [#&#8203;39487](https://github.com/nodejs/node/pull/39487)
    
  • [`39da842051`](https://github.com/nodejs/node/commit/39da842051)] - **doc**: simplify unnecessarily specific .mailmap entries (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430)
    
  • [`6a4c6ce4d7`](https://github.com/nodejs/node/commit/6a4c6ce4d7)] - **doc**: update checkbox label in backporting guide (Darshan Sen) [#&#8203;39420](https://github.com/nodejs/node/pull/39420)
    
  • [`d17afa08bd`](https://github.com/nodejs/node/commit/d17afa08bd)] - **doc**: remove \_Addenda\_ from headers (Rich Trott) [#&#8203;39427](https://github.com/nodejs/node/pull/39427)
    
  • [`ae97a96d9e`](https://github.com/nodejs/node/commit/ae97a96d9e)] - **doc**: simplify .mailmap file (Rich Trott) [#&#8203;39418](https://github.com/nodejs/node/pull/39418)
    
  • [`a3dee70f66`](https://github.com/nodejs/node/commit/a3dee70f66)] - **doc**: fix broken internal link in http.md (Rich Trott) [#&#8203;39425](https://github.com/nodejs/node/pull/39425)
    
  • [`ca947ac524`](https://github.com/nodejs/node/commit/ca947ac524)] - **doc**: remove outdated step in onboarding exercise (Rich Trott) [#&#8203;39410](https://github.com/nodejs/node/pull/39410)
    
  • [`86e12607f0`](https://github.com/nodejs/node/commit/86e12607f0)] - **doc**: revise strategic initiatives text (Rich Trott) [#&#8203;39417](https://github.com/nodejs/node/pull/39417)
    
  • [`cd8e773d28`](https://github.com/nodejs/node/commit/cd8e773d28)] - **doc**: update mailmap and AUTHORS (Rich Trott) [#&#8203;39393](https://github.com/nodejs/node/pull/39393)
    
  • [`8376b07ae8`](https://github.com/nodejs/node/commit/8376b07ae8)] - **doc**: use a details tag for completed initiatves (Rich Trott) [#&#8203;39416](https://github.com/nodejs/node/pull/39416)
    
  • [`43d28f5f00`](https://github.com/nodejs/node/commit/43d28f5f00)] - **doc**: update commit-queue.md to indicate GitHub Actions are checked (Rich Trott) [#&#8203;39411](https://github.com/nodejs/node/pull/39411)
    
  • [`63b0603e95`](https://github.com/nodejs/node/commit/63b0603e95)] - **doc**: use \_pull request\_ instead of \_PR\_ in onboarding doc (Rich Trott) [#&#8203;39409](https://github.com/nodejs/node/pull/39409)
    
  • [`73f784f764`](https://github.com/nodejs/node/commit/73f784f764)] - **doc**: add strategic initiatives from TSC repo (Rich Trott) [#&#8203;39394](https://github.com/nodejs/node/pull/39394)
    
  • [`1a494d51dc`](https://github.com/nodejs/node/commit/1a494d51dc)] - **doc**: standardize on \_pull request\_ (Rich Trott) [#&#8203;39384](https://github.com/nodejs/node/pull/39384)
    
  • [`eb12e4ccfb`](https://github.com/nodejs/node/commit/eb12e4ccfb)] - **doc**: make minor edits to pull request text (Rich Trott) [#&#8203;39383](https://github.com/nodejs/node/pull/39383)
    
  • [`ab0bf4fa1a`](https://github.com/nodejs/node/commit/ab0bf4fa1a)] - **doc**: add docker-node and build-wg issue contents (Daniel Bevenius) [#&#8203;39215](https://github.com/nodejs/node/pull/39215)
    
  • [`8438e8bf33`](https://github.com/nodejs/node/commit/8438e8bf33)] - **doc**: add instructions for core vuln files (Daniel Bevenius) [#&#8203;39220](https://github.com/nodejs/node/pull/39220)
    
  • [`c3cfefc2d3`](https://github.com/nodejs/node/commit/c3cfefc2d3)] - **doc**: standardize on not capitalizing \_collaborator\_ (Rich Trott) [#&#8203;39379](https://github.com/nodejs/node/pull/39379)
    
  • [`672023f9f2`](https://github.com/nodejs/node/commit/672023f9f2)] - **doc**: update mailmap and deduplicate AUTHORS entry (Rich Trott) [#&#8203;39391](https://github.com/nodejs/node/pull/39391)
    
  • [`baaa397e39`](https://github.com/nodejs/node/commit/baaa397e39)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39367](https://github.com/nodejs/node/pull/39367)
    
  • [`f39d93a428`](https://github.com/nodejs/node/commit/f39d93a428)] - **doc**: move jdalton to emeritus (Rich Trott) [#&#8203;39380](https://github.com/nodejs/node/pull/39380)
    
  • [`0b1ce72d64`](https://github.com/nodejs/node/commit/0b1ce72d64)] - **doc**: edit guide on pull requests (Rich Trott) [#&#8203;39359](https://github.com/nodejs/node/pull/39359)
    
  • [`6f0b3a20d1`](https://github.com/nodejs/node/commit/6f0b3a20d1)] - **doc**: add text about moving long commit lists out of PR description (Danielle Adams) [#&#8203;39186](https://github.com/nodejs/node/pull/39186)
    
  • [`9d43ce3b80`](https://github.com/nodejs/node/commit/9d43ce3b80)] - **doc**: do not use & for "and" in text (Rich Trott) [#&#8203;39345](https://github.com/nodejs/node/pull/39345)
    
  • [`25c104f21f`](https://github.com/nodejs/node/commit/25c104f21f)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39277](https://github.com/nodejs/node/pull/39277)
    
  • [`b47b47930c`](https://github.com/nodejs/node/commit/b47b47930c)] - **doc**: put information about the past in details tags (Rich Trott) [#&#8203;39321](https://github.com/nodejs/node/pull/39321)
    
  • [`5eafc3afa8`](https://github.com/nodejs/node/commit/5eafc3afa8)] - **doc**: move AndreasMadsen to emeritus (Rich Trott) [#&#8203;39315](https://github.com/nodejs/node/pull/39315)
    
  • [`fbf658f1d5`](https://github.com/nodejs/node/commit/fbf658f1d5)] - **doc**: move ofrobots to collaborator emeritus (Rich Trott) [#&#8203;39307](https://github.com/nodejs/node/pull/39307)
    
  • [`fc7d714149`](https://github.com/nodejs/node/commit/fc7d714149)] - **doc**: simplify CRAN mirror text in benchmark guide (Rich Trott) [#&#8203;39287](https://github.com/nodejs/node/pull/39287)
    
  • [`22f0b7e0d0`](https://github.com/nodejs/node/commit/22f0b7e0d0)] - **doc**: use "repository" instead of "repo" in onboarding.md (Rich Trott) [#&#8203;39286](https://github.com/nodejs/node/pull/39286)
    
  • [`f46ae3ffb6`](https://github.com/nodejs/node/commit/f46ae3ffb6)] - **doc**: update collaborator email address (Rich Trott) [#&#8203;39263](https://github.com/nodejs/node/pull/39263)
    
  • [`8c569cef88`](https://github.com/nodejs/node/commit/8c569cef88)] - **doc**: remove GitHub mark (Rich Trott) [#&#8203;39251](https://github.com/nodejs/node/pull/39251)
    
  • [`b4a0c5a384`](https://github.com/nodejs/node/commit/b4a0c5a384)] - **doc**: remove emailing the TSC from offboarding doc (Rich Trott) [#&#8203;39280](https://github.com/nodejs/node/pull/39280)
    
  • [`a4d70ff0cc`](https://github.com/nodejs/node/commit/a4d70ff0cc)] - **doc**: use "repository" in guides versus repo (Michael Dawson) [#&#8203;39198](https://github.com/nodejs/node/pull/39198)
    
  • [`31163ed9ee`](https://github.com/nodejs/node/commit/31163ed9ee)] - **doc**: update Node-api version matrix (Michael Dawson) [#&#8203;39197](https://github.com/nodejs/node/pull/39197)
    
  • [`9357547519`](https://github.com/nodejs/node/commit/9357547519)] - **doc**: update node-api support matrix (Michael Dawson) [#&#8203;38424](https://github.com/nodejs/node/pull/38424)
    
  • [`f08e9d5230`](https://github.com/nodejs/node/commit/f08e9d5230)] - **doc**: remove onboarding-extras (Rich Trott) [#&#8203;39252](https://github.com/nodejs/node/pull/39252)
    
  • [`6466faf26d`](https://github.com/nodejs/node/commit/6466faf26d)] - **doc**: move Sam Ruby to emeritus (Rich Trott) [#&#8203;39264](https://github.com/nodejs/node/pull/39264)
    
  • [`06acbf6453`](https://github.com/nodejs/node/commit/06acbf6453)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39250](https://github.com/nodejs/node/pull/39250)
    
  • [`9178805653`](https://github.com/nodejs/node/commit/9178805653)] - **doc**: fix color contrast for anchor marks in dark mode (Rich Trott) [#&#8203;39168](https://github.com/nodejs/node/pull/39168)
    
  • [`c6118b23f7`](https://github.com/nodejs/node/commit/c6118b23f7)] - **doc**: rename datatypes to data types (FrankEntriken) [#&#8203;39209](https://github.com/nodejs/node/pull/39209)
    
  • [`fdd315918f`](https://github.com/nodejs/node/commit/fdd315918f)] - **doc**: normalize CSS variable names and indentation (Rich Trott) [#&#8203;39199](https://github.com/nodejs/node/pull/39199)
    
  • [`9c7c44781c`](https://github.com/nodejs/node/commit/9c7c44781c)] - **doc**: use more consistent formatting for deprecations (Rich Trott) [#&#8203;39218](https://github.com/nodejs/node/pull/39218)
    
  • [`c97ebd7905`](https://github.com/nodejs/node/commit/c97ebd7905)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39217](https://github.com/nodejs/node/pull/39217)
    
  • [`c4a3a24848`](https://github.com/nodejs/node/commit/c4a3a24848)] - **doc**: use "pull request" instead of "PR" in packages.md (Rich Trott) [#&#8203;39213](https://github.com/nodejs/node/pull/39213)
    
  • [`0d098bfaf0`](https://github.com/nodejs/node/commit/0d098bfaf0)] - **doc**: move v8.stopCoverage() to expected location in doc (Rich Trott) [#&#8203;39212](https://github.com/nodejs/node/pull/39212)
    
  • [`bd6af78749`](https://github.com/nodejs/node/commit/bd6af78749)] - **doc**: move vm.measureMemory() to expected location in doc (Rich Trott) [#&#8203;39211](https://github.com/nodejs/node/pull/39211)
    
  • [`7378b84bb8`](https://github.com/nodejs/node/commit/7378b84bb8)] - **doc**: add missing deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147)
    
  • [`2f6861ca51`](https://github.com/nodejs/node/commit/2f6861ca51)] - **doc**: use ASCII order for md refs (Antoine du Hamel) [#&#8203;39170](https://github.com/nodejs/node/pull/39170)
    
  • [`fa3909504f`](https://github.com/nodejs/node/commit/fa3909504f)] - **doc**: add cc oss-security@lists.openwall.com (Daniel Bevenius) [#&#8203;39191](https://github.com/nodejs/node/pull/39191)
    
  • [`52105acd5f`](https://github.com/nodejs/node/commit/52105acd5f)] - **doc**: remove instructions for unsupported Node.js versions (Rich Trott) [#&#8203;39185](https://github.com/nodejs/node/pull/39185)
    
  • [`eb2d75da16`](https://github.com/nodejs/node/commit/eb2d75da16)] - **doc**: remove obsolete cc recommendations (Rich Trott) [#&#8203;39181](https://github.com/nodejs/node/pull/39181)
    
  • [`4cf17edd03`](https://github.com/nodejs/node/commit/4cf17edd03)] - **doc**: use "repository" in maintaining-V8 doc (Rich Trott) [#&#8203;39179](https://github.com/nodejs/node/pull/39179)
    
  • [`d6a4f8aac9`](https://github.com/nodejs/node/commit/d6a4f8aac9)] - **doc**: fix broken link in errors.md (Rich Trott) [#&#8203;39200](https://github.com/nodejs/node/pull/39200)
    
  • [`82458b30fe`](https://github.com/nodejs/node/commit/82458b30fe)] - **doc**: correct JavaScript primitive value names in n-api.md (legendecas) [#&#8203;39129](https://github.com/nodejs/node/pull/39129)
    
  • [`2629979fd0`](https://github.com/nodejs/node/commit/2629979fd0)] - **doc**: apply logical ordering to CSS variables (Rich Trott) [#&#8203;39169](https://github.com/nodejs/node/pull/39169)
    
  • [`1996580b06`](https://github.com/nodejs/node/commit/1996580b06)] - **doc**: use repository instead of repo (Rich Trott) [#&#8203;39157](https://github.com/nodejs/node/pull/39157)
    
  • [`74ba115ab6`](https://github.com/nodejs/node/commit/74ba115ab6)] - **doc**: fix `EventTarget.dispatchEvent` docs (Rohan Sharma) [#&#8203;39127](https://github.com/nodejs/node/pull/39127)
    
  • [`2884d9094d`](https://github.com/nodejs/node/commit/2884d9094d)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39082](https://github.com/nodejs/node/pull/39082)
    
  • [`d069c725b1`](https://github.com/nodejs/node/commit/d069c725b1)] - **doc**: fix napi_default_property name (Davidson Francis) [#&#8203;39104](https://github.com/nodejs/node/pull/39104)
    
  • [`1b74d3f775`](https://github.com/nodejs/node/commit/1b74d3f775)] - **doc**: fix dead links in packages.md (Michaël Zasso) [#&#8203;39113](https://github.com/nodejs/node/pull/39113)
    
  • [`0c2b5a048d`](https://github.com/nodejs/node/commit/0c2b5a048d)] - **doc**: clearify that http does chunked encoding itself (Mao Wtm) [#&#8203;28379](https://github.com/nodejs/node/pull/28379)
    
  • [`d0d731e271`](https://github.com/nodejs/node/commit/d0d731e271)] - **doc**: add descriptions about when `options.mode` is ignored (Ray) [#&#8203;39881](https://github.com/nodejs/node/pull/39881)
    
  • [`898db5a570`](https://github.com/nodejs/node/commit/898db5a570)] - **doc**: add code example to `fs.truncate` method (Juan José Arboleda) [#&#8203;39454](https://github.com/nodejs/node/pull/39454)
    
  • [`05d7460747`](https://github.com/nodejs/node/commit/05d7460747)] - **doc**: add annotation to writeFile `data` as `Object` (Jacob) [#&#8203;39167](https://github.com/nodejs/node/pull/39167)
    
  • [`2ef61b987d`](https://github.com/nodejs/node/commit/2ef61b987d)] - **doc**: fix constants usage in fs.access example (Cyrille Bourgois) [#&#8203;39289](https://github.com/nodejs/node/pull/39289)
    
  • [`b2c533ea1d`](https://github.com/nodejs/node/commit/b2c533ea1d)] - **doc**: remove unnecessary module format comments (Rich Trott) [#&#8203;39219](https://github.com/nodejs/node/pull/39219)
    
  • [`e8355c47d2`](https://github.com/nodejs/node/commit/e8355c47d2)] - **doc**: remove file name from self-reference links (Antoine du Hamel) [#&#8203;39165](https://github.com/nodejs/node/pull/39165)
    
  • [`f799c4617e`](https://github.com/nodejs/node/commit/f799c4617e)] - **doc**: use `await` in filehandle.truncate() snippet (RA80533) [#&#8203;38939](https://github.com/nodejs/node/pull/38939)
    
  • [`e7f3f0d778`](https://github.com/nodejs/node/commit/e7f3f0d778)] - **doc**: update abort signal in fs promise api example (Moritz Kneilmann) [#&#8203;38669](https://github.com/nodejs/node/pull/38669)
    
  • [`a44219d979`](https://github.com/nodejs/node/commit/a44219d979)] - **doc**: add documentation for fs.WriteStream.close() (Hitesh Sharma) [#&#8203;38610](https://github.com/nodejs/node/pull/38610)
    
  • [`c3ae1cfbab`](https://github.com/nodejs/node/commit/c3ae1cfbab)] - **doc**: fix fs.openSync() signature (Luigi Pinca) [#&#8203;38591](https://github.com/nodejs/node/pull/38591)
    
  • [`23a8aed3f9`](https://github.com/nodejs/node/commit/23a8aed3f9)] - **doc**: typo stats() should be stat(); clarity (Bryan Field) [#&#8203;38541](https://github.com/nodejs/node/pull/38541)
    
  • [`9fe46ea0fd`](https://github.com/nodejs/node/commit/9fe46ea0fd)] - **doc**: fix broken AHAFS link in fs doc (Rich Trott) [#&#8203;38534](https://github.com/nodejs/node/pull/38534)
    
  • [`7a92c3cfd4`](https://github.com/nodejs/node/commit/7a92c3cfd4)] - **doc**: clarify that fs.Dir async iterator closes automatically (James M Snell) [#&#8203;38438](https://github.com/nodejs/node/pull/38438)
    
  • [`b819848487`](https://github.com/nodejs/node/commit/b819848487)] - **doc**: remove superfluous await from fsPromises.readdir example (Michael Rommel) [#&#8203;38293](https://github.com/nodejs/node/pull/38293)
    
  • [`9fa7dcf9df`](https://github.com/nodejs/node/commit/9fa7dcf9df)] - **doc**: fix missing backtick in fs.md (Siddharth) [#&#8203;38260](https://github.com/nodejs/node/pull/38260)
    
  • [`4cf4ee99dc`](https://github.com/nodejs/node/commit/4cf4ee99dc)] - **doc**: fix typo in fs.md (Antoine du Hamel) [#&#8203;38100](https://github.com/nodejs/node/pull/38100)
    
  • [`f9d36cbf42`](https://github.com/nodejs/node/commit/f9d36cbf42)] - **doc**: fix typos in /doc/api/fs.md (Merlin Luntke) [#&#8203;37557](https://github.com/nodejs/node/pull/37557)
    
  • [`bbcc2171c5`](https://github.com/nodejs/node/commit/bbcc2171c5)] - **doc**: fix typo "director" instead of "directory" (humanwebpl) [#&#8203;37523](https://github.com/nodejs/node/pull/37523)
    
  • [`67ac6b3b66`](https://github.com/nodejs/node/commit/67ac6b3b66)] - **doc**: fix "referred to" in fs docs (Tobias Nießen) [#&#8203;37388](https://github.com/nodejs/node/pull/37388)
    
  • [`3b9fa2412f`](https://github.com/nodejs/node/commit/3b9fa2412f)] - **doc**: change "Version 4 UUID" to "version 4 UUID" (Tobias Nießen) [#&#8203;39682](https://github.com/nodejs/node/pull/39682)
    
  • [`3d26572773`](https://github.com/nodejs/node/commit/3d26572773)] - **doc**: add point to ask H1 reporter about credit (Daniel Bevenius) [#&#8203;39585](https://github.com/nodejs/node/pull/39585)
    
  • [`469190d13c`](https://github.com/nodejs/node/commit/469190d13c)] - **doc**: move util.toUSVString() outside of deprecated group (Luigi Pinca) [#&#8203;39840](https://github.com/nodejs/node/pull/39840)
    
  • [`f509788850`](https://github.com/nodejs/node/commit/f509788850)] - **doc**: fix lint error in modules.md (Rich Trott) [#&#8203;37811](https://github.com/nodejs/node/pull/37811)
    
  • [`a7833c7ce6`](https://github.com/nodejs/node/commit/a7833c7ce6)] - **doc**: refactor signal info in child_process.md (Darshan Sen) [#&#8203;37528](https://github.com/nodejs/node/pull/37528)
    
  • [`f5b2fe1204`](https://github.com/nodejs/node/commit/f5b2fe1204)] - **doc**: change lang info string in fs JS snippets (Antoine du Hamel) [#&#8203;37605](https://github.com/nodejs/node/pull/37605)
    
  • [`307c1d817f`](https://github.com/nodejs/node/commit/307c1d817f)] - **doc**: refactor fs docs structure (Michaël Zasso) [#&#8203;37170](https://github.com/nodejs/node/pull/37170)
    
  • [`298a16a2e7`](https://github.com/nodejs/node/commit/298a16a2e7)] - **doc**: update emitClose default for fs streams (Kevin Locke) [#&#8203;36653](https://github.com/nodejs/node/pull/36653)
    
  • [`0c469b3f77`](https://github.com/nodejs/node/commit/0c469b3f77)] - **doc**: revise process.memoryUsage() text (Rich Trott) [#&#8203;36757](https://github.com/nodejs/node/pull/36757)
    
  • [`1ebe7d70ea`](https://github.com/nodejs/node/commit/1ebe7d70ea)] - **doc**: fix punctuation in v8.md (Rich Trott) [#&#8203;36192](https://github.com/nodejs/node/pull/36192)
    
  • [`591a05b637`](https://github.com/nodejs/node/commit/591a05b637)] - **doc**: add link for v8.takeCoverage() (Rich Trott) [#&#8203;36135](https://github.com/nodejs/node/pull/36135)
    
  • [`e5fe3164f3`](https://github.com/nodejs/node/commit/e5fe3164f3)] - **doc**: add YAML metadata for process.memoryUsage.rss (Gerhard Stoebich) [#&#8203;36781](https://github.com/nodejs/node/pull/36781)
    
    
Other commits
  • [`ab66dabbf2`](https://github.com/nodejs/node/commit/ab66dabbf2)] - **doc,meta**: update email addresses for misterdjules (Rich Trott) [#&#8203;39433](https://github.com/nodejs/node/pull/39433)
    
  • [`c6ccd97fe2`](https://github.com/nodejs/node/commit/c6ccd97fe2)] - **doc,tools**: remove `checkLinks.mjs` (Antoine du Hamel) [#&#8203;39206](https://github.com/nodejs/node/pull/39206)
    
  • [`8f8f528f08`](https://github.com/nodejs/node/commit/8f8f528f08)] - **meta**: add gyp as owner of gyp files and tools/gyp (Mary Marchini) [#&#8203;34847](https://github.com/nodejs/node/pull/34847)
    
  • [`4b2eee5232`](https://github.com/nodejs/node/commit/4b2eee5232)] - **meta**: consolidate AUTHORS entries for ooHmartY (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`6916a6c2b0`](https://github.com/nodejs/node/commit/6916a6c2b0)] - **meta**: consolidate AUTHORS entries for homosaur (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`b65a635c8a`](https://github.com/nodejs/node/commit/b65a635c8a)] - **meta**: consolidate AUTHORS entries for Ayase-252 (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`e86b59cf4c`](https://github.com/nodejs/node/commit/e86b59cf4c)] - **meta**: consolidate AUTHORS entries for robin-drexler (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`1eda8442bd`](https://github.com/nodejs/node/commit/1eda8442bd)] - **meta**: consolidate AUTHORS entries for samshull (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`cd67d86572`](https://github.com/nodejs/node/commit/cd67d86572)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705)
    
  • [`bb06282a9e`](https://github.com/nodejs/node/commit/bb06282a9e)] - **meta**: consolidate email addresses for MarshallOfSound (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651)
    
  • [`12fe34eae4`](https://github.com/nodejs/node/commit/12fe34eae4)] - **meta**: consolidate email addresses for tadjik1 (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651)
    
  • [`4301e252b4`](https://github.com/nodejs/node/commit/4301e252b4)] - **meta**: consolidate email addresses for szmarczak (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651)
    
  • [`3e8fc49730`](https://github.com/nodejs/node/commit/3e8fc49730)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39636](https://github.com/nodejs/node/pull/39636)
    
  • [`60f41c34dd`](https://github.com/nodejs/node/commit/60f41c34dd)] - **meta**: simplify mailmap (Rich Trott) [#&#8203;39612](https://github.com/nodejs/node/pull/39612)
    
  • [`fc9c680260`](https://github.com/nodejs/node/commit/fc9c680260)] - **meta**: consolidate emails for tadhgcreedon (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611)
    
  • [`d87fcf9959`](https://github.com/nodejs/node/commit/d87fcf9959)] - **meta**: consolidate emails for timcosta (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611)
    
  • [`fdbe97849b`](https://github.com/nodejs/node/commit/fdbe97849b)] - **meta**: consolidate emails for timruffles (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611)
    
  • [`b9f2ea92e9`](https://github.com/nodejs/node/commit/b9f2ea92e9)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39629](https://github.com/nodejs/node/pull/39629)
    
  • [`472cf1520e`](https://github.com/nodejs/node/commit/472cf1520e)] - **meta**: add mailmap entry for ryzokuken (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596)
    
  • [`ae3f8b1eda`](https://github.com/nodejs/node/commit/ae3f8b1eda)] - **meta**: add mailmap entry for uttampawar (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596)
    
  • [`2a2d8ebd90`](https://github.com/nodejs/node/commit/2a2d8ebd90)] - **meta**: add mailmap entry for dmabupt (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596)
    
  • [`030036ec92`](https://github.com/nodejs/node/commit/030036ec92)] - **meta**: align README/.mailmap/AUTHORS email entries (Rich Trott) [#&#8203;39505](https://github.com/nodejs/node/pull/39505)
    
  • [`fd2146be91`](https://github.com/nodejs/node/commit/fd2146be91)] - **meta**: add mailmap entry for garygsc (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588)
    
  • [`0833e2d9cb`](https://github.com/nodejs/node/commit/0833e2d9cb)] - **meta**: add mailmap entry for ttzztztz (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588)
    
  • [`1fbc19ee32`](https://github.com/nodejs/node/commit/1fbc19ee32)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39587](https://github.com/nodejs/node/pull/39587)
    
  • [`2d6428665d`](https://github.com/nodejs/node/commit/2d6428665d)] - **meta**: update .mailmap to remove duplication in AUTHORS (Rich Trott) [#&#8203;39561](https://github.com/nodejs/node/pull/39561)
    
  • [`6c4febd701`](https://github.com/nodejs/node/commit/6c4febd701)] - **meta**: add .mailmap entries to remove AUTHORS duplicates (Rich Trott) [#&#8203;39560](https://github.com/nodejs/node/pull/39560)
    
  • [`1755f49a20`](https://github.com/nodejs/node/commit/1755f49a20)] - **meta**: add .mailmap entry to remove duplication in AUTHORS (Rich Trott) [#&#8203;39559](https://github.com/nodejs/node/pull/39559)
    
  • [`fdcc5729d9`](https://github.com/nodejs/node/commit/fdcc5729d9)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521)
    
  • [`27e9a44852`](https://github.com/nodejs/node/commit/27e9a44852)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521)
    
  • [`5e1c49ff0f`](https://github.com/nodejs/node/commit/5e1c49ff0f)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521)
    
  • [`fbecae169e`](https://github.com/nodejs/node/commit/fbecae169e)] - **meta**: move gdams to emeritus (Rich Trott) [#&#8203;39539](https://github.com/nodejs/node/pull/39539)
    
  • [`48ec33f1b8`](https://github.com/nodejs/node/commit/48ec33f1b8)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39510](https://github.com/nodejs/node/pull/39510)
    
  • [`f269df31ea`](https://github.com/nodejs/node/commit/f269df31ea)] - **meta**: remove unneeded .mailmap entry (Rich Trott) [#&#8203;39512](https://github.com/nodejs/node/pull/39512)
    
  • [`b0c1aab28d`](https://github.com/nodejs/node/commit/b0c1aab28d)] - **meta**: update email address for collaborator (Rich Trott) [#&#8203;39511](https://github.com/nodejs/node/pull/39511)
    
  • [`5f4935292a`](https://github.com/nodejs/node/commit/5f4935292a)] - **meta**: align collaborator name in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39489](https://github.com/nodejs/node/pull/39489)
    
  • [`1b2078c912`](https://github.com/nodejs/node/commit/1b2078c912)] - **meta**: align email address in README/.mailmap/AUTHORS (Rich Trott) [#&#8203;39503](https://github.com/nodejs/node/pull/39503)
    
  • [`2f816bf24b`](https://github.com/nodejs/node/commit/2f816bf24b)] - **meta**: revise .mailmap for README consistency (Rich Trott) [#&#8203;39457](https://github.com/nodejs/node/pull/39457)
    
  • [`1302a911f5`](https://github.com/nodejs/node/commit/1302a911f5)] - **meta**: alphabetize .mailmap file (Rich Trott) [#&#8203;39434](https://github.com/nodejs/node/pull/39434)
    
  • [`55322c0260`](https://github.com/nodejs/node/commit/55322c0260)] - **meta**: align collaborator email in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39478](https://github.com/nodejs/node/pull/39478)
    
  • [`83f5cc0bd4`](https://github.com/nodejs/node/commit/83f5cc0bd4)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39461](https://github.com/nodejs/node/pull/39461)
    
  • [`69b56a3fe9`](https://github.com/nodejs/node/commit/69b56a3fe9)] - **meta**: add .mailmap entry for new email for existing contributor (Rich Trott) [#&#8203;39431](https://github.com/nodejs/node/pull/39431)
    
  • [`2f325c946f`](https://github.com/nodejs/node/commit/2f325c946f)] - **meta**: use form schema for bug report template (Michaël Zasso) [#&#8203;39194](https://github.com/nodejs/node/pull/39194)
    
  • [`9766a99dd2`](https://github.com/nodejs/node/commit/9766a99dd2)] - **meta**: add [@&#8203;nodejs/actions](https://github.com/nodejs/actions) as CODEOWNERS (Mary Marchini) [#&#8203;39119](https://github.com/nodejs/node/pull/39119)
    
  • [`007f9a0e36`](https://github.com/nodejs/node/commit/007f9a0e36)] - **test**: fix test-vm-memleak for high baseline platforms (Rich Trott) [#&#8203;38062](https://github.com/nodejs/node/pull/38062)
    
  • [`0fabd8e755`](https://github.com/nodejs/node/commit/0fabd8e755)] - **test**: fix flaky test-vm-memleak (Rich Trott) [#&#8203;38054](https://github.com/nodejs/node/pull/38054)
    
  • [`64fb928ec7`](https://github.com/nodejs/node/commit/64fb928ec7)] - **test**: fix flaky test-child-process-exec-abortcontroller-promisified (Antoine du Hamel) [#&#8203;37572](https://github.com/nodejs/node/pull/37572)
    
  • [`e660892f1a`](https://github.com/nodejs/node/commit/e660892f1a)] - **test**: use simplfied validator (voltrexmaster) [#&#8203;39753](https://github.com/nodejs/node/pull/39753)
    
  • [`779417f97e`](https://github.com/nodejs/node/commit/779417f97e)] - **test**: use template to concatenate string (Himadri Ganguly) [#&#8203;39621](https://github.com/nodejs/node/pull/39621)
    
  • [`a61076042d`](https://github.com/nodejs/node/commit/a61076042d)] - **test**: deflake test-http2-buffersize (Luigi Pinca) [#&#8203;39591](https://github.com/nodejs/node/pull/39591)
    
  • [`68ef265c39`](https://github.com/nodejs/node/commit/68ef265c39)] - **test**: convert anonymous function to arrow function (Himadri Ganguly) [#&#8203;39604](https://github.com/nodejs/node/pull/39604)
    
  • [`78db43c9e7`](https://github.com/nodejs/node/commit/78db43c9e7)] - **test**: add test-debugger-breakpoint-exists (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570)
    
  • [`5696bcf715`](https://github.com/nodejs/node/commit/5696bcf715)] - **test**: fix WASI link test (Richard Lau) [#&#8203;39485](https://github.com/nodejs/node/pull/39485)
    
  • [`0b564a6d40`](https://github.com/nodejs/node/commit/0b564a6d40)] - **test**: add test for WebSocket secret verification in debugger (Rich Trott) [#&#8203;39357](https://github.com/nodejs/node/pull/39357)
    
  • [`831f266d6f`](https://github.com/nodejs/node/commit/831f266d6f)] - **test**: put common lint exceptions into config file (Rich Trott) [#&#8203;39358](https://github.com/nodejs/node/pull/39358)
    
  • [`d8066f5325`](https://github.com/nodejs/node/commit/d8066f5325)] - **test**: mark test-domain-error-types flaky (James M Snell) [#&#8203;39369](https://github.com/nodejs/node/pull/39369)
    
  • [`c915a1bd04`](https://github.com/nodejs/node/commit/c915a1bd04)] - **test**: remove eslint-disable comment from fixture file (Rich Trott) [#&#8203;39320](https://github.com/nodejs/node/pull/39320)
    
  • [`1eb8307cc5`](https://github.com/nodejs/node/commit/1eb8307cc5)] - **test**: move debugger test case to parallel (Rich Trott) [#&#8203;39300](https://github.com/nodejs/node/pull/39300)
    
  • [`546202364c`](https://github.com/nodejs/node/commit/546202364c)] - **test**: remove debugger workaround for AIX (Rich Trott) [#&#8203;39296](https://github.com/nodejs/node/pull/39296)
    
  • [`e12164e88d`](https://github.com/nodejs/node/commit/e12164e88d)] - **test**: fix test-debugger-heap-profiler for workers (Richard Lau) [#&#8203;39687](https://github.com/nodejs/node/pull/39687)
    
  • [`a45bf2f1a0`](https://github.com/nodejs/node/commit/a45bf2f1a0)] - **test**: use common.PORT instead of hardcoded port number (Rich Trott) [#&#8203;39298](https://github.com/nodejs/node/pull/39298)
    
  • [`9b737ebd4b`](https://github.com/nodejs/node/commit/9b737ebd4b)] - **test**: add test for debugger restart message issue (Rich Trott) [#&#8203;39273](https://github.com/nodejs/node/pull/39273)
    
  • [`68523894ab`](https://github.com/nodejs/node/commit/68523894ab)] - **test**: remove workaround code in debugger test (Rich Trott) [#&#8203;39238](https://github.com/nodejs/node/pull/39238)
    
  • [`2cd414147b`](https://github.com/nodejs/node/commit/2cd414147b)] - **test**: move test-debugger-address to parallel (Rich Trott) [#&#8203;39236](https://github.com/nodejs/node/pull/39236)
    
  • [`a2e4020e4b`](https://github.com/nodejs/node/commit/a2e4020e4b)] - **test**: prepare for consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930)
    
  • [`62b439e04d`](https://github.com/nodejs/node/commit/62b439e04d)] - **test**: replace "inspector-cli" with "debugger" (Rich Trott) [#&#8203;39156](https://github.com/nodejs/node/pull/39156)
    
  • [`f13a302d23`](https://github.com/nodejs/node/commit/f13a302d23)] - **test**: improve coverage of stream.Readable (Rongjian Zhang) [#&#8203;38702](https://github.com/nodejs/node/pull/38702)
    
  • [`f3d2e6ac29`](https://github.com/nodejs/node/commit/f3d2e6ac29)] - **test**: add tests for `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005)
    
  • [`f70fd00fb3`](https://github.com/nodejs/node/commit/f70fd00fb3)] - **test**: use localhost test instead of connecting to remote (Adam Majer) [#&#8203;39011](https://github.com/nodejs/node/pull/39011)
    
  • [`c4ff5e4a7e`](https://github.com/nodejs/node/commit/c4ff5e4a7e)] - **test**: update error message keywords (leeight) [#&#8203;39826](https://github.com/nodejs/node/pull/39826)
    
  • [`922dacebfb`](https://github.com/nodejs/node/commit/922dacebfb)] - **test**: increase coverage for Blob (ZiJian Liu) [#&#8203;38515](https://github.com/nodejs/node/pull/38515)
    
  • [`c6ab19895d`](https://github.com/nodejs/node/commit/c6ab19895d)] - **test**: account for OOM risks in heapsnapshot-near-heap-limit tests (Joyee Cheung) [#&#8203;37761](https://github.com/nodejs/node/pull/37761)
    
  • [`971d5be57c`](https://github.com/nodejs/node/commit/971d5be57c)] - **test**: split heap snapshot limit tests (Rich Trott) [#&#8203;37189](https://github.com/nodejs/node/pull/37189)
    
  • [`815d59a7b3`](https://github.com/nodejs/node/commit/815d59a7b3)] - **test**: fix test-memory-usage.js for IBMi (Rich Trott) [#&#8203;36758](https://github.com/nodejs/node/pull/36758)
    
  • [`aa5309c33f`](https://github.com/nodejs/node/commit/aa5309c33f)] - **test**: increase coverage for net/blocklist (Zijian Liu) [#&#8203;36405](https://github.com/nodejs/node/pull/36405)
    
  • [`f3be3ec417`](https://github.com/nodejs/node/commit/f3be3ec417)] - **test**: check mustCall errors in test-fs-read-type (Tobias Nießen) [#&#8203;36914](https://github.com/nodejs/node/pull/36914)
    
  • [`b643fe7edf`](https://github.com/nodejs/node/commit/b643fe7edf)] - **test**: use faster variant for rss (Pooja D P) [#&#8203;36839](https://github.com/nodejs/node/pull/36839)
    
  • [`d4362db111`](https://github.com/nodejs/node/commit/d4362db111)] - **test**: use faster variant for rss in test-crypto-dh-leak (Pooja D P) [#&#8203;36766](https://github.com/nodejs/node/pull/36766)
    
  • [`3094ef967a`](https://github.com/nodejs/node/commit/3094ef967a)] - **test**: use faster variant for rss in test-vm-memleak.js (Pooja D P) [#&#8203;36769](https://github.com/nodejs/node/pull/36769)
    
  • [`ff7879b41e`](https://github.com/nodejs/node/commit/ff7879b41e)] - **test**: use faster variant for rss test-memoryusage-emfile (Pooja D P) [#&#8203;36768](https://github.com/nodejs/node/pull/36768)
    
  • [`d39200c7f4`](https://github.com/nodejs/node/commit/d39200c7f4)] - **tools**: make utils.SearchFiles Python2-compatible (Michaël Zasso) [#&#8203;40020](https://github.com/nodejs/node/pull/40020)
    
  • [`55493f2011`](https://github.com/nodejs/node/commit/55493f2011)] - **tools**: update workflow to open a pull request (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825)
    
  • [`417a3ac474`](https://github.com/nodejs/node/commit/417a3ac474)] - **tools**: use find-inactive-collaborators to modify README.md (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825)
    
  • [`e9b1a006a1`](https://github.com/nodejs/node/commit/e9b1a006a1)] - **tools**: fix markdown linting (Rich Trott) [#&#8203;39832](https://github.com/nodejs/node/pull/39832)
    
  • [`67f1bff657`](https://github.com/nodejs/node/commit/67f1bff657)] - **tools**: update markdown linter dependencies and move to ESM (Antoine du Hamel) [#&#8203;39801](https://github.com/nodejs/node/pull/39801)
    
  • [`67c5921e8a`](https://github.com/nodejs/node/commit/67c5921e8a)] - **tools**: update rollup to latest version in markdown linter (Rich Trott) [#&#8203;39797](https://github.com/nodejs/node/pull/39797)
    
  • [`64714b429a`](https://github.com/nodejs/node/commit/64714b429a)] - **tools**: update markdown lint dependencies (Rich Trott) [#&#8203;39770](https://github.com/nodejs/node/pull/39770)
    
  • [`de9461168a`](https://github.com/nodejs/node/commit/de9461168a)] - **tools**: bump remark-preset-lint-node to 3.0.0 (Rich Trott) [#&#8203;39755](https://github.com/nodejs/node/pull/39755)
    
  • [`dfdf6c7317`](https://github.com/nodejs/node/commit/dfdf6c7317)] - **tools**: update markdown linter rules (Rich Trott) [#&#8203;38384](https://github.com/nodejs/node/pull/38384)
    
  • [`f8fee449f7`](https://github.com/nodejs/node/commit/f8fee449f7)] - **tools**: update path-parse in markdown linter package-lock file (Rich Trott) [#&#8203;39729](https://github.com/nodejs/node/pull/39729)
    
  • [`a338c0e07b`](https://github.com/nodejs/node/commit/a338c0e07b)] - **tools**: fix more build warnings in inspector_protocol (Richard Lau) [#&#8203;39725](https://github.com/nodejs/node/pull/39725)
    
  • [`09630cf199`](https://github.com/nodejs/node/commit/09630cf199)] - **tools**: cherry-pick [`ffb34b6`](https://github.com/nodejs/node/commit/ffb34b6d5dbf0) (Darshan Sen) [#&#8203;39725](https://github.com/nodejs/node/pull/39725)
    
  • [`26a067e33e`](https://github.com/nodejs/node/commit/26a067e33e)] - **tools**: update inspector_protocol to [`e8ba1a7`](https://github.com/nodejs/node/commit/e8ba1a7) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`9847d58feb`](https://github.com/nodejs/node/commit/9847d58feb)] - **tools**: update inspector_protocol to [`39ca567`](https://github.com/nodejs/node/commit/39ca567) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`6870bb7505`](https://github.com/nodejs/node/commit/6870bb7505)] - **tools**: update inspector_protocol to [`97d3146`](https://github.com/nodejs/node/commit/97d3146) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`383fa01e97`](https://github.com/nodejs/node/commit/383fa01e97)] - ***Revert*** "**tools**: fix compiler warning in inspector_protocol" (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`b95a759c86`](https://github.com/nodejs/node/commit/b95a759c86)] - **tools**: update inspector_protocol to [`a53e96d`](https://github.com/nodejs/node/commit/a53e96d31a2755eb16ca37) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`ad39687422`](https://github.com/nodejs/node/commit/ad39687422)] - **tools**: update inspector_protocol to [`fe0467f`](https://github.com/nodejs/node/commit/fe0467fd105a) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694)
    
  • [`78de83cc74`](https://github.com/nodejs/node/commit/78de83cc74)] - **tools**: improve error detection in find-inactive-collaborators (Rich Trott) [#&#8203;39617](https://github.com/nodejs/node/pull/39617)
    
  • [`a5152a0875`](https://github.com/nodejs/node/commit/a5152a0875)] - **tools**: flag README/mailmap mismatches in find-inactive-collaborators (Rich Trott) [#&#8203;39477](https://github.com/nodejs/node/pull/39477)
    
  • [`87c5332f89`](https://github.com/nodejs/node/commit/87c5332f89)] - **tools**: use mailmap for find-inactive-collaborators (Rich Trott) [#&#8203;39432](https://github.com/nodejs/node/pull/39432)
    
  • [`f75224f1ce`](https://github.com/nodejs/node/commit/f75224f1ce)] - **tools**: email matchin is case insensitive for .mailmap (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430)
    
  • [`dfb77a581f`](https://github.com/nodejs/node/commit/dfb77a581f)] - **tools**: make internal link checker more robust (Rich Trott) [#&#8203;39429](https://github.com/nodejs/node/pull/39429)
    
  • [`d2c0da20a0`](https://github.com/nodejs/node/commit/d2c0da20a0)] - **tools**: added remark-frontmatter (Ben Halverson) [#&#8203;38717](https://github.com/nodejs/node/pull/38717)
    
  • [`cec04821aa`](https://github.com/nodejs/node/commit/cec04821aa)] - **tools**: change commit fetch limiting in find-inactive-collaborators (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362)
    
  • [`d948148498`](https://github.com/nodejs/node/commit/d948148498)] - **tools**: use Node.js 16.x for GitHub workflow (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362)
    
  • [`edc5791b5a`](https://github.com/nodejs/node/commit/edc5791b5a)] - **tools**: add GitHub Action to run find-inactive-collaborators.mjs (Rich Trott) [#&#8203;39335](https://github.com/nodejs/node/pull/39335)
    
  • [`d86d37bc9e`](https://github.com/nodejs/node/commit/d86d37bc9e)] - **tools**: relax max-len lint rule for template strings (Rich Trott) [#&#8203;38097](https://github.com/nodejs/node/pull/38097)
    
  • [`f467e2a0c5`](https://github.com/nodejs/node/commit/f467e2a0c5)] - **tools**: pass bot token to node-pr-labeler (Michaël Zasso) [#&#8203;39271](https://github.com/nodejs/node/pull/39271)
    
  • [`61ec594609`](https://github.com/nodejs/node/commit/61ec594609)] - **tools**: add find-inactive-collaborators.js (Rich Trott) [#&#8203;39262](https://github.com/nodejs/node/pull/39262)
    
  • [`ff0ca11521`](https://github.com/nodejs/node/commit/ff0ca11521)] - **tools**: update path-parse to 1.0.7 (Rich Trott) [#&#8203;39232](https://github.com/nodejs/node/pull/39232)
    
  • [`b8fb75121b`](https://github.com/nodejs/node/commit/b8fb75121b)] - **tools**: remove unused `lint-pr-commit-message.sh` (Richard Lau) [#&#8203;39120](https://github.com/nodejs/node/pull/39120)
    
  • [`e7761b627f`](https://github.com/nodejs/node/commit/e7761b627f)] - **tools**: apply consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930)
    
  • [`315eba7789`](https://github.com/nodejs/node/commit/315eba7789)] - **tools**: make comma-dangle ESLint rule more stringent … (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088)
    
  • [`3ecfe9d7ee`](https://github.com/nodejs/node/commit/3ecfe9d7ee)] - **tools**: update remark-preset-lint-node to 2.4.1 (Rich Trott) [#&#8203;39201](https://github.com/nodejs/node/pull/39201)
    
  • [`70e527c0c7`](https://github.com/nodejs/node/commit/70e527c0c7)] - **tools**: upgrade `highlight.js` to version 11.0.1 (Antoine du Hamel) [#&#8203;39032](https://github.com/nodejs/node/pull/39032)
    
  • [`7b2bebba7a`](https://github.com/nodejs/node/commit/7b2bebba7a)] - **tools**: add support for import assertions in linter (Antoine du Hamel) [#&#8203;39924](https://github.com/nodejs/node/pull/39924)
    
  • [`1353a6e22f`](https://github.com/nodejs/node/commit/1353a6e22f)] - **tools**: update ESLint to 7.32.0 (Luigi Pinca) [#&#8203;39602](https://github.com/nodejs/node/pull/39602)
    
  • [`509f26549c`](https://github.com/nodejs/node/commit/509f26549c)] - **tools**: update ESLint to 7.31.0 (Colin Ihrig) [#&#8203;39424](https://github.com/nodejs/node/pull/39424)
    
  • [`f0e0c8f720`](https://github.com/nodejs/node/commit/f0e0c8f720)] - **tools**: update ESLint to 7.30.0 (Colin Ihrig) [#&#8203;39242](https://github.com/nodejs/node/pull/39242)
    
  • [`6540c271e4`](https://github.com/nodejs/node/commit/6540c271e4)] - **tools**: update [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) to 7.14.7 (Rich Trott) [#&#8203;39160](https://github.com/nodejs/node/pull/39160)
    
  • [`d7e2318e74`](https://github.com/nodejs/node/commit/d7e2318e74)] - **tools**: add ESLint rule no-array-destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818)
    
  • [`87e5429334`](https://github.com/nodejs/node/commit/87e5429334)] - **tools,doc**: fix error message for unrecognized type (Antoine du Hamel) [#&#8203;39221](https://github.com/nodejs/node/pull/39221)
    
  • [`f206af679c`](https://github.com/nodejs/node/commit/f206af679c)] - **typings**: add a few JSDoc typings for the net lib module (nerdthatnoonelikes) [#&#8203;38953](https://github.com/nodejs/node/pull/38953)
    
  • [`d458cd7e2b`](https://github.com/nodejs/node/commit/d458cd7e2b)] - **typings**: add JSDoc typings for timers (Voltrex) [#&#8203;38834](https://github.com/nodejs/node/pull/38834)
    
    

v14.17.6

Compare Source

This is a security release.

Notable Changes

These are vulnerabilities in the node-tar, arborist, and npm cli modules which
are related to the initial reports and subsequent remediation of node-tar
vulnerabilities CVE-2021-32803
and CVE-2021-32804.
Subsequent internal security review of node-tar and additional external bounty
reports have resulted in another 5 CVE being remediated in core npm CLI
dependencies including node-tar, and npm arborist.

You can read more about it in:

Commits
  • [`5b3f70bfb5`](https://github.com/nodejs/node/commit/5b3f70bfb5)] - **deps**: update archs files for OpenSSL-1.1.1l (Richard Lau) [#&#8203;39868](https://github.com/nodejs/node/pull/39868)
    
  • [`71372625ae`](https://github.com/nodejs/node/commit/71372625ae)] - **deps**: upgrade openssl sources to 1.1.1l (Richard Lau) [#&#8203;39868](https://github.com/nodejs/node/pull/39868)
    
  • [`4276984803`](https://github.com/nodejs/node/commit/4276984803)] - **deps**: upgrade npm to 6.14.15 (Darcy Clarke) [#&#8203;39856](https://github.com/nodejs/node/pull/39856)
    
    

v14.17.5

Compare Source

This is a security release.

Notable Changes
  • CVE-2021-3672/CVE-2021-22931: Improper handling of untypical characters in domain names (High)
    • Node.js was vulnerable to Remote Code Execution, XSS, application crashes due to missing input validation of hostnames returned by Domain Name Servers in the Node.js DNS library which can lead to the output of wrong hostnames (leading to Domain Hijacking) and injection vulnerabilities in applications using the library. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22931.
  • CVE-2021-22940: Use after free on close http2 on stream canceling (High)
    • Node.js was vulnerable to a use after free attack where an attacker might be able to exploit memory corruption to change process behavior. This release includes a follow-up fix for CVE-2021-22930 as the issue was not completely resolved by the previous fix. You can read more about it at https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22940.
  • CVE-2021-22939: Incomplete validation of rejectUnauthorized parameter (Low)
    • If the Node.js HTTPS API was used incorrectly and "undefined" was in passed for the "rejectUnauthorized" parameter, no error was returned and connections to servers with an expired certificate would have been accepted. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22939.
Commits
  • [`4923b59e0b`](https://github.com/nodejs/node/commit/4923b59e0b)] - **deps**: update c-ares to 1.17.2 (Beth Griggs) [#&#8203;39724](https://github.com/nodejs/node/pull/39724)
    
  • [`847a4c6a8a`](https://github.com/nodejs/node/commit/847a4c6a8a)] - **deps**: reflect c-ares source tree (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653)
    
  • [`33208e2f89`](https://github.com/nodejs/node/commit/33208e2f89)] - **deps**: apply missed updates from c-ares 1.17.1 (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653)
    
  • [`af5c1af9a4`](https://github.com/nodejs/node/commit/af5c1af9a4)] - **http2**: add tests for cancel event while client is paused reading (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622)
    
  • [`434872e838`](https://github.com/nodejs/node/commit/434872e838)] - **http2**: update handling of rst_stream with error code NGHTTP2\_CANCEL (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622)
    
  • [`35b86110e4`](https://github.com/nodejs/node/commit/35b86110e4)] - **tls**: validate "rejectUnauthorized: undefined" (Matteo Collina) [nodejs-private/node-private#&#8203;276](https://github.com/nodejs-private/node-private/pull/276)
    
    

v14.17.4

Compare Source

This is a security release.

Notable Changes
  • CVE-2021-22930: Use after free on close http2 on stream canceling (High)

This releases also fixes some regressions with internationalization introduced by the ICU updates in Node.js 14.17.0 and 14.17.1.

Commits
  • [`86477b2b53`](https://github.com/nodejs/node/commit/86477b2b53)] - **benchmark**: output JSON-compatible numbers (Michaël Zasso) [#&#8203;38778](https://github.com/nodejs/node/pull/38778)
    
  • [`f9693cf0a0`](https://github.com/nodejs/node/commit/f9693cf0a0)] - **benchmark**: fix http elapsed time (Antoine du Hamel) [#&#8203;38743](https://github.com/nodejs/node/pull/38743)
    
  • [`1ab4f81abc`](https://github.com/nodejs/node/commit/1ab4f81abc)] - **build**: fix building with external builtins (Momtchil Momtchev) [#&#8203;39091](https://github.com/nodejs/node/pull/39091)
    
  • [`a657f250f1`](https://github.com/nodejs/node/commit/a657f250f1)] - **build**: reconfigure when gyp files change on Windows (Joyee Cheung) [#&#8203;39066](https://github.com/nodejs/node/pull/39066)
    
  • [`6962c647d6`](https://github.com/nodejs/node/commit/6962c647d6)] - ***Revert*** "**build**: work around bug in MSBuild v16.10.0" (Michaël Zasso) [#&#8203;38977](https://github.com/nodejs/node/pull/38977)
    
  • [`069cf59e56`](https://github.com/nodejs/node/commit/069cf59e56)] - **build**: make build-addons errors fail the build (Richard Lau) [#&#8203;38983](https://github.com/nodejs/node/pull/38983)
    
  • [`d341561ae0`](https://github.com/nodejs/node/commit/d341561ae0)] - **build**: fix commit-queue default branch (Mary Marchini) [#&#8203;38998](https://github.com/nodejs/node/pull/38998)
    
  • [`0736dd833a`](https://github.com/nodejs/node/commit/0736dd833a)] - **build**: don't pass python override to V8 build (Richard Lau) [#&#8203;38969](https://github.com/nodejs/node/pull/38969)
    
  • [`49a000683a`](https://github.com/nodejs/node/commit/49a000683a)] - **build**: correct Xcode spelling in .gitignore (bl-ue) [#&#8203;38895](https://github.com/nodejs/node/pull/38895)
    
  • [`1ffbe3d5da`](https://github.com/nodejs/node/commit/1ffbe3d5da)] - **build**: remove outdated dont-land-on-v6.x label (Michaël Zasso) [#&#8203;38886](https://github.com/nodejs/node/pull/38886)
    
  • [`7f53a0b349`](https://github.com/nodejs/node/commit/7f53a0b349)] - **build**: add lto build to CI (Jiawen Geng) [#&#8203;38567](https://github.com/nodejs/node/pull/38567)
    
  • [`a6f8ba8f0c`](https://github.com/nodejs/node/commit/a6f8ba8f0c)] - **build**: allow LTO with Clang 3.9.1+ (Jesse Chan) [#&#8203;38751](https://github.com/nodejs/node/pull/38751)
    
  • [`b5b1d1fb79`](https://github.com/nodejs/node/commit/b5b1d1fb79)] - **build**: replace non-POSIX test -a|o (Issam E. Maghni) [#&#8203;38731](https://github.com/nodejs/node/pull/38731)
    
  • [`fc2b1ec308`](https://github.com/nodejs/node/commit/fc2b1ec308)] - **child_process**: refactor to use `validateBoolean` (Qingyu Deng) [#&#8203;38927](https://github.com/nodejs/node/pull/38927)
    
  • [`55ea29eedd`](https://github.com/nodejs/node/commit/55ea29eedd)] - **child_process**: retain reference to data with advanced serialization (Anna Henningsen) [#&#8203;38728](https://github.com/nodejs/node/pull/38728)
    
  • [`716ee1531c`](https://github.com/nodejs/node/commit/716ee1531c)] - **debugger**: rename internal library for clarity (Rich Trott) [#&#8203;39080](https://github.com/nodejs/node/pull/39080)
    
  • [`b7ee9d8287`](https://github.com/nodejs/node/commit/b7ee9d8287)] - **debugger**: use ERR_DEBUGGER_STARTUP_ERROR in \_inspect.js (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`5d4d23dcf3`](https://github.com/nodejs/node/commit/5d4d23dcf3)] - **debugger**: use error codes in debugger REPL (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`a3991d7c18`](https://github.com/nodejs/node/commit/a3991d7c18)] - **debugger**: use ERR_DEBUGGER_ERROR in debugger client (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`052e1c5385`](https://github.com/nodejs/node/commit/052e1c5385)] - **debugger**: removed unused function argument (Rich Trott) [#&#8203;38850](https://github.com/nodejs/node/pull/38850)
    
  • [`f9a4dcb30c`](https://github.com/nodejs/node/commit/f9a4dcb30c)] - **debugger**: refactor `inspect_repl` to use primordials (Antoine du Hamel) [#&#8203;38551](https://github.com/nodejs/node/pull/38551)
    
  • [`ad8056659f`](https://github.com/nodejs/node/commit/ad8056659f)] - **debugger**: refactor to use internal modules (Antoine du Hamel) [#&#8203;38550](https://github.com/nodejs/node/pull/38550)
    
  • [`b5724a1984`](https://github.com/nodejs/node/commit/b5724a1984)] - **debugger**: disable only the lint rules required by current file state (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529)
    
  • [`34659f2b7a`](https://github.com/nodejs/node/commit/34659f2b7a)] - **debugger**: avoid non-ASCII char in code file (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529)
    
  • [`ae90756582`](https://github.com/nodejs/node/commit/ae90756582)] - **debugger**: wrap lines longer than 80 chars (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529)
    
  • [`b30ff35a36`](https://github.com/nodejs/node/commit/b30ff35a36)] - **debugger**: align message with Node.js standard (Rich Trott) [#&#8203;38400](https://github.com/nodejs/node/pull/38400)
    
  • [`d74d67f207`](https://github.com/nodejs/node/commit/d74d67f207)] - **debugger**: remove unnecessary boilerplate copyright comment (Rich Trott) [#&#8203;38952](https://github.com/nodejs/node/pull/38952)
    
  • [`e58f938ab3`](https://github.com/nodejs/node/commit/e58f938ab3)] - **debugger**: enable linter on `internal/inspector/inspect_client` (Antoine du Hamel) [#&#8203;38417](https://github.com/nodejs/node/pull/38417)
    
  • [`249acd5e69`](https://github.com/nodejs/node/commit/249acd5e69)] - **debugger**: reduce scope of eslint disable comment (Rich Trott) [#&#8203;38946](https://github.com/nodejs/node/pull/38946)
    
  • [`0ef5e088c0`](https://github.com/nodejs/node/commit/0ef5e088c0)] - **debugger**: revise async iterator usage to comply with lint rules (Rich Trott) [#&#8203;38847](https://github.com/nodejs/node/pull/38847)
    
  • [`79bfb0416b`](https://github.com/nodejs/node/commit/79bfb0416b)] - **debugger**: wait for V8 debugger to be enabled (Michaël Zasso) [#&#8203;38811](https://github.com/nodejs/node/pull/38811)
    
  • [`721edeffd3`](https://github.com/nodejs/node/commit/721edeffd3)] - **debugger**: refactor `internal/inspector/_inspect` to use more primordials (Antoine du Hamel) [#&#8203;38406](https://github.com/nodejs/node/pull/38406)
    
  • [`21ecee1b4b`](https://github.com/nodejs/node/commit/21ecee1b4b)] - **debugger**: add usage example for `--port` (Rafael Gonzaga) [#&#8203;38400](https://github.com/nodejs/node/pull/38400)
    
  • [`cde72213d1`](https://github.com/nodejs/node/commit/cde72213d1)] - ***Revert*** "**debugger**: rename internal library for clarity" (Antoine du Hamel) [#&#8203;39446](https://github.com/nodejs/node/pull/39446)
    
  • [`4c2b813799`](https://github.com/nodejs/node/commit/4c2b813799)] - **debugger**: rename internal library for clarity (Rich Trott) [#&#8203;39080](https://github.com/nodejs/node/pull/39080)
    
  • [`61da371251`](https://github.com/nodejs/node/commit/61da371251)] - **debugger**: apply automatic lint fixes for inspect_repl.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411)
    
  • [`8dd1f70fe3`](https://github.com/nodejs/node/commit/8dd1f70fe3)] - **debugger**: apply automatic lint fixes for \_inspect.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411)
    
  • [`fb0ab4c034`](https://github.com/nodejs/node/commit/fb0ab4c034)] - **debugger**: removed unused function argument (Rich Trott) [#&#8203;38850](https://github.com/nodejs/node/pull/38850)
    
  • [`9e28c6c946`](https://github.com/nodejs/node/commit/9e28c6c946)] - **debugger**: fix race condition/deadlock on initialization (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`a8924fa0fb`](https://github.com/nodejs/node/commit/a8924fa0fb)] - **debugger**: replace internal use of deprecated API (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`22afb7cbe6`](https://github.com/nodejs/node/commit/22afb7cbe6)] - **debugger**: allow longer time to connect (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`b172e6f436`](https://github.com/nodejs/node/commit/b172e6f436)] - **debugger**: accommodate line chunking in Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`1da692185a`](https://github.com/nodejs/node/commit/1da692185a)] - **debugger**: fix inspect restart on Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`0321c5b194`](https://github.com/nodejs/node/commit/0321c5b194)] - **debugger**: remove unused code (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`8bd2a3926a`](https://github.com/nodejs/node/commit/8bd2a3926a)] - **debugger**: move node-inspect to internal library (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`acf5279c39`](https://github.com/nodejs/node/commit/acf5279c39)] - **deps**: upgrade npm to 6.14.14 (Darcy Clarke) [#&#8203;39553](https://github.com/nodejs/node/pull/39553)
    
  • [`4efefe02a8`](https://github.com/nodejs/node/commit/4efefe02a8)] - **deps**: V8: backport [`ae7bfb3`](https://github.com/nodejs/node/commit/ae7bfb3f03b3) (Michaël Zasso) [#&#8203;39051](https://github.com/nodejs/node/pull/39051)
    
  • [`5039f21396`](https://github.com/nodejs/node/commit/5039f21396)] - **deps**: V8: backport [`16ffec9`](https://github.com/nodejs/node/commit/16ffec97e5eb) (Michaël Zasso) [#&#8203;39051](https://github.com/nodejs/node/pull/39051)
    
  • [`9b69069f71`](https://github.com/nodejs/node/commit/9b69069f71)] - **deps**: V8: cherry-pick [`b0a7f56`](https://github.com/nodejs/node/commit/b0a7f5691113) (Michaël Zasso) [#&#8203;39051](https://github.com/nodejs/node/pull/39051)
    
  • [`4213e97d26`](https://github.com/nodejs/node/commit/4213e97d26)] - **deps**: V8: cherry-pick [`81181a8`](https://github.com/nodejs/node/commit/81181a8ad80a) (thomasmichaelwallace) [#&#8203;39187](https://github.com/nodejs/node/pull/39187)
    
  • [`ccecea5f72`](https://github.com/nodejs/node/commit/ccecea5f72)] - **deps**: restore minimum ICU version to 65 (Richard Lau) [#&#8203;39068](https://github.com/nodejs/node/pull/39068)
    
  • [`7557e74cf4`](https://github.com/nodejs/node/commit/7557e74cf4)] - **deps**: V8: update build dependencies (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244)
    
  • [`a60a960406`](https://github.com/nodejs/node/commit/a60a960406)] - **deps**: V8: cherry-pick [`8959494`](https://github.com/nodejs/node/commit/895949419186) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244)
    
  • [`7fdd6ecbb4`](https://github.com/nodejs/node/commit/7fdd6ecbb4)] - **deps**: V8: cherry-pick [`0b3a4ec`](https://github.com/nodejs/node/commit/0b3a4ecf7083) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244)
    
  • [`4be2e878b7`](https://github.com/nodejs/node/commit/4be2e878b7)] - **deps**: V8: cherry-pick [`7c182bd`](https://github.com/nodejs/node/commit/7c182bd65f42) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244)
    
  • [`a83b01a4af`](https://github.com/nodejs/node/commit/a83b01a4af)] - **deps**: V8: cherry-pick [`92e6d33`](https://github.com/nodejs/node/commit/92e6d3317082) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244)
    
  • [`17eb561184`](https://github.com/nodejs/node/commit/17eb561184)] - **deps**: V8: backport [`1b1eda0`](https://github.com/nodejs/node/commit/1b1eda0876aa) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244)
    
  • [`04032fa1a3`](https://github.com/nodejs/node/commit/04032fa1a3)] - **doc**: remove references to deleted freenode channels (devsnek) [#&#8203;39047](https://github.com/nodejs/node/pull/39047)
    
  • [`797bd73849`](https://github.com/nodejs/node/commit/797bd73849)] - **doc**: add missing parameter types (Voltrex) [#&#8203;39013](https://github.com/nodejs/node/pull/39013)
    
  • [`e474e984e5`](https://github.com/nodejs/node/commit/e474e984e5)] - **doc**: clarify that only one Python version is required to build (bl-ue) [#&#8203;38894](https://github.com/nodejs/node/pull/38894)
    
  • [`cd48ee71d9`](https://github.com/nodejs/node/commit/cd48ee71d9)] - **doc**: fixed typo in process.md (Derevianchenko Maksym) [#&#8203;38941](https://github.com/nodejs/node/pull/38941)
    
  • [`41fcbad2b2`](https://github.com/nodejs/node/commit/41fcbad2b2)] - **doc**: add missing semis after classes (Darshan Sen) [#&#8203;38931](https://github.com/nodejs/node/pull/38931)
    
  • [`b40529643b`](https://github.com/nodejs/node/commit/b40529643b)] - **doc**: mark util.inherits as legacy (Voltrex) [#&#8203;38896](https://github.com/nodejs/node/pull/38896)
    
  • [`b2d836b1ea`](https://github.com/nodejs/node/commit/b2d836b1ea)] - **doc**: clarify when `readable._read(...)` is called (Shaun Keys) [#&#8203;38726](https://github.com/nodejs/node/pull/38726)
    
  • [`e36d2a6d6a`](https://github.com/nodejs/node/commit/e36d2a6d6a)] - **doc**: fixed typo in n-api.md (julianjany) [#&#8203;38822](https://github.com/nodejs/node/pull/38822)
    
  • [`b4f60bb523`](https://github.com/nodejs/node/commit/b4f60bb523)] - **doc**: use "Long Term Support" in collaborator guide (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841)
    
  • [`7a9850a5fb`](https://github.com/nodejs/node/commit/7a9850a5fb)] - **doc**: use "Long Term Support" in technical values doc (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841)
    
  • [`dfe9698db0`](https://github.com/nodejs/node/commit/dfe9698db0)] - **doc**: use "Long Term Support" in README (Philip) [#&#8203;38839](https://github.com/nodejs/node/pull/38839)
    
  • [`8699e622fc`](https://github.com/nodejs/node/commit/8699e622fc)] - **doc**: fix grammar in `fs.md` (yotamselementor) [#&#8203;38818](https://github.com/nodejs/node/pull/38818)
    
  • [`826ae9b2e2`](https://github.com/nodejs/node/commit/826ae9b2e2)] - **doc**: fixup code sample in http.md (TodorTotev) [#&#8203;38776](https://github.com/nodejs/node/pull/38776)
    
  • [`8049b69b7f`](https://github.com/nodejs/node/commit/8049b69b7f)] - **doc**: document null target pattern (Guy Bedford) [#&#8203;38724](https://github.com/nodejs/node/pull/38724)
    
  • [`4d9129eb71`](https://github.com/nodejs/node/commit/4d9129eb71)] - **doc**: update code examples for `node:url` module (fisker Cheung) [#&#8203;38645](https://github.com/nodejs/node/pull/38645)
    
  • [`2ff671e4c4`](https://github.com/nodejs/node/commit/2ff671e4c4)] - **doc,url**: clarify domainTo\* when built without ICU (Darshan Sen) [#&#8203;38789](https://github.com/nodejs/node/pull/38789)
    
  • [`9b993edca8`](https://github.com/nodejs/node/commit/9b993edca8)] - **errors**: add ERR_DEBUGGER_STARTUP_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`cfccf13e84`](https://github.com/nodejs/node/commit/cfccf13e84)] - **errors**: add ERR_DEBUGGER_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024)
    
  • [`bb9a9adc2b`](https://github.com/nodejs/node/commit/bb9a9adc2b)] - **errors**: don't rekey on primitive type (Benjamin Coe) [#&#8203;39025](https://github.com/nodejs/node/pull/39025)
    
  • [`d48b91ea2b`](https://github.com/nodejs/node/commit/d48b91ea2b)] - **http2**: on receiving rst_stream with cancel code add it to pending list (Akshay K) [#&#8203;39423](https://github.com/nodejs/node/pull/39423)
    
  • [`d8cc2fffd6`](https://github.com/nodejs/node/commit/d8cc2fffd6)] - **lib**: add primordials.SafeArrayIterator (Antoine du Hamel) [#&#8203;36532](https://github.com/nodejs/node/pull/36532)
    
  • [`e3223edb89`](https://github.com/nodejs/node/commit/e3223edb89)] - **lib**: harden lint checks for globals (Antoine du Hamel) [#&#8203;38419](https://github.com/nodejs/node/pull/38419)
    
  • [`d4f96bb926`](https://github.com/nodejs/node/commit/d4f96bb926)] - **lib**: enforce using `primordials.globalThis` instead of `global` (Antoine du Hamel) [#&#8203;38230](https://github.com/nodejs/node/pull/38230)
    
  • [`ea9003a559`](https://github.com/nodejs/node/commit/ea9003a559)] - **lib**: add `globalThis` to primordials (Antoine du Hamel) [#&#8203;38211](https://github.com/nodejs/node/pull/38211)
    
  • [`097a7874d3`](https://github.com/nodejs/node/commit/097a7874d3)] - **lib**: remove semicolon in preparation for babel/eslint-parser update (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094)
    
  • [`199fe32cbc`](https://github.com/nodejs/node/commit/199fe32cbc)] - **lib**: make internal/options lazy (Joyee Cheung) [#&#8203;38993](https://github.com/nodejs/node/pull/38993)
    
  • [`2bc2a232af`](https://github.com/nodejs/node/commit/2bc2a232af)] - **lib**: add JSDoc typings for child_process (Voltrex) [#&#8203;38222](https://github.com/nodejs/node/pull/38222)
    
  • [`b0a1984d4d`](https://github.com/nodejs/node/commit/b0a1984d4d)] - **lib**: fix typos (bl-ue) [#&#8203;38846](https://github.com/nodejs/node/pull/38846)
    
  • [`6c061d5f2c`](https://github.com/nodejs/node/commit/6c061d5f2c)] - **meta**: update label-pr-config (Michaël Zasso) [#&#8203;38950](https://github.com/nodejs/node/pull/38950)
    
  • [`afb61786b9`](https://github.com/nodejs/node/commit/afb61786b9)] - **module**: fix legacy `node` specifier resolution to resolve `"main"` field (Antoine du Hamel) [#&#8203;38979](https://github.com/nodejs/node/pull/38979)
    
  • [`cd3305a9e4`](https://github.com/nodejs/node/commit/cd3305a9e4)] - **node-api**: avoid SecondPassCallback crash (Michael Dawson) [#&#8203;38899](https://github.com/nodejs/node/pull/38899)
    
  • [`e7f266e93d`](https://github.com/nodejs/node/commit/e7f266e93d)] - **src**: use SPrintF in ProcessEmitWarning (Darshan Sen) [#&#8203;38758](https://github.com/nodejs/node/pull/38758)
    
  • [`43fe6c1d27`](https://github.com/nodejs/node/commit/43fe6c1d27)] - **src**: cleanup uv_fs_t regardless of success or not (legendecas) [#&#8203;38996](https://github.com/nodejs/node/pull/38996)
    
  • [`dcfb182546`](https://github.com/nodejs/node/commit/dcfb182546)] - **src**: refactor to use locale functions (Darshan Sen) [#&#8203;39014](https://github.com/nodejs/node/pull/39014)
    
  • [`bee477b000`](https://github.com/nodejs/node/commit/bee477b000)] - **src**: throw error in LoadBuiltinModuleSource when reading fails (Joyee Cheung) [#&#8203;38904](https://github.com/nodejs/node/pull/38904)
    
  • [`ff7cc8f9ef`](https://github.com/nodejs/node/commit/ff7cc8f9ef)] - **src**: add not-weak DCHECK to PersistentToLocal::Strong (Anna Henningsen) [#&#8203;38875](https://github.com/nodejs/node/pull/38875)
    
  • [`981217e48a`](https://github.com/nodejs/node/commit/981217e48a)] - **src**: replace `auto`s in node_api.cc (Khaidi Chu) [#&#8203;38852](https://github.com/nodejs/node/pull/38852)
    
  • [`73e199d963`](https://github.com/nodejs/node/commit/73e199d963)] - **src**: fix typos (bl-ue) [#&#8203;38845](https://github.com/nodejs/node/pull/38845)
    
  • [`2d32031724`](https://github.com/nodejs/node/commit/2d32031724)] - **src**: use HandleScope in StreamReq::Done() (Darshan Sen) [#&#8203;38720](https://github.com/nodejs/node/pull/38720)
    
  • [`2c11d3ec0a`](https://github.com/nodejs/node/commit/2c11d3ec0a)] - **src**: remove commented code in `node_file.cc` (Juan José Arboleda) [#&#8203;38693](https://github.com/nodejs/node/pull/38693)
    
  • [`846a138f54`](https://github.com/nodejs/node/commit/846a138f54)] - **src**: write named pipe info in diagnostic report (legendecas) [#&#8203;38637](https://github.com/nodejs/node/pull/38637)
    
  • [`7d82200861`](https://github.com/nodejs/node/commit/7d82200861)] - **src**: replace `auto`s in node_contextify.cc (Khaidi Chu) [#&#8203;38644](https://github.com/nodejs/node/pull/38644)
    
  • [`51da7d2048`](https://github.com/nodejs/node/commit/51da7d2048)] - **src,url**: separate some tables out of node_url.cc (Khaidi Chu) [#&#8203;38988](https://github.com/nodejs/node/pull/38988)
    
  • [`45c2ea3b72`](https://github.com/nodejs/node/commit/45c2ea3b72)] - **test**: add NumberFormat resolvedOptions test (Richard Lau) [#&#8203;39401](https://github.com/nodejs/node/pull/39401)
    
  • [`6b2fea38d1`](https://github.com/nodejs/node/commit/6b2fea38d1)] - **test**: move inspector-cli tests to sequential (Rich Trott) [#&#8203;39079](https://github.com/nodejs/node/pull/39079)
    
  • [`6447cab7be`](https://github.com/nodejs/node/commit/6447cab7be)] - **test**: improve buffer coverage (Rongjian Zhang) [#&#8203;38538](https://github.com/nodejs/node/pull/38538)
    
  • [`6f1862eab3`](https://github.com/nodejs/node/commit/6f1862eab3)] - **test**: fix name of variable in inspector-cli test (Tobias Nießen) [#&#8203;38869](https://github.com/nodejs/node/pull/38869)
    
  • [`40093504bc`](https://github.com/nodejs/node/commit/40093504bc)] - **test**: fix typo (Houssem Chebab) [#&#8203;39045](https://github.com/nodejs/node/pull/39045)
    
  • [`ab28f9b9a1`](https://github.com/nodejs/node/commit/ab28f9b9a1)] - **test**: remove obsolete TLS test (Rich Trott) [#&#8203;39001](https://github.com/nodejs/node/pull/39001)
    
  • [`b3b59953fe`](https://github.com/nodejs/node/commit/b3b59953fe)] - **test**: improve coverage of lib/events.js (Rongjian Zhang) [#&#8203;38582](https://github.com/nodejs/node/pull/38582)
    
  • [`c99a09f05f`](https://github.com/nodejs/node/commit/c99a09f05f)] - **test**: http outgoing \_headers setter null (ycjcl868) [#&#8203;38881](https://github.com/nodejs/node/pull/38881)
    
  • [`660a97b1d5`](https://github.com/nodejs/node/commit/660a97b1d5)] - **test**: suppress warning in test_environment.cc (Daniel Bevenius) [#&#8203;38868](https://github.com/nodejs/node/pull/38868)
    
  • [`0cca16ac4c`](https://github.com/nodejs/node/commit/0cca16ac4c)] - **test**: improve coverage of fs internal utils (Rongjian Zhang) [#&#8203;38746](https://github.com/nodejs/node/pull/38746)
    
  • [`fecad40f27`](https://github.com/nodejs/node/commit/fecad40f27)] - **test**: fix writefile with fd (Nitzan Uziely) [#&#8203;38820](https://github.com/nodejs/node/pull/38820)
    
  • [`01f00faaa8`](https://github.com/nodejs/node/commit/01f00faaa8)] - **test**: simplify test-path-resolve.js (himself65) [#&#8203;38671](https://github.com/nodejs/node/pull/38671)
    
  • [`504bfd7a88`](https://github.com/nodejs/node/commit/504bfd7a88)] - **test**: improve coverage for `question` in readline (Qingyu Deng) [#&#8203;38799](https://github.com/nodejs/node/pull/38799)
    
  • [`eb91932e77`](https://github.com/nodejs/node/commit/eb91932e77)] - **test**: os, replace custom flatten method with built-in Array.flat (Wael Almattar) [#&#8203;38770](https://github.com/nodejs/node/pull/38770)
    
  • [`aeea252b96`](https://github.com/nodejs/node/commit/aeea252b96)] - **test**: improve coverage of lib/\_http_outgoing.js (Rongjian Zhang) [#&#8203;38734](https://github.com/nodejs/node/pull/38734)
    
  • [`e265d8ee1b`](https://github.com/nodejs/node/commit/e265d8ee1b)] - **test**: give js-native-api tests consistent names (Gabriel Schulhof) [#&#8203;38692](https://github.com/nodejs/node/pull/38692)
    
  • [`99fd8bfc6a`](https://github.com/nodejs/node/commit/99fd8bfc6a)] - **test**: fix flaky inspector-cli tests when breakpionts are restored (Rich Trott) [#&#8203;38431](https://github.com/nodejs/node/pull/38431)
    
  • [`4d3a1fad28`](https://github.com/nodejs/node/commit/4d3a1fad28)] - **test**: extend timeout on debugger tests for slower machines (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`dd2642b5db`](https://github.com/nodejs/node/commit/dd2642b5db)] - **test**: fix comment typo (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`193ea8fd91`](https://github.com/nodejs/node/commit/193ea8fd91)] - **test**: fix test-inspector-cli-address (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`a62826bbe6`](https://github.com/nodejs/node/commit/a62826bbe6)] - **test,debugger**: migrate node-inspect tests to core (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`ab45ace9bd`](https://github.com/nodejs/node/commit/ab45ace9bd)] - **tools**: update babel-eslint-parser to 7.14.5 (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094)
    
  • [`b8e63b3c08`](https://github.com/nodejs/node/commit/b8e63b3c08)] - **tools**: update ESLint to 7.29.0 (Rich Trott) [#&#8203;39083](https://github.com/nodejs/node/pull/39083)
    
  • [`54a250e79c`](https://github.com/nodejs/node/commit/54a250e79c)] - **tools**: update doctool dependencies, migrate to ESM (Michaël Zasso) [#&#8203;38966](https://github.com/nodejs/node/pull/38966)
    
  • [`443db64eed`](https://github.com/nodejs/node/commit/443db64eed)] - **tools**: avoid crashing CQ when git push fails (Antoine du Hamel) [#&#8203;36861](https://github.com/nodejs/node/pull/36861)
    
  • [`547f88b149`](https://github.com/nodejs/node/commit/547f88b149)] - **tools**: fix typo in commit-queue.sh (bl-ue) [#&#8203;39000](https://github.com/nodejs/node/pull/39000)
    
  • [`1023433a81`](https://github.com/nodejs/node/commit/1023433a81)] - **tools**: update ESLint to 7.28.0 (Luigi Pinca) [#&#8203;38955](https://github.com/nodejs/node/pull/38955)
    
  • [`9b4ae8fbb0`](https://github.com/nodejs/node/commit/9b4ae8fbb0)] - **tools**: bump remark-preset-lint-node to 2.3.0 (Rich Trott) [#&#8203;38910](https://github.com/nodejs/node/pull/38910)
    
  • [`2ad0719e86`](https://github.com/nodejs/node/commit/2ad0719e86)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851)
    
  • [`b7686d0c1e`](https://github.com/nodejs/node/commit/b7686d0c1e)] - **tools**: bump cpplint to 1.5.5 (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851)
    
  • [`2ec7c9de57`](https://github.com/nodejs/node/commit/2ec7c9de57)] - **tools**: remove exception for Node.js 8 and earlier (Rich Trott) [#&#8203;38840](https://github.com/nodejs/node/pull/38840)
    
  • [`1dc71da302`](https://github.com/nodejs/node/commit/1dc71da302)] - **tools**: update setup-node to setup-node@v2 (pengjie) [#&#8203;38825](https://github.com/nodejs/node/pull/38825)
    
  • [`fc219d862c`](https://github.com/nodejs/node/commit/fc219d862c)] - **tools**: remove node-inspect from license (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161)
    
  • [`4bb0bd0f0e`](https://github.com/nodejs/node/commit/4bb0bd0f0e)] - **tools,doc**: forbid CJS globals in ESM code snippets (Antoine du Hamel) [#&#8203;38889](https://github.com/nodejs/node/pull/38889)
    
  • [`58154ce426`](https://github.com/nodejs/node/commit/58154ce426)] - **typings**: add JSDoc typings for https (Voltrex) [#&#8203;38589](https://github.com/nodejs/node/pull/38589)
    
  • [`6ea1368a67`](https://github.com/nodejs/node/commit/6ea1368a67)] - **typings**: add JSDoc typings for events (Voltrex) [#&#8203;38712](https://github.com/nodejs/node/pull/38712)
    
  • [`b6942a6138`](https://github.com/nodejs/node/commit/b6942a6138)] - **url,src**: simplify ipv6 logic by using uv_inet_pton (Khaidi Chu) [#&#8203;38842](https://github.com/nodejs/node/pull/38842)
    
  • [`dd00547ada`](https://github.com/nodejs/node/commit/dd00547ada)] - **vm**: use missing validator (Voltrex) [#&#8203;38935](https://github.com/nodejs/node/pull/38935)
    
  • [`2c28e00685`](https://github.com/nodejs/node/commit/2c28e00685)] - **worker**: do not look up context twice in PostMessage (Anna Henningsen) [#&#8203;38784](https://github.com/nodejs/node/pull/38784)
    
    

v14.17.3

Compare Source

Notable Changes

Node.js 14.17.2 introduced a regression in the Windows installer on
non-English locales that is being fixed in this release. There is no
need to download this release if you are not using the Windows
installer.

Commits
  • [`0f00104a2c`](https://github.com/nodejs/node/commit/0f00104a2c)] - **win,msi**: use localized "Authenticated Users" name (Richard Lau) [#&#8203;39241](https://github.com/nodejs/node/pull/39241)
    
    

v14.17.2

Compare Source

This is a security release.

Notable Changes

Vulnerabilities fixed:

  • CVE-2021-22918: libuv upgrade - Out of bounds read (Medium)
    • Node.js is vulnerable to out-of-bounds read in libuv's uv__idna_toascii() function which is used to convert strings to ASCII. This is called by Node's dns module's lookup() function and can lead to information disclosures or crashes. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22918
  • CVE-2021-22921: Windows installer - Node Installer Local Privilege Escalation (Medium)
    • Node.js is vulnerable to local privilege escalation attacks under certain conditions on Windows platforms. More specifically, improper configuration of permissions in the installation directory allows an attacker to perform two different escalation attacks: PATH and DLL hijacking. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22921
Commits
  • [`a7496aba0a`](https://github.com/nodejs/node/commit/a7496aba0a)] - **deps**: uv: cherry-pick [`99c29c9`](https://github.com/nodejs/node/commit/99c29c9c2c9b) (Ben Noordhuis) [nodejs-private/node-private#&#8203;267](https://github.com/nodejs-private/node-private/pull/267)
    
  • [`d0b449da1d`](https://github.com/nodejs/node/commit/d0b449da1d)] - **win,msi**: set install directory permission (AkshayK) [nodejs-private/node-private#&#8203;269](https://github.com/nodejs-private/node-private/pull/269)
    
    

v14.17.1

Compare Source

Notable Changes
  • [`6035492c8f`](https://github.com/nodejs/node/commit/6035492c8f)] - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178)
    
  • [`9417fd0bc8`](https://github.com/nodejs/node/commit/9417fd0bc8)] - **errors**: align source-map stacks with spec (Benjamin Coe) [#&#8203;37252](https://github.com/nodejs/node/pull/37252)
    
    
Commits
  • [`87fa636953`](https://github.com/nodejs/node/commit/87fa636953)] - **assert**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36234](https://github.com/nodejs/node/pull/36234)
    
  • [`cfff3b4462`](https://github.com/nodejs/node/commit/cfff3b4462)] - **assert**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37344](https://github.com/nodejs/node/pull/37344)
    
  • [`dd18def7db`](https://github.com/nodejs/node/commit/dd18def7db)] - **async_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37125](https://github.com/nodejs/node/pull/37125)
    
  • [`5f3e96b570`](https://github.com/nodejs/node/commit/5f3e96b570)] - **async_hooks,doc**: replace process.stdout.fd with 1 (Darshan Sen) [#&#8203;38382](https://github.com/nodejs/node/pull/38382)
    
  • [`f4cb8b8281`](https://github.com/nodejs/node/commit/f4cb8b8281)] - **benchmark**: avoid using `console.log()` (Antoine du Hamel) [#&#8203;38370](https://github.com/nodejs/node/pull/38370)
    
  • [`9e4c1f2f2c`](https://github.com/nodejs/node/commit/9e4c1f2f2c)] - **benchmark**: use `process.hrtime.bigint()` (Antoine du Hamel) [#&#8203;38369](https://github.com/nodejs/node/pull/38369)
    
  • [`3c886e0ad6`](https://github.com/nodejs/node/commit/3c886e0ad6)] - **buffer**: remove TODOs in `atob` / `btoa` (Khaidi Chu) [#&#8203;38548](https://github.com/nodejs/node/pull/38548)
    
  • [`c5b86f8c2f`](https://github.com/nodejs/node/commit/c5b86f8c2f)] - **buffer**: remove unreachable code (Rongjian Zhang) [#&#8203;38537](https://github.com/nodejs/node/pull/38537)
    
  • [`9ae2a27d44`](https://github.com/nodejs/node/commit/9ae2a27d44)] - **buffer**: make FastBuffer safe to construct (Antoine du Hamel) [#&#8203;36587](https://github.com/nodejs/node/pull/36587)
    
  • [`ff546ff744`](https://github.com/nodejs/node/commit/ff546ff744)] - **buffer**: refactor to use primordials instead of Array#reduce (Antoine du Hamel) [#&#8203;36392](https://github.com/nodejs/node/pull/36392)
    
  • [`5acf0a5ba3`](https://github.com/nodejs/node/commit/5acf0a5ba3)] - **buffer**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36166](https://github.com/nodejs/node/pull/36166)
    
  • [`52fd42ec46`](https://github.com/nodejs/node/commit/52fd42ec46)] - **build**: work around bug in MSBuild v16.10.0 (Michaël Zasso) [#&#8203;38873](https://github.com/nodejs/node/pull/38873)
    
  • [`5df0f35bf6`](https://github.com/nodejs/node/commit/5df0f35bf6)] - **build**: add workaround for V8 builds (Richard Lau) [#&#8203;38632](https://github.com/nodejs/node/pull/38632)
    
  • [`754aa384e0`](https://github.com/nodejs/node/commit/754aa384e0)] - **build**: remove dependency on `distutils.spawn` (Richard Lau) [#&#8203;38600](https://github.com/nodejs/node/pull/38600)
    
  • [`5de7e64f3a`](https://github.com/nodejs/node/commit/5de7e64f3a)] - **build**: fix make test-npm (Ruy Adorno) [#&#8203;36369](https://github.com/nodejs/node/pull/36369)
    
  • [`e5fae63108`](https://github.com/nodejs/node/commit/e5fae63108)] - **child_process**: reduce abort handler code duplication (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`598d2bdf09`](https://github.com/nodejs/node/commit/598d2bdf09)] - **child_process**: treat already-aborted controller as aborting (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`8d7708bdef`](https://github.com/nodejs/node/commit/8d7708bdef)] - **child_process**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36003](https://github.com/nodejs/node/pull/36003)
    
  • [`b8c4d30e77`](https://github.com/nodejs/node/commit/b8c4d30e77)] - **deps**: update to cjs-module-lexer@1.2.1 (Guy Bedford) [#&#8203;38450](https://github.com/nodejs/node/pull/38450)
    
  • [`6035492c8f`](https://github.com/nodejs/node/commit/6035492c8f)] - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178)
    
  • [`51dad8cabb`](https://github.com/nodejs/node/commit/51dad8cabb)] - **deps**: V8: cherry-pick [`035c305`](https://github.com/nodejs/node/commit/035c305ce776) (Michaël Zasso) [#&#8203;38497](https://github.com/nodejs/node/pull/38497)
    
  • [`a467125c8d`](https://github.com/nodejs/node/commit/a467125c8d)] - **deps**: V8: cherry-pick [`dfcdf78`](https://github.com/nodejs/node/commit/dfcdf7837e23) (Benjamin Coe) [#&#8203;36573](https://github.com/nodejs/node/pull/36573)
    
  • [`acc9fad2ba`](https://github.com/nodejs/node/commit/acc9fad2ba)] - **deps**: V8: cherry-pick [`86991d0`](https://github.com/nodejs/node/commit/86991d0587a1) (Benjamin Coe) [#&#8203;36254](https://github.com/nodejs/node/pull/36254)
    
  • [`d67827744b`](https://github.com/nodejs/node/commit/d67827744b)] - **deps**: V8: cherry-pick [`530080c`](https://github.com/nodejs/node/commit/530080c44af2) (Milad Fa) [#&#8203;38508](https://github.com/nodejs/node/pull/38508)
    
  • [`bac9ba4f8a`](https://github.com/nodejs/node/commit/bac9ba4f8a)] - **dgram**: extract cluster lazy loading method to make it testable (Rongjian Zhang) [#&#8203;38563](https://github.com/nodejs/node/pull/38563)
    
  • [`f5b2115b76`](https://github.com/nodejs/node/commit/f5b2115b76)] - **dgram**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36286](https://github.com/nodejs/node/pull/36286)
    
  • [`cd7cf0547a`](https://github.com/nodejs/node/commit/cd7cf0547a)] - **dns**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36314](https://github.com/nodejs/node/pull/36314)
    
  • [`9f67c0852c`](https://github.com/nodejs/node/commit/9f67c0852c)] - **doc**: cleanup events.md structure (James M Snell) [#&#8203;36100](https://github.com/nodejs/node/pull/36100)
    
  • [`41cfe645c0`](https://github.com/nodejs/node/commit/41cfe645c0)] - **doc**: fix JS flavor selection (Antoine du Hamel) [#&#8203;37791](https://github.com/nodejs/node/pull/37791)
    
  • [`7c4748b0dc`](https://github.com/nodejs/node/commit/7c4748b0dc)] - **doc**: use `HEAD` instead of `master` for links (Antoine du Hamel) [#&#8203;38518](https://github.com/nodejs/node/pull/38518)
    
  • [`26426577ff`](https://github.com/nodejs/node/commit/26426577ff)] - **doc**: remove import.meta.resolve parent URL type (Kevin Locke) [#&#8203;38585](https://github.com/nodejs/node/pull/38585)
    
  • [`88055abf19`](https://github.com/nodejs/node/commit/88055abf19)] - **doc**: document buffer.kStringMaxLength (Tobias Nießen) [#&#8203;38688](https://github.com/nodejs/node/pull/38688)
    
  • [`2e8dfee165`](https://github.com/nodejs/node/commit/2e8dfee165)] - **doc**: clarify synchronous blocking of Worker stdio (James M Snell) [#&#8203;38658](https://github.com/nodejs/node/pull/38658)
    
  • [`212cd5cf05`](https://github.com/nodejs/node/commit/212cd5cf05)] - **doc**: update contact info (Gabriel Schulhof) [#&#8203;38689](https://github.com/nodejs/node/pull/38689)
    
  • [`fa35c0662b`](https://github.com/nodejs/node/commit/fa35c0662b)] - **doc**: change color of doctag on night mode (Qingyu Deng) [#&#8203;38652](https://github.com/nodejs/node/pull/38652)
    
  • [`4c67437c53`](https://github.com/nodejs/node/commit/4c67437c53)] - **doc**: clarify DiffieHellmanGroup class docs (Nitzan Uziely) [#&#8203;38363](https://github.com/nodejs/node/pull/38363)
    
  • [`e90c60b1e3`](https://github.com/nodejs/node/commit/e90c60b1e3)] - **doc**: use AIX instead of Aix in fs.md (Rich Trott) [#&#8203;38535](https://github.com/nodejs/node/pull/38535)
    
  • [`dc67fec1b4`](https://github.com/nodejs/node/commit/dc67fec1b4)] - **doc**: remove extraneous dash from flag prefix (Rodolfo Carvalho) [#&#8203;38532](https://github.com/nodejs/node/pull/38532)
    
  • [`4c54d81a59`](https://github.com/nodejs/node/commit/4c54d81a59)] - **doc**: document `'secureConnect'` event limitation (James M Snell) [#&#8203;38447](https://github.com/nodejs/node/pull/38447)
    
  • [`839e8d1672`](https://github.com/nodejs/node/commit/839e8d1672)] - **doc**: mark querystring api as legacy (James M Snell) [#&#8203;38436](https://github.com/nodejs/node/pull/38436)
    
  • [`a75b7af9bd`](https://github.com/nodejs/node/commit/a75b7af9bd)] - **doc**: add arguments for stream event of Http2Server and Http2SecureServer (Qingyu Deng) [#&#8203;37892](https://github.com/nodejs/node/pull/37892)
    
  • [`cf0007edc4`](https://github.com/nodejs/node/commit/cf0007edc4)] - **doc**: indicate that abort tests do not generate core files (Rich Trott) [#&#8203;38422](https://github.com/nodejs/node/pull/38422)
    
  • [`945450b5cf`](https://github.com/nodejs/node/commit/945450b5cf)] - **doc**: add try/catch in http2 respondWithFile example (Matteo Collina) [#&#8203;38410](https://github.com/nodejs/node/pull/38410)
    
  • [`1f7cd7148a`](https://github.com/nodejs/node/commit/1f7cd7148a)] - **doc**: note the system requirements for V8 tests (DeeDeeG) [#&#8203;38319](https://github.com/nodejs/node/pull/38319)
    
  • [`cd54834854`](https://github.com/nodejs/node/commit/cd54834854)] - **doc**: minor clarification to pathObject (James M Snell) [#&#8203;38437](https://github.com/nodejs/node/pull/38437)
    
  • [`ba117c2c6f`](https://github.com/nodejs/node/commit/ba117c2c6f)] - **doc**: document new TCP_KEEPCNT and TCP_KEEPINTVL socket option defaults (Arnold Zokas) [#&#8203;38313](https://github.com/nodejs/node/pull/38313)
    
  • [`dcdbaffced`](https://github.com/nodejs/node/commit/dcdbaffced)] - **doc**: do not mention TCP in the allowHalfOpen option description (Luigi Pinca) [#&#8203;38360](https://github.com/nodejs/node/pull/38360)
    
  • [`fe8003e5de`](https://github.com/nodejs/node/commit/fe8003e5de)] - **doc**: update message to match actual output (Rich Trott) [#&#8203;35271](https://github.com/nodejs/node/pull/35271)
    
  • [`c03f23e126`](https://github.com/nodejs/node/commit/c03f23e126)] - **doc**: request default snap track be updated for LTS (Rod Vagg) [#&#8203;37708](https://github.com/nodejs/node/pull/37708)
    
  • [`a9f7aeed12`](https://github.com/nodejs/node/commit/a9f7aeed12)] - **doc**: mark `process.hrtime()` as legacy (Antoine du Hamel) [#&#8203;38371](https://github.com/nodejs/node/pull/38371)
    
  • [`cede0c57b8`](https://github.com/nodejs/node/commit/cede0c57b8)] - **doc**: fix version history for `"exports"` patterns (Antoine du Hamel) [#&#8203;38355](https://github.com/nodejs/node/pull/38355)
    
  • [`9702f22397`](https://github.com/nodejs/node/commit/9702f22397)] - **doc**: fix `package.json` `"imports"` field history (Antoine du Hamel) [#&#8203;38356](https://github.com/nodejs/node/pull/38356)
    
  • [`2d96da875e`](https://github.com/nodejs/node/commit/2d96da875e)] - **doc**: fix typo in buffer.md (divlo) [#&#8203;38323](https://github.com/nodejs/node/pull/38323)
    
  • [`6b58f28472`](https://github.com/nodejs/node/commit/6b58f28472)] - **doc**: add nodejs-sec email template (Daniel Bevenius) [#&#8203;38290](https://github.com/nodejs/node/pull/38290)
    
  • [`5a532e4725`](https://github.com/nodejs/node/commit/5a532e4725)] - **doc**: update TSC members list with three new members (Rich Trott) [#&#8203;38352](https://github.com/nodejs/node/pull/38352)
    
  • [`e994d6a27c`](https://github.com/nodejs/node/commit/e994d6a27c)] - **doc**: use `foo.prototype.bar` notation in buffer.md (Voltrex) [#&#8203;38032](https://github.com/nodejs/node/pull/38032)
    
  • [`c61f363d66`](https://github.com/nodejs/node/commit/c61f363d66)] - **doc**: internal/test/binding for testing (Bradley Meck) [#&#8203;38026](https://github.com/nodejs/node/pull/38026)
    
  • [`0bb6fe31b3`](https://github.com/nodejs/node/commit/0bb6fe31b3)] - **doc**: add missing events.on metadata (Anna Henningsen) [#&#8203;37965](https://github.com/nodejs/node/pull/37965)
    
  • [`30c82b2745`](https://github.com/nodejs/node/commit/30c82b2745)] - **doc**: fix wording in outgoingMessage.write (Tobias Nießen) [#&#8203;37894](https://github.com/nodejs/node/pull/37894)
    
  • [`932000020a`](https://github.com/nodejs/node/commit/932000020a)] - **doc**: fix grammar errors in http document (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265)
    
  • [`19e8ae44c4`](https://github.com/nodejs/node/commit/19e8ae44c4)] - **doc**: add document for http.OutgoingMessage (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265)
    
  • [`a6c123363d`](https://github.com/nodejs/node/commit/a6c123363d)] - **doc**: remove generated from dsaEncoding description (Marko Kaznovac) [#&#8203;37459](https://github.com/nodejs/node/pull/37459)
    
  • [`bc6ea63e48`](https://github.com/nodejs/node/commit/bc6ea63e48)] - **doc**: document how to register external bindings for snapshot (Joyee Cheung) [#&#8203;37463](https://github.com/nodejs/node/pull/37463)
    
  • [`2168e954aa`](https://github.com/nodejs/node/commit/2168e954aa)] - **doc**: document the NO_COLOR and FORCE_COLOR env vars (James M Snell) [#&#8203;37477](https://github.com/nodejs/node/pull/37477)
    
  • [`2907848fc9`](https://github.com/nodejs/node/commit/2907848fc9)] - **doc**: clarify event.isTrusted text (Rich Trott) [#&#8203;36827](https://github.com/nodejs/node/pull/36827)
    
  • [`7efa020892`](https://github.com/nodejs/node/commit/7efa020892)] - **doc**: expand openssl instructions (Michael Dawson) [#&#8203;36554](https://github.com/nodejs/node/pull/36554)
    
  • [`b197a44152`](https://github.com/nodejs/node/commit/b197a44152)] - **doc**: document ABORT_ERR code (Benjamin Gruenbaum) [#&#8203;36319](https://github.com/nodejs/node/pull/36319)
    
  • [`1d80f89442`](https://github.com/nodejs/node/commit/1d80f89442)] - **doc**: document changes for `*/promises` alias modules (ExE Boss) [#&#8203;34002](https://github.com/nodejs/node/pull/34002)
    
  • [`9417fd0bc8`](https://github.com/nodejs/node/commit/9417fd0bc8)] - **errors**: align source-map stacks with spec (Benjamin Coe) [#&#8203;37252](https://github.com/nodejs/node/pull/37252)
    
  • [`dcd221ce69`](https://github.com/nodejs/node/commit/dcd221ce69)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36651](https://github.com/nodejs/node/pull/36651)
    
  • [`ee444473e9`](https://github.com/nodejs/node/commit/ee444473e9)] - **errors**: display original symbol name (Benjamin Coe) [#&#8203;36042](https://github.com/nodejs/node/pull/36042)
    
  • [`83d28374d6`](https://github.com/nodejs/node/commit/83d28374d6)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36167](https://github.com/nodejs/node/pull/36167)
    
  • [`7d7e34c15a`](https://github.com/nodejs/node/commit/7d7e34c15a)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35944](https://github.com/nodejs/node/pull/35944)
    
  • [`18e5c0f3e2`](https://github.com/nodejs/node/commit/18e5c0f3e2)] - **events**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36763](https://github.com/nodejs/node/pull/36763)
    
  • [`4fdcbae583`](https://github.com/nodejs/node/commit/4fdcbae583)] - **events**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36304](https://github.com/nodejs/node/pull/36304)
    
  • [`c4e7dca8f3`](https://github.com/nodejs/node/commit/c4e7dca8f3)] - **fs**: fix error when writing buffers > INT32\_MAX (Zach Bjornson) [#&#8203;38546](https://github.com/nodejs/node/pull/38546)
    
  • [`07c55d2844`](https://github.com/nodejs/node/commit/07c55d2844)] - ***Revert*** "**http**: make HEAD method to work with keep-alive" (Michaël Zasso) [#&#8203;38949](https://github.com/nodejs/node/pull/38949)
    
  • [`d8da265c81`](https://github.com/nodejs/node/commit/d8da265c81)] - **http2**: treat non-EOF empty frames like other invalid frames (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875)
    
  • [`c3bd0fdb73`](https://github.com/nodejs/node/commit/c3bd0fdb73)] - **http2**: fix setting options before handle exists (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875)
    
  • [`74fe1d8f0c`](https://github.com/nodejs/node/commit/74fe1d8f0c)] - **http2**: add support for TypedArray to getUnpackedSettings (Antoine du Hamel) [#&#8203;36141](https://github.com/nodejs/node/pull/36141)
    
  • [`c90f1dbeb3`](https://github.com/nodejs/node/commit/c90f1dbeb3)] - **https**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36195](https://github.com/nodejs/node/pull/36195)
    
  • [`8258799472`](https://github.com/nodejs/node/commit/8258799472)] - **inspector**: remove redundant method for connection check (Yash Ladha) [#&#8203;37986](https://github.com/nodejs/node/pull/37986)
    
  • [`ba19313e1e`](https://github.com/nodejs/node/commit/ba19313e1e)] - **inspector**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36356](https://github.com/nodejs/node/pull/36356)
    
  • [`eb8f7ee634`](https://github.com/nodejs/node/commit/eb8f7ee634)] - **lib**: revert primordials in a hot path (Antoine du Hamel) [#&#8203;38248](https://github.com/nodejs/node/pull/38248)
    
  • [`cea8b4265c`](https://github.com/nodejs/node/commit/cea8b4265c)] - **lib**: make `IterableWeakMap` safe to iterate (Antoine du Hamel) [#&#8203;38523](https://github.com/nodejs/node/pull/38523)
    
  • [`490bc58229`](https://github.com/nodejs/node/commit/490bc58229)] - **lib**: fix and improve os typings (Akhil Marsonya) [#&#8203;38316](https://github.com/nodejs/node/pull/38316)
    
  • [`af39df6d03`](https://github.com/nodejs/node/commit/af39df6d03)] - **lib**: add URI handling functions to primordials (Antoine du Hamel) [#&#8203;37394](https://github.com/nodejs/node/pull/37394)
    
  • [`16691be80e`](https://github.com/nodejs/node/commit/16691be80e)] - **lib**: fix WebIDL `object` and dictionary type conversion (ExE Boss) [#&#8203;37047](https://github.com/nodejs/node/pull/37047)
    
  • [`47ed512312`](https://github.com/nodejs/node/commit/47ed512312)] - **lib**: refactor to use optional chaining in internal/options.js (raisinten) [#&#8203;36939](https://github.com/nodejs/node/pull/36939)
    
  • [`346fc0ac21`](https://github.com/nodejs/node/commit/346fc0ac21)] - **lib**: support returning Safe collections from C++ (ExE Boss) [#&#8203;36989](https://github.com/nodejs/node/pull/36989)
    
  • [`8912caba64`](https://github.com/nodejs/node/commit/8912caba64)] - **lib**: expose primordials object (Antoine du Hamel) [#&#8203;36872](https://github.com/nodejs/node/pull/36872)
    
  • [`46c019b988`](https://github.com/nodejs/node/commit/46c019b988)] - **lib**: refactor source_map to use more primordials (Antoine du Hamel) [#&#8203;36733](https://github.com/nodejs/node/pull/36733)
    
  • [`cf9556d8f7`](https://github.com/nodejs/node/commit/cf9556d8f7)] - **lib**: refactor source_map to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36734](https://github.com/nodejs/node/pull/36734)
    
  • [`6eaf357f49`](https://github.com/nodejs/node/commit/6eaf357f49)] - **lib**: simplify `primordials.uncurryThis` (ExE Boss) [#&#8203;36866](https://github.com/nodejs/node/pull/36866)
    
  • [`9338759b01`](https://github.com/nodejs/node/commit/9338759b01)] - **lib**: remove v8\_prof_polyfill from eslint ignore list (Antoine du Hamel) [#&#8203;36537](https://github.com/nodejs/node/pull/36537)
    
  • [`c9861a344a`](https://github.com/nodejs/node/commit/c9861a344a)] - **lib**: remove unused code (Brian White) [#&#8203;36632](https://github.com/nodejs/node/pull/36632)
    
  • [`01a71dd393`](https://github.com/nodejs/node/commit/01a71dd393)] - **lib**: refactor to use more primordials in internal/encoding.js (raisinten) [#&#8203;36480](https://github.com/nodejs/node/pull/36480)
    
  • [`e6c0877604`](https://github.com/nodejs/node/commit/e6c0877604)] - **lib**: refactor to use primordials in internal/priority_queue.js (ZiJian Liu) [#&#8203;36560](https://github.com/nodejs/node/pull/36560)
    
  • [`6e3a2ffb98`](https://github.com/nodejs/node/commit/6e3a2ffb98)] - **lib**: add primordials.SafeStringIterator (Antoine du Hamel) [#&#8203;36526](https://github.com/nodejs/node/pull/36526)
    
  • [`bf0738bc07`](https://github.com/nodejs/node/commit/bf0738bc07)] - **lib**: make safe primordials safe to construct (Antoine du Hamel) [#&#8203;36428](https://github.com/nodejs/node/pull/36428)
    
  • [`7ebc18f293`](https://github.com/nodejs/node/commit/7ebc18f293)] - **lib**: make safe primordials safe to iterate (Antoine du Hamel) [#&#8203;36391](https://github.com/nodejs/node/pull/36391)
    
  • [`e12dbc8519`](https://github.com/nodejs/node/commit/e12dbc8519)] - **lib**: refactor to use more primordials in internal/histogram.js (raisinten) [#&#8203;36455](https://github.com/nodejs/node/pull/36455)
    
  • [`5daeac64a4`](https://github.com/nodejs/node/commit/5daeac64a4)] - **lib**: add uncurried accessor properties to `primordials` (ExE Boss) [#&#8203;36329](https://github.com/nodejs/node/pull/36329)
    
  • [`bb4900d9eb`](https://github.com/nodejs/node/commit/bb4900d9eb)] - **lib**: refactor primordials.uncurryThis (Antoine du Hamel) [#&#8203;36221](https://github.com/nodejs/node/pull/36221)
    
  • [`0fbe945ebb`](https://github.com/nodejs/node/commit/0fbe945ebb)] - **lib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36140](https://github.com/nodejs/node/pull/36140)
    
  • [`24d4d63308`](https://github.com/nodejs/node/commit/24d4d63308)] - **lib**: add %TypedArray% abstract constructor to primordials (ExE Boss) [#&#8203;36016](https://github.com/nodejs/node/pull/36016)
    
  • [`e2395b0f3b`](https://github.com/nodejs/node/commit/e2395b0f3b)] - **lib**: use Object static properties from primordials (Michaël Zasso) [#&#8203;35380](https://github.com/nodejs/node/pull/35380)
    
  • [`b3e22e1612`](https://github.com/nodejs/node/commit/b3e22e1612)] - **lib,tools**: enforce access to prototype from primordials (Antoine du Hamel) [#&#8203;36025](https://github.com/nodejs/node/pull/36025)
    
  • [`e94e0b488e`](https://github.com/nodejs/node/commit/e94e0b488e)] - **meta**: add v8 team (Jiawen Geng) [#&#8203;38566](https://github.com/nodejs/node/pull/38566)
    
  • [`fcc6a00f1a`](https://github.com/nodejs/node/commit/fcc6a00f1a)] - **meta**: post comment when pr labeled fast-track (James M Snell) [#&#8203;38446](https://github.com/nodejs/node/pull/38446)
    
  • [`bd0d9647ca`](https://github.com/nodejs/node/commit/bd0d9647ca)] - **module**: clarify CJS global-like variables not defined error message (Antoine du Hamel) [#&#8203;37852](https://github.com/nodejs/node/pull/37852)
    
  • [`0fdb5d59f7`](https://github.com/nodejs/node/commit/0fdb5d59f7)] - **module**: refactor NativeModule to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37656](https://github.com/nodejs/node/pull/37656)
    
  • [`77c7d979b6`](https://github.com/nodejs/node/commit/77c7d979b6)] - **module**: simplify tryStatSync with throwIfNoEntry option (Antoine du Hamel) [#&#8203;36971](https://github.com/nodejs/node/pull/36971)
    
  • [`1aae572220`](https://github.com/nodejs/node/commit/1aae572220)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36348](https://github.com/nodejs/node/pull/36348)
    
  • [`9e7f166161`](https://github.com/nodejs/node/commit/9e7f166161)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36024](https://github.com/nodejs/node/pull/36024)
    
  • [`eee1d291cf`](https://github.com/nodejs/node/commit/eee1d291cf)] - **module**: refactor to use iterable-weak-map (Benjamin Coe) [#&#8203;35915](https://github.com/nodejs/node/pull/35915)
    
  • [`52cbe89f7f`](https://github.com/nodejs/node/commit/52cbe89f7f)] - **net**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36303](https://github.com/nodejs/node/pull/36303)
    
  • [`779ad54078`](https://github.com/nodejs/node/commit/779ad54078)] - **node-api**: faster threadsafe_function (Fedor Indutny) [#&#8203;38506](https://github.com/nodejs/node/pull/38506)
    
  • [`5995221ced`](https://github.com/nodejs/node/commit/5995221ced)] - **node-api**: fix shutdown crashes (Michael Dawson) [#&#8203;38492](https://github.com/nodejs/node/pull/38492)
    
  • [`d8acec4cb1`](https://github.com/nodejs/node/commit/d8acec4cb1)] - **node-api**: make reference weak parameter an indirect link to references (Chengzhong Wu) [#&#8203;38000](https://github.com/nodejs/node/pull/38000)
    
  • [`c442d89ad6`](https://github.com/nodejs/node/commit/c442d89ad6)] - **os**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36284](https://github.com/nodejs/node/pull/36284)
    
  • [`daeb6fcd78`](https://github.com/nodejs/node/commit/daeb6fcd78)] - **path**: inline conditions (Voltrex) [#&#8203;38613](https://github.com/nodejs/node/pull/38613)
    
  • [`e2f531f646`](https://github.com/nodejs/node/commit/e2f531f646)] - **path**: refactor to use more primordials (Akhil Marsonya) [#&#8203;37893](https://github.com/nodejs/node/pull/37893)
    
  • [`c1364d15a2`](https://github.com/nodejs/node/commit/c1364d15a2)] - **path**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36302](https://github.com/nodejs/node/pull/36302)
    
  • [`726ef40fcb`](https://github.com/nodejs/node/commit/726ef40fcb)] - **perf_hooks**: throw ERR_INVALID_ARG_VALUE if histogram.percentile param is NaN (ZiJian Liu) [#&#8203;36937](https://github.com/nodejs/node/pull/36937)
    
  • [`4686f4f41b`](https://github.com/nodejs/node/commit/4686f4f41b)] - **perf_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36723](https://github.com/nodejs/node/pull/36723)
    
  • [`6adec6351e`](https://github.com/nodejs/node/commit/6adec6351e)] - **perf_hooks**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36297](https://github.com/nodejs/node/pull/36297)
    
  • [`bf9aa425c0`](https://github.com/nodejs/node/commit/bf9aa425c0)] - **policy**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36210](https://github.com/nodejs/node/pull/36210)
    
  • [`0f6c3f76b3`](https://github.com/nodejs/node/commit/0f6c3f76b3)] - **querystring**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36315](https://github.com/nodejs/node/pull/36315)
    
  • [`b5b8a996f3`](https://github.com/nodejs/node/commit/b5b8a996f3)] - **readline**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36296](https://github.com/nodejs/node/pull/36296)
    
  • [`cd981808b4`](https://github.com/nodejs/node/commit/cd981808b4)] - **repl**: document top level await limitation with const/let (James M Snell) [#&#8203;38449](https://github.com/nodejs/node/pull/38449)
    
  • [`a4eb5571eb`](https://github.com/nodejs/node/commit/a4eb5571eb)] - **repl**: display prompt once after error callback (Anna Henningsen) [#&#8203;38314](https://github.com/nodejs/node/pull/38314)
    
  • [`163fcecb69`](https://github.com/nodejs/node/commit/163fcecb69)] - **src**: fix multiple AddLinkedBinding() calls (Anna Henningsen) [#&#8203;39012](https://github.com/nodejs/node/pull/39012)
    
  • [`8809ef98f9`](https://github.com/nodejs/node/commit/8809ef98f9)] - **src**: update cares_wrap OpenBSD defines (Anna Henningsen) [#&#8203;38670](https://github.com/nodejs/node/pull/38670)
    
  • [`d66f88ce97`](https://github.com/nodejs/node/commit/d66f88ce97)] - **src**: remove extra semi after member fn (Shelley Vohr) [#&#8203;38686](https://github.com/nodejs/node/pull/38686)
    
  • [`bc2111c7e6`](https://github.com/nodejs/node/commit/bc2111c7e6)] - **src**: make workers messaging more resilient (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510)
    
  • [`378e0e778b`](https://github.com/nodejs/node/commit/378e0e778b)] - **src**: fix validation of negative offset to avoid abort (James M Snell) [#&#8203;38421](https://github.com/nodejs/node/pull/38421)
    
  • [`c170026b7b`](https://github.com/nodejs/node/commit/c170026b7b)] - **src**: use %progbits instead of [@&#8203;progbits](https://github.com/progbits) (Stephen Gallagher) [#&#8203;38312](https://github.com/nodejs/node/pull/38312)
    
  • [`d177541b0e`](https://github.com/nodejs/node/commit/d177541b0e)] - **src**: fix setting Converter sub char length (James M Snell) [#&#8203;38331](https://github.com/nodejs/node/pull/38331)
    
  • [`e279b029c0`](https://github.com/nodejs/node/commit/e279b029c0)] - **src**: avoid deferred gc/cleanup for Buffer.from (James M Snell) [#&#8203;38337](https://github.com/nodejs/node/pull/38337)
    
  • [`006c7b78da`](https://github.com/nodejs/node/commit/006c7b78da)] - **src**: indent long help text properly (David Glasser) [#&#8203;37911](https://github.com/nodejs/node/pull/37911)
    
  • [`f5541ddea3`](https://github.com/nodejs/node/commit/f5541ddea3)] - **src**: fix ETW_WRITE_EMPTY_EVENT macro (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334)
    
  • [`6b1052d034`](https://github.com/nodejs/node/commit/6b1052d034)] - **src**: disable unfixable MSVC warnings (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334)
    
  • [`38afa3fa79`](https://github.com/nodejs/node/commit/38afa3fa79)] - **src**: avoid implicit type conversions (take 2) (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334)
    
  • [`8a60ae2161`](https://github.com/nodejs/node/commit/8a60ae2161)] - **src**: fix compiler warnings in node_buffer.cc (Darshan Sen) [#&#8203;38722](https://github.com/nodejs/node/pull/38722)
    
  • [`78cde14c45`](https://github.com/nodejs/node/commit/78cde14c45)] - **src**: fix compiler warning in env.cc (Anna Henningsen) [#&#8203;35547](https://github.com/nodejs/node/pull/35547)
    
  • [`ea311a41cc`](https://github.com/nodejs/node/commit/ea311a41cc)] - **src**: add check against non-weak BaseObjects at process exit (Anna Henningsen) [#&#8203;35490](https://github.com/nodejs/node/pull/35490)
    
  • [`a1b4681efc`](https://github.com/nodejs/node/commit/a1b4681efc)] - **src**: use transferred consistently (Daniel Bevenius) [#&#8203;36340](https://github.com/nodejs/node/pull/36340)
    
  • [`29c623e5cb`](https://github.com/nodejs/node/commit/29c623e5cb)] - **src**: fix label indentation (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213)
    
  • [`dbb0d2612c`](https://github.com/nodejs/node/commit/dbb0d2612c)] - **stream**: fix multiple Writable.destroy() calls (Robert Nagy) [#&#8203;38221](https://github.com/nodejs/node/pull/38221)
    
  • [`a18b1ff80b`](https://github.com/nodejs/node/commit/a18b1ff80b)] - **stream**: the position of \_read() is wrong (helloyou2012) [#&#8203;38292](https://github.com/nodejs/node/pull/38292)
    
  • [`ab130e929a`](https://github.com/nodejs/node/commit/ab130e929a)] - **stream**: only use legacy close listeners if not willEmitClose (Robert Nagy) [#&#8203;36649](https://github.com/nodejs/node/pull/36649)
    
  • [`c31e2f6b0f`](https://github.com/nodejs/node/commit/c31e2f6b0f)] - **stream**: fix legacy pipe error handling (Robert Nagy) [#&#8203;35257](https://github.com/nodejs/node/pull/35257)
    
  • [`1dc4dea215`](https://github.com/nodejs/node/commit/1dc4dea215)] - **string_decoder**: throw ERR_STRING_TOO_LONG for UTF-8 (Michaël Zasso) [#&#8203;36661](https://github.com/nodejs/node/pull/36661)
    
  • [`0db9101922`](https://github.com/nodejs/node/commit/0db9101922)] - **string_decoder**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36358](https://github.com/nodejs/node/pull/36358)
    
  • [`8a44ee478e`](https://github.com/nodejs/node/commit/8a44ee478e)] - **test**: improve coverage of lib/\_http_client.js (Rongjian Zhang) [#&#8203;38599](https://github.com/nodejs/node/pull/38599)
    
  • [`8a45b85dbd`](https://github.com/nodejs/node/commit/8a45b85dbd)] - **test**: improve coverage of lib/os.js (Rongjian Zhang) [#&#8203;38653](https://github.com/nodejs/node/pull/38653)
    
  • [`d7c6a3eb03`](https://github.com/nodejs/node/commit/d7c6a3eb03)] - **test**: call functions internally (Voltrex) [#&#8203;38560](https://github.com/nodejs/node/pull/38560)
    
  • [`726cb48bd8`](https://github.com/nodejs/node/commit/726cb48bd8)] - **test**: complete coverage of querystring (Rongjian Zhang) [#&#8203;38520](https://github.com/nodejs/node/pull/38520)
    
  • [`4f1ba79eb8`](https://github.com/nodejs/node/commit/4f1ba79eb8)] - **test**: increase coverage for AbortController (ZiJian Liu) [#&#8203;38514](https://github.com/nodejs/node/pull/38514)
    
  • [`d98b355336`](https://github.com/nodejs/node/commit/d98b355336)] - **test**: run message and pseudo-tty tests in parallel (Richard Lau) [#&#8203;38502](https://github.com/nodejs/node/pull/38502)
    
  • [`7938af6565`](https://github.com/nodejs/node/commit/7938af6565)] - **test**: move test-net-connect-econnrefused from pummel to sequential (Rich Trott) [#&#8203;38462](https://github.com/nodejs/node/pull/38462)
    
  • [`52f3837518`](https://github.com/nodejs/node/commit/52f3837518)] - **test**: fix `common.mustCall` `length` and `name` properties (Antoine du Hamel) [#&#8203;38464](https://github.com/nodejs/node/pull/38464)
    
  • [`fdfb39e692`](https://github.com/nodejs/node/commit/fdfb39e692)] - **test**: address deprecation warning (Rich Trott) [#&#8203;38448](https://github.com/nodejs/node/pull/38448)
    
  • [`25e5afe3be`](https://github.com/nodejs/node/commit/25e5afe3be)] - **test**: move abort test from pummel to abort directory (Rich Trott) [#&#8203;38396](https://github.com/nodejs/node/pull/38396)
    
  • [`296b969e0a`](https://github.com/nodejs/node/commit/296b969e0a)] - **test**: skip some pummel tests on slower machines (Rich Trott) [#&#8203;38394](https://github.com/nodejs/node/pull/38394)
    
  • [`a9ff9c0918`](https://github.com/nodejs/node/commit/a9ff9c0918)] - **test**: add ancestor package.json checks for tmpdir (Richard Lau) [#&#8203;38285](https://github.com/nodejs/node/pull/38285)
    
  • [`c9ce98c377`](https://github.com/nodejs/node/commit/c9ce98c377)] - **test**: replace function with arrow function and remove unused argument (Andres) [#&#8203;38235](https://github.com/nodejs/node/pull/38235)
    
  • [`c77abf5a89`](https://github.com/nodejs/node/commit/c77abf5a89)] - **test**: use .test domain for not found address (Richard Lau) [#&#8203;38286](https://github.com/nodejs/node/pull/38286)
    
  • [`d9eb8b3ed0`](https://github.com/nodejs/node/commit/d9eb8b3ed0)] - **test**: increase fs promise coverage (Emil Sivervik) [#&#8203;36813](https://github.com/nodejs/node/pull/36813)
    
  • [`d85b70fffa`](https://github.com/nodejs/node/commit/d85b70fffa)] - **test**: increase timeout on ASAN Action (Antoine du Hamel) [#&#8203;37007](https://github.com/nodejs/node/pull/37007)
    
  • [`836fba52ea`](https://github.com/nodejs/node/commit/836fba52ea)] - **test**: improve coverage of `SourceTextModule` getters (Juan José Arboleda) [#&#8203;37013](https://github.com/nodejs/node/pull/37013)
    
  • [`f43fc6b6cc`](https://github.com/nodejs/node/commit/f43fc6b6cc)] - **test**: improve coverage for `Module` getters (Juan José Arboleda) [#&#8203;36950](https://github.com/nodejs/node/pull/36950)
    
  • [`a45d280c18`](https://github.com/nodejs/node/commit/a45d280c18)] - **test**: improve coverage on worker threads (Juan José Arboleda) [#&#8203;36910](https://github.com/nodejs/node/pull/36910)
    
  • [`ec4d79e259`](https://github.com/nodejs/node/commit/ec4d79e259)] - **test**: improve coverage at `lib/internal/vm/module.js` (Juan José Arboleda) [#&#8203;36898](https://github.com/nodejs/node/pull/36898)
    
  • [`c34de75687`](https://github.com/nodejs/node/commit/c34de75687)] - **test**: guard large string decoder allocation (Michaël Zasso) [#&#8203;36795](https://github.com/nodejs/node/pull/36795)
    
  • [`3215a58843`](https://github.com/nodejs/node/commit/3215a58843)] - **test**: add already-aborted-controller test for spawn() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`c3b116795b`](https://github.com/nodejs/node/commit/c3b116795b)] - **test**: add test for reused AbortController with execfile() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644)
    
  • [`219ed0ba4c`](https://github.com/nodejs/node/commit/219ed0ba4c)] - **test**: add Actions annotation output (Mary Marchini) [#&#8203;34590](https://github.com/nodejs/node/pull/34590)
    
  • [`89ee6abae0`](https://github.com/nodejs/node/commit/89ee6abae0)] - **test**: use `.then(common.mustCall())` for all async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363)
    
  • [`294b3e60a5`](https://github.com/nodejs/node/commit/294b3e60a5)] - **test,doc,lib**: adjust object literal newlines for lint rule (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040)
    
  • [`bfe02b8808`](https://github.com/nodejs/node/commit/bfe02b8808)] - **test,readline**: improve tab completion coverage (Antoine du Hamel) [#&#8203;38465](https://github.com/nodejs/node/pull/38465)
    
  • [`1dc7fd238c`](https://github.com/nodejs/node/commit/1dc7fd238c)] - **timers**: fix unsafe array iteration (Darshan Sen) [#&#8203;37223](https://github.com/nodejs/node/pull/37223)
    
  • [`679973866d`](https://github.com/nodejs/node/commit/679973866d)] - **timers**: reject with AbortError on cancellation (Benjamin Gruenbaum) [#&#8203;36317](https://github.com/nodejs/node/pull/36317)
    
  • [`dec3610a31`](https://github.com/nodejs/node/commit/dec3610a31)] - **timers**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36132](https://github.com/nodejs/node/pull/36132)
    
  • [`d84b05a619`](https://github.com/nodejs/node/commit/d84b05a619)] - **timers**: cleanup abort listener on awaitable timers (James M Snell) [#&#8203;36006](https://github.com/nodejs/node/pull/36006)
    
  • [`f6e4dbb779`](https://github.com/nodejs/node/commit/f6e4dbb779)] - **tls**: validate ticket keys buffer (Antoine du Hamel) [#&#8203;38308](https://github.com/nodejs/node/pull/38308)
    
  • [`661e9809bd`](https://github.com/nodejs/node/commit/661e9809bd)] - **tls**: fix session and keylog add listener segfault (Nitzan Uziely) [#&#8203;38180](https://github.com/nodejs/node/pull/38180)
    
  • [`de44e90523`](https://github.com/nodejs/node/commit/de44e90523)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324)
    
  • [`37bc7d5945`](https://github.com/nodejs/node/commit/37bc7d5945)] - **tools**: bump cpplint to 1.5.4 (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324)
    
  • [`84e918858e`](https://github.com/nodejs/node/commit/84e918858e)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235)
    
  • [`fb2bb93f95`](https://github.com/nodejs/node/commit/fb2bb93f95)] - **tools**: bump cpplint to 1.5.3 (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235)
    
  • [`3351910f97`](https://github.com/nodejs/node/commit/3351910f97)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213)
    
  • [`193b18effa`](https://github.com/nodejs/node/commit/193b18effa)] - **tools**: bump cpplint.py to 1.5.2 (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213)
    
  • [`8a6c35d735`](https://github.com/nodejs/node/commit/8a6c35d735)] - **tools**: update ESLint to 7.27.0 (Luigi Pinca) [#&#8203;38764](https://github.com/nodejs/node/pull/38764)
    
  • [`f8753b6299`](https://github.com/nodejs/node/commit/f8753b6299)] - **tools**: update ESLint to 7.26.0 (Colin Ihrig) [#&#8203;38605](https://github.com/nodejs/node/pull/38605)
    
  • [`1098aec40b`](https://github.com/nodejs/node/commit/1098aec40b)] - **tools**: update ESLint to 7.25.0 (Colin Ihrig) [#&#8203;38378](https://github.com/nodejs/node/pull/38378)
    
  • [`3fbabfa94d`](https://github.com/nodejs/node/commit/3fbabfa94d)] - **tools**: update ESLint to 7.24.0 (Colin Ihrig) [#&#8203;38179](https://github.com/nodejs/node/pull/38179)
    
  • [`6ce779cd8b`](https://github.com/nodejs/node/commit/6ce779cd8b)] - **tools**: update ESLint to 7.23.0 (Luigi Pinca) [#&#8203;37979](https://github.com/nodejs/node/pull/37979)
    
  • [`77f88e7725`](https://github.com/nodejs/node/commit/77f88e7725)] - **tools**: update ESLint to 7.22.0 (Colin Ihrig) [#&#8203;37734](https://github.com/nodejs/node/pull/37734)
    
  • [`5de911eeaf`](https://github.com/nodejs/node/commit/5de911eeaf)] - **tools**: make update-eslint.sh work with npm@7 (Luigi Pinca) [#&#8203;37566](https://github.com/nodejs/node/pull/37566)
    
  • [`839976669f`](https://github.com/nodejs/node/commit/839976669f)] - **tools**: add support for mjs and cjs JS snippet linting (Antoine du Hamel) [#&#8203;37311](https://github.com/nodejs/node/pull/37311)
    
  • [`2463bd0689`](https://github.com/nodejs/node/commit/2463bd0689)] - **tools**: update eslint-plugin-markdown configuration (Colin Ihrig) [#&#8203;37549](https://github.com/nodejs/node/pull/37549)
    
  • [`f868fac455`](https://github.com/nodejs/node/commit/f868fac455)] - **tools**: enable object-curly-newline in ESLint rules (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040)
    
  • [`d13508d219`](https://github.com/nodejs/node/commit/d13508d219)] - **tools**: make GH Actions workflows work if default branch is not master (Antoine du Hamel) [#&#8203;38516](https://github.com/nodejs/node/pull/38516)
    
  • [`7021c31d06`](https://github.com/nodejs/node/commit/7021c31d06)] - **tools**: use mktemp to create the workspace directory (Luigi Pinca) [#&#8203;38432](https://github.com/nodejs/node/pull/38432)
    
  • [`16a3e555ba`](https://github.com/nodejs/node/commit/16a3e555ba)] - **tools**: use a shallow clone of the npm/cli repository (Luigi Pinca) [#&#8203;38463](https://github.com/nodejs/node/pull/38463)
    
  • [`3484a23140`](https://github.com/nodejs/node/commit/3484a23140)] - **tools**: remove fixer for non-ascii-character ESLint custom rule (Rich Trott) [#&#8203;38413](https://github.com/nodejs/node/pull/38413)
    
  • [`aec4b295e4`](https://github.com/nodejs/node/commit/aec4b295e4)] - **tools**: fix doc generation when version info is not available (Antoine du Hamel) [#&#8203;38398](https://github.com/nodejs/node/pull/38398)
    
  • [`0172b110a3`](https://github.com/nodejs/node/commit/0172b110a3)] - **tools**: add \_depot_tools to PATH (for V8 tests) (DeeDeeG) [#&#8203;38299](https://github.com/nodejs/node/pull/38299)
    
  • [`d0eed18c87`](https://github.com/nodejs/node/commit/d0eed18c87)] - **tools**: fix type mismatch in test runner (Richard Lau) [#&#8203;38289](https://github.com/nodejs/node/pull/38289)
    
  • [`11ca018db9`](https://github.com/nodejs/node/commit/11ca018db9)] - **tools**: simplify eslint comma-dangle configuration (tools) (Rich Trott) [#&#8203;37883](https://github.com/nodejs/node/pull/37883)
    
  • [`f7c14e86a7`](https://github.com/nodejs/node/commit/f7c14e86a7)] - **tools**: simplify eslint comma-dangle configuration (Rich Trott) [#&#8203;37850](https://github.com/nodejs/node/pull/37850)
    
  • [`241e05795b`](https://github.com/nodejs/node/commit/241e05795b)] - **tools**: run doctool tests on GitHub Actions CI (Antoine du Hamel) [#&#8203;37398](https://github.com/nodejs/node/pull/37398)
    
  • [`a4dd50f8f9`](https://github.com/nodejs/node/commit/a4dd50f8f9)] - **tools**: refactor prefer-primordials (Antoine du Hamel) [#&#8203;36018](https://github.com/nodejs/node/pull/36018)
    
  • [`4af3906e72`](https://github.com/nodejs/node/commit/4af3906e72)] - **tools**: update ESLint to 7.21.0 (Luigi Pinca) [#&#8203;37546](https://github.com/nodejs/node/pull/37546)
    
  • [`955880de1a`](https://github.com/nodejs/node/commit/955880de1a)] - **tools**: update ESLint to 7.20.0 (Colin Ihrig) [#&#8203;37339](https://github.com/nodejs/node/pull/37339)
    
  • [`42c1f98a31`](https://github.com/nodejs/node/commit/42c1f98a31)] - **tools**: update ESLint to 7.19.0 (Colin Ihrig) [#&#8203;37159](https://github.com/nodejs/node/pull/37159)
    
  • [`25eb720b4d`](https://github.com/nodejs/node/commit/25eb720b4d)] - **tools**: update ESLint to 7.18.0 (Colin Ihrig) [#&#8203;36955](https://github.com/nodejs/node/pull/36955)
    
  • [`4983ef205e`](https://github.com/nodejs/node/commit/4983ef205e)] - **tools**: update gyp-next to v0.7.0 (Michaël Zasso) [#&#8203;36580](https://github.com/nodejs/node/pull/36580)
    
  • [`613378da1e`](https://github.com/nodejs/node/commit/613378da1e)] - **tools**: update ESLint to 7.17.0 (Colin Ihrig) [#&#8203;36726](https://github.com/nodejs/node/pull/36726)
    
  • [`e6d01f6545`](https://github.com/nodejs/node/commit/e6d01f6545)] - **tools**: update ESLint to 7.16.0 (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579)
    
  • [`98806da810`](https://github.com/nodejs/node/commit/98806da810)] - **tools**: enable no-unsafe-optional-chaining lint rule (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411)
    
  • [`7d411920f6`](https://github.com/nodejs/node/commit/7d411920f6)] - **tools**: update ESLint to 7.15.0 (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411)
    
  • [`226a86c3b5`](https://github.com/nodejs/node/commit/226a86c3b5)] - **tools**: enable no-unused-expressions lint rule (Michaël Zasso) [#&#8203;36248](https://github.com/nodejs/node/pull/36248)
    
  • [`24a81c7d6c`](https://github.com/nodejs/node/commit/24a81c7d6c)] - **tools**: enable no-nonoctal-decimal-escape lint rule (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217)
    
  • [`19d4eb17b9`](https://github.com/nodejs/node/commit/19d4eb17b9)] - **tools**: update ESLint to 7.14.0 (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217)
    
  • [`9fa8d2037f`](https://github.com/nodejs/node/commit/9fa8d2037f)] - **tools**: add linting rule for async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363)
    
  • [`55fc206d13`](https://github.com/nodejs/node/commit/55fc206d13)] - **tools**: update ESLint to 7.13.0 (Luigi Pinca) [#&#8203;36031](https://github.com/nodejs/node/pull/36031)
    
  • [`937fc0a30c`](https://github.com/nodejs/node/commit/937fc0a30c)] - **tools**: update ESLint to 7.12.1 (Colin Ihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799)
    
  • [`29d0840a90`](https://github.com/nodejs/node/commit/29d0840a90)] - **tools**: update ESLint to 7.12.0 (Colin Ihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799)
    
  • [`dcbd44758c`](https://github.com/nodejs/node/commit/dcbd44758c)] - **tools**: update ESLint to 7.11.0 (Colin Ihrig) [#&#8203;35578](https://github.com/nodejs/node/pull/35578)
    
  • [`c7751b4e69`](https://github.com/nodejs/node/commit/c7751b4e69)] - **tools**: add new ESLint rule: prefer-primordials (Leko) [#&#8203;35448](https://github.com/nodejs/node/pull/35448)
    
  • [`9a5411a2b4`](https://github.com/nodejs/node/commit/9a5411a2b4)] - **tools,doc**: add support for several flavors of JS code snippets (Antoine du Hamel) [#&#8203;37162](https://github.com/nodejs/node/pull/37162)
    
  • [`e19478aa76`](https://github.com/nodejs/node/commit/e19478aa76)] - **tools,lib**: recommend using safe primordials (Antoine du Hamel) [#&#8203;36026](https://github.com/nodejs/node/pull/36026)
    
  • [`5f848a612d`](https://github.com/nodejs/node/commit/5f848a612d)] - **tools,lib**: tighten prefer-primordials rules for Error statics (Antoine du Hamel) [#&#8203;36017](https://github.com/nodejs/node/pull/36017)
    
  • [`716076e389`](https://github.com/nodejs/node/commit/716076e389)] - **tty**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36771](https://github.com/nodejs/node/pull/36771)
    
  • [`41d74a4d9a`](https://github.com/nodejs/node/commit/41d74a4d9a)] - **tty**: refactor to use more primordials (Zijian Liu) [#&#8203;36272](https://github.com/nodejs/node/pull/36272)
    
  • [`e35a3543fd`](https://github.com/nodejs/node/commit/e35a3543fd)] - **typings**: add JSDoc typings for util (Rohit Gohri) [#&#8203;38213](https://github.com/nodejs/node/pull/38213)
    
  • [`c8b22185f7`](https://github.com/nodejs/node/commit/c8b22185f7)] - **url**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36316](https://github.com/nodejs/node/pull/36316)
    
  • [`e113035c9a`](https://github.com/nodejs/node/commit/e113035c9a)] - **util**: simplify constructor retrieval in inspect() (Rich Trott) [#&#8203;36466](https://github.com/nodejs/node/pull/36466)
    
  • [`1551b40d01`](https://github.com/nodejs/node/commit/1551b40d01)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36527](https://github.com/nodejs/node/pull/36527)
    
  • [`6c1bbb5caf`](https://github.com/nodejs/node/commit/6c1bbb5caf)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36285](https://github.com/nodejs/node/pull/36285)
    
  • [`3aee77d279`](https://github.com/nodejs/node/commit/3aee77d279)] - **vm**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36752](https://github.com/nodejs/node/pull/36752)
    
  • [`0dea86634d`](https://github.com/nodejs/node/commit/0dea86634d)] - **wasi**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36724](https://github.com/nodejs/node/pull/36724)
    
  • [`2c66305ac4`](https://github.com/nodejs/node/commit/2c66305ac4)] - ***Revert*** "**worker**: remove `ERR_CLOSED_MESSAGE_PORT`" (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510)
    
  • [`698bffaa90`](https://github.com/nodejs/node/commit/698bffaa90)] - **worker**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37346](https://github.com/nodejs/node/pull/37346)
    
  • [`3d4785c174`](https://github.com/nodejs/node/commit/3d4785c174)] - **worker**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36267](https://github.com/nodejs/node/pull/36267)
    
  • [`8702b045a4`](https://github.com/nodejs/node/commit/8702b045a4)] - **zlib**: fix brotli flush range (Khaidi Chu) [#&#8203;38408](https://github.com/nodejs/node/pull/38408)
    
  • [`459fe6864e`](https://github.com/nodejs/node/commit/459fe6864e)] - **zlib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36722](https://github.com/nodejs/node/pull/36722)
    
  • [`740638de0f`](https://github.com/nodejs/node/commit/740638de0f)] - **zlib**: refactor to use primordial instead of \<string>.startsWith (Rohan Chougule) [#&#8203;36718](https://github.com/nodejs/node/pull/36718)
    
  • [`32e10f388c`](https://github.com/nodejs/node/commit/32e10f388c)] - **zlib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36347](https://github.com/nodejs/node/pull/36347)
    
    

v14.17.0

Compare Source

Notable Changes
Diagnostics channel (experimental module)

diagnostics_channel is a new experimental module that provides an API to create named channels to report arbitrary message data for diagnostics purposes.

The module was initially introduced in Node.js v15.1.0 and is backported to v14.17.0
to enable testing it at a larger scale.

With diagnostics_channel, Node.js core and module authors can publish contextual data about what they are doing at a given time. This could be the hostname and query string of a mysql query, for example. Just create a named channel with dc.channel(name) and call channel.publish(data) to send the data to any listeners to that channel.

const dc = require('diagnostics_channel');
const channel = dc.channel('mysql.query');

MySQL.prototype.query = function query(queryString, values, callback) {
  // Broadcast query information whenever a query is made
  channel.publish({
    query: queryString,
    host: this.hostname,
  });

  this.doQuery(queryString, values, callback);
};

Channels are like one big global event emitter but are split into separate objects to ensure they get the best performance. If nothing is listening to the channel, the publishing overhead should be as close to zero as possible. Consuming channel data is as easy as using channel.subscribe(listener) to run a function whenever a message is published to that channel.

const dc = require('diagnostics_channel');
const channel = dc.channel('mysql.query');

channel.subscribe(({ query, host }) => {
  console.log(`mysql query to ${host}: ${query}`);
});

The data captured can be used to provide context for what an app is doing at a given time. This can be used for things like augmenting tracing data, tracking network and filesystem activity, logging queries, and many other things. It's also a very useful data source for diagnostics tools to provide a clearer picture of exactly what the application is doing at a given point in the data they are presenting.

Contributed by Stephen Belanger #​34895.

UUID support in the crypto module

The new crypto.randomUUID() method now allows to generate random
RFC 4122 Version 4 UUID strings:

const { randomUUID } = require('crypto');

console.log(randomUUID());
// 'aa7c91a1-f8fc-4339-b9db-f93fc7233429'

Contributed by James M Snell #​36729.

Experimental support for AbortController and AbortSignal

Node.js 14.17.0 adds experimental partial support for AbortController and AbortSignal.

Both constructors can be enabled globally using the --experimental-abortcontroller flag.

Additionally, several Node.js APIs have been updated to support AbortSignal for cancellation.
It is not mandatory to use the built-in constructors with them. Any spec-compliant third-party alternatives
should be compatible.

AbortSignal support was added to the following methods:

  • child_process.exec
  • child_process.execFile
  • child_process.fork
  • child_process.spawn
  • dgram.createSocket
  • events.on
  • events.once
  • fs.readFile
  • fs.watch
  • fs.writeFile
  • http.request
  • https.request
  • http2Session.request
  • The promisified variants of setImmediate and setTimeout
Other notable changes
  • doc:
    • revoke deprecation of legacy url, change status to legacy (James M Snell) #​37784
    • add legacy status to stability index (James M Snell) #​37784
    • upgrade stability status of report API (Gireesh Punathil) #​35654
  • deps:
    • V8: Backport various patches for Apple Silicon support (BoHong Li) #​38051
    • update ICU to 68.1 (Michaël Zasso) #​36187
    • upgrade to libuv 1.41.0 (Colin Ihrig) #​37360
  • http:
    • add http.ClientRequest.getRawHeaderNames() (simov) #​37660
    • report request start and end with diagnostics_channel (Stephen Belanger) #​34895
  • util:
    • add getSystemErrorMap() impl (eladkeyshawn) #​38101
Commits
  • [`9fb10dc4e7`](https://github.com/nodejs/node/commit/9fb10dc4e7)] - **assert,util**: fix commutativity edge case (Ruben Bridgewater) [#&#8203;37711](https://github.com/nodejs/node/pull/37711)
    
  • [`2bbf253b00`](https://github.com/nodejs/node/commit/2bbf253b00)] - **benchmark**: changed `fstat` to `fstatSync` (Narasimha Prasanna HN) [#&#8203;36206](https://github.com/nodejs/node/pull/36206)
    
  • [`c00c31c3c5`](https://github.com/nodejs/node/commit/c00c31c3c5)] - **benchmark**: improve compare.R output (Brian White) [#&#8203;38118](https://github.com/nodejs/node/pull/38118)
    
  • [`a191bc7761`](https://github.com/nodejs/node/commit/a191bc7761)] - **benchmark**: add benchmark for fsPromises.writeFile (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610)
    
  • [`d2770a5608`](https://github.com/nodejs/node/commit/d2770a5608)] - **benchmark**: add benchmark for NODE_V8\_COVERAGE (Benjamin Coe) [#&#8203;36972](https://github.com/nodejs/node/pull/36972)
    
  • [`4318e708b8`](https://github.com/nodejs/node/commit/4318e708b8)] - **benchmark**: make output RFC 4180 compliant (Tobias Nießen) [#&#8203;37038](https://github.com/nodejs/node/pull/37038)
    
  • [`0fbeab7a95`](https://github.com/nodejs/node/commit/0fbeab7a95)] - **benchmark**: improve explanations in R script (Tobias Nießen) [#&#8203;36995](https://github.com/nodejs/node/pull/36995)
    
  • [`c22efc5191`](https://github.com/nodejs/node/commit/c22efc5191)] - **benchmark**: fix http2 benchmarks (Rich Trott) [#&#8203;36871](https://github.com/nodejs/node/pull/36871)
    
  • [`682d0a92db`](https://github.com/nodejs/node/commit/682d0a92db)] - **benchmark**: fix http/headers.js with test-double (Rich Trott) [#&#8203;36794](https://github.com/nodejs/node/pull/36794)
    
  • [`3a11ee88a2`](https://github.com/nodejs/node/commit/3a11ee88a2)] - **benchmark**: add simple https benchmark (Andrey Pechkurov) [#&#8203;36612](https://github.com/nodejs/node/pull/36612)
    
  • [`681c4afc51`](https://github.com/nodejs/node/commit/681c4afc51)] - **benchmark**: reduce code duplication (Rich Trott) [#&#8203;36568](https://github.com/nodejs/node/pull/36568)
    
  • [`f28eea0896`](https://github.com/nodejs/node/commit/f28eea0896)] - **benchmark,child_process**: remove failing benchmark parameter (Antoine du Hamel) [#&#8203;36295](https://github.com/nodejs/node/pull/36295)
    
  • [`bf2d9f25d4`](https://github.com/nodejs/node/commit/bf2d9f25d4)] - **(SEMVER-MINOR)** **buffer**: implement btoa and atob (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529)
    
  • [`0544410328`](https://github.com/nodejs/node/commit/0544410328)] - **buffer,errors**: add missing n literal in range error string (Cactysman) [#&#8203;37750](https://github.com/nodejs/node/pull/37750)
    
  • [`5667d0a540`](https://github.com/nodejs/node/commit/5667d0a540)] - **build**: don't run test workflow on doc dir on macOS (ycjcl868) [#&#8203;37999](https://github.com/nodejs/node/pull/37999)
    
  • [`079d90b9f3`](https://github.com/nodejs/node/commit/079d90b9f3)] - **build**: package release changelog for releases (Richard Lau) [#&#8203;38033](https://github.com/nodejs/node/pull/38033)
    
  • [`5c74dc7227`](https://github.com/nodejs/node/commit/5c74dc7227)] - **build**: refactor Makefile (raisinten) [#&#8203;36759](https://github.com/nodejs/node/pull/36759)
    
  • [`38921b3805`](https://github.com/nodejs/node/commit/38921b3805)] - **build**: do not "exit" a script meant to be "source"d (François-Denis Gonthier) [#&#8203;35520](https://github.com/nodejs/node/pull/35520)
    
  • [`dcbcd9e045`](https://github.com/nodejs/node/commit/dcbcd9e045)] - **build**: run some workflows only on nodejs/node (Michaël Zasso) [#&#8203;36507](https://github.com/nodejs/node/pull/36507)
    
  • [`cda0a80713`](https://github.com/nodejs/node/commit/cda0a80713)] - **build**: fix typo in Makefile (raisinten) [#&#8203;36176](https://github.com/nodejs/node/pull/36176)
    
  • [`d8f8719415`](https://github.com/nodejs/node/commit/d8f8719415)] - **build**: do not pass mode option to test-v8 command (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`f62b138278`](https://github.com/nodejs/node/commit/f62b138278)] - **build**: fix label-pr workflow (Michaël Zasso) [#&#8203;38399](https://github.com/nodejs/node/pull/38399)
    
  • [`1250db9206`](https://github.com/nodejs/node/commit/1250db9206)] - **build**: label PRs with GitHub Action instead of nodejs-github-bot (Phillip Johnsen) [#&#8203;38301](https://github.com/nodejs/node/pull/38301)
    
  • [`9ccf7dbe2d`](https://github.com/nodejs/node/commit/9ccf7dbe2d)] - **build,lib,test**: change whitelist to allowlist (Michaël Zasso) [#&#8203;36406](https://github.com/nodejs/node/pull/36406)
    
  • [`385e8e8d7b`](https://github.com/nodejs/node/commit/385e8e8d7b)] - **(SEMVER-MINOR)** **child_process**: support AbortSignal in fork (Benjamin Gruenbaum) [#&#8203;36603](https://github.com/nodejs/node/pull/36603)
    
  • [`0b691ce57e`](https://github.com/nodejs/node/commit/0b691ce57e)] - **(SEMVER-MINOR)** **child_process**: add signal support to spawn (Benjamin Gruenbaum) [#&#8203;36432](https://github.com/nodejs/node/pull/36432)
    
  • [`6c08c9de4a`](https://github.com/nodejs/node/commit/6c08c9de4a)] - **child_process**: clean event listener correctly (Benjamin Gruenbaum) [#&#8203;36424](https://github.com/nodejs/node/pull/36424)
    
  • [`a5c0f39197`](https://github.com/nodejs/node/commit/a5c0f39197)] - **(SEMVER-MINOR)** **child_process**: add AbortSignal support (Benjamin Gruenbaum) [#&#8203;36308](https://github.com/nodejs/node/pull/36308)
    
  • [`aa5b726f83`](https://github.com/nodejs/node/commit/aa5b726f83)] - **(SEMVER-MINOR)** **child_process**: add ChildProcess 'spawn' event (Matthew Francis Brunetti) [#&#8203;35369](https://github.com/nodejs/node/pull/35369)
    
  • [`723977feaa`](https://github.com/nodejs/node/commit/723977feaa)] - **crypto**: reduce range of size to int max (Qingyu Deng) [#&#8203;38096](https://github.com/nodejs/node/pull/38096)
    
  • [`46ece20fe3`](https://github.com/nodejs/node/commit/46ece20fe3)] - **crypto**: fix DiffieHellman argument validation (Antoine du Hamel) [#&#8203;37810](https://github.com/nodejs/node/pull/37810)
    
  • [`00659a9218`](https://github.com/nodejs/node/commit/00659a9218)] - **crypto**: fix randomInt bias (Tobias Nießen) [#&#8203;36894](https://github.com/nodejs/node/pull/36894)
    
  • [`08f9130888`](https://github.com/nodejs/node/commit/08f9130888)] - **(SEMVER-MINOR)** **crypto**: implement randomuuid (James M Snell) [#&#8203;36729](https://github.com/nodejs/node/pull/36729)
    
  • [`8951c19e72`](https://github.com/nodejs/node/commit/8951c19e72)] - **deps**: V8: cherry-pick [`501482c`](https://github.com/nodejs/node/commit/501482cbc704) (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121)
    
  • [`ea0b0697c3`](https://github.com/nodejs/node/commit/ea0b0697c3)] - **deps**: update nghttp2 to 1.42.0 (Michaël Zasso) [#&#8203;36842](https://github.com/nodejs/node/pull/36842)
    
  • [`5747dff04e`](https://github.com/nodejs/node/commit/5747dff04e)] - **deps**: update to c-ares 1.17.1 (Danny Sonnenschein) [#&#8203;36207](https://github.com/nodejs/node/pull/36207)
    
  • [`329ee8bbc3`](https://github.com/nodejs/node/commit/329ee8bbc3)] - **deps**: V8: cherry-pick [`bbc59d1`](https://github.com/nodejs/node/commit/bbc59d124ef3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`bda15149f8`](https://github.com/nodejs/node/commit/bda15149f8)] - **deps**: V8: cherry-pick [`be91c6c`](https://github.com/nodejs/node/commit/be91c6c50818) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`16a005cfa0`](https://github.com/nodejs/node/commit/16a005cfa0)] - **deps**: V8: cherry-pick [`4e24c35`](https://github.com/nodejs/node/commit/4e24c353d812) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`42140a12f2`](https://github.com/nodejs/node/commit/42140a12f2)] - **deps**: V8: cherry-pick [`eddb823`](https://github.com/nodejs/node/commit/eddb82330975) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`4d0bc3839a`](https://github.com/nodejs/node/commit/4d0bc3839a)] - **deps**: V8: cherry-pick [`6771d3e`](https://github.com/nodejs/node/commit/6771d3e31883) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`982937893e`](https://github.com/nodejs/node/commit/982937893e)] - **deps**: V8: cherry-pick [`f44fcbf`](https://github.com/nodejs/node/commit/f44fcbf803ac) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`fa45d6a358`](https://github.com/nodejs/node/commit/fa45d6a358)] - **deps**: V8: cherry-pick [`93b2105`](https://github.com/nodejs/node/commit/93b2105fbe44) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`c5fe3a226a`](https://github.com/nodejs/node/commit/c5fe3a226a)] - **deps**: V8: cherry-pick [`1a7d55a`](https://github.com/nodejs/node/commit/1a7d55a9a427) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`7dd68ac5b6`](https://github.com/nodejs/node/commit/7dd68ac5b6)] - **deps**: V8: cherry-pick [`8ebd894`](https://github.com/nodejs/node/commit/8ebd894186ed) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`a4a9246ea1`](https://github.com/nodejs/node/commit/a4a9246ea1)] - **deps**: V8: cherry-pick [`1e35f64`](https://github.com/nodejs/node/commit/1e35f6472510) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`9bfb0f33e9`](https://github.com/nodejs/node/commit/9bfb0f33e9)] - **deps**: V8: cherry-pick [`3066b7b`](https://github.com/nodejs/node/commit/3066b7b2fcb3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`5dc82469d5`](https://github.com/nodejs/node/commit/5dc82469d5)] - **deps**: V8: cherry-pick [`254c794`](https://github.com/nodejs/node/commit/254c7945eea2) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`77b7a3b710`](https://github.com/nodejs/node/commit/77b7a3b710)] - **deps**: V8: cherry-pick [`5678ebe`](https://github.com/nodejs/node/commit/5678ebe8f6c4) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`0bd8e14501`](https://github.com/nodejs/node/commit/0bd8e14501)] - **deps**: V8: cherry-pick [`8130669`](https://github.com/nodejs/node/commit/813066946968) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`d221cdc97c`](https://github.com/nodejs/node/commit/d221cdc97c)] - **deps**: V8: cherry-pick [`d2283ba`](https://github.com/nodejs/node/commit/d2283ba066ba) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`26cc160565`](https://github.com/nodejs/node/commit/26cc160565)] - **deps**: V8: cherry-pick [`53c4d05`](https://github.com/nodejs/node/commit/53c4d057974a) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`05530e8333`](https://github.com/nodejs/node/commit/05530e8333)] - **deps**: V8: cherry-pick [`e527ba4`](https://github.com/nodejs/node/commit/e527ba4bf8af) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`fdb4a0c170`](https://github.com/nodejs/node/commit/fdb4a0c170)] - **deps**: V8: cherry-pick [`5c6c99a`](https://github.com/nodejs/node/commit/5c6c99a8dc72) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`42552a7eda`](https://github.com/nodejs/node/commit/42552a7eda)] - **deps**: V8: cherry-pick [`ad2c5da`](https://github.com/nodejs/node/commit/ad2c5dae4688) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`aff53dd8b3`](https://github.com/nodejs/node/commit/aff53dd8b3)] - **deps**: V8: cherry-pick [`482e5c7`](https://github.com/nodejs/node/commit/482e5c7750b3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`931d31a2cb`](https://github.com/nodejs/node/commit/931d31a2cb)] - **deps**: V8: cherry-pick [`412ac52`](https://github.com/nodejs/node/commit/412ac52d8246) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`e99e456757`](https://github.com/nodejs/node/commit/e99e456757)] - **deps**: V8: cherry-pick [`c449afa`](https://github.com/nodejs/node/commit/c449afa1953b) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`18a4cbfb52`](https://github.com/nodejs/node/commit/18a4cbfb52)] - **deps**: V8: cherry-pick [`3ba21a1`](https://github.com/nodejs/node/commit/3ba21a17ce2f) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`70f622b542`](https://github.com/nodejs/node/commit/70f622b542)] - **deps**: V8: cherry-pick [`8c725f7`](https://github.com/nodejs/node/commit/8c725f7b5bbf) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`0e6976f5ee`](https://github.com/nodejs/node/commit/0e6976f5ee)] - **deps**: V8: cherry-pick [`ed3eeda`](https://github.com/nodejs/node/commit/ed3eedae33d0) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`86c7c0ae4e`](https://github.com/nodejs/node/commit/86c7c0ae4e)] - **deps**: V8: cherry-pick [`6a4cd97`](https://github.com/nodejs/node/commit/6a4cd97d6691) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`b10cce1b87`](https://github.com/nodejs/node/commit/b10cce1b87)] - **deps**: V8: cherry-pick [`d724820`](https://github.com/nodejs/node/commit/d724820c1d5d) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`aaeeb75a99`](https://github.com/nodejs/node/commit/aaeeb75a99)] - **deps**: V8: cherry-pick [`33f4064`](https://github.com/nodejs/node/commit/33f4064dbad3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`b0d1a060e2`](https://github.com/nodejs/node/commit/b0d1a060e2)] - **deps**: V8: cherry-pick [`abb4d0a`](https://github.com/nodejs/node/commit/abb4d0a431c0) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`5372f1ff5b`](https://github.com/nodejs/node/commit/5372f1ff5b)] - **deps**: V8: cherry-pick [`a59e3ac`](https://github.com/nodejs/node/commit/a59e3ac1d7fa) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`31154a5611`](https://github.com/nodejs/node/commit/31154a5611)] - **deps**: V8: cherry-pick [`516b5d3`](https://github.com/nodejs/node/commit/516b5d3f9cfe) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275)
    
  • [`fc8f1b7f0a`](https://github.com/nodejs/node/commit/fc8f1b7f0a)] - **deps**: upgrade npm to 6.14.13 (Ruy Adorno) [#&#8203;38214](https://github.com/nodejs/node/pull/38214)
    
  • [`0c1e878c4c`](https://github.com/nodejs/node/commit/0c1e878c4c)] - **deps**: backport v8 [`f19142e`](https://github.com/nodejs/node/commit/f19142e6) (Guy Bedford) [#&#8203;37864](https://github.com/nodejs/node/pull/37864)
    
  • [`dd5da301c8`](https://github.com/nodejs/node/commit/dd5da301c8)] - **deps**: backport v8 [`5f90cfd`](https://github.com/nodejs/node/commit/5f90cfd7) (Guy Bedford) [#&#8203;37973](https://github.com/nodejs/node/pull/37973)
    
  • [`d56079ab9b`](https://github.com/nodejs/node/commit/d56079ab9b)] - **deps**: update to cjs-module-lexer@1.1.1 (Guy Bedford) [#&#8203;38002](https://github.com/nodejs/node/pull/38002)
    
  • [`866e3244da`](https://github.com/nodejs/node/commit/866e3244da)] - **deps**: V8: Backport various patches for Apple Silicon support (BoHong Li) [#&#8203;38051](https://github.com/nodejs/node/pull/38051)
    
  • [`16b59c62ff`](https://github.com/nodejs/node/commit/16b59c62ff)] - **deps**: cherry-pick [`8957d46`](https://github.com/nodejs/node/commit/8957d4677aa794c230577f234071af0) from V8 upstream (Antoine du Hamel) [#&#8203;37471](https://github.com/nodejs/node/pull/37471)
    
  • [`5707adaf33`](https://github.com/nodejs/node/commit/5707adaf33)] - **deps**: V8: cherry-pick [`0c8b6e4`](https://github.com/nodejs/node/commit/0c8b6e415c30) (Matin Zadehdolatabad) [#&#8203;37276](https://github.com/nodejs/node/pull/37276)
    
  • [`7d247f1691`](https://github.com/nodejs/node/commit/7d247f1691)] - **deps**: V8: cherry-pick [`1d0f426`](https://github.com/nodejs/node/commit/1d0f426311d4) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`14a87a5a01`](https://github.com/nodejs/node/commit/14a87a5a01)] - **deps**: V8: cherry-pick [`4e077ff`](https://github.com/nodejs/node/commit/4e077ff0444a) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`507c2f2101`](https://github.com/nodejs/node/commit/507c2f2101)] - **deps**: V8: cherry-pick [`086eecb`](https://github.com/nodejs/node/commit/086eecbd96b6) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`31f8610a02`](https://github.com/nodejs/node/commit/31f8610a02)] - **deps**: V8: cherry-pick [`27e1ac1`](https://github.com/nodejs/node/commit/27e1ac1a79ff) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986)
    
  • [`6b115d762d`](https://github.com/nodejs/node/commit/6b115d762d)] - **deps**: patch V8 to 8.4.371.23 (Michaël Zasso) [#&#8203;38001](https://github.com/nodejs/node/pull/38001)
    
  • [`a92ecf0081`](https://github.com/nodejs/node/commit/a92ecf0081)] - **deps**: v8 backport [`9689b17`](https://github.com/nodejs/node/commit/9689b17687b) (Guy Bedford) [#&#8203;37865](https://github.com/nodejs/node/pull/37865)
    
  • [`3e8ceed0eb`](https://github.com/nodejs/node/commit/3e8ceed0eb)] - **deps**: update ICU to 68.2 (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980)
    
  • [`2d7e0b6912`](https://github.com/nodejs/node/commit/2d7e0b6912)] - **deps**: update ICU to 68.1 (Michaël Zasso) [#&#8203;36187](https://github.com/nodejs/node/pull/36187)
    
  • [`bfba66dbd6`](https://github.com/nodejs/node/commit/bfba66dbd6)] - **deps**: upgrade to libuv 1.41.0 (Colin Ihrig) [#&#8203;37360](https://github.com/nodejs/node/pull/37360)
    
  • [`e446d82394`](https://github.com/nodejs/node/commit/e446d82394)] - **deps**: V8: cherry-pick [`beebee4`](https://github.com/nodejs/node/commit/beebee4f80ff) (Peter Marshall) [#&#8203;37293](https://github.com/nodejs/node/pull/37293)
    
  • [`ae1fa98496`](https://github.com/nodejs/node/commit/ae1fa98496)] - **deps**: cherry-pick [`f4376ec`](https://github.com/nodejs/node/commit/f4376ec801e1ded) from V8 upstream (Daniel Bevenius) [#&#8203;37225](https://github.com/nodejs/node/pull/37225)
    
  • [`81cd06b3c6`](https://github.com/nodejs/node/commit/81cd06b3c6)] - **(SEMVER-MINOR)** **dgram**: support AbortSignal in createSocket (Nitzan Uziely) [#&#8203;37026](https://github.com/nodejs/node/pull/37026)
    
  • [`46651b63c1`](https://github.com/nodejs/node/commit/46651b63c1)] - **dns**: refactor cares_wrap internals (James M Snell) [#&#8203;38172](https://github.com/nodejs/node/pull/38172)
    
  • [`8715462f47`](https://github.com/nodejs/node/commit/8715462f47)] - **(SEMVER-MINOR)** **dns**: add a cancel() method to the promise Resolver (Szymon Marczak) [#&#8203;33099](https://github.com/nodejs/node/pull/33099)
    
  • [`0f126d0e05`](https://github.com/nodejs/node/commit/0f126d0e05)] - **dns**: fix trace_events name for resolveCaa() (Rich Trott) [#&#8203;35979](https://github.com/nodejs/node/pull/35979)
    
  • [`ed79c98683`](https://github.com/nodejs/node/commit/ed79c98683)] - **(SEMVER-MINOR)** **dns**: add setLocalAddress to Resolver (Josh Dague) [#&#8203;34824](https://github.com/nodejs/node/pull/34824)
    
  • [`2e7f74c8a5`](https://github.com/nodejs/node/commit/2e7f74c8a5)] - **doc**: harmonize changes list ordering (Antoine du Hamel) [#&#8203;35454](https://github.com/nodejs/node/pull/35454)
    
  • [`885ed96540`](https://github.com/nodejs/node/commit/885ed96540)] - **doc**: fix typo in repl.md (Arkerone) [#&#8203;38244](https://github.com/nodejs/node/pull/38244)
    
  • [`92650278eb`](https://github.com/nodejs/node/commit/92650278eb)] - **doc**: change "oject" to "object" (Arkerone) [#&#8203;38256](https://github.com/nodejs/node/pull/38256)
    
  • [`5dfe5af155`](https://github.com/nodejs/node/commit/5dfe5af155)] - **doc**: revise TLS minVersion/maxVersion text (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202)
    
  • [`e6c599b680`](https://github.com/nodejs/node/commit/e6c599b680)] - **doc**: standardize command flag notes (Ferdi) [#&#8203;38199](https://github.com/nodejs/node/pull/38199)
    
  • [`bb8db846b3`](https://github.com/nodejs/node/commit/bb8db846b3)] - **doc**: clarify child_process close event (Nitzan Uziely) [#&#8203;38181](https://github.com/nodejs/node/pull/38181)
    
  • [`be28376140`](https://github.com/nodejs/node/commit/be28376140)] - **doc**: add command flag to import.meta.resolve (Ferdi) [#&#8203;38171](https://github.com/nodejs/node/pull/38171)
    
  • [`c7c8722ba3`](https://github.com/nodejs/node/commit/c7c8722ba3)] - **doc**: update links in ICU guide (Michaël Zasso) [#&#8203;38177](https://github.com/nodejs/node/pull/38177)
    
  • [`4350bf5a0b`](https://github.com/nodejs/node/commit/4350bf5a0b)] - **doc**: mention cryptographic prng in description of randomUUID (Serkan Özel) [#&#8203;38074](https://github.com/nodejs/node/pull/38074)
    
  • [`424c8e1eb9`](https://github.com/nodejs/node/commit/424c8e1eb9)] - **doc**: add link to V8 (Voltrex) [#&#8203;38144](https://github.com/nodejs/node/pull/38144)
    
  • [`ecc85516cf`](https://github.com/nodejs/node/commit/ecc85516cf)] - **doc**: improve security text in collaborators guide (Rich Trott) [#&#8203;38107](https://github.com/nodejs/node/pull/38107)
    
  • [`6c970ba2d4`](https://github.com/nodejs/node/commit/6c970ba2d4)] - **doc**: apply consistent punctuation to header contributing guide (Akhil Marsonya) [#&#8203;38047](https://github.com/nodejs/node/pull/38047)
    
  • [`aff0cd3ea6`](https://github.com/nodejs/node/commit/aff0cd3ea6)] - **doc**: sending http request to localhost to avoid https redirect (Hassaan Pasha) [#&#8203;38036](https://github.com/nodejs/node/pull/38036)
    
  • [`56aaf7010c`](https://github.com/nodejs/node/commit/56aaf7010c)] - **doc**: apply sentence case to backporting-to-release-lines.md headers (marsonya) [#&#8203;37617](https://github.com/nodejs/node/pull/37617)
    
  • [`8615fa1983`](https://github.com/nodejs/node/commit/8615fa1983)] - **doc**: add parentheses to function and move reference (Rich Trott) [#&#8203;38066](https://github.com/nodejs/node/pull/38066)
    
  • [`5d2f0d0c4e`](https://github.com/nodejs/node/commit/5d2f0d0c4e)] - **doc**: change wording in doc/api/domain.md comment (Akhil Marsonya) [#&#8203;38044](https://github.com/nodejs/node/pull/38044)
    
  • [`ac59022106`](https://github.com/nodejs/node/commit/ac59022106)] - **doc**: fix asyncLocalStorage.run() description (Darkripper214) [#&#8203;38023](https://github.com/nodejs/node/pull/38023)
    
  • [`df54edc668`](https://github.com/nodejs/node/commit/df54edc668)] - **doc**: document how to unref stdin when using readline.Interface (Anu Pasumarthy) [#&#8203;38019](https://github.com/nodejs/node/pull/38019)
    
  • [`21bc5d4bd4`](https://github.com/nodejs/node/commit/21bc5d4bd4)] - **doc**: move psmarshall to collaborators emeriti (Peter Marshall) [#&#8203;37994](https://github.com/nodejs/node/pull/37994)
    
  • [`69c4bfd750`](https://github.com/nodejs/node/commit/69c4bfd750)] - **doc**: add distinctive color for code elements inside links (Antoine du Hamel) [#&#8203;37950](https://github.com/nodejs/node/pull/37950)
    
  • [`35a382e814`](https://github.com/nodejs/node/commit/35a382e814)] - **doc**: add Windows-specific info to subprocess.kill() (João Lucas Lucchetta) [#&#8203;34867](https://github.com/nodejs/node/pull/34867)
    
  • [`2a5f21f9cd`](https://github.com/nodejs/node/commit/2a5f21f9cd)] - **doc**: fix typos in lib/internal/bootstrap/pre_execution.js (marsonya) [#&#8203;37658](https://github.com/nodejs/node/pull/37658)
    
  • [`9f1f2153e9`](https://github.com/nodejs/node/commit/9f1f2153e9)] - **doc**: add more commands for cherry-picking and changelog to release docs (Danielle Adams) [#&#8203;37785](https://github.com/nodejs/node/pull/37785)
    
  • [`dd1c47bbf3`](https://github.com/nodejs/node/commit/dd1c47bbf3)] - **doc**: spell out ICU acronym on first occurrence (Rich Trott) [#&#8203;37942](https://github.com/nodejs/node/pull/37942)
    
  • [`585f1119a3`](https://github.com/nodejs/node/commit/585f1119a3)] - **doc**: update GOVERNANCE.md for TSC Charter changes (Rich Trott) [#&#8203;37888](https://github.com/nodejs/node/pull/37888)
    
  • [`b51651cfc5`](https://github.com/nodejs/node/commit/b51651cfc5)] - **doc**: reduce header nesting in async_hooks.md (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839)
    
  • [`7789159009`](https://github.com/nodejs/node/commit/7789159009)] - **doc**: add examples for WHATWG URL objects (James M Snell) [#&#8203;37822](https://github.com/nodejs/node/pull/37822)
    
  • [`b31bb72c10`](https://github.com/nodejs/node/commit/b31bb72c10)] - **doc**: clarify when child process 'spawn' event is \*not\* emitted (Matthew Francis Brunetti) [#&#8203;37833](https://github.com/nodejs/node/pull/37833)
    
  • [`9166653aef`](https://github.com/nodejs/node/commit/9166653aef)] - **doc**: fix legacy stability indicator display (Rich Trott) [#&#8203;37838](https://github.com/nodejs/node/pull/37838)
    
  • [`2e0266de5b`](https://github.com/nodejs/node/commit/2e0266de5b)] - **doc**: use sentence-style capitlaztion in template header (Rich Trott) [#&#8203;37837](https://github.com/nodejs/node/pull/37837)
    
  • [`1b83242772`](https://github.com/nodejs/node/commit/1b83242772)] - **doc**: add Ayase-252 to triagers (Qingyu Deng) [#&#8203;37781](https://github.com/nodejs/node/pull/37781)
    
  • [`89418e8758`](https://github.com/nodejs/node/commit/89418e8758)] - **doc**: use sentence case in issues.md headers (marsonya) [#&#8203;37537](https://github.com/nodejs/node/pull/37537)
    
  • [`66502fc186`](https://github.com/nodejs/node/commit/66502fc186)] - **doc**: move Derek Lewis back to collaborators (Derek Lewis) [#&#8203;37726](https://github.com/nodejs/node/pull/37726)
    
  • [`0d720a4a5c`](https://github.com/nodejs/node/commit/0d720a4a5c)] - **doc**: apply style for legacy status (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784)
    
  • [`c8383dd99f`](https://github.com/nodejs/node/commit/c8383dd99f)] - **doc**: revoke deprecation of legacy url, change status to legacy (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784)
    
  • [`e34aace62b`](https://github.com/nodejs/node/commit/e34aace62b)] - **doc**: add legacy status to stability index (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784)
    
  • [`b2d3ac835c`](https://github.com/nodejs/node/commit/b2d3ac835c)] - **doc**: add [@&#8203;linkgoron](https://github.com/linkgoron) to collaborators (Nitzan Uziely) [#&#8203;37817](https://github.com/nodejs/node/pull/37817)
    
  • [`a27534e883`](https://github.com/nodejs/node/commit/a27534e883)] - **doc**: fix AbortError example for timers (dbachko) [#&#8203;37738](https://github.com/nodejs/node/pull/37738)
    
  • [`14a160ae04`](https://github.com/nodejs/node/commit/14a160ae04)] - **doc**: fix typo in stream docs (Ian Kerins) [#&#8203;37716](https://github.com/nodejs/node/pull/37716)
    
  • [`fe0f6a53a6`](https://github.com/nodejs/node/commit/fe0f6a53a6)] - **doc**: add gyp maintain info (Jiawen Geng) [#&#8203;37765](https://github.com/nodejs/node/pull/37765)
    
  • [`6d7c7bc8d9`](https://github.com/nodejs/node/commit/6d7c7bc8d9)] - **doc**: add marsonya as a triager (marsonya) [#&#8203;37667](https://github.com/nodejs/node/pull/37667)
    
  • [`5f2da5af42`](https://github.com/nodejs/node/commit/5f2da5af42)] - **doc**: add hints to http.request() options (Luigi Pinca) [#&#8203;37745](https://github.com/nodejs/node/pull/37745)
    
  • [`02cd4044da`](https://github.com/nodejs/node/commit/02cd4044da)] - **doc**: fix link to googletest fixtures (Tobias Nießen) [#&#8203;37698](https://github.com/nodejs/node/pull/37698)
    
  • [`85a293bdfc`](https://github.com/nodejs/node/commit/85a293bdfc)] - **doc**: fix typo in description of close event (Tobias Nießen) [#&#8203;37662](https://github.com/nodejs/node/pull/37662)
    
  • [`3a6e40530c`](https://github.com/nodejs/node/commit/3a6e40530c)] - **doc**: use sentence case in README.md headers (marsonya) [#&#8203;37645](https://github.com/nodejs/node/pull/37645)
    
  • [`c51a60cd05`](https://github.com/nodejs/node/commit/c51a60cd05)] - **doc**: add localPort to http.request() options (Luigi Pinca) [#&#8203;37586](https://github.com/nodejs/node/pull/37586)
    
  • [`b0840ac680`](https://github.com/nodejs/node/commit/b0840ac680)] - **doc**: fix typo in doc/guides/collaborator-guide.md (marsonya) [#&#8203;37643](https://github.com/nodejs/node/pull/37643)
    
  • [`5ef2a8de25`](https://github.com/nodejs/node/commit/5ef2a8de25)] - **doc**: document that module.evaluate fulfills as undefined (James M Snell) [#&#8203;37663](https://github.com/nodejs/node/pull/37663)
    
  • [`b192227a95`](https://github.com/nodejs/node/commit/b192227a95)] - **doc**: add return type of readline.createInterface (Darshan Sen) [#&#8203;37600](https://github.com/nodejs/node/pull/37600)
    
  • [`68d5cb80de`](https://github.com/nodejs/node/commit/68d5cb80de)] - **doc**: apply sentence case to headers in pull-requests.md (marsonya) [#&#8203;37602](https://github.com/nodejs/node/pull/37602)
    
  • [`183dba0dd8`](https://github.com/nodejs/node/commit/183dba0dd8)] - **doc**: add top-level await syntax in vm.md (Antoine du Hamel) [#&#8203;37077](https://github.com/nodejs/node/pull/37077)
    
  • [`1dc7f426aa`](https://github.com/nodejs/node/commit/1dc7f426aa)] - **doc**: clarify that columnOffset applies only to the first line (James M Snell) [#&#8203;37563](https://github.com/nodejs/node/pull/37563)
    
  • [`c21731b39f`](https://github.com/nodejs/node/commit/c21731b39f)] - **doc**: document that NODE_EXTRA_CA_CERTS is read only once (James M Snell) [#&#8203;37562](https://github.com/nodejs/node/pull/37562)
    
  • [`0255ed7e8e`](https://github.com/nodejs/node/commit/0255ed7e8e)] - **doc**: fix typo in doc/api/packages.md (marsonya) [#&#8203;37536](https://github.com/nodejs/node/pull/37536)
    
  • [`52c0f0bf0f`](https://github.com/nodejs/node/commit/52c0f0bf0f)] - **doc**: revise LTS text in collaborator guide (Rich Trott) [#&#8203;37527](https://github.com/nodejs/node/pull/37527)
    
  • [`fdc6a96d49`](https://github.com/nodejs/node/commit/fdc6a96d49)] - **doc**: revise CI text in collaborator guide (Rich Trott) [#&#8203;37526](https://github.com/nodejs/node/pull/37526)
    
  • [`c62a1345bb`](https://github.com/nodejs/node/commit/c62a1345bb)] - **doc**: revise objections section of collaborator guide (Rich Trott) [#&#8203;37525](https://github.com/nodejs/node/pull/37525)
    
  • [`adc75368ba`](https://github.com/nodejs/node/commit/adc75368ba)] - **doc**: revise premature disclosure text in collaborator guide (Rich Trott) [#&#8203;37524](https://github.com/nodejs/node/pull/37524)
    
  • [`1b851461b1`](https://github.com/nodejs/node/commit/1b851461b1)] - **doc**: change links to use HEAD in top level docs (Michael Dawson) [#&#8203;37494](https://github.com/nodejs/node/pull/37494)
    
  • [`64ed65ecc4`](https://github.com/nodejs/node/commit/64ed65ecc4)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37506](https://github.com/nodejs/node/pull/37506)
    
  • [`ff1990c409`](https://github.com/nodejs/node/commit/ff1990c409)] - **doc**: add url.resolve replacement example (Antoine du Hamel) [#&#8203;37501](https://github.com/nodejs/node/pull/37501)
    
  • [`52b3b54c14`](https://github.com/nodejs/node/commit/52b3b54c14)] - **doc**: apply sentence case to guides headers (marsonya) [#&#8203;37497](https://github.com/nodejs/node/pull/37497)
    
  • [`da2cd4a48a`](https://github.com/nodejs/node/commit/da2cd4a48a)] - **doc**: update CI requirements for landing pull requests (Antoine du Hamel) [#&#8203;37308](https://github.com/nodejs/node/pull/37308)
    
  • [`2082f5bd68`](https://github.com/nodejs/node/commit/2082f5bd68)] - **doc**: recommend queueMicrotask over process.nextTick (James M Snell) [#&#8203;37484](https://github.com/nodejs/node/pull/37484)
    
  • [`099eef6a84`](https://github.com/nodejs/node/commit/099eef6a84)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37478](https://github.com/nodejs/node/pull/37478)
    
  • [`a0bab6915e`](https://github.com/nodejs/node/commit/a0bab6915e)] - **doc**: fix typo in doc/api/http2/md (marsonya) [#&#8203;37479](https://github.com/nodejs/node/pull/37479)
    
  • [`3e82263877`](https://github.com/nodejs/node/commit/3e82263877)] - **doc**: alphabetize vm Module class properties (Rich Trott) [#&#8203;37451](https://github.com/nodejs/node/pull/37451)
    
  • [`e6f804b0af`](https://github.com/nodejs/node/commit/e6f804b0af)] - **doc**: alphabetize crypto Cipher class entries (Rich Trott) [#&#8203;37450](https://github.com/nodejs/node/pull/37450)
    
  • [`bb434a983c`](https://github.com/nodejs/node/commit/bb434a983c)] - **doc**: use HEAD for links in api docs (Michael Dawson) [#&#8203;37437](https://github.com/nodejs/node/pull/37437)
    
  • [`39ef3bd155`](https://github.com/nodejs/node/commit/39ef3bd155)] - **doc**: fix alignment of parameters (Michael Dawson) [#&#8203;37422](https://github.com/nodejs/node/pull/37422)
    
  • [`8b60e66982`](https://github.com/nodejs/node/commit/8b60e66982)] - **doc**: fix typo in doc/api/esm.md (marsonya) [#&#8203;37400](https://github.com/nodejs/node/pull/37400)
    
  • [`605cb4cd4c`](https://github.com/nodejs/node/commit/605cb4cd4c)] - **doc**: fix typo in esm.md (Jay Tailor) [#&#8203;37417](https://github.com/nodejs/node/pull/37417)
    
  • [`74f0760a9b`](https://github.com/nodejs/node/commit/74f0760a9b)] - **doc**: use HEAD in links where possible (Michael Dawson) [#&#8203;37421](https://github.com/nodejs/node/pull/37421)
    
  • [`4785755014`](https://github.com/nodejs/node/commit/4785755014)] - **doc**: clarify that async_hook callbacks cannot be async (James M Snell) [#&#8203;37384](https://github.com/nodejs/node/pull/37384)
    
  • [`07130c038f`](https://github.com/nodejs/node/commit/07130c038f)] - **doc**: add dmabupt to collaborators (Xu Meng) [#&#8203;37377](https://github.com/nodejs/node/pull/37377)
    
  • [`2a3feff2f0`](https://github.com/nodejs/node/commit/2a3feff2f0)] - **doc**: optimize HTML rendering (Antoine du Hamel) [#&#8203;37301](https://github.com/nodejs/node/pull/37301)
    
  • [`8b5e42e031`](https://github.com/nodejs/node/commit/8b5e42e031)] - **doc**: fix quotes in stream docs (Tobias Nießen) [#&#8203;37269](https://github.com/nodejs/node/pull/37269)
    
  • [`d426143f54`](https://github.com/nodejs/node/commit/d426143f54)] - **doc**: link PACKAGE_EXPORTS_RESOLVE to ESM section (Utku Gultopu) [#&#8203;37135](https://github.com/nodejs/node/pull/37135)
    
  • [`debffd9b41`](https://github.com/nodejs/node/commit/debffd9b41)] - **doc**: use sentence case in benchmark doc (Rich Trott) [#&#8203;37351](https://github.com/nodejs/node/pull/37351)
    
  • [`f28a5c6e1e`](https://github.com/nodejs/node/commit/f28a5c6e1e)] - **doc**: apply sentence-consistently in C++ style guide (Rich Trott) [#&#8203;37350](https://github.com/nodejs/node/pull/37350)
    
  • [`569ad98b9a`](https://github.com/nodejs/node/commit/569ad98b9a)] - **doc**: apply sentence case to release doc headers (Rich Trott) [#&#8203;37349](https://github.com/nodejs/node/pull/37349)
    
  • [`7cf4a4b2b8`](https://github.com/nodejs/node/commit/7cf4a4b2b8)] - **doc**: fix performanceEntry.flags style format (Cheng Liu) [#&#8203;37274](https://github.com/nodejs/node/pull/37274)
    
  • [`5ade2fd207`](https://github.com/nodejs/node/commit/5ade2fd207)] - **doc**: fix typo in deprecations.md (marsonya) [#&#8203;37282](https://github.com/nodejs/node/pull/37282)
    
  • [`5bc0a0d9f7`](https://github.com/nodejs/node/commit/5bc0a0d9f7)] - **doc**: add version metadata for packages features (Antoine du Hamel) [#&#8203;37289](https://github.com/nodejs/node/pull/37289)
    
  • [`b485a3e2d2`](https://github.com/nodejs/node/commit/b485a3e2d2)] - **doc**: fix typo in /api/dns.md (marsonya) [#&#8203;37312](https://github.com/nodejs/node/pull/37312)
    
  • [`a99456ce69`](https://github.com/nodejs/node/commit/a99456ce69)] - **doc**: fix description of hasSubscribers (Tobias Nießen) [#&#8203;37324](https://github.com/nodejs/node/pull/37324)
    
  • [`b7c9366979`](https://github.com/nodejs/node/commit/b7c9366979)] - **doc**: discourage error event (Benjamin Gruenbaum) [#&#8203;37264](https://github.com/nodejs/node/pull/37264)
    
  • [`8c41bc953e`](https://github.com/nodejs/node/commit/8c41bc953e)] - **doc**: fix misnamed SHASUMS256.txt name in README.md (marsonya) [#&#8203;37260](https://github.com/nodejs/node/pull/37260)
    
  • [`b2ee1afb2e`](https://github.com/nodejs/node/commit/b2ee1afb2e)] - **doc**: fix typo in console.md (marsonya) [#&#8203;37279](https://github.com/nodejs/node/pull/37279)
    
  • [`281d75cebb`](https://github.com/nodejs/node/commit/281d75cebb)] - **doc**: use sentence case in README headers (Rich Trott) [#&#8203;37251](https://github.com/nodejs/node/pull/37251)
    
  • [`8cffab6571`](https://github.com/nodejs/node/commit/8cffab6571)] - **doc**: use sentence case for headers in BUILDING.md (Rich Trott) [#&#8203;37250](https://github.com/nodejs/node/pull/37250)
    
  • [`0eaeaea454`](https://github.com/nodejs/node/commit/0eaeaea454)] - **doc**: rename N-API to Node-API (Gabriel Schulhof) [#&#8203;37259](https://github.com/nodejs/node/pull/37259)
    
  • [`cb632e4040`](https://github.com/nodejs/node/commit/cb632e4040)] - **doc**: fix version number for DEP006 (Antoine du Hamel) [#&#8203;37231](https://github.com/nodejs/node/pull/37231)
    
  • [`e7415c374b`](https://github.com/nodejs/node/commit/e7415c374b)] - **doc**: fix CHANGELOG_ARCHIVE table of contents (Antoine du Hamel) [#&#8203;37232](https://github.com/nodejs/node/pull/37232)
    
  • [`2959c65632`](https://github.com/nodejs/node/commit/2959c65632)] - **doc**: fix typo in globals.md (Darshan Sen) [#&#8203;37228](https://github.com/nodejs/node/pull/37228)
    
  • [`ad80e3de1e`](https://github.com/nodejs/node/commit/ad80e3de1e)] - **doc**: fix 404 links in module.md (Antoine du Hamel) [#&#8203;37202](https://github.com/nodejs/node/pull/37202)
    
  • [`e7ca9b6d71`](https://github.com/nodejs/node/commit/e7ca9b6d71)] - **doc**: fix color contrast on \<kbd> elements (Antoine du Hamel) [#&#8203;37185](https://github.com/nodejs/node/pull/37185)
    
  • [`11d3e71f80`](https://github.com/nodejs/node/commit/11d3e71f80)] - **doc**: improve promise terminology (Benjamin Gruenbaum) [#&#8203;37181](https://github.com/nodejs/node/pull/37181)
    
  • [`35cf86c83b`](https://github.com/nodejs/node/commit/35cf86c83b)] - **doc**: fix list format in Developer's Certificate of Origin (Akash Negi) [#&#8203;37138](https://github.com/nodejs/node/pull/37138)
    
  • [`6264ac187a`](https://github.com/nodejs/node/commit/6264ac187a)] - **doc**: clarify ERR_INVALID_REPL_INPUT usage (Rich Trott) [#&#8203;37143](https://github.com/nodejs/node/pull/37143)
    
  • [`d340dca940`](https://github.com/nodejs/node/commit/d340dca940)] - **doc**: clarify repl exception conditions (Rich Trott) [#&#8203;37142](https://github.com/nodejs/node/pull/37142)
    
  • [`26ec20a9b6`](https://github.com/nodejs/node/commit/26ec20a9b6)] - **doc**: add example for test structure (Turner Jabbour) [#&#8203;35046](https://github.com/nodejs/node/pull/35046)
    
  • [`8099bfb35c`](https://github.com/nodejs/node/commit/8099bfb35c)] - **doc**: remove TOC summary for pages with no TOC (Rich Trott) [#&#8203;37043](https://github.com/nodejs/node/pull/37043)
    
  • [`b0c9b1fdfb`](https://github.com/nodejs/node/commit/b0c9b1fdfb)] - **doc**: update Buffer encoding option count (Dave Cardwell) [#&#8203;37102](https://github.com/nodejs/node/pull/37102)
    
  • [`af313a8495`](https://github.com/nodejs/node/commit/af313a8495)] - **doc**: update BUILDING.md previous versions links (Richard Lau) [#&#8203;37082](https://github.com/nodejs/node/pull/37082)
    
  • [`b353549f7c`](https://github.com/nodejs/node/commit/b353549f7c)] - **doc**: mention adding Fixes to collaborator onboarding PR (Joyee Cheung) [#&#8203;37097](https://github.com/nodejs/node/pull/37097)
    
  • [`8ed0c17bee`](https://github.com/nodejs/node/commit/8ed0c17bee)] - **doc**: add Zijian Liu to collaborators (ZiJian Liu) [#&#8203;37075](https://github.com/nodejs/node/pull/37075)
    
  • [`87fcda8d3e`](https://github.com/nodejs/node/commit/87fcda8d3e)] - **doc**: add tooltip for light/dark mode toggle (Rich Trott) [#&#8203;37044](https://github.com/nodejs/node/pull/37044)
    
  • [`49f13743e5`](https://github.com/nodejs/node/commit/49f13743e5)] - **doc**: improve AsyncLocalStorage introduction (Romuald Brillout) [#&#8203;36946](https://github.com/nodejs/node/pull/36946)
    
  • [`b8080134a2`](https://github.com/nodejs/node/commit/b8080134a2)] - **doc**: add missing comma in tty (Matthew Mario Di Pasquale) [#&#8203;37039](https://github.com/nodejs/node/pull/37039)
    
  • [`1e2beeea99`](https://github.com/nodejs/node/commit/1e2beeea99)] - **doc**: list Unsupported Directory Import resolve err (Guy Bedford) [#&#8203;37032](https://github.com/nodejs/node/pull/37032)
    
  • [`fb4eee132e`](https://github.com/nodejs/node/commit/fb4eee132e)] - **doc**: add missing ARIA label for button (Rich Trott) [#&#8203;37031](https://github.com/nodejs/node/pull/37031)
    
  • [`f260f4a12f`](https://github.com/nodejs/node/commit/f260f4a12f)] - **doc**: add [@&#8203;RaisinTen](https://github.com/RaisinTen) to collaborators (Darshan Sen) [#&#8203;36998](https://github.com/nodejs/node/pull/36998)
    
  • [`00075986f0`](https://github.com/nodejs/node/commit/00075986f0)] - **doc**: fix typo in http.server.requestTimout docs (alexbs) [#&#8203;36987](https://github.com/nodejs/node/pull/36987)
    
  • [`b25b69418a`](https://github.com/nodejs/node/commit/b25b69418a)] - **doc**: add performance notes for fs.readFile (James M Snell) [#&#8203;36880](https://github.com/nodejs/node/pull/36880)
    
  • [`385d0df02d`](https://github.com/nodejs/node/commit/385d0df02d)] - **doc**: clarify maxSockets option of http.Agent (Pooja D P) [#&#8203;36941](https://github.com/nodejs/node/pull/36941)
    
  • [`792bea4e78`](https://github.com/nodejs/node/commit/792bea4e78)] - **doc**: remove pull-requests.md preamble (Rich Trott) [#&#8203;36960](https://github.com/nodejs/node/pull/36960)
    
  • [`d43492ee42`](https://github.com/nodejs/node/commit/d43492ee42)] - **doc**: fix percentile range in perf_hooks.md (raisinten) [#&#8203;36938](https://github.com/nodejs/node/pull/36938)
    
  • [`f39ee90c94`](https://github.com/nodejs/node/commit/f39ee90c94)] - **doc**: improve perf_hooks docs (Juan José Arboleda) [#&#8203;36909](https://github.com/nodejs/node/pull/36909)
    
  • [`e990b11672`](https://github.com/nodejs/node/commit/e990b11672)] - **doc**: fix invalid HTML in doc template (Rich Trott) [#&#8203;36930](https://github.com/nodejs/node/pull/36930)
    
  • [`e1c62dd977`](https://github.com/nodejs/node/commit/e1c62dd977)] - **doc**: remove issue template duplication from contributing docs (Rich Trott) [#&#8203;36908](https://github.com/nodejs/node/pull/36908)
    
  • [`3c70f6842d`](https://github.com/nodejs/node/commit/3c70f6842d)] - **doc**: remove resolving-a-bug-report from contributing docs (Rich Trott) [#&#8203;36905](https://github.com/nodejs/node/pull/36905)
    
  • [`308d361a79`](https://github.com/nodejs/node/commit/308d361a79)] - **doc**: use ESM syntax for WASI example (Antoine du Hamel) [#&#8203;36848](https://github.com/nodejs/node/pull/36848)
    
  • [`189fae8618`](https://github.com/nodejs/node/commit/189fae8618)] - **doc**: add iansu to collaborators (Ian Sutherland) [#&#8203;36951](https://github.com/nodejs/node/pull/36951)
    
  • [`28c80b514f`](https://github.com/nodejs/node/commit/28c80b514f)] - **doc**: add alternative version links to the packages page (Filip Skokan) [#&#8203;36915](https://github.com/nodejs/node/pull/36915)
    
  • [`ed5bb7673f`](https://github.com/nodejs/node/commit/ed5bb7673f)] - **doc**: add miladfarca to collaborators (Milad Fa) [#&#8203;36934](https://github.com/nodejs/node/pull/36934)
    
  • [`580b647ee4`](https://github.com/nodejs/node/commit/580b647ee4)] - **doc**: update tls test to use better terminology (Michael Dawson) [#&#8203;36851](https://github.com/nodejs/node/pull/36851)
    
  • [`fa82cbc4f7`](https://github.com/nodejs/node/commit/fa82cbc4f7)] - **doc**: remove unnecessary contributing.md section (Rich Trott) [#&#8203;36891](https://github.com/nodejs/node/pull/36891)
    
  • [`583b2192d9`](https://github.com/nodejs/node/commit/583b2192d9)] - **doc**: wrap TOC in a \<details> tag (Mattia Pontonio) [#&#8203;36896](https://github.com/nodejs/node/pull/36896)
    
  • [`9a3cfa7069`](https://github.com/nodejs/node/commit/9a3cfa7069)] - **doc**: fix indentation on http2 doc entry (Rich Trott) [#&#8203;36869](https://github.com/nodejs/node/pull/36869)
    
  • [`7fbbdb831a`](https://github.com/nodejs/node/commit/7fbbdb831a)] - **doc**: define "browser", "production", "development" (Guy Bedford) [#&#8203;36856](https://github.com/nodejs/node/pull/36856)
    
  • [`5770ae057e`](https://github.com/nodejs/node/commit/5770ae057e)] - **doc**: fix module syncBuiltinESMExports example (Bruce A. MacNaughton) [#&#8203;34284](https://github.com/nodejs/node/pull/34284)
    
  • [`099d776e29`](https://github.com/nodejs/node/commit/099d776e29)] - **doc**: update release key for Danielle Adams (Danielle Adams) [#&#8203;36793](https://github.com/nodejs/node/pull/36793)
    
  • [`57e27a3824`](https://github.com/nodejs/node/commit/57e27a3824)] - **doc**: clarify child_process.exec inherits cwd (ugultopu) [#&#8203;36809](https://github.com/nodejs/node/pull/36809)
    
  • [`f605bc00ae`](https://github.com/nodejs/node/commit/f605bc00ae)] - **doc**: clarify descriptions of \_writev chunks argument (James M Snell) [#&#8203;36822](https://github.com/nodejs/node/pull/36822)
    
  • [`cf0fa7fa2f`](https://github.com/nodejs/node/commit/cf0fa7fa2f)] - **doc**: document buffer's "Uint" aliases clearly (Michaël Zasso) [#&#8203;36796](https://github.com/nodejs/node/pull/36796)
    
  • [`5f36ff80b9`](https://github.com/nodejs/node/commit/5f36ff80b9)] - **doc**: add dnlup to collaborators (Daniele Belardi) [#&#8203;36849](https://github.com/nodejs/node/pull/36849)
    
  • [`c1ea23c55d`](https://github.com/nodejs/node/commit/c1ea23c55d)] - **doc**: clarify subprocess.stdout/in/err/io properties (James M Snell) [#&#8203;36784](https://github.com/nodejs/node/pull/36784)
    
  • [`19e61206f2`](https://github.com/nodejs/node/commit/19e61206f2)] - **doc**: add dark mode (Ajay Poshak) [#&#8203;36313](https://github.com/nodejs/node/pull/36313)
    
  • [`8620458966`](https://github.com/nodejs/node/commit/8620458966)] - **doc**: revise method text in async_hooks.md (Rich Trott) [#&#8203;36736](https://github.com/nodejs/node/pull/36736)
    
  • [`a800b5b698`](https://github.com/nodejs/node/commit/a800b5b698)] - **doc**: clarify when messageerror is emitted (James M Snell) [#&#8203;36780](https://github.com/nodejs/node/pull/36780)
    
  • [`e973bdc14e`](https://github.com/nodejs/node/commit/e973bdc14e)] - **doc**: avoid memory leak warning in async_hooks example (James M Snell) [#&#8203;36783](https://github.com/nodejs/node/pull/36783)
    
  • [`1521a59002`](https://github.com/nodejs/node/commit/1521a59002)] - **doc**: clarify that --require only supports cjs (James M Snell) [#&#8203;36806](https://github.com/nodejs/node/pull/36806)
    
  • [`dc15608661`](https://github.com/nodejs/node/commit/dc15608661)] - **doc**: clarify Buffer.from when using ArrayBuffer (James M Snell) [#&#8203;36785](https://github.com/nodejs/node/pull/36785)
    
  • [`67a6e9c516`](https://github.com/nodejs/node/commit/67a6e9c516)] - **doc**: fix broken link for ChildProcess (James M Snell) [#&#8203;36788](https://github.com/nodejs/node/pull/36788)
    
  • [`31039dbf63`](https://github.com/nodejs/node/commit/31039dbf63)] - **doc**: revise exit() and run() text in async_hooks.md (Rich Trott) [#&#8203;36738](https://github.com/nodejs/node/pull/36738)
    
  • [`844a15622f`](https://github.com/nodejs/node/commit/844a15622f)] - **doc**: clarify that N-API addons are context-aware (Alba Mendez) [#&#8203;36640](https://github.com/nodejs/node/pull/36640)
    
  • [`8f48e77217`](https://github.com/nodejs/node/commit/8f48e77217)] - **doc**: fix typo in esm documentation (Mohamed Kamagate) [#&#8203;36800](https://github.com/nodejs/node/pull/36800)
    
  • [`095c69dce3`](https://github.com/nodejs/node/commit/095c69dce3)] - **doc**: add panva to collaborators (Filip Skokan) [#&#8203;36802](https://github.com/nodejs/node/pull/36802)
    
  • [`8bda9f4dce`](https://github.com/nodejs/node/commit/8bda9f4dce)] - **doc**: reduce abbreviations in async_hooks.md (Rich Trott) [#&#8203;36737](https://github.com/nodejs/node/pull/36737)
    
  • [`1a65b442f0`](https://github.com/nodejs/node/commit/1a65b442f0)] - **doc**: simplify pull request template (Rich Trott) [#&#8203;36739](https://github.com/nodejs/node/pull/36739)
    
  • [`71b94e1ff7`](https://github.com/nodejs/node/commit/71b94e1ff7)] - **doc**: clarify undocumented stream properties (James M Snell) [#&#8203;36715](https://github.com/nodejs/node/pull/36715)
    
  • [`bcca52c11a`](https://github.com/nodejs/node/commit/bcca52c11a)] - **doc**: document common warning types (James M Snell) [#&#8203;36713](https://github.com/nodejs/node/pull/36713)
    
  • [`97faeeb115`](https://github.com/nodejs/node/commit/97faeeb115)] - **doc**: improve ALS.enterWith and exit descriptions (Andrey Pechkurov) [#&#8203;36705](https://github.com/nodejs/node/pull/36705)
    
  • [`535bbc294a`](https://github.com/nodejs/node/commit/535bbc294a)] - **doc**: add yashLadha to collaborator (Yash Ladha) [#&#8203;36666](https://github.com/nodejs/node/pull/36666)
    
  • [`6293aea1d1`](https://github.com/nodejs/node/commit/6293aea1d1)] - **doc**: alphabetize http response properties (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631)
    
  • [`afb9534d65`](https://github.com/nodejs/node/commit/afb9534d65)] - **doc**: correct callback parameter type for createPushResponse() (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631)
    
  • [`f65b842ee1`](https://github.com/nodejs/node/commit/f65b842ee1)] - **doc**: use \_code name\_ rather than \_codename\_ (Rich Trott) [#&#8203;36611](https://github.com/nodejs/node/pull/36611)
    
  • [`12dc0e6a28`](https://github.com/nodejs/node/commit/12dc0e6a28)] - **doc**: document return value of https.request (Michael Chen) [#&#8203;36370](https://github.com/nodejs/node/pull/36370)
    
  • [`317a1d7a0d`](https://github.com/nodejs/node/commit/317a1d7a0d)] - **doc**: remove replication of GitHub template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590)
    
  • [`653492f2d4`](https://github.com/nodejs/node/commit/653492f2d4)] - **doc**: remove "Related Issues" from pull request template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590)
    
  • [`b57785d89b`](https://github.com/nodejs/node/commit/b57785d89b)] - **doc**: update and run license-builder for Babel (Michaël Zasso) [#&#8203;36504](https://github.com/nodejs/node/pull/36504)
    
  • [`e3c2d112eb`](https://github.com/nodejs/node/commit/e3c2d112eb)] - **doc**: add remark about Collaborators discussion page (FrankQiu) [#&#8203;36420](https://github.com/nodejs/node/pull/36420)
    
  • [`8b349187b8`](https://github.com/nodejs/node/commit/8b349187b8)] - **doc**: add two tips for speeding the dev builds (Momtchil Momtchev) [#&#8203;36452](https://github.com/nodejs/node/pull/36452)
    
  • [`6198d74cd3`](https://github.com/nodejs/node/commit/6198d74cd3)] - **doc**: add note about timingSafeEqual for TypedArray (Tobias Nießen) [#&#8203;36323](https://github.com/nodejs/node/pull/36323)
    
  • [`d27028040e`](https://github.com/nodejs/node/commit/d27028040e)] - **doc**: move Derek Lewis to emeritus (Rich Trott) [#&#8203;36514](https://github.com/nodejs/node/pull/36514)
    
  • [`cf9d476948`](https://github.com/nodejs/node/commit/cf9d476948)] - **doc**: add issue reference to github pr template (Chinmoy Chakraborty) [#&#8203;36440](https://github.com/nodejs/node/pull/36440)
    
  • [`760e593968`](https://github.com/nodejs/node/commit/760e593968)] - **doc**: update url.md (Rock) [#&#8203;36147](https://github.com/nodejs/node/pull/36147)
    
  • [`c32c109450`](https://github.com/nodejs/node/commit/c32c109450)] - **doc**: make explicit reverting node_version.h changes (Richard Lau) [#&#8203;36461](https://github.com/nodejs/node/pull/36461)
    
  • [`647ec70419`](https://github.com/nodejs/node/commit/647ec70419)] - **doc**: add license info to the README (FrankQiu) [#&#8203;36278](https://github.com/nodejs/node/pull/36278)
    
  • [`2ec839d974`](https://github.com/nodejs/node/commit/2ec839d974)] - **doc**: revise addon mulitple initializations text (Rich Trott) [#&#8203;36457](https://github.com/nodejs/node/pull/36457)
    
  • [`050b52f16b`](https://github.com/nodejs/node/commit/050b52f16b)] - **doc**: add PoojaDurgad to collaborators (Pooja D P) [#&#8203;36511](https://github.com/nodejs/node/pull/36511)
    
  • [`681d2a7176`](https://github.com/nodejs/node/commit/681d2a7176)] - **doc**: edit addon text about event loop blocking (Rich Trott) [#&#8203;36448](https://github.com/nodejs/node/pull/36448)
    
  • [`afad5e6be6`](https://github.com/nodejs/node/commit/afad5e6be6)] - **doc**: update terminology (Michael Dawson) [#&#8203;36475](https://github.com/nodejs/node/pull/36475)
    
  • [`615a0aaf86`](https://github.com/nodejs/node/commit/615a0aaf86)] - **doc**: reword POSIX threads text in addons.md (Rich Trott) [#&#8203;36436](https://github.com/nodejs/node/pull/36436)
    
  • [`94d41f22f0`](https://github.com/nodejs/node/commit/94d41f22f0)] - **doc**: add RaisinTen as a triager (raisinten) [#&#8203;36404](https://github.com/nodejs/node/pull/36404)
    
  • [`cd065210a5`](https://github.com/nodejs/node/commit/cd065210a5)] - **doc**: provide more context on techinical values (Michael Dawson) [#&#8203;36201](https://github.com/nodejs/node/pull/36201)
    
  • [`f515156fab`](https://github.com/nodejs/node/commit/f515156fab)] - **doc**: add Powershell oneliner to get Windows version (Michael Bashurov) [#&#8203;30289](https://github.com/nodejs/node/pull/30289)
    
  • [`280d1b09be`](https://github.com/nodejs/node/commit/280d1b09be)] - **doc**: add process for handling premature disclosure (Michael Dawson) [#&#8203;36155](https://github.com/nodejs/node/pull/36155)
    
  • [`9269352e45`](https://github.com/nodejs/node/commit/9269352e45)] - **doc**: add table header in intl.md (Rich Trott) [#&#8203;36261](https://github.com/nodejs/node/pull/36261)
    
  • [`6201f23e12`](https://github.com/nodejs/node/commit/6201f23e12)] - **doc**: adding example to Buffer.isBuffer method (naortedgi) [#&#8203;36233](https://github.com/nodejs/node/pull/36233)
    
  • [`1d78d50127`](https://github.com/nodejs/node/commit/1d78d50127)] - **doc**: fix typo in events.md (Luigi Pinca) [#&#8203;36231](https://github.com/nodejs/node/pull/36231)
    
  • [`9b32c9c575`](https://github.com/nodejs/node/commit/9b32c9c575)] - **doc**: fix --experimental-wasm-modules text location (Colin Ihrig) [#&#8203;36220](https://github.com/nodejs/node/pull/36220)
    
  • [`28149cff23`](https://github.com/nodejs/node/commit/28149cff23)] - **doc**: add missing version to update cmd (Ruy Adorno) [#&#8203;36204](https://github.com/nodejs/node/pull/36204)
    
  • [`2d6494775b`](https://github.com/nodejs/node/commit/2d6494775b)] - **doc**: fix invalid link in worker_threads.md (Rich Trott) [#&#8203;36109](https://github.com/nodejs/node/pull/36109)
    
  • [`ec140d7160`](https://github.com/nodejs/node/commit/ec140d7160)] - **doc**: fix `events.getEventListeners` example (Dmitry Semigradsky) [#&#8203;36085](https://github.com/nodejs/node/pull/36085)
    
  • [`34d8a64c56`](https://github.com/nodejs/node/commit/34d8a64c56)] - **doc**: fix incorrect heading level (Bryan Field) [#&#8203;35965](https://github.com/nodejs/node/pull/35965)
    
  • [`d9d7ebd0b4`](https://github.com/nodejs/node/commit/d9d7ebd0b4)] - **doc**: make globals Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777)
    
  • [`2f7afd11a4`](https://github.com/nodejs/node/commit/2f7afd11a4)] - **doc**: make perf_hooks Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777)
    
  • [`810b1d0cbb`](https://github.com/nodejs/node/commit/810b1d0cbb)] - **doc**: make events Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777)
    
  • [`cf4fa79f17`](https://github.com/nodejs/node/commit/cf4fa79f17)] - **doc**: recommend checking abortSignal.aborted first (James M Snell) [#&#8203;37714](https://github.com/nodejs/node/pull/37714)
    
  • [`e93615c5e3`](https://github.com/nodejs/node/commit/e93615c5e3)] - **doc**: make AbortSignal text consistent in events.md (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005)
    
  • [`1a362d8d4b`](https://github.com/nodejs/node/commit/1a362d8d4b)] - **doc**: revise AbortSignal text and example using events.once() (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005)
    
  • [`a7da993cff`](https://github.com/nodejs/node/commit/a7da993cff)] - **doc**: stabilize packages features (Myles Borins) [#&#8203;35742](https://github.com/nodejs/node/pull/35742)
    
  • [`b133034735`](https://github.com/nodejs/node/commit/b133034735)] - **doc**: stabilize subpath patterns (Guy Bedford) [#&#8203;36177](https://github.com/nodejs/node/pull/36177)
    
  • [`5a3e12b1ee`](https://github.com/nodejs/node/commit/5a3e12b1ee)] - **doc**: update fs.l/statSync API history for throwIfNoEntry (Andrew Casey) [#&#8203;36882](https://github.com/nodejs/node/pull/36882)
    
  • [`7c9f3a9d0c`](https://github.com/nodejs/node/commit/7c9f3a9d0c)] - **doc**: fix module.isPreloading documentation (Antoine du Hamel) [#&#8203;36944](https://github.com/nodejs/node/pull/36944)
    
  • [`c1af59384d`](https://github.com/nodejs/node/commit/c1af59384d)] - **doc**: mark modules implementation as stable (Guy Bedford) [#&#8203;35781](https://github.com/nodejs/node/pull/35781)
    
  • [`9930b6b825`](https://github.com/nodejs/node/commit/9930b6b825)] - **doc**: update `buffer.constants.MAX\_LENGTH` (Qingyu Deng) [#&#8203;38109](https://github.com/nodejs/node/pull/38109)
    
  • [`c975a8ded1`](https://github.com/nodejs/node/commit/c975a8ded1)] - **doc**: fix maintaining ICU guide (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980)
    
  • [`d1004d26e4`](https://github.com/nodejs/node/commit/d1004d26e4)] - **doc**: fix typo in BUILDING.md (raisinten) [#&#8203;35807](https://github.com/nodejs/node/pull/35807)
    
  • [`f41c28cf4b`](https://github.com/nodejs/node/commit/f41c28cf4b)] - **doc**: fix YAML lint error on master (Rich Trott) [#&#8203;35709](https://github.com/nodejs/node/pull/35709)
    
  • [`4a768bc13b`](https://github.com/nodejs/node/commit/4a768bc13b)] - **doc**: upgrade stability status of report API (Gireesh Punathil) [#&#8203;35654](https://github.com/nodejs/node/pull/35654)
    
  • [`a3c564bead`](https://github.com/nodejs/node/commit/a3c564bead)] - **doc,child_process**: `pid` can be `undefined` when `ENOENT` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014)
    
  • [`404327563a`](https://github.com/nodejs/node/commit/404327563a)] - **doc,tools**: allow stability table to be updated (Richard Lau) [#&#8203;38048](https://github.com/nodejs/node/pull/38048)
    
  • [`eb6ea8501b`](https://github.com/nodejs/node/commit/eb6ea8501b)] - **doc,tools**: use only one level 1 header per page (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839)
    
  • [`73c1999d0c`](https://github.com/nodejs/node/commit/73c1999d0c)] - **docs**: add references to punycode.md (Isaac Levy) [#&#8203;36761](https://github.com/nodejs/node/pull/36761)
    
  • [`bd38dfbfcc`](https://github.com/nodejs/node/commit/bd38dfbfcc)] - **domain**: add name to monkey-patched emit function (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550)
    
  • [`13d972dd86`](https://github.com/nodejs/node/commit/13d972dd86)] - **domain**: show falsy names as anonymous for DEP0097 (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550)
    
  • [`3f43743c9d`](https://github.com/nodejs/node/commit/3f43743c9d)] - **domain**: make node resilient to Array prototype tempering (Antoine du Hamel) [#&#8203;36676](https://github.com/nodejs/node/pull/36676)
    
  • [`4807499d21`](https://github.com/nodejs/node/commit/4807499d21)] - **domain**: improve deprecation warning text for DEP0097 (Anna Henningsen) [#&#8203;36136](https://github.com/nodejs/node/pull/36136)
    
  • [`b01c496e34`](https://github.com/nodejs/node/commit/b01c496e34)] - **errors**: do not call resolve on URLs with schemes (Benjamin Coe) [#&#8203;35903](https://github.com/nodejs/node/pull/35903)
    
  • [`3c37f896a4`](https://github.com/nodejs/node/commit/3c37f896a4)] - **errors**: print original exception context (Benjamin Coe) [#&#8203;33491](https://github.com/nodejs/node/pull/33491)
    
  • [`3006302372`](https://github.com/nodejs/node/commit/3006302372)] - **(SEMVER-MINOR)** **events**: add max listener warning for EventTarget (James M Snell) [#&#8203;36001](https://github.com/nodejs/node/pull/36001)
    
  • [`6e734a8a61`](https://github.com/nodejs/node/commit/6e734a8a61)] - **(SEMVER-MINOR)** **events**: getEventListeners static (Benjamin Gruenbaum) [#&#8203;35991](https://github.com/nodejs/node/pull/35991)
    
  • [`64cd54be57`](https://github.com/nodejs/node/commit/64cd54be57)] - **events**: disabled manual construction AbortSignal (raisinten) [#&#8203;36094](https://github.com/nodejs/node/pull/36094)
    
  • [`daad5214c4`](https://github.com/nodejs/node/commit/daad5214c4)] - **events**: fire handlers in correct oder (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`7c95cfc164`](https://github.com/nodejs/node/commit/7c95cfc164)] - **events**: define abort on prototype (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`bdad1bc4fc`](https://github.com/nodejs/node/commit/bdad1bc4fc)] - **events**: support event handlers on prototypes (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`6e21e8283f`](https://github.com/nodejs/node/commit/6e21e8283f)] - **events**: define event handler as enumerable (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931)
    
  • [`e51d7c535f`](https://github.com/nodejs/node/commit/e51d7c535f)] - **events**: support emit on nodeeventtarget (Benjamin Gruenbaum) [#&#8203;35851](https://github.com/nodejs/node/pull/35851)
    
  • [`6558ffa76b`](https://github.com/nodejs/node/commit/6558ffa76b)] - **events**: add a few tests (Benjamin Gruenbaum) [#&#8203;35806](https://github.com/nodejs/node/pull/35806)
    
  • [`bf728b5439`](https://github.com/nodejs/node/commit/bf728b5439)] - **events**: make abort_controller event trusted (Benjamin Gruenbaum) [#&#8203;35811](https://github.com/nodejs/node/pull/35811)
    
  • [`3f33b5a89e`](https://github.com/nodejs/node/commit/3f33b5a89e)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with on (James M Snell) [#&#8203;34912](https://github.com/nodejs/node/pull/34912)
    
  • [`1fefb5cb75`](https://github.com/nodejs/node/commit/1fefb5cb75)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with once (James M Snell) [#&#8203;34911](https://github.com/nodejs/node/pull/34911)
    
  • [`85987450df`](https://github.com/nodejs/node/commit/85987450df)] - **fs**: fix chown abort (Darshan Sen) [#&#8203;38004](https://github.com/nodejs/node/pull/38004)
    
  • [`dd1fe6d8ba`](https://github.com/nodejs/node/commit/dd1fe6d8ba)] - **fs**: add promisified readFile benchmark (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608)
    
  • [`f2279f856e`](https://github.com/nodejs/node/commit/f2279f856e)] - **fs**: fix writeFile signal does not close file (Nitzan Uziely) [#&#8203;37402](https://github.com/nodejs/node/pull/37402)
    
  • [`92348a9216`](https://github.com/nodejs/node/commit/92348a9216)] - **(SEMVER-MINOR)** **fs**: use a default callback for fs.close() (James M Snell) [#&#8203;37174](https://github.com/nodejs/node/pull/37174)
    
  • [`e582832643`](https://github.com/nodejs/node/commit/e582832643)] - **fs**: only use Buffer.concat in promises.readFile when necessary (Anna Henningsen) [#&#8203;37127](https://github.com/nodejs/node/pull/37127)
    
  • [`a1ee9b3680`](https://github.com/nodejs/node/commit/a1ee9b3680)] - **fs**: add explicit note about undefined path when recursive (Sebastian Silbermann) [#&#8203;37010](https://github.com/nodejs/node/pull/37010)
    
  • [`fe6e5e4c0e`](https://github.com/nodejs/node/commit/fe6e5e4c0e)] - **fs**: accept non-32-bit length in writeBuffer (raisinten) [#&#8203;36667](https://github.com/nodejs/node/pull/36667)
    
  • [`455243667a`](https://github.com/nodejs/node/commit/455243667a)] - **fs**: move method definition from header (Yash Ladha) [#&#8203;36256](https://github.com/nodejs/node/pull/36256)
    
  • [`1bffd8d7bb`](https://github.com/nodejs/node/commit/1bffd8d7bb)] - **fs**: pass ERR_DIR_CLOSED asynchronously to dir.close (Zijian Liu) [#&#8203;36243](https://github.com/nodejs/node/pull/36243)
    
  • [`9b8596a67f`](https://github.com/nodejs/node/commit/9b8596a67f)] - **fs**: fix when path is buffer on fs.symlinkSync (himself65) [#&#8203;34540](https://github.com/nodejs/node/pull/34540)
    
  • [`026941381b`](https://github.com/nodejs/node/commit/026941381b)] - **fs**: fix pre-aborted writeFile AbortSignal file leak (Nitzan Uziely) [#&#8203;37393](https://github.com/nodejs/node/pull/37393)
    
  • [`7aa2e5d8dc`](https://github.com/nodejs/node/commit/7aa2e5d8dc)] - **(SEMVER-MINOR)** **fs**: add AbortSignal support to watch (Benjamin Gruenbaum) [#&#8203;37190](https://github.com/nodejs/node/pull/37190)
    
  • [`219cd000c0`](https://github.com/nodejs/node/commit/219cd000c0)] - **(SEMVER-MINOR)** **fs**: support abortsignal in writeFile (Benjamin Gruenbaum) [#&#8203;35993](https://github.com/nodejs/node/pull/35993)
    
  • [`5f88b644f8`](https://github.com/nodejs/node/commit/5f88b644f8)] - **(SEMVER-MINOR)** **fs**: add support for AbortSignal in readFile (Benjamin Gruenbaum) [#&#8203;35911](https://github.com/nodejs/node/pull/35911)
    
  • [`443cacee5f`](https://github.com/nodejs/node/commit/443cacee5f)] - **fs**: remove custom Buffer pool for streams (Robert Nagy) [#&#8203;33981](https://github.com/nodejs/node/pull/33981)
    
  • [`d0115f14f6`](https://github.com/nodejs/node/commit/d0115f14f6)] - **(SEMVER-MINOR)** **http**: add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660)
    
  • [`105b8630b9`](https://github.com/nodejs/node/commit/105b8630b9)] - **http**: explain the possibilty of refactor unused argument (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275)
    
  • [`926bb4fd17`](https://github.com/nodejs/node/commit/926bb4fd17)] - **http**: explain the unused argument in IncomingMessage.\_read (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275)
    
  • [`e7bc37909c`](https://github.com/nodejs/node/commit/e7bc37909c)] - **http**: cleanup ClientRequest oncreate (Robert Nagy) [#&#8203;36862](https://github.com/nodejs/node/pull/36862)
    
  • [`5064822f24`](https://github.com/nodejs/node/commit/5064822f24)] - **http**: make HEAD method to work with keep-alive (Joseph Hackman) [#&#8203;34231](https://github.com/nodejs/node/pull/34231)
    
  • [`8163f3179b`](https://github.com/nodejs/node/commit/8163f3179b)] - **http**: remove dead code from internal/http.js (ZiJian Liu) [#&#8203;36630](https://github.com/nodejs/node/pull/36630)
    
  • [`ad39b37974`](https://github.com/nodejs/node/commit/ad39b37974)] - **(SEMVER-MINOR)** **http**: enable call chaining with setHeader() (pooja d.p) [#&#8203;35924](https://github.com/nodejs/node/pull/35924)
    
  • [`623099db4b`](https://github.com/nodejs/node/commit/623099db4b)] - **(SEMVER-MINOR)** **http**: report request start and end with diagnostics_channel (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895)
    
  • [`524b7134e8`](https://github.com/nodejs/node/commit/524b7134e8)] - **(SEMVER-MINOR)** **http**: add support for abortsignal to http.request (Benjamin Gruenbaum) [#&#8203;36048](https://github.com/nodejs/node/pull/36048)
    
  • [`f70aee03ab`](https://github.com/nodejs/node/commit/f70aee03ab)] - **(SEMVER-MINOR)** **http**: set lifo as the default scheduling strategy in Agent (Matteo Collina) [#&#8203;36685](https://github.com/nodejs/node/pull/36685)
    
  • [`16a16508c4`](https://github.com/nodejs/node/commit/16a16508c4)] - **http2**: fix typos in core.js (Pranshu Jethmalani) [#&#8203;36719](https://github.com/nodejs/node/pull/36719)
    
  • [`2e259220cb`](https://github.com/nodejs/node/commit/2e259220cb)] - **(SEMVER-MINOR)** **http2**: add updateSettings to both http2 servers (Vincent Boivin) [#&#8203;35383](https://github.com/nodejs/node/pull/35383)
    
  • [`336fb18b44`](https://github.com/nodejs/node/commit/336fb18b44)] - **http2**: add support for AbortSignal to http2Session.request (Madara Uchiha) [#&#8203;36070](https://github.com/nodejs/node/pull/36070)
    
  • [`f44b3c12e5`](https://github.com/nodejs/node/commit/f44b3c12e5)] - **https**: add abortcontroller test (Benjamin Gruenbaum) [#&#8203;36307](https://github.com/nodejs/node/pull/36307)
    
  • [`b5ad655c6b`](https://github.com/nodejs/node/commit/b5ad655c6b)] - **lib**: properly process JavaScript exceptions on async_hooks fatal error (legendecas) [#&#8203;38106](https://github.com/nodejs/node/pull/38106)
    
  • [`1d8269302e`](https://github.com/nodejs/node/commit/1d8269302e)] - **lib**: change wording in lib/domain.js comment (Akhil Marsonya) [#&#8203;37933](https://github.com/nodejs/node/pull/37933)
    
  • [`a61fd37786`](https://github.com/nodejs/node/commit/a61fd37786)] - **lib**: change wording in lib/internal/child_process comment (Akhil Marsonya) [#&#8203;37903](https://github.com/nodejs/node/pull/37903)
    
  • [`13ac680cdb`](https://github.com/nodejs/node/commit/13ac680cdb)] - **lib**: fix typo in internal/modules/esm/module_job.js (marsonya) [#&#8203;37773](https://github.com/nodejs/node/pull/37773)
    
  • [`eea4f3bf82`](https://github.com/nodejs/node/commit/eea4f3bf82)] - **lib**: fix typo in lib/internal/bootstrap/loaders.js (marsonya) [#&#8203;37644](https://github.com/nodejs/node/pull/37644)
    
  • [`fe47563bed`](https://github.com/nodejs/node/commit/fe47563bed)] - **lib**: simplify check in child_process (Darshan Sen) [#&#8203;37367](https://github.com/nodejs/node/pull/37367)
    
  • [`d78e2ed82c`](https://github.com/nodejs/node/commit/d78e2ed82c)] - **lib**: remove non used getter in `lib/perf\_hooks.js` (Juan José Arboleda) [#&#8203;36907](https://github.com/nodejs/node/pull/36907)
    
  • [`08b69fb1e8`](https://github.com/nodejs/node/commit/08b69fb1e8)] - **lib**: fix diagnostics_channel hasSubscribers error (ZiJian Liu) [#&#8203;36599](https://github.com/nodejs/node/pull/36599)
    
  • [`3ee0423dfa`](https://github.com/nodejs/node/commit/3ee0423dfa)] - **(SEMVER-MINOR)** **lib**: support BigInt in querystring.stringify (raisinten) [#&#8203;36499](https://github.com/nodejs/node/pull/36499)
    
  • [`e71eed620a`](https://github.com/nodejs/node/commit/e71eed620a)] - **lib**: fix typo in internal/errors.js (raisinten) [#&#8203;36426](https://github.com/nodejs/node/pull/36426)
    
  • [`be537fe877`](https://github.com/nodejs/node/commit/be537fe877)] - **lib**: remove primordials.SafePromise (Antoine du Hamel) [#&#8203;36149](https://github.com/nodejs/node/pull/36149)
    
  • [`60ef53cc14`](https://github.com/nodejs/node/commit/60ef53cc14)] - **(SEMVER-MINOR)** **lib**: create diagnostics_channel module (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895)
    
  • [`b1507c41e7`](https://github.com/nodejs/node/commit/b1507c41e7)] - **lib**: add brand checks to AbortController and AbortSignal (Mattias Buelens) [#&#8203;37720](https://github.com/nodejs/node/pull/37720)
    
  • [`448a6a22cf`](https://github.com/nodejs/node/commit/448a6a22cf)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.abort() (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693)
    
  • [`4cd9f39066`](https://github.com/nodejs/node/commit/4cd9f39066)] - **lib**: set abort-controller toStringTag (Benjamin Gruenbaum) [#&#8203;36115](https://github.com/nodejs/node/pull/36115)
    
  • [`b2f8e8dd28`](https://github.com/nodejs/node/commit/b2f8e8dd28)] - **lib**: let abort_controller target be EventTarget (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869)
    
  • [`f30f9314c8`](https://github.com/nodejs/node/commit/f30f9314c8)] - **(SEMVER-MINOR)** **lib**: initial experimental AbortController implementation (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527)
    
  • [`5e77bcd3dc`](https://github.com/nodejs/node/commit/5e77bcd3dc)] - **(SEMVER-MINOR)** **lib**: add throws option to fs.f/l/statSync (Andrew Casey) [#&#8203;33716](https://github.com/nodejs/node/pull/33716)
    
  • [`e0df3bc751`](https://github.com/nodejs/node/commit/e0df3bc751)] - **meta**: notify slack when someone force pushes (Mary Marchini) [#&#8203;35131](https://github.com/nodejs/node/pull/35131)
    
  • [`079671d3c1`](https://github.com/nodejs/node/commit/079671d3c1)] - **module**: improve error message for invalid data URL (Antoine du Hamel) [#&#8203;37701](https://github.com/nodejs/node/pull/37701)
    
  • [`4cdd9b63b4`](https://github.com/nodejs/node/commit/4cdd9b63b4)] - **module**: make synthetic module evaluation steps return a Promise to support top level await (Daniel Clark) [#&#8203;37300](https://github.com/nodejs/node/pull/37300)
    
  • [`2413907a12`](https://github.com/nodejs/node/commit/2413907a12)] - **(SEMVER-MINOR)** **module**: add isPreloading indicator (James M Snell) [#&#8203;36263](https://github.com/nodejs/node/pull/36263)
    
  • [`fd08c37d98`](https://github.com/nodejs/node/commit/fd08c37d98)] - **(SEMVER-MINOR)** **net**: add support for resolving DNS CAA records (Danny Sonnenschein) [#&#8203;35466](https://github.com/nodejs/node/pull/35466)
    
  • [`8413759d84`](https://github.com/nodejs/node/commit/8413759d84)] - **node-api**: fix crash in finalization (Michael Dawson) [#&#8203;37876](https://github.com/nodejs/node/pull/37876)
    
  • [`6e018559db`](https://github.com/nodejs/node/commit/6e018559db)] - **node-api**: stop ref gc during environment teardown (Gabriel Schulhof) [#&#8203;37616](https://github.com/nodejs/node/pull/37616)
    
  • [`b5b1ad39dd`](https://github.com/nodejs/node/commit/b5b1ad39dd)] - **node-api**: force env shutdown deferring behavior (Gabriel Schulhof) [#&#8203;37303](https://github.com/nodejs/node/pull/37303)
    
  • [`36abc1802c`](https://github.com/nodejs/node/commit/36abc1802c)] - **(SEMVER-MINOR)** **node-api**: define version 8 (Gabriel Schulhof) [#&#8203;37652](https://github.com/nodejs/node/pull/37652)
    
  • [`991251fbb2`](https://github.com/nodejs/node/commit/991251fbb2)] - **os**: performance improvement in vector allocation (Yash Ladha) [#&#8203;36748](https://github.com/nodejs/node/pull/36748)
    
  • [`395b9a69a1`](https://github.com/nodejs/node/commit/395b9a69a1)] - **perf_hooks**: make nodeTiming a first-class object (Momtchil Momtchev) [#&#8203;35977](https://github.com/nodejs/node/pull/35977)
    
  • [`506f1d4044`](https://github.com/nodejs/node/commit/506f1d4044)] - **policy**: fix cascade getting scope (Bradley Meck) [#&#8203;37298](https://github.com/nodejs/node/pull/37298)
    
  • [`e9110d56d2`](https://github.com/nodejs/node/commit/e9110d56d2)] - **process**: do not lazily load AsyncResource (Michaël Zasso) [#&#8203;38041](https://github.com/nodejs/node/pull/38041)
    
  • [`43057595e2`](https://github.com/nodejs/node/commit/43057595e2)] - **process**: passing -1 to setuid/setgid should not abort (James M Snell) [#&#8203;36786](https://github.com/nodejs/node/pull/36786)
    
  • [`70cbe4a565`](https://github.com/nodejs/node/commit/70cbe4a565)] - **readline**: fix behaviour of Interface plugged to a non-terminal output (Antoine du Hamel) [#&#8203;36774](https://github.com/nodejs/node/pull/36774)
    
  • [`ffaa1149e1`](https://github.com/nodejs/node/commit/ffaa1149e1)] - **(SEMVER-MINOR)** **readline**: add getPrompt to get the current prompt (Mattias Runge-Broberg) [#&#8203;33675](https://github.com/nodejs/node/pull/33675)
    
  • [`8d4936da2c`](https://github.com/nodejs/node/commit/8d4936da2c)] - **repl**: fix error message printing (Anna Henningsen) [#&#8203;38209](https://github.com/nodejs/node/pull/38209)
    
  • [`1ac07b2aee`](https://github.com/nodejs/node/commit/1ac07b2aee)] - **repl**: disable blocking completions by default (Anna Henningsen) [#&#8203;36564](https://github.com/nodejs/node/pull/36564)
    
  • [`5ed770e1b7`](https://github.com/nodejs/node/commit/5ed770e1b7)] - **src**: cache some context in locals (Khaidi Chu) [#&#8203;37473](https://github.com/nodejs/node/pull/37473)
    
  • [`ec4be2d7e1`](https://github.com/nodejs/node/commit/ec4be2d7e1)] - **src**: fix finalization crash (James M Snell) [#&#8203;38250](https://github.com/nodejs/node/pull/38250)
    
  • [`854a2a9c8a`](https://github.com/nodejs/node/commit/854a2a9c8a)] - **src**: fix typo for initialization (Yash Ladha) [#&#8203;37974](https://github.com/nodejs/node/pull/37974)
    
  • [`b0f8f8d637`](https://github.com/nodejs/node/commit/b0f8f8d637)] - **src**: fix typo in node_mutex (Tobias Nießen) [#&#8203;38011](https://github.com/nodejs/node/pull/38011)
    
  • [`e4f614100f`](https://github.com/nodejs/node/commit/e4f614100f)] - **src**: document newer values for --unhandled-rejections flag (David Glasser) [#&#8203;37899](https://github.com/nodejs/node/pull/37899)
    
  • [`d0cb129cdb`](https://github.com/nodejs/node/commit/d0cb129cdb)] - **src**: fix typo in src code guide (Tobias Nießen) [#&#8203;37956](https://github.com/nodejs/node/pull/37956)
    
  • [`6aa1ed20fa`](https://github.com/nodejs/node/commit/6aa1ed20fa)] - **src**: report idle time correctly (Stephen Belanger) [#&#8203;37868](https://github.com/nodejs/node/pull/37868)
    
  • [`eb0faa12df`](https://github.com/nodejs/node/commit/eb0faa12df)] - **src**: add .note.GNU-stack section (James Addison) [#&#8203;37688](https://github.com/nodejs/node/pull/37688)
    
  • [`ec5d7b1ec0`](https://github.com/nodejs/node/commit/ec5d7b1ec0)] - **src**: fix variable name of OnCloseReceived callback (Tobias Nießen) [#&#8203;37521](https://github.com/nodejs/node/pull/37521)
    
  • [`fc0d6e4008`](https://github.com/nodejs/node/commit/fc0d6e4008)] - **src**: add error formatting support (Gus Caplan) [#&#8203;37598](https://github.com/nodejs/node/pull/37598)
    
  • [`512ae7e125`](https://github.com/nodejs/node/commit/512ae7e125)] - **src**: adjust THP sysfs config token retrieval and file closure (James Addison) [#&#8203;37187](https://github.com/nodejs/node/pull/37187)
    
  • [`bf16d288e2`](https://github.com/nodejs/node/commit/bf16d288e2)] - **src**: fix return type of method in string_search.h (Darshan Sen) [#&#8203;37167](https://github.com/nodejs/node/pull/37167)
    
  • [`f476c6dc0c`](https://github.com/nodejs/node/commit/f476c6dc0c)] - **src**: refactor v8 binding (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112)
    
  • [`33ebf5d9ef`](https://github.com/nodejs/node/commit/33ebf5d9ef)] - **src**: rename binding_data_name to type_name in BindingData (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112)
    
  • [`88d9676e74`](https://github.com/nodejs/node/commit/88d9676e74)] - **src**: use make_shared for safe allocation (Yash Ladha) [#&#8203;37139](https://github.com/nodejs/node/pull/37139)
    
  • [`ec7e5bc786`](https://github.com/nodejs/node/commit/ec7e5bc786)] - **src**: fix warning in string_search.h (Darshan Sen) [#&#8203;37146](https://github.com/nodejs/node/pull/37146)
    
  • [`00309eea27`](https://github.com/nodejs/node/commit/00309eea27)] - **src**: read exactly two tokens from Linux THP sysfs config (James Addison) [#&#8203;37065](https://github.com/nodejs/node/pull/37065)
    
  • [`1ecdb66299`](https://github.com/nodejs/node/commit/1ecdb66299)] - **src**: expose BaseObject::kInternalFieldCount in post-mortem metadata (Joyee Cheung) [#&#8203;37111](https://github.com/nodejs/node/pull/37111)
    
  • [`93517dce78`](https://github.com/nodejs/node/commit/93517dce78)] - **src**: replace push_back with emplace_back in debug_utils (raisinten) [#&#8203;36897](https://github.com/nodejs/node/pull/36897)
    
  • [`dcba374604`](https://github.com/nodejs/node/commit/dcba374604)] - **src**: fix leading backslash bug in URL (raisinten) [#&#8203;36613](https://github.com/nodejs/node/pull/36613)
    
  • [`c308b06483`](https://github.com/nodejs/node/commit/c308b06483)] - **src**: remove unnecessary ToLocalChecked node_errors (Daniel Bevenius) [#&#8203;36547](https://github.com/nodejs/node/pull/36547)
    
  • [`e8f8c70911`](https://github.com/nodejs/node/commit/e8f8c70911)] - **src**: remove unnecessary ToLocalChecked call (Daniel Bevenius) [#&#8203;36523](https://github.com/nodejs/node/pull/36523)
    
  • [`a356f32e66`](https://github.com/nodejs/node/commit/a356f32e66)] - **src**: remove empty name check in node_env_var.cc (raisinten) [#&#8203;36133](https://github.com/nodejs/node/pull/36133)
    
  • [`308cb93304`](https://github.com/nodejs/node/commit/308cb93304)] - **src**: remove duplicate V macros in node_v8.cc (Daniel Bevenius) [#&#8203;36454](https://github.com/nodejs/node/pull/36454)
    
  • [`6df1132c85`](https://github.com/nodejs/node/commit/6df1132c85)] - **src**: guard against env != null in node_errors.cc (Anna Henningsen) [#&#8203;36414](https://github.com/nodejs/node/pull/36414)
    
  • [`3701e5d14f`](https://github.com/nodejs/node/commit/3701e5d14f)] - **src**: add typedef for CleanupHookCallback callback (Daniel Bevenius) [#&#8203;36442](https://github.com/nodejs/node/pull/36442)
    
  • [`bd90752a7e`](https://github.com/nodejs/node/commit/bd90752a7e)] - **src**: fix indentation in memory_tracker-inl.h (Daniel Bevenius) [#&#8203;36425](https://github.com/nodejs/node/pull/36425)
    
  • [`05bb3e14cf`](https://github.com/nodejs/node/commit/05bb3e14cf)] - **src**: remove identical V macro (Daniel Bevenius) [#&#8203;36427](https://github.com/nodejs/node/pull/36427)
    
  • [`4b386e3dbe`](https://github.com/nodejs/node/commit/4b386e3dbe)] - **src**: add missing context scopes (Anna Henningsen) [#&#8203;36413](https://github.com/nodejs/node/pull/36413)
    
  • [`685ed2c275`](https://github.com/nodejs/node/commit/685ed2c275)] - **src**: use ToLocal in DeserializeProperties (Daniel Bevenius) [#&#8203;36279](https://github.com/nodejs/node/pull/36279)
    
  • [`d8cb34158b`](https://github.com/nodejs/node/commit/d8cb34158b)] - **src**: update node.rc file description (devsnek) [#&#8203;36197](https://github.com/nodejs/node/pull/36197)
    
  • [`bacd432f34`](https://github.com/nodejs/node/commit/bacd432f34)] - **src**: move all base64.h inline methods into -inl.h header file (Anna Henningsen) [#&#8203;35432](https://github.com/nodejs/node/pull/35432)
    
  • [`b1d5160828`](https://github.com/nodejs/node/commit/b1d5160828)] - **src**: guard against nullptr deref in TimerWrapHandle::Stop (Anna Henningsen) [#&#8203;34460](https://github.com/nodejs/node/pull/34460)
    
  • [`cf2475ca09`](https://github.com/nodejs/node/commit/cf2475ca09)] - **src**: refactor TimerWrap lifetime management (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252)
    
  • [`b8bccc3132`](https://github.com/nodejs/node/commit/b8bccc3132)] - **src**: remove user_data from TimerWrap (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252)
    
  • [`8e1e3b563f`](https://github.com/nodejs/node/commit/8e1e3b563f)] - **src**: replace InspectorTimer with TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186)
    
  • [`a3a4d2c283`](https://github.com/nodejs/node/commit/a3a4d2c283)] - **src**: add TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186)
    
  • [`ae9bd89329`](https://github.com/nodejs/node/commit/ae9bd89329)] - **src**: perform bounds checking on error source line (Anna Henningsen) [#&#8203;33645](https://github.com/nodejs/node/pull/33645)
    
  • [`44868010f7`](https://github.com/nodejs/node/commit/44868010f7)] - **(SEMVER-MINOR)** **src**: add loop idle time in diagnostic report (Gireesh Punathil) [#&#8203;35940](https://github.com/nodejs/node/pull/35940)
    
  • [`4793f165dc`](https://github.com/nodejs/node/commit/4793f165dc)] - **stream**: fix pipe deadlock when starting with needDrain (Robert Nagy) [#&#8203;36563](https://github.com/nodejs/node/pull/36563)
    
  • [`617f2dc0cf`](https://github.com/nodejs/node/commit/617f2dc0cf)] - **(SEMVER-MINOR)** **stream**: writableNeedDrain (Robert Nagy) [#&#8203;35348](https://github.com/nodejs/node/pull/35348)
    
  • [`26e9c39cea`](https://github.com/nodejs/node/commit/26e9c39cea)] - **stream**: remove isPromise utility function (Antoine du Hamel) [#&#8203;35925](https://github.com/nodejs/node/pull/35925)
    
  • [`7858de4f63`](https://github.com/nodejs/node/commit/7858de4f63)] - **stream,util**: fix "the the" typo in comments (Luigi Pinca) [#&#8203;37674](https://github.com/nodejs/node/pull/37674)
    
  • [`93c917c1ce`](https://github.com/nodejs/node/commit/93c917c1ce)] - **test**: move buffer-as-path symlink test to its own test file (Rich Trott) [#&#8203;34569](https://github.com/nodejs/node/pull/34569)
    
  • [`cd95bf3dd7`](https://github.com/nodejs/node/commit/cd95bf3dd7)] - **test**: change Fixes: to Refs: (Rich Trott) [#&#8203;34568](https://github.com/nodejs/node/pull/34568)
    
  • [`2e81ded71e`](https://github.com/nodejs/node/commit/2e81ded71e)] - **test**: fix flaky test-dns and test-dns-lookup (Rich Trott) [#&#8203;38282](https://github.com/nodejs/node/pull/38282)
    
  • [`ea1183c6ec`](https://github.com/nodejs/node/commit/ea1183c6ec)] - **test**: fixup failing test/internet/test-dns.js (James M Snell) [#&#8203;38241](https://github.com/nodejs/node/pull/38241)
    
  • [`ae44e5f5b5`](https://github.com/nodejs/node/commit/ae44e5f5b5)] - **test**: add tests for missing https agent options (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202)
    
  • [`796007ba07`](https://github.com/nodejs/node/commit/796007ba07)] - **test**: fix test-https-agent-additional-options.js (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202)
    
  • [`a4275eec79`](https://github.com/nodejs/node/commit/a4275eec79)] - **test**: fix typo in comment in binding.c (Tobias Nießen) [#&#8203;38220](https://github.com/nodejs/node/pull/38220)
    
  • [`95c7dabbb4`](https://github.com/nodejs/node/commit/95c7dabbb4)] - **test**: fix typo in gtest-all.cc (Ikko Ashimine) [#&#8203;38224](https://github.com/nodejs/node/pull/38224)
    
  • [`605f830672`](https://github.com/nodejs/node/commit/605f830672)] - **test**: add undefined fatalException exit code test (Nitzan Uziely) [#&#8203;38119](https://github.com/nodejs/node/pull/38119)
    
  • [`ce70ea8a85`](https://github.com/nodejs/node/commit/ce70ea8a85)] - **test**: skip fs.watch() test on IBMi (Rich Trott) [#&#8203;38192](https://github.com/nodejs/node/pull/38192)
    
  • [`058abbece1`](https://github.com/nodejs/node/commit/058abbece1)] - **test**: skip test-vm-memleak in ASAN (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`c7981daf09`](https://github.com/nodejs/node/commit/c7981daf09)] - **test**: skip test-hash-seed on armv6 and armv7 (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289)
    
  • [`552c945c7c`](https://github.com/nodejs/node/commit/552c945c7c)] - **test**: remove unneeded m flag on regular expressions (Rich Trott) [#&#8203;38124](https://github.com/nodejs/node/pull/38124)
    
  • [`e999da7004`](https://github.com/nodejs/node/commit/e999da7004)] - **test**: fix flaky test-zlib-unused-weak.js (Ouyang Yadong) [#&#8203;38149](https://github.com/nodejs/node/pull/38149)
    
  • [`aa0d8146e9`](https://github.com/nodejs/node/commit/aa0d8146e9)] - **test**: add regression test for serdes readDouble() (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121)
    
  • [`dd8c9ad65b`](https://github.com/nodejs/node/commit/dd8c9ad65b)] - **test**: skip test-crypto-dh-keys on armv6 and armv7 (Rich Trott) [#&#8203;38076](https://github.com/nodejs/node/pull/38076)
    
  • [`7d85617484`](https://github.com/nodejs/node/commit/7d85617484)] - **test**: fix skip message for test-macos-app-sandbox (Tobias Nießen) [#&#8203;38114](https://github.com/nodejs/node/pull/38114)
    
  • [`f1aae43349`](https://github.com/nodejs/node/commit/f1aae43349)] - **test**: correct test comment (Evan Lucas) [#&#8203;38095](https://github.com/nodejs/node/pull/38095)
    
  • [`d6ab9bf1ad`](https://github.com/nodejs/node/commit/d6ab9bf1ad)] - **test**: fix flaky test-net-timeout (Rich Trott) [#&#8203;38060](https://github.com/nodejs/node/pull/38060)
    
  • [`1cb3d89bf1`](https://github.com/nodejs/node/commit/1cb3d89bf1)] - **test**: fix flaky timeout-delayed-body and headers tests (Nitzan Uziely) [#&#8203;38045](https://github.com/nodejs/node/pull/38045)
    
  • [`8590720489`](https://github.com/nodejs/node/commit/8590720489)] - **test**: add extra space in test failure output (Qingyu Deng) [#&#8203;37957](https://github.com/nodejs/node/pull/37957)
    
  • [`d6346e1486`](https://github.com/nodejs/node/commit/d6346e1486)] - **test**: deflake test-fs-read-optional-params (Luigi Pinca) [#&#8203;37991](https://github.com/nodejs/node/pull/37991)
    
  • [`abec939c58`](https://github.com/nodejs/node/commit/abec939c58)] - **test**: improve clarity of ALS-enable-disable.js (Darkripper214) [#&#8203;38008](https://github.com/nodejs/node/pull/38008)
    
  • [`2e3305d1b3`](https://github.com/nodejs/node/commit/2e3305d1b3)] - **test**: add DataView test case for v8 serdes (Rich Trott) [#&#8203;37955](https://github.com/nodejs/node/pull/37955)
    
  • [`7b0e4e23f2`](https://github.com/nodejs/node/commit/7b0e4e23f2)] - **test**: fix typeof comparison (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924)
    
  • [`4c5eff91ef`](https://github.com/nodejs/node/commit/4c5eff91ef)] - **test**: increase wiggle room for memory in test-worker-resource-limits (Rich Trott) [#&#8203;37901](https://github.com/nodejs/node/pull/37901)
    
  • [`939f5541fa`](https://github.com/nodejs/node/commit/939f5541fa)] - **test**: fix deprecation warning in test-doctool-html (Antoine du Hamel) [#&#8203;37858](https://github.com/nodejs/node/pull/37858)
    
  • [`f5334881f2`](https://github.com/nodejs/node/commit/f5334881f2)] - **test**: fix ibmi skip message (Tobias Nießen) [#&#8203;37821](https://github.com/nodejs/node/pull/37821)
    
  • [`cd71199cdb`](https://github.com/nodejs/node/commit/cd71199cdb)] - **test**: fix flaky test-vm-timeout-escape-promise-module-2 (Rich Trott) [#&#8203;37842](https://github.com/nodejs/node/pull/37842)
    
  • [`b858e12fca`](https://github.com/nodejs/node/commit/b858e12fca)] - **test**: remove duplicated test for eventtarget (himself65) [#&#8203;37853](https://github.com/nodejs/node/pull/37853)
    
  • [`e57e532d28`](https://github.com/nodejs/node/commit/e57e532d28)] - **test**: relax Y2K38 check in test-fs-utimes-y2K38 (Richard Lau) [#&#8203;37825](https://github.com/nodejs/node/pull/37825)
    
  • [`08d32e18b7`](https://github.com/nodejs/node/commit/08d32e18b7)] - **test**: remove skip for fixed test-benchmark-fs (Rich Trott) [#&#8203;37803](https://github.com/nodejs/node/pull/37803)
    
  • [`3f86dc1d9b`](https://github.com/nodejs/node/commit/3f86dc1d9b)] - **test**: improve test-arm-math-illegal-instruction (marsonya) [#&#8203;37670](https://github.com/nodejs/node/pull/37670)
    
  • [`5c60087132`](https://github.com/nodejs/node/commit/5c60087132)] - **(SEMVER-MINOR)** **test**: app atob web platform tests (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529)
    
  • [`02916edbdd`](https://github.com/nodejs/node/commit/02916edbdd)] - **test**: add known_issues test for [#&#8203;13683](https://github.com/nodejs/node/issues/13683) (Rich Trott) [#&#8203;37744](https://github.com/nodejs/node/pull/37744)
    
  • [`62292031a8`](https://github.com/nodejs/node/commit/62292031a8)] - **test**: fix test-fs-utimes on non-Y2K38 file systems (Rich Trott) [#&#8203;37707](https://github.com/nodejs/node/pull/37707)
    
  • [`e29905441e`](https://github.com/nodejs/node/commit/e29905441e)] - **test**: remove unnecessary V8 flag (Antoine du Hamel) [#&#8203;37671](https://github.com/nodejs/node/pull/37671)
    
  • [`27d4fedca3`](https://github.com/nodejs/node/commit/27d4fedca3)] - **test**: improve error reporting in test-child-process-pipe-dataflow (Rich Trott) [#&#8203;37632](https://github.com/nodejs/node/pull/37632)
    
  • [`376fcc75c6`](https://github.com/nodejs/node/commit/376fcc75c6)] - **test**: remove FLAKY status for test-async-hooks-http-parser-destroy (Rich Trott) [#&#8203;37636](https://github.com/nodejs/node/pull/37636)
    
  • [`a91a200be0`](https://github.com/nodejs/node/commit/a91a200be0)] - **test**: remove FLAKY status for fixed test (Rich Trott) [#&#8203;37633](https://github.com/nodejs/node/pull/37633)
    
  • [`102d12f308`](https://github.com/nodejs/node/commit/102d12f308)] - **test**: clear flaky designation for test-stream-pipeline-http2 (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631)
    
  • [`ed30e52ee8`](https://github.com/nodejs/node/commit/ed30e52ee8)] - **test**: clear FLAKY designation for test-http2-pipe (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631)
    
  • [`df93cb47da`](https://github.com/nodejs/node/commit/df93cb47da)] - **test**: fix wasi/test-return-on-exit on 32-bit systems (Colin Ihrig) [#&#8203;37615](https://github.com/nodejs/node/pull/37615)
    
  • [`097f638fde`](https://github.com/nodejs/node/commit/097f638fde)] - **test**: remove FLAKY status for test-http2-multistream-destroy-on-read-tls (Rich Trott) [#&#8203;37533](https://github.com/nodejs/node/pull/37533)
    
  • [`0726192c94`](https://github.com/nodejs/node/commit/0726192c94)] - **test**: make status file names consistent (Rich Trott) [#&#8203;37532](https://github.com/nodejs/node/pull/37532)
    
  • [`bcc4f1773c`](https://github.com/nodejs/node/commit/bcc4f1773c)] - **test**: remove FLAKY for test-http2-compat-client-upload-reject (Rich Trott) [#&#8203;37462](https://github.com/nodejs/node/pull/37462)
    
  • [`d168cdea50`](https://github.com/nodejs/node/commit/d168cdea50)] - **test**: validate no debug info for http2 (Michael Dawson) [#&#8203;37447](https://github.com/nodejs/node/pull/37447)
    
  • [`2f2f83fc4c`](https://github.com/nodejs/node/commit/2f2f83fc4c)] - **test**: remove FLAKY designation for test-http2-client-upload-reject (Rich Trott) [#&#8203;37461](https://github.com/nodejs/node/pull/37461)
    
  • [`776ef11732`](https://github.com/nodejs/node/commit/776ef11732)] - **test**: clarify usage of tmpdir.refresh() (Darshan Sen) [#&#8203;37383](https://github.com/nodejs/node/pull/37383)
    
  • [`8386b88c7f`](https://github.com/nodejs/node/commit/8386b88c7f)] - **test**: fix test-doctool-html (Antoine du Hamel) [#&#8203;37397](https://github.com/nodejs/node/pull/37397)
    
  • [`03752c0412`](https://github.com/nodejs/node/commit/03752c0412)] - **test**: remove flaky designation for test-http2-large-file (Rich Trott) [#&#8203;37156](https://github.com/nodejs/node/pull/37156)
    
  • [`db44b92c58`](https://github.com/nodejs/node/commit/db44b92c58)] - **test**: increase inspect coverage (Emil Sivervik) [#&#8203;36755](https://github.com/nodejs/node/pull/36755)
    
  • [`21e7b021a0`](https://github.com/nodejs/node/commit/21e7b021a0)] - **test**: skip tests consistently in parallel.status (Rich Trott) [#&#8203;37035](https://github.com/nodejs/node/pull/37035)
    
  • [`8f580df5ac`](https://github.com/nodejs/node/commit/8f580df5ac)] - **test**: increase read file abort coverage (Moshe vilner) [#&#8203;36716](https://github.com/nodejs/node/pull/36716)
    
  • [`55a7b0c2e1`](https://github.com/nodejs/node/commit/55a7b0c2e1)] - **test**: increase coverage for assert/calltracker (ZiJian Liu) [#&#8203;36728](https://github.com/nodejs/node/pull/36728)
    
  • [`ec7ee61af0`](https://github.com/nodejs/node/commit/ec7ee61af0)] - **test**: improve assertion message for test-vm-memleak (Rich Trott) [#&#8203;37034](https://github.com/nodejs/node/pull/37034)
    
  • [`456fd758f3`](https://github.com/nodejs/node/commit/456fd758f3)] - **test**: process.nextTick for before exit (ttzztztz) [#&#8203;37012](https://github.com/nodejs/node/pull/37012)
    
  • [`d99f1755d3`](https://github.com/nodejs/node/commit/d99f1755d3)] - **test**: log error in test-fs-realpath-pipe (Joyee Cheung) [#&#8203;36996](https://github.com/nodejs/node/pull/36996)
    
  • [`0e1963c486`](https://github.com/nodejs/node/commit/0e1963c486)] - **test**: test mode passed as an options object in mkdir/mkdirSync (Darshan Sen) [#&#8203;37008](https://github.com/nodejs/node/pull/37008)
    
  • [`5408f51684`](https://github.com/nodejs/node/commit/5408f51684)] - **test**: mark flaky tests on IBM i (Richard Lau) [#&#8203;36986](https://github.com/nodejs/node/pull/36986)
    
  • [`e72b2b4639`](https://github.com/nodejs/node/commit/e72b2b4639)] - **test**: increase buffer list coverage (Emil Sivervik) [#&#8203;36688](https://github.com/nodejs/node/pull/36688)
    
  • [`90122d87c9`](https://github.com/nodejs/node/commit/90122d87c9)] - **test**: fix warning in test_environment.cc (raisinten) [#&#8203;36846](https://github.com/nodejs/node/pull/36846)
    
  • [`2cbd72e17d`](https://github.com/nodejs/node/commit/2cbd72e17d)] - **test**: skip internet for test-npm-install (Ruy Adorno) [#&#8203;36933](https://github.com/nodejs/node/pull/36933)
    
  • [`2896219613`](https://github.com/nodejs/node/commit/2896219613)] - **test**: add coverage for breakLength one-column array (Rich Trott) [#&#8203;36657](https://github.com/nodejs/node/pull/36657)
    
  • [`ff212f44b7`](https://github.com/nodejs/node/commit/ff212f44b7)] - **test**: increase coverage for diagnostics_channel (ZiJian Liu) [#&#8203;36602](https://github.com/nodejs/node/pull/36602)
    
  • [`35c388ab1f`](https://github.com/nodejs/node/commit/35c388ab1f)] - **test**: increase coverage for internal/error_serdes.js (ZiJian Liu) [#&#8203;36628](https://github.com/nodejs/node/pull/36628)
    
  • [`581a95f0ea`](https://github.com/nodejs/node/commit/581a95f0ea)] - **test**: improve coverage for util.inspect() with classes (Rich Trott) [#&#8203;36625](https://github.com/nodejs/node/pull/36625)
    
  • [`e82a2e8ad5`](https://github.com/nodejs/node/commit/e82a2e8ad5)] - **test**: increase runInAsyncScope() coverage (Rich Trott) [#&#8203;36624](https://github.com/nodejs/node/pull/36624)
    
  • [`064144db89`](https://github.com/nodejs/node/commit/064144db89)] - **test**: redirect stderr EnvironmentWithNoESMLoader (Daniel Bevenius) [#&#8203;36548](https://github.com/nodejs/node/pull/36548)
    
  • [`cf8d025207`](https://github.com/nodejs/node/commit/cf8d025207)] - **test**: increase abort logic coverage (Moshe vilner) [#&#8203;36586](https://github.com/nodejs/node/pull/36586)
    
  • [`eba2dc5330`](https://github.com/nodejs/node/commit/eba2dc5330)] - **test**: increase coverage for worker (ZiJian Liu) [#&#8203;36491](https://github.com/nodejs/node/pull/36491)
    
  • [`5ef609af3e`](https://github.com/nodejs/node/commit/5ef609af3e)] - **test**: specify global object for globals (Rich Trott) [#&#8203;36498](https://github.com/nodejs/node/pull/36498)
    
  • [`829213f624`](https://github.com/nodejs/node/commit/829213f624)] - **test**: increase coverage for fs/dir read (Zijian Liu) [#&#8203;36388](https://github.com/nodejs/node/pull/36388)
    
  • [`c0604c9958`](https://github.com/nodejs/node/commit/c0604c9958)] - **test**: remove test-http2-client-upload as flaky (Rich Trott) [#&#8203;36496](https://github.com/nodejs/node/pull/36496)
    
  • [`dabbd6d8ad`](https://github.com/nodejs/node/commit/dabbd6d8ad)] - **test**: make executable name more general (Shelley Vohr) [#&#8203;36489](https://github.com/nodejs/node/pull/36489)
    
  • [`44603b7535`](https://github.com/nodejs/node/commit/44603b7535)] - **test**: increased externalized string length (Shelley Vohr) [#&#8203;36451](https://github.com/nodejs/node/pull/36451)
    
  • [`2d0b6ca1c6`](https://github.com/nodejs/node/commit/2d0b6ca1c6)] - **test**: fix flaky test-repl (Rich Trott) [#&#8203;36415](https://github.com/nodejs/node/pull/36415)
    
  • [`fee0389c12`](https://github.com/nodejs/node/commit/fee0389c12)] - **test**: check null proto-of-proto in util.inspect() (Rich Trott) [#&#8203;36399](https://github.com/nodejs/node/pull/36399)
    
  • [`0e821ff337`](https://github.com/nodejs/node/commit/0e821ff337)] - **test**: fix child-process-pipe-dataflow (Santiago Gimeno) [#&#8203;36366](https://github.com/nodejs/node/pull/36366)
    
  • [`736b575b7e`](https://github.com/nodejs/node/commit/736b575b7e)] - **test**: fix comment misspellings of transferred (Rich Trott) [#&#8203;36360](https://github.com/nodejs/node/pull/36360)
    
  • [`5fc0f5eabb`](https://github.com/nodejs/node/commit/5fc0f5eabb)] - **test**: increase coverage for readline (Zijian Liu) [#&#8203;36389](https://github.com/nodejs/node/pull/36389)
    
  • [`f5e8f12c1e`](https://github.com/nodejs/node/commit/f5e8f12c1e)] - **test**: fix typo in comment (inokawa) [#&#8203;36312](https://github.com/nodejs/node/pull/36312)
    
  • [`72b3e5a6d9`](https://github.com/nodejs/node/commit/72b3e5a6d9)] - **test**: replace anonymous functions by arrows (Aleksandr Krutko) [#&#8203;36125](https://github.com/nodejs/node/pull/36125)
    
  • [`b11e3ea1e6`](https://github.com/nodejs/node/commit/b11e3ea1e6)] - **test**: fix flaky sequential/test-fs-watch (Rich Trott) [#&#8203;36249](https://github.com/nodejs/node/pull/36249)
    
  • [`cb530d2372`](https://github.com/nodejs/node/commit/cb530d2372)] - **test**: increase coverage for util.inspect() (Rich Trott) [#&#8203;36228](https://github.com/nodejs/node/pull/36228)
    
  • [`94a877b0a4`](https://github.com/nodejs/node/commit/94a877b0a4)] - **test**: improve test coverage SourceMap API (Juan José Arboleda) [#&#8203;36089](https://github.com/nodejs/node/pull/36089)
    
  • [`6c62e15c36`](https://github.com/nodejs/node/commit/6c62e15c36)] - **test**: move test-worker-eventlooputil to sequential (Rich Trott) [#&#8203;35996](https://github.com/nodejs/node/pull/35996)
    
  • [`16f6f1a0c2`](https://github.com/nodejs/node/commit/16f6f1a0c2)] - **test**: add missing test coverage for setLocalAddress() (Rich Trott) [#&#8203;36039](https://github.com/nodejs/node/pull/36039)
    
  • [`23835012e0`](https://github.com/nodejs/node/commit/23835012e0)] - **test**: fix races in test-performance-eventlooputil (Gerhard Stoebich) [#&#8203;36028](https://github.com/nodejs/node/pull/36028)
    
  • [`d63747de5a`](https://github.com/nodejs/node/commit/d63747de5a)] - **test**: fix error in test/internet/test-dns.js (Rich Trott) [#&#8203;35969](https://github.com/nodejs/node/pull/35969)
    
  • [`00b9d955e9`](https://github.com/nodejs/node/commit/00b9d955e9)] - **test**: run test-benchmark-napi on arm (Rich Trott) [#&#8203;34502](https://github.com/nodejs/node/pull/34502)
    
  • [`de654bf5b4`](https://github.com/nodejs/node/commit/de654bf5b4)] - **test**: fix unreliable test-fs-write-file.js (Rich Trott) [#&#8203;36102](https://github.com/nodejs/node/pull/36102)
    
  • [`397d9372c2`](https://github.com/nodejs/node/commit/397d9372c2)] - **(SEMVER-MINOR)** **test**: update dom/abort tests (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693)
    
  • [`dc63ca686e`](https://github.com/nodejs/node/commit/dc63ca686e)] - **test**: increase execFile abort coverage (Moshe vilner) [#&#8203;36429](https://github.com/nodejs/node/pull/36429)
    
  • [`88f42617dd`](https://github.com/nodejs/node/commit/88f42617dd)] - **test**: integrate abort_controller tests from wpt (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869)
    
  • [`cd1da67295`](https://github.com/nodejs/node/commit/cd1da67295)] - **test**: fix flaky test-http2-respond-file-error-pipe-offset (Rich Trott) [#&#8203;36305](https://github.com/nodejs/node/pull/36305)
    
  • [`db04ae6b02`](https://github.com/nodejs/node/commit/db04ae6b02)] - **test**: add SIGTRAP to test-signal-handler (Ash Cripps) [#&#8203;36368](https://github.com/nodejs/node/pull/36368)
    
  • [`48e3f592a0`](https://github.com/nodejs/node/commit/48e3f592a0)] - **test**: refactor coverage logic (Benjamin Coe) [#&#8203;35767](https://github.com/nodejs/node/pull/35767)
    
  • [`01ba1c9a9c`](https://github.com/nodejs/node/commit/01ba1c9a9c)] - **test**: correct test-worker-eventlooputil (Gerhard Stoebich) [#&#8203;35891](https://github.com/nodejs/node/pull/35891)
    
  • [`89046d7840`](https://github.com/nodejs/node/commit/89046d7840)] - **test**: add cpu-profiler-crash test (Santiago Gimeno) [#&#8203;37293](https://github.com/nodejs/node/pull/37293)
    
  • [`6961be5ed1`](https://github.com/nodejs/node/commit/6961be5ed1)] - **test**: add arm64 arch to test-worker-prof status (Daniel Bevenius) [#&#8203;37225](https://github.com/nodejs/node/pull/37225)
    
  • [`98f08c06e4`](https://github.com/nodejs/node/commit/98f08c06e4)] - **test,benchmark**: stop requiring URL and URLSearchParams (raisinten) [#&#8203;36927](https://github.com/nodejs/node/pull/36927)
    
  • [`51ef745975`](https://github.com/nodejs/node/commit/51ef745975)] - **test,child_process**: add check for `subProcess.pid` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014)
    
  • [`8476537aa4`](https://github.com/nodejs/node/commit/8476537aa4)] - **test,http**: check that http server is robust from handler abuse (Rich Trott) [#&#8203;37958](https://github.com/nodejs/node/pull/37958)
    
  • [`e4d10426c4`](https://github.com/nodejs/node/commit/e4d10426c4)] - **timers**: fix arbitrary object clearImmediate errors (Nitzan Uziely) [#&#8203;37824](https://github.com/nodejs/node/pull/37824)
    
  • [`1b74a08eba`](https://github.com/nodejs/node/commit/1b74a08eba)] - **timers**: refactor to use validateAbortSignal (ZiJian Liu) [#&#8203;36604](https://github.com/nodejs/node/pull/36604)
    
  • [`4b04bb87f6`](https://github.com/nodejs/node/commit/4b04bb87f6)] - **timers**: use AbortController with correct name/message (Anna Henningsen) [#&#8203;34763](https://github.com/nodejs/node/pull/34763)
    
  • [`9660a78278`](https://github.com/nodejs/node/commit/9660a78278)] - **(SEMVER-MINOR)** **timers**: move promisified timers implementations (James M Snell) [#&#8203;33950](https://github.com/nodejs/node/pull/33950)
    
  • [`59a8425d04`](https://github.com/nodejs/node/commit/59a8425d04)] - **timers**: fix multipleResolves in promisified timeouts/immediates (Denys Otrishko) [#&#8203;33949](https://github.com/nodejs/node/pull/33949)
    
  • [`84b2863f00`](https://github.com/nodejs/node/commit/84b2863f00)] - **(SEMVER-MINOR)** **timers**: allow promisified timeouts/immediates to be canceled (James M Snell) [#&#8203;33833](https://github.com/nodejs/node/pull/33833)
    
  • [`08ed2337ea`](https://github.com/nodejs/node/commit/08ed2337ea)] - **tls**: forward new SecureContext options (Alba Mendez) [#&#8203;36416](https://github.com/nodejs/node/pull/36416)
    
  • [`2c49953fc9`](https://github.com/nodejs/node/commit/2c49953fc9)] - **tools**: update glob-parent to 5.1.2 (Rich Trott) [#&#8203;37646](https://github.com/nodejs/node/pull/37646)
    
  • [`b76aa10aa8`](https://github.com/nodejs/node/commit/b76aa10aa8)] - **tools**: update remark-preset-lint-node to 2.1.1 (Rich Trott) [#&#8203;37604](https://github.com/nodejs/node/pull/37604)
    
  • [`5afaeafabe`](https://github.com/nodejs/node/commit/5afaeafabe)] - **tools**: bump remark-present-lint-node from 2.0.0 to 2.0.1 (Rich Trott) [#&#8203;37270](https://github.com/nodejs/node/pull/37270)
    
  • [`abd45d3355`](https://github.com/nodejs/node/commit/abd45d3355)] - **tools**: update all lint-md rollup dependencies (Michaël Zasso) [#&#8203;36843](https://github.com/nodejs/node/pull/36843)
    
  • [`c8f77f2e1d`](https://github.com/nodejs/node/commit/c8f77f2e1d)] - **tools**: update ini in tools/node-lint-md-cli-rollup (Myles Borins) [#&#8203;36474](https://github.com/nodejs/node/pull/36474)
    
  • [`ac70a59056`](https://github.com/nodejs/node/commit/ac70a59056)] - **tools**: bump remark-lint-preset-node to 2.0.0 (Rich Trott) [#&#8203;35905](https://github.com/nodejs/node/pull/35905)
    
  • [`cbb0a458b5`](https://github.com/nodejs/node/commit/cbb0a458b5)] - **tools**: bump remark-lint-preset-node to 1.17.1 (Rich Trott) [#&#8203;35668](https://github.com/nodejs/node/pull/35668)
    
  • [`ed7c0d7c1b`](https://github.com/nodejs/node/commit/ed7c0d7c1b)] - **tools**: skip macOS GitHub Actions test on doc-only changes (Rich Trott) [#&#8203;38296](https://github.com/nodejs/node/pull/38296)
    
  • [`4254315ebe`](https://github.com/nodejs/node/commit/4254315ebe)] - **tools**: improve valid-typeof lint rule (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924)
    
  • [`f055faf647`](https://github.com/nodejs/node/commit/f055faf647)] - **tools**: improve macos-firewall.sh output (Rich Trott) [#&#8203;37846](https://github.com/nodejs/node/pull/37846)
    
  • [`2551bb1a61`](https://github.com/nodejs/node/commit/2551bb1a61)] - **tools**: make genv8constants.py Python3-compatible (Michaël Zasso) [#&#8203;37835](https://github.com/nodejs/node/pull/37835)
    
  • [`e6a79802d3`](https://github.com/nodejs/node/commit/e6a79802d3)] - **tools**: update gitignore for CMake (Jiawen Geng) [#&#8203;37793](https://github.com/nodejs/node/pull/37793)
    
  • [`e4975d9057`](https://github.com/nodejs/node/commit/e4975d9057)] - **tools**: fix object name in prefer-assert-methods.js (Tobias Nießen) [#&#8203;37544](https://github.com/nodejs/node/pull/37544)
    
  • [`77eb45aad4`](https://github.com/nodejs/node/commit/77eb45aad4)] - **tools**: fix compiler warning in inspector_protocol (Darshan Sen) [#&#8203;37573](https://github.com/nodejs/node/pull/37573)
    
  • [`af8b3852a8`](https://github.com/nodejs/node/commit/af8b3852a8)] - **tools**: fix lint-pr-url message (Antoine du Hamel) [#&#8203;37304](https://github.com/nodejs/node/pull/37304)
    
  • [`2ba6db3c3e`](https://github.com/nodejs/node/commit/2ba6db3c3e)] - **tools**: avoid pending deprecation in doc generator (Michaël Zasso) [#&#8203;37267](https://github.com/nodejs/node/pull/37267)
    
  • [`981659c7b9`](https://github.com/nodejs/node/commit/981659c7b9)] - **tools**: add GitHub Action linter for pr-url (Antoine du Hamel) [#&#8203;37221](https://github.com/nodejs/node/pull/37221)
    
  • [`2e5994dcd8`](https://github.com/nodejs/node/commit/2e5994dcd8)] - **tools**: remove commented code from stability.js (Colin Ihrig) [#&#8203;37092](https://github.com/nodejs/node/pull/37092)
    
  • [`ef1aab1239`](https://github.com/nodejs/node/commit/ef1aab1239)] - **tools**: add support for top-level await syntax in linter (Antoine du Hamel) [#&#8203;36911](https://github.com/nodejs/node/pull/36911)
    
  • [`aef769745b`](https://github.com/nodejs/node/commit/aef769745b)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36844](https://github.com/nodejs/node/pull/36844)
    
  • [`dd10afc45a`](https://github.com/nodejs/node/commit/dd10afc45a)] - **tools**: revise install.py for minor improvements (Rich Trott) [#&#8203;36626](https://github.com/nodejs/node/pull/36626)
    
  • [`d85ea61c7e`](https://github.com/nodejs/node/commit/d85ea61c7e)] - **tools**: correct usage message for genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606)
    
  • [`9990ec7423`](https://github.com/nodejs/node/commit/9990ec7423)] - **tools**: call close() explicitly in genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606)
    
  • [`26d5965c77`](https://github.com/nodejs/node/commit/26d5965c77)] - **tools**: use `is None` consistently in Python (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606)
    
  • [`bb07a767c0`](https://github.com/nodejs/node/commit/bb07a767c0)] - **tools**: revise line in configure.py for clarity (Rich Trott) [#&#8203;36551](https://github.com/nodejs/node/pull/36551)
    
  • [`5ac21bceba`](https://github.com/nodejs/node/commit/5ac21bceba)] - **tools**: fix make-v8.sh (Richard Lau) [#&#8203;36594](https://github.com/nodejs/node/pull/36594)
    
  • [`3cac041b97`](https://github.com/nodejs/node/commit/3cac041b97)] - **tools**: fix release script sign function (Antoine du Hamel) [#&#8203;36556](https://github.com/nodejs/node/pull/36556)
    
  • [`b398e4044c`](https://github.com/nodejs/node/commit/b398e4044c)] - **tools**: fix update-eslint.sh (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579)
    
  • [`471da7dc88`](https://github.com/nodejs/node/commit/471da7dc88)] - **tools**: fix release script (Antoine du Hamel) [#&#8203;36540](https://github.com/nodejs/node/pull/36540)
    
  • [`1f3c129f05`](https://github.com/nodejs/node/commit/1f3c129f05)] - **tools**: remove unused variable in configure.py (Rich Trott) [#&#8203;36525](https://github.com/nodejs/node/pull/36525)
    
  • [`9b13ddc6a6`](https://github.com/nodejs/node/commit/9b13ddc6a6)] - **tools**: lint shell scripts (Antoine du Hamel) [#&#8203;36099](https://github.com/nodejs/node/pull/36099)
    
  • [`7ac8ab8e26`](https://github.com/nodejs/node/commit/7ac8ab8e26)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36407](https://github.com/nodejs/node/pull/36407)
    
  • [`e8b2c776f7`](https://github.com/nodejs/node/commit/e8b2c776f7)] - **tools**: upgrade to [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) 7.12.1 (Antoine du Hamel) [#&#8203;36321](https://github.com/nodejs/node/pull/36321)
    
  • [`a0339101ba`](https://github.com/nodejs/node/commit/a0339101ba)] - **tools**: remove bashisms from macOS release scripts (Antoine du Hamel) [#&#8203;36121](https://github.com/nodejs/node/pull/36121)
    
  • [`9434bb3cfd`](https://github.com/nodejs/node/commit/9434bb3cfd)] - **tools**: remove bashisms from release script (Antoine du Hamel) [#&#8203;36123](https://github.com/nodejs/node/pull/36123)
    
  • [`2183a2be51`](https://github.com/nodejs/node/commit/2183a2be51)] - **tools**: update stability index linking logic (Rich Trott) [#&#8203;36280](https://github.com/nodejs/node/pull/36280)
    
  • [`2677fe9dcb`](https://github.com/nodejs/node/commit/2677fe9dcb)] - **tools**: update highlight.js to 10.1.2 (Myles Borins) [#&#8203;36309](https://github.com/nodejs/node/pull/36309)
    
  • [`17f942ffc0`](https://github.com/nodejs/node/commit/17f942ffc0)] - **tools**: fix undeclared identifier FALSE (Antoine du Hamel) [#&#8203;36276](https://github.com/nodejs/node/pull/36276)
    
  • [`4bb5c10915`](https://github.com/nodejs/node/commit/4bb5c10915)] - **tools**: cleanup old ICU version-specific fixes (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980)
    
  • [`77f32ee8f7`](https://github.com/nodejs/node/commit/77f32ee8f7)] - **tools**: fix md5 hash for ICU 68.1 src (Richard Lau) [#&#8203;36777](https://github.com/nodejs/node/pull/36777)
    
  • [`5d29781491`](https://github.com/nodejs/node/commit/5d29781491)] - **tools**: add msvc /P output to .gitignore (Jiawen Geng) [#&#8203;35735](https://github.com/nodejs/node/pull/35735)
    
  • [`571afd3c30`](https://github.com/nodejs/node/commit/571afd3c30)] - **tools,doc**: add "legacy" badge in the TOC (Antoine du Hamel) [#&#8203;37949](https://github.com/nodejs/node/pull/37949)
    
  • [`15d66fbc0c`](https://github.com/nodejs/node/commit/15d66fbc0c)] - **tools,doc**: list the stability status of each API (Zijian Liu) [#&#8203;36223](https://github.com/nodejs/node/pull/36223)
    
  • [`d89d55ab36`](https://github.com/nodejs/node/commit/d89d55ab36)] - **tty**: validate file descriptor to avoid int32 overflow (Antoine du Hamel) [#&#8203;37809](https://github.com/nodejs/node/pull/37809)
    
  • [`face4b86dd`](https://github.com/nodejs/node/commit/face4b86dd)] - **typings**: add JSDoc to os module functions (David Brownman) [#&#8203;38197](https://github.com/nodejs/node/pull/38197)
    
  • [`599434a61d`](https://github.com/nodejs/node/commit/599434a61d)] - **typings**: add JSDoc Types to lib/querystring (Simon Knott) [#&#8203;38185](https://github.com/nodejs/node/pull/38185)
    
  • [`60c7591af2`](https://github.com/nodejs/node/commit/60c7591af2)] - **typings**: add JSDoc typings for http (Voltrex) [#&#8203;38191](https://github.com/nodejs/node/pull/38191)
    
  • [`530e69e145`](https://github.com/nodejs/node/commit/530e69e145)] - **typings**: add JSDoc typings for assert (Voltrex) [#&#8203;38188](https://github.com/nodejs/node/pull/38188)
    
  • [`e2c2f2b7a5`](https://github.com/nodejs/node/commit/e2c2f2b7a5)] - **typings**: add JSDoc types to lib/path (Simon Knott) [#&#8203;38186](https://github.com/nodejs/node/pull/38186)
    
  • [`d13fc6ed68`](https://github.com/nodejs/node/commit/d13fc6ed68)] - **url**: align url format behavior with browsers (ZiJian Liu) [#&#8203;36903](https://github.com/nodejs/node/pull/36903)
    
  • [`2aff77f358`](https://github.com/nodejs/node/commit/2aff77f358)] - **url**: fix url.format with ipv6 hostname (ZiJian Liu) [#&#8203;36665](https://github.com/nodejs/node/pull/36665)
    
  • [`08a6d9effd`](https://github.com/nodejs/node/commit/08a6d9effd)] - **(SEMVER-MINOR)** **util**: add getSystemErrorMap() impl (eladkeyshawn) [#&#8203;38101](https://github.com/nodejs/node/pull/38101)
    
  • [`e6c64bf0c7`](https://github.com/nodejs/node/commit/e6c64bf0c7)] - **util**: remove unreachable inspect code (Rich Trott) [#&#8203;37941](https://github.com/nodejs/node/pull/37941)
    
  • [`b5c5bd1f51`](https://github.com/nodejs/node/commit/b5c5bd1f51)] - **util**: inspect \__proto\_\_ key as written in object literal (Anna Henningsen) [#&#8203;37713](https://github.com/nodejs/node/pull/37713)
    
  • [`2bfe185c3f`](https://github.com/nodejs/node/commit/2bfe185c3f)] - **util**: use assert for unreachable code (Rich Trott) [#&#8203;37249](https://github.com/nodejs/node/pull/37249)
    
  • [`ba4788dd9f`](https://github.com/nodejs/node/commit/ba4788dd9f)] - **(SEMVER-MINOR)** **v8**: fix native `serdes` constructors (ExE Boss) [#&#8203;36549](https://github.com/nodejs/node/pull/36549)
    
  • [`16606d05b7`](https://github.com/nodejs/node/commit/16606d05b7)] - **vm**: add `SafeForTerminationScope`s for SIGINT interruptions (Anna Henningsen) [#&#8203;36344](https://github.com/nodejs/node/pull/36344)
    
  • [`b6f4d790d3`](https://github.com/nodejs/node/commit/b6f4d790d3)] - **worker**: fix exit code for error thrown in handler (Nitzan Uziely) [#&#8203;38012](https://github.com/nodejs/node/pull/38012)
    
  • [`9460f2cd83`](https://github.com/nodejs/node/commit/9460f2cd83)] - **(SEMVER-MINOR)** **worker**: add eventLoopUtilization() (Trevor Norris) [#&#8203;35664](https://github.com/nodejs/node/pull/35664)
    
  • [`78ad8b4c44`](https://github.com/nodejs/node/commit/78ad8b4c44)] - **workers**: fix spawning from preload scripts (James M Snell) [#&#8203;37481](https://github.com/nodejs/node/pull/37481)
    
    

v14.16.1

Compare Source

This is a security release.

Notable Changes

Vulnerabilities fixed:

  • CVE-2021-3450: OpenSSL - CA certificate check bypass with X509_V_FLAG_X509_STRICT (High)
  • CVE-2021-3449: OpenSSL - NULL pointer deref in signature_algorithms processing (High)
  • CVE-2020-7774: npm upgrade - Update y18n to fix Prototype-Pollution (High)
Commits
  • [`467be7a950`](https://github.com/nodejs/node/commit/467be7a950)] - **deps**: upgrade npm to 6.14.12 (Ruy Adorno) [#&#8203;37918](https://github.com/nodejs/node/pull/37918)
    
  • [`6bc8f58182`](https://github.com/nodejs/node/commit/6bc8f58182)] - **deps**: update archs files for OpenSSL-1.1.1k (Tobias Nießen) [#&#8203;37938](https://github.com/nodejs/node/pull/37938)
    
  • [`403a014ef6`](https://github.com/nodejs/node/commit/403a014ef6)] - **deps**: upgrade openssl sources to 1.1.1k (Tobias Nießen) [#&#8203;37938](https://github.com/nodejs/node/pull/37938)
    
    

v14.16.0

Compare Source

This is a security release.

Notable changes

Vulnerabilities fixed:

  • CVE-2021-22883: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion
    • Affected Node.js versions are vulnerable to denial of service attacks when too many connection attempts with an 'unknownProtocol' are established. This leads to a leak of file descriptors. If a file descriptor limit is configured on the system, then the server is unable to accept new connections and prevent the process also from opening, e.g. a file. If no file descriptor limit is configured, then this lead to an excessive memory usage and cause the system to run out of memory.
  • CVE-2021-22884: DNS rebinding in --inspect
    • Affected Node.js versions are vulnerable to denial of service attacks when the whitelist includes “localhost6”. When “localhost6” is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the “localhost6” domain. As long as the attacker uses the “localhost6” domain, they can still apply the attack described in CVE-2018-7160.
  • CVE-2021-23840: OpenSSL - Integer overflow in CipherUpdate
Commits
  • [`313d26800c`](https://github.com/nodejs/node/commit/313d26800c)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412)
    
  • [`6098012b48`](https://github.com/nodejs/node/commit/6098012b48)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412)
    
  • [`afea10b097`](https://github.com/nodejs/node/commit/afea10b097)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#&#8203;246](https://github.com/nodejs-private/node-private/pull/246)
    
  • [`1ca3f5abcb`](https://github.com/nodejs/node/commit/1ca3f5abcb)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#&#8203;244](https://github.com/nodejs-private/node-private/pull/244)
    
    

v14.15.5

Compare Source

Notable Changes
  • deps:
    • upgrade npm to 6.14.11 (Ruy Adorno) #​37173
    • V8: backport dfcf1e8 (Michaël Zasso) #​37245
      • Note: Node.js is not believed to be vulnerable to CVE-2021-21148.
  • stream,zlib: do not use _stream_* anymore (Matteo Collina) #​36618
Commits
  • [`20b1e6c802`](https://github.com/nodejs/node/commit/20b1e6c802)] - **deps**: V8: backport [`dfcf1e8`](https://github.com/nodejs/node/commit/dfcf1e86fac0) (Michaël Zasso) [#&#8203;37245](https://github.com/nodejs/node/pull/37245)
    
  • [`408c7a65f3`](https://github.com/nodejs/node/commit/408c7a65f3)] - **deps**: upgrade npm to 6.14.11 (Ruy Adorno) [#&#8203;37173](https://github.com/nodejs/node/pull/37173)
    
  • [`017eed665b`](https://github.com/nodejs/node/commit/017eed665b)] - **http**: do not loop over prototype in Agent (Michaël Zasso) [#&#8203;36410](https://github.com/nodejs/node/pull/36410)
    
  • [`25a3204fe2`](https://github.com/nodejs/node/commit/25a3204fe2)] - **http**: don't cork .end when not needed (Dimitris Halatsis) [#&#8203;36633](https://github.com/nodejs/node/pull/36633)
    
  • [`2a1e4e9244`](https://github.com/nodejs/node/commit/2a1e4e9244)] - **stream**: accept iterable as a valid first argument (ZiJian Liu) [#&#8203;36479](https://github.com/nodejs/node/pull/36479)
    
  • [`9ff73fcdbe`](https://github.com/nodejs/node/commit/9ff73fcdbe)] - **stream,zlib**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36618](https://github.com/nodejs/node/pull/36618)
    
  • [`c03cddb46f`](https://github.com/nodejs/node/commit/c03cddb46f)] - **test**: http complete response after socket double end (Dimitris Halatsis) [#&#8203;36633](https://github.com/nodejs/node/pull/36633)
    
  • [`f206505e9d`](https://github.com/nodejs/node/commit/f206505e9d)] - **util**: fix instanceof checks with null prototypes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178)
    
  • [`2f7944b18b`](https://github.com/nodejs/node/commit/2f7944b18b)] - **util**: fix module prefixes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178)
    
    

v14.15.4

Compare Source

This is a security release.

Notable Changes

Vulnerabilities fixed:

  • CVE-2020-1971: OpenSSL - EDIPARTYNAME NULL pointer de-reference (High)

  • CVE-2020-8265: use-after-free in TLSWrap (High)

    • Affected Node.js versions are vulnerable to a use-after-free bug in
      its TLS implementation. When writing to a TLS enabled socket,
      node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly
      allocated WriteWrap object as first argument. If the DoWrite method
      does not return an error, this object is passed back to the caller as
      part of a StreamWriteResult structure. This may be exploited to
      corrupt memory leading to a Denial of Service or potentially other
      exploits.
  • CVE-2020-8287: HTTP Request Smuggling in nodejs (Low)

    • Affected versions of Node.js allow two copies of a header field in
      a http request. For example, two Transfer-Encoding header fields. In
      this case Node.js identifies the first header field and ignores the
      second. This can lead to HTTP Request Smuggling
      (https://cwe.mitre.org/data/definitions/444.html).
Commits
  • [`305c0f4977`](https://github.com/nodejs/node/commit/305c0f4977)] - **deps**: upgrade npm to
    
    

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 | `10.24.1-buster` -> `17.0.0-buster` | --- ### Release Notes <details> <summary>nodejs/node</summary> ### [`v17.0.0`](https://github.com/nodejs/node/releases/v17.0.0) [Compare Source](https://github.com/nodejs/node/compare/v16.11.1...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) ### [`v16.11.1`](https://github.com/nodejs/node/releases/v16.11.1) [Compare Source](https://github.com/nodejs/node/compare/v16.11.0...v16.11.1) This is a security release. ##### Notable changes - **CVE-2021-22959**: HTTP Request Smuggling due to spaced in headers (Medium) - The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at [CVE-2021-22959](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22959) after publication. - **CVE-2021-22960**: HTTP Request Smuggling when parsing the body (Medium) - The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at [CVE-2021-22960](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22960) after publication. ##### Commits - \[[`af488f8dc8`](https://github.com/nodejs/node/commit/af488f8dc8)] - **deps**: update llhttp to 6.0.4 (Matteo Collina) [nodejs-private/node-private#&#8203;284](https://github.com/nodejs-private/node-private/pull/284) - \[[`2d1eefad98`](https://github.com/nodejs/node/commit/2d1eefad98)] - **http**: add regression test for smuggling content length (Matteo Collina) [nodejs-private/node-private#&#8203;284](https://github.com/nodejs-private/node-private/pull/284) - \[[`45d419ab1c`](https://github.com/nodejs/node/commit/45d419ab1c)] - **http**: add regression test for chunked smuggling (Matteo Collina) [nodejs-private/node-private#&#8203;284](https://github.com/nodejs-private/node-private/pull/284) ### [`v16.11.0`](https://github.com/nodejs/node/releases/v16.11.0) [Compare Source](https://github.com/nodejs/node/compare/v16.10.0...v16.11.0) ##### Notable Changes - **crypto** - update root certificates (Richard Lau) [#&#8203;40280](https://github.com/nodejs/node/pull/40280) - **deps** - upgrade npm to 8.0.0 (npm team) [#&#8203;40369](https://github.com/nodejs/node/pull/40369) - update `nghttp2` to v1.45.1 (thunder-coding) [#&#8203;40206](https://github.com/nodejs/node/pull/40206) - update V8 to 9.4.146.19 (Michaël Zasso) [#&#8203;40285](https://github.com/nodejs/node/pull/40285) - **tools** - update certdata.txt (Richard Lau) [#&#8203;40280](https://github.com/nodejs/node/pull/40280) ##### Commits - \[[`34f3021ca3`](https://github.com/nodejs/node/commit/34f3021ca3)] - **benchmark**: add `util.toUSVString()`'s benchmark (Khaidi Chu) [#&#8203;40203](https://github.com/nodejs/node/pull/40203) - \[[`f83b9bcb6f`](https://github.com/nodejs/node/commit/f83b9bcb6f)] - **build**: support Python 3.10.0 (FrankQiu) [#&#8203;40296](https://github.com/nodejs/node/pull/40296) - \[[`3148f9b64e`](https://github.com/nodejs/node/commit/3148f9b64e)] - **build**: check for duplicates in new AUTHORS entries (Rich Trott) [#&#8203;40264](https://github.com/nodejs/node/pull/40264) - \[[`48c162d457`](https://github.com/nodejs/node/commit/48c162d457)] - **build**: set DESTCPU correctly for 'make binary' on Apple Silicon (Chris Heisterkamp) [#&#8203;40147](https://github.com/nodejs/node/pull/40147) - \[[`7fbfb66d41`](https://github.com/nodejs/node/commit/7fbfb66d41)] - **build**: limit update authors CI scope (Jiawen Geng) [#&#8203;40219](https://github.com/nodejs/node/pull/40219) - \[[`a1bee94502`](https://github.com/nodejs/node/commit/a1bee94502)] - **build**: pass a tuple of alternatives to str.endswith() (Christian Clauss) [#&#8203;40017](https://github.com/nodejs/node/pull/40017) - \[[`eaf9d08332`](https://github.com/nodejs/node/commit/eaf9d08332)] - **build**: add --no-user for pip commands in Makefile (Rich Trott) [#&#8203;40169](https://github.com/nodejs/node/pull/40169) - \[[`e22ca06ac4`](https://github.com/nodejs/node/commit/e22ca06ac4)] - **build**: fix "test-internet.yml" workflows (SURYAPRATAP SINGH SURYAVANSHI) [#&#8203;40177](https://github.com/nodejs/node/pull/40177) - \[[`4da73d09bf`](https://github.com/nodejs/node/commit/4da73d09bf)] - **(SEMVER-MINOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;40285](https://github.com/nodejs/node/pull/40285) - \[[`4b117fbc81`](https://github.com/nodejs/node/commit/4b117fbc81)] - **console**: use validators for consistency (Voltrex) [#&#8203;39812](https://github.com/nodejs/node/pull/39812) - \[[`6489423187`](https://github.com/nodejs/node/commit/6489423187)] - **console**: avoid unnecessary variables (Pancake) [#&#8203;40183](https://github.com/nodejs/node/pull/40183) - \[[`9af2592e69`](https://github.com/nodejs/node/commit/9af2592e69)] - **crypto**: update root certificates (Richard Lau) [#&#8203;40280](https://github.com/nodejs/node/pull/40280) - \[[`2fa5e5011f`](https://github.com/nodejs/node/commit/2fa5e5011f)] - **crypto**: handle initEDRaw pkey failure (Shelley Vohr) [#&#8203;40188](https://github.com/nodejs/node/pull/40188) - \[[`7968c79301`](https://github.com/nodejs/node/commit/7968c79301)] - **crypto**: don't call callback twice in case crypto.randomBytes fails (Guilherme Bernal) [#&#8203;40157](https://github.com/nodejs/node/pull/40157) - \[[`b89c7ae297`](https://github.com/nodejs/node/commit/b89c7ae297)] - **deps**: upgrade npm to 8.0.0 (npm team) [#&#8203;40369](https://github.com/nodejs/node/pull/40369) - \[[`947f3dc9af`](https://github.com/nodejs/node/commit/947f3dc9af)] - **deps**: V8: patch jinja2 for Python 3.10 compat (Michaël Zasso) [#&#8203;40296](https://github.com/nodejs/node/pull/40296) - \[[`685c7d43a5`](https://github.com/nodejs/node/commit/685c7d43a5)] - **(SEMVER-MINOR)** **deps**: update `nghttp2` to v1.45.1 (thunder-coding) [#&#8203;40206](https://github.com/nodejs/node/pull/40206) - \[[`e7046e0ff1`](https://github.com/nodejs/node/commit/e7046e0ff1)] - **deps**: restore minimum ICU version to 68 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470) - \[[`a3db2033d4`](https://github.com/nodejs/node/commit/a3db2033d4)] - **(SEMVER-MINOR)** **deps**: make V8 9.4 abi-compatible with 9.0 (Michaël Zasso) [#&#8203;40285](https://github.com/nodejs/node/pull/40285) - \[[`5cc24e6d76`](https://github.com/nodejs/node/commit/5cc24e6d76)] - **deps**: V8: cherry-pick [`9a60704`](https://github.com/nodejs/node/commit/9a607043cb31) (Jiawen Geng) [#&#8203;40046](https://github.com/nodejs/node/pull/40046) - \[[`8de5eb88d3`](https://github.com/nodejs/node/commit/8de5eb88d3)] - **deps**: V8: cherry-pick [`5681a65`](https://github.com/nodejs/node/commit/5681a6565828) (Michaël Zasso) [#&#8203;39945](https://github.com/nodejs/node/pull/39945) - \[[`150d816edb`](https://github.com/nodejs/node/commit/150d816edb)] - **deps**: V8: cherry-pick [`bdcda72`](https://github.com/nodejs/node/commit/bdcda72cd1d8) (Michaël Zasso) [#&#8203;39945](https://github.com/nodejs/node/pull/39945) - \[[`807b68b430`](https://github.com/nodejs/node/commit/807b68b430)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#&#8203;39829](https://github.com/nodejs/node/pull/39829) - \[[`be016948df`](https://github.com/nodejs/node/commit/be016948df)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`22dcd3e4dc`](https://github.com/nodejs/node/commit/22dcd3e4dc)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`1aea6a771b`](https://github.com/nodejs/node/commit/1aea6a771b)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;40060](https://github.com/nodejs/node/pull/40060) - \[[`e9812157f0`](https://github.com/nodejs/node/commit/e9812157f0)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`88ae710057`](https://github.com/nodejs/node/commit/88ae710057)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`e810f0766f`](https://github.com/nodejs/node/commit/e810f0766f)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`b8aabd5622`](https://github.com/nodejs/node/commit/b8aabd5622)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`309c4f05df`](https://github.com/nodejs/node/commit/309c4f05df)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.4.146.19 (Michaël Zasso) [#&#8203;40285](https://github.com/nodejs/node/pull/40285) - \[[`69eaaf6321`](https://github.com/nodejs/node/commit/69eaaf6321)] - **doc**: format general markdown files (Rich Trott) [#&#8203;40322](https://github.com/nodejs/node/pull/40322) - \[[`dc9c31985c`](https://github.com/nodejs/node/commit/dc9c31985c)] - **doc**: fix the inline code-block at the NodeDhKeyGenParams class (Justin) [#&#8203;40341](https://github.com/nodejs/node/pull/40341) - \[[`8d0546db39`](https://github.com/nodejs/node/commit/8d0546db39)] - **doc**: correct the codeblock for `hmacImportParams.hash` (Justin) [#&#8203;40340](https://github.com/nodejs/node/pull/40340) - \[[`1db2ffd008`](https://github.com/nodejs/node/commit/1db2ffd008)] - **doc**: fix typo in stream docs (Juan José Arboleda) [#&#8203;40337](https://github.com/nodejs/node/pull/40337) - \[[`abfcbcd14c`](https://github.com/nodejs/node/commit/abfcbcd14c)] - **doc**: update fast-track approval comment request (voltrexmaster) [#&#8203;40316](https://github.com/nodejs/node/pull/40316) - \[[`e2cd2f44f2`](https://github.com/nodejs/node/commit/e2cd2f44f2)] - **doc**: fix CVE-2021-22940 references (Michaël Zasso) [#&#8203;40308](https://github.com/nodejs/node/pull/40308) - \[[`88bdbf1e29`](https://github.com/nodejs/node/commit/88bdbf1e29)] - **doc**: format markdown files in test directory (Rich Trott) [#&#8203;40290](https://github.com/nodejs/node/pull/40290) - \[[`f71ac57a86`](https://github.com/nodejs/node/commit/f71ac57a86)] - **doc**: add triagers to the table of contents (FrankQiu) [#&#8203;39969](https://github.com/nodejs/node/pull/39969) - \[[`a5218b5313`](https://github.com/nodejs/node/commit/a5218b5313)] - **doc**: update Forrest Norvell's pronouns (Forrest L Norvell) [#&#8203;40292](https://github.com/nodejs/node/pull/40292) - \[[`d2e54e5d0c`](https://github.com/nodejs/node/commit/d2e54e5d0c)] - **doc**: reorder stream 'readable' paragraphs (Vincent Weevers) [#&#8203;40212](https://github.com/nodejs/node/pull/40212) - \[[`1d0a3e1a0c`](https://github.com/nodejs/node/commit/1d0a3e1a0c)] - **doc**: fix typo in fs (Brian White) [#&#8203;40257](https://github.com/nodejs/node/pull/40257) - \[[`66edb7bfe1`](https://github.com/nodejs/node/commit/66edb7bfe1)] - **doc**: fix typo in fs.md (Arslan Ali) [#&#8203;40254](https://github.com/nodejs/node/pull/40254) - \[[`614a7c21f8`](https://github.com/nodejs/node/commit/614a7c21f8)] - **doc**: fix typo in packages.md (Arslan Ali) [#&#8203;40230](https://github.com/nodejs/node/pull/40230) - \[[`9fa6dfbe76`](https://github.com/nodejs/node/commit/9fa6dfbe76)] - **doc**: fix example of crypto.generateKeySync (Gary Ho) [#&#8203;40225](https://github.com/nodejs/node/pull/40225) - \[[`9a2b94a142`](https://github.com/nodejs/node/commit/9a2b94a142)] - **doc**: update fs.watchFile doc (Clément Nardi) [#&#8203;40134](https://github.com/nodejs/node/pull/40134) - \[[`a68f91c884`](https://github.com/nodejs/node/commit/a68f91c884)] - **doc**: add version when diagnostics_channel APIs were added (Gerhard Stöbich) [#&#8203;40208](https://github.com/nodejs/node/pull/40208) - \[[`6bf67909ad`](https://github.com/nodejs/node/commit/6bf67909ad)] - **doc**: fix typo in 'maxHeaderSize' (Rebhi Alfa) [#&#8203;40164](https://github.com/nodejs/node/pull/40164) - \[[`73a127ba7b`](https://github.com/nodejs/node/commit/73a127ba7b)] - **doc**: fix buffer api example code's token error (m3m0ry) [#&#8203;40125](https://github.com/nodejs/node/pull/40125) - \[[`59db8293f4`](https://github.com/nodejs/node/commit/59db8293f4)] - **doc**: fix typo in `async_hooks.md` (xuchaobei) [#&#8203;40187](https://github.com/nodejs/node/pull/40187) - \[[`779dfd199b`](https://github.com/nodejs/node/commit/779dfd199b)] - **doc**: make version picker usable on mobile (Evan Lucas) [#&#8203;39958](https://github.com/nodejs/node/pull/39958) - \[[`7bd62f4809`](https://github.com/nodejs/node/commit/7bd62f4809)] - **doc**: fix typos in http.md (Luigi Pinca) [#&#8203;40161](https://github.com/nodejs/node/pull/40161) - \[[`94b415b980`](https://github.com/nodejs/node/commit/94b415b980)] - **doc**: add blank line between comments (Rich Trott) [#&#8203;40160](https://github.com/nodejs/node/pull/40160) - \[[`847b451d88`](https://github.com/nodejs/node/commit/847b451d88)] - **doc**: update markdown files in src for upcoming linting/formatting (Rich Trott) [#&#8203;40159](https://github.com/nodejs/node/pull/40159) - \[[`cea7395858`](https://github.com/nodejs/node/commit/cea7395858)] - **doc**: update benchmarks README.md for upcoming linting/formatting (Rich Trott) [#&#8203;40158](https://github.com/nodejs/node/pull/40158) - \[[`c231745837`](https://github.com/nodejs/node/commit/c231745837)] - **doc**: prepare markdown file for upcoming formatting/linting (Rich Trott) [#&#8203;40156](https://github.com/nodejs/node/pull/40156) - \[[`7e58cda6e0`](https://github.com/nodejs/node/commit/7e58cda6e0)] - **doc**: update tools .md files for upcoming lint/formatting (Rich Trott) [#&#8203;40155](https://github.com/nodejs/node/pull/40155) - \[[`02a87b096c`](https://github.com/nodejs/node/commit/02a87b096c)] - **doc**: update markdown formatting for \*.md files (Rich Trott) [#&#8203;40154](https://github.com/nodejs/node/pull/40154) - \[[`9b0e61a67f`](https://github.com/nodejs/node/commit/9b0e61a67f)] - **doc,src**: update crypto/README.md (Tobias Nießen) [#&#8203;40332](https://github.com/nodejs/node/pull/40332) - \[[`88e7bd073a`](https://github.com/nodejs/node/commit/88e7bd073a)] - **events**: allow dispatch many times without listener (MrBBot) [#&#8203;39772](https://github.com/nodejs/node/pull/39772) - \[[`c7f3294d02`](https://github.com/nodejs/node/commit/c7f3294d02)] - **(SEMVER-MINOR)** **fs**: add stream utilities to `FileHandle` (Antoine du Hamel) [#&#8203;40009](https://github.com/nodejs/node/pull/40009) - \[[`555af5b808`](https://github.com/nodejs/node/commit/555af5b808)] - **http**: remove 'data' and 'end' listener if client parser error (Matteo Collina) [#&#8203;40244](https://github.com/nodejs/node/pull/40244) - \[[`22725f5bdd`](https://github.com/nodejs/node/commit/22725f5bdd)] - **http**: use 0 as default for requests limit (Artur K) [#&#8203;40192](https://github.com/nodejs/node/pull/40192) - \[[`3d5eba8042`](https://github.com/nodejs/node/commit/3d5eba8042)] - **lib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;40271](https://github.com/nodejs/node/pull/40271) - \[[`547fc86371`](https://github.com/nodejs/node/commit/547fc86371)] - **lib**: use `validateArray` (Voltrex) [#&#8203;39774](https://github.com/nodejs/node/pull/39774) - \[[`a37527ce8f`](https://github.com/nodejs/node/commit/a37527ce8f)] - **meta**: add mailmap entry for ratracegrad (Rich Trott) [#&#8203;40291](https://github.com/nodejs/node/pull/40291) - \[[`a75a8f2ca0`](https://github.com/nodejs/node/commit/a75a8f2ca0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40289](https://github.com/nodejs/node/pull/40289) - \[[`66ab278bae`](https://github.com/nodejs/node/commit/66ab278bae)] - **meta**: add .mailmap entry for Jimbly (Rich Trott) [#&#8203;40267](https://github.com/nodejs/node/pull/40267) - \[[`e040f2cf0d`](https://github.com/nodejs/node/commit/e040f2cf0d)] - **meta**: add .mailmap entry for daguej (Rich Trott) [#&#8203;40223](https://github.com/nodejs/node/pull/40223) - \[[`d64740fbb3`](https://github.com/nodejs/node/commit/d64740fbb3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40217](https://github.com/nodejs/node/pull/40217) - \[[`9ee9e41f5c`](https://github.com/nodejs/node/commit/9ee9e41f5c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;40115](https://github.com/nodejs/node/pull/40115) - \[[`da6c82b425`](https://github.com/nodejs/node/commit/da6c82b425)] - **meta**: update gdams contact information (Rich Trott) [#&#8203;40233](https://github.com/nodejs/node/pull/40233) - \[[`a660017915`](https://github.com/nodejs/node/commit/a660017915)] - **meta**: add .mailmap entry for kunalspathak (Rich Trott) [#&#8203;40202](https://github.com/nodejs/node/pull/40202) - \[[`4d46bde22e`](https://github.com/nodejs/node/commit/4d46bde22e)] - **meta**: add mailmap entry for ralphtheninja (Rich Trott) [#&#8203;40153](https://github.com/nodejs/node/pull/40153) - \[[`b856886d00`](https://github.com/nodejs/node/commit/b856886d00)] - **meta**: update mailmap for LakshmiSwethaG (Rich Trott) [#&#8203;40172](https://github.com/nodejs/node/pull/40172) - \[[`972d921855`](https://github.com/nodejs/node/commit/972d921855)] - **module**: fix ERR_REQUIRE_ESM for parentPath null (Guy Bedford) [#&#8203;40145](https://github.com/nodejs/node/pull/40145) - \[[`344c03b2e6`](https://github.com/nodejs/node/commit/344c03b2e6)] - **repl**: skip EmptyStatements and return result with TLA (Mestery) [#&#8203;40194](https://github.com/nodejs/node/pull/40194) - \[[`b694b0ca52`](https://github.com/nodejs/node/commit/b694b0ca52)] - **src**: use `As()` instead of `Cast()` for conversions (Darshan Sen) [#&#8203;40287](https://github.com/nodejs/node/pull/40287) - \[[`383dbe940d`](https://github.com/nodejs/node/commit/383dbe940d)] - **src**: implement changes suggested by [@&#8203;addaleax](https://github.com/addaleax) (kokke) [#&#8203;40128](https://github.com/nodejs/node/pull/40128) - \[[`a6112dd1de`](https://github.com/nodejs/node/commit/a6112dd1de)] - **src**: fix time-of-use vs time-of-check "bugs" (kokke) [#&#8203;40128](https://github.com/nodejs/node/pull/40128) - \[[`bbf1ed7c78`](https://github.com/nodejs/node/commit/bbf1ed7c78)] - **src**: remove AllocatedBuffer from crypto_common.cc (Darshan Sen) [#&#8203;40213](https://github.com/nodejs/node/pull/40213) - \[[`528f9228fd`](https://github.com/nodejs/node/commit/528f9228fd)] - **src**: remove usage of AllocatedBuffer from udp_wrap.cc (Darshan Sen) [#&#8203;40151](https://github.com/nodejs/node/pull/40151) - \[[`d36127d862`](https://github.com/nodejs/node/commit/d36127d862)] - **src**: move `ToUSVString()` to node_util.cc (Khaidi Chu) [#&#8203;40204](https://github.com/nodejs/node/pull/40204) - \[[`bddf8c28d9`](https://github.com/nodejs/node/commit/bddf8c28d9)] - **src,crypto**: eliminate code duplication between StatelessDiffieHellman\* (Darshan Sen) [#&#8203;40084](https://github.com/nodejs/node/pull/40084) - \[[`6a8689f1f9`](https://github.com/nodejs/node/commit/6a8689f1f9)] - **test**: fix typo in test/common/index.js (Tobias Nießen) [#&#8203;40297](https://github.com/nodejs/node/pull/40297) - \[[`dc0c2744cf`](https://github.com/nodejs/node/commit/dc0c2744cf)] - **test**: suppress compiler warning in test_bigint (Daniel Bevenius) [#&#8203;40253](https://github.com/nodejs/node/pull/40253) - \[[`18820bfa58`](https://github.com/nodejs/node/commit/18820bfa58)] - **tools**: patch jinja2 for Python 3.10 compat (Michaël Zasso) [#&#8203;40296](https://github.com/nodejs/node/pull/40296) - \[[`8d7710e6c3`](https://github.com/nodejs/node/commit/8d7710e6c3)] - **tools**: update rollup entry in lint-md package.json (FrankQiu) [#&#8203;40281](https://github.com/nodejs/node/pull/40281) - \[[`7bb4dc2406`](https://github.com/nodejs/node/commit/7bb4dc2406)] - **tools**: update certdata.txt (Richard Lau) [#&#8203;40280](https://github.com/nodejs/node/pull/40280) - \[[`f31b0c9700`](https://github.com/nodejs/node/commit/f31b0c9700)] - **tools**: update remark-preset-lint-node to 3.2.0 (Rich Trott) [#&#8203;40278](https://github.com/nodejs/node/pull/40278) - \[[`9c4e7a5158`](https://github.com/nodejs/node/commit/9c4e7a5158)] - **tools**: fix lint-md autolinking (Rich Trott) [#&#8203;40181](https://github.com/nodejs/node/pull/40181) - \[[`26db6db87f`](https://github.com/nodejs/node/commit/26db6db87f)] - **tools**: implement markdown formatting (Rich Trott) [#&#8203;40181](https://github.com/nodejs/node/pull/40181) - \[[`67812e8c65`](https://github.com/nodejs/node/commit/67812e8c65)] - **tools**: re-implement lint-md without unified-args (Rich Trott) [#&#8203;40180](https://github.com/nodejs/node/pull/40180) - \[[`0232f94175`](https://github.com/nodejs/node/commit/0232f94175)] - **tools**: update remark-preset-lint-node to 3.1.0 (Rich Trott) [#&#8203;40166](https://github.com/nodejs/node/pull/40166) - \[[`80fdedd184`](https://github.com/nodejs/node/commit/80fdedd184)] - **tools**: fix find-inactive-collaborators for recent README change (Rich Trott) [#&#8203;40163](https://github.com/nodejs/node/pull/40163) - \[[`ebf17102d1`](https://github.com/nodejs/node/commit/ebf17102d1)] - **tools**: extend default yamllint config (Michaël Zasso) [#&#8203;40150](https://github.com/nodejs/node/pull/40150) - \[[`f7c82749a7`](https://github.com/nodejs/node/commit/f7c82749a7)] - **tools**: update V8 gypfiles for 9.4 (Michaël Zasso) [#&#8203;39945](https://github.com/nodejs/node/pull/39945) - \[[`dd39422b8b`](https://github.com/nodejs/node/commit/dd39422b8b)] - **typings**: define types for symbols binding (Michaël Zasso) [#&#8203;40143](https://github.com/nodejs/node/pull/40143) - \[[`ced8467e20`](https://github.com/nodejs/node/commit/ced8467e20)] - **typings**: define types for worker and messaging bindings (Michaël Zasso) [#&#8203;40143](https://github.com/nodejs/node/pull/40143) - \[[`66d3101677`](https://github.com/nodejs/node/commit/66d3101677)] - **(SEMVER-MINOR)** **util**: improve ansi escape code regex (Colin Ihrig) [#&#8203;40214](https://github.com/nodejs/node/pull/40214) - \[[`f4164fa4c3`](https://github.com/nodejs/node/commit/f4164fa4c3)] - **(SEMVER-MINOR)** **util**: expose stripVTControlCharacters() (Colin Ihrig) [#&#8203;40214](https://github.com/nodejs/node/pull/40214) ### [`v16.10.0`](https://github.com/nodejs/node/releases/v16.10.0) [Compare Source](https://github.com/nodejs/node/compare/v16.9.1...v16.10.0) ##### Notable Changes - \[[`fb226ff2ee`](https://github.com/nodejs/node/commit/fb226ff2ee)] - **(SEMVER-MINOR)** **crypto**: add rsa-pss keygen parameters (Filip Skokan) [#&#8203;39927](https://github.com/nodejs/node/pull/39927) - \[[`85206b7311`](https://github.com/nodejs/node/commit/85206b7311)] - **deps**: upgrade npm to 7.24.0 (npm team) [#&#8203;40167](https://github.com/nodejs/node/pull/40167) - \[[`98f56d179c`](https://github.com/nodejs/node/commit/98f56d179c)] - **deps**: update Acorn to v8.5.0 (Michaël Zasso) [#&#8203;40015](https://github.com/nodejs/node/pull/40015) - \[[`9655329772`](https://github.com/nodejs/node/commit/9655329772)] - **doc**: add Ayase-252 to collaborators (Qingyu Deng) [#&#8203;40078](https://github.com/nodejs/node/pull/40078) - \[[`59fff925be`](https://github.com/nodejs/node/commit/59fff925be)] - **(SEMVER-MINOR)** **fs**: make `open` and `close` stream override optional when unused (Antoine du Hamel) [#&#8203;40013](https://github.com/nodejs/node/pull/40013) - \[[`a63a4bce90`](https://github.com/nodejs/node/commit/a63a4bce90)] - **(SEMVER-MINOR)** **http**: limit requests per connection (Artur K) [#&#8203;40082](https://github.com/nodejs/node/pull/40082) - The maximum number of requests a socket can handle before closing keep alive connection can be set with `server.maxRequestsPerSocket`. - \[[`9a672961fa`](https://github.com/nodejs/node/commit/9a672961fa)] - **(SEMVER-MINOR)** **src**: add --no-global-search-paths cli option (Cheng Zhao) [#&#8203;39754](https://github.com/nodejs/node/pull/39754) - Adds the `--no-global-search-paths` command-line option to not search modules from global paths like `$HOME/.node_modules` and `$NODE_PATH`. - \[[`fe920b6cbf`](https://github.com/nodejs/node/commit/fe920b6cbf)] - **(SEMVER-MINOR)** **src**: make napi_create_reference accept symbol (JckXia) [#&#8203;39926](https://github.com/nodejs/node/pull/39926) - \[[`97f3072ceb`](https://github.com/nodejs/node/commit/97f3072ceb)] - **(SEMVER-MINOR)** **stream**: add signal support to pipeline generators (Robert Nagy) [#&#8203;39067](https://github.com/nodejs/node/pull/39067) ##### Commits - \[[`b7dc651884`](https://github.com/nodejs/node/commit/b7dc651884)] - **build**: run modified internet tests on GitHub Actions (Rich Trott) [#&#8203;40100](https://github.com/nodejs/node/pull/40100) - \[[`8d5787a043`](https://github.com/nodejs/node/commit/8d5787a043)] - **build**: add .mailmap/AUTHORS to paths-ignore for test-macos (Rich Trott) [#&#8203;40109](https://github.com/nodejs/node/pull/40109) - \[[`9793e7ff08`](https://github.com/nodejs/node/commit/9793e7ff08)] - **build**: add .mailmap/AUTHORS to path-ignore for test-asan (Rich Trott) [#&#8203;40109](https://github.com/nodejs/node/pull/40109) - \[[`886921de38`](https://github.com/nodejs/node/commit/886921de38)] - **build**: add paths-ignore for build-tarball workflow (Rich Trott) [#&#8203;40109](https://github.com/nodejs/node/pull/40109) - \[[`01b1946b38`](https://github.com/nodejs/node/commit/01b1946b38)] - **build**: only lint version numbers for pull requests (Michaël Zasso) [#&#8203;40027](https://github.com/nodejs/node/pull/40027) - \[[`c804d070a6`](https://github.com/nodejs/node/commit/c804d070a6)] - **build**: add daily/on-demand internet test workflow (Rich Trott) [#&#8203;40086](https://github.com/nodejs/node/pull/40086) - \[[`7bddaecbf4`](https://github.com/nodejs/node/commit/7bddaecbf4)] - **build**: add YAML linting to GitHub Actions (Rich Trott) [#&#8203;40007](https://github.com/nodejs/node/pull/40007) - \[[`5a20f9055c`](https://github.com/nodejs/node/commit/5a20f9055c)] - **build**: add YAML linting (Rich Trott) [#&#8203;40007](https://github.com/nodejs/node/pull/40007) - \[[`0b30867c08`](https://github.com/nodejs/node/commit/0b30867c08)] - **build**: run AUTHORS update weekly (Rich Trott) [#&#8203;40004](https://github.com/nodejs/node/pull/40004) - \[[`22a78a75ee`](https://github.com/nodejs/node/commit/22a78a75ee)] - **build**: preserves symbols during LTO with macOS linker (Jesse Chan) [#&#8203;39839](https://github.com/nodejs/node/pull/39839) - \[[`f0dec58d43`](https://github.com/nodejs/node/commit/f0dec58d43)] - **crypto**: fix webcrypto ed(25519|448) spki/pkcs8 import (Filip Skokan) [#&#8203;40131](https://github.com/nodejs/node/pull/40131) - \[[`d80082f3eb`](https://github.com/nodejs/node/commit/d80082f3eb)] - **crypto**: use `validateObject` (Voltrex) [#&#8203;39872](https://github.com/nodejs/node/pull/39872) - \[[`d657ae6f8a`](https://github.com/nodejs/node/commit/d657ae6f8a)] - **crypto**: fix RSA-PSS default saltLength (Tobias Nießen) [#&#8203;39999](https://github.com/nodejs/node/pull/39999) - \[[`fc45cbe7a8`](https://github.com/nodejs/node/commit/fc45cbe7a8)] - **crypto**: fix default MGF1 hash for OpenSSL 3 (Tobias Nießen) [#&#8203;40031](https://github.com/nodejs/node/pull/40031) - \[[`105c9e6d3b`](https://github.com/nodejs/node/commit/105c9e6d3b)] - **crypto**: check webcrypto asymmetric key types during importKey (Filip Skokan) [#&#8203;39962](https://github.com/nodejs/node/pull/39962) - \[[`fb226ff2ee`](https://github.com/nodejs/node/commit/fb226ff2ee)] - **(SEMVER-MINOR)** **crypto**: add rsa-pss keygen parameters (Filip Skokan) [#&#8203;39927](https://github.com/nodejs/node/pull/39927) - \[[`85206b7311`](https://github.com/nodejs/node/commit/85206b7311)] - **deps**: upgrade npm to 7.24.0 (npm team) [#&#8203;40167](https://github.com/nodejs/node/pull/40167) - \[[`06f6e01f37`](https://github.com/nodejs/node/commit/06f6e01f37)] - **deps**: add riscv64 into openssl Makefile and gen openssl-riscv64 (Lu Yahan) [#&#8203;40063](https://github.com/nodejs/node/pull/40063) - \[[`9c76c69972`](https://github.com/nodejs/node/commit/9c76c69972)] - **deps**: patch V8 to 9.3.345.19 (Michaël Zasso) [#&#8203;40108](https://github.com/nodejs/node/pull/40108) - \[[`0df47d5843`](https://github.com/nodejs/node/commit/0df47d5843)] - **deps**: upgrade npm to 7.23.0 (npm team) [#&#8203;40055](https://github.com/nodejs/node/pull/40055) - \[[`b3843bf417`](https://github.com/nodejs/node/commit/b3843bf417)] - **deps**: patch v8 for vs2019 in std17 (Jiawen Geng) [#&#8203;40060](https://github.com/nodejs/node/pull/40060) - \[[`67759585a0`](https://github.com/nodejs/node/commit/67759585a0)] - **deps**: patch for v8 on windows (Jiawen Geng) [#&#8203;40010](https://github.com/nodejs/node/pull/40010) - \[[`98f56d179c`](https://github.com/nodejs/node/commit/98f56d179c)] - **deps**: update Acorn to v8.5.0 (Michaël Zasso) [#&#8203;40015](https://github.com/nodejs/node/pull/40015) - \[[`5c6708582e`](https://github.com/nodejs/node/commit/5c6708582e)] - **dns**: cleanup validation (Voltrex) [#&#8203;40061](https://github.com/nodejs/node/pull/40061) - \[[`e4825dcfd5`](https://github.com/nodejs/node/commit/e4825dcfd5)] - **doc**: changes default values for fs.read fns (RISHABH BUDHIRAJA) [#&#8203;39163](https://github.com/nodejs/node/pull/39163) - \[[`0254b4b0d3`](https://github.com/nodejs/node/commit/0254b4b0d3)] - **doc**: fix markdown indentation in lists (Michaël Zasso) [#&#8203;40142](https://github.com/nodejs/node/pull/40142) - \[[`b6939a3419`](https://github.com/nodejs/node/commit/b6939a3419)] - **doc**: prepare README.md for stricter linting (Rich Trott) [#&#8203;40137](https://github.com/nodejs/node/pull/40137) - \[[`a07d8444f9`](https://github.com/nodejs/node/commit/a07d8444f9)] - **doc**: fix comma splice (Rich Trott) [#&#8203;40133](https://github.com/nodejs/node/pull/40133) - \[[`2488bc0c4f`](https://github.com/nodejs/node/commit/2488bc0c4f)] - **doc**: clean up weird notes about reentrancy (Anna Henningsen) [#&#8203;40107](https://github.com/nodejs/node/pull/40107) - \[[`8b80dcbc30`](https://github.com/nodejs/node/commit/8b80dcbc30)] - **doc**: correct parameters in fs and stream documentation (vipul kumar) [#&#8203;39984](https://github.com/nodejs/node/pull/39984) - \[[`1ced732078`](https://github.com/nodejs/node/commit/1ced732078)] - **doc**: fix CJS-ESM selector in Safari (Bradley Farias) [#&#8203;40135](https://github.com/nodejs/node/pull/40135) - \[[`7fdb12739d`](https://github.com/nodejs/node/commit/7fdb12739d)] - **doc**: add timeout.close (Nikita Galkin) [#&#8203;40036](https://github.com/nodejs/node/pull/40036) - \[[`81cb14bb58`](https://github.com/nodejs/node/commit/81cb14bb58)] - **doc**: clarify that ObjectWrap requires manual cleanup on shutdown (Gerhard Stöbich) [#&#8203;40074](https://github.com/nodejs/node/pull/40074) - \[[`8aad81dd99`](https://github.com/nodejs/node/commit/8aad81dd99)] - **doc**: add full list of subsystems (FrankQiu) [#&#8203;39971](https://github.com/nodejs/node/pull/39971) - \[[`9655329772`](https://github.com/nodejs/node/commit/9655329772)] - **doc**: add Ayase-252 to collaborators (Qingyu Deng) [#&#8203;40078](https://github.com/nodejs/node/pull/40078) - \[[`6d399e11e9`](https://github.com/nodejs/node/commit/6d399e11e9)] - **doc**: fix CCM cipher example in MJS (Tobias Nießen) [#&#8203;39949](https://github.com/nodejs/node/pull/39949) - \[[`d426ee9b17`](https://github.com/nodejs/node/commit/d426ee9b17)] - **doc**: fix property name 'detail' of performanceEntry (Christian Boehlke) [#&#8203;40019](https://github.com/nodejs/node/pull/40019) - \[[`846e7e880e`](https://github.com/nodejs/node/commit/846e7e880e)] - **doc**: fix list indentation in corepack.md (Alexey Ten) [#&#8203;40029](https://github.com/nodejs/node/pull/40029) - \[[`b6dd2ea930`](https://github.com/nodejs/node/commit/b6dd2ea930)] - **doc**: fix missing history version in `fs.md` (Antoine du Hamel) [#&#8203;39972](https://github.com/nodejs/node/pull/39972) - \[[`f666f5a8d1`](https://github.com/nodejs/node/commit/f666f5a8d1)] - **events**: fix duplicate require which cause performance penalty (wwwzbwcom) [#&#8203;39892](https://github.com/nodejs/node/pull/39892) - \[[`59fff925be`](https://github.com/nodejs/node/commit/59fff925be)] - **(SEMVER-MINOR)** **fs**: make `open` and `close` stream override optional when unused (Antoine du Hamel) [#&#8203;40013](https://github.com/nodejs/node/pull/40013) - \[[`a63a4bce90`](https://github.com/nodejs/node/commit/a63a4bce90)] - **(SEMVER-MINOR)** **http**: limit requests per connection (Artur K) [#&#8203;40082](https://github.com/nodejs/node/pull/40082) - \[[`bc9c2ca6af`](https://github.com/nodejs/node/commit/bc9c2ca6af)] - **http**: remove CRLF variable (shfshanyue) [#&#8203;40101](https://github.com/nodejs/node/pull/40101) - \[[`dd50b91f77`](https://github.com/nodejs/node/commit/dd50b91f77)] - **lib**: remove useless statement (Maledong) [#&#8203;39983](https://github.com/nodejs/node/pull/39983) - \[[`608528028c`](https://github.com/nodejs/node/commit/608528028c)] - **lib**: avoid creating a throw away object in `validateObject` (Antoine du Hamel) [#&#8203;39807](https://github.com/nodejs/node/pull/39807) - \[[`edcfffeaea`](https://github.com/nodejs/node/commit/edcfffeaea)] - **lib**: use standard property names (null) [#&#8203;39981](https://github.com/nodejs/node/pull/39981) - \[[`640353af86`](https://github.com/nodejs/node/commit/640353af86)] - **lib,repl**: ignore non-canBeRequiredByUsers built-in (Khaidi Chu) [#&#8203;39942](https://github.com/nodejs/node/pull/39942) - \[[`4444b5c938`](https://github.com/nodejs/node/commit/4444b5c938)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40148](https://github.com/nodejs/node/pull/40148) - \[[`4993318862`](https://github.com/nodejs/node/commit/4993318862)] - **meta**: update GeoffreyBooth email addresses in AUTHORS and .mailmap (Rich Trott) [#&#8203;40132](https://github.com/nodejs/node/pull/40132) - \[[`98d42fa1f4`](https://github.com/nodejs/node/commit/98d42fa1f4)] - **meta**: add mailmap entry for LPardue (Rich Trott) [#&#8203;40129](https://github.com/nodejs/node/pull/40129) - \[[`effdfa91be`](https://github.com/nodejs/node/commit/effdfa91be)] - **meta**: update GeoffreyBooth email address (Geoffrey Booth) [#&#8203;40102](https://github.com/nodejs/node/pull/40102) - \[[`588257c00a`](https://github.com/nodejs/node/commit/588257c00a)] - **meta**: add .mailmap entry for arcanis (Rich Trott) [#&#8203;40103](https://github.com/nodejs/node/pull/40103) - \[[`7ee3fbd1e0`](https://github.com/nodejs/node/commit/7ee3fbd1e0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;40087](https://github.com/nodejs/node/pull/40087) - \[[`2a41530a5e`](https://github.com/nodejs/node/commit/2a41530a5e)] - **meta**: consolidate AUTHORS entry for mikemaccana (Rich Trott) [#&#8203;40051](https://github.com/nodejs/node/pull/40051) - \[[`a71579b05e`](https://github.com/nodejs/node/commit/a71579b05e)] - **meta**: add more mailmap entries for bajtos (Rich Trott) [#&#8203;40023](https://github.com/nodejs/node/pull/40023) - \[[`29104f5e64`](https://github.com/nodejs/node/commit/29104f5e64)] - **meta**: consolidate AUTHORS entries for mithunsasidharan (Rich Trott) [#&#8203;40003](https://github.com/nodejs/node/pull/40003) - \[[`381293f54a`](https://github.com/nodejs/node/commit/381293f54a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;39957](https://github.com/nodejs/node/pull/39957) - \[[`1eca9bc5b2`](https://github.com/nodejs/node/commit/1eca9bc5b2)] - **module**: support pattern trailers for imports field (Guy Bedford) [#&#8203;40041](https://github.com/nodejs/node/pull/40041) - \[[`7376edca6d`](https://github.com/nodejs/node/commit/7376edca6d)] - **module**: deprecate trailing slash pattern mappings (Guy Bedford) [#&#8203;40039](https://github.com/nodejs/node/pull/40039) - \[[`92f182b23d`](https://github.com/nodejs/node/commit/92f182b23d)] - **module**: fix $ pattern replacements (Guy Bedford) [#&#8203;40044](https://github.com/nodejs/node/pull/40044) - \[[`d6124d8259`](https://github.com/nodejs/node/commit/d6124d8259)] - **repl**: fix top level await with surrogate characters (Mestery) [#&#8203;39931](https://github.com/nodejs/node/pull/39931) - \[[`9a672961fa`](https://github.com/nodejs/node/commit/9a672961fa)] - **(SEMVER-MINOR)** **src**: add --no-global-search-paths cli option (Cheng Zhao) [#&#8203;39754](https://github.com/nodejs/node/pull/39754) - \[[`51f9ad4897`](https://github.com/nodejs/node/commit/51f9ad4897)] - **(SEMVER-MINOR)** **src**: add option to disable global search paths (Cheng Zhao) [#&#8203;39754](https://github.com/nodejs/node/pull/39754) - \[[`95528b284d`](https://github.com/nodejs/node/commit/95528b284d)] - **src**: remove unnecessary comment and add a CHECK in crypto_tls.cc (Darshan Sen) [#&#8203;39991](https://github.com/nodejs/node/pull/39991) - \[[`31994fbf8e`](https://github.com/nodejs/node/commit/31994fbf8e)] - **src**: register zlib external references for snapshot (Joyee Cheung) [#&#8203;40050](https://github.com/nodejs/node/pull/40050) - \[[`cfcd57182b`](https://github.com/nodejs/node/commit/cfcd57182b)] - **src**: fix -Wunreachable-code-return error (Shelley Vohr) [#&#8203;40034](https://github.com/nodejs/node/pull/40034) - \[[`9f3a015b60`](https://github.com/nodejs/node/commit/9f3a015b60)] - **src**: add option to disable loading native addons (Dominic Elm) [#&#8203;39977](https://github.com/nodejs/node/pull/39977) - \[[`570bef1710`](https://github.com/nodejs/node/commit/570bef1710)] - ***Revert*** "**src**: skip test_fatal/test_threads for Debug builds" (Anna Henningsen) [#&#8203;39954](https://github.com/nodejs/node/pull/39954) - \[[`842f936e04`](https://github.com/nodejs/node/commit/842f936e04)] - **src**: use Isolate::TryGetCurrent where appropriate (Anna Henningsen) [#&#8203;39954](https://github.com/nodejs/node/pull/39954) - \[[`fe920b6cbf`](https://github.com/nodejs/node/commit/fe920b6cbf)] - **(SEMVER-MINOR)** **src**: make napi_create_reference accept symbol (JckXia) [#&#8203;39926](https://github.com/nodejs/node/pull/39926) - \[[`73aa4e34ff`](https://github.com/nodejs/node/commit/73aa4e34ff)] - **src**: fix C4805 MSVC warning (Michaël Zasso) [#&#8203;39998](https://github.com/nodejs/node/pull/39998) - \[[`826eee363c`](https://github.com/nodejs/node/commit/826eee363c)] - **src**: register external references of PipeWrap for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`7a17cbfdea`](https://github.com/nodejs/node/commit/7a17cbfdea)] - **src**: register external references of TTYWrap for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`00cca48081`](https://github.com/nodejs/node/commit/00cca48081)] - **src**: register external references of TCPWrap for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`6095fb07b6`](https://github.com/nodejs/node/commit/6095fb07b6)] - **src**: register external references of SignalWrap for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`db75711c5c`](https://github.com/nodejs/node/commit/db75711c5c)] - **src**: register missing process methods external references (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`b4e074c295`](https://github.com/nodejs/node/commit/b4e074c295)] - **src**: register missing stream wrap external references (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`a2c1c3ef64`](https://github.com/nodejs/node/commit/a2c1c3ef64)] - **src**: register external references of BaseObject for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`6fdf02523e`](https://github.com/nodejs/node/commit/6fdf02523e)] - **src**: register external references of node-report for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`bef78a2f88`](https://github.com/nodejs/node/commit/bef78a2f88)] - **src**: register external references of dtrace for snapshot (Joyee Cheung) [#&#8203;39961](https://github.com/nodejs/node/pull/39961) - \[[`97f3072ceb`](https://github.com/nodejs/node/commit/97f3072ceb)] - **(SEMVER-MINOR)** **stream**: add signal support to pipeline generators (Robert Nagy) [#&#8203;39067](https://github.com/nodejs/node/pull/39067) - \[[`6be405bd7b`](https://github.com/nodejs/node/commit/6be405bd7b)] - **test**: fix test-dgram-udp6-link-local-address on Windows (Michaël Zasso) [#&#8203;40005](https://github.com/nodejs/node/pull/40005) - \[[`ec94bec9a3`](https://github.com/nodejs/node/commit/ec94bec9a3)] - **test**: do not run `test-corepack-yarn-install` with no internet (Antoine du Hamel) [#&#8203;40090](https://github.com/nodejs/node/pull/40090) - \[[`4aa2610252`](https://github.com/nodejs/node/commit/4aa2610252)] - **test**: update OpenSSL3 error messages for 3.0.0+quic (Daniel Bevenius) [#&#8203;40093](https://github.com/nodejs/node/pull/40093) - \[[`4367a61a9b`](https://github.com/nodejs/node/commit/4367a61a9b)] - **test**: mark test-crypto-timing-safe-equal-benchmarks flaky (Richard Lau) [#&#8203;40065](https://github.com/nodejs/node/pull/40065) - \[[`5b5e27281c`](https://github.com/nodejs/node/commit/5b5e27281c)] - **test**: fix internet/test-dns (Rich Trott) [#&#8203;40083](https://github.com/nodejs/node/pull/40083) - \[[`67bbfeb7e1`](https://github.com/nodejs/node/commit/67bbfeb7e1)] - **test**: make tests pass on Windows with Unix EOL (Michaël Zasso) [#&#8203;40002](https://github.com/nodejs/node/pull/40002) - \[[`a8c99d9f09`](https://github.com/nodejs/node/commit/a8c99d9f09)] - **tools**: update doc generator dependencies (Michaël Zasso) [#&#8203;40042](https://github.com/nodejs/node/pull/40042) - \[[`ec6de1195a`](https://github.com/nodejs/node/commit/ec6de1195a)] - **tools**: update ansi-regex in lint-md rollup (Rich Trott) [#&#8203;40112](https://github.com/nodejs/node/pull/40112) - \[[`d55804ca4e`](https://github.com/nodejs/node/commit/d55804ca4e)] - **tools**: update all dependencies of markdown linter (Michaël Zasso) [#&#8203;40035](https://github.com/nodejs/node/pull/40035) - \[[`f03bae7c82`](https://github.com/nodejs/node/commit/f03bae7c82)] - **tools**: update remark-html to v13.0.2 (Michaël Zasso) [#&#8203;40043](https://github.com/nodejs/node/pull/40043) - \[[`99af21292f`](https://github.com/nodejs/node/commit/99af21292f)] - **tools,build**: update YAML files in preparation for linting (Rich Trott) [#&#8203;40007](https://github.com/nodejs/node/pull/40007) - \[[`590ace418d`](https://github.com/nodejs/node/commit/590ace418d)] - **tools,doc**: fix misrendering of consecutive JS blocks (Rich Trott) [#&#8203;40146](https://github.com/nodejs/node/pull/40146) - \[[`5983568204`](https://github.com/nodejs/node/commit/5983568204)] - **worker**: avoid potential deadlock on NearHeapLimit (Santiago Gimeno) [#&#8203;38403](https://github.com/nodejs/node/pull/38403) ### [`v16.9.1`](https://github.com/nodejs/node/releases/v16.9.1) [Compare Source](https://github.com/nodejs/node/compare/v16.9.0...v16.9.1) ##### Notable Changes This release fixes a [regression](https://github.com/nodejs/node/issues/40030) introduced by the V8 9.3 update in Node.js 16.9.0. ##### Commits - \[[`04f1943109`](https://github.com/nodejs/node/commit/04f1943109)] - **deps**: V8: cherry-pick [`9a60704`](https://github.com/nodejs/node/commit/9a607043cb31) (Jiawen Geng) [#&#8203;40046](https://github.com/nodejs/node/pull/40046) ### [`v16.9.0`](https://github.com/nodejs/node/releases/v16.9.0) [Compare Source](https://github.com/nodejs/node/compare/v16.8.0...v16.9.0) ##### Notable Changes ##### Corepack Node.js now includes Corepack, a script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development. In practical terms, **Corepack will let you use Yarn and pnpm without having to install them** - just like what currently happens with npm, which is shipped in Node.js by default. Please head over to the [Corepack documentation page](https://nodejs.org/dist/latest-v16.x/docs/api/corepack.html) for more information on how to use it. Contributed by Maël Nison - [#&#8203;39608](https://github.com/nodejs/node/pull/39608) ##### V8 9.3 V8 is updated to version [9.3](https://v8.dev/blog/v8-release-93), which includes performance improvements and new JavaScript features. ##### [`Object.hasOwn`](https://v8.dev/features/object-has-own) `Object.hasOwn` is a static alias for `Object.prototype.hasOwnProperty.call`: ```js Object.hasOwn({ value: 42 }, 'value'); // Returns `true`. ``` ##### [Error cause](https://v8.dev/features/error-cause) Errors can now be optionally constructed with a `cause` option, pointing to another error. This adds a `cause` property on the new error: ```js const error1 = new Error('Error one'); const error2 = new Error('Error two', { cause: error1 }); // error2.cause === error1 ``` Contributed by Michaël Zasso - [#&#8203;39947](https://github.com/nodejs/node/pull/39947) ##### Other Notable Changes - \[[`34c627e4bc`](https://github.com/nodejs/node/commit/34c627e4bc)] - **(SEMVER-MINOR)** **crypto**: add RSA-PSS params to asymmetricKeyDetails (Tobias Nießen) [#&#8203;39851](https://github.com/nodejs/node/pull/39851) - \[[`20da0a5379`](https://github.com/nodejs/node/commit/20da0a5379)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#&#8203;39635](https://github.com/nodejs/node/pull/39635) - \[[`cb44781371`](https://github.com/nodejs/node/commit/cb44781371)] - **(SEMVER-MINOR)** **stream**: add stream.compose (Robert Nagy) [#&#8203;39029](https://github.com/nodejs/node/pull/39029) ##### Commits - \[[`2343c394fb`](https://github.com/nodejs/node/commit/2343c394fb)] - **async_hooks**: use resource stack for AsyncLocalStorage run (Stephen Belanger) [#&#8203;39890](https://github.com/nodejs/node/pull/39890) - \[[`00951827cd`](https://github.com/nodejs/node/commit/00951827cd)] - ***Revert*** "**build**: add windows-2022 to GitHub test matrix" (Michaël Zasso) [#&#8203;39982](https://github.com/nodejs/node/pull/39982) - \[[`e7834535b3`](https://github.com/nodejs/node/commit/e7834535b3)] - **build**: add windows-2022 to GitHub test matrix (Michaël Zasso) [#&#8203;39857](https://github.com/nodejs/node/pull/39857) - \[[`c49b0c0dd4`](https://github.com/nodejs/node/commit/c49b0c0dd4)] - **build**: add support for Visual Studio 2022 (Michaël Zasso) [#&#8203;39857](https://github.com/nodejs/node/pull/39857) - \[[`afdb665e57`](https://github.com/nodejs/node/commit/afdb665e57)] - **build**: fix find-inactive-collaborators workflow token (Rich Trott) [#&#8203;39909](https://github.com/nodejs/node/pull/39909) - \[[`0ff88f362f`](https://github.com/nodejs/node/commit/0ff88f362f)] - **build**: update token used for pull requests (Rich Trott) [#&#8203;39907](https://github.com/nodejs/node/pull/39907) - \[[`beca890330`](https://github.com/nodejs/node/commit/beca890330)] - **build**: adapt v8\_pch.h to V8 9.3 (Michaël Zasso) [#&#8203;39469](https://github.com/nodejs/node/pull/39469) - \[[`2170346aa3`](https://github.com/nodejs/node/commit/2170346aa3)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;39947](https://github.com/nodejs/node/pull/39947) - \[[`d33ab968ab`](https://github.com/nodejs/node/commit/d33ab968ab)] - **cluster**: fix comment regarding child_process file (Yash Ladha) [#&#8203;39308](https://github.com/nodejs/node/pull/39308) - \[[`585199497f`](https://github.com/nodejs/node/commit/585199497f)] - **crypto**: fix regression in RSA-PSS keygen (Tobias Nießen) [#&#8203;39937](https://github.com/nodejs/node/pull/39937) - \[[`34c627e4bc`](https://github.com/nodejs/node/commit/34c627e4bc)] - **(SEMVER-MINOR)** **crypto**: add RSA-PSS params to asymmetricKeyDetails (Tobias Nießen) [#&#8203;39851](https://github.com/nodejs/node/pull/39851) - \[[`1dd91582da`](https://github.com/nodejs/node/commit/1dd91582da)] - **crypto**: fix rsa-pss one-shot sign/verify error handling (Filip Skokan) [#&#8203;39830](https://github.com/nodejs/node/pull/39830) - \[[`20cf47004e`](https://github.com/nodejs/node/commit/20cf47004e)] - **crypto**: fix JWK RSA-PSS SubtleCrypto.exportKey (Filip Skokan) [#&#8203;39828](https://github.com/nodejs/node/pull/39828) - \[[`e25dc8e470`](https://github.com/nodejs/node/commit/e25dc8e470)] - **deps**: upgrade npm to 7.21.1 (npm team) [#&#8203;39904](https://github.com/nodejs/node/pull/39904) - \[[`9270684837`](https://github.com/nodejs/node/commit/9270684837)] - **deps**: update archs files for OpenSSL-1.1.1l+quic (Richard Lau) [#&#8203;39867](https://github.com/nodejs/node/pull/39867) - \[[`4b5bbec6cc`](https://github.com/nodejs/node/commit/4b5bbec6cc)] - **deps**: upgrade openssl sources to OpenSSL\_1\_1\_1l+quic (Richard Lau) [#&#8203;39867](https://github.com/nodejs/node/pull/39867) - \[[`71659fd4ba`](https://github.com/nodejs/node/commit/71659fd4ba)] - **(SEMVER-MINOR)** **deps**: add corepack (Maël Nison) [#&#8203;39608](https://github.com/nodejs/node/pull/39608) - \[[`7470db0dfb`](https://github.com/nodejs/node/commit/7470db0dfb)] - **deps**: restore minimum ICU version to 68 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470) - \[[`92d83d18d2`](https://github.com/nodejs/node/commit/92d83d18d2)] - **deps**: make V8 9.3 abi-compatible with 9.0 (Michaël Zasso) [#&#8203;39947](https://github.com/nodejs/node/pull/39947) - \[[`0140face81`](https://github.com/nodejs/node/commit/0140face81)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#&#8203;39829](https://github.com/nodejs/node/pull/39829) - \[[`3e1053e755`](https://github.com/nodejs/node/commit/3e1053e755)] - **deps**: V8: cherry-pick [`81814ed`](https://github.com/nodejs/node/commit/81814ed44574) (Stephen Belanger) [#&#8203;39719](https://github.com/nodejs/node/pull/39719) - \[[`d9d0104878`](https://github.com/nodejs/node/commit/d9d0104878)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`cd9b03ea40`](https://github.com/nodejs/node/commit/cd9b03ea40)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`b83cab712f`](https://github.com/nodejs/node/commit/b83cab712f)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`068824d754`](https://github.com/nodejs/node/commit/068824d754)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`54f4f1af50`](https://github.com/nodejs/node/commit/54f4f1af50)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`10ba1cb8b2`](https://github.com/nodejs/node/commit/10ba1cb8b2)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`3ce6f72124`](https://github.com/nodejs/node/commit/3ce6f72124)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`f43c292520`](https://github.com/nodejs/node/commit/f43c292520)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.3.345.16 (Michaël Zasso) [#&#8203;39947](https://github.com/nodejs/node/pull/39947) - \[[`9e782eb758`](https://github.com/nodejs/node/commit/9e782eb758)] - **doc**: remove {C,Dec}ompressionStream documentation (Luigi Pinca) [#&#8203;39899](https://github.com/nodejs/node/pull/39899) - \[[`7857e9cc77`](https://github.com/nodejs/node/commit/7857e9cc77)] - **doc**: add descriptions about when `options.mode` is ignored (Ray) [#&#8203;39881](https://github.com/nodejs/node/pull/39881) - \[[`d43b555047`](https://github.com/nodejs/node/commit/d43b555047)] - **doc**: remove danbev from TSC member list (Daniel Bevenius) [#&#8203;39978](https://github.com/nodejs/node/pull/39978) - \[[`fc01dd916e`](https://github.com/nodejs/node/commit/fc01dd916e)] - **doc**: add missing changes to generateKeyPair(Sync) (Tobias Nießen) [#&#8203;39963](https://github.com/nodejs/node/pull/39963) - \[[`953f2e9f88`](https://github.com/nodejs/node/commit/953f2e9f88)] - **doc**: add nodejs/tweet issue creation to sec. doc (Daniel Bevenius) [#&#8203;39940](https://github.com/nodejs/node/pull/39940) - \[[`29c4b07716`](https://github.com/nodejs/node/commit/29c4b07716)] - **doc**: update WASI example to use import.meta.url (Guy Bedford) [#&#8203;39925](https://github.com/nodejs/node/pull/39925) - \[[`9eb4a70c14`](https://github.com/nodejs/node/commit/9eb4a70c14)] - **doc**: move reference to OpenSSL flags SSL_OP_\* (Tobias Nießen) [#&#8203;39935](https://github.com/nodejs/node/pull/39935) - \[[`8ea4befc82`](https://github.com/nodejs/node/commit/8ea4befc82)] - **doc**: add docs for duplex.allowHalfOpen property (Tim Perry) [#&#8203;39126](https://github.com/nodejs/node/pull/39126) - \[[`bc2b73ec9b`](https://github.com/nodejs/node/commit/bc2b73ec9b)] - **doc**: add FrankQiu to a triager (FrankQiu) [#&#8203;39922](https://github.com/nodejs/node/pull/39922) - \[[`8b68f8ec38`](https://github.com/nodejs/node/commit/8b68f8ec38)] - **doc**: add VoltrexMaster to triagers (voltrexmaster) [#&#8203;39920](https://github.com/nodejs/node/pull/39920) - \[[`3a8f77ac0d`](https://github.com/nodejs/node/commit/3a8f77ac0d)] - **doc**: document JavaScript tool for benchmark comparison (Michaël Zasso) [#&#8203;39835](https://github.com/nodejs/node/pull/39835) - \[[`4ac703ca8e`](https://github.com/nodejs/node/commit/4ac703ca8e)] - **doc**: add Mesteery to triagers (Mestery) [#&#8203;39887](https://github.com/nodejs/node/pull/39887) - \[[`d059a5186b`](https://github.com/nodejs/node/commit/d059a5186b)] - **doc**: update maintaining openssl guide (Richard Lau) [#&#8203;39878](https://github.com/nodejs/node/pull/39878) - \[[`486150580c`](https://github.com/nodejs/node/commit/486150580c)] - **doc**: move ERR_WORKER_UNSPPORTED_EXTENSION to legacy (Qingyu Deng) [#&#8203;39788](https://github.com/nodejs/node/pull/39788) - \[[`a4b8c13798`](https://github.com/nodejs/node/commit/a4b8c13798)] - **events**: protect property defs against prototype polution (James M Snell) [#&#8203;39773](https://github.com/nodejs/node/pull/39773) - \[[`cfbe9065ae`](https://github.com/nodejs/node/commit/cfbe9065ae)] - **events**: add brand checks for detached accessors (James M Snell) [#&#8203;39773](https://github.com/nodejs/node/pull/39773) - \[[`112af69194`](https://github.com/nodejs/node/commit/112af69194)] - **fs**: add docs and tests for `AsyncIterable` support in `fh.writeFile` (Antoine du Hamel) [#&#8203;39836](https://github.com/nodejs/node/pull/39836) - \[[`402071bc45`](https://github.com/nodejs/node/commit/402071bc45)] - **meta**: remove duplicate AUTHORS entry for NigelKibodeaux (Rich Trott) [#&#8203;39967](https://github.com/nodejs/node/pull/39967) - \[[`3588f07603`](https://github.com/nodejs/node/commit/3588f07603)] - **meta**: add mailmap entry for Ethan-Arrowood (Rich Trott) [#&#8203;39930](https://github.com/nodejs/node/pull/39930) - \[[`259e0cf4d7`](https://github.com/nodejs/node/commit/259e0cf4d7)] - **meta**: add mailmap entry for branisha (Rich Trott) [#&#8203;39889](https://github.com/nodejs/node/pull/39889) - \[[`bc236a6714`](https://github.com/nodejs/node/commit/bc236a6714)] - **meta**: update .mailmap to remove duplicate AUTHORS entry for addaleax (Rich Trott) [#&#8203;39880](https://github.com/nodejs/node/pull/39880) - \[[`20da0a5379`](https://github.com/nodejs/node/commit/20da0a5379)] - **(SEMVER-MINOR)** **module**: support pattern trailers (Guy Bedford) [#&#8203;39635](https://github.com/nodejs/node/pull/39635) - \[[`879dc4658e`](https://github.com/nodejs/node/commit/879dc4658e)] - **src**: remove usage of AllocatedBuffer from src/node_buffer.cc (Darshan Sen) [#&#8203;39941](https://github.com/nodejs/node/pull/39941) - \[[`79ce096470`](https://github.com/nodejs/node/commit/79ce096470)] - **src**: remove extra semicolons outside fns (Shelley Vohr) [#&#8203;39800](https://github.com/nodejs/node/pull/39800) - \[[`cb44781371`](https://github.com/nodejs/node/commit/cb44781371)] - **(SEMVER-MINOR)** **stream**: add stream.compose (Robert Nagy) [#&#8203;39029](https://github.com/nodejs/node/pull/39029) - \[[`ca9b781d20`](https://github.com/nodejs/node/commit/ca9b781d20)] - **test**: use `assert.match` instead of `regexp.test` (Michaël Zasso) [#&#8203;39928](https://github.com/nodejs/node/pull/39928) - \[[`007e2855af`](https://github.com/nodejs/node/commit/007e2855af)] - **test**: use error code mapping in place of raw errno (Darshan Sen) [#&#8203;38675](https://github.com/nodejs/node/pull/38675) - \[[`00529b0ef2`](https://github.com/nodejs/node/commit/00529b0ef2)] - **test**: add test to verify other extension can be loaded by worker (Qingyu Deng) [#&#8203;39788](https://github.com/nodejs/node/pull/39788) - \[[`4e7212c88c`](https://github.com/nodejs/node/commit/4e7212c88c)] - **test**: update error message keywords (leeight) [#&#8203;39826](https://github.com/nodejs/node/pull/39826) - \[[`549d717722`](https://github.com/nodejs/node/commit/549d717722)] - **test**: adapt test-fs-read to V8 9.3 (Michaël Zasso) [#&#8203;39469](https://github.com/nodejs/node/pull/39469) - \[[`644b25e068`](https://github.com/nodejs/node/commit/644b25e068)] - **test**: adapt test-util-inspect to V8 9.3 (Michaël Zasso) [#&#8203;39469](https://github.com/nodejs/node/pull/39469) - \[[`105bff9ea5`](https://github.com/nodejs/node/commit/105bff9ea5)] - **test**: adapt test-v8-flags to V8 9.3 (Michaël Zasso) [#&#8203;39469](https://github.com/nodejs/node/pull/39469) - \[[`d92bd9a982`](https://github.com/nodejs/node/commit/d92bd9a982)] - **tools**: add support for import assertions in linter (Antoine du Hamel) [#&#8203;39924](https://github.com/nodejs/node/pull/39924) - \[[`9763561e30`](https://github.com/nodejs/node/commit/9763561e30)] - **tools**: update gyp-next to v0.10.0 (Michaël Zasso) [#&#8203;39857](https://github.com/nodejs/node/pull/39857) - \[[`9f105c73fc`](https://github.com/nodejs/node/commit/9f105c73fc)] - **tools**: update V8 gypfiles for 9.3 (Michaël Zasso) [#&#8203;39469](https://github.com/nodejs/node/pull/39469) - \[[`16271d2f50`](https://github.com/nodejs/node/commit/16271d2f50)] - **worker**: remove file extension check (Qingyu Deng) [#&#8203;39788](https://github.com/nodejs/node/pull/39788) - \[[`3b1ce93e03`](https://github.com/nodejs/node/commit/3b1ce93e03)] - **worker**: add brand checks for detached MessageEvent accessors (James M Snell) [#&#8203;39773](https://github.com/nodejs/node/pull/39773) ### [`v16.8.0`](https://github.com/nodejs/node/releases/v16.8.0) [Compare Source](https://github.com/nodejs/node/compare/v16.7.0...v16.8.0) ##### Notable Changes - \[[`2e90b10f35`](https://github.com/nodejs/node/commit/2e90b10f35)] - **doc**: deprecate type coercion for `dns.lookup` options (Antoine du Hamel) [#&#8203;38906](https://github.com/nodejs/node/pull/38906) - \[[`a6d50a18a0`](https://github.com/nodejs/node/commit/a6d50a18a0)] - **(SEMVER-MINOR)** **stream**: add `stream.Duplex.from` utility (Robert Nagy) [#&#8203;39519](https://github.com/nodejs/node/pull/39519) - \[[`af7047a815`](https://github.com/nodejs/node/commit/af7047a815)] - **(SEMVER-MINOR)** **stream**: add `isDisturbed` helper (Robert Nagy) [#&#8203;39628](https://github.com/nodejs/node/pull/39628) - \[[`66400374de`](https://github.com/nodejs/node/commit/66400374de)] - **(SEMVER-MINOR)** **util**: expose `toUSVString` (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814) ##### Commits - \[[`90bf247a55`](https://github.com/nodejs/node/commit/90bf247a55)] - **build**: fix update authors commit (Mestery) [#&#8203;39858](https://github.com/nodejs/node/pull/39858) - \[[`c968372e37`](https://github.com/nodejs/node/commit/c968372e37)] - **build**: add authors.yml (Tierney Cyren) [#&#8203;35831](https://github.com/nodejs/node/pull/35831) - \[[`3f284cf65c`](https://github.com/nodejs/node/commit/3f284cf65c)] - **build**: add option to hide console window (Cheng Zhao) [#&#8203;39712](https://github.com/nodejs/node/pull/39712) - \[[`a01e3ab41d`](https://github.com/nodejs/node/commit/a01e3ab41d)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#&#8203;39829](https://github.com/nodejs/node/pull/39829) - \[[`cce95c4c5b`](https://github.com/nodejs/node/commit/cce95c4c5b)] - **deps**: upgrade npm to 7.21.0 (Myles Borins) [#&#8203;39813](https://github.com/nodejs/node/pull/39813) - \[[`254810a22e`](https://github.com/nodejs/node/commit/254810a22e)] - **doc**: add duplicate CVE check in sec. release doc (Daniel Bevenius) [#&#8203;39845](https://github.com/nodejs/node/pull/39845) - \[[`8c50d16712`](https://github.com/nodejs/node/commit/8c50d16712)] - **doc**: improve description of the triagers team (Michaël Zasso) [#&#8203;39833](https://github.com/nodejs/node/pull/39833) - \[[`c02165d992`](https://github.com/nodejs/node/commit/c02165d992)] - **doc**: update instructions for cc (Michael Dawson) [#&#8203;39674](https://github.com/nodejs/node/pull/39674) - \[[`208305fd8f`](https://github.com/nodejs/node/commit/208305fd8f)] - **doc**: move util.toUSVString() outside of deprecated group (Luigi Pinca) [#&#8203;39840](https://github.com/nodejs/node/pull/39840) - \[[`2e90b10f35`](https://github.com/nodejs/node/commit/2e90b10f35)] - **doc**: deprecate type coercion for `dns.lookup` options (Antoine du Hamel) [#&#8203;38906](https://github.com/nodejs/node/pull/38906) - \[[`8460a3216c`](https://github.com/nodejs/node/commit/8460a3216c)] - **doc**: deprecate using non-boolean values in the `verbatim` option (Antoine du Hamel) [#&#8203;38906](https://github.com/nodejs/node/pull/38906) - \[[`3041d57201`](https://github.com/nodejs/node/commit/3041d57201)] - **doc**: fix malformed changelog entries (Rich Trott) [#&#8203;39791](https://github.com/nodejs/node/pull/39791) - \[[`2b02f747c3`](https://github.com/nodejs/node/commit/2b02f747c3)] - **doc**: fix lint errors in packages.md (Rich Trott) [#&#8203;39792](https://github.com/nodejs/node/pull/39792) - \[[`a387600d8f`](https://github.com/nodejs/node/commit/a387600d8f)] - **doc**: add example of self-reference in scoped packages (Jesús Leganés-Combarro 'piranna) [#&#8203;37630](https://github.com/nodejs/node/pull/37630) - \[[`7a25bf3a6d`](https://github.com/nodejs/node/commit/7a25bf3a6d)] - **doc**: add himadriganguly as a triager (Himadri Ganguly) [#&#8203;39757](https://github.com/nodejs/node/pull/39757) - \[[`d1900f43ce`](https://github.com/nodejs/node/commit/d1900f43ce)] - **fs**: combine require() and destructure (Colin Ihrig) [#&#8203;39806](https://github.com/nodejs/node/pull/39806) - \[[`158d4464d2`](https://github.com/nodejs/node/commit/158d4464d2)] - **meta**: add gyp as owner of gyp files and tools/gyp (Mary Marchini) [#&#8203;34847](https://github.com/nodejs/node/pull/34847) - \[[`8fa38500f2`](https://github.com/nodejs/node/commit/8fa38500f2)] - **policy**: canonicalize before resolving specifiers (Bradley Farias) [#&#8203;37863](https://github.com/nodejs/node/pull/37863) - \[[`a7a217be13`](https://github.com/nodejs/node/commit/a7a217be13)] - **repl**: fix tla function hoisting (Don Jayamanne) [#&#8203;39745](https://github.com/nodejs/node/pull/39745) - \[[`3a8399ee61`](https://github.com/nodejs/node/commit/3a8399ee61)] - **src**: return Maybe\<bool> from InitializeContextRuntime() (Darshan Sen) [#&#8203;39695](https://github.com/nodejs/node/pull/39695) - \[[`a704c9dfce`](https://github.com/nodejs/node/commit/a704c9dfce)] - **(SEMVER-MINOR)** **src**: call overload ctor from the original ctor (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768) - \[[`0918ea0683`](https://github.com/nodejs/node/commit/0918ea0683)] - **(SEMVER-MINOR)** **src**: add a constructor overload for CallbackScope (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768) - \[[`a6d50a18a0`](https://github.com/nodejs/node/commit/a6d50a18a0)] - **(SEMVER-MINOR)** **stream**: duplexify (Robert Nagy) [#&#8203;39519](https://github.com/nodejs/node/pull/39519) - \[[`af7047a815`](https://github.com/nodejs/node/commit/af7047a815)] - **(SEMVER-MINOR)** **stream**: add isDisturbed helper (Robert Nagy) [#&#8203;39628](https://github.com/nodejs/node/pull/39628) - \[[`f98311a7c8`](https://github.com/nodejs/node/commit/f98311a7c8)] - **tools**: update workflow to open a pull request (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825) - \[[`d33f897509`](https://github.com/nodejs/node/commit/d33f897509)] - **tools**: use find-inactive-collaborators to modify README.md (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825) - \[[`d82ee96861`](https://github.com/nodejs/node/commit/d82ee96861)] - **tools**: update gyp-next to v0.9.5 (Jiawen Geng) [#&#8203;39818](https://github.com/nodejs/node/pull/39818) - \[[`79079ea01b`](https://github.com/nodejs/node/commit/79079ea01b)] - **tools**: fix markdown linting (Rich Trott) [#&#8203;39832](https://github.com/nodejs/node/pull/39832) - \[[`01093b07cc`](https://github.com/nodejs/node/commit/01093b07cc)] - **tools**: update markdown linter dependencies and move to ESM (Antoine du Hamel) [#&#8203;39801](https://github.com/nodejs/node/pull/39801) - \[[`9dc0c91392`](https://github.com/nodejs/node/commit/9dc0c91392)] - **tools**: update rollup to latest version in markdown linter (Rich Trott) [#&#8203;39797](https://github.com/nodejs/node/pull/39797) - \[[`c34e2534ab`](https://github.com/nodejs/node/commit/c34e2534ab)] - **tools**: update markdown lint dependencies (Rich Trott) [#&#8203;39770](https://github.com/nodejs/node/pull/39770) - \[[`66400374de`](https://github.com/nodejs/node/commit/66400374de)] - **(SEMVER-MINOR)** **util**: expose toUSVString (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814) ### [`v16.7.0`](https://github.com/nodejs/node/releases/v16.7.0) [Compare Source](https://github.com/nodejs/node/compare/v16.6.2...v16.7.0) ##### Notable Changes - **fs**: - experimental: add recursive cp method (Benjamin Coe) [#&#8203;39372](https://github.com/nodejs/node/pull/39372) ##### Commits - \[[`a80c989306`](https://github.com/nodejs/node/commit/a80c989306)] - **async_hooks**: merge resource_symbol with owner_symbol (Darshan Sen) [#&#8203;38468](https://github.com/nodejs/node/pull/38468) - \[[`69a2a6b6c3`](https://github.com/nodejs/node/commit/69a2a6b6c3)] - **bootstrap**: call \_undestroy() inside \_destroy for stdout and stderr (Matteo Collina) [#&#8203;39685](https://github.com/nodejs/node/pull/39685) - \[[`5bc31ea0aa`](https://github.com/nodejs/node/commit/5bc31ea0aa)] - **buffer**: add endings option, remove Node.js specific encoding option (James M Snell) [#&#8203;39708](https://github.com/nodejs/node/pull/39708) - \[[`091a579275`](https://github.com/nodejs/node/commit/091a579275)] - **(SEMVER-MINOR)** **buffer**: add Blob.prototype.stream method and other cleanups (James M Snell) [#&#8203;39693](https://github.com/nodejs/node/pull/39693) - \[[`097d898e58`](https://github.com/nodejs/node/commit/097d898e58)] - **build**: run coverage for inspector protocol changes (Richard Lau) [#&#8203;39725](https://github.com/nodejs/node/pull/39725) - \[[`cf028df0ed`](https://github.com/nodejs/node/commit/cf028df0ed)] - **build**: fix V8 build with pointer compression (Michaël Zasso) [#&#8203;39664](https://github.com/nodejs/node/pull/39664) - \[[`9d38400de1`](https://github.com/nodejs/node/commit/9d38400de1)] - **build**: exclude markdown files from some GitHub Actions (Rich Trott) [#&#8203;39565](https://github.com/nodejs/node/pull/39565) - \[[`eeb804a7b7`](https://github.com/nodejs/node/commit/eeb804a7b7)] - **build**: use lts shorthand in GitHub Actions (Rich Trott) [#&#8203;39538](https://github.com/nodejs/node/pull/39538) - \[[`93a904d0ba`](https://github.com/nodejs/node/commit/93a904d0ba)] - **(SEMVER-MINOR)** **crypto**: implement webcrypto.randomUUID (Michaël Zasso) [#&#8203;39648](https://github.com/nodejs/node/pull/39648) - \[[`3321b65a5a`](https://github.com/nodejs/node/commit/3321b65a5a)] - **debugger**: prevent simultaneous heap snapshots (Rich Trott) [#&#8203;39638](https://github.com/nodejs/node/pull/39638) - \[[`6c375e18b6`](https://github.com/nodejs/node/commit/6c375e18b6)] - **debugger**: remove undefined parameter (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570) - \[[`103bf20988`](https://github.com/nodejs/node/commit/103bf20988)] - **deps**: V8: cherry-pick [`81814ed`](https://github.com/nodejs/node/commit/81814ed44574) (Stephen Belanger) [#&#8203;39719](https://github.com/nodejs/node/pull/39719) - \[[`cf5e5b5711`](https://github.com/nodejs/node/commit/cf5e5b5711)] - **deps**: upgrade to libuv 1.42.0 (Luigi Pinca) [#&#8203;39525](https://github.com/nodejs/node/pull/39525) - \[[`5f92d2fe6d`](https://github.com/nodejs/node/commit/5f92d2fe6d)] - **dgram**: use simplified validator (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753) - \[[`c7e918b06a`](https://github.com/nodejs/node/commit/c7e918b06a)] - **(SEMVER-MINOR)** **dns**: add "tries" option to Resolve options (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`5d66646b71`](https://github.com/nodejs/node/commit/5d66646b71)] - **doc**: correct cjs code to match mjs code (Raz Luvaton) [#&#8203;39509](https://github.com/nodejs/node/pull/39509) - \[[`f18bb2a0f1`](https://github.com/nodejs/node/commit/f18bb2a0f1)] - **doc**: fix typo in hmac.paramNames default (Justin) [#&#8203;39766](https://github.com/nodejs/node/pull/39766) - \[[`338a166e83`](https://github.com/nodejs/node/commit/338a166e83)] - **doc**: fix `fs.rmdir` `recursive` option deprecation history (Antoine du Hamel) [#&#8203;39728](https://github.com/nodejs/node/pull/39728) - \[[`bfb1dc0a2c`](https://github.com/nodejs/node/commit/bfb1dc0a2c)] - **doc**: fixed variable names in queueMicrotask example (ashish maurya) [#&#8203;39634](https://github.com/nodejs/node/pull/39634) - \[[`08b31f12f8`](https://github.com/nodejs/node/commit/08b31f12f8)] - **doc**: change "Version 4 UUID" to "version 4 UUID" (Tobias Nießen) [#&#8203;39682](https://github.com/nodejs/node/pull/39682) - \[[`f5200f9785`](https://github.com/nodejs/node/commit/f5200f9785)] - **doc**: update debugger.md description and examples (Rich Trott) [#&#8203;39661](https://github.com/nodejs/node/pull/39661) - \[[`4700f1e529`](https://github.com/nodejs/node/commit/4700f1e529)] - **doc**: fix color contrast issue in light mode (Rich Trott) [#&#8203;39660](https://github.com/nodejs/node/pull/39660) - \[[`88c83a4698`](https://github.com/nodejs/node/commit/88c83a4698)] - **(SEMVER-MINOR)** **doc**: add missing change to resolver ctor (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`760cafa5ed`](https://github.com/nodejs/node/commit/760cafa5ed)] - **doc**: fix typo in `url.md` (Howie Zhao) [#&#8203;39666](https://github.com/nodejs/node/pull/39666) - \[[`9ab5503693`](https://github.com/nodejs/node/commit/9ab5503693)] - **doc**: add point to ask H1 reporter about credit (Daniel Bevenius) [#&#8203;39585](https://github.com/nodejs/node/pull/39585) - \[[`7514405456`](https://github.com/nodejs/node/commit/7514405456)] - **doc**: update min mac ver + move mac arm64 to tier 1 (Ash Cripps) [#&#8203;39586](https://github.com/nodejs/node/pull/39586) - \[[`d7c8c6dcee`](https://github.com/nodejs/node/commit/d7c8c6dcee)] - **doc**: add missing `introduced_in` metadata (Richard Lau) [#&#8203;39575](https://github.com/nodejs/node/pull/39575) - \[[`8072517097`](https://github.com/nodejs/node/commit/8072517097)] - **doc**: add code examples to `Writable.destroy()` and `Writable.destroyed` (Juan José Arboleda) [#&#8203;39491](https://github.com/nodejs/node/pull/39491) - \[[`55f47cc2d0`](https://github.com/nodejs/node/commit/55f47cc2d0)] - **doc**: add `String.prototype.at` and `%TypedArray%.prototype.at` (Jordan Harband) [#&#8203;39583](https://github.com/nodejs/node/pull/39583) - \[[`0c0412e2c4`](https://github.com/nodejs/node/commit/0c0412e2c4)] - **doc**: move `NODE_MODULE_VERSION` in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`5df74f9b21`](https://github.com/nodejs/node/commit/5df74f9b21)] - **doc**: remove outdated ARM information from release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`8eccb11ea0`](https://github.com/nodejs/node/commit/8eccb11ea0)] - **doc**: fence command examples in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`0bd97e1f2d`](https://github.com/nodejs/node/commit/0bd97e1f2d)] - **doc**: update backport labels in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`2129ad6a0a`](https://github.com/nodejs/node/commit/2129ad6a0a)] - **doc**: add code example to `fs.truncate` method (Juan José Arboleda) [#&#8203;39454](https://github.com/nodejs/node/pull/39454) - \[[`3ff5e153ef`](https://github.com/nodejs/node/commit/3ff5e153ef)] - **doc**: add code example to `http.createServer` method (Juan José Arboleda) [#&#8203;39455](https://github.com/nodejs/node/pull/39455) - \[[`7d0c869cfa`](https://github.com/nodejs/node/commit/7d0c869cfa)] - **doc**: add PerformanceObserver `buffered` document (legendecas) [#&#8203;39514](https://github.com/nodejs/node/pull/39514) - \[[`0dc167a03f`](https://github.com/nodejs/node/commit/0dc167a03f)] - **(SEMVER-MINOR)** **fs**: add recursive cp method (Benjamin Coe) [#&#8203;39372](https://github.com/nodejs/node/pull/39372) - \[[`54dd3df943`](https://github.com/nodejs/node/commit/54dd3df943)] - **http**: decodes url.username and url.password for authorization header (Lew Gordon) [#&#8203;39310](https://github.com/nodejs/node/pull/39310) - \[[`81e62f67bf`](https://github.com/nodejs/node/commit/81e62f67bf)] - **inspector**: update inspector_protocol to [`89c4adf`](https://github.com/nodejs/node/commit/89c4adf) (Rich Trott) [#&#8203;39650](https://github.com/nodejs/node/pull/39650) - \[[`793fee4915`](https://github.com/nodejs/node/commit/793fee4915)] - **inspector**: update inspector_protocol to [`8ec18cf`](https://github.com/nodejs/node/commit/8ec18cf) (Rich Trott) [#&#8203;39614](https://github.com/nodejs/node/pull/39614) - \[[`5afdc1f4c0`](https://github.com/nodejs/node/commit/5afdc1f4c0)] - **lib**: simplify validators (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753) - \[[`ca3cb96d25`](https://github.com/nodejs/node/commit/ca3cb96d25)] - **lib**: cleanup validation (Voltrex) [#&#8203;39652](https://github.com/nodejs/node/pull/39652) - \[[`cc08d3062f`](https://github.com/nodejs/node/commit/cc08d3062f)] - **lib**: cleanup instance validation (Voltrex) [#&#8203;39656](https://github.com/nodejs/node/pull/39656) - \[[`2751cdf6f9`](https://github.com/nodejs/node/commit/2751cdf6f9)] - **lib**: use helper for readability (Voltrex) [#&#8203;39649](https://github.com/nodejs/node/pull/39649) - \[[`c68415cba2`](https://github.com/nodejs/node/commit/c68415cba2)] - **lib**: use validators (Voltrex) [#&#8203;39663](https://github.com/nodejs/node/pull/39663) - \[[`be2d60dd1d`](https://github.com/nodejs/node/commit/be2d60dd1d)] - **lib**: use validator (Voltrex) [#&#8203;39547](https://github.com/nodejs/node/pull/39547) - \[[`486d51ac0c`](https://github.com/nodejs/node/commit/486d51ac0c)] - **lib**: use `validateObject` (Voltrex) [#&#8203;39605](https://github.com/nodejs/node/pull/39605) - \[[`058e882a2a`](https://github.com/nodejs/node/commit/058e882a2a)] - **lib**: use ERR_ILLEGAL_CONSTRUCTOR (Mestery) [#&#8203;39556](https://github.com/nodejs/node/pull/39556) - \[[`07cadc4432`](https://github.com/nodejs/node/commit/07cadc4432)] - **meta**: consolidate AUTHORS entries for ooHmartY (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`6c788b8030`](https://github.com/nodejs/node/commit/6c788b8030)] - **meta**: consolidate AUTHORS entries for homosaur (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`07351edebe`](https://github.com/nodejs/node/commit/07351edebe)] - **meta**: consolidate AUTHORS entries for Ayase-252 (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`5fe282769b`](https://github.com/nodejs/node/commit/5fe282769b)] - **meta**: consolidate AUTHORS entries for robin-drexler (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`fc2a626357`](https://github.com/nodejs/node/commit/fc2a626357)] - **meta**: consolidate AUTHORS entries for samshull (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`67cfc66a47`](https://github.com/nodejs/node/commit/67cfc66a47)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`91008fbdeb`](https://github.com/nodejs/node/commit/91008fbdeb)] - **meta**: consolidate email addresses for MarshallOfSound (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651) - \[[`a76b63536a`](https://github.com/nodejs/node/commit/a76b63536a)] - **meta**: consolidate email addresses for tadjik1 (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651) - \[[`aaab2095db`](https://github.com/nodejs/node/commit/aaab2095db)] - **meta**: consolidate email addresses for szmarczak (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651) - \[[`f413a9d83c`](https://github.com/nodejs/node/commit/f413a9d83c)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39636](https://github.com/nodejs/node/pull/39636) - \[[`7a91d4bfe9`](https://github.com/nodejs/node/commit/7a91d4bfe9)] - **meta**: simplify mailmap (Rich Trott) [#&#8203;39612](https://github.com/nodejs/node/pull/39612) - \[[`4ec5d2de5d`](https://github.com/nodejs/node/commit/4ec5d2de5d)] - **meta**: consolidate emails for tadhgcreedon (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611) - \[[`bb88c38eac`](https://github.com/nodejs/node/commit/bb88c38eac)] - **meta**: consolidate emails for timcosta (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611) - \[[`0920a8cf6f`](https://github.com/nodejs/node/commit/0920a8cf6f)] - **meta**: consolidate emails for timruffles (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611) - \[[`1474a9d4b1`](https://github.com/nodejs/node/commit/1474a9d4b1)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39629](https://github.com/nodejs/node/pull/39629) - \[[`c59e3ec685`](https://github.com/nodejs/node/commit/c59e3ec685)] - **meta**: add mailmap entry for ryzokuken (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596) - \[[`34f4bb8277`](https://github.com/nodejs/node/commit/34f4bb8277)] - **meta**: add mailmap entry for uttampawar (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596) - \[[`fd213edda2`](https://github.com/nodejs/node/commit/fd213edda2)] - **meta**: add mailmap entry for dmabupt (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596) - \[[`6b664e224b`](https://github.com/nodejs/node/commit/6b664e224b)] - **meta**: align README/.mailmap/AUTHORS email entries (Rich Trott) [#&#8203;39505](https://github.com/nodejs/node/pull/39505) - \[[`96d8ecbd66`](https://github.com/nodejs/node/commit/96d8ecbd66)] - **meta**: add mailmap entry for garygsc (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588) - \[[`16d85f3f48`](https://github.com/nodejs/node/commit/16d85f3f48)] - **meta**: add mailmap entry for ttzztztz (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588) - \[[`60ab111fdb`](https://github.com/nodejs/node/commit/60ab111fdb)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39587](https://github.com/nodejs/node/pull/39587) - \[[`b43f87d729`](https://github.com/nodejs/node/commit/b43f87d729)] - **meta**: update .mailmap to remove duplication in AUTHORS (Rich Trott) [#&#8203;39561](https://github.com/nodejs/node/pull/39561) - \[[`6f4a2aa5a4`](https://github.com/nodejs/node/commit/6f4a2aa5a4)] - **meta**: add .mailmap entries to remove AUTHORS duplicates (Rich Trott) [#&#8203;39560](https://github.com/nodejs/node/pull/39560) - \[[`86d144c500`](https://github.com/nodejs/node/commit/86d144c500)] - **meta**: add .mailmap entry to remove duplication in AUTHORS (Rich Trott) [#&#8203;39559](https://github.com/nodejs/node/pull/39559) - \[[`110c088f02`](https://github.com/nodejs/node/commit/110c088f02)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521) - \[[`72af147bb5`](https://github.com/nodejs/node/commit/72af147bb5)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521) - \[[`23bc4cfb21`](https://github.com/nodejs/node/commit/23bc4cfb21)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521) - \[[`e4289728c7`](https://github.com/nodejs/node/commit/e4289728c7)] - **meta**: move gdams to emeritus (Rich Trott) [#&#8203;39539](https://github.com/nodejs/node/pull/39539) - \[[`4df59bc727`](https://github.com/nodejs/node/commit/4df59bc727)] - **module**: add some typings to `internal/modules/esm/resolve` (Antoine du Hamel) [#&#8203;39504](https://github.com/nodejs/node/pull/39504) - \[[`b5858589d0`](https://github.com/nodejs/node/commit/b5858589d0)] - **node-api**: handle pending exception in cb wrapper (Michael Dawson) [#&#8203;39476](https://github.com/nodejs/node/pull/39476) - \[[`016b7ba616`](https://github.com/nodejs/node/commit/016b7ba616)] - **perf_hooks**: fix PerformanceObserver gc crash (James M Snell) [#&#8203;39550](https://github.com/nodejs/node/pull/39550) - \[[`b37575b67c`](https://github.com/nodejs/node/commit/b37575b67c)] - **perf_hooks**: fix performance timeline wpt failures (legendecas) [#&#8203;39532](https://github.com/nodejs/node/pull/39532) - \[[`64c02eb3cc`](https://github.com/nodejs/node/commit/64c02eb3cc)] - **(SEMVER-MINOR)** **perf_hooks**: web performance timeline compliance (legendecas) [#&#8203;39297](https://github.com/nodejs/node/pull/39297) - \[[`7ff21397d6`](https://github.com/nodejs/node/commit/7ff21397d6)] - **policy**: fix integrity when DEFAULT_ENCODING is set (Tobias Nießen) [#&#8203;39750](https://github.com/nodejs/node/pull/39750) - \[[`03be967cad`](https://github.com/nodejs/node/commit/03be967cad)] - **src**: fix TextDecoder final flush size calculation (James M Snell) [#&#8203;39737](https://github.com/nodejs/node/pull/39737) - \[[`9046e78943`](https://github.com/nodejs/node/commit/9046e78943)] - **src**: fix crash in AfterGetAddrInfo (Anna Henningsen) [#&#8203;39735](https://github.com/nodejs/node/pull/39735) - \[[`2a00ef5ede`](https://github.com/nodejs/node/commit/2a00ef5ede)] - **(SEMVER-MINOR)** **src**: fix align in cares_wrap.h (Luan) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`60a2b31c68`](https://github.com/nodejs/node/commit/60a2b31c68)] - **src**: add cosmetic space character to `async_wrap.h` file (Juan José Arboleda) [#&#8203;39459](https://github.com/nodejs/node/pull/39459) - \[[`cd9b0bf68c`](https://github.com/nodejs/node/commit/cd9b0bf68c)] - **stream**: ensure text() stream consumer flushes correctly (James M Snell) [#&#8203;39737](https://github.com/nodejs/node/pull/39737) - \[[`f57a0e4d8b`](https://github.com/nodejs/node/commit/f57a0e4d8b)] - **(SEMVER-MINOR)** **stream**: utility consumers for web and node.js streams (James M Snell) [#&#8203;39594](https://github.com/nodejs/node/pull/39594) - \[[`975edf5330`](https://github.com/nodejs/node/commit/975edf5330)] - **stream**: clean `endWritableNT` (Mestery) [#&#8203;39645](https://github.com/nodejs/node/pull/39645) - \[[`9e38fc6757`](https://github.com/nodejs/node/commit/9e38fc6757)] - **(SEMVER-MINOR)** **stream**: add readableDidRead if has been read from (Robert Nagy) [#&#8203;39589](https://github.com/nodejs/node/pull/39589) - \[[`a5ded4a85a`](https://github.com/nodejs/node/commit/a5ded4a85a)] - **test**: use simplfied validator (voltrexmaster) [#&#8203;39753](https://github.com/nodejs/node/pull/39753) - \[[`53cf53c95a`](https://github.com/nodejs/node/commit/53cf53c95a)] - **(SEMVER-MINOR)** **test**: enable blob.prototype.stream tests (James M Snell) [#&#8203;39693](https://github.com/nodejs/node/pull/39693) - \[[`7e9884598f`](https://github.com/nodejs/node/commit/7e9884598f)] - **test**: update WPT abort tests (Michaël Zasso) [#&#8203;39697](https://github.com/nodejs/node/pull/39697) - \[[`94381fbdf5`](https://github.com/nodejs/node/commit/94381fbdf5)] - **test**: update WPT common and resources (Michaël Zasso) [#&#8203;39697](https://github.com/nodejs/node/pull/39697) - \[[`34a041a846`](https://github.com/nodejs/node/commit/34a041a846)] - **test**: fix test-debugger-heap-profiler for workers (Richard Lau) [#&#8203;39687](https://github.com/nodejs/node/pull/39687) - \[[`9f5acfa90e`](https://github.com/nodejs/node/commit/9f5acfa90e)] - **test**: increase memory for coverage action (Benjamin Coe) [#&#8203;39690](https://github.com/nodejs/node/pull/39690) - \[[`0be15cedc4`](https://github.com/nodejs/node/commit/0be15cedc4)] - **test**: use template to concatenate string (Himadri Ganguly) [#&#8203;39621](https://github.com/nodejs/node/pull/39621) - \[[`952a5282e2`](https://github.com/nodejs/node/commit/952a5282e2)] - **(SEMVER-MINOR)** **test**: pull Web Platform Tests for WebCryptoAPI (Michaël Zasso) [#&#8203;39648](https://github.com/nodejs/node/pull/39648) - \[[`3622fb1e03`](https://github.com/nodejs/node/commit/3622fb1e03)] - **test**: deflake test-http2-buffersize (Luigi Pinca) [#&#8203;39591](https://github.com/nodejs/node/pull/39591) - \[[`1962c7c7b3`](https://github.com/nodejs/node/commit/1962c7c7b3)] - **test**: convert anonymous function to arrow function (Himadri Ganguly) [#&#8203;39604](https://github.com/nodejs/node/pull/39604) - \[[`635e1a0274`](https://github.com/nodejs/node/commit/635e1a0274)] - **test**: add test-debugger-breakpoint-exists (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570) - \[[`cff2aea5df`](https://github.com/nodejs/node/commit/cff2aea5df)] - **test**: add known issues test for debugger heap snapshot race (Rich Trott) [#&#8203;39557](https://github.com/nodejs/node/pull/39557) - \[[`5e1011238a`](https://github.com/nodejs/node/commit/5e1011238a)] - **tools**: bump remark-preset-lint-node to 3.0.0 (Rich Trott) [#&#8203;39755](https://github.com/nodejs/node/pull/39755) - \[[`eb741253fd`](https://github.com/nodejs/node/commit/eb741253fd)] - **tools**: update path-parse in markdown linter package-lock file (Rich Trott) [#&#8203;39729](https://github.com/nodejs/node/pull/39729) - \[[`52a172f983`](https://github.com/nodejs/node/commit/52a172f983)] - **tools**: fix more build warnings in inspector_protocol (Richard Lau) [#&#8203;39725](https://github.com/nodejs/node/pull/39725) - \[[`77f9c1fa98`](https://github.com/nodejs/node/commit/77f9c1fa98)] - **tools**: cherry-pick [`ffb34b6`](https://github.com/nodejs/node/commit/ffb34b6d5dbf0) (Darshan Sen) [#&#8203;39725](https://github.com/nodejs/node/pull/39725) - \[[`b9510d21c9`](https://github.com/nodejs/node/commit/b9510d21c9)] - **tools**: update inspector_protocol to [`e8ba1a7`](https://github.com/nodejs/node/commit/e8ba1a7) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`8d509d8773`](https://github.com/nodejs/node/commit/8d509d8773)] - **tools**: update inspector_protocol to [`39ca567`](https://github.com/nodejs/node/commit/39ca567) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`ee7142fa37`](https://github.com/nodejs/node/commit/ee7142fa37)] - **tools**: update inspector_protocol to [`97d3146`](https://github.com/nodejs/node/commit/97d3146) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`c6323d847d`](https://github.com/nodejs/node/commit/c6323d847d)] - ***Revert*** "**tools**: fix compiler warning in inspector_protocol" (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`6e19c166e4`](https://github.com/nodejs/node/commit/6e19c166e4)] - **tools**: update inspector_protocol to [`a53e96d`](https://github.com/nodejs/node/commit/a53e96d31a2755eb16ca37) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`61c53f39d2`](https://github.com/nodejs/node/commit/61c53f39d2)] - **tools**: update inspector_protocol to [`fe0467f`](https://github.com/nodejs/node/commit/fe0467fd105a) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`b1b6f20353`](https://github.com/nodejs/node/commit/b1b6f20353)] - **tools**: improve error detection in find-inactive-collaborators (Rich Trott) [#&#8203;39617](https://github.com/nodejs/node/pull/39617) - \[[`d1360fcf48`](https://github.com/nodejs/node/commit/d1360fcf48)] - **tools**: update ESLint to 7.32.0 (Luigi Pinca) [#&#8203;39602](https://github.com/nodejs/node/pull/39602) - \[[`af1c782cad`](https://github.com/nodejs/node/commit/af1c782cad)] - **tools**: update ESLint to 7.31.0 (Colin Ihrig) [#&#8203;39424](https://github.com/nodejs/node/pull/39424) - \[[`37dda19461`](https://github.com/nodejs/node/commit/37dda19461)] - **(SEMVER-MINOR)** **url,buffer**: implement URL.createObjectURL (James M Snell) [#&#8203;39693](https://github.com/nodejs/node/pull/39693) - \[[`dcab88ad38`](https://github.com/nodejs/node/commit/dcab88ad38)] - **worker**: add brand checks for detached properties/methods (James M Snell) [#&#8203;39763](https://github.com/nodejs/node/pull/39763) ### [`v16.6.2`](https://github.com/nodejs/node/releases/v16.6.2) [Compare Source](https://github.com/nodejs/node/compare/v16.6.1...v16.6.2) This is a security release. ##### Notable Changes - **CVE-2021-3672/CVE-2021-22931**: Improper handling of untypical characters in domain names (High) - Node.js was vulnerable to Remote Code Execution, XSS, application crashes due to missing input validation of hostnames returned by Domain Name Servers in the Node.js DNS library which can lead to the output of wrong hostnames (leading to Domain Hijacking) and injection vulnerabilities in applications using the library. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22931. - **CVE-2021-22940**: Use after free on close http2 on stream canceling (High) - Node.js was vulnerable to a use after free attack where an attacker might be able to exploit memory corruption to change process behavior. This release includes a follow-up fix for CVE-2021-22930 as the issue was not completely resolved by the previous fix. You can read more about it at https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22940. - **CVE-2021-22939**: Incomplete validation of rejectUnauthorized parameter (Low) - If the Node.js HTTPS API was used incorrectly and "undefined" was in passed for the "rejectUnauthorized" parameter, no error was returned and connections to servers with an expired certificate would have been accepted. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22939. ##### Commits - \[[`054537cdc2`](https://github.com/nodejs/node/commit/054537cdc2)] - **deps**: update c-ares to 1.17.2 (Beth Griggs) [#&#8203;39724](https://github.com/nodejs/node/pull/39724) - \[[`ac544905b6`](https://github.com/nodejs/node/commit/ac544905b6)] - **deps**: reflect c-ares source tree (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653) - \[[`a914b23cbc`](https://github.com/nodejs/node/commit/a914b23cbc)] - **deps**: apply missed updates from c-ares 1.17.1 (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653) - \[[`31d5773654`](https://github.com/nodejs/node/commit/31d5773654)] - **http2**: add tests for cancel event while client is paused reading (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622) - \[[`a3c33d4ce7`](https://github.com/nodejs/node/commit/a3c33d4ce7)] - **http2**: update handling of rst_stream with error code NGHTTP2\_CANCEL (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622) - \[[`6c7fff6f1d`](https://github.com/nodejs/node/commit/6c7fff6f1d)] - **tls**: validate "rejectUnauthorized: undefined" (Matteo Collina) [nodejs-private/node-private#&#8203;276](https://github.com/nodejs-private/node-private/pull/276) ### [`v16.6.1`](https://github.com/nodejs/node/releases/v16.6.1) [Compare Source](https://github.com/nodejs/node/compare/v16.6.0...v16.6.1) ##### Notable Changes - Updated npm to 7.20.3 (npm team) [#&#8203;39579](https://github.com/nodejs/node/pull/39579) - Reverted an ABI-breaking change from V8 9.2 that could impact some native modules (Michaël Zasso) [#&#8203;39624](https://github.com/nodejs/node/pull/39624) - Fixed a bug in error handling known to affect at least Webpack and Jest (Guy Bedford) [#&#8203;39593](https://github.com/nodejs/node/pull/39593) ##### Commits - \[[`6c769ccedf`](https://github.com/nodejs/node/commit/6c769ccedf)] - **build**: override python executable path on configure (legendecas) [#&#8203;39465](https://github.com/nodejs/node/pull/39465) - \[[`cbf6a01c17`](https://github.com/nodejs/node/commit/cbf6a01c17)] - **crypto**: fix `generateKeyPair` with encoding 'jwk' (himself65) [#&#8203;39319](https://github.com/nodejs/node/pull/39319) - \[[`3091295609`](https://github.com/nodejs/node/commit/3091295609)] - **deps**: revert ABI-breaking change from V8 9.2 (Michaël Zasso) [#&#8203;39624](https://github.com/nodejs/node/pull/39624) - \[[`06d7b8e8c8`](https://github.com/nodejs/node/commit/06d7b8e8c8)] - **deps**: upgrade npm to 7.20.3 (npm team) [#&#8203;39579](https://github.com/nodejs/node/pull/39579) - \[[`7b612fadc2`](https://github.com/nodejs/node/commit/7b612fadc2)] - **doc**: fix crypto.hkdf callback derivedKey type (Filip Skokan) [#&#8203;39453](https://github.com/nodejs/node/pull/39453) - \[[`7a731efd97`](https://github.com/nodejs/node/commit/7a731efd97)] - **doc,lib,test**: rename HKDF 'key' argument (Tobias Nießen) [#&#8203;39474](https://github.com/nodejs/node/pull/39474) - \[[`93bbaa0ce9`](https://github.com/nodejs/node/commit/93bbaa0ce9)] - **module**: fix ERR_REQUIRE_ESM error for null frames (Guy Bedford) [#&#8203;39593](https://github.com/nodejs/node/pull/39593) - \[[`e13162de09`](https://github.com/nodejs/node/commit/e13162de09)] - **module**: refine `enrichCJSError` (Antoine du Hamel) [#&#8203;39507](https://github.com/nodejs/node/pull/39507) - \[[`815fbec6f1`](https://github.com/nodejs/node/commit/815fbec6f1)] - **repl**: do not include legacy getter/setter methods in completion (Anna Henningsen) [#&#8203;39576](https://github.com/nodejs/node/pull/39576) - \[[`0405c8d3f0`](https://github.com/nodejs/node/commit/0405c8d3f0)] - **zlib**: avoid converting `Uint8Array` instances to `Buffer` (Antoine du Hamel) [#&#8203;39492](https://github.com/nodejs/node/pull/39492) ### [`v16.6.0`](https://github.com/nodejs/node/releases/v16.6.0) [Compare Source](https://github.com/nodejs/node/compare/v16.5.0...v16.6.0) This is a security release. ##### Notable Changes ##### Say hello to V8 9.2 The V8 engine is updated to version 9.2.230.21. It notably introduces the new [`Array.prototype.at`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at) method (also on [Typed Arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/at) and [strings](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/at)): ```js const array = [1, 2, 3]; console.log(array.at(-1)); // Prints: 3 ``` Contributed by Michaël Zasso - [#&#8203;39470](https://github.com/nodejs/node/pull/39470) ##### Other notable changes - **CVE-2021-22930**: Use after free on close http2 on stream canceling (High) - [#&#8203;39423](https://github.com/nodejs/node/pull/39423) - Node.js is vulnerable to a use after free attack where an attacker might be able to exploit the memory corruption, to change process behavior. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22930 - \[[`f93d2ac587`](https://github.com/nodejs/node/commit/f93d2ac587)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748) - \[[`89b4770d5c`](https://github.com/nodejs/node/commit/89b4770d5c)] - **punycode**: add pending deprecation (Antoine du Hamel) [#&#8203;38444](https://github.com/nodejs/node/pull/38444) - \[[`b67214fe31`](https://github.com/nodejs/node/commit/b67214fe31)] - **(SEMVER-MINOR)** **repl**: enable --experimental-repl-await /w opt-out (hemanth.hm) [#&#8203;34733](https://github.com/nodejs/node/pull/34733) ##### Commits - \[[`b5248d4000`](https://github.com/nodejs/node/commit/b5248d4000)] - **async_hooks**: emit promise trace events from JS (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`e18778d409`](https://github.com/nodejs/node/commit/e18778d409)] - **async_hooks**: eliminate native PromiseHook (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`90b9bb1a7d`](https://github.com/nodejs/node/commit/90b9bb1a7d)] - **build**: use Node.js 14 in commit-lint.yml (Rich Trott) [#&#8203;39506](https://github.com/nodejs/node/pull/39506) - \[[`5182e26f14`](https://github.com/nodejs/node/commit/5182e26f14)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470) - \[[`e1910ef290`](https://github.com/nodejs/node/commit/e1910ef290)] - **build**: fix `host_arch_cc()` for AIX/IBM i (Richard Lau) [#&#8203;39481](https://github.com/nodejs/node/pull/39481) - \[[`ce2011b7a1`](https://github.com/nodejs/node/commit/ce2011b7a1)] - **build**: update coverage Makefile target comments (Richard Lau) [#&#8203;39365](https://github.com/nodejs/node/pull/39365) - \[[`6b055f17b6`](https://github.com/nodejs/node/commit/6b055f17b6)] - **build**: run workflows when a PR is ready for review (Michaël Zasso) [#&#8203;39405](https://github.com/nodejs/node/pull/39405) - \[[`25f45d5018`](https://github.com/nodejs/node/commit/25f45d5018)] - **build**: update to setup-node@v2 (Rich Trott) [#&#8203;39366](https://github.com/nodejs/node/pull/39366) - \[[`a7472576d7`](https://github.com/nodejs/node/commit/a7472576d7)] - **build**: add `library_files` to gyp variables (himself65) [#&#8203;39293](https://github.com/nodejs/node/pull/39293) - \[[`d16d36f1c2`](https://github.com/nodejs/node/commit/d16d36f1c2)] - **crypto**: support Big(U)Int64Array in getRandomValues (Michaël Zasso) [#&#8203;39443](https://github.com/nodejs/node/pull/39443) - \[[`95db54482a`](https://github.com/nodejs/node/commit/95db54482a)] - **debugger**: validate sec-websocket-accept response header (Chris Opperwall) [#&#8203;39357](https://github.com/nodejs/node/pull/39357) - \[[`3751b92fa2`](https://github.com/nodejs/node/commit/3751b92fa2)] - **debugger**: rename internal module (Rich Trott) [#&#8203;39378](https://github.com/nodejs/node/pull/39378) - \[[`0e5eb8b17d`](https://github.com/nodejs/node/commit/0e5eb8b17d)] - **deps**: restore minimum ICU version to 68 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470) - \[[`e8da1f25fb`](https://github.com/nodejs/node/commit/e8da1f25fb)] - **(SEMVER-MINOR)** **deps**: make V8 9.2 abi-compatible with 9.0 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470) - \[[`a93e6ef777`](https://github.com/nodejs/node/commit/a93e6ef777)] - **deps**: V8: backport [`5c76da8`](https://github.com/nodejs/node/commit/5c76da8ddcf8) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`d612544199`](https://github.com/nodejs/node/commit/d612544199)] - **deps**: V8: cherry-pick [`359d44d`](https://github.com/nodejs/node/commit/359d44df4cdd) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`c6ec2b4817`](https://github.com/nodejs/node/commit/c6ec2b4817)] - **deps**: V8: cherry-pick [`3805a69`](https://github.com/nodejs/node/commit/3805a698f7b6) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`e6b84dfe84`](https://github.com/nodejs/node/commit/e6b84dfe84)] - **deps**: V8: cherry-pick [`56fe020`](https://github.com/nodejs/node/commit/56fe020eec0c) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`2393fae427`](https://github.com/nodejs/node/commit/2393fae427)] - **deps**: V8: cherry-pick [`2b77ca2`](https://github.com/nodejs/node/commit/2b77ca200c56) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`c8e7d80475`](https://github.com/nodejs/node/commit/c8e7d80475)] - **deps**: V8: cherry-pick [`53784bd`](https://github.com/nodejs/node/commit/53784bdb8f01) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`65062b3e0d`](https://github.com/nodejs/node/commit/65062b3e0d)] - **deps**: V8: cherry-pick [`7ff6609`](https://github.com/nodejs/node/commit/7ff6609a5385) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`c3efc70df7`](https://github.com/nodejs/node/commit/c3efc70df7)] - **deps**: V8: cherry-pick [`a5cea1b`](https://github.com/nodejs/node/commit/a5cea1bfc38c) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`201da87bc1`](https://github.com/nodejs/node/commit/201da87bc1)] - **deps**: V8: cherry-pick [`9862992`](https://github.com/nodejs/node/commit/986299250e6d) (Richard Lau) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`794ad2e016`](https://github.com/nodejs/node/commit/794ad2e016)] - **deps**: V8: backport [`71e8f8b`](https://github.com/nodejs/node/commit/71e8f8bb3c26) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`53cc6c8000`](https://github.com/nodejs/node/commit/53cc6c8000)] - **deps**: V8: cherry-pick [`3d24b3a`](https://github.com/nodejs/node/commit/3d24b3ab8af0) (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`7f7cb8bfe1`](https://github.com/nodejs/node/commit/7f7cb8bfe1)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`16cbd8c8b6`](https://github.com/nodejs/node/commit/16cbd8c8b6)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`98150e2bc6`](https://github.com/nodejs/node/commit/98150e2bc6)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`3f3e167fea`](https://github.com/nodejs/node/commit/3f3e167fea)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`785b8990de`](https://github.com/nodejs/node/commit/785b8990de)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`38cb655f04`](https://github.com/nodejs/node/commit/38cb655f04)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`9082ecef66`](https://github.com/nodejs/node/commit/9082ecef66)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`6114198717`](https://github.com/nodejs/node/commit/6114198717)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.2.230.21 (Michaël Zasso) [#&#8203;39470](https://github.com/nodejs/node/pull/39470) - \[[`89796d0c7f`](https://github.com/nodejs/node/commit/89796d0c7f)] - **deps**: bump HdrHistogram_C to 0.11.2 (Matteo Collina) [#&#8203;39462](https://github.com/nodejs/node/pull/39462) - \[[`9dd232c42b`](https://github.com/nodejs/node/commit/9dd232c42b)] - **deps**: update to cjs-module-lexer@1.2.2 (Guy Bedford) [#&#8203;39402](https://github.com/nodejs/node/pull/39402) - \[[`626eb07fda`](https://github.com/nodejs/node/commit/626eb07fda)] - **deps**: extract gtest source files to deps/googletest (legendecas) [#&#8203;39386](https://github.com/nodejs/node/pull/39386) - \[[`487c45ffd9`](https://github.com/nodejs/node/commit/487c45ffd9)] - **doc**: move lball@redhat.com to emeritus (Lance Ball) [#&#8203;39501](https://github.com/nodejs/node/pull/39501) - \[[`5f84f47e13`](https://github.com/nodejs/node/commit/5f84f47e13)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39488](https://github.com/nodejs/node/pull/39488) - \[[`1d27ae1514`](https://github.com/nodejs/node/commit/1d27ae1514)] - **doc**: update strategic initiative champion (Rich Trott) [#&#8203;39487](https://github.com/nodejs/node/pull/39487) - \[[`e552b1a791`](https://github.com/nodejs/node/commit/e552b1a791)] - **doc**: improve node.js+fips instructions (Benjamin Mayr) [#&#8203;39390](https://github.com/nodejs/node/pull/39390) - \[[`aa1dfb3111`](https://github.com/nodejs/node/commit/aa1dfb3111)] - **doc**: simplify unnecessarily specific .mailmap entries (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430) - \[[`ae69656c61`](https://github.com/nodejs/node/commit/ae69656c61)] - **doc**: update checkbox label in backporting guide (Darshan Sen) [#&#8203;39420](https://github.com/nodejs/node/pull/39420) - \[[`4fd8db687d`](https://github.com/nodejs/node/commit/4fd8db687d)] - **doc**: remove \_Addenda\_ from headers (Rich Trott) [#&#8203;39427](https://github.com/nodejs/node/pull/39427) - \[[`cefd2fb1e4`](https://github.com/nodejs/node/commit/cefd2fb1e4)] - **doc**: simplify .mailmap file (Rich Trott) [#&#8203;39418](https://github.com/nodejs/node/pull/39418) - \[[`ade2eed9a6`](https://github.com/nodejs/node/commit/ade2eed9a6)] - **doc**: fix broken internal link in http.md (Rich Trott) [#&#8203;39425](https://github.com/nodejs/node/pull/39425) - \[[`5fdfcc069f`](https://github.com/nodejs/node/commit/5fdfcc069f)] - **doc**: remove outdated step in onboarding exercise (Rich Trott) [#&#8203;39410](https://github.com/nodejs/node/pull/39410) - \[[`94706c7012`](https://github.com/nodejs/node/commit/94706c7012)] - **doc**: revise strategic initiatives text (Rich Trott) [#&#8203;39417](https://github.com/nodejs/node/pull/39417) - \[[`9932e3589c`](https://github.com/nodejs/node/commit/9932e3589c)] - **doc**: remove typo (extra ' character) (Nikita Rykov) [#&#8203;39414](https://github.com/nodejs/node/pull/39414) - \[[`2b92b4ea2d`](https://github.com/nodejs/node/commit/2b92b4ea2d)] - **doc**: update mailmap and AUTHORS (Rich Trott) [#&#8203;39393](https://github.com/nodejs/node/pull/39393) - \[[`6d6396594b`](https://github.com/nodejs/node/commit/6d6396594b)] - **doc**: use a details tag for completed initiatves (Rich Trott) [#&#8203;39416](https://github.com/nodejs/node/pull/39416) - \[[`ac43e3331c`](https://github.com/nodejs/node/commit/ac43e3331c)] - **doc**: update commit-queue.md to indicate GitHub Actions are checked (Rich Trott) [#&#8203;39411](https://github.com/nodejs/node/pull/39411) - \[[`75130c94d1`](https://github.com/nodejs/node/commit/75130c94d1)] - **doc**: use \_pull request\_ instead of \_PR\_ in onboarding doc (Rich Trott) [#&#8203;39409](https://github.com/nodejs/node/pull/39409) - \[[`20bb3f6df0`](https://github.com/nodejs/node/commit/20bb3f6df0)] - **doc**: add strategic initiatives from TSC repo (Rich Trott) [#&#8203;39394](https://github.com/nodejs/node/pull/39394) - \[[`6979313abb`](https://github.com/nodejs/node/commit/6979313abb)] - **doc**: standardize on \_pull request\_ (Rich Trott) [#&#8203;39384](https://github.com/nodejs/node/pull/39384) - \[[`20124cc275`](https://github.com/nodejs/node/commit/20124cc275)] - **doc**: make minor edits to pull request text (Rich Trott) [#&#8203;39383](https://github.com/nodejs/node/pull/39383) - \[[`11482f02cf`](https://github.com/nodejs/node/commit/11482f02cf)] - **doc**: add docker-node and build-wg issue contents (Daniel Bevenius) [#&#8203;39215](https://github.com/nodejs/node/pull/39215) - \[[`c535956b6e`](https://github.com/nodejs/node/commit/c535956b6e)] - **doc**: add instructions for core vuln files (Daniel Bevenius) [#&#8203;39220](https://github.com/nodejs/node/pull/39220) - \[[`353a8bb27b`](https://github.com/nodejs/node/commit/353a8bb27b)] - **doc**: standardize on not capitalizing \_collaborator\_ (Rich Trott) [#&#8203;39379](https://github.com/nodejs/node/pull/39379) - \[[`9b15e5c155`](https://github.com/nodejs/node/commit/9b15e5c155)] - **doc**: update mailmap and deduplicate AUTHORS entry (Rich Trott) [#&#8203;39391](https://github.com/nodejs/node/pull/39391) - \[[`e44ccd9aad`](https://github.com/nodejs/node/commit/e44ccd9aad)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39367](https://github.com/nodejs/node/pull/39367) - \[[`39e6536a87`](https://github.com/nodejs/node/commit/39e6536a87)] - **doc**: move jdalton to emeritus (Rich Trott) [#&#8203;39380](https://github.com/nodejs/node/pull/39380) - \[[`bbff5a9e47`](https://github.com/nodejs/node/commit/bbff5a9e47)] - **doc**: edit guide on pull requests (Rich Trott) [#&#8203;39359](https://github.com/nodejs/node/pull/39359) - \[[`902ef9aca0`](https://github.com/nodejs/node/commit/902ef9aca0)] - **doc,meta**: update email addresses for misterdjules (Rich Trott) [#&#8203;39433](https://github.com/nodejs/node/pull/39433) - \[[`cc7b61721c`](https://github.com/nodejs/node/commit/cc7b61721c)] - **doc,tools**: remove `checkLinks.mjs` (Antoine du Hamel) [#&#8203;39206](https://github.com/nodejs/node/pull/39206) - \[[`e2fd015cda`](https://github.com/nodejs/node/commit/e2fd015cda)] - **domain**: do not add domain to promise from other context (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`93eff3f5a6`](https://github.com/nodejs/node/commit/93eff3f5a6)] - **esm**: refine ERR_REQUIRE_ESM errors (Guy Bedford) [#&#8203;39175](https://github.com/nodejs/node/pull/39175) - \[[`1fb0954202`](https://github.com/nodejs/node/commit/1fb0954202)] - **events**: allow an event to be dispatched multiple times (Luigi Pinca) [#&#8203;39395](https://github.com/nodejs/node/pull/39395) - \[[`6f2989c346`](https://github.com/nodejs/node/commit/6f2989c346)] - **events**: allow the options argument to be null (Luigi Pinca) [#&#8203;39486](https://github.com/nodejs/node/pull/39486) - \[[`72ad6d3f27`](https://github.com/nodejs/node/commit/72ad6d3f27)] - **fs**: check closing\_ in FileHandle::Close (James M Snell) [#&#8203;39472](https://github.com/nodejs/node/pull/39472) - \[[`8b58e574ba`](https://github.com/nodejs/node/commit/8b58e574ba)] - **fs**: fix FileHandle::ClosePromise to return persisted Promise (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331) - \[[`9d950a0956`](https://github.com/nodejs/node/commit/9d950a0956)] - **http2**: on receiving rst_stream with cancel code add it to pending list (Akshay K) [#&#8203;39423](https://github.com/nodejs/node/pull/39423) - \[[`19e9accf91`](https://github.com/nodejs/node/commit/19e9accf91)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748) - \[[`e4331cd43d`](https://github.com/nodejs/node/commit/e4331cd43d)] - **lib**: comment explaining special-case handling of promises (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`0a47f5fc54`](https://github.com/nodejs/node/commit/0a47f5fc54)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39510](https://github.com/nodejs/node/pull/39510) - \[[`65020110e8`](https://github.com/nodejs/node/commit/65020110e8)] - **meta**: remove unneeded .mailmap entry (Rich Trott) [#&#8203;39512](https://github.com/nodejs/node/pull/39512) - \[[`864ef11be8`](https://github.com/nodejs/node/commit/864ef11be8)] - **meta**: update email address for collaborator (Rich Trott) [#&#8203;39511](https://github.com/nodejs/node/pull/39511) - \[[`d3f58cb650`](https://github.com/nodejs/node/commit/d3f58cb650)] - **meta**: align collaborator name in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39489](https://github.com/nodejs/node/pull/39489) - \[[`5f9b2187a1`](https://github.com/nodejs/node/commit/5f9b2187a1)] - **meta**: align email address in README/.mailmap/AUTHORS (Rich Trott) [#&#8203;39503](https://github.com/nodejs/node/pull/39503) - \[[`9fbe3f6b49`](https://github.com/nodejs/node/commit/9fbe3f6b49)] - **meta**: revise .mailmap for README consistency (Rich Trott) [#&#8203;39457](https://github.com/nodejs/node/pull/39457) - \[[`f6fbb38924`](https://github.com/nodejs/node/commit/f6fbb38924)] - **meta**: alphabetize .mailmap file (Rich Trott) [#&#8203;39434](https://github.com/nodejs/node/pull/39434) - \[[`dc9c6aa428`](https://github.com/nodejs/node/commit/dc9c6aa428)] - **meta**: align collaborator email in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39478](https://github.com/nodejs/node/pull/39478) - \[[`febeb0df16`](https://github.com/nodejs/node/commit/febeb0df16)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39461](https://github.com/nodejs/node/pull/39461) - \[[`d059ed9242`](https://github.com/nodejs/node/commit/d059ed9242)] - **meta**: add .mailmap entry for new email for existing contributor (Rich Trott) [#&#8203;39431](https://github.com/nodejs/node/pull/39431) - \[[`cdf7251370`](https://github.com/nodejs/node/commit/cdf7251370)] - **process**: add api to enable source-maps programmatically (legendecas) [#&#8203;39085](https://github.com/nodejs/node/pull/39085) - \[[`eccc9a6578`](https://github.com/nodejs/node/commit/eccc9a6578)] - **punycode**: add pending deprecation (Antoine du Hamel) [#&#8203;38444](https://github.com/nodejs/node/pull/38444) - \[[`a082a705b3`](https://github.com/nodejs/node/commit/a082a705b3)] - **(SEMVER-MINOR)** **repl**: enable --experimental-repl-await /w opt-out (hemanth.hm) [#&#8203;34733](https://github.com/nodejs/node/pull/34733) - \[[`b230ac12d9`](https://github.com/nodejs/node/commit/b230ac12d9)] - **src**: stop using deprecated v8::ApiObject (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`929205e6b9`](https://github.com/nodejs/node/commit/929205e6b9)] - **src**: use non-deprecated Symbol::Description (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`42ff6d952a`](https://github.com/nodejs/node/commit/42ff6d952a)] - **src**: print native module id on native module not found (legendecas) [#&#8203;39460](https://github.com/nodejs/node/pull/39460) - \[[`f0287e52aa`](https://github.com/nodejs/node/commit/f0287e52aa)] - **src**: close HandleWraps instead of deleting them in OnGCCollect() (Anna Henningsen) [#&#8203;39441](https://github.com/nodejs/node/pull/39441) - \[[`2cf52f8db1`](https://github.com/nodejs/node/commit/2cf52f8db1)] - **src**: set SSL_OP_ALLOW_CLIENT_RENEGOTIATION (Daniel Bevenius) [#&#8203;38753](https://github.com/nodejs/node/pull/38753) - \[[`fc138376aa`](https://github.com/nodejs/node/commit/fc138376aa)] - **src**: remove unused guards around node-api reference (legendecas) [#&#8203;38334](https://github.com/nodejs/node/pull/38334) - \[[`26ada4971c`](https://github.com/nodejs/node/commit/26ada4971c)] - **stream**: import internal/util/types instead (James M Snell) [#&#8203;39331](https://github.com/nodejs/node/pull/39331) - \[[`e91053a465`](https://github.com/nodejs/node/commit/e91053a465)] - **stream**: implement TextEncoderStream and TextDecoderStream (James M Snell) [#&#8203;39347](https://github.com/nodejs/node/pull/39347) - \[[`efe74746f0`](https://github.com/nodejs/node/commit/efe74746f0)] - **stream**: fixup property definition to avoid prototype polution (James M Snell) [#&#8203;39371](https://github.com/nodejs/node/pull/39371) - \[[`4709da0372`](https://github.com/nodejs/node/commit/4709da0372)] - **test**: ensure microtask queues are not automatically drained (Jochen Eisinger) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`86ca9a8a80`](https://github.com/nodejs/node/commit/86ca9a8a80)] - **test**: remove test-debug-args (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`bbcd651cfd`](https://github.com/nodejs/node/commit/bbcd651cfd)] - **test**: update trace events test expectations (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`039f64f249`](https://github.com/nodejs/node/commit/039f64f249)] - **test**: fix WASI link test (Richard Lau) [#&#8203;39485](https://github.com/nodejs/node/pull/39485) - \[[`b1d38ddc8a`](https://github.com/nodejs/node/commit/b1d38ddc8a)] - **test**: update OpenSSL3 error messages for beta-1 (Daniel Bevenius) [#&#8203;39437](https://github.com/nodejs/node/pull/39437) - \[[`db4f802fba`](https://github.com/nodejs/node/commit/db4f802fba)] - ***Revert*** "**test**: skip tests for openssl-3.0.0-alpha15" (Daniel Bevenius) [#&#8203;39437](https://github.com/nodejs/node/pull/39437) - \[[`a30d021b94`](https://github.com/nodejs/node/commit/a30d021b94)] - **test**: add test for WebSocket secret verification in debugger (Rich Trott) [#&#8203;39357](https://github.com/nodejs/node/pull/39357) - \[[`04355afd24`](https://github.com/nodejs/node/commit/04355afd24)] - **test**: add NumberFormat resolvedOptions test (Richard Lau) [#&#8203;39401](https://github.com/nodejs/node/pull/39401) - \[[`d0fb02c26a`](https://github.com/nodejs/node/commit/d0fb02c26a)] - **test**: put common lint exceptions into config file (Rich Trott) [#&#8203;39358](https://github.com/nodejs/node/pull/39358) - \[[`259d091366`](https://github.com/nodejs/node/commit/259d091366)] - **test**: mark test-domain-error-types flaky (James M Snell) [#&#8203;39369](https://github.com/nodejs/node/pull/39369) - \[[`5517769472`](https://github.com/nodejs/node/commit/5517769472)] - **tools**: fetch googletest dependency for V8 CI (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`5fe74aa403`](https://github.com/nodejs/node/commit/5fe74aa403)] - **tools**: update V8 gypfiles for 9.2 (Michaël Zasso) [#&#8203;38990](https://github.com/nodejs/node/pull/38990) - \[[`e58cf4e44c`](https://github.com/nodejs/node/commit/e58cf4e44c)] - **tools**: flag README/mailmap mismatches in find-inactive-collaborators (Rich Trott) [#&#8203;39477](https://github.com/nodejs/node/pull/39477) - \[[`0a46e66253`](https://github.com/nodejs/node/commit/0a46e66253)] - **tools**: use mailmap for find-inactive-collaborators (Rich Trott) [#&#8203;39432](https://github.com/nodejs/node/pull/39432) - \[[`7570f998df`](https://github.com/nodejs/node/commit/7570f998df)] - **tools**: email matchin is case insensitive for .mailmap (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430) - \[[`5c11a0279d`](https://github.com/nodejs/node/commit/5c11a0279d)] - **tools**: make internal link checker more robust (Rich Trott) [#&#8203;39429](https://github.com/nodejs/node/pull/39429) - \[[`4c32aa02db`](https://github.com/nodejs/node/commit/4c32aa02db)] - **tools**: added remark-frontmatter (Ben Halverson) [#&#8203;38717](https://github.com/nodejs/node/pull/38717) - \[[`c6a7c3d00d`](https://github.com/nodejs/node/commit/c6a7c3d00d)] - **tools**: fix broken link hash (Rich Trott) [#&#8203;39426](https://github.com/nodejs/node/pull/39426) - \[[`0f1d51578e`](https://github.com/nodejs/node/commit/0f1d51578e)] - **tools**: change commit fetch limiting in find-inactive-collaborators (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362) - \[[`e5d64473e8`](https://github.com/nodejs/node/commit/e5d64473e8)] - **tools**: use Node.js 16.x for GitHub workflow (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362) - \[[`68fd6d5282`](https://github.com/nodejs/node/commit/68fd6d5282)] - **url**: prevent pathname setter from erasing path of path-only URLs (Darshan Sen) [#&#8203;39060](https://github.com/nodejs/node/pull/39060) ### [`v16.5.0`](https://github.com/nodejs/node/releases/v16.5.0) [Compare Source](https://github.com/nodejs/node/compare/v16.4.2...v16.5.0) ##### Notable Changes ##### Experimental Web Streams API Node.js now exposes an experimental implementation of the [Web Streams API](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API). While it is experimental, the API is not exposed on the global object and is only accessible using the new `stream/web` core module: ```mjs import { ReadableStream, WritableStream } from 'stream/web'; // Or from 'node:stream/web' ``` Importing the module will emit a single experimental warning per process. The raw API is implemented and we are now working on its integration with various existing core APIs. Contributed by James M Snell - [#&#8203;39062](https://github.com/nodejs/node/pull/39062) ##### Other notable changes - \[[`83f3b959f9`](https://github.com/nodejs/node/commit/83f3b959f9)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028) - \[[`c04fd2bb97`](https://github.com/nodejs/node/commit/c04fd2bb97)] - **deps**: upgrade npm to 7.19.1 (npm team) [#&#8203;39225](https://github.com/nodejs/node/pull/39225) ##### Commits - \[[`aafa08d7b9`](https://github.com/nodejs/node/commit/aafa08d7b9)] - **bootstrap**: load perf_hooks eagerly during bootstrap (Joyee Cheung) [#&#8203;38971](https://github.com/nodejs/node/pull/38971) - \[[`6e46eb186c`](https://github.com/nodejs/node/commit/6e46eb186c)] - **bootstrap**: support perf hooks in snapshot (Joyee Cheung) [#&#8203;38971](https://github.com/nodejs/node/pull/38971) - \[[`10681828ac`](https://github.com/nodejs/node/commit/10681828ac)] - **build**: update gcovr for gcc 8 compatibility (Richard Lau) [#&#8203;39326](https://github.com/nodejs/node/pull/39326) - \[[`8381132f76`](https://github.com/nodejs/node/commit/8381132f76)] - **build**: add riscv into host_arch_cc (Lu Yahan) [#&#8203;39004](https://github.com/nodejs/node/pull/39004) - \[[`a7ba21864d`](https://github.com/nodejs/node/commit/a7ba21864d)] - **build**: restore libplatform headers in distribution (Jeroen Ooms) [#&#8203;39288](https://github.com/nodejs/node/pull/39288) - \[[`41161eabf2`](https://github.com/nodejs/node/commit/41161eabf2)] - **build**: remove unused comment in Makefile (LitoMore) [#&#8203;39171](https://github.com/nodejs/node/pull/39171) - \[[`f6a1092471`](https://github.com/nodejs/node/commit/f6a1092471)] - **build**: allow to build riscv64 using Makefile (Makoto Kato) [#&#8203;39048](https://github.com/nodejs/node/pull/39048) - \[[`a7cd40ed8d`](https://github.com/nodejs/node/commit/a7cd40ed8d)] - **build**: uvwasi honours node_shared_libuv (Jérémy Lal) [#&#8203;39260](https://github.com/nodejs/node/pull/39260) - \[[`3ed04994b7`](https://github.com/nodejs/node/commit/3ed04994b7)] - **build**: shorten path used in tarball build workflow (Richard Lau) [#&#8203;39192](https://github.com/nodejs/node/pull/39192) - \[[`65b56b3774`](https://github.com/nodejs/node/commit/65b56b3774)] - **build**: fix building with external builtins (Momtchil Momtchev) [#&#8203;39091](https://github.com/nodejs/node/pull/39091) - \[[`412b1012d2`](https://github.com/nodejs/node/commit/412b1012d2)] - **build**: pass directory instead of list of files to js2c.py (Joyee Cheung) [#&#8203;39069](https://github.com/nodejs/node/pull/39069) - \[[`171ca6bb3c`](https://github.com/nodejs/node/commit/171ca6bb3c)] - **build**: don't pass `--mode` argument to V8 test-runner (Richard Lau) [#&#8203;39055](https://github.com/nodejs/node/pull/39055) - \[[`cf8536ea3f`](https://github.com/nodejs/node/commit/cf8536ea3f)] - **build**: fix commit linter on unrebased PRs (Mary Marchini) [#&#8203;39121](https://github.com/nodejs/node/pull/39121) - \[[`cf0533b8b2`](https://github.com/nodejs/node/commit/cf0533b8b2)] - **build**: use Actions to validate commit message (Mary Marchini) [#&#8203;32417](https://github.com/nodejs/node/pull/32417) - \[[`4202274851`](https://github.com/nodejs/node/commit/4202274851)] - **crypto**: move OPENSSL_IS_BORINGSSL guard (Shelley Vohr) [#&#8203;39136](https://github.com/nodejs/node/pull/39136) - \[[`89f5a73ba5`](https://github.com/nodejs/node/commit/89f5a73ba5)] - **crypto**: use compatible ecdh function (Shelley Vohr) [#&#8203;39054](https://github.com/nodejs/node/pull/39054) - \[[`30e878b603`](https://github.com/nodejs/node/commit/30e878b603)] - **crypto**: add OPENSSL_IS_BORINGSSL guard (Shelley Vohr) [#&#8203;39138](https://github.com/nodejs/node/pull/39138) - \[[`630266cba2`](https://github.com/nodejs/node/commit/630266cba2)] - **debugger**: indicate server is ending (Rich Trott) [#&#8203;39334](https://github.com/nodejs/node/pull/39334) - \[[`48d9680f84`](https://github.com/nodejs/node/commit/48d9680f84)] - **debugger**: remove final lint exceptions in inspect_repl.js (Rich Trott) [#&#8203;39078](https://github.com/nodejs/node/pull/39078) - \[[`4507714f9d`](https://github.com/nodejs/node/commit/4507714f9d)] - **deps**: V8: backport [`5c76da8`](https://github.com/nodejs/node/commit/5c76da8ddcf8) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`0e64bd0dd6`](https://github.com/nodejs/node/commit/0e64bd0dd6)] - **deps**: V8: cherry-pick [`359d44d`](https://github.com/nodejs/node/commit/359d44df4cdd) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`142ce6838b`](https://github.com/nodejs/node/commit/142ce6838b)] - **deps**: V8: cherry-pick [`3805a69`](https://github.com/nodejs/node/commit/3805a698f7b6) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`2657c305cb`](https://github.com/nodejs/node/commit/2657c305cb)] - **deps**: V8: cherry-pick [`56fe020`](https://github.com/nodejs/node/commit/56fe020eec0c) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`5c5a93e533`](https://github.com/nodejs/node/commit/5c5a93e533)] - **deps**: V8: cherry-pick [`2b77ca2`](https://github.com/nodejs/node/commit/2b77ca200c56) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`cf49ebb052`](https://github.com/nodejs/node/commit/cf49ebb052)] - **deps**: V8: cherry-pick [`53784bd`](https://github.com/nodejs/node/commit/53784bdb8f01) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`3d351b29c1`](https://github.com/nodejs/node/commit/3d351b29c1)] - **deps**: V8: cherry-pick [`cb4faa9`](https://github.com/nodejs/node/commit/cb4faa902e9f) (Michaël Zasso) [#&#8203;39337](https://github.com/nodejs/node/pull/39337) - \[[`165130a3e0`](https://github.com/nodejs/node/commit/165130a3e0)] - **deps**: patch V8 to 9.1.269.38 (Michaël Zasso) [#&#8203;39196](https://github.com/nodejs/node/pull/39196) - \[[`c04fd2bb97`](https://github.com/nodejs/node/commit/c04fd2bb97)] - **deps**: upgrade npm to 7.19.1 (npm team) [#&#8203;39225](https://github.com/nodejs/node/pull/39225) - \[[`bf4c50f9d9`](https://github.com/nodejs/node/commit/bf4c50f9d9)] - **deps**: upgrade npm to 7.19.0 (npm team) [#&#8203;39148](https://github.com/nodejs/node/pull/39148) - \[[`8630b39376`](https://github.com/nodejs/node/commit/8630b39376)] - **deps**: update Acorn to v8.4.1 (Michaël Zasso) [#&#8203;39166](https://github.com/nodejs/node/pull/39166) - \[[`38ae4077c7`](https://github.com/nodejs/node/commit/38ae4077c7)] - **doc**: fix typos in Web Streams API documentation (Tobias Nießen) [#&#8203;39351](https://github.com/nodejs/node/pull/39351) - \[[`fb6616ecbb`](https://github.com/nodejs/node/commit/fb6616ecbb)] - **doc**: add text about moving long commit lists out of PR description (Danielle Adams) [#&#8203;39186](https://github.com/nodejs/node/pull/39186) - \[[`29c9cc8f03`](https://github.com/nodejs/node/commit/29c9cc8f03)] - **doc**: do not use & for "and" in text (Rich Trott) [#&#8203;39345](https://github.com/nodejs/node/pull/39345) - \[[`0b3b2695bc`](https://github.com/nodejs/node/commit/0b3b2695bc)] - **doc**: do not use tilde for "about" or "approximately" (Rich Trott) [#&#8203;39344](https://github.com/nodejs/node/pull/39344) - \[[`64a185e595`](https://github.com/nodejs/node/commit/64a185e595)] - **doc**: use consistent abbreviation formatting (Rich Trott) [#&#8203;39343](https://github.com/nodejs/node/pull/39343) - \[[`2573bf5116`](https://github.com/nodejs/node/commit/2573bf5116)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39277](https://github.com/nodejs/node/pull/39277) - \[[`63b6084724`](https://github.com/nodejs/node/commit/63b6084724)] - **doc**: put information about the past in details tags (Rich Trott) [#&#8203;39321](https://github.com/nodejs/node/pull/39321) - \[[`e26635085a`](https://github.com/nodejs/node/commit/e26635085a)] - **doc**: replace outdated `util.promisify` timer examples with references (foxxyz) [#&#8203;39164](https://github.com/nodejs/node/pull/39164) - \[[`d101a85e36`](https://github.com/nodejs/node/commit/d101a85e36)] - **doc**: move AndreasMadsen to emeritus (Rich Trott) [#&#8203;39315](https://github.com/nodejs/node/pull/39315) - \[[`2d552a32d6`](https://github.com/nodejs/node/commit/2d552a32d6)] - **doc**: move ofrobots to collaborator emeritus (Rich Trott) [#&#8203;39307](https://github.com/nodejs/node/pull/39307) - \[[`131d676f64`](https://github.com/nodejs/node/commit/131d676f64)] - **doc**: simplify CRAN mirror text in benchmark guide (Rich Trott) [#&#8203;39287](https://github.com/nodejs/node/pull/39287) - \[[`c92b80e631`](https://github.com/nodejs/node/commit/c92b80e631)] - **doc**: use "repository" instead of "repo" in onboarding.md (Rich Trott) [#&#8203;39286](https://github.com/nodejs/node/pull/39286) - \[[`81df9b1e92`](https://github.com/nodejs/node/commit/81df9b1e92)] - **doc**: update collaborator email address (Rich Trott) [#&#8203;39263](https://github.com/nodejs/node/pull/39263) - \[[`b8860f35c9`](https://github.com/nodejs/node/commit/b8860f35c9)] - **doc**: remove GitHub mark (Rich Trott) [#&#8203;39251](https://github.com/nodejs/node/pull/39251) - \[[`f06ebf1775`](https://github.com/nodejs/node/commit/f06ebf1775)] - **doc**: remove emailing the TSC from offboarding doc (Rich Trott) [#&#8203;39280](https://github.com/nodejs/node/pull/39280) - \[[`175a6569f4`](https://github.com/nodejs/node/commit/175a6569f4)] - **doc**: add annotation to writeFile `data` as `Object` (Jacob) [#&#8203;39167](https://github.com/nodejs/node/pull/39167) - \[[`4d53c63c22`](https://github.com/nodejs/node/commit/4d53c63c22)] - **doc**: fix boldface punctuation for full sentences (Rich Trott) [#&#8203;39278](https://github.com/nodejs/node/pull/39278) - \[[`146f733f43`](https://github.com/nodejs/node/commit/146f733f43)] - **doc**: fix constants usage in fs.access example (Cyrille Bourgois) [#&#8203;39289](https://github.com/nodejs/node/pull/39289) - \[[`eacee0ab17`](https://github.com/nodejs/node/commit/eacee0ab17)] - **doc**: use "repository" in guides versus repo (Michael Dawson) [#&#8203;39198](https://github.com/nodejs/node/pull/39198) - \[[`04bcfcfff1`](https://github.com/nodejs/node/commit/04bcfcfff1)] - **doc**: update Node-api version matrix (Michael Dawson) [#&#8203;39197](https://github.com/nodejs/node/pull/39197) - \[[`4dd6ab389a`](https://github.com/nodejs/node/commit/4dd6ab389a)] - **doc**: remove onboarding-extras (Rich Trott) [#&#8203;39252](https://github.com/nodejs/node/pull/39252) - \[[`a01dacfdcd`](https://github.com/nodejs/node/commit/a01dacfdcd)] - **doc**: move Sam Ruby to emeritus (Rich Trott) [#&#8203;39264](https://github.com/nodejs/node/pull/39264) - \[[`2bb3713b74`](https://github.com/nodejs/node/commit/2bb3713b74)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39250](https://github.com/nodejs/node/pull/39250) - \[[`2227c1368f`](https://github.com/nodejs/node/commit/2227c1368f)] - **doc**: fix color contrast for anchor marks in dark mode (Rich Trott) [#&#8203;39168](https://github.com/nodejs/node/pull/39168) - \[[`f8cdaad9d4`](https://github.com/nodejs/node/commit/f8cdaad9d4)] - **doc**: rename datatypes to data types (FrankEntriken) [#&#8203;39209](https://github.com/nodejs/node/pull/39209) - \[[`250024eaec`](https://github.com/nodejs/node/commit/250024eaec)] - **doc**: normalize CSS variable names and indentation (Rich Trott) [#&#8203;39199](https://github.com/nodejs/node/pull/39199) - \[[`db74a35348`](https://github.com/nodejs/node/commit/db74a35348)] - **doc**: remove unnecessary module format comments (Rich Trott) [#&#8203;39219](https://github.com/nodejs/node/pull/39219) - \[[`24a1f7ec84`](https://github.com/nodejs/node/commit/24a1f7ec84)] - **doc**: use more consistent formatting for deprecations (Rich Trott) [#&#8203;39218](https://github.com/nodejs/node/pull/39218) - \[[`24c0d7d872`](https://github.com/nodejs/node/commit/24c0d7d872)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39217](https://github.com/nodejs/node/pull/39217) - \[[`3e5ed72b0a`](https://github.com/nodejs/node/commit/3e5ed72b0a)] - **doc**: use "pull request" instead of "PR" in packages.md (Rich Trott) [#&#8203;39213](https://github.com/nodejs/node/pull/39213) - \[[`ddc24b2105`](https://github.com/nodejs/node/commit/ddc24b2105)] - **doc**: move v8.stopCoverage() to expected location in doc (Rich Trott) [#&#8203;39212](https://github.com/nodejs/node/pull/39212) - \[[`68c334c8c9`](https://github.com/nodejs/node/commit/68c334c8c9)] - **doc**: move vm.measureMemory() to expected location in doc (Rich Trott) [#&#8203;39211](https://github.com/nodejs/node/pull/39211) - \[[`81d52d7c79`](https://github.com/nodejs/node/commit/81d52d7c79)] - **doc**: fix CHANGELOG.md formatting (Richard Lau) [#&#8203;39223](https://github.com/nodejs/node/pull/39223) - \[[`9c3a5fd53e`](https://github.com/nodejs/node/commit/9c3a5fd53e)] - **doc**: add cc oss-security@lists.openwall.com (Daniel Bevenius) [#&#8203;39191](https://github.com/nodejs/node/pull/39191) - \[[`07ba2875ae`](https://github.com/nodejs/node/commit/07ba2875ae)] - **doc**: remove instructions for unsupported Node.js versions (Rich Trott) [#&#8203;39185](https://github.com/nodejs/node/pull/39185) - \[[`482851f647`](https://github.com/nodejs/node/commit/482851f647)] - **doc**: remove obsolete cc recommendations (Rich Trott) [#&#8203;39181](https://github.com/nodejs/node/pull/39181) - \[[`8311b29083`](https://github.com/nodejs/node/commit/8311b29083)] - **doc**: use "repository" in maintaining-V8 doc (Rich Trott) [#&#8203;39179](https://github.com/nodejs/node/pull/39179) - \[[`952580e1bf`](https://github.com/nodejs/node/commit/952580e1bf)] - **doc**: fix broken link in errors.md (Rich Trott) [#&#8203;39200](https://github.com/nodejs/node/pull/39200) - \[[`af1e1dba36`](https://github.com/nodejs/node/commit/af1e1dba36)] - **doc**: correct JavaScript primitive value names in n-api.md (legendecas) [#&#8203;39129](https://github.com/nodejs/node/pull/39129) - \[[`00728d1301`](https://github.com/nodejs/node/commit/00728d1301)] - **doc**: apply logical ordering to CSS variables (Rich Trott) [#&#8203;39169](https://github.com/nodejs/node/pull/39169) - \[[`aec2744e14`](https://github.com/nodejs/node/commit/aec2744e14)] - **doc**: remove file name from self-reference links (Antoine du Hamel) [#&#8203;39165](https://github.com/nodejs/node/pull/39165) - \[[`74bb915178`](https://github.com/nodejs/node/commit/74bb915178)] - **doc**: use repository instead of repo (Rich Trott) [#&#8203;39157](https://github.com/nodejs/node/pull/39157) - \[[`a669a191a1`](https://github.com/nodejs/node/commit/a669a191a1)] - **doc**: use ASCII order for md refs (Antoine du Hamel) [#&#8203;39170](https://github.com/nodejs/node/pull/39170) - \[[`21e8720155`](https://github.com/nodejs/node/commit/21e8720155)] - **doc**: fix `EventTarget.dispatchEvent` docs (Rohan Sharma) [#&#8203;39127](https://github.com/nodejs/node/pull/39127) - \[[`90ec7660bc`](https://github.com/nodejs/node/commit/90ec7660bc)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39082](https://github.com/nodejs/node/pull/39082) - \[[`81cebec5cc`](https://github.com/nodejs/node/commit/81cebec5cc)] - **doc**: esm examples /w imports for process, Buffer (Guy Bedford) [#&#8203;39043](https://github.com/nodejs/node/pull/39043) - \[[`c1588887a6`](https://github.com/nodejs/node/commit/c1588887a6)] - **doc**: fix napi_default_property name (Davidson Francis) [#&#8203;39104](https://github.com/nodejs/node/pull/39104) - \[[`a440f6c69c`](https://github.com/nodejs/node/commit/a440f6c69c)] - **doc**: fix dead links in packages.md (Michaël Zasso) [#&#8203;39113](https://github.com/nodejs/node/pull/39113) - \[[`33cad271c5`](https://github.com/nodejs/node/commit/33cad271c5)] - **errors**: remove eager stack generation for node errors (Gus Caplan) [#&#8203;39182](https://github.com/nodejs/node/pull/39182) - \[[`ac05a0a8a3`](https://github.com/nodejs/node/commit/ac05a0a8a3)] - **errors**: don't throw TypeError on missing export (Benjamin Coe) [#&#8203;39017](https://github.com/nodejs/node/pull/39017) - \[[`83f3b959f9`](https://github.com/nodejs/node/commit/83f3b959f9)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028) - \[[`ac7184d8c7`](https://github.com/nodejs/node/commit/ac7184d8c7)] - **http**: clean up HttpParser correctly (Tobias Koppers) [#&#8203;39292](https://github.com/nodejs/node/pull/39292) - \[[`35331cbd13`](https://github.com/nodejs/node/commit/35331cbd13)] - **http,https**: align server option of https with http (Qingyu Deng) [#&#8203;38992](https://github.com/nodejs/node/pull/38992) - \[[`29194d4f88`](https://github.com/nodejs/node/commit/29194d4f88)] - **inspector**: move inspector async hooks to environment (Joyee Cheung) [#&#8203;39112](https://github.com/nodejs/node/pull/39112) - \[[`ecf627a9af`](https://github.com/nodejs/node/commit/ecf627a9af)] - **lib**: rename TransferedReadableStream etc (Tobias Nießen) [#&#8203;39352](https://github.com/nodejs/node/pull/39352) - \[[`0e55cb72df`](https://github.com/nodejs/node/commit/0e55cb72df)] - **lib**: make lazyDOMException more common (Khaidi Chu) [#&#8203;39105](https://github.com/nodejs/node/pull/39105) - \[[`cfd96aa8f9`](https://github.com/nodejs/node/commit/cfd96aa8f9)] - **meta**: fix tls code owners (Robert Nagy) [#&#8203;39355](https://github.com/nodejs/node/pull/39355) - \[[`e5c2d80560`](https://github.com/nodejs/node/commit/e5c2d80560)] - **meta**: use form schema for bug report template (Michaël Zasso) [#&#8203;39194](https://github.com/nodejs/node/pull/39194) - \[[`bd472daf0c`](https://github.com/nodejs/node/commit/bd472daf0c)] - **meta**: add [@&#8203;nodejs/actions](https://github.com/nodejs/actions) as CODEOWNERS (Mary Marchini) [#&#8203;39119](https://github.com/nodejs/node/pull/39119) - \[[`63f87027e3`](https://github.com/nodejs/node/commit/63f87027e3)] - **node-api**: cctest on v8impl::Reference (legendecas) [#&#8203;38970](https://github.com/nodejs/node/pull/38970) - \[[`7ea98fbccd`](https://github.com/nodejs/node/commit/7ea98fbccd)] - **perf_hooks**: refactor perf_hooks for snapshot building (Joyee Cheung) [#&#8203;38971](https://github.com/nodejs/node/pull/38971) - \[[`20cc8ec2af`](https://github.com/nodejs/node/commit/20cc8ec2af)] - **readline**: allow completer to rewrite existing input (Anna Henningsen) [#&#8203;39178](https://github.com/nodejs/node/pull/39178) - \[[`b168ec2a2a`](https://github.com/nodejs/node/commit/b168ec2a2a)] - **repl**: processTopLevelAwait fallback error handling (ejose19) [#&#8203;39290](https://github.com/nodejs/node/pull/39290) - \[[`a101fe68ad`](https://github.com/nodejs/node/commit/a101fe68ad)] - **repl**: correctly hoist top level await declarations (ejose19) [#&#8203;39265](https://github.com/nodejs/node/pull/39265) - \[[`d441d91450`](https://github.com/nodejs/node/commit/d441d91450)] - **repl**: ensure correct syntax err for await parsing (Guy Bedford) [#&#8203;39154](https://github.com/nodejs/node/pull/39154) - \[[`9184259a54`](https://github.com/nodejs/node/commit/9184259a54)] - **src**: add JSDoc typings for v8 (Voltrex) [#&#8203;38944](https://github.com/nodejs/node/pull/38944) - \[[`66553feeba`](https://github.com/nodejs/node/commit/66553feeba)] - **src**: compare IPv4 addresses in host byte order (Colin Ihrig) [#&#8203;39096](https://github.com/nodejs/node/pull/39096) - \[[`ea8d83bf59`](https://github.com/nodejs/node/commit/ea8d83bf59)] - **src,crypto**: fix 0-length output crash in webcrypto (Khaidi Chu) [#&#8203;38913](https://github.com/nodejs/node/pull/38913) - \[[`683c995001`](https://github.com/nodejs/node/commit/683c995001)] - **src,zlib**: tighten up Z_\*\_WINDOWBITS macros (Khaidi Chu) [#&#8203;39115](https://github.com/nodejs/node/pull/39115) - \[[`cb32f69e00`](https://github.com/nodejs/node/commit/cb32f69e00)] - **stream**: cleanup async handling (Robert Nagy) [#&#8203;39329](https://github.com/nodejs/node/pull/39329) - \[[`1fc6382942`](https://github.com/nodejs/node/commit/1fc6382942)] - **stream**: don't emit prefinish after error or close (Robert Nagy) [#&#8203;39332](https://github.com/nodejs/node/pull/39332) - \[[`35b6669e13`](https://github.com/nodejs/node/commit/35b6669e13)] - **stream**: use finished for pump (Robert Nagy) [#&#8203;39203](https://github.com/nodejs/node/pull/39203) - \[[`9af62a1357`](https://github.com/nodejs/node/commit/9af62a1357)] - **(SEMVER-MINOR)** **stream**: implement WHATWG streams (James M Snell) [#&#8203;39062](https://github.com/nodejs/node/pull/39062) - \[[`0bb980aeaf`](https://github.com/nodejs/node/commit/0bb980aeaf)] - **test**: remove eslint-disable comment from fixture file (Rich Trott) [#&#8203;39320](https://github.com/nodejs/node/pull/39320) - \[[`21f77031fb`](https://github.com/nodejs/node/commit/21f77031fb)] - **test**: move debugger test case to parallel (Rich Trott) [#&#8203;39300](https://github.com/nodejs/node/pull/39300) - \[[`0ec93a1fc1`](https://github.com/nodejs/node/commit/0ec93a1fc1)] - **test**: use common.PORT instead of hardcoded port number (Rich Trott) [#&#8203;39298](https://github.com/nodejs/node/pull/39298) - \[[`11a8b81caf`](https://github.com/nodejs/node/commit/11a8b81caf)] - **test**: remove debugger workaround for AIX (Rich Trott) [#&#8203;39296](https://github.com/nodejs/node/pull/39296) - \[[`8e77aa23f1`](https://github.com/nodejs/node/commit/8e77aa23f1)] - **test**: add test for debugger restart message issue (Rich Trott) [#&#8203;39273](https://github.com/nodejs/node/pull/39273) - \[[`13755599e1`](https://github.com/nodejs/node/commit/13755599e1)] - **test**: remove workaround code in debugger test (Rich Trott) [#&#8203;39238](https://github.com/nodejs/node/pull/39238) - \[[`1f31e3c774`](https://github.com/nodejs/node/commit/1f31e3c774)] - **test**: remove checks for armv6 (Rich Trott) [#&#8203;39162](https://github.com/nodejs/node/pull/39162) - \[[`d486d0117c`](https://github.com/nodejs/node/commit/d486d0117c)] - **test**: move test-debugger-address to parallel (Rich Trott) [#&#8203;39236](https://github.com/nodejs/node/pull/39236) - \[[`cdc7a19f48`](https://github.com/nodejs/node/commit/cdc7a19f48)] - **test**: remove common.enoughTestCpu (Rich Trott) [#&#8203;39161](https://github.com/nodejs/node/pull/39161) - \[[`cc32365f56`](https://github.com/nodejs/node/commit/cc32365f56)] - **(SEMVER-MINOR)** **test**: add WPT streams tests (James M Snell) [#&#8203;39062](https://github.com/nodejs/node/pull/39062) - \[[`fff21a4afb`](https://github.com/nodejs/node/commit/fff21a4afb)] - **test**: replace "inspector-cli" with "debugger" (Rich Trott) [#&#8203;39156](https://github.com/nodejs/node/pull/39156) - \[[`df17c62818`](https://github.com/nodejs/node/commit/df17c62818)] - **test**: use localhost test instead of connecting to remote (Adam Majer) [#&#8203;39011](https://github.com/nodejs/node/pull/39011) - \[[`dfe99d2aac`](https://github.com/nodejs/node/commit/dfe99d2aac)] - **tls**: move legacy code into own file (Robert Nagy) [#&#8203;39333](https://github.com/nodejs/node/pull/39333) - \[[`f338fddbb0`](https://github.com/nodejs/node/commit/f338fddbb0)] - **tools**: add GitHub Action to run find-inactive-collaborators.mjs (Rich Trott) [#&#8203;39335](https://github.com/nodejs/node/pull/39335) - \[[`b3a0dd1e4a`](https://github.com/nodejs/node/commit/b3a0dd1e4a)] - **tools**: pass bot token to node-pr-labeler (Michaël Zasso) [#&#8203;39271](https://github.com/nodejs/node/pull/39271) - \[[`b56a3d9009`](https://github.com/nodejs/node/commit/b56a3d9009)] - **tools**: update gyp-next to v0.9.3 (Jiawen Geng) [#&#8203;39291](https://github.com/nodejs/node/pull/39291) - \[[`3cd9f5e298`](https://github.com/nodejs/node/commit/3cd9f5e298)] - **tools**: add find-inactive-collaborators.js (Rich Trott) [#&#8203;39262](https://github.com/nodejs/node/pull/39262) - \[[`0673ede3ad`](https://github.com/nodejs/node/commit/0673ede3ad)] - **tools**: take ownership of deps/v8/tools/node (Michaël Zasso) [#&#8203;39222](https://github.com/nodejs/node/pull/39222) - \[[`cb8c6ffbce`](https://github.com/nodejs/node/commit/cb8c6ffbce)] - **tools**: update ESLint to 7.30.0 (Colin Ihrig) [#&#8203;39242](https://github.com/nodejs/node/pull/39242) - \[[`d5113f9e34`](https://github.com/nodejs/node/commit/d5113f9e34)] - **tools**: remove armv6 from test tools (Rich Trott) [#&#8203;39162](https://github.com/nodejs/node/pull/39162) - \[[`802d9c4488`](https://github.com/nodejs/node/commit/802d9c4488)] - **tools**: update path-parse to 1.0.7 (Rich Trott) [#&#8203;39232](https://github.com/nodejs/node/pull/39232) - \[[`ab9ccd014c`](https://github.com/nodejs/node/commit/ab9ccd014c)] - **tools**: remove unused `lint-pr-commit-message.sh` (Richard Lau) [#&#8203;39120](https://github.com/nodejs/node/pull/39120) - \[[`6200f3b35f`](https://github.com/nodejs/node/commit/6200f3b35f)] - **tools**: update [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) to 7.14.7 (Rich Trott) [#&#8203;39160](https://github.com/nodejs/node/pull/39160) - \[[`dfe5d1139c`](https://github.com/nodejs/node/commit/dfe5d1139c)] - **tools**: update remark-preset-lint-node to 2.4.1 (Rich Trott) [#&#8203;39201](https://github.com/nodejs/node/pull/39201) - \[[`4715105581`](https://github.com/nodejs/node/commit/4715105581)] - **tools**: upgrade `highlight.js` to version 11.0.1 (Antoine du Hamel) [#&#8203;39032](https://github.com/nodejs/node/pull/39032) - \[[`2481ddd08d`](https://github.com/nodejs/node/commit/2481ddd08d)] - **tools,doc**: fix error message for unrecognized type (Antoine du Hamel) [#&#8203;39221](https://github.com/nodejs/node/pull/39221) - \[[`adb812c042`](https://github.com/nodejs/node/commit/adb812c042)] - **typings**: add a few JSDoc typings for the net lib module (nerdthatnoonelikes) [#&#8203;38953](https://github.com/nodejs/node/pull/38953) - \[[`29673b8ac8`](https://github.com/nodejs/node/commit/29673b8ac8)] - **typings**: add JSDoc typings for timers (Voltrex) [#&#8203;38834](https://github.com/nodejs/node/pull/38834) - \[[`fe1c81f247`](https://github.com/nodejs/node/commit/fe1c81f247)] - **wasi**: use missing validator (Voltrex) [#&#8203;39070](https://github.com/nodejs/node/pull/39070) ### [`v16.4.2`](https://github.com/nodejs/node/releases/v16.4.2) [Compare Source](https://github.com/nodejs/node/compare/v16.4.1...v16.4.2) ##### Notable Changes Node.js 16.4.1 introduced a regression in the Windows installer on non-English locales that is being fixed in this release. There is no need to download this release if you are not using the Windows installer. ##### Commits - \[[`76e709ec63`](https://github.com/nodejs/node/commit/76e709ec63)] - **win,msi**: use localized "Authenticated Users" name (Richard Lau) [#&#8203;39241](https://github.com/nodejs/node/pull/39241) ### [`v16.4.1`](https://github.com/nodejs/node/releases/v16.4.1) [Compare Source](https://github.com/nodejs/node/compare/v16.4.0...v16.4.1) This is a security release. ##### Notable Changes Vulnerabilities fixed: - **CVE-2021-22918**: libuv upgrade - Out of bounds read (Medium) - Node.js is vulnerable to out-of-bounds read in libuv's uv\_\_idna_toascii() function which is used to convert strings to ASCII. This is called by Node's dns module's lookup() function and can lead to information disclosures or crashes. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22918 - **CVE-2021-22921**: Windows installer - Node Installer Local Privilege Escalation (Medium) - Node.js is vulnerable to local privilege escalation attacks under certain conditions on Windows platforms. More specifically, improper configuration of permissions in the installation directory allows an attacker to perform two different escalation attacks: PATH and DLL hijacking. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22921 ##### Commits - \[[`d33aead28b`](https://github.com/nodejs/node/commit/d33aead28b)] - **deps**: uv: cherry-pick [`99c29c9`](https://github.com/nodejs/node/commit/99c29c9c2c9b) (Ben Noordhuis) [nodejs-private/node-private#&#8203;267](https://github.com/nodejs-private/node-private/pull/267) - \[[`2690907b81`](https://github.com/nodejs/node/commit/2690907b81)] - **win,msi**: set install directory permission (AkshayK) [nodejs-private/node-private#&#8203;269](https://github.com/nodejs-private/node-private/pull/269) ### [`v16.4.0`](https://github.com/nodejs/node/releases/v16.4.0) [Compare Source](https://github.com/nodejs/node/compare/v16.3.0...v16.4.0) ##### Notable changes - **async_hooks**: - stabilize part of AsyncLocalStorage (Vladimir de Turckheim) [#&#8203;37675](https://github.com/nodejs/node/pull/37675) - **deps**: - upgrade npm to 7.18.1 (npm team) [#&#8203;39065](https://github.com/nodejs/node/pull/39065) - update V8 to 9.1.269.36 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - **dns**: - allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099) ##### Commits - \[[`d2b972ee52`](https://github.com/nodejs/node/commit/d2b972ee52)] - **async_hooks**: check for empty contexts before removing (Bryan English) [#&#8203;39095](https://github.com/nodejs/node/pull/39095) - \[[`03e75fda4c`](https://github.com/nodejs/node/commit/03e75fda4c)] - **async_hooks**: switch between native and context hooks correctly (Stephen Belanger) [#&#8203;38912](https://github.com/nodejs/node/pull/38912) - \[[`8115e6ee6d`](https://github.com/nodejs/node/commit/8115e6ee6d)] - **(SEMVER-MINOR)** **async_hooks**: stabilize part of AsyncLocalStorage (Vladimir de Turckheim) [#&#8203;37675](https://github.com/nodejs/node/pull/37675) - \[[`5f51729014`](https://github.com/nodejs/node/commit/5f51729014)] - **bootstrap**: move event loop handle checking into snapshot builder (Joyee Cheung) [#&#8203;39007](https://github.com/nodejs/node/pull/39007) - \[[`9d100aa269`](https://github.com/nodejs/node/commit/9d100aa269)] - **bootstrap**: split NodeMainInstance::Run() (Joyee Cheung) [#&#8203;39007](https://github.com/nodejs/node/pull/39007) - \[[`2aaf2f231f`](https://github.com/nodejs/node/commit/2aaf2f231f)] - **build**: reconfigure when gyp files change on Windows (Joyee Cheung) [#&#8203;39066](https://github.com/nodejs/node/pull/39066) - \[[`7f225a05ee`](https://github.com/nodejs/node/commit/7f225a05ee)] - ***Revert*** "**build**: work around bug in MSBuild v16.10.0" (Michaël Zasso) [#&#8203;38977](https://github.com/nodejs/node/pull/38977) - \[[`1853127dde`](https://github.com/nodejs/node/commit/1853127dde)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`c0d236f5ea`](https://github.com/nodejs/node/commit/c0d236f5ea)] - **build**: make build-addons errors fail the build (Richard Lau) [#&#8203;38983](https://github.com/nodejs/node/pull/38983) - \[[`173292bcf8`](https://github.com/nodejs/node/commit/173292bcf8)] - **build**: fix commit-queue default branch (Mary Marchini) [#&#8203;38998](https://github.com/nodejs/node/pull/38998) - \[[`e939e243bf`](https://github.com/nodejs/node/commit/e939e243bf)] - **build**: don't pass python override to V8 build (Richard Lau) [#&#8203;38969](https://github.com/nodejs/node/pull/38969) - \[[`651c58b412`](https://github.com/nodejs/node/commit/651c58b412)] - **build**: correct Xcode spelling in .gitignore (bl-ue) [#&#8203;38895](https://github.com/nodejs/node/pull/38895) - \[[`5203c9ced7`](https://github.com/nodejs/node/commit/5203c9ced7)] - **build**: fast-track npm PRs and dont-land them on LTS (Michaël Zasso) [#&#8203;38885](https://github.com/nodejs/node/pull/38885) - \[[`7de57d4d33`](https://github.com/nodejs/node/commit/7de57d4d33)] - **build**: dont-land gyp-next PRs on LTS branches (Michaël Zasso) [#&#8203;38887](https://github.com/nodejs/node/pull/38887) - \[[`e87cd4542b`](https://github.com/nodejs/node/commit/e87cd4542b)] - **child_process**: refactor to use `validateBoolean` (Qingyu Deng) [#&#8203;38927](https://github.com/nodejs/node/pull/38927) - \[[`69fa9e16e9`](https://github.com/nodejs/node/commit/69fa9e16e9)] - **(SEMVER-MINOR)** **child_process**: allow `options.cwd` receive a URL (Khaidi Chu) [#&#8203;38862](https://github.com/nodejs/node/pull/38862) - \[[`cf9d686c35`](https://github.com/nodejs/node/commit/cf9d686c35)] - **crypto**: fix aes crash when tag length too small (Khaidi Chu) [#&#8203;38914](https://github.com/nodejs/node/pull/38914) - \[[`1799ea36f0`](https://github.com/nodejs/node/commit/1799ea36f0)] - **crypto**: use compatible version of EVP_CIPHER_name (Shelley Vohr) [#&#8203;38925](https://github.com/nodejs/node/pull/38925) - \[[`6d5dc63ae4`](https://github.com/nodejs/node/commit/6d5dc63ae4)] - **crypto**: fix label cast in EVP_PKEY_CTX_set0\_rsa_oaep_label (Shelley Vohr) [#&#8203;38926](https://github.com/nodejs/node/pull/38926) - \[[`6e93c17bf5`](https://github.com/nodejs/node/commit/6e93c17bf5)] - **crypto**: use EVP_get_cipherbynid directly (Shelley Vohr) [#&#8203;38901](https://github.com/nodejs/node/pull/38901) - \[[`82c293959e`](https://github.com/nodejs/node/commit/82c293959e)] - **crypto**: add missing rand.h include (Shelley Vohr) [#&#8203;38864](https://github.com/nodejs/node/pull/38864) - \[[`e4f802de9a`](https://github.com/nodejs/node/commit/e4f802de9a)] - **debugger**: rename internal library for clarity (Rich Trott) [#&#8203;39080](https://github.com/nodejs/node/pull/39080) - \[[`1e8bdab581`](https://github.com/nodejs/node/commit/1e8bdab581)] - **debugger**: use ERR_DEBUGGER_STARTUP_ERROR in \_inspect.js (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`b43cb69fbb`](https://github.com/nodejs/node/commit/b43cb69fbb)] - **debugger**: use error codes in debugger REPL (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`dc9218136b`](https://github.com/nodejs/node/commit/dc9218136b)] - **debugger**: use ERR_DEBUGGER_ERROR in debugger client (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`711916a271`](https://github.com/nodejs/node/commit/711916a271)] - **debugger**: remove unnecessary boilerplate copyright comment (Rich Trott) [#&#8203;38952](https://github.com/nodejs/node/pull/38952) - \[[`0f65e41442`](https://github.com/nodejs/node/commit/0f65e41442)] - **debugger**: reduce scope of eslint disable comment (Rich Trott) [#&#8203;38946](https://github.com/nodejs/node/pull/38946) - \[[`1fa724ec5a`](https://github.com/nodejs/node/commit/1fa724ec5a)] - **deps**: upgrade npm to 7.18.1 (npm team) [#&#8203;39065](https://github.com/nodejs/node/pull/39065) - \[[`c6aa68598d`](https://github.com/nodejs/node/commit/c6aa68598d)] - **deps**: upgrade npm to 7.17.0 (npm team) [#&#8203;38999](https://github.com/nodejs/node/pull/38999) - \[[`864fe9910b`](https://github.com/nodejs/node/commit/864fe9910b)] - **deps**: make V8 9.1 abi-compatible with 9.0 (Michaël Zasso) [#&#8203;38991](https://github.com/nodejs/node/pull/38991) - \[[`c93f3573eb`](https://github.com/nodejs/node/commit/c93f3573eb)] - **deps**: V8: cherry-pick [`fa4cb17`](https://github.com/nodejs/node/commit/fa4cb172cde2) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`3c6c28b0a1`](https://github.com/nodejs/node/commit/3c6c28b0a1)] - **deps**: V8: cherry-pick [`4c07451`](https://github.com/nodejs/node/commit/4c074516397b) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`3c37396d5c`](https://github.com/nodejs/node/commit/3c37396d5c)] - **deps**: V8: cherry-pick [`5f44131`](https://github.com/nodejs/node/commit/5f4413194480) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`3433559a55`](https://github.com/nodejs/node/commit/3433559a55)] - **deps**: V8: cherry-pick [`272445f`](https://github.com/nodejs/node/commit/272445f10927) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`f56c78574e`](https://github.com/nodejs/node/commit/f56c78574e)] - **deps**: V8: cherry-pick [`c0fceaa`](https://github.com/nodejs/node/commit/c0fceaa0669b) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`7197fcec93`](https://github.com/nodejs/node/commit/7197fcec93)] - **deps**: V8: cherry-pick [`d59db06`](https://github.com/nodejs/node/commit/d59db06bf542) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`bf7aa9fef8`](https://github.com/nodejs/node/commit/bf7aa9fef8)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`eac377bc15`](https://github.com/nodejs/node/commit/eac377bc15)] - **deps**: V8: backport [`aaacffa`](https://github.com/nodejs/node/commit/aaacffa1e003) (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`1a7c8a12c1`](https://github.com/nodejs/node/commit/1a7c8a12c1)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`3c9a75522b`](https://github.com/nodejs/node/commit/3c9a75522b)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`8ed258339a`](https://github.com/nodejs/node/commit/8ed258339a)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`4ef37c83a9`](https://github.com/nodejs/node/commit/4ef37c83a9)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`7c61c6ee25`](https://github.com/nodejs/node/commit/7c61c6ee25)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`e82ef4148e`](https://github.com/nodejs/node/commit/e82ef4148e)] - **(SEMVER-MINOR)** **deps**: update V8 to 9.1.269.36 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`70af146745`](https://github.com/nodejs/node/commit/70af146745)] - **deps**: upgrade npm to 7.16.0 (npm team) [#&#8203;38920](https://github.com/nodejs/node/pull/38920) - \[[`a71df7630e`](https://github.com/nodejs/node/commit/a71df7630e)] - **(SEMVER-MINOR)** **dns**: allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099) - \[[`dce256b210`](https://github.com/nodejs/node/commit/dce256b210)] - **doc**: remove references to deleted freenode channels (devsnek) [#&#8203;39047](https://github.com/nodejs/node/pull/39047) - \[[`1afff98805`](https://github.com/nodejs/node/commit/1afff98805)] - **doc**: fix typos (bl-ue) [#&#8203;39049](https://github.com/nodejs/node/pull/39049) - \[[`858f66e691`](https://github.com/nodejs/node/commit/858f66e691)] - **doc**: add missing parameter types (Voltrex) [#&#8203;39013](https://github.com/nodejs/node/pull/39013) - \[[`ed91379186`](https://github.com/nodejs/node/commit/ed91379186)] - **doc**: clearify that http does chunked encoding itself (Mao Wtm) [#&#8203;28379](https://github.com/nodejs/node/pull/28379) - \[[`51561f390a`](https://github.com/nodejs/node/commit/51561f390a)] - **doc**: add missing changelog links (Antoine du Hamel) [#&#8203;39016](https://github.com/nodejs/node/pull/39016) - \[[`a19170eb9d`](https://github.com/nodejs/node/commit/a19170eb9d)] - **doc**: clarify that only one Python version is required to build (bl-ue) [#&#8203;38894](https://github.com/nodejs/node/pull/38894) - \[[`7b219992e0`](https://github.com/nodejs/node/commit/7b219992e0)] - **doc**: fix markup for aesImportParams (Tobias Nießen) [#&#8203;38898](https://github.com/nodejs/node/pull/38898) - \[[`405b50cdba`](https://github.com/nodejs/node/commit/405b50cdba)] - **doc**: use `await` in filehandle.truncate() snippet (RA80533) [#&#8203;38939](https://github.com/nodejs/node/pull/38939) - \[[`5218fe86d1`](https://github.com/nodejs/node/commit/5218fe86d1)] - **doc**: fixed typo in process.md (Derevianchenko Maksym) [#&#8203;38941](https://github.com/nodejs/node/pull/38941) - \[[`f903ad85f2`](https://github.com/nodejs/node/commit/f903ad85f2)] - **doc**: add missing semis after classes (Darshan Sen) [#&#8203;38931](https://github.com/nodejs/node/pull/38931) - \[[`0bdeeda3b5`](https://github.com/nodejs/node/commit/0bdeeda3b5)] - **doc**: update write callback documentation (Simone Busoli) [#&#8203;38959](https://github.com/nodejs/node/pull/38959) - \[[`7a7c0588ad`](https://github.com/nodejs/node/commit/7a7c0588ad)] - **doc**: mark util.inherits as legacy (Voltrex) [#&#8203;38896](https://github.com/nodejs/node/pull/38896) - \[[`f6964dc506`](https://github.com/nodejs/node/commit/f6964dc506)] - **doc**: clarify when `readable._read(...)` is called (Shaun Keys) [#&#8203;38726](https://github.com/nodejs/node/pull/38726) - \[[`3481b02e77`](https://github.com/nodejs/node/commit/3481b02e77)] - **doc**: mark Node.js v15.x as EOL (Antoine du Hamel) [#&#8203;38891](https://github.com/nodejs/node/pull/38891) - \[[`17a9846920`](https://github.com/nodejs/node/commit/17a9846920)] - **doc**: fix .mjs syntax in crypto.md (himself65) [#&#8203;38882](https://github.com/nodejs/node/pull/38882) - \[[`8c7b2bab5f`](https://github.com/nodejs/node/commit/8c7b2bab5f)] - **doc,fs**: remove experimental status for WHATWG URL as path (Antoine du Hamel) [#&#8203;38870](https://github.com/nodejs/node/pull/38870) - \[[`eddde6c31a`](https://github.com/nodejs/node/commit/eddde6c31a)] - **errors**: don't rekey on primitive type (Benjamin Coe) [#&#8203;39025](https://github.com/nodejs/node/pull/39025) - \[[`3d7892ef39`](https://github.com/nodejs/node/commit/3d7892ef39)] - **errors**: add ERR_DEBUGGER_STARTUP_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`631856ea32`](https://github.com/nodejs/node/commit/631856ea32)] - **errors**: add ERR_DEBUGGER_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`336571fbdd`](https://github.com/nodejs/node/commit/336571fbdd)] - ***Revert*** "**http**: make HEAD method to work with keep-alive" (Michaël Zasso) [#&#8203;38949](https://github.com/nodejs/node/pull/38949) - \[[`c2b4fbba0f`](https://github.com/nodejs/node/commit/c2b4fbba0f)] - **lib**: remove semicolon in preparation for babel/eslint-parser update (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094) - \[[`f17dde81f3`](https://github.com/nodejs/node/commit/f17dde81f3)] - **lib**: make internal/options lazy (Joyee Cheung) [#&#8203;38993](https://github.com/nodejs/node/pull/38993) - \[[`551430514b`](https://github.com/nodejs/node/commit/551430514b)] - **lib**: add JSDoc typings for child_process (Voltrex) [#&#8203;38222](https://github.com/nodejs/node/pull/38222) - \[[`ded83350a0`](https://github.com/nodejs/node/commit/ded83350a0)] - **lib**: make primordials Promise methods safe (Antoine du Hamel) [#&#8203;38650](https://github.com/nodejs/node/pull/38650) - \[[`637c1fa83c`](https://github.com/nodejs/node/commit/637c1fa83c)] - **lib**: refactor debuglog init (Antoine du Hamel) [#&#8203;38838](https://github.com/nodejs/node/pull/38838) - \[[`5b5e07a2cc`](https://github.com/nodejs/node/commit/5b5e07a2cc)] - **meta**: update label-pr-config (Michaël Zasso) [#&#8203;38950](https://github.com/nodejs/node/pull/38950) - \[[`92ed1c6cce`](https://github.com/nodejs/node/commit/92ed1c6cce)] - **module**: fix legacy `node` specifier resolution to resolve `"main"` field (Antoine du Hamel) [#&#8203;38979](https://github.com/nodejs/node/pull/38979) - \[[`4174f139b6`](https://github.com/nodejs/node/commit/4174f139b6)] - **net**: use missing validator (Voltrex) [#&#8203;38984](https://github.com/nodejs/node/pull/38984) - \[[`f7724ab342`](https://github.com/nodejs/node/commit/f7724ab342)] - **node-api**: avoid crashing on passed-in null string (Gabriel Schulhof) [#&#8203;38923](https://github.com/nodejs/node/pull/38923) - \[[`ec3e5b4c15`](https://github.com/nodejs/node/commit/ec3e5b4c15)] - **node-api**: avoid SecondPassCallback crash (Michael Dawson) [#&#8203;38899](https://github.com/nodejs/node/pull/38899) - \[[`74f5e30d69`](https://github.com/nodejs/node/commit/74f5e30d69)] - **node-api**: rtn pending excep on napi_new_instance (legendecas) [#&#8203;38798](https://github.com/nodejs/node/pull/38798) - \[[`4c6193fea1`](https://github.com/nodejs/node/commit/4c6193fea1)] - **report**: generates report on threads with no isolates (legendecas) [#&#8203;38994](https://github.com/nodejs/node/pull/38994) - \[[`3c7a7d9ee4`](https://github.com/nodejs/node/commit/3c7a7d9ee4)] - **(SEMVER-MINOR)** **src**: allow to negate boolean CLI flags (Michaël Zasso) [#&#8203;39023](https://github.com/nodejs/node/pull/39023) - \[[`284d9c6228`](https://github.com/nodejs/node/commit/284d9c6228)] - **src**: cleanup uv_fs_t regardless of success or not (legendecas) [#&#8203;38996](https://github.com/nodejs/node/pull/38996) - \[[`902bb858d7`](https://github.com/nodejs/node/commit/902bb858d7)] - **src**: refactor to use locale functions (Darshan Sen) [#&#8203;39014](https://github.com/nodejs/node/pull/39014) - \[[`10370c5e8a`](https://github.com/nodejs/node/commit/10370c5e8a)] - **src**: fix multiple AddLinkedBinding() calls (Anna Henningsen) [#&#8203;39012](https://github.com/nodejs/node/pull/39012) - \[[`ff8313c3a5`](https://github.com/nodejs/node/commit/ff8313c3a5)] - **src**: throw error in LoadBuiltinModuleSource when reading fails (Joyee Cheung) [#&#8203;38904](https://github.com/nodejs/node/pull/38904) - \[[`9ba5518f08`](https://github.com/nodejs/node/commit/9ba5518f08)] - **src**: skip test_fatal/test_threads for Debug builds (Daniel Bevenius) [#&#8203;38805](https://github.com/nodejs/node/pull/38805) - \[[`06afb8df65`](https://github.com/nodejs/node/commit/06afb8df65)] - **(SEMVER-MINOR)** **src**: make InitializeOncePerProcess more flexible (Shelley Vohr) [#&#8203;38888](https://github.com/nodejs/node/pull/38888) - \[[`db4b192113`](https://github.com/nodejs/node/commit/db4b192113)] - **src**: add not-weak DCHECK to PersistentToLocal::Strong (Anna Henningsen) [#&#8203;38875](https://github.com/nodejs/node/pull/38875) - \[[`08b2a4a138`](https://github.com/nodejs/node/commit/08b2a4a138)] - **src,test**: raise error for --enable-fips when no FIPS (Daniel Bevenius) [#&#8203;38859](https://github.com/nodejs/node/pull/38859) - \[[`5d92c09bbf`](https://github.com/nodejs/node/commit/5d92c09bbf)] - **src,url**: separate some tables out of node_url.cc (Khaidi Chu) [#&#8203;38988](https://github.com/nodejs/node/pull/38988) - \[[`c20e28e1a0`](https://github.com/nodejs/node/commit/c20e28e1a0)] - **stream**: fix pipeline pump (Robert Nagy) [#&#8203;39006](https://github.com/nodejs/node/pull/39006) - \[[`7b026d8a72`](https://github.com/nodejs/node/commit/7b026d8a72)] - **test**: move inspector-cli tests to sequential (Rich Trott) [#&#8203;39079](https://github.com/nodejs/node/pull/39079) - \[[`a53911b166`](https://github.com/nodejs/node/commit/a53911b166)] - **test**: improve buffer coverage (Rongjian Zhang) [#&#8203;38538](https://github.com/nodejs/node/pull/38538) - \[[`5e9175f148`](https://github.com/nodejs/node/commit/5e9175f148)] - **test**: fix name of variable in inspector-cli test (Tobias Nießen) [#&#8203;38869](https://github.com/nodejs/node/pull/38869) - \[[`bd924610ec`](https://github.com/nodejs/node/commit/bd924610ec)] - **test**: fix typo (Houssem Chebab) [#&#8203;39045](https://github.com/nodejs/node/pull/39045) - \[[`d50df5dec1`](https://github.com/nodejs/node/commit/d50df5dec1)] - **test**: fix typo in test-http2-invalidheaderfield.js (Ikko Ashimine) [#&#8203;39021](https://github.com/nodejs/node/pull/39021) - \[[`6111671d45`](https://github.com/nodejs/node/commit/6111671d45)] - **test**: adapt abort tests for new Windows code (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`1816d46cef`](https://github.com/nodejs/node/commit/1816d46cef)] - **test**: adapt test-linux-perf to V8 changes (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`32961c4781`](https://github.com/nodejs/node/commit/32961c4781)] - **test**: fix V8 serdes test for V8 9.1 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`f652284b3b`](https://github.com/nodejs/node/commit/f652284b3b)] - **test**: remove obsolete TLS test (Rich Trott) [#&#8203;39001](https://github.com/nodejs/node/pull/39001) - \[[`81bbeab3bd`](https://github.com/nodejs/node/commit/81bbeab3bd)] - **test**: improve coverage of lib/events.js (Rongjian Zhang) [#&#8203;38582](https://github.com/nodejs/node/pull/38582) - \[[`e82111f890`](https://github.com/nodejs/node/commit/e82111f890)] - **test**: http outgoing \_headers setter null (ycjcl868) [#&#8203;38881](https://github.com/nodejs/node/pull/38881) - \[[`1f10e84939`](https://github.com/nodejs/node/commit/1f10e84939)] - **test**: suppress warning in test_environment.cc (Daniel Bevenius) [#&#8203;38868](https://github.com/nodejs/node/pull/38868) - \[[`379b5f79a9`](https://github.com/nodejs/node/commit/379b5f79a9)] - **tls**: tweak clientCertEngine argument parsing (Shelley Vohr) [#&#8203;38900](https://github.com/nodejs/node/pull/38900) - \[[`78d2e0ed8e`](https://github.com/nodejs/node/commit/78d2e0ed8e)] - **tools**: update babel-eslint-parser to 7.14.5 (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094) - \[[`fed641127a`](https://github.com/nodejs/node/commit/fed641127a)] - **tools**: update ESLint to 7.29.0 (Rich Trott) [#&#8203;39083](https://github.com/nodejs/node/pull/39083) - \[[`3ae2a0be48`](https://github.com/nodejs/node/commit/3ae2a0be48)] - **tools**: fix typo (Houssem Chebab) [#&#8203;39044](https://github.com/nodejs/node/pull/39044) - \[[`a1d0aef60e`](https://github.com/nodejs/node/commit/a1d0aef60e)] - **tools**: update doctool dependencies, migrate to ESM (Michaël Zasso) [#&#8203;38966](https://github.com/nodejs/node/pull/38966) - \[[`2a292cf574`](https://github.com/nodejs/node/commit/2a292cf574)] - **tools**: update V8 gypfiles for 9.1 (Michaël Zasso) [#&#8203;38273](https://github.com/nodejs/node/pull/38273) - \[[`0c90fd8454`](https://github.com/nodejs/node/commit/0c90fd8454)] - **tools**: avoid crashing CQ when git push fails (Antoine du Hamel) [#&#8203;36861](https://github.com/nodejs/node/pull/36861) - \[[`f817c2d3bb`](https://github.com/nodejs/node/commit/f817c2d3bb)] - **tools**: fix typo in commit-queue.sh (bl-ue) [#&#8203;39000](https://github.com/nodejs/node/pull/39000) - \[[`be5101eb32`](https://github.com/nodejs/node/commit/be5101eb32)] - **tools**: update ESLint to 7.28.0 (Luigi Pinca) [#&#8203;38955](https://github.com/nodejs/node/pull/38955) - \[[`9bf9ddb490`](https://github.com/nodejs/node/commit/9bf9ddb490)] - **tools**: refactor snapshot builder (Joyee Cheung) [#&#8203;38902](https://github.com/nodejs/node/pull/38902) - \[[`0706565097`](https://github.com/nodejs/node/commit/0706565097)] - **tools**: bump remark-preset-lint-node to 2.3.0 (Rich Trott) [#&#8203;38910](https://github.com/nodejs/node/pull/38910) - \[[`7d35fa7938`](https://github.com/nodejs/node/commit/7d35fa7938)] - **tools**: update gyp-next to v0.9.1 (Jiawen Geng) [#&#8203;38867](https://github.com/nodejs/node/pull/38867) - \[[`00c20e621f`](https://github.com/nodejs/node/commit/00c20e621f)] - **tools,doc**: forbid CJS globals in ESM code snippets (Antoine du Hamel) [#&#8203;38889](https://github.com/nodejs/node/pull/38889) - \[[`99161b09f6`](https://github.com/nodejs/node/commit/99161b09f6)] - **url,src**: simplify ipv6 logic by using uv_inet_pton (Khaidi Chu) [#&#8203;38842](https://github.com/nodejs/node/pull/38842) - \[[`f40725f2a1`](https://github.com/nodejs/node/commit/f40725f2a1)] - **vm**: use missing validator (Voltrex) [#&#8203;38935](https://github.com/nodejs/node/pull/38935) - \[[`f959cb3c68`](https://github.com/nodejs/node/commit/f959cb3c68)] - **worker**: do not look up context twice in PostMessage (Anna Henningsen) [#&#8203;38784](https://github.com/nodejs/node/pull/38784) ### [`v16.3.0`](https://github.com/nodejs/node/releases/v16.3.0) [Compare Source](https://github.com/nodejs/node/compare/v16.2.0...v16.3.0) ##### Notable Changes - **cli**: - add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755) - **deps**: - add workspaces support to npm install commands (Ruy Adorno) [#&#8203;38750](https://github.com/nodejs/node/pull/38750) ##### Commits - \[[`4e58ec4aa6`](https://github.com/nodejs/node/commit/4e58ec4aa6)] - **benchmark**: output JSON-compatible numbers (Michaël Zasso) [#&#8203;38778](https://github.com/nodejs/node/pull/38778) - \[[`7a9d0fd5a9`](https://github.com/nodejs/node/commit/7a9d0fd5a9)] - **benchmark**: fix http elapsed time (Antoine du Hamel) [#&#8203;38743](https://github.com/nodejs/node/pull/38743) - \[[`a98d631905`](https://github.com/nodejs/node/commit/a98d631905)] - **bootstrap**: include vm and contextify binding into the snapshot (Joyee Cheung) [#&#8203;38677](https://github.com/nodejs/node/pull/38677) - \[[`f1628960e1`](https://github.com/nodejs/node/commit/f1628960e1)] - **build**: remove outdated dont-land-on-v6.x label (Michaël Zasso) [#&#8203;38886](https://github.com/nodejs/node/pull/38886) - \[[`6986154b30`](https://github.com/nodejs/node/commit/6986154b30)] - **build**: work around bug in MSBuild v16.10.0 (Michaël Zasso) [#&#8203;38873](https://github.com/nodejs/node/pull/38873) - \[[`24cca7c5ea`](https://github.com/nodejs/node/commit/24cca7c5ea)] - **build**: add lto build to CI (Jiawen Geng) [#&#8203;38567](https://github.com/nodejs/node/pull/38567) - \[[`80c32b7a9a`](https://github.com/nodejs/node/commit/80c32b7a9a)] - **build**: allow LTO with Clang 3.9.1+ (Jesse Chan) [#&#8203;38751](https://github.com/nodejs/node/pull/38751) - \[[`e9be2095cf`](https://github.com/nodejs/node/commit/e9be2095cf)] - **build**: replace non-POSIX test -a|o (Issam E. Maghni) [#&#8203;38731](https://github.com/nodejs/node/pull/38731) - \[[`717a8b63e1`](https://github.com/nodejs/node/commit/717a8b63e1)] - **child_process**: retain reference to data with advanced serialization (Anna Henningsen) [#&#8203;38728](https://github.com/nodejs/node/pull/38728) - \[[`bc8400122c`](https://github.com/nodejs/node/commit/bc8400122c)] - **(SEMVER-MINOR)** **cli**: add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755) - \[[`eb7c932a6d`](https://github.com/nodejs/node/commit/eb7c932a6d)] - **debugger**: revise async iterator usage to comply with lint rules (Rich Trott) [#&#8203;38847](https://github.com/nodejs/node/pull/38847) - \[[`f1000e0e52`](https://github.com/nodejs/node/commit/f1000e0e52)] - **debugger**: removed unused function argument (Rich Trott) [#&#8203;38850](https://github.com/nodejs/node/pull/38850) - \[[`ee1056da60`](https://github.com/nodejs/node/commit/ee1056da60)] - **debugger**: wait for V8 debugger to be enabled (Michaël Zasso) [#&#8203;38811](https://github.com/nodejs/node/pull/38811) - \[[`47ad448def`](https://github.com/nodejs/node/commit/47ad448def)] - **deps**: upgrade npm to 7.15.1 (npm team) [#&#8203;38880](https://github.com/nodejs/node/pull/38880) - \[[`e8192b5e89`](https://github.com/nodejs/node/commit/e8192b5e89)] - **deps**: upgrade npm to 7.14.0 (Ruy Adorno) [#&#8203;38750](https://github.com/nodejs/node/pull/38750) - \[[`15aaf14690`](https://github.com/nodejs/node/commit/15aaf14690)] - **deps**: update llhttp to 6.0.2 (Fedor Indutny) [#&#8203;38665](https://github.com/nodejs/node/pull/38665) - \[[`108ffdb68f`](https://github.com/nodejs/node/commit/108ffdb68f)] - **doc**: fixed typo in n-api.md (julianjany) [#&#8203;38822](https://github.com/nodejs/node/pull/38822) - \[[`131a6918dd`](https://github.com/nodejs/node/commit/131a6918dd)] - **doc**: use "Long Term Support" in collaborator guide (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841) - \[[`4844337cd7`](https://github.com/nodejs/node/commit/4844337cd7)] - **doc**: use "Long Term Support" in technical values doc (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841) - \[[`f1e823b679`](https://github.com/nodejs/node/commit/f1e823b679)] - **doc**: use "Long Term Support" in README (Philip) [#&#8203;38839](https://github.com/nodejs/node/pull/38839) - \[[`4e11971a76`](https://github.com/nodejs/node/commit/4e11971a76)] - **doc**: fix grammar in `fs.md` (yotamselementor) [#&#8203;38818](https://github.com/nodejs/node/pull/38818) - \[[`e2f28c80d1`](https://github.com/nodejs/node/commit/e2f28c80d1)] - **doc**: fixup code sample in http.md (TodorTotev) [#&#8203;38776](https://github.com/nodejs/node/pull/38776) - \[[`96fa387082`](https://github.com/nodejs/node/commit/96fa387082)] - **doc**: document null target pattern (Guy Bedford) [#&#8203;38724](https://github.com/nodejs/node/pull/38724) - \[[`5553be3f4e`](https://github.com/nodejs/node/commit/5553be3f4e)] - **doc**: update code examples for `node:url` module (fisker Cheung) [#&#8203;38645](https://github.com/nodejs/node/pull/38645) - \[[`0c063a1258`](https://github.com/nodejs/node/commit/0c063a1258)] - **doc,url**: clarify domainTo\* when built without ICU (Darshan Sen) [#&#8203;38789](https://github.com/nodejs/node/pull/38789) - \[[`2054efa02c`](https://github.com/nodejs/node/commit/2054efa02c)] - **events**: refactor to use primordials in lib/events (Akhil Marsonya) [#&#8203;38117](https://github.com/nodejs/node/pull/38117) - \[[`4884991a12`](https://github.com/nodejs/node/commit/4884991a12)] - **lib**: include url in bootstrap snapshot and remove unnecessary lazy-loads (Joyee Cheung) [#&#8203;38826](https://github.com/nodejs/node/pull/38826) - \[[`08ad2f6c18`](https://github.com/nodejs/node/commit/08ad2f6c18)] - **lib**: fix typos (bl-ue) [#&#8203;38846](https://github.com/nodejs/node/pull/38846) - \[[`7d3a8cb854`](https://github.com/nodejs/node/commit/7d3a8cb854)] - **lib**: remove unnecessary lazy loads (Joyee Cheung) [#&#8203;38737](https://github.com/nodejs/node/pull/38737) - \[[`5d9442a024`](https://github.com/nodejs/node/commit/5d9442a024)] - **lib**: load internal/fs/watchers and internal/fs/read_file_context early (Joyee Cheung) [#&#8203;38737](https://github.com/nodejs/node/pull/38737) - \[[`2268d1cf4c`](https://github.com/nodejs/node/commit/2268d1cf4c)] - **lib**: refactor to reuse validators (Rongjian Zhang) [#&#8203;38608](https://github.com/nodejs/node/pull/38608) - \[[`496f7eae92`](https://github.com/nodejs/node/commit/496f7eae92)] - **node-api**: fix shutdown crashes (Michael Dawson) [#&#8203;38492](https://github.com/nodejs/node/pull/38492) - \[[`e1195312b9`](https://github.com/nodejs/node/commit/e1195312b9)] - **(SEMVER-MINOR)** **os**: add os.devNull (Luigi Pinca) [#&#8203;38569](https://github.com/nodejs/node/pull/38569) - \[[`7ba305552f`](https://github.com/nodejs/node/commit/7ba305552f)] - **src**: set PromiseHooks by Environment (Bryan English) [#&#8203;38821](https://github.com/nodejs/node/pull/38821) - \[[`74205b3542`](https://github.com/nodejs/node/commit/74205b3542)] - **src**: replace `auto`s in node_api.cc (Khaidi Chu) [#&#8203;38852](https://github.com/nodejs/node/pull/38852) - \[[`120849f609`](https://github.com/nodejs/node/commit/120849f609)] - **src**: cache necessary isolate & context in api/\* (Khaidi Chu) [#&#8203;38366](https://github.com/nodejs/node/pull/38366) - \[[`f25cd4f377`](https://github.com/nodejs/node/commit/f25cd4f377)] - **src**: fix typos (bl-ue) [#&#8203;38845](https://github.com/nodejs/node/pull/38845) - \[[`a1b0e64187`](https://github.com/nodejs/node/commit/a1b0e64187)] - **src**: support fs_event_wrap binding in the snapshot (Joyee Cheung) [#&#8203;38737](https://github.com/nodejs/node/pull/38737) - \[[`36d4a4331d`](https://github.com/nodejs/node/commit/36d4a4331d)] - **src**: remove redundant v8 namespaces in `env.cc` (Juan José Arboleda) [#&#8203;38792](https://github.com/nodejs/node/pull/38792) - \[[`3e6b3b22c5`](https://github.com/nodejs/node/commit/3e6b3b22c5)] - **src**: use SPrintF in ProcessEmitWarning (Darshan Sen) [#&#8203;38758](https://github.com/nodejs/node/pull/38758) - \[[`9ca5c0e29e`](https://github.com/nodejs/node/commit/9ca5c0e29e)] - **src**: fix compiler warnings in node_buffer.cc (Darshan Sen) [#&#8203;38722](https://github.com/nodejs/node/pull/38722) - \[[`3741595289`](https://github.com/nodejs/node/commit/3741595289)] - **src**: set CONF_MFLAGS_DEFAULT_SECTION for OpenSSL 3 (Daniel Bevenius) [#&#8203;38732](https://github.com/nodejs/node/pull/38732) - \[[`4e3353223e`](https://github.com/nodejs/node/commit/4e3353223e)] - **src**: use HandleScope in StreamReq::Done() (Darshan Sen) [#&#8203;38720](https://github.com/nodejs/node/pull/38720) - \[[`c576311954`](https://github.com/nodejs/node/commit/c576311954)] - **src**: remove commented code in `node_file.cc` (Juan José Arboleda) [#&#8203;38693](https://github.com/nodejs/node/pull/38693) - \[[`61c95f08b3`](https://github.com/nodejs/node/commit/61c95f08b3)] - **src**: write named pipe info in diagnostic report (legendecas) [#&#8203;38637](https://github.com/nodejs/node/pull/38637) - \[[`ba96f14233`](https://github.com/nodejs/node/commit/ba96f14233)] - **src**: remove unused `iostream` library (Juan José Arboleda) [#&#8203;38694](https://github.com/nodejs/node/pull/38694) - \[[`f5dd85bbe6`](https://github.com/nodejs/node/commit/f5dd85bbe6)] - **src**: remove more extra semis from member fns (Shelley Vohr) [#&#8203;38744](https://github.com/nodejs/node/pull/38744) - \[[`a47fd67154`](https://github.com/nodejs/node/commit/a47fd67154)] - **src**: replace `auto`s in node_contextify.cc (Khaidi Chu) [#&#8203;38644](https://github.com/nodejs/node/pull/38644) - \[[`9054d25acc`](https://github.com/nodejs/node/commit/9054d25acc)] - **stream**: add a non-destroying iterator to Readable (Nitzan Uziely) [#&#8203;38526](https://github.com/nodejs/node/pull/38526) - \[[`4131f94ca8`](https://github.com/nodejs/node/commit/4131f94ca8)] - **stream**: allow empty string as source of pipeline (Qingyu Deng) [#&#8203;38723](https://github.com/nodejs/node/pull/38723) - \[[`0aa3cb5c0e`](https://github.com/nodejs/node/commit/0aa3cb5c0e)] - **test**: improve coverage of fs internal utils (Rongjian Zhang) [#&#8203;38746](https://github.com/nodejs/node/pull/38746) - \[[`48ebebd2a8`](https://github.com/nodejs/node/commit/48ebebd2a8)] - **test**: remove unnecessary `--pending-deprecation` flag (Antoine du Hamel) [#&#8203;38819](https://github.com/nodejs/node/pull/38819) - \[[`3c492baa51`](https://github.com/nodejs/node/commit/3c492baa51)] - **test**: fix writefile with fd (Nitzan Uziely) [#&#8203;38820](https://github.com/nodejs/node/pull/38820) - \[[`e91d14c57c`](https://github.com/nodejs/node/commit/e91d14c57c)] - **test**: simplify test-path-resolve.js (himself65) [#&#8203;38671](https://github.com/nodejs/node/pull/38671) - \[[`1f5baaa2e7`](https://github.com/nodejs/node/commit/1f5baaa2e7)] - **test**: improve coverage for `question` in readline (Qingyu Deng) [#&#8203;38799](https://github.com/nodejs/node/pull/38799) - \[[`6d86f8afd5`](https://github.com/nodejs/node/commit/6d86f8afd5)] - **test**: os, replace custom flatten method with built-in Array.flat (Wael Almattar) [#&#8203;38770](https://github.com/nodejs/node/pull/38770) - \[[`c7a58578dc`](https://github.com/nodejs/node/commit/c7a58578dc)] - **test**: set locale for datetime-change-notify test (ZiJian Liu) [#&#8203;38741](https://github.com/nodejs/node/pull/38741) - \[[`695e982a42`](https://github.com/nodejs/node/commit/695e982a42)] - **test**: improve coverage of lib/fs.js (Rongjian Zhang) [#&#8203;38604](https://github.com/nodejs/node/pull/38604) - \[[`11ac9c6fcc`](https://github.com/nodejs/node/commit/11ac9c6fcc)] - **test**: improve coverage of lib/\_http_outgoing.js (Rongjian Zhang) [#&#8203;38734](https://github.com/nodejs/node/pull/38734) - \[[`6da4aa30c6`](https://github.com/nodejs/node/commit/6da4aa30c6)] - **test**: give js-native-api tests consistent names (Gabriel Schulhof) [#&#8203;38692](https://github.com/nodejs/node/pull/38692) - \[[`929e8df1c0`](https://github.com/nodejs/node/commit/929e8df1c0)] - **test**: improve coverage of stream.Readable (Rongjian Zhang) [#&#8203;38702](https://github.com/nodejs/node/pull/38702) - \[[`36ffd58105`](https://github.com/nodejs/node/commit/36ffd58105)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851) - \[[`6b8c712247`](https://github.com/nodejs/node/commit/6b8c712247)] - **tools**: bump cpplint to 1.5.5 (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851) - \[[`be8d934679`](https://github.com/nodejs/node/commit/be8d934679)] - **tools**: remove exception for Node.js 8 and earlier (Rich Trott) [#&#8203;38840](https://github.com/nodejs/node/pull/38840) - \[[`c0bde0cd4a`](https://github.com/nodejs/node/commit/c0bde0cd4a)] - **tools**: update setup-node to setup-node@v2 (pengjie) [#&#8203;38825](https://github.com/nodejs/node/pull/38825) - \[[`21ce3af904`](https://github.com/nodejs/node/commit/21ce3af904)] - **tools**: update ESLint to 7.27.0 (Luigi Pinca) [#&#8203;38764](https://github.com/nodejs/node/pull/38764) - \[[`ab44106555`](https://github.com/nodejs/node/commit/ab44106555)] - **tools**: use PrintCaughtException in the snapshot builder (Joyee Cheung) [#&#8203;38745](https://github.com/nodejs/node/pull/38745) - \[[`30c0020885`](https://github.com/nodejs/node/commit/30c0020885)] - **typings**: add JSDoc typings for https (Voltrex) [#&#8203;38589](https://github.com/nodejs/node/pull/38589) - \[[`7fb809b475`](https://github.com/nodejs/node/commit/7fb809b475)] - **typings**: add JSDoc typings for events (Voltrex) [#&#8203;38712](https://github.com/nodejs/node/pull/38712) - \[[`7773d58f1a`](https://github.com/nodejs/node/commit/7773d58f1a)] - **url**: exit early when : delimiter is seen in hostname (Timothy Gu) [#&#8203;38742](https://github.com/nodejs/node/pull/38742) - \[[`a2da9e254c`](https://github.com/nodejs/node/commit/a2da9e254c)] - **worker**: use rwlock for sibling group (Anna Henningsen) [#&#8203;38783](https://github.com/nodejs/node/pull/38783) - \[[`18f3ba3674`](https://github.com/nodejs/node/commit/18f3ba3674)] - **worker**: leave TODO comments for using std::variant when possible (Anna Henningsen) [#&#8203;38788](https://github.com/nodejs/node/pull/38788) ### [`v16.2.0`](https://github.com/nodejs/node/releases/v16.2.0) [Compare Source](https://github.com/nodejs/node/compare/v16.1.0...v16.2.0) ##### Notable Changes - \[[`36b948560c`](https://github.com/nodejs/node/commit/36b948560c)] - **(SEMVER-MINOR)** **async_hooks**: use new v8::Context PromiseHook API (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`c0deeeacb2`](https://github.com/nodejs/node/commit/c0deeeacb2)] - **lib**: support setting process.env.TZ on windows (James M Snell) [#&#8203;38642](https://github.com/nodejs/node/pull/38642) - \[[`4c4902748c`](https://github.com/nodejs/node/commit/4c4902748c)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587) - \[[`c182198c44`](https://github.com/nodejs/node/commit/c182198c44)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659) - \[[`fbf02e3198`](https://github.com/nodejs/node/commit/fbf02e3198)] - **(SEMVER-MINOR)** **util**: add util.types.isKeyObject and util.types.isCryptoKey (Filip Skokan) [#&#8203;38619](https://github.com/nodejs/node/pull/38619) ##### Commits - \[[`36b948560c`](https://github.com/nodejs/node/commit/36b948560c)] - **(SEMVER-MINOR)** **async_hooks**: use new v8::Context PromiseHook API (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`dcae03203e`](https://github.com/nodejs/node/commit/dcae03203e)] - **buffer**: remove TODOs in `atob` / `btoa` (Khaidi Chu) [#&#8203;38548](https://github.com/nodejs/node/pull/38548) - \[[`48b557e904`](https://github.com/nodejs/node/commit/48b557e904)] - **buffer**: remove unreachable code (Rongjian Zhang) [#&#8203;38537](https://github.com/nodejs/node/pull/38537) - \[[`b0df28dea5`](https://github.com/nodejs/node/commit/b0df28dea5)] - **build**: add workaround for V8 builds (Richard Lau) [#&#8203;38632](https://github.com/nodejs/node/pull/38632) - \[[`3bb12db255`](https://github.com/nodejs/node/commit/3bb12db255)] - **build**: remove dependency on `distutils.spawn` (Richard Lau) [#&#8203;38600](https://github.com/nodejs/node/pull/38600) - \[[`10aaf30da1`](https://github.com/nodejs/node/commit/10aaf30da1)] - **build**: add missing torque output sources (Richard Lau) [#&#8203;38576](https://github.com/nodejs/node/pull/38576) - \[[`03b4a3a5bf`](https://github.com/nodejs/node/commit/03b4a3a5bf)] - **build**: compile with -std=gnu++14 (Darshan Sen) [#&#8203;38504](https://github.com/nodejs/node/pull/38504) - \[[`4296591154`](https://github.com/nodejs/node/commit/4296591154)] - **build,src,test,doc**: enable FIPS for OpenSSL 3.0 (Daniel Bevenius) [#&#8203;38633](https://github.com/nodejs/node/pull/38633) - \[[`36bb8daba5`](https://github.com/nodejs/node/commit/36bb8daba5)] - **crypto**: forbid NODE-ED25519 and NODE-ED448 "raw" key export (Filip Skokan) [#&#8203;38668](https://github.com/nodejs/node/pull/38668) - \[[`36bb7243ff`](https://github.com/nodejs/node/commit/36bb7243ff)] - **debugger**: refactor `inspect_repl` to use primordials (Antoine du Hamel) [#&#8203;38551](https://github.com/nodejs/node/pull/38551) - \[[`16a6c8d5a6`](https://github.com/nodejs/node/commit/16a6c8d5a6)] - **debugger**: refactor to use internal modules (Antoine du Hamel) [#&#8203;38550](https://github.com/nodejs/node/pull/38550) - \[[`11dd9a6838`](https://github.com/nodejs/node/commit/11dd9a6838)] - **debugger**: disable only the lint rules required by current file state (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529) - \[[`e79f540fa0`](https://github.com/nodejs/node/commit/e79f540fa0)] - **debugger**: avoid non-ASCII char in code file (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529) - \[[`d9867b9358`](https://github.com/nodejs/node/commit/d9867b9358)] - **debugger**: wrap lines longer than 80 chars (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529) - \[[`352a600142`](https://github.com/nodejs/node/commit/352a600142)] - **debugger**: rename inspector-cli test module to debugger (Rich Trott) [#&#8203;38530](https://github.com/nodejs/node/pull/38530) - \[[`608d0e11f3`](https://github.com/nodejs/node/commit/608d0e11f3)] - **deps**: upgrade npm to 7.13.0 (Ruy Adorno) [#&#8203;38682](https://github.com/nodejs/node/pull/38682) - \[[`5c71f49d3f`](https://github.com/nodejs/node/commit/5c71f49d3f)] - **deps**: upgrade npm to 7.12.1 (Ruy Adorno) [#&#8203;38628](https://github.com/nodejs/node/pull/38628) - \[[`ec2dbfb200`](https://github.com/nodejs/node/commit/ec2dbfb200)] - **deps**: patch V8 to 9.0.257.25 (Michaël Zasso) [#&#8203;38556](https://github.com/nodejs/node/pull/38556) - \[[`ab298723b5`](https://github.com/nodejs/node/commit/ab298723b5)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`fa4cb17`](https://github.com/nodejs/node/commit/fa4cb172cde2) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`a84e9b3e7d`](https://github.com/nodejs/node/commit/a84e9b3e7d)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`4c07451`](https://github.com/nodejs/node/commit/4c074516397b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`043b1aaa3f`](https://github.com/nodejs/node/commit/043b1aaa3f)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`5f44131`](https://github.com/nodejs/node/commit/5f4413194480) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`1a104bac74`](https://github.com/nodejs/node/commit/1a104bac74)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`272445f`](https://github.com/nodejs/node/commit/272445f10927) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`827ae05538`](https://github.com/nodejs/node/commit/827ae05538)] - **(SEMVER-MINOR)** **deps**: V8: backport [`c0fceaa`](https://github.com/nodejs/node/commit/c0fceaa0669b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`f31a6114a4`](https://github.com/nodejs/node/commit/f31a6114a4)] - **deps**: V8: cherry-pick [`530080c`](https://github.com/nodejs/node/commit/530080c44af2) (Milad Fa) [#&#8203;38489](https://github.com/nodejs/node/pull/38489) - \[[`4001dd28ba`](https://github.com/nodejs/node/commit/4001dd28ba)] - **dgram**: extract cluster lazy loading method to make it testable (Rongjian Zhang) [#&#8203;38563](https://github.com/nodejs/node/pull/38563) - \[[`a0dc194e31`](https://github.com/nodejs/node/commit/a0dc194e31)] - **doc**: document buffer.kStringMaxLength (Tobias Nießen) [#&#8203;38688](https://github.com/nodejs/node/pull/38688) - \[[`8590c151cd`](https://github.com/nodejs/node/commit/8590c151cd)] - **doc**: update abort signal in fs promise api example (Moritz Kneilmann) [#&#8203;38669](https://github.com/nodejs/node/pull/38669) - \[[`0100a3b026`](https://github.com/nodejs/node/commit/0100a3b026)] - **doc**: add documentation for fs.WriteStream.close() (Hitesh Sharma) [#&#8203;38610](https://github.com/nodejs/node/pull/38610) - \[[`5c38a554ec`](https://github.com/nodejs/node/commit/5c38a554ec)] - **doc**: clarify synchronous blocking of Worker stdio (James M Snell) [#&#8203;38658](https://github.com/nodejs/node/pull/38658) - \[[`1765e32c45`](https://github.com/nodejs/node/commit/1765e32c45)] - **doc**: update contact info (Gabriel Schulhof) [#&#8203;38689](https://github.com/nodejs/node/pull/38689) - \[[`c4b161cb89`](https://github.com/nodejs/node/commit/c4b161cb89)] - **doc**: change color of doctag on night mode (Qingyu Deng) [#&#8203;38652](https://github.com/nodejs/node/pull/38652) - \[[`6620a3182e`](https://github.com/nodejs/node/commit/6620a3182e)] - **doc**: add ESM code examples in url.md (Antoine du Hamel) [#&#8203;38651](https://github.com/nodejs/node/pull/38651) - \[[`d3de0ef5d4`](https://github.com/nodejs/node/commit/d3de0ef5d4)] - **doc**: fix fs.openSync() signature (Luigi Pinca) [#&#8203;38591](https://github.com/nodejs/node/pull/38591) - \[[`56bf6c1bcd`](https://github.com/nodejs/node/commit/56bf6c1bcd)] - **doc**: typo stats() should be stat(); clarity (Bryan Field) [#&#8203;38541](https://github.com/nodejs/node/pull/38541) - \[[`1d9fd49f41`](https://github.com/nodejs/node/commit/1d9fd49f41)] - **doc**: fix code example in ecdh.setPublicKey() (Jordan Baczuk) [#&#8203;38542](https://github.com/nodejs/node/pull/38542) - \[[`4c70e42928`](https://github.com/nodejs/node/commit/4c70e42928)] - **doc**: use `HEAD` instead of `master` for links (Antoine du Hamel) [#&#8203;38518](https://github.com/nodejs/node/pull/38518) - \[[`ae9128ec61`](https://github.com/nodejs/node/commit/ae9128ec61)] - **doc**: clarify DiffieHellmanGroup class docs (Nitzan Uziely) [#&#8203;38363](https://github.com/nodejs/node/pull/38363) - \[[`e59131d97f`](https://github.com/nodejs/node/commit/e59131d97f)] - **doc**: fix broken AHAFS link in fs doc (Rich Trott) [#&#8203;38534](https://github.com/nodejs/node/pull/38534) - \[[`e9d4c8587a`](https://github.com/nodejs/node/commit/e9d4c8587a)] - **doc**: use AIX instead of Aix in fs.md (Rich Trott) [#&#8203;38535](https://github.com/nodejs/node/pull/38535) - \[[`e0118f347a`](https://github.com/nodejs/node/commit/e0118f347a)] - **doc**: remove extraneous dash from flag prefix (Rodolfo Carvalho) [#&#8203;38532](https://github.com/nodejs/node/pull/38532) - \[[`9e10e1a76f`](https://github.com/nodejs/node/commit/9e10e1a76f)] - **doc**: corrected workload name as per the latest VS Installer (MrJithil) [#&#8203;38500](https://github.com/nodejs/node/pull/38500) - \[[`38644d6f96`](https://github.com/nodejs/node/commit/38644d6f96)] - **doc**: use sentence case in headers in src/crypto/README.md (Rich Trott) [#&#8203;38524](https://github.com/nodejs/node/pull/38524) - \[[`347b9f2304`](https://github.com/nodejs/node/commit/347b9f2304)] - **errors**: remove input from ERR_INVALID_URL message (moander) [#&#8203;38614](https://github.com/nodejs/node/pull/38614) - \[[`5b40e2f596`](https://github.com/nodejs/node/commit/5b40e2f596)] - **events**: use nullish coalencing operator (Voltrex) [#&#8203;38328](https://github.com/nodejs/node/pull/38328) - \[[`3a5856cbc3`](https://github.com/nodejs/node/commit/3a5856cbc3)] - **fs**: fix async iterator partial writes (Nitzan Uziely) [#&#8203;38615](https://github.com/nodejs/node/pull/38615) - \[[`e8761186a5`](https://github.com/nodejs/node/commit/e8761186a5)] - **fs**: fix error when writing buffers > INT32\_MAX (Zach Bjornson) [#&#8203;38546](https://github.com/nodejs/node/pull/38546) - \[[`47080bcfc8`](https://github.com/nodejs/node/commit/47080bcfc8)] - **fs**: use `assert` in `fsCall` argument checking (Rongjian Zhang) [#&#8203;38519](https://github.com/nodejs/node/pull/38519) - \[[`3d8b8e133f`](https://github.com/nodejs/node/commit/3d8b8e133f)] - **http**: refactor to remove redundant argument of \_deferToConnect (Rongjian Zhang) [#&#8203;38598](https://github.com/nodejs/node/pull/38598) - \[[`c0deeeacb2`](https://github.com/nodejs/node/commit/c0deeeacb2)] - **lib**: support setting process.env.TZ on windows (James M Snell) [#&#8203;38642](https://github.com/nodejs/node/pull/38642) - \[[`cf4dc80d5f`](https://github.com/nodejs/node/commit/cf4dc80d5f)] - **lib**: make `IterableWeakMap` safe to iterate (Antoine du Hamel) [#&#8203;38523](https://github.com/nodejs/node/pull/38523) - \[[`90b640efb1`](https://github.com/nodejs/node/commit/90b640efb1)] - **meta**: add v8 team (Jiawen Geng) [#&#8203;38566](https://github.com/nodejs/node/pull/38566) - \[[`4c4902748c`](https://github.com/nodejs/node/commit/4c4902748c)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587) - \[[`14a2a00cda`](https://github.com/nodejs/node/commit/14a2a00cda)] - **node-api**: faster threadsafe_function (Fedor Indutny) [#&#8203;38506](https://github.com/nodejs/node/pull/38506) - \[[`be4b3a4164`](https://github.com/nodejs/node/commit/be4b3a4164)] - **path**: inline conditions (Voltrex) [#&#8203;38613](https://github.com/nodejs/node/pull/38613) - \[[`c182198c44`](https://github.com/nodejs/node/commit/c182198c44)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659) - \[[`e2b8454582`](https://github.com/nodejs/node/commit/e2b8454582)] - **repl**: fix Ctrl+C on top level await (Antoine du Hamel) [#&#8203;38656](https://github.com/nodejs/node/pull/38656) - \[[`718ad105e5`](https://github.com/nodejs/node/commit/718ad105e5)] - **src**: fix fatal errors when a current isolate not exist (legendecas) [#&#8203;38624](https://github.com/nodejs/node/pull/38624) - \[[`524a9d6fcd`](https://github.com/nodejs/node/commit/524a9d6fcd)] - **src**: update cares_wrap OpenBSD defines (Anna Henningsen) [#&#8203;38670](https://github.com/nodejs/node/pull/38670) - \[[`6b409cf664`](https://github.com/nodejs/node/commit/6b409cf664)] - **src**: remove extra semi after member fn (Shelley Vohr) [#&#8203;38686](https://github.com/nodejs/node/pull/38686) - \[[`bfec80fd66`](https://github.com/nodejs/node/commit/bfec80fd66)] - **src**: make workers messaging more resilient (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510) - \[[`ff1b4322f5`](https://github.com/nodejs/node/commit/ff1b4322f5)] - **test**: refactor `test-readline-interface` to be shorter (Juan José Arboleda) [#&#8203;38691](https://github.com/nodejs/node/pull/38691) - \[[`8eea317227`](https://github.com/nodejs/node/commit/8eea317227)] - **test**: stream.finished detects a destroyed IncomingMessage (Nitzan Uziely) [#&#8203;38661](https://github.com/nodejs/node/pull/38661) - \[[`5b25fbe266`](https://github.com/nodejs/node/commit/5b25fbe266)] - **test**: set common.bits to 64 for riscv64 (Andreas Schwab) [#&#8203;38626](https://github.com/nodejs/node/pull/38626) - \[[`5a0b52120a`](https://github.com/nodejs/node/commit/5a0b52120a)] - **test**: improve coverage of lib/\_http_client.js (Rongjian Zhang) [#&#8203;38599](https://github.com/nodejs/node/pull/38599) - \[[`3d0fad3840`](https://github.com/nodejs/node/commit/3d0fad3840)] - **test**: improve coverage of lib/os.js (Rongjian Zhang) [#&#8203;38653](https://github.com/nodejs/node/pull/38653) - \[[`16b2fb4e0c`](https://github.com/nodejs/node/commit/16b2fb4e0c)] - **test**: increase coverage for repl (ZiJian Liu) [#&#8203;38559](https://github.com/nodejs/node/pull/38559) - \[[`8f78c6646e`](https://github.com/nodejs/node/commit/8f78c6646e)] - **test**: call functions internally (Voltrex) [#&#8203;38560](https://github.com/nodejs/node/pull/38560) - \[[`178fe215a4`](https://github.com/nodejs/node/commit/178fe215a4)] - **test**: increase coverage for Histogram (ZiJian Liu) [#&#8203;38555](https://github.com/nodejs/node/pull/38555) - \[[`95db7d5afc`](https://github.com/nodejs/node/commit/95db7d5afc)] - **test**: improve fs coverage (Rongjian Zhang) [#&#8203;38517](https://github.com/nodejs/node/pull/38517) - \[[`f2f768f261`](https://github.com/nodejs/node/commit/f2f768f261)] - **test**: complete coverage of querystring (Rongjian Zhang) [#&#8203;38520](https://github.com/nodejs/node/pull/38520) - \[[`5b44107ae9`](https://github.com/nodejs/node/commit/5b44107ae9)] - **test**: increase coverage for AbortController (ZiJian Liu) [#&#8203;38514](https://github.com/nodejs/node/pull/38514) - \[[`662265074c`](https://github.com/nodejs/node/commit/662265074c)] - **test**: increase coverage for Blob (ZiJian Liu) [#&#8203;38515](https://github.com/nodejs/node/pull/38515) - \[[`89e1daccf3`](https://github.com/nodejs/node/commit/89e1daccf3)] - **test**: run message and pseudo-tty tests in parallel (Richard Lau) [#&#8203;38502](https://github.com/nodejs/node/pull/38502) - \[[`727c2bcc24`](https://github.com/nodejs/node/commit/727c2bcc24)] - **test**: move test-net-connect-econnrefused from pummel to sequential (Rich Trott) [#&#8203;38462](https://github.com/nodejs/node/pull/38462) - \[[`e64ebac2da`](https://github.com/nodejs/node/commit/e64ebac2da)] - **test**: fix flaky inspector-cli tests when breakpionts are restored (Rich Trott) [#&#8203;38431](https://github.com/nodejs/node/pull/38431) - \[[`b51b4feece`](https://github.com/nodejs/node/commit/b51b4feece)] - **test**: skip tests for openssl-3.0.0-alpha15 (Daniel Bevenius) [#&#8203;38451](https://github.com/nodejs/node/pull/38451) - \[[`db5ee23edf`](https://github.com/nodejs/node/commit/db5ee23edf)] - **test**: update OpenSSL 3.0.0-alpha15 error messages (Daniel Bevenius) [#&#8203;38451](https://github.com/nodejs/node/pull/38451) - \[[`24472d9e0c`](https://github.com/nodejs/node/commit/24472d9e0c)] - **test,repl**: fix tests when inspector is disabled (Antoine du Hamel) [#&#8203;38564](https://github.com/nodejs/node/pull/38564) - \[[`267a84f5e1`](https://github.com/nodejs/node/commit/267a84f5e1)] - **tools**: remove redundant v8 config (Jiawen Geng) [#&#8203;38565](https://github.com/nodejs/node/pull/38565) - \[[`a028805f1b`](https://github.com/nodejs/node/commit/a028805f1b)] - **tools**: update ESLint to 7.26.0 (Colin Ihrig) [#&#8203;38605](https://github.com/nodejs/node/pull/38605) - \[[`ec8ab22ce6`](https://github.com/nodejs/node/commit/ec8ab22ce6)] - **(SEMVER-MINOR)** **tools**: add `Worker` to type-parser (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659) - \[[`151488539b`](https://github.com/nodejs/node/commit/151488539b)] - **tools**: make GH Actions workflows work if default branch is not master (Antoine du Hamel) [#&#8203;38516](https://github.com/nodejs/node/pull/38516) - \[[`c0f0c9a92d`](https://github.com/nodejs/node/commit/c0f0c9a92d)] - **typings**: add JSDoc typings for readline (Voltrex) [#&#8203;38253](https://github.com/nodejs/node/pull/38253) - \[[`fbf02e3198`](https://github.com/nodejs/node/commit/fbf02e3198)] - **(SEMVER-MINOR)** **util**: add util.types.isKeyObject and util.types.isCryptoKey (Filip Skokan) [#&#8203;38619](https://github.com/nodejs/node/pull/38619) - \[[`070ee4bb94`](https://github.com/nodejs/node/commit/070ee4bb94)] - ***Revert*** "**worker**: remove `ERR_CLOSED_MESSAGE_PORT`" (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510) ### [`v16.1.0`](https://github.com/nodejs/node/releases/v16.1.0) [Compare Source](https://github.com/nodejs/node/compare/v16.0.0...v16.1.0) ##### Notable Changes - \[[`8a90f55a05`](https://github.com/nodejs/node/commit/8a90f55a05)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287) ##### Commits - \[[`28e16488cf`](https://github.com/nodejs/node/commit/28e16488cf)] - **async_hooks,doc**: replace process.stdout.fd with 1 (Darshan Sen) [#&#8203;38382](https://github.com/nodejs/node/pull/38382) - \[[`cbab7ec6e5`](https://github.com/nodejs/node/commit/cbab7ec6e5)] - **benchmark**: avoid using `console.log()` (Antoine du Hamel) [#&#8203;38370](https://github.com/nodejs/node/pull/38370) - \[[`ba15b20062`](https://github.com/nodejs/node/commit/ba15b20062)] - **benchmark**: use `process.hrtime.bigint()` (Antoine du Hamel) [#&#8203;38369](https://github.com/nodejs/node/pull/38369) - \[[`bc6e719884`](https://github.com/nodejs/node/commit/bc6e719884)] - **bootstrap**: freeze more intrinsics (Antoine du Hamel) [#&#8203;38217](https://github.com/nodejs/node/pull/38217) - \[[`29faf0f12e`](https://github.com/nodejs/node/commit/29faf0f12e)] - **build**: fix label-pr workflow (Michaël Zasso) [#&#8203;38399](https://github.com/nodejs/node/pull/38399) - \[[`b5d669a6ea`](https://github.com/nodejs/node/commit/b5d669a6ea)] - **build**: label PRs with GitHub Action instead of nodejs-github-bot (Phillip Johnsen) [#&#8203;38301](https://github.com/nodejs/node/pull/38301) - \[[`195f679331`](https://github.com/nodejs/node/commit/195f679331)] - **crypto**: don't crash with some selfsigned certs (Nils Dralle) [#&#8203;37990](https://github.com/nodejs/node/pull/37990) - \[[`4b073b0beb`](https://github.com/nodejs/node/commit/4b073b0beb)] - **crypto**: fix generateKeyPair type checks (Nitzan Uziely) [#&#8203;38364](https://github.com/nodejs/node/pull/38364) - \[[`c1d9b5b386`](https://github.com/nodejs/node/commit/c1d9b5b386)] - **crypto**: fix scrypt keylen validation (Antoine du Hamel) [#&#8203;38385](https://github.com/nodejs/node/pull/38385) - \[[`7354479ad5`](https://github.com/nodejs/node/commit/7354479ad5)] - **crypto**: fix DiffieHellman `generator` validation (eladkeyshawn) [#&#8203;38311](https://github.com/nodejs/node/pull/38311) - \[[`0e446d6048`](https://github.com/nodejs/node/commit/0e446d6048)] - **debugger**: enable linter on `internal/inspector/inspect_client` (Antoine du Hamel) [#&#8203;38417](https://github.com/nodejs/node/pull/38417) - \[[`9f0e80aa4d`](https://github.com/nodejs/node/commit/9f0e80aa4d)] - **debugger**: refactor `internal/inspector/_inspect` to use more primordials (Antoine du Hamel) [#&#8203;38406](https://github.com/nodejs/node/pull/38406) - \[[`a0c566f85a`](https://github.com/nodejs/node/commit/a0c566f85a)] - **debugger**: apply automatic lint fixes for inspect_repl.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411) - \[[`b884ea739b`](https://github.com/nodejs/node/commit/b884ea739b)] - **debugger**: apply automatic lint fixes for \_inspect.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411) - \[[`f946aa0360`](https://github.com/nodejs/node/commit/f946aa0360)] - **debugger**: remove unused function argument (Rich Trott) [#&#8203;38400](https://github.com/nodejs/node/pull/38400) - \[[`203a9689a3`](https://github.com/nodejs/node/commit/203a9689a3)] - **debugger**: align message with Node.js standard (Rich Trott) [#&#8203;38400](https://github.com/nodejs/node/pull/38400) - \[[`ef617dcbb0`](https://github.com/nodejs/node/commit/ef617dcbb0)] - **debugger**: add usage example for `--port` (Rafael Gonzaga) [#&#8203;38400](https://github.com/nodejs/node/pull/38400) - \[[`37b5ce2d5a`](https://github.com/nodejs/node/commit/37b5ce2d5a)] - **debugger**: fix race condition/deadlock on initialization (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`2a6203d155`](https://github.com/nodejs/node/commit/2a6203d155)] - **debugger**: replace internal use of deprecated API (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`6fff9fff97`](https://github.com/nodejs/node/commit/6fff9fff97)] - **debugger**: allow longer time to connect (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`def85daace`](https://github.com/nodejs/node/commit/def85daace)] - **debugger**: accommodate line chunking in Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`07361e6b77`](https://github.com/nodejs/node/commit/07361e6b77)] - **debugger**: fix inspect restart on Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`d65615e119`](https://github.com/nodejs/node/commit/d65615e119)] - **debugger**: remove unused code (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`62b03bc4f6`](https://github.com/nodejs/node/commit/62b03bc4f6)] - **debugger**: move node-inspect to internal library (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`e3b75cb5aa`](https://github.com/nodejs/node/commit/e3b75cb5aa)] - **deps**: V8: cherry-pick [`fd75c97`](https://github.com/nodejs/node/commit/fd75c97d3f56) (Michaël Zasso) [#&#8203;38455](https://github.com/nodejs/node/pull/38455) - \[[`aabddfbeb5`](https://github.com/nodejs/node/commit/aabddfbeb5)] - **deps**: upgrade npm to 7.11.2 (Ruy Adorno) [#&#8203;38475](https://github.com/nodejs/node/pull/38475) - \[[`7b9fb92d51`](https://github.com/nodejs/node/commit/7b9fb92d51)] - **deps**: update to cjs-module-lexer@1.2.1 (Guy Bedford) [#&#8203;38450](https://github.com/nodejs/node/pull/38450) - \[[`47626c52a3`](https://github.com/nodejs/node/commit/47626c52a3)] - **deps**: patch V8 to 9.0.257.24 (Michaël Zasso) [#&#8203;38423](https://github.com/nodejs/node/pull/38423) - \[[`f455e08621`](https://github.com/nodejs/node/commit/f455e08621)] - **deps**: patch V8 to 9.0.257.21 (Michaël Zasso) [#&#8203;38333](https://github.com/nodejs/node/pull/38333) - \[[`dd61a26d8c`](https://github.com/nodejs/node/commit/dd61a26d8c)] - **deps**: update llhttp to 6.0.1 (Fedor Indutny) [#&#8203;38359](https://github.com/nodejs/node/pull/38359) - \[[`05f41cdbcc`](https://github.com/nodejs/node/commit/05f41cdbcc)] - **deps**: patch V8 to 9.0.257.19 (Michaël Zasso) [#&#8203;38270](https://github.com/nodejs/node/pull/38270) - \[[`224faa0a05`](https://github.com/nodejs/node/commit/224faa0a05)] - ***Revert*** "**doc**: os.uptime() temporary bug notice" (Michaël Zasso) [#&#8203;38494](https://github.com/nodejs/node/pull/38494) - \[[`3b0480dde8`](https://github.com/nodejs/node/commit/3b0480dde8)] - **doc**: document `'secureConnect'` event limitation (James M Snell) [#&#8203;38447](https://github.com/nodejs/node/pull/38447) - \[[`92586046ec`](https://github.com/nodejs/node/commit/92586046ec)] - **doc**: fix outdated util inspect documentation and layout example (Ruben Bridgewater) [#&#8203;37079](https://github.com/nodejs/node/pull/37079) - \[[`13de4cf1ca`](https://github.com/nodejs/node/commit/13de4cf1ca)] - **doc**: mark Node.js 10 as End-of-Life (Richard Lau) [#&#8203;38482](https://github.com/nodejs/node/pull/38482) - \[[`3cbfde1f25`](https://github.com/nodejs/node/commit/3cbfde1f25)] - **doc**: mark querystring api as legacy (James M Snell) [#&#8203;38436](https://github.com/nodejs/node/pull/38436) - \[[`a5929c2487`](https://github.com/nodejs/node/commit/a5929c2487)] - **doc**: update node-api support matrix (Michael Dawson) [#&#8203;38424](https://github.com/nodejs/node/pull/38424) - \[[`f08650cefe`](https://github.com/nodejs/node/commit/f08650cefe)] - **doc**: add arguments for stream event of Http2Server and Http2SecureServer (Qingyu Deng) [#&#8203;37892](https://github.com/nodejs/node/pull/37892) - \[[`2d59273bed`](https://github.com/nodejs/node/commit/2d59273bed)] - **doc**: indicate that abort tests do not generate core files (Rich Trott) [#&#8203;38422](https://github.com/nodejs/node/pull/38422) - \[[`f1970127ee`](https://github.com/nodejs/node/commit/f1970127ee)] - **doc**: add try/catch in http2 respondWithFile example (Matteo Collina) [#&#8203;38410](https://github.com/nodejs/node/pull/38410) - \[[`f6f1317f43`](https://github.com/nodejs/node/commit/f6f1317f43)] - **doc**: note the system requirements for V8 tests (DeeDeeG) [#&#8203;38319](https://github.com/nodejs/node/pull/38319) - \[[`4b19beaf3c`](https://github.com/nodejs/node/commit/4b19beaf3c)] - **doc**: minor clarification to pathObject (James M Snell) [#&#8203;38437](https://github.com/nodejs/node/pull/38437) - \[[`1eae4af6f7`](https://github.com/nodejs/node/commit/1eae4af6f7)] - **doc**: clarify that fs.Dir async iterator closes automatically (James M Snell) [#&#8203;38438](https://github.com/nodejs/node/pull/38438) - \[[`14afb39259`](https://github.com/nodejs/node/commit/14afb39259)] - **doc**: document new TCP_KEEPCNT and TCP_KEEPINTVL socket option defaults (Arnold Zokas) [#&#8203;38313](https://github.com/nodejs/node/pull/38313) - \[[`ed5ef21690`](https://github.com/nodejs/node/commit/ed5ef21690)] - **doc**: do not mention TCP in the allowHalfOpen option description (Luigi Pinca) [#&#8203;38360](https://github.com/nodejs/node/pull/38360) - \[[`042985c139`](https://github.com/nodejs/node/commit/042985c139)] - **doc**: update message to match actual output (Rich Trott) [#&#8203;35271](https://github.com/nodejs/node/pull/35271) - \[[`bcc5e2af76`](https://github.com/nodejs/node/commit/bcc5e2af76)] - **doc**: request default snap track be updated for LTS (Rod Vagg) [#&#8203;37708](https://github.com/nodejs/node/pull/37708) - \[[`dfd4c7ba93`](https://github.com/nodejs/node/commit/dfd4c7ba93)] - **doc**: mark `process.hrtime()` as legacy (Antoine du Hamel) [#&#8203;38371](https://github.com/nodejs/node/pull/38371) - \[[`67cd88da00`](https://github.com/nodejs/node/commit/67cd88da00)] - **doc**: fix typo in worker_threads.md (takayama) [#&#8203;38368](https://github.com/nodejs/node/pull/38368) - \[[`a9314cda7d`](https://github.com/nodejs/node/commit/a9314cda7d)] - **doc**: fix version history for `"exports"` patterns (Antoine du Hamel) [#&#8203;38355](https://github.com/nodejs/node/pull/38355) - \[[`76885cd578`](https://github.com/nodejs/node/commit/76885cd578)] - **doc**: fix `package.json` `"imports"` field history (Antoine du Hamel) [#&#8203;38356](https://github.com/nodejs/node/pull/38356) - \[[`0e88ae7ec1`](https://github.com/nodejs/node/commit/0e88ae7ec1)] - **doc**: fix typo in buffer.md (divlo) [#&#8203;38323](https://github.com/nodejs/node/pull/38323) - \[[`1cccc2da51`](https://github.com/nodejs/node/commit/1cccc2da51)] - **doc**: fix YAML comment opening tags (Jayden Seric) [#&#8203;38324](https://github.com/nodejs/node/pull/38324) - \[[`25052dc987`](https://github.com/nodejs/node/commit/25052dc987)] - **doc**: add nodejs-sec email template (Daniel Bevenius) [#&#8203;38290](https://github.com/nodejs/node/pull/38290) - \[[`3858029262`](https://github.com/nodejs/node/commit/3858029262)] - **doc**: update TSC members list with three new members (Rich Trott) [#&#8203;38352](https://github.com/nodejs/node/pull/38352) - \[[`2eef587674`](https://github.com/nodejs/node/commit/2eef587674)] - **doc**: use `foo.prototype.bar` notation in buffer.md (Voltrex) [#&#8203;38032](https://github.com/nodejs/node/pull/38032) - \[[`8a90f55a05`](https://github.com/nodejs/node/commit/8a90f55a05)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287) - \[[`a696f1080c`](https://github.com/nodejs/node/commit/a696f1080c)] - **inspector**: remove redundant method for connection check (Yash Ladha) [#&#8203;37986](https://github.com/nodejs/node/pull/37986) - \[[`fcac2e0363`](https://github.com/nodejs/node/commit/fcac2e0363)] - **lib**: harden lint checks for globals (Antoine du Hamel) [#&#8203;38419](https://github.com/nodejs/node/pull/38419) - \[[`277122e1fa`](https://github.com/nodejs/node/commit/277122e1fa)] - **lib**: fix and improve os typings (Akhil Marsonya) [#&#8203;38316](https://github.com/nodejs/node/pull/38316) - \[[`f2c0258b4c`](https://github.com/nodejs/node/commit/f2c0258b4c)] - **lib**: add support for JSTransferable as a mixin (James M Snell) [#&#8203;38383](https://github.com/nodejs/node/pull/38383) - \[[`96f54d3446`](https://github.com/nodejs/node/commit/96f54d3446)] - **meta**: post comment when pr labeled fast-track (James M Snell) [#&#8203;38446](https://github.com/nodejs/node/pull/38446) - \[[`4711f57cf2`](https://github.com/nodejs/node/commit/4711f57cf2)] - **perf_hooks**: add toJSON to performance class (Yash Ladha) [#&#8203;37771](https://github.com/nodejs/node/pull/37771) - \[[`013fa59602`](https://github.com/nodejs/node/commit/013fa59602)] - **perf_hooks**: fix PerformanceObserver 'gc' crash (James M Snell) [#&#8203;38414](https://github.com/nodejs/node/pull/38414) - \[[`10147f191e`](https://github.com/nodejs/node/commit/10147f191e)] - **readline**: move utilities to internal modules (Antoine du Hamel) [#&#8203;38466](https://github.com/nodejs/node/pull/38466) - \[[`620ee42ab4`](https://github.com/nodejs/node/commit/620ee42ab4)] - **repl**: document top level await limitation with const/let (James M Snell) [#&#8203;38449](https://github.com/nodejs/node/pull/38449) - \[[`aa24681dcb`](https://github.com/nodejs/node/commit/aa24681dcb)] - **repl**: display prompt once after error callback (Anna Henningsen) [#&#8203;38314](https://github.com/nodejs/node/pull/38314) - \[[`9c06103a4f`](https://github.com/nodejs/node/commit/9c06103a4f)] - **src**: fix validation of negative offset to avoid abort (James M Snell) [#&#8203;38421](https://github.com/nodejs/node/pull/38421) - \[[`7d8cc2abf1`](https://github.com/nodejs/node/commit/7d8cc2abf1)] - **src**: use %progbits instead of [@&#8203;progbits](https://github.com/progbits) (Stephen Gallagher) [#&#8203;38312](https://github.com/nodejs/node/pull/38312) - \[[`17856f1f88`](https://github.com/nodejs/node/commit/17856f1f88)] - **src**: print arbitrary javascript exception value in node report (legendecas) [#&#8203;38009](https://github.com/nodejs/node/pull/38009) - \[[`769a210d55`](https://github.com/nodejs/node/commit/769a210d55)] - **src**: refactor to use THROW_\* argument based snprintf (Filip Skokan) [#&#8203;38357](https://github.com/nodejs/node/pull/38357) - \[[`e3538bbcd2`](https://github.com/nodejs/node/commit/e3538bbcd2)] - **src**: fix abort in pbkdf2 (Tobias Nießen) [#&#8203;38354](https://github.com/nodejs/node/pull/38354) - \[[`09cacd7418`](https://github.com/nodejs/node/commit/09cacd7418)] - **src**: fix setting Converter sub char length (James M Snell) [#&#8203;38331](https://github.com/nodejs/node/pull/38331) - \[[`3649ec5276`](https://github.com/nodejs/node/commit/3649ec5276)] - **src**: avoid deferred gc/cleanup for Buffer.from (James M Snell) [#&#8203;38337](https://github.com/nodejs/node/pull/38337) - \[[`f2ffaba78c`](https://github.com/nodejs/node/commit/f2ffaba78c)] - **stream**: the position of \_read() is wrong (helloyou2012) [#&#8203;38292](https://github.com/nodejs/node/pull/38292) - \[[`7ce39b8608`](https://github.com/nodejs/node/commit/7ce39b8608)] - **test**: fix `common.mustCall` `length` and `name` properties (Antoine du Hamel) [#&#8203;38464](https://github.com/nodejs/node/pull/38464) - \[[`d1cd1178e7`](https://github.com/nodejs/node/commit/d1cd1178e7)] - **test**: address deprecation warning (Rich Trott) [#&#8203;38448](https://github.com/nodejs/node/pull/38448) - \[[`67e9e71f75`](https://github.com/nodejs/node/commit/67e9e71f75)] - **test**: crypto KeyObject.from() ERR_INVALID_ARG_TYPE (pezhmanparsaee) [#&#8203;37890](https://github.com/nodejs/node/pull/37890) - \[[`9ad611c0b2`](https://github.com/nodejs/node/commit/9ad611c0b2)] - **test**: fix flaky test-crypto-timing-safe-dqual-benchmarks (Rich Trott) [#&#8203;38476](https://github.com/nodejs/node/pull/38476) - \[[`10b6b4e244`](https://github.com/nodejs/node/commit/10b6b4e244)] - **test**: update url Web Platform Tests (Leko) [#&#8203;38435](https://github.com/nodejs/node/pull/38435) - \[[`4f6c4eb144`](https://github.com/nodejs/node/commit/4f6c4eb144)] - **test**: move abort test from pummel to abort directory (Rich Trott) [#&#8203;38396](https://github.com/nodejs/node/pull/38396) - \[[`231ef4b0ce`](https://github.com/nodejs/node/commit/231ef4b0ce)] - **test**: move slower tests into pummel and skip on slow devices (Rich Trott) [#&#8203;38395](https://github.com/nodejs/node/pull/38395) - \[[`45322dfa12`](https://github.com/nodejs/node/commit/45322dfa12)] - **test**: skip some pummel tests on slower machines (Rich Trott) [#&#8203;38394](https://github.com/nodejs/node/pull/38394) - \[[`1bc47a4c0f`](https://github.com/nodejs/node/commit/1bc47a4c0f)] - **test**: fix test to allow quictls fork of OpenSSL 3 (Richard Lau) [#&#8203;38372](https://github.com/nodejs/node/pull/38372) - \[[`6ac02755f5`](https://github.com/nodejs/node/commit/6ac02755f5)] - **test**: extend timeout on debugger tests for slower machines (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`93b0c78de0`](https://github.com/nodejs/node/commit/93b0c78de0)] - **test**: fix comment typo (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`6c3e5043b0`](https://github.com/nodejs/node/commit/6c3e5043b0)] - **test**: fix test-inspector-cli-address (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`27d7588ad5`](https://github.com/nodejs/node/commit/27d7588ad5)] - **test**: add ancestor package.json checks for tmpdir (Richard Lau) [#&#8203;38285](https://github.com/nodejs/node/pull/38285) - \[[`30de03630e`](https://github.com/nodejs/node/commit/30de03630e)] - **test**: replace function with arrow function and remove unused argument (Andres) [#&#8203;38235](https://github.com/nodejs/node/pull/38235) - \[[`eb8f5ce44f`](https://github.com/nodejs/node/commit/eb8f5ce44f)] - **test**: use .test domain for not found address (Richard Lau) [#&#8203;38286](https://github.com/nodejs/node/pull/38286) - \[[`a4084d66c6`](https://github.com/nodejs/node/commit/a4084d66c6)] - **test,debugger**: migrate node-inspect tests to core (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`16eb078aa8`](https://github.com/nodejs/node/commit/16eb078aa8)] - **test,readline**: improve tab completion coverage (Antoine du Hamel) [#&#8203;38465](https://github.com/nodejs/node/pull/38465) - \[[`b3ca1b358e`](https://github.com/nodejs/node/commit/b3ca1b358e)] - **timers**: remove redundant unref calls (Giora Guttsait) [#&#8203;38320](https://github.com/nodejs/node/pull/38320) - \[[`5b393d9258`](https://github.com/nodejs/node/commit/5b393d9258)] - **tls**: validate ticket keys buffer (Antoine du Hamel) [#&#8203;38308](https://github.com/nodejs/node/pull/38308) - \[[`f6745e9370`](https://github.com/nodejs/node/commit/f6745e9370)] - **tls**: fix `tlsSocket.setMaxSendFragment` abort (eladkeyshawn) [#&#8203;38170](https://github.com/nodejs/node/pull/38170) - \[[`499da2d9e3`](https://github.com/nodejs/node/commit/499da2d9e3)] - **tools**: use mktemp to create the workspace directory (Luigi Pinca) [#&#8203;38432](https://github.com/nodejs/node/pull/38432) - \[[`8a83bfd1bd`](https://github.com/nodejs/node/commit/8a83bfd1bd)] - **tools**: use a shallow clone of the npm/cli repository (Luigi Pinca) [#&#8203;38463](https://github.com/nodejs/node/pull/38463) - \[[`bec959ef8b`](https://github.com/nodejs/node/commit/bec959ef8b)] - **tools**: disable LTO for "v8\_cppgc_shared" target (Jesse Chan) [#&#8203;38346](https://github.com/nodejs/node/pull/38346) - \[[`6350d35b3c`](https://github.com/nodejs/node/commit/6350d35b3c)] - **tools**: remove fixer for non-ascii-character ESLint custom rule (Rich Trott) [#&#8203;38413](https://github.com/nodejs/node/pull/38413) - \[[`dce8d2968a`](https://github.com/nodejs/node/commit/dce8d2968a)] - **tools**: fix doc generation when version info is not available (Antoine du Hamel) [#&#8203;38398](https://github.com/nodejs/node/pull/38398) - \[[`1033f6c8cb`](https://github.com/nodejs/node/commit/1033f6c8cb)] - **tools**: add \_depot_tools to PATH (for V8 tests) (DeeDeeG) [#&#8203;38299](https://github.com/nodejs/node/pull/38299) - \[[`28f02cb8cf`](https://github.com/nodejs/node/commit/28f02cb8cf)] - **tools**: update ESLint to 7.25.0 (Colin Ihrig) [#&#8203;38378](https://github.com/nodejs/node/pull/38378) - \[[`f1ea2c8e2b`](https://github.com/nodejs/node/commit/f1ea2c8e2b)] - **tools**: update markdown linter rules (Rich Trott) [#&#8203;38384](https://github.com/nodejs/node/pull/38384) - \[[`02e875c645`](https://github.com/nodejs/node/commit/02e875c645)] - **tools**: remove node-inspect from license (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`d3bd4b4771`](https://github.com/nodejs/node/commit/d3bd4b4771)] - **tools**: fix type mismatch in test runner (Richard Lau) [#&#8203;38289](https://github.com/nodejs/node/pull/38289) - \[[`9a2651352b`](https://github.com/nodejs/node/commit/9a2651352b)] - **typings**: add JSDoc typings for fs (Voltrex) [#&#8203;38306](https://github.com/nodejs/node/pull/38306) - \[[`e389e86b6b`](https://github.com/nodejs/node/commit/e389e86b6b)] - **typings**: add JSDoc typings for util (Rohit Gohri) [#&#8203;38213](https://github.com/nodejs/node/pull/38213) - \[[`ec5b06eae3`](https://github.com/nodejs/node/commit/ec5b06eae3)] - **util**: fix infinite recursion during inspection (Ruben Bridgewater) [#&#8203;37079](https://github.com/nodejs/node/pull/37079) - \[[`67bd0ec15c`](https://github.com/nodejs/node/commit/67bd0ec15c)] - **zlib**: fix brotli flush range (Khaidi Chu) [#&#8203;38408](https://github.com/nodejs/node/pull/38408) ### [`v16.0.0`](https://github.com/nodejs/node/releases/v16.0.0) [Compare Source](https://github.com/nodejs/node/compare/v15.14.0...v16.0.0) ##### Notable Changes ##### Deprecations and Removals - **(SEMVER-MAJOR)** **fs**: remove permissive rmdir recursive (Antoine du Hamel) [#&#8203;37216](https://github.com/nodejs/node/pull/37216) - **(SEMVER-MAJOR)** **fs**: runtime deprecate rmdir recursive option (Antoine du Hamel) [#&#8203;37302](https://github.com/nodejs/node/pull/37302) - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('http_parser') (James M Snell) [#&#8203;37813](https://github.com/nodejs/node/pull/37813) - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('url') (James M Snell) [#&#8203;37799](https://github.com/nodejs/node/pull/37799) - **(SEMVER-MAJOR)** **lib**: make process.binding('util') return only type checkers (Anna Henningsen) [#&#8203;37819](https://github.com/nodejs/node/pull/37819) - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('crypto') (James M Snell) [#&#8203;37790](https://github.com/nodejs/node/pull/37790) - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('signal_wrap') (James M Snell) [#&#8203;37800](https://github.com/nodejs/node/pull/37800) - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('v8') (James M Snell) [#&#8203;37789](https://github.com/nodejs/node/pull/37789) - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('async_wrap') (James M Snell) [#&#8203;37576](https://github.com/nodejs/node/pull/37576) - **(SEMVER-MAJOR)** **module**: remove module.createRequireFromPath (Antoine du Hamel) [#&#8203;37201](https://github.com/nodejs/node/pull/37201) - **(SEMVER-MAJOR)** **module**: runtime deprecate subpath folder mappings (Antoine du Hamel) [#&#8203;37215](https://github.com/nodejs/node/pull/37215) - **(SEMVER-MAJOR)** **module**: runtime deprecate "main" index and extension lookups (Antoine du Hamel) [#&#8203;37206](https://github.com/nodejs/node/pull/37206) - **(SEMVER-MAJOR)** **module**: runtime deprecate invalid package.json main entries (Antoine du Hamel) [#&#8203;37204](https://github.com/nodejs/node/pull/37204) - **(SEMVER-MAJOR)** **process**: runtime deprecate changing process.config (James M Snell) [#&#8203;36902](https://github.com/nodejs/node/pull/36902) ##### Stable Timers Promises API The Timers Promises API provides an alternative set of timer functions that return Promise objects. Added in Node.js v15.0.0, in this release they graduate from experimental status to stable. Contributed by James Snell - [#&#8203;38112](https://github.com/nodejs/node/pull/38112) ##### Toolchain and Compiler Upgrades Node.js v16.0.0 will be the first release where we ship prebuilt binaries for Apple Silicon. While we’ll be providing separate tarballs for the Intel (`darwin-x64`) and ARM (`darwin-arm64`) architectures the macOS installer (`.pkg`) will be shipped as a ‘fat’ (multi-architecture) binary. - **(SEMVER-MAJOR)** **build**: remove support for Python 2 (Christian Clauss) [#&#8203;36691](https://github.com/nodejs/node/pull/36691) - **(SEMVER-MAJOR)** **build**: default PYTHON to python3 in Makefile (Michaël Zasso) [#&#8203;37764](https://github.com/nodejs/node/pull/37764) - **build**: update Makefile to support fat binary (Ash Cripps) [#&#8203;37861](https://github.com/nodejs/node/pull/37861) - **(SEMVER-MAJOR)** **build**: enable ASLR (PIE) on OS X (woodfairy) [#&#8203;35704](https://github.com/nodejs/node/pull/35704) - **build**: warn for gcc versions earlier than 8.3.0 (Richard Lau) [#&#8203;37935](https://github.com/nodejs/node/pull/37935) - **(SEMVER-MAJOR)** **doc**: update minimum supported Xcode to 11 (Michaël Zasso) [#&#8203;37872](https://github.com/nodejs/node/pull/37872) - **(SEMVER-MAJOR)** **doc**: update minimum supported GCC to 8.3 (Michaël Zasso) [#&#8203;37871](https://github.com/nodejs/node/pull/37871) - **(SEMVER-MAJOR)** **doc**: update AIX to GCC8 for v16.x (Ash Cripps) [#&#8203;37677](https://github.com/nodejs/node/pull/37677) - **tools**: set arch in Distribution.xml (Ash Cripps) [#&#8203;38261](https://github.com/nodejs/node/pull/38261) ##### V8 9.0 The V8 JavaScript engine is updated to V8 9.0, including performance tweaks and improvements. This update also brings the ECMAScript RegExp Match Indices, which provide the start and end indices of the captured string. The indices array is available via the `.indices` property on match objects when the regular expression has the `/d` flag. Contributed by Michaël Zasso - [#&#8203;37587](https://github.com/nodejs/node/pull/37587) ##### Other Notable Changes - **(SEMVER-MINOR)** **assert**: graduate assert.match and assert.doesNotMatch (James M Snell) [#&#8203;38111](https://github.com/nodejs/node/pull/38111) - **(SEMVER-MAJOR)** **buffer**: expose btoa and atob as globals (James M Snell) [#&#8203;37786](https://github.com/nodejs/node/pull/37786) - **(SEMVER-MAJOR)** **deps**: bump minimum ICU version to 68 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178) - **deps**: update llhttp to 6.0.0 (Fedor Indutny) [#&#8203;38277](https://github.com/nodejs/node/pull/38277) - **deps**: upgrade npm to 7.10.0 (Ruy Adorno) [#&#8203;38254](https://github.com/nodejs/node/pull/38254) - **(SEMVER-MINOR)** **http**: add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660) - **(SEMVER-MAJOR)** **lib,src**: update cluster to use Parent (Michael Dawson) [#&#8203;36478](https://github.com/nodejs/node/pull/36478) - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - **(SEMVER-MINOR)** **perf_hooks**: add histogram option to timerify (James M Snell) [#&#8203;37475](https://github.com/nodejs/node/pull/37475) - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - **(SEMVER-MINOR)** **util**: add getSystemErrorMap() impl (eladkeyshawn) [#&#8203;38101](https://github.com/nodejs/node/pull/38101) ##### Semver-Major Commits - \[[`324a6c235a`](https://github.com/nodejs/node/commit/324a6c235a)] - **(SEMVER-MAJOR)** **async_hooks**: add thisArg to AsyncResource.bind (James M Snell) [#&#8203;36782](https://github.com/nodejs/node/pull/36782) - \[[`d1e2184c8e`](https://github.com/nodejs/node/commit/d1e2184c8e)] - **(SEMVER-MAJOR)** **buffer**: expose btoa and atob as globals (James M Snell) [#&#8203;37786](https://github.com/nodejs/node/pull/37786) - \[[`4268fae04a`](https://github.com/nodejs/node/commit/4268fae04a)] - **(SEMVER-MAJOR)** **build**: remove support for Python 2 (Christian Clauss) [#&#8203;36691](https://github.com/nodejs/node/pull/36691) - \[[`c3a5e15ebe`](https://github.com/nodejs/node/commit/c3a5e15ebe)] - **(SEMVER-MAJOR)** **build**: default PYTHON to python3 in Makefile (Michaël Zasso) [#&#8203;37764](https://github.com/nodejs/node/pull/37764) - \[[`1d8c022544`](https://github.com/nodejs/node/commit/1d8c022544)] - **(SEMVER-MAJOR)** **build**: update Makefile to support fat binary (Ash Cripps) [#&#8203;37861](https://github.com/nodejs/node/pull/37861) - \[[`38f32386c1`](https://github.com/nodejs/node/commit/38f32386c1)] - **(SEMVER-MAJOR)** **build**: include minimal V8 headers in distribution (Michaël Zasso) [#&#8203;37570](https://github.com/nodejs/node/pull/37570) - \[[`a19af5ee71`](https://github.com/nodejs/node/commit/a19af5ee71)] - **(SEMVER-MAJOR)** **build**: use C++11 ABI with libstdc++ (Anna Henningsen) [#&#8203;36634](https://github.com/nodejs/node/pull/36634) - \[[`8d6b74d347`](https://github.com/nodejs/node/commit/8d6b74d347)] - **(SEMVER-MAJOR)** **build**: enable ASLR (PIE) on OS X (woodfairy) [#&#8203;35704](https://github.com/nodejs/node/pull/35704) - \[[`732ad99e47`](https://github.com/nodejs/node/commit/732ad99e47)] - **(SEMVER-MAJOR)** **deps**: update V8 to 9.0.257.11 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`43cc8e4b2e`](https://github.com/nodejs/node/commit/43cc8e4b2e)] - **(SEMVER-MAJOR)** **deps**: bump minimum ICU version to 68 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`c5ff019a4e`](https://github.com/nodejs/node/commit/c5ff019a4e)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.9.255.19 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`c7b3292251`](https://github.com/nodejs/node/commit/c7b3292251)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.8.278.17 (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`48db20f6f5`](https://github.com/nodejs/node/commit/48db20f6f5)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.7.220 (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`d85e1f0703`](https://github.com/nodejs/node/commit/d85e1f0703)] - **(SEMVER-MAJOR)** **dns**: use url module instead of punycode for IDNA (Antoine du Hamel) [#&#8203;35091](https://github.com/nodejs/node/pull/35091) - \[[`290c158018`](https://github.com/nodejs/node/commit/290c158018)] - **(SEMVER-MAJOR)** **doc**: update minimum supported Xcode to 11 (Michaël Zasso) [#&#8203;37872](https://github.com/nodejs/node/pull/37872) - \[[`1ff2918d80`](https://github.com/nodejs/node/commit/1ff2918d80)] - **(SEMVER-MAJOR)** **doc**: update minimum supported GCC to 8.3 (Michaël Zasso) [#&#8203;37871](https://github.com/nodejs/node/pull/37871) - \[[`2706e67116`](https://github.com/nodejs/node/commit/2706e67116)] - **(SEMVER-MAJOR)** **doc**: update AIX to GCC8 for v16.x (Ash Cripps) [#&#8203;37677](https://github.com/nodejs/node/pull/37677) - \[[`5ae5ca90ef`](https://github.com/nodejs/node/commit/5ae5ca90ef)] - **(SEMVER-MAJOR)** **doc**: add http.IncomingMessage#connection (Pranshu Srivastava) [#&#8203;33768](https://github.com/nodejs/node/pull/33768) - \[[`83d6e63aee`](https://github.com/nodejs/node/commit/83d6e63aee)] - **(SEMVER-MAJOR)** **events**: change EventTarget handler exception behavior (Nitzan Uziely) [#&#8203;37237](https://github.com/nodejs/node/pull/37237) - \[[`9948036ee0`](https://github.com/nodejs/node/commit/9948036ee0)] - **(SEMVER-MAJOR)** **fs**: remove permissive rmdir recursive (Antoine du Hamel) [#&#8203;37216](https://github.com/nodejs/node/pull/37216) - \[[`d4693ff430`](https://github.com/nodejs/node/commit/d4693ff430)] - **(SEMVER-MAJOR)** **fs**: add validation for fd and path (Dylan Elliott) [#&#8203;35187](https://github.com/nodejs/node/pull/35187) - \[[`0ddd75bcd8`](https://github.com/nodejs/node/commit/0ddd75bcd8)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate rmdir recursive option (Antoine du Hamel) [#&#8203;37302](https://github.com/nodejs/node/pull/37302) - \[[`da217d0773`](https://github.com/nodejs/node/commit/da217d0773)] - **(SEMVER-MAJOR)** **fs**: fix flag and mode validation (James M Snell) [#&#8203;37480](https://github.com/nodejs/node/pull/37480) - \[[`2ef9a76ece`](https://github.com/nodejs/node/commit/2ef9a76ece)] - **(SEMVER-MAJOR)** **http**: use objects with null prototype in Agent (Michaël Zasso) [#&#8203;36409](https://github.com/nodejs/node/pull/36409) - \[[`25e30005b8`](https://github.com/nodejs/node/commit/25e30005b8)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('http_parser') (James M Snell) [#&#8203;37813](https://github.com/nodejs/node/pull/37813) - \[[`8bb4e048af`](https://github.com/nodejs/node/commit/8bb4e048af)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('url') (James M Snell) [#&#8203;37799](https://github.com/nodejs/node/pull/37799) - \[[`fe73e4d578`](https://github.com/nodejs/node/commit/fe73e4d578)] - **(SEMVER-MAJOR)** **lib**: make process.binding('util') return only type checkers (Anna Henningsen) [#&#8203;37819](https://github.com/nodejs/node/pull/37819) - \[[`3bee6d8aad`](https://github.com/nodejs/node/commit/3bee6d8aad)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('crypto') (James M Snell) [#&#8203;37790](https://github.com/nodejs/node/pull/37790) - \[[`ac00df112e`](https://github.com/nodejs/node/commit/ac00df112e)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('signal_wrap') (James M Snell) [#&#8203;37800](https://github.com/nodejs/node/pull/37800) - \[[`ae595d76e3`](https://github.com/nodejs/node/commit/ae595d76e3)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('v8') (James M Snell) [#&#8203;37789](https://github.com/nodejs/node/pull/37789) - \[[`104dac79cc`](https://github.com/nodejs/node/commit/104dac79cc)] - **(SEMVER-MAJOR)** **lib**: aggregate errors to avoid error swallowing (Antoine du Hamel) [#&#8203;37460](https://github.com/nodejs/node/pull/37460) - \[[`1468c9ff7c`](https://github.com/nodejs/node/commit/1468c9ff7c)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate access to process.binding('async_wrap') (James M Snell) [#&#8203;37576](https://github.com/nodejs/node/pull/37576) - \[[`295e766c27`](https://github.com/nodejs/node/commit/295e766c27)] - **(SEMVER-MAJOR)** **lib**: remove usage of url.parse (raisinten) [#&#8203;36853](https://github.com/nodejs/node/pull/36853) - \[[`cb3020d824`](https://github.com/nodejs/node/commit/cb3020d824)] - **(SEMVER-MAJOR)** **lib**: add error handling for input stream (rexagod) [#&#8203;31603](https://github.com/nodejs/node/pull/31603) - \[[`15164cebce`](https://github.com/nodejs/node/commit/15164cebce)] - **(SEMVER-MAJOR)** **lib,src**: update cluster to use Parent (Michael Dawson) [#&#8203;36478](https://github.com/nodejs/node/pull/36478) - \[[`3cc9aec988`](https://github.com/nodejs/node/commit/3cc9aec988)] - **(SEMVER-MAJOR)** **module**: runtime deprecate subpath folder mappings (Antoine du Hamel) [#&#8203;37215](https://github.com/nodejs/node/pull/37215) - \[[`9fab73c73b`](https://github.com/nodejs/node/commit/9fab73c73b)] - **(SEMVER-MAJOR)** **module**: runtime deprecate "main" index and extension lookups (Antoine du Hamel) [#&#8203;37206](https://github.com/nodejs/node/pull/37206) - \[[`76a073b67e`](https://github.com/nodejs/node/commit/76a073b67e)] - **(SEMVER-MAJOR)** **module**: runtime deprecate invalid package.json main entries (Antoine du Hamel) [#&#8203;37204](https://github.com/nodejs/node/pull/37204) - \[[`674614b3f5`](https://github.com/nodejs/node/commit/674614b3f5)] - **(SEMVER-MAJOR)** **module**: remove module.createRequireFromPath (Antoine du Hamel) [#&#8203;37201](https://github.com/nodejs/node/pull/37201) - \[[`aecd5ebf49`](https://github.com/nodejs/node/commit/aecd5ebf49)] - **(SEMVER-MAJOR)** **module**: only set cache when finding module succeeds (Yongsheng Zhang) [#&#8203;36642](https://github.com/nodejs/node/pull/36642) - \[[`f0bf373176`](https://github.com/nodejs/node/commit/f0bf373176)] - **(SEMVER-MAJOR)** **perf_hooks**: make performance a global (James M Snell) [#&#8203;37970](https://github.com/nodejs/node/pull/37970) - \[[`f3eb224c83`](https://github.com/nodejs/node/commit/f3eb224c83)] - **(SEMVER-MAJOR)** **perf_hooks**: complete overhaul of the implementation (James M Snell) [#&#8203;37136](https://github.com/nodejs/node/pull/37136) - \[[`f1753d4c76`](https://github.com/nodejs/node/commit/f1753d4c76)] - **(SEMVER-MAJOR)** **process**: disallow adding options to process.allowedNodeEnvironmentFlags (Antoine du Hamel) [#&#8203;36660](https://github.com/nodejs/node/pull/36660) - \[[`96f3977ded`](https://github.com/nodejs/node/commit/96f3977ded)] - **(SEMVER-MAJOR)** **process**: runtime deprecate changing process.config (James M Snell) [#&#8203;36902](https://github.com/nodejs/node/pull/36902) - \[[`45dbcbef90`](https://github.com/nodejs/node/commit/45dbcbef90)] - **(SEMVER-MAJOR)** **readline**: cursorTo throw error on NaN (Zijian Liu) [#&#8203;36379](https://github.com/nodejs/node/pull/36379) - \[[`bf79987433`](https://github.com/nodejs/node/commit/bf79987433)] - **(SEMVER-MAJOR)** **src**: mark internally exported functions as explicitly internal (Tyler Ang-Wanek) [#&#8203;37000](https://github.com/nodejs/node/pull/37000) - \[[`1fe571aa0c`](https://github.com/nodejs/node/commit/1fe571aa0c)] - **(SEMVER-MAJOR)** **src**: inline AsyncCleanupHookHandle in headers (Tyler Ang-Wanek) [#&#8203;37000](https://github.com/nodejs/node/pull/37000) - \[[`dfc288e7fd`](https://github.com/nodejs/node/commit/dfc288e7fd)] - **(SEMVER-MAJOR)** **src**: clean up embedder API (Anna Henningsen) [#&#8203;35897](https://github.com/nodejs/node/pull/35897) - \[[`65e8864fa3`](https://github.com/nodejs/node/commit/65e8864fa3)] - **(SEMVER-MAJOR)** **worker**: send correct error status for worker init (Yash Ladha) [#&#8203;36242](https://github.com/nodejs/node/pull/36242) ##### Semver-Minor Commits - \[[`944a956087`](https://github.com/nodejs/node/commit/944a956087)] - **(SEMVER-MINOR)** **assert**: graduate assert.match and assert.doesNotMatch (James M Snell) [#&#8203;38111](https://github.com/nodejs/node/pull/38111) - \[[`6a1986d50a`](https://github.com/nodejs/node/commit/6a1986d50a)] - **(SEMVER-MINOR)** **deps**: update llhttp to 5.1.0 (Fedor Indutny) [#&#8203;38146](https://github.com/nodejs/node/pull/38146) - \[[`069b5df4f6`](https://github.com/nodejs/node/commit/069b5df4f6)] - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - \[[`b803bca4fa`](https://github.com/nodejs/node/commit/b803bca4fa)] - **(SEMVER-MINOR)** **perf_hooks**: add histogram option to timerify (James M Snell) [#&#8203;37475](https://github.com/nodejs/node/pull/37475) - \[[`95391fe689`](https://github.com/nodejs/node/commit/95391fe689)] - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - \[[`15b8e6b1c4`](https://github.com/nodejs/node/commit/15b8e6b1c4)] - **(SEMVER-MINOR)** **timers**: graduate awaitable timers and improve docs (James M Snell) [#&#8203;38112](https://github.com/nodejs/node/pull/38112) - \[[`802171057f`](https://github.com/nodejs/node/commit/802171057f)] - **(SEMVER-MINOR)** **util**: add getSystemErrorMap() impl (eladkeyshawn) [#&#8203;38101](https://github.com/nodejs/node/pull/38101) ##### Semver-Patch Commits - \[[`8930eba199`](https://github.com/nodejs/node/commit/8930eba199)] - **assert**: change status of legacy asserts (James M Snell) [#&#8203;38113](https://github.com/nodejs/node/pull/38113) - \[[`0180fc5b9b`](https://github.com/nodejs/node/commit/0180fc5b9b)] - **benchmark**: improve compare.R output (Brian White) [#&#8203;38118](https://github.com/nodejs/node/pull/38118) - \[[`8d9d8236b7`](https://github.com/nodejs/node/commit/8d9d8236b7)] - **bootstrap**: mksnapshot should show JS error (Bradley Meck) [#&#8203;38174](https://github.com/nodejs/node/pull/38174) - \[[`6cb314bbe5`](https://github.com/nodejs/node/commit/6cb314bbe5)] - **bootstrap**: print information for snapshot at environment exit in debug (Joyee Cheung) [#&#8203;37967](https://github.com/nodejs/node/pull/37967) - \[[`14aed60941`](https://github.com/nodejs/node/commit/14aed60941)] - **buffer,errors**: add missing n literal in range error string (Cactysman) [#&#8203;37750](https://github.com/nodejs/node/pull/37750) - \[[`049b703a28`](https://github.com/nodejs/node/commit/049b703a28)] - **build**: sync generation of `v8\_build\_config.json` (Richard Lau) [#&#8203;38263](https://github.com/nodejs/node/pull/38263) - \[[`1d21a8d140`](https://github.com/nodejs/node/commit/1d21a8d140)] - **build**: add riscv64 configure (luyahan) [#&#8203;37980](https://github.com/nodejs/node/pull/37980) - \[[`f5eea1744d`](https://github.com/nodejs/node/commit/f5eea1744d)] - **build**: don't run test workflow on doc dir on macOS (ycjcl868) [#&#8203;37999](https://github.com/nodejs/node/pull/37999) - \[[`2853b76e20`](https://github.com/nodejs/node/commit/2853b76e20)] - **build**: add pummel tests to ci runs (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`24426cd8c4`](https://github.com/nodejs/node/commit/24426cd8c4)] - **build**: prepare Windows coverage GitHub Action for pummel tests (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`7df0fc5c5c`](https://github.com/nodejs/node/commit/7df0fc5c5c)] - **build**: move OPENSSL_API_COMPAT to else clause (Daniel Bevenius) [#&#8203;38126](https://github.com/nodejs/node/pull/38126) - \[[`9cfb418e1f`](https://github.com/nodejs/node/commit/9cfb418e1f)] - **build**: package release changelog for releases (Richard Lau) [#&#8203;38033](https://github.com/nodejs/node/pull/38033) - \[[`558d1e6c22`](https://github.com/nodejs/node/commit/558d1e6c22)] - **build**: warn for gcc versions earlier than 8.3.0 (Richard Lau) [#&#8203;37935](https://github.com/nodejs/node/pull/37935) - \[[`a572a4e34e`](https://github.com/nodejs/node/commit/a572a4e34e)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`f3c7078245`](https://github.com/nodejs/node/commit/f3c7078245)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`842389839b`](https://github.com/nodejs/node/commit/842389839b)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`98d1ae47cf`](https://github.com/nodejs/node/commit/98d1ae47cf)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`993ed19f9c`](https://github.com/nodejs/node/commit/993ed19f9c)] - **crypto**: reduce range of size to int max (Qingyu Deng) [#&#8203;38096](https://github.com/nodejs/node/pull/38096) - \[[`896dc39951`](https://github.com/nodejs/node/commit/896dc39951)] - **crypto**: fix webcrypto derive(Bits|Key) resolve values and docs (Filip Skokan) [#&#8203;38148](https://github.com/nodejs/node/pull/38148) - \[[`d2f116c6bb`](https://github.com/nodejs/node/commit/d2f116c6bb)] - **crypto**: fixup randomFill size and offset handling (James M Snell) [#&#8203;38138](https://github.com/nodejs/node/pull/38138) - \[[`dfe3f952a3`](https://github.com/nodejs/node/commit/dfe3f952a3)] - **crypto**: fix crash in CCM mode without data (Tobias Nießen) [#&#8203;38102](https://github.com/nodejs/node/pull/38102) - \[[`e8cb6446ef`](https://github.com/nodejs/node/commit/e8cb6446ef)] - **crypto**: reconcile oneshot sign/verify sync and async implementations (Filip Skokan) [#&#8203;37816](https://github.com/nodejs/node/pull/37816) - \[[`1e4a2bcbee`](https://github.com/nodejs/node/commit/1e4a2bcbee)] - **crypto**: remove check for condition that is always true (Rich Trott) [#&#8203;38072](https://github.com/nodejs/node/pull/38072) - \[[`64d5be25ab`](https://github.com/nodejs/node/commit/64d5be25ab)] - **deps**: V8: cherry-pick [`1648e05`](https://github.com/nodejs/node/commit/1648e050cade) (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`621b544909`](https://github.com/nodejs/node/commit/621b544909)] - **deps**: silence irrelevant V8 warnings (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`0d78bc3101`](https://github.com/nodejs/node/commit/0d78bc3101)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`5214918856`](https://github.com/nodejs/node/commit/5214918856)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`6b3caf77b2`](https://github.com/nodejs/node/commit/6b3caf77b2)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`d0a032fafb`](https://github.com/nodejs/node/commit/d0a032fafb)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`c8b2fa642e`](https://github.com/nodejs/node/commit/c8b2fa642e)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`8eeecc19ae`](https://github.com/nodejs/node/commit/8eeecc19ae)] - **deps**: V8: cherry-pick [`8957d46`](https://github.com/nodejs/node/commit/8957d4677aa7) (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`b186142a0b`](https://github.com/nodejs/node/commit/b186142a0b)] - **deps**: V8: backport [`a113954`](https://github.com/nodejs/node/commit/a11395433dbd) (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`290f2d8d3e`](https://github.com/nodejs/node/commit/290f2d8d3e)] - **deps**: V8: cherry-pick [`deb0813`](https://github.com/nodejs/node/commit/deb0813166f3) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`63ed0b8bfe`](https://github.com/nodejs/node/commit/63ed0b8bfe)] - **deps**: V8: cherry-pick [`9a6a228`](https://github.com/nodejs/node/commit/9a6a22874c81) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`47f1c5257a`](https://github.com/nodejs/node/commit/47f1c5257a)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`19d975241f`](https://github.com/nodejs/node/commit/19d975241f)] - **deps**: workaround stod() limitations on SmartOS (Colin Ihrig) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`70f928c6a6`](https://github.com/nodejs/node/commit/70f928c6a6)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`b045e39513`](https://github.com/nodejs/node/commit/b045e39513)] - **deps**: patch V8 to run on Xcode 8 (Mary Marchini) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`32725d2224`](https://github.com/nodejs/node/commit/32725d2224)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`fe3cee7b37`](https://github.com/nodejs/node/commit/fe3cee7b37)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`b2d05f7349`](https://github.com/nodejs/node/commit/b2d05f7349)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`c7a0ab4e3d`](https://github.com/nodejs/node/commit/c7a0ab4e3d)] - **deps**: patch V8 to run on older XCode versions (Ujjwal Sharma) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`60b623ee90`](https://github.com/nodejs/node/commit/60b623ee90)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`577ff9fee5`](https://github.com/nodejs/node/commit/577ff9fee5)] - **deps**: V8: cherry-pick [`deb0813`](https://github.com/nodejs/node/commit/deb0813166f3) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`00e1c7ea83`](https://github.com/nodejs/node/commit/00e1c7ea83)] - **deps**: V8: cherry-pick [`9a6a228`](https://github.com/nodejs/node/commit/9a6a22874c81) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`ee01d6b7fc`](https://github.com/nodejs/node/commit/ee01d6b7fc)] - **deps**: V8: cherry-pick [`2059ee8`](https://github.com/nodejs/node/commit/2059ee813359) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`2dad8d43cc`](https://github.com/nodejs/node/commit/2dad8d43cc)] - **deps**: V8: cherry-pick [`bde7ee5`](https://github.com/nodejs/node/commit/bde7ee5473d6) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`3046131ea0`](https://github.com/nodejs/node/commit/3046131ea0)] - **deps**: V8: cherry-pick [`9a71298`](https://github.com/nodejs/node/commit/9a712984025e) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`d178d0738f`](https://github.com/nodejs/node/commit/d178d0738f)] - **deps**: V8: cherry-pick [`0b96e5b`](https://github.com/nodejs/node/commit/0b96e5b0bfb2) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`5c71ea151a`](https://github.com/nodejs/node/commit/5c71ea151a)] - **deps**: V8: cherry-pick [`fbb2890`](https://github.com/nodejs/node/commit/fbb28902e049) (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`c8e15cd2c6`](https://github.com/nodejs/node/commit/c8e15cd2c6)] - **deps**: V8: cherry-pick [`821fb38`](https://github.com/nodejs/node/commit/821fb3883a8e) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`b0d67426af`](https://github.com/nodejs/node/commit/b0d67426af)] - **deps**: workaround stod() limitations on SmartOS (Colin Ihrig) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`c8a658ac53`](https://github.com/nodejs/node/commit/c8a658ac53)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`153b8cea36`](https://github.com/nodejs/node/commit/153b8cea36)] - **deps**: patch V8 to run on Xcode 8 (Mary Marchini) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`a785984133`](https://github.com/nodejs/node/commit/a785984133)] - **deps**: V8: silence irrelevant warnings (Michaël Zasso) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`246c9b8c31`](https://github.com/nodejs/node/commit/246c9b8c31)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`96a567f9e9`](https://github.com/nodejs/node/commit/96a567f9e9)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`e74383cecb`](https://github.com/nodejs/node/commit/e74383cecb)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`732847f1eb`](https://github.com/nodejs/node/commit/732847f1eb)] - **deps**: patch V8 to run on older XCode versions (Ujjwal Sharma) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`70171d186f`](https://github.com/nodejs/node/commit/70171d186f)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`15c91c6dd5`](https://github.com/nodejs/node/commit/15c91c6dd5)] - **deps**: V8: cherry-pick [`821fb38`](https://github.com/nodejs/node/commit/821fb3883a8e) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`40b2fa4832`](https://github.com/nodejs/node/commit/40b2fa4832)] - **deps**: V8: cherry-pick [`45e4977`](https://github.com/nodejs/node/commit/45e49775f5a3) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`cd91ab5865`](https://github.com/nodejs/node/commit/cd91ab5865)] - **deps**: V8: cherry-pick [`7b3a27b`](https://github.com/nodejs/node/commit/7b3a27b7ae65) (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`f4fc099080`](https://github.com/nodejs/node/commit/f4fc099080)] - **deps**: V8: cherry-pick [`d76abfe`](https://github.com/nodejs/node/commit/d76abfed3512) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`6200176ef0`](https://github.com/nodejs/node/commit/6200176ef0)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`bd5642deb9`](https://github.com/nodejs/node/commit/bd5642deb9)] - **deps**: update V8 postmortem metadata script (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`9ae7159216`](https://github.com/nodejs/node/commit/9ae7159216)] - **deps**: update V8 postmortem metadata script (Colin Ihrig) [#&#8203;33579](https://github.com/nodejs/node/pull/33579) - \[[`f4b4e21b2f`](https://github.com/nodejs/node/commit/f4b4e21b2f)] - **deps**: patch V8 to run on Xcode 8 (Mary Marchini) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`f6a84540d8`](https://github.com/nodejs/node/commit/f6a84540d8)] - **deps**: V8: silence irrelevant warnings (Michaël Zasso) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`bbc3f46572`](https://github.com/nodejs/node/commit/bbc3f46572)] - **deps**: make v8.h compatible with VS2015 (Joao Reis) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`0c988642dc`](https://github.com/nodejs/node/commit/0c988642dc)] - **deps**: V8: forward declaration of `Rtl\*FunctionTable` (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`703bf933d4`](https://github.com/nodejs/node/commit/703bf933d4)] - **deps**: V8: patch register-arm64.h (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`5451975b18`](https://github.com/nodejs/node/commit/5451975b18)] - **deps**: patch V8 to run on older XCode versions (Ujjwal Sharma) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`c460f7af4d`](https://github.com/nodejs/node/commit/c460f7af4d)] - **deps**: V8: un-cherry-pick [`bd019bd`](https://github.com/nodejs/node/commit/bd019bd) (Refael Ackermann) [#&#8203;32116](https://github.com/nodejs/node/pull/32116) - \[[`bfee9daaa5`](https://github.com/nodejs/node/commit/bfee9daaa5)] - **deps**: update llhttp to 6.0.0 (Fedor Indutny) [#&#8203;38277](https://github.com/nodejs/node/pull/38277) - \[[`94405650ae`](https://github.com/nodejs/node/commit/94405650ae)] - **deps**: upgrade npm to 7.10.0 (Ruy Adorno) [#&#8203;38254](https://github.com/nodejs/node/pull/38254) - \[[`8e80fc7ff8`](https://github.com/nodejs/node/commit/8e80fc7ff8)] - **deps**: patch V8 to 9.0.257.17 (Michaël Zasso) [#&#8203;38237](https://github.com/nodejs/node/pull/38237) - \[[`5b358d57e1`](https://github.com/nodejs/node/commit/5b358d57e1)] - **deps**: patch V8 to 9.0.257.16 (Michaël Zasso) [#&#8203;38218](https://github.com/nodejs/node/pull/38218) - \[[`ee669a0d29`](https://github.com/nodejs/node/commit/ee669a0d29)] - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178) - \[[`2468e4ed3e`](https://github.com/nodejs/node/commit/2468e4ed3e)] - **deps**: V8: backport [`d59db06`](https://github.com/nodejs/node/commit/d59db06bf542) (Antoine du Hamel) [#&#8203;38162](https://github.com/nodejs/node/pull/38162) - \[[`c748668704`](https://github.com/nodejs/node/commit/c748668704)] - **deps**: upgrade npm to 7.9.0 (Ruy Adorno) [#&#8203;38156](https://github.com/nodejs/node/pull/38156) - \[[`ca13f7aaf3`](https://github.com/nodejs/node/commit/ca13f7aaf3)] - **deps**: V8: cherry-pick [`501482c`](https://github.com/nodejs/node/commit/501482cbc704) (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121) - \[[`bc531d1860`](https://github.com/nodejs/node/commit/bc531d1860)] - **deps**: upgrade npm to 7.8.0 (Darcy Clarke) [#&#8203;38030](https://github.com/nodejs/node/pull/38030) - \[[`d639321acd`](https://github.com/nodejs/node/commit/d639321acd)] - **deps**: patch V8 to 9.0.257.13 (Michaël Zasso) [#&#8203;37830](https://github.com/nodejs/node/pull/37830) - \[[`bc31dc0e0f`](https://github.com/nodejs/node/commit/bc31dc0e0f)] - **dns**: refactor cares_wrap internals (James M Snell) [#&#8203;38172](https://github.com/nodejs/node/pull/38172) - \[[`36decec87f`](https://github.com/nodejs/node/commit/36decec87f)] - **doc**: remove superfluous await from fsPromises.readdir example (Michael Rommel) [#&#8203;38293](https://github.com/nodejs/node/pull/38293) - \[[`ac2c8c530d`](https://github.com/nodejs/node/commit/ac2c8c530d)] - **doc**: fixup http.IncomingMessage deprecation code (Guy Bedford) [#&#8203;36917](https://github.com/nodejs/node/pull/36917) - \[[`767643fc19`](https://github.com/nodejs/node/commit/767643fc19)] - **doc**: restore minimum Xcode version for macOS (Richard Lau) [#&#8203;38266](https://github.com/nodejs/node/pull/38266) - \[[`e541032276`](https://github.com/nodejs/node/commit/e541032276)] - **doc**: fix typo in repl.md (Arkerone) [#&#8203;38244](https://github.com/nodejs/node/pull/38244) - \[[`fb93b71307`](https://github.com/nodejs/node/commit/fb93b71307)] - **doc**: fix typo in buffer.md (Arkerone) [#&#8203;38243](https://github.com/nodejs/node/pull/38243) - \[[`7d688d4b36`](https://github.com/nodejs/node/commit/7d688d4b36)] - **doc**: fix missing backtick in fs.md (Siddharth) [#&#8203;38260](https://github.com/nodejs/node/pull/38260) - \[[`6d04cc6849`](https://github.com/nodejs/node/commit/6d04cc6849)] - **doc**: change "oject" to "object" (Arkerone) [#&#8203;38256](https://github.com/nodejs/node/pull/38256) - \[[`b4363f726c`](https://github.com/nodejs/node/commit/b4363f726c)] - **doc**: revise TLS minVersion/maxVersion text (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202) - \[[`98c2067f13`](https://github.com/nodejs/node/commit/98c2067f13)] - **doc**: update BUILDING.md for Apple Silicon (Ash Cripps) [#&#8203;38227](https://github.com/nodejs/node/pull/38227) - \[[`4def7c4418`](https://github.com/nodejs/node/commit/4def7c4418)] - **doc**: standardize on pseudorandom (Rich Trott) [#&#8203;38196](https://github.com/nodejs/node/pull/38196) - \[[`f1027ecf29`](https://github.com/nodejs/node/commit/f1027ecf29)] - **doc**: standardize command flag notes (Ferdi) [#&#8203;38199](https://github.com/nodejs/node/pull/38199) - \[[`756d2e48d8`](https://github.com/nodejs/node/commit/756d2e48d8)] - **doc**: update `buffer.constants.MAX\_LENGTH` (Qingyu Deng) [#&#8203;38109](https://github.com/nodejs/node/pull/38109) - \[[`474fbb5f6e`](https://github.com/nodejs/node/commit/474fbb5f6e)] - **doc**: clarify child_process close event (Nitzan Uziely) [#&#8203;38181](https://github.com/nodejs/node/pull/38181) - \[[`eee2c331ef`](https://github.com/nodejs/node/commit/eee2c331ef)] - **doc**: add command flag to import.meta.resolve (Ferdi) [#&#8203;38171](https://github.com/nodejs/node/pull/38171) - \[[`f46d29360c`](https://github.com/nodejs/node/commit/f46d29360c)] - **doc**: advise against using randomFill on floats (Tobias Nießen) [#&#8203;38150](https://github.com/nodejs/node/pull/38150) - \[[`5823fc79ba`](https://github.com/nodejs/node/commit/5823fc79ba)] - **doc**: update links in ICU guide (Michaël Zasso) [#&#8203;38177](https://github.com/nodejs/node/pull/38177) - \[[`993a1da47c`](https://github.com/nodejs/node/commit/993a1da47c)] - **doc**: mention cryptographic prng in description of randomUUID (Serkan Özel) [#&#8203;38074](https://github.com/nodejs/node/pull/38074) - \[[`5ba5cc8619`](https://github.com/nodejs/node/commit/5ba5cc8619)] - **doc**: fix typos in doc/api/cli.md (Arkerone) [#&#8203;38163](https://github.com/nodejs/node/pull/38163) - \[[`6a2314acd7`](https://github.com/nodejs/node/commit/6a2314acd7)] - **doc**: add link to V8 (Voltrex) [#&#8203;38144](https://github.com/nodejs/node/pull/38144) - \[[`093b527b25`](https://github.com/nodejs/node/commit/093b527b25)] - **doc**: fix typo in assert.md (Arkerone) [#&#8203;38152](https://github.com/nodejs/node/pull/38152) - \[[`0fa579ac2a`](https://github.com/nodejs/node/commit/0fa579ac2a)] - **doc**: add missing comma in crypto doc (Tobias Nießen) [#&#8203;38142](https://github.com/nodejs/node/pull/38142) - \[[`4bc8f7542f`](https://github.com/nodejs/node/commit/4bc8f7542f)] - **doc**: fix typo in crypto (Arkerone) [#&#8203;38130](https://github.com/nodejs/node/pull/38130) - \[[`005ebafbd1`](https://github.com/nodejs/node/commit/005ebafbd1)] - **doc**: improve security text in collaborators guide (Rich Trott) [#&#8203;38107](https://github.com/nodejs/node/pull/38107) - \[[`54322b8d8b`](https://github.com/nodejs/node/commit/54322b8d8b)] - **doc**: apply consistent punctuation to header contributing guide (Akhil Marsonya) [#&#8203;38047](https://github.com/nodejs/node/pull/38047) - \[[`0d34767c4c`](https://github.com/nodejs/node/commit/0d34767c4c)] - **doc**: sending http request to localhost to avoid https redirect (Hassaan Pasha) [#&#8203;38036](https://github.com/nodejs/node/pull/38036) - \[[`f851efd2e1`](https://github.com/nodejs/node/commit/f851efd2e1)] - **doc**: apply sentence case to backporting-to-release-lines.md headers (marsonya) [#&#8203;37617](https://github.com/nodejs/node/pull/37617) - \[[`36bc8b905c`](https://github.com/nodejs/node/commit/36bc8b905c)] - **doc**: fix typo in fs.md (Antoine du Hamel) [#&#8203;38100](https://github.com/nodejs/node/pull/38100) - \[[`f52c92134c`](https://github.com/nodejs/node/commit/f52c92134c)] - **doc**: internal/test/binding for testing (Bradley Meck) [#&#8203;38026](https://github.com/nodejs/node/pull/38026) - \[[`ab42ef3930`](https://github.com/nodejs/node/commit/ab42ef3930)] - **doc**: add parentheses to function and move reference (Rich Trott) [#&#8203;38066](https://github.com/nodejs/node/pull/38066) - \[[`2861778ecd`](https://github.com/nodejs/node/commit/2861778ecd)] - **doc**: change wording in doc/api/domain.md comment (Akhil Marsonya) [#&#8203;38044](https://github.com/nodejs/node/pull/38044) - \[[`361632dab1`](https://github.com/nodejs/node/commit/361632dab1)] - **doc**: fix lint error in modules.md (Rich Trott) [#&#8203;37811](https://github.com/nodejs/node/pull/37811) - \[[`b3f35e2c70`](https://github.com/nodejs/node/commit/b3f35e2c70)] - **doc,lib**: add missing deprecation code (Colin Ihrig) [#&#8203;37541](https://github.com/nodejs/node/pull/37541) - \[[`cbe3b27166`](https://github.com/nodejs/node/commit/cbe3b27166)] - **doc,tools**: allow stability table to be updated (Richard Lau) [#&#8203;38048](https://github.com/nodejs/node/pull/38048) - \[[`8dd06850ae`](https://github.com/nodejs/node/commit/8dd06850ae)] - **esm**: use correct URL for error decoration (Bradley Meck) [#&#8203;37854](https://github.com/nodejs/node/pull/37854) - \[[`6bbe28552c`](https://github.com/nodejs/node/commit/6bbe28552c)] - **fs**: use byteLength to handle ArrayBuffer views (Michaël Zasso) [#&#8203;38187](https://github.com/nodejs/node/pull/38187) - \[[`8e76397fab`](https://github.com/nodejs/node/commit/8e76397fab)] - **fs**: validate encoding to binding.writeString() (Colin Ihrig) [#&#8203;38183](https://github.com/nodejs/node/pull/38183) - \[[`24fd791184`](https://github.com/nodejs/node/commit/24fd791184)] - **fs**: move constants to internal/fs/utils.js (Darshan Sen) [#&#8203;38061](https://github.com/nodejs/node/pull/38061) - \[[`40ace47396`](https://github.com/nodejs/node/commit/40ace47396)] - **http**: fixup perf regression (James M Snell) [#&#8203;38110](https://github.com/nodejs/node/pull/38110) - \[[`f4d3d12327`](https://github.com/nodejs/node/commit/f4d3d12327)] - **http**: use CRLF conistently in \_http_outgoing.js (Daniel Bevenius) [#&#8203;37851](https://github.com/nodejs/node/pull/37851) - \[[`ee9e2a2eb6`](https://github.com/nodejs/node/commit/ee9e2a2eb6)] - **lib**: revert primordials in a hot path (Antoine du Hamel) [#&#8203;38248](https://github.com/nodejs/node/pull/38248) - \[[`d756d2b99c`](https://github.com/nodejs/node/commit/d756d2b99c)] - **lib**: enforce using `primordials.globalThis` instead of `global` (Antoine du Hamel) [#&#8203;38230](https://github.com/nodejs/node/pull/38230) - \[[`09c9e5dea4`](https://github.com/nodejs/node/commit/09c9e5dea4)] - **lib**: avoid mutating `Error.stackTraceLimit` when it is not writable (Antoine du Hamel) [#&#8203;38215](https://github.com/nodejs/node/pull/38215) - \[[`23d2c54bab`](https://github.com/nodejs/node/commit/23d2c54bab)] - **lib**: add `globalThis` to primordials (Antoine du Hamel) [#&#8203;38211](https://github.com/nodejs/node/pull/38211) - \[[`78343bbdc5`](https://github.com/nodejs/node/commit/78343bbdc5)] - **lib**: add `WeakRef` and `FinalizationRegistry` to `primordials` (ExE Boss) [#&#8203;37263](https://github.com/nodejs/node/pull/37263) - \[[`656fb4657a`](https://github.com/nodejs/node/commit/656fb4657a)] - **lib**: add tsconfig for code completions (Bradley Meck) [#&#8203;38042](https://github.com/nodejs/node/pull/38042) - \[[`d86132488d`](https://github.com/nodejs/node/commit/d86132488d)] - **lib**: properly process JavaScript exceptions on async_hooks fatal error (legendecas) [#&#8203;38106](https://github.com/nodejs/node/pull/38106) - \[[`a9332e84bf`](https://github.com/nodejs/node/commit/a9332e84bf)] - **lib**: refactor to use primordials in lib/internal/cli_table (Akhil Marsonya) [#&#8203;38046](https://github.com/nodejs/node/pull/38046) - \[[`8d78d9ef27`](https://github.com/nodejs/node/commit/8d78d9ef27)] - **lib**: load v8\_prof_processor dependencies as ESM (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`7b2bad4005`](https://github.com/nodejs/node/commit/7b2bad4005)] - **module**: clarify CJS global-like variables not defined error message (Antoine du Hamel) [#&#8203;37852](https://github.com/nodejs/node/pull/37852) - \[[`7869761c2e`](https://github.com/nodejs/node/commit/7869761c2e)] - **net**: fix typo (Luigi Pinca) [#&#8203;38127](https://github.com/nodejs/node/pull/38127) - \[[`4afcd55274`](https://github.com/nodejs/node/commit/4afcd55274)] - **node-api**: make reference weak parameter an indirect link to references (Chengzhong Wu) [#&#8203;38000](https://github.com/nodejs/node/pull/38000) - \[[`e38d62a8c9`](https://github.com/nodejs/node/commit/e38d62a8c9)] - **path**: fix POSIX path.resolve() perf regression (Brian White) [#&#8203;38064](https://github.com/nodejs/node/pull/38064) - \[[`b0d5e036d8`](https://github.com/nodejs/node/commit/b0d5e036d8)] - **path**: fix posix.relative() on Windows (Rich Trott) [#&#8203;37747](https://github.com/nodejs/node/pull/37747) - \[[`548cbf0625`](https://github.com/nodejs/node/commit/548cbf0625)] - **perf_hooks**: fix loop delay resolution validation (Antoine du Hamel) [#&#8203;38166](https://github.com/nodejs/node/pull/38166) - \[[`13c931a9dc`](https://github.com/nodejs/node/commit/13c931a9dc)] - **process**: add range validation to debugPort (Colin Ihrig) [#&#8203;38205](https://github.com/nodejs/node/pull/38205) - \[[`8dd5dd8a4b`](https://github.com/nodejs/node/commit/8dd5dd8a4b)] - **process**: do not lazily load AsyncResource (Michaël Zasso) [#&#8203;38041](https://github.com/nodejs/node/pull/38041) - \[[`4e833b6059`](https://github.com/nodejs/node/commit/4e833b6059)] - **process,doc**: add missing deprecation code (Colin Ihrig) [#&#8203;37091](https://github.com/nodejs/node/pull/37091) - \[[`d6669645c0`](https://github.com/nodejs/node/commit/d6669645c0)] - **repl**: fix declaring a variable with the name `util` (eladkeyshawn) [#&#8203;38141](https://github.com/nodejs/node/pull/38141) - \[[`e7391967c2`](https://github.com/nodejs/node/commit/e7391967c2)] - **repl**: fix error message printing (Anna Henningsen) [#&#8203;38209](https://github.com/nodejs/node/pull/38209) - \[[`4e9212bb7b`](https://github.com/nodejs/node/commit/4e9212bb7b)] - **src**: cache some context in locals (Khaidi Chu) [#&#8203;37473](https://github.com/nodejs/node/pull/37473) - \[[`fc20e833ca`](https://github.com/nodejs/node/commit/fc20e833ca)] - **src**: fix finalization crash (James M Snell) [#&#8203;38250](https://github.com/nodejs/node/pull/38250) - \[[`6c9b19a7af`](https://github.com/nodejs/node/commit/6c9b19a7af)] - **src**: refactor SecureContext Initialization (James M Snell) [#&#8203;38116](https://github.com/nodejs/node/pull/38116) - \[[`8d63aa828e`](https://github.com/nodejs/node/commit/8d63aa828e)] - **src**: fix typo for initialization (Yash Ladha) [#&#8203;37974](https://github.com/nodejs/node/pull/37974) - \[[`66c8f76c2c`](https://github.com/nodejs/node/commit/66c8f76c2c)] - **src**: remove KeyObjectData::CreateSecret overload (Tobias Nießen) [#&#8203;38067](https://github.com/nodejs/node/pull/38067) - \[[`87dc152229`](https://github.com/nodejs/node/commit/87dc152229)] - **src**: fix node version (Richard Lau) [#&#8203;36460](https://github.com/nodejs/node/pull/36460) - \[[`e929d1f2c8`](https://github.com/nodejs/node/commit/e929d1f2c8)] - **src**: fix node version (Brian White) [#&#8203;36385](https://github.com/nodejs/node/pull/36385) - \[[`8e8dea36cc`](https://github.com/nodejs/node/commit/8e8dea36cc)] - **src**: use non-deprecated GetCreationContext from V8 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`b1c1c4695c`](https://github.com/nodejs/node/commit/b1c1c4695c)] - **src**: remove V8\_FT_ADAPTOR for V8 update (Colin Ihrig) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`8f5cce6862`](https://github.com/nodejs/node/commit/8f5cce6862)] - **src**: use non-deprecated V8 module APIs (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`497f6ca5b4`](https://github.com/nodejs/node/commit/497f6ca5b4)] - **src**: update NODE_MODULE_VERSION to 93 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`001dc16cf1`](https://github.com/nodejs/node/commit/001dc16cf1)] - **src**: use non-deprecated V8 module and script APIs (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`47a90d9f37`](https://github.com/nodejs/node/commit/47a90d9f37)] - **src**: update NODE_MODULE_VERSION to 92 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`5259d17309`](https://github.com/nodejs/node/commit/5259d17309)] - **src**: update NODE_MODULE_VERSION to 91 (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`6f9cbcf6a6`](https://github.com/nodejs/node/commit/6f9cbcf6a6)] - **src**: fix v8 api deprecation (Jiawen Geng) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`9d4d55bd94`](https://github.com/nodejs/node/commit/9d4d55bd94)] - **src**: update NODE_MODULE_VERSION to 90 (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`369f239503`](https://github.com/nodejs/node/commit/369f239503)] - **stream**: fix multiple Writable.destroy() calls (Robert Nagy) [#&#8203;38221](https://github.com/nodejs/node/pull/38221) - \[[`4ad46e2fef`](https://github.com/nodejs/node/commit/4ad46e2fef)] - **stream**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37126](https://github.com/nodejs/node/pull/37126) - \[[`419686cdfb`](https://github.com/nodejs/node/commit/419686cdfb)] - **stream**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36346](https://github.com/nodejs/node/pull/36346) - \[[`c704faa0f9`](https://github.com/nodejs/node/commit/c704faa0f9)] - **test**: fix flaky test-dns and test-dns-lookup (Rich Trott) [#&#8203;38282](https://github.com/nodejs/node/pull/38282) - \[[`5e588c1c7c`](https://github.com/nodejs/node/commit/5e588c1c7c)] - **test**: fixup failing test/internet/test-dns.js (James M Snell) [#&#8203;38241](https://github.com/nodejs/node/pull/38241) - \[[`18c9913ce1`](https://github.com/nodejs/node/commit/18c9913ce1)] - **test**: add tests for missing https agent options (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202) - \[[`4ad8e83a3d`](https://github.com/nodejs/node/commit/4ad8e83a3d)] - **test**: fix test-https-agent-additional-options.js (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202) - \[[`05df701e70`](https://github.com/nodejs/node/commit/05df701e70)] - **test**: remove common.disableCrashOnUnhandledRejection (Michaël Zasso) [#&#8203;38210](https://github.com/nodejs/node/pull/38210) - \[[`8f4850d5c7`](https://github.com/nodejs/node/commit/8f4850d5c7)] - **test**: fix typo in comment in binding.c (Tobias Nießen) [#&#8203;38220](https://github.com/nodejs/node/pull/38220) - \[[`9498e97015`](https://github.com/nodejs/node/commit/9498e97015)] - **test**: fix typo in gtest-all.cc (Ikko Ashimine) [#&#8203;38224](https://github.com/nodejs/node/pull/38224) - \[[`c8bbd83ab2`](https://github.com/nodejs/node/commit/c8bbd83ab2)] - **test**: add undefined fatalException exit code test (Nitzan Uziely) [#&#8203;38119](https://github.com/nodejs/node/pull/38119) - \[[`db9cf52dcf`](https://github.com/nodejs/node/commit/db9cf52dcf)] - **test**: check the different error code on IBM i (Xu Meng) [#&#8203;38159](https://github.com/nodejs/node/pull/38159) - \[[`95ca351fd8`](https://github.com/nodejs/node/commit/95ca351fd8)] - **test**: skip fs.watch() test on IBMi (Rich Trott) [#&#8203;38192](https://github.com/nodejs/node/pull/38192) - \[[`8cee28465c`](https://github.com/nodejs/node/commit/8cee28465c)] - **test**: fix test-dh-regr for OpenSSL 3 (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`213ae4f4c6`](https://github.com/nodejs/node/commit/213ae4f4c6)] - **test**: skip test-vm-memleak in ASAN (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`50208915a0`](https://github.com/nodejs/node/commit/50208915a0)] - **test**: skip test-hash-seed on armv6 and armv7 (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`7216eb67df`](https://github.com/nodejs/node/commit/7216eb67df)] - **test**: update OpenSSL 3.x expected error message (Daniel Bevenius) [#&#8203;38164](https://github.com/nodejs/node/pull/38164) - \[[`7e516aaac0`](https://github.com/nodejs/node/commit/7e516aaac0)] - **test**: remove unneeded m flag on regular expressions (Rich Trott) [#&#8203;38124](https://github.com/nodejs/node/pull/38124) - \[[`269f5132cc`](https://github.com/nodejs/node/commit/269f5132cc)] - **test**: skip different params test for OpenSSL 3.x (Daniel Bevenius) [#&#8203;38165](https://github.com/nodejs/node/pull/38165) - \[[`f96dffb7ae`](https://github.com/nodejs/node/commit/f96dffb7ae)] - **test**: fix flaky test-zlib-unused-weak.js (Ouyang Yadong) [#&#8203;38149](https://github.com/nodejs/node/pull/38149) - \[[`e96773b94b`](https://github.com/nodejs/node/commit/e96773b94b)] - **test**: add regression test for serdes readDouble() (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121) - \[[`cc4ee6cba8`](https://github.com/nodejs/node/commit/cc4ee6cba8)] - **test**: deflake test-http-many-ended-pipelines (Luigi Pinca) [#&#8203;38018](https://github.com/nodejs/node/pull/38018) - \[[`098a4d6551`](https://github.com/nodejs/node/commit/098a4d6551)] - **test**: skip test-crypto-dh-keys on armv6 and armv7 (Rich Trott) [#&#8203;38076](https://github.com/nodejs/node/pull/38076) - \[[`f9b63b8530`](https://github.com/nodejs/node/commit/f9b63b8530)] - **test**: update parallel/test-crypto-keygen for OpenSSL 3 (Richard Lau) [#&#8203;38136](https://github.com/nodejs/node/pull/38136) - \[[`6a6cdfad03`](https://github.com/nodejs/node/commit/6a6cdfad03)] - **test**: fix skip message for test-macos-app-sandbox (Tobias Nießen) [#&#8203;38114](https://github.com/nodejs/node/pull/38114) - \[[`e155b1f2f7`](https://github.com/nodejs/node/commit/e155b1f2f7)] - **test**: correct test comment (Evan Lucas) [#&#8203;38095](https://github.com/nodejs/node/pull/38095) - \[[`d61977f03e`](https://github.com/nodejs/node/commit/d61977f03e)] - **test**: remove dead code (Luigi Pinca) [#&#8203;38016](https://github.com/nodejs/node/pull/38016) - \[[`8b05e32519`](https://github.com/nodejs/node/commit/8b05e32519)] - **test**: fix flaky test-net-timeout (Rich Trott) [#&#8203;38060](https://github.com/nodejs/node/pull/38060) - \[[`a0492ba391`](https://github.com/nodejs/node/commit/a0492ba391)] - **test**: fix test-vm-memleak for high baseline platforms (Rich Trott) [#&#8203;38062](https://github.com/nodejs/node/pull/38062) - \[[`30d7f05fef`](https://github.com/nodejs/node/commit/30d7f05fef)] - **test**: improve code coverage in webcrypto API (Juan José Arboleda) [#&#8203;38052](https://github.com/nodejs/node/pull/38052) - \[[`d75543d8b5`](https://github.com/nodejs/node/commit/d75543d8b5)] - **test**: fix flaky timeout-delayed-body and headers tests (Nitzan Uziely) [#&#8203;38045](https://github.com/nodejs/node/pull/38045) - \[[`4f387c25cb`](https://github.com/nodejs/node/commit/4f387c25cb)] - **test**: fix flaky test-vm-memleak (Rich Trott) [#&#8203;38054](https://github.com/nodejs/node/pull/38054) - \[[`330f25ef82`](https://github.com/nodejs/node/commit/330f25ef82)] - **test**: prepare for consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930) - \[[`31fe3b215f`](https://github.com/nodejs/node/commit/31fe3b215f)] - **test**: make sure http pipelining does not emit a warning (Matteo Collina) [#&#8203;37964](https://github.com/nodejs/node/pull/37964) - \[[`978bbf987c`](https://github.com/nodejs/node/commit/978bbf987c)] - **test**: fix flaky test-http2-pack-end-stream-flag (James M Snell) [#&#8203;37814](https://github.com/nodejs/node/pull/37814) - \[[`ecc584251e`](https://github.com/nodejs/node/commit/ecc584251e)] - **test**: fixup flaky test-performance-function-async test (James M Snell) [#&#8203;37493](https://github.com/nodejs/node/pull/37493) - \[[`32482a828b`](https://github.com/nodejs/node/commit/32482a828b)] - **test**: remove FLAKY for test-domain-error-types (Rich Trott) [#&#8203;37458](https://github.com/nodejs/node/pull/37458) - \[[`501ae0e6e3`](https://github.com/nodejs/node/commit/501ae0e6e3)] - **test**: remove outdated V8 flag (Michaël Zasso) [#&#8203;37151](https://github.com/nodejs/node/pull/37151) - \[[`fa3997d75a`](https://github.com/nodejs/node/commit/fa3997d75a)] - **test**: mark test-return-on-exit as flaky (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`896ae96a15`](https://github.com/nodejs/node/commit/896ae96a15)] - **test**: mark WASI's test-return-on-exit as flaky (Colin Ihrig) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`0da7a11e54`](https://github.com/nodejs/node/commit/0da7a11e54)] - **test,http**: check that http server is robust from handler abuse (Rich Trott) [#&#8203;37958](https://github.com/nodejs/node/pull/37958) - \[[`a0261d231c`](https://github.com/nodejs/node/commit/a0261d231c)] - ***Revert*** "**timers**: refactor to use optional chaining" (Matteo Collina) [#&#8203;38245](https://github.com/nodejs/node/pull/38245) - \[[`3da003cc1c`](https://github.com/nodejs/node/commit/3da003cc1c)] - **tls**: fix session and keylog add listener segfault (Nitzan Uziely) [#&#8203;38180](https://github.com/nodejs/node/pull/38180) - \[[`eb20447407`](https://github.com/nodejs/node/commit/eb20447407)] - **tls**: extract out SecureContext configuration (James M Snell) [#&#8203;38116](https://github.com/nodejs/node/pull/38116) - \[[`b16e79e05b`](https://github.com/nodejs/node/commit/b16e79e05b)] - **tls**: fix typo (Arkerone) [#&#8203;38129](https://github.com/nodejs/node/pull/38129) - \[[`d4f33f109e`](https://github.com/nodejs/node/commit/d4f33f109e)] - **tools**: skip macOS GitHub Actions test on doc-only changes (Rich Trott) [#&#8203;38296](https://github.com/nodejs/node/pull/38296) - \[[`13d0de5954`](https://github.com/nodejs/node/commit/13d0de5954)] - **tools**: set arch in Distribution.xml (Ash Cripps) [#&#8203;38261](https://github.com/nodejs/node/pull/38261) - \[[`28bca33f28`](https://github.com/nodejs/node/commit/28bca33f28)] - **tools**: update ESLint to 7.24.0 (Colin Ihrig) [#&#8203;38179](https://github.com/nodejs/node/pull/38179) - \[[`038608d401`](https://github.com/nodejs/node/commit/038608d401)] - **tools**: relax max-len lint rule for template strings (Rich Trott) [#&#8203;38097](https://github.com/nodejs/node/pull/38097) - \[[`e67fb569f4`](https://github.com/nodejs/node/commit/e67fb569f4)] - **tools**: apply consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930) - \[[`9843361c07`](https://github.com/nodejs/node/commit/9843361c07)] - **tools**: update V8 gypfiles for 9.0 (Michaël Zasso) [#&#8203;37587](https://github.com/nodejs/node/pull/37587) - \[[`017661768a`](https://github.com/nodejs/node/commit/017661768a)] - **tools**: update V8 gypfiles for 8.9 (Michaël Zasso) [#&#8203;37330](https://github.com/nodejs/node/pull/37330) - \[[`79da253473`](https://github.com/nodejs/node/commit/79da253473)] - **tools**: update V8 gypfiles for 8.8 (Michaël Zasso) [#&#8203;36139](https://github.com/nodejs/node/pull/36139) - \[[`770d9e2542`](https://github.com/nodejs/node/commit/770d9e2542)] - **tools**: update V8 gypfiles for 8.7 (Michaël Zasso) [#&#8203;35700](https://github.com/nodejs/node/pull/35700) - \[[`b87f1be92d`](https://github.com/nodejs/node/commit/b87f1be92d)] - **typings**: add types for "http_parser" and "options" bindings (Michaël Zasso) [#&#8203;38239](https://github.com/nodejs/node/pull/38239) - \[[`1c8b2956d1`](https://github.com/nodejs/node/commit/1c8b2956d1)] - **typings**: add types for internalBinding('serdes') (Michaël Zasso) [#&#8203;38204](https://github.com/nodejs/node/pull/38204) - \[[`d97787fccc`](https://github.com/nodejs/node/commit/d97787fccc)] - **typings**: add JSDoc to os module functions (David Brownman) [#&#8203;38197](https://github.com/nodejs/node/pull/38197) - \[[`8acfe5c2a4`](https://github.com/nodejs/node/commit/8acfe5c2a4)] - **typings**: add JSDoc Types to lib/querystring (Simon Knott) [#&#8203;38185](https://github.com/nodejs/node/pull/38185) - \[[`d3162da8dd`](https://github.com/nodejs/node/commit/d3162da8dd)] - **typings**: add JSDoc typings for http (Voltrex) [#&#8203;38191](https://github.com/nodejs/node/pull/38191) - \[[`82d59882b1`](https://github.com/nodejs/node/commit/82d59882b1)] - **typings**: add JSDoc typings for assert (Voltrex) [#&#8203;38188](https://github.com/nodejs/node/pull/38188) - \[[`f1a21e5c91`](https://github.com/nodejs/node/commit/f1a21e5c91)] - **typings**: add JSDoc types to lib/path (Simon Knott) [#&#8203;38186](https://github.com/nodejs/node/pull/38186) - \[[`3377eb9641`](https://github.com/nodejs/node/commit/3377eb9641)] - **typings**: add types for internalBinding('util') (Michaël Zasso) [#&#8203;38200](https://github.com/nodejs/node/pull/38200) - \[[`cb2bdc632a`](https://github.com/nodejs/node/commit/cb2bdc632a)] - **typings**: add types for internalBinding('fs') (Michaël Zasso) [#&#8203;38198](https://github.com/nodejs/node/pull/38198) - \[[`26eed3e0ed`](https://github.com/nodejs/node/commit/26eed3e0ed)] - **vm**: add import assertion support (Gus Caplan) [#&#8203;37176](https://github.com/nodejs/node/pull/37176) - \[[`6986fa07eb`](https://github.com/nodejs/node/commit/6986fa07eb)] - **worker**: fix exit code for error thrown in handler (Nitzan Uziely) [#&#8203;38012](https://github.com/nodejs/node/pull/38012) ### [`v15.14.0`](https://github.com/nodejs/node/releases/v15.14.0) [Compare Source](https://github.com/nodejs/node/compare/v15.13.0...v15.14.0) This is a security release. ##### Notable Changes Vulnerabilties Fixed: - **CVE-2021-3450**: OpenSSL - CA certificate check bypass with X509\_V_FLAG_X509\_STRICT (High) - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt - Impacts: - All versions of the 15.x, 14.x, 12.x and 10.x releases lines - **CVE-2021-3449**: OpenSSL - NULL pointer deref in signature_algorithms processing (High) - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt - Impacts: - All versions of the 15.x, 14.x, 12.x and 10.x releases lines - **CVE-2020-7774**: npm upgrade - Update y18n to fix Prototype-Pollution (High) - This is a vulnerability in the y18n npm module which may be exploited by prototype pollution. You can read more about it in https://github.com/advisories/GHSA-c4w7-xm78-47vh - Impacts: - All versions of the 14.x, 12.x and 10.x releases lines Other Notable Changes: - \[[`b6f4901221`](https://github.com/nodejs/node/commit/b6f4901221)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490) - \[[`0709cbb7fe`](https://github.com/nodejs/node/commit/0709cbb7fe)] - **(SEMVER-MINOR)** **net**: allow net.BlockList to use net.SocketAddress objects (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`daa8a7bbcf`](https://github.com/nodejs/node/commit/daa8a7bbcf)] - **(SEMVER-MINOR)** **net**: add SocketAddress class (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`a4169ce519`](https://github.com/nodejs/node/commit/a4169ce519)] - **(SEMVER-MINOR)** **net**: make net.BlockList cloneable (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`669b81c68b`](https://github.com/nodejs/node/commit/669b81c68b)] - **(SEMVER-MINOR)** **net,tls**: add abort signal support to connect (Nitzan Uziely) [#&#8203;37735](https://github.com/nodejs/node/pull/37735) - \[[`a1123f0a29`](https://github.com/nodejs/node/commit/a1123f0a29)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932) ##### Commits - \[[`ac69b95e47`](https://github.com/nodejs/node/commit/ac69b95e47)] - **crypto**: use correct webcrypto RSASSA-PKCS1-v1\_5 algorithm name (Filip Skokan) [#&#8203;38029](https://github.com/nodejs/node/pull/38029) - \[[`960c6be229`](https://github.com/nodejs/node/commit/960c6be229)] - **crypto**: add buffering to randomInt (Tobias Nießen) [#&#8203;35110](https://github.com/nodejs/node/pull/35110) - \[[`4ef102d34e`](https://github.com/nodejs/node/commit/4ef102d34e)] - **deps**: update to cjs-module-lexer@1.1.1 (Guy Bedford) [#&#8203;37992](https://github.com/nodejs/node/pull/37992) - \[[`f0e77149a4`](https://github.com/nodejs/node/commit/f0e77149a4)] - **deps**: update archs files for OpenSSL-1.1.1k (Hassaan Pasha) [#&#8203;37916](https://github.com/nodejs/node/pull/37916) - \[[`bbdcdad2c6`](https://github.com/nodejs/node/commit/bbdcdad2c6)] - **deps**: upgrade openssl sources to 1.1.1k+quic (Hassaan Pasha) [#&#8203;37916](https://github.com/nodejs/node/pull/37916) - \[[`913ec56798`](https://github.com/nodejs/node/commit/913ec56798)] - **deps**: cjs-module-lexer: cherry-pick [`22093e7`](https://github.com/nodejs/node/commit/22093e765f) (pezhmanparsaee) [#&#8203;37895](https://github.com/nodejs/node/pull/37895) - \[[`afc6ab2122`](https://github.com/nodejs/node/commit/afc6ab2122)] - **doc**: fix asyncLocalStorage.run() description (Darkripper214) [#&#8203;38023](https://github.com/nodejs/node/pull/38023) - \[[`b40d35d649`](https://github.com/nodejs/node/commit/b40d35d649)] - **doc**: document how to unref stdin when using readline.Interface (Anu Pasumarthy) [#&#8203;38019](https://github.com/nodejs/node/pull/38019) - \[[`ce14080473`](https://github.com/nodejs/node/commit/ce14080473)] - **doc**: move psmarshall to collaborators emeriti (Peter Marshall) [#&#8203;37994](https://github.com/nodejs/node/pull/37994) - \[[`ae70aa3c63`](https://github.com/nodejs/node/commit/ae70aa3c63)] - **doc**: add distinctive color for code elements inside links (Antoine du Hamel) [#&#8203;37950](https://github.com/nodejs/node/pull/37950) - \[[`8792c7c96b`](https://github.com/nodejs/node/commit/8792c7c96b)] - **doc**: add missing events.on metadata (Anna Henningsen) [#&#8203;37965](https://github.com/nodejs/node/pull/37965) - \[[`a57dc06adf`](https://github.com/nodejs/node/commit/a57dc06adf)] - **doc**: improve Buffer's encoding documentation (Michaël Zasso) [#&#8203;37945](https://github.com/nodejs/node/pull/37945) - \[[`f3fabb57cf`](https://github.com/nodejs/node/commit/f3fabb57cf)] - **doc**: add missing cleanup step in OpenSSL upgrade (Tobias Nießen) [#&#8203;37927](https://github.com/nodejs/node/pull/37927) - \[[`13c3924af8`](https://github.com/nodejs/node/commit/13c3924af8)] - **doc**: add Windows-specific info to subprocess.kill() (João Lucas Lucchetta) [#&#8203;34867](https://github.com/nodejs/node/pull/34867) - \[[`b6f4901221`](https://github.com/nodejs/node/commit/b6f4901221)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490) - \[[`ad7e34446c`](https://github.com/nodejs/node/commit/ad7e34446c)] - **fs**: fix chown abort (Darshan Sen) [#&#8203;38004](https://github.com/nodejs/node/pull/38004) - \[[`d86aca9a77`](https://github.com/nodejs/node/commit/d86aca9a77)] - **http**: optimize debug function correctly (Michaël Zasso) [#&#8203;37966](https://github.com/nodejs/node/pull/37966) - \[[`062541aae5`](https://github.com/nodejs/node/commit/062541aae5)] - **http2**: add specific error code for custom frames (Anna Henningsen) [#&#8203;37936](https://github.com/nodejs/node/pull/37936) - \[[`8525231902`](https://github.com/nodejs/node/commit/8525231902)] - **lib**: change wording in lib/domain.js comment (Akhil Marsonya) [#&#8203;37933](https://github.com/nodejs/node/pull/37933) - \[[`21e399be4c`](https://github.com/nodejs/node/commit/21e399be4c)] - **lib**: change wording in lib/internal/child_process comment (Akhil Marsonya) [#&#8203;37903](https://github.com/nodejs/node/pull/37903) - \[[`3ab9619e56`](https://github.com/nodejs/node/commit/3ab9619e56)] - **module**: improve error message for invalid data URL (Antoine du Hamel) [#&#8203;37701](https://github.com/nodejs/node/pull/37701) - \[[`0709cbb7fe`](https://github.com/nodejs/node/commit/0709cbb7fe)] - **(SEMVER-MINOR)** **net**: allow net.BlockList to use net.SocketAddress objects (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`daa8a7bbcf`](https://github.com/nodejs/node/commit/daa8a7bbcf)] - **(SEMVER-MINOR)** **net**: add SocketAddress class (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`a4169ce519`](https://github.com/nodejs/node/commit/a4169ce519)] - **(SEMVER-MINOR)** **net**: make net.BlockList cloneable (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`669b81c68b`](https://github.com/nodejs/node/commit/669b81c68b)] - **(SEMVER-MINOR)** **net,tls**: add abort signal support to connect (Nitzan Uziely) [#&#8203;37735](https://github.com/nodejs/node/pull/37735) - \[[`a94cc27cbe`](https://github.com/nodejs/node/commit/a94cc27cbe)] - **path**: refactor to use more primordials (Akhil Marsonya) [#&#8203;37893](https://github.com/nodejs/node/pull/37893) - \[[`6cc1e15669`](https://github.com/nodejs/node/commit/6cc1e15669)] - **readline**: fix pre-aborted signal question handling (Nitzan Uziely) [#&#8203;37929](https://github.com/nodejs/node/pull/37929) - \[[`a1123f0a29`](https://github.com/nodejs/node/commit/a1123f0a29)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932) - \[[`629e72e9f4`](https://github.com/nodejs/node/commit/629e72e9f4)] - **src**: fix typo in node_mutex (Tobias Nießen) [#&#8203;38011](https://github.com/nodejs/node/pull/38011) - \[[`e61cc0bfb0`](https://github.com/nodejs/node/commit/e61cc0bfb0)] - **src**: fix typos in crypto comments (Tobias Nießen) [#&#8203;38024](https://github.com/nodejs/node/pull/38024) - \[[`6ad0b6f0f5`](https://github.com/nodejs/node/commit/6ad0b6f0f5)] - **src**: fix error handling for CryptoJob::ToResult (Tobias Nießen) [#&#8203;37076](https://github.com/nodejs/node/pull/37076) - \[[`3175559bed`](https://github.com/nodejs/node/commit/3175559bed)] - **test**: add extra space in test failure output (Qingyu Deng) [#&#8203;37957](https://github.com/nodejs/node/pull/37957) - \[[`0243376cfc`](https://github.com/nodejs/node/commit/0243376cfc)] - **test**: use faster variant for rss (Pooja D P) [#&#8203;36839](https://github.com/nodejs/node/pull/36839) - \[[`b02c352ad6`](https://github.com/nodejs/node/commit/b02c352ad6)] - **test**: fix test-tls-no-sslv3 for OpenSSL 3 (Richard Lau) [#&#8203;38027](https://github.com/nodejs/node/pull/38027) - \[[`0db1a1eacf`](https://github.com/nodejs/node/commit/0db1a1eacf)] - **test**: deflake test-fs-read-optional-params (Luigi Pinca) [#&#8203;37991](https://github.com/nodejs/node/pull/37991) - \[[`4d50975cd7`](https://github.com/nodejs/node/commit/4d50975cd7)] - **test**: improve clarity of ALS-enable-disable.js (Darkripper214) [#&#8203;38008](https://github.com/nodejs/node/pull/38008) - \[[`5e15ae05d0`](https://github.com/nodejs/node/commit/5e15ae05d0)] - **test**: add DataView test case for v8 serdes (Rich Trott) [#&#8203;37955](https://github.com/nodejs/node/pull/37955) - \[[`6d28a24f1c`](https://github.com/nodejs/node/commit/6d28a24f1c)] - **tools**: update ESLint to 7.23.0 (Luigi Pinca) [#&#8203;37979](https://github.com/nodejs/node/pull/37979) - \[[`51e7a33d54`](https://github.com/nodejs/node/commit/51e7a33d54)] - **tools,doc**: add "legacy" badge in the TOC (Antoine du Hamel) [#&#8203;37949](https://github.com/nodejs/node/pull/37949) - \[[`570fbcef93`](https://github.com/nodejs/node/commit/570fbcef93)] - **url**: forbid pipe in URL host (Darshan Sen) [#&#8203;37877](https://github.com/nodejs/node/pull/37877) ### [`v15.13.0`](https://github.com/nodejs/node/releases/v15.13.0) [Compare Source](https://github.com/nodejs/node/compare/v15.12.0...v15.13.0) ##### Notable Changes - **buffer**: - implement btoa and atob (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529) - **deps**: - upgrade npm to 7.7.6 (Ruy Adorno) [#&#8203;37968](https://github.com/nodejs/node/pull/37968) - This update adds workspaces support to [`npm run`](https://github.com/npm/cli/pull/2864) and [`npm exec`](https://github.com/npm/cli/pull/2886) - **doc**: - add legacy status to stability index (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - add [@&#8203;linkgoron](https://github.com/linkgoron) to collaborators (Nitzan Uziely) [#&#8203;37817](https://github.com/nodejs/node/pull/37817) - **http**: - add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660) ##### Commits - \[[`dc9cd43d8f`](https://github.com/nodejs/node/commit/dc9cd43d8f)] - **(SEMVER-MINOR)** **buffer**: implement btoa and atob (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529) - \[[`377830fd28`](https://github.com/nodejs/node/commit/377830fd28)] - **child_process**: remove unused argument (Rich Trott) [#&#8203;37923](https://github.com/nodejs/node/pull/37923) - \[[`cdfc1c8692`](https://github.com/nodejs/node/commit/cdfc1c8692)] - **child_process**: cleanup AbortSignal duplication (Nitzan Uziely) [#&#8203;37823](https://github.com/nodejs/node/pull/37823) - \[[`95aa032413`](https://github.com/nodejs/node/commit/95aa032413)] - **(SEMVER-MINOR)** **child_process**: add timeout to spawn and fork (Nitzan Uziely) [#&#8203;37256](https://github.com/nodejs/node/pull/37256) - \[[`50fc6b9df0`](https://github.com/nodejs/node/commit/50fc6b9df0)] - **crypto**: clear errors in SignTraits::DeriveBits (Filip Skokan) [#&#8203;37820](https://github.com/nodejs/node/pull/37820) - \[[`79259389a1`](https://github.com/nodejs/node/commit/79259389a1)] - **crypto**: fix DiffieHellman argument validation (Antoine du Hamel) [#&#8203;37810](https://github.com/nodejs/node/pull/37810) - \[[`11d45855cd`](https://github.com/nodejs/node/commit/11d45855cd)] - **crypto**: fix header name (Jiawen Geng) [#&#8203;37792](https://github.com/nodejs/node/pull/37792) - \[[`c37806d0ba`](https://github.com/nodejs/node/commit/c37806d0ba)] - **crypto**: use macro map for NodeCryptoError (Darshan Sen) [#&#8203;37758](https://github.com/nodejs/node/pull/37758) - \[[`bfe3f21ee0`](https://github.com/nodejs/node/commit/bfe3f21ee0)] - **crypto**: fix crypto.verify callback invocation with a private keyobject (Filip Skokan) [#&#8203;37795](https://github.com/nodejs/node/pull/37795) - \[[`f2cef54b6f`](https://github.com/nodejs/node/commit/f2cef54b6f)] - **deps**: upgrade npm to 7.7.6 (Ruy Adorno) [#&#8203;37968](https://github.com/nodejs/node/pull/37968) - \[[`ec82feb728`](https://github.com/nodejs/node/commit/ec82feb728)] - **deps**: upgrade npm to 7.7.5 (Ruy Adorno) [#&#8203;37919](https://github.com/nodejs/node/pull/37919) - \[[`649e04c4a5`](https://github.com/nodejs/node/commit/649e04c4a5)] - **deps**: upgrade npm to 7.7.4 (Ruy Adorno) [#&#8203;37897](https://github.com/nodejs/node/pull/37897) - \[[`d5b472b70d`](https://github.com/nodejs/node/commit/d5b472b70d)] - **deps**: upgrade npm to 7.7.0 (Ruy Adorno) [#&#8203;37879](https://github.com/nodejs/node/pull/37879) - \[[`9e6aa190e3`](https://github.com/nodejs/node/commit/9e6aa190e3)] - **deps**: add ngtcp2 and nghttp3 (James M Snell) [#&#8203;37682](https://github.com/nodejs/node/pull/37682) - \[[`659fc5d684`](https://github.com/nodejs/node/commit/659fc5d684)] - **doc**: fix typos in lib/internal/bootstrap/pre_execution.js (marsonya) [#&#8203;37658](https://github.com/nodejs/node/pull/37658) - \[[`ac60d018e2`](https://github.com/nodejs/node/commit/ac60d018e2)] - **doc**: add more commands for cherry-picking and changelog to release docs (Danielle Adams) [#&#8203;37785](https://github.com/nodejs/node/pull/37785) - \[[`0fe3c7edd3`](https://github.com/nodejs/node/commit/0fe3c7edd3)] - **doc**: spell out ICU acronym on first occurrence (Rich Trott) [#&#8203;37942](https://github.com/nodejs/node/pull/37942) - \[[`364c8ac40d`](https://github.com/nodejs/node/commit/364c8ac40d)] - **doc**: update GOVERNANCE.md for TSC Charter changes (Rich Trott) [#&#8203;37888](https://github.com/nodejs/node/pull/37888) - \[[`e84252b35d`](https://github.com/nodejs/node/commit/e84252b35d)] - **doc**: reduce header nesting in async_hooks.md (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839) - \[[`a6f21e2cfc`](https://github.com/nodejs/node/commit/a6f21e2cfc)] - **doc**: fix wording in outgoingMessage.write (Tobias Nießen) [#&#8203;37894](https://github.com/nodejs/node/pull/37894) - \[[`30bc2e43e4`](https://github.com/nodejs/node/commit/30bc2e43e4)] - **doc**: add examples for WHATWG URL objects (James M Snell) [#&#8203;37822](https://github.com/nodejs/node/pull/37822) - \[[`c0a424f3e9`](https://github.com/nodejs/node/commit/c0a424f3e9)] - **doc**: clarify when child process 'spawn' event is \*not\* emitted (Matthew Francis Brunetti) [#&#8203;37833](https://github.com/nodejs/node/pull/37833) - \[[`9defe10371`](https://github.com/nodejs/node/commit/9defe10371)] - **doc**: fix legacy stability indicator display (Rich Trott) [#&#8203;37838](https://github.com/nodejs/node/pull/37838) - \[[`f97a5dd22f`](https://github.com/nodejs/node/commit/f97a5dd22f)] - **doc**: use sentence-style capitlaztion in template header (Rich Trott) [#&#8203;37837](https://github.com/nodejs/node/pull/37837) - \[[`71fde07274`](https://github.com/nodejs/node/commit/71fde07274)] - **doc**: add Ayase-252 to triagers (Qingyu Deng) [#&#8203;37781](https://github.com/nodejs/node/pull/37781) - \[[`8f18133de0`](https://github.com/nodejs/node/commit/8f18133de0)] - **doc**: use sentence case in issues.md headers (marsonya) [#&#8203;37537](https://github.com/nodejs/node/pull/37537) - \[[`3376051a0e`](https://github.com/nodejs/node/commit/3376051a0e)] - **doc**: fix JS flavor selection (Antoine du Hamel) [#&#8203;37791](https://github.com/nodejs/node/pull/37791) - \[[`b09d032683`](https://github.com/nodejs/node/commit/b09d032683)] - **doc**: move Derek Lewis back to collaborators (Derek Lewis) [#&#8203;37726](https://github.com/nodejs/node/pull/37726) - \[[`6da0a0e85a`](https://github.com/nodejs/node/commit/6da0a0e85a)] - **doc**: apply style for legacy status (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - \[[`185d4cd4aa`](https://github.com/nodejs/node/commit/185d4cd4aa)] - **doc**: revoke deprecation of legacy url, change status to legacy (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - \[[`9d160daa89`](https://github.com/nodejs/node/commit/9d160daa89)] - **doc**: add legacy status to stability index (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - \[[`4700042a9b`](https://github.com/nodejs/node/commit/4700042a9b)] - **doc**: add [@&#8203;linkgoron](https://github.com/linkgoron) to collaborators (Nitzan Uziely) [#&#8203;37817](https://github.com/nodejs/node/pull/37817) - \[[`c4183bbea4`](https://github.com/nodejs/node/commit/c4183bbea4)] - **doc**: fix AbortError example for timers (dbachko) [#&#8203;37738](https://github.com/nodejs/node/pull/37738) - \[[`50f3ad1946`](https://github.com/nodejs/node/commit/50f3ad1946)] - **doc**: fix typo in stream docs (Ian Kerins) [#&#8203;37716](https://github.com/nodejs/node/pull/37716) - \[[`2e82a97520`](https://github.com/nodejs/node/commit/2e82a97520)] - **doc**: add gyp maintain info (Jiawen Geng) [#&#8203;37765](https://github.com/nodejs/node/pull/37765) - \[[`3925458df7`](https://github.com/nodejs/node/commit/3925458df7)] - **doc,tools**: use only one level 1 header per page (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839) - \[[`e9c161ce12`](https://github.com/nodejs/node/commit/e9c161ce12)] - **http**: fix double AbortSignal registration (Nitzan Uziely) [#&#8203;37730](https://github.com/nodejs/node/pull/37730) - \[[`a5205819d8`](https://github.com/nodejs/node/commit/a5205819d8)] - **(SEMVER-MINOR)** **http**: add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660) - \[[`1c043272ea`](https://github.com/nodejs/node/commit/1c043272ea)] - **http2**: treat non-EOF empty frames like other invalid frames (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875) - \[[`a5bf7de6eb`](https://github.com/nodejs/node/commit/a5bf7de6eb)] - **http2**: fix setting options before handle exists (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875) - \[[`af7489cb6c`](https://github.com/nodejs/node/commit/af7489cb6c)] - **lib**: add brand checks to AbortController and AbortSignal (Mattias Buelens) [#&#8203;37720](https://github.com/nodejs/node/pull/37720) - \[[`6e2b60931c`](https://github.com/nodejs/node/commit/6e2b60931c)] - **lib**: fix typo in internal/modules/esm/module_job.js (marsonya) [#&#8203;37773](https://github.com/nodejs/node/pull/37773) - \[[`3a440ecdf8`](https://github.com/nodejs/node/commit/3a440ecdf8)] - **lib**: fix typo in lib/internal/crypto/certificate.js (marsonya) [#&#8203;37741](https://github.com/nodejs/node/pull/37741) - \[[`3ab223dd32`](https://github.com/nodejs/node/commit/3ab223dd32)] - **node-api**: fix crash in finalization (Michael Dawson) [#&#8203;37876](https://github.com/nodejs/node/pull/37876) - \[[`d1a3e0efb6`](https://github.com/nodejs/node/commit/d1a3e0efb6)] - **node-api**: stop ref gc during environment teardown (Gabriel Schulhof) [#&#8203;37616](https://github.com/nodejs/node/pull/37616) - \[[`e60bd1a7dc`](https://github.com/nodejs/node/commit/e60bd1a7dc)] - **(SEMVER-MINOR)** **perf_hooks**: make Performance extend EventTarget (Michaël Zasso) [#&#8203;37621](https://github.com/nodejs/node/pull/37621) - \[[`b6ad8e4cc1`](https://github.com/nodejs/node/commit/b6ad8e4cc1)] - **src**: indent long help text properly (David Glasser) [#&#8203;37911](https://github.com/nodejs/node/pull/37911) - \[[`13ecff63d6`](https://github.com/nodejs/node/commit/13ecff63d6)] - **src**: document newer values for --unhandled-rejections flag (David Glasser) [#&#8203;37899](https://github.com/nodejs/node/pull/37899) - \[[`bd87e195ed`](https://github.com/nodejs/node/commit/bd87e195ed)] - **src**: fix typo in src code guide (Tobias Nießen) [#&#8203;37956](https://github.com/nodejs/node/pull/37956) - \[[`2da532cef8`](https://github.com/nodejs/node/commit/2da532cef8)] - **src**: report idle time correctly (Stephen Belanger) [#&#8203;37868](https://github.com/nodejs/node/pull/37868) - \[[`836cb67945`](https://github.com/nodejs/node/commit/836cb67945)] - **src**: add .note.GNU-stack section (James Addison) [#&#8203;37688](https://github.com/nodejs/node/pull/37688) - \[[`9557dda2eb`](https://github.com/nodejs/node/commit/9557dda2eb)] - **(SEMVER-MINOR)** **stream**: pipeline accept Buffer as a valid first argument (Nitzan Uziely) [#&#8203;37739](https://github.com/nodejs/node/pull/37739) - \[[`43c3b43ea3`](https://github.com/nodejs/node/commit/43c3b43ea3)] - **stream**: make Readable.from performance better (wwwzbwcom) [#&#8203;37609](https://github.com/nodejs/node/pull/37609) - \[[`b0226b39f2`](https://github.com/nodejs/node/commit/b0226b39f2)] - **test**: split promisified timers test for coverage purposes (Rich Trott) [#&#8203;37943](https://github.com/nodejs/node/pull/37943) - \[[`e256c4d11d`](https://github.com/nodejs/node/commit/e256c4d11d)] - **test**: fix typeof comparison (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924) - \[[`76ebc4bbd9`](https://github.com/nodejs/node/commit/76ebc4bbd9)] - **test**: increase wiggle room for memory in test-worker-resource-limits (Rich Trott) [#&#8203;37901](https://github.com/nodejs/node/pull/37901) - \[[`5cdeb76708`](https://github.com/nodejs/node/commit/5cdeb76708)] - **test**: add OpenSSL 3.0 checks to tls-passphrase (Daniel Bevenius) [#&#8203;37860](https://github.com/nodejs/node/pull/37860) - \[[`33c35a38dc`](https://github.com/nodejs/node/commit/33c35a38dc)] - **test**: add OpenSSL 3.0 checks to test-crypto-keygen (Daniel Bevenius) [#&#8203;37860](https://github.com/nodejs/node/pull/37860) - \[[`86bf341a35`](https://github.com/nodejs/node/commit/86bf341a35)] - **test**: fix deprecation warning in test-doctool-html (Antoine du Hamel) [#&#8203;37858](https://github.com/nodejs/node/pull/37858) - \[[`aa529b73b7`](https://github.com/nodejs/node/commit/aa529b73b7)] - **test**: fix ibmi skip message (Tobias Nießen) [#&#8203;37821](https://github.com/nodejs/node/pull/37821) - \[[`d9ab1d56ce`](https://github.com/nodejs/node/commit/d9ab1d56ce)] - **test**: fix flaky test-vm-timeout-escape-promise-module-2 (Rich Trott) [#&#8203;37842](https://github.com/nodejs/node/pull/37842) - \[[`5d4c610727`](https://github.com/nodejs/node/commit/5d4c610727)] - **test**: remove duplicated test for eventtarget (himself65) [#&#8203;37853](https://github.com/nodejs/node/pull/37853) - \[[`44490af948`](https://github.com/nodejs/node/commit/44490af948)] - **test**: relax Y2K38 check in test-fs-utimes-y2K38 (Richard Lau) [#&#8203;37825](https://github.com/nodejs/node/pull/37825) - \[[`9bc6fe7eb3`](https://github.com/nodejs/node/commit/9bc6fe7eb3)] - **test**: remove references to unsupported AIX versions (Richard Lau) [#&#8203;37826](https://github.com/nodejs/node/pull/37826) - \[[`f07428ae51`](https://github.com/nodejs/node/commit/f07428ae51)] - **test**: remove skip for fixed test-benchmark-fs (Rich Trott) [#&#8203;37803](https://github.com/nodejs/node/pull/37803) - \[[`9f61cbd1fd`](https://github.com/nodejs/node/commit/9f61cbd1fd)] - **test**: account for OOM risks in heapsnapshot-near-heap-limit tests (Joyee Cheung) [#&#8203;37761](https://github.com/nodejs/node/pull/37761) - \[[`e85f311cf2`](https://github.com/nodejs/node/commit/e85f311cf2)] - **test**: refactor code to use AbortSignal.abort() (Wassim Chegham) [#&#8203;37798](https://github.com/nodejs/node/pull/37798) - \[[`6ed9e0bd81`](https://github.com/nodejs/node/commit/6ed9e0bd81)] - **test**: improve test-arm-math-illegal-instruction (marsonya) [#&#8203;37670](https://github.com/nodejs/node/pull/37670) - \[[`505f9c95d1`](https://github.com/nodejs/node/commit/505f9c95d1)] - **(SEMVER-MINOR)** **test**: app atob web platform tests (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529) - \[[`a8edf1aafe`](https://github.com/nodejs/node/commit/a8edf1aafe)] - **test**: add known_issues test for [#&#8203;13683](https://github.com/nodejs/node/issues/13683) (Rich Trott) [#&#8203;37744](https://github.com/nodejs/node/pull/37744) - \[[`4487483d9d`](https://github.com/nodejs/node/commit/4487483d9d)] - **test**: fix test-fs-utimes on non-Y2K38 file systems (Rich Trott) [#&#8203;37707](https://github.com/nodejs/node/pull/37707) - \[[`d44b268910`](https://github.com/nodejs/node/commit/d44b268910)] - **timers**: fix arbitrary object clearImmediate errors (Nitzan Uziely) [#&#8203;37824](https://github.com/nodejs/node/pull/37824) - \[[`b7e7384109`](https://github.com/nodejs/node/commit/b7e7384109)] - **tools**: improve valid-typeof lint rule (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924) - \[[`ca93e52783`](https://github.com/nodejs/node/commit/ca93e52783)] - **tools**: simplify eslint comma-dangle configuration (tools) (Rich Trott) [#&#8203;37883](https://github.com/nodejs/node/pull/37883) - \[[`b5879efef1`](https://github.com/nodejs/node/commit/b5879efef1)] - **tools**: improve macos-firewall.sh output (Rich Trott) [#&#8203;37846](https://github.com/nodejs/node/pull/37846) - \[[`dbc4804468`](https://github.com/nodejs/node/commit/dbc4804468)] - **tools**: simplify eslint comma-dangle configuration (Rich Trott) [#&#8203;37850](https://github.com/nodejs/node/pull/37850) - \[[`0f2e142946`](https://github.com/nodejs/node/commit/0f2e142946)] - **tools**: make genv8constants.py Python3-compatible (Michaël Zasso) [#&#8203;37835](https://github.com/nodejs/node/pull/37835) - \[[`b6be472456`](https://github.com/nodejs/node/commit/b6be472456)] - **tools**: update gitignore for CMake (Jiawen Geng) [#&#8203;37793](https://github.com/nodejs/node/pull/37793) - \[[`2227aa61ea`](https://github.com/nodejs/node/commit/2227aa61ea)] - **tools**: partially detect quic support in shared_openssl (James M Snell) [#&#8203;37682](https://github.com/nodejs/node/pull/37682) - \[[`01dcf4d1d8`](https://github.com/nodejs/node/commit/01dcf4d1d8)] - **tools**: update ESLint to 7.22.0 (Colin Ihrig) [#&#8203;37734](https://github.com/nodejs/node/pull/37734) - \[[`3452618905`](https://github.com/nodejs/node/commit/3452618905)] - **tty**: validate file descriptor to avoid int32 overflow (Antoine du Hamel) [#&#8203;37809](https://github.com/nodejs/node/pull/37809) - \[[`d33f446abd`](https://github.com/nodejs/node/commit/d33f446abd)] - **util**: remove unreachable inspect code (Rich Trott) [#&#8203;37941](https://github.com/nodejs/node/pull/37941) ### [`v15.12.0`](https://github.com/nodejs/node/releases/v15.12.0) [Compare Source](https://github.com/nodejs/node/compare/v15.11.0...v15.12.0) ##### Notable Changes - **crypto**: - add optional callback to crypto.sign and crypto.verify (Filip Skokan) [#&#8203;37500](https://github.com/nodejs/node/pull/37500) - support JWK objects in create\*Key (Filip Skokan) [#&#8203;37254](https://github.com/nodejs/node/pull/37254) - **deps**: - switch openssl to quictls/openssl (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601) - update to cjs-module-lexer@1.1.0 (Guy Bedford) [#&#8203;37712](https://github.com/nodejs/node/pull/37712) - **fs**: - improve fsPromises writeFile performance (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610) - improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608) - **lib**: - implement AbortSignal.abort() (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693) - **node-api**: - define version 8 (Gabriel Schulhof) [#&#8203;37652](https://github.com/nodejs/node/pull/37652) - **worker**: - add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486) ##### Commits - \[[`44514600b2`](https://github.com/nodejs/node/commit/44514600b2)] - **assert,util**: fix commutativity edge case (Ruben Bridgewater) [#&#8203;37711](https://github.com/nodejs/node/pull/37711) - \[[`8666d777cc`](https://github.com/nodejs/node/commit/8666d777cc)] - **benchmark**: add benchmark for fsPromises.writeFile (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610) - \[[`e9028eb646`](https://github.com/nodejs/node/commit/e9028eb646)] - **cluster**: restructure to same prototype for cluster child (Yash Ladha) [#&#8203;36610](https://github.com/nodejs/node/pull/36610) - \[[`8e1257e26d`](https://github.com/nodejs/node/commit/8e1257e26d)] - **cluster**: clarify construct Handle (Jackson Tian) [#&#8203;37385](https://github.com/nodejs/node/pull/37385) - \[[`341ee31e15`](https://github.com/nodejs/node/commit/341ee31e15)] - **crypto**: reconcile duplicated code (James M Snell) [#&#8203;37704](https://github.com/nodejs/node/pull/37704) - \[[`a2d08d5dfd`](https://github.com/nodejs/node/commit/a2d08d5dfd)] - **crypto**: add internal error codes (Darshan Sen) [#&#8203;37650](https://github.com/nodejs/node/pull/37650) - \[[`922f2f0eb2`](https://github.com/nodejs/node/commit/922f2f0eb2)] - **(SEMVER-MINOR)** **crypto**: add optional callback to crypto.sign and crypto.verify (Filip Skokan) [#&#8203;37500](https://github.com/nodejs/node/pull/37500) - \[[`55e522ca23`](https://github.com/nodejs/node/commit/55e522ca23)] - **(SEMVER-MINOR)** **crypto**: support JWK objects in create\*Key (Filip Skokan) [#&#8203;37254](https://github.com/nodejs/node/pull/37254) - \[[`33180fad81`](https://github.com/nodejs/node/commit/33180fad81)] - **crypto**: add separate error for INVALID_KEY_TYPE (Darshan Sen) [#&#8203;37555](https://github.com/nodejs/node/pull/37555) - \[[`d81b9af1fc`](https://github.com/nodejs/node/commit/d81b9af1fc)] - **crypto**: improve randomUUID performance (Dawid Rusnak) [#&#8203;37243](https://github.com/nodejs/node/pull/37243) - \[[`23d654105f`](https://github.com/nodejs/node/commit/23d654105f)] - **crypto,test**: improve hmac coverage with webcrypto tests (obi-el) [#&#8203;37571](https://github.com/nodejs/node/pull/37571) - \[[`dfca2fac24`](https://github.com/nodejs/node/commit/dfca2fac24)] - **(SEMVER-MINOR)** **deps**: update to cjs-module-lexer@1.1.0 (Guy Bedford) [#&#8203;37712](https://github.com/nodejs/node/pull/37712) - \[[`ce357c0c11`](https://github.com/nodejs/node/commit/ce357c0c11)] - **(SEMVER-MINOR)** **deps**: update archs files for OpenSSL-1.1.1+quic (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601) - \[[`6d77b6174f`](https://github.com/nodejs/node/commit/6d77b6174f)] - **(SEMVER-MINOR)** **deps**: switch openssl to quictls/openssl (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601) - \[[`3e1a46a6a8`](https://github.com/nodejs/node/commit/3e1a46a6a8)] - **deps**: upgrade npm to 7.6.3 (Ruy Adorno) [#&#8203;37721](https://github.com/nodejs/node/pull/37721) - \[[`b2fd00398c`](https://github.com/nodejs/node/commit/b2fd00398c)] - **deps**: V8: cherry-pick [`1648e05`](https://github.com/nodejs/node/commit/1648e050cade) (Colin Ihrig) [#&#8203;37664](https://github.com/nodejs/node/pull/37664) - \[[`7422453072`](https://github.com/nodejs/node/commit/7422453072)] - **deps**: upgrade npm to 7.6.1 (Ruy Adorno) [#&#8203;37606](https://github.com/nodejs/node/pull/37606) - \[[`89f3aa92b4`](https://github.com/nodejs/node/commit/89f3aa92b4)] - **doc**: add marsonya as a triager (marsonya) [#&#8203;37667](https://github.com/nodejs/node/pull/37667) - \[[`3710857de3`](https://github.com/nodejs/node/commit/3710857de3)] - **doc**: add hints to http.request() options (Luigi Pinca) [#&#8203;37745](https://github.com/nodejs/node/pull/37745) - \[[`5d793737d7`](https://github.com/nodejs/node/commit/5d793737d7)] - **(SEMVER-MINOR)** **doc**: update maintaining-openssl guide (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601) - \[[`1022d3d947`](https://github.com/nodejs/node/commit/1022d3d947)] - **doc**: recommend checking abortSignal.aborted first (James M Snell) [#&#8203;37714](https://github.com/nodejs/node/pull/37714) - \[[`764aa2dcee`](https://github.com/nodejs/node/commit/764aa2dcee)] - **doc**: fix link to googletest fixtures (Tobias Nießen) [#&#8203;37698](https://github.com/nodejs/node/pull/37698) - \[[`0d3cc2dc82`](https://github.com/nodejs/node/commit/0d3cc2dc82)] - **doc**: fix typo in description of close event (Tobias Nießen) [#&#8203;37662](https://github.com/nodejs/node/pull/37662) - \[[`e55058fed1`](https://github.com/nodejs/node/commit/e55058fed1)] - **doc**: use sentence case in README.md headers (marsonya) [#&#8203;37645](https://github.com/nodejs/node/pull/37645) - \[[`e7fc7a4c23`](https://github.com/nodejs/node/commit/e7fc7a4c23)] - **doc**: crypto esm examples (James M Snell) [#&#8203;37594](https://github.com/nodejs/node/pull/37594) - \[[`a3abd52e1e`](https://github.com/nodejs/node/commit/a3abd52e1e)] - **doc**: add localPort to http.request() options (Luigi Pinca) [#&#8203;37586](https://github.com/nodejs/node/pull/37586) - \[[`705bdfbe3e`](https://github.com/nodejs/node/commit/705bdfbe3e)] - **doc**: fix grammar errors in http document (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265) - \[[`e5f7179d1e`](https://github.com/nodejs/node/commit/e5f7179d1e)] - **doc**: add document for http.OutgoingMessage (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265) - \[[`7c0ce17e65`](https://github.com/nodejs/node/commit/7c0ce17e65)] - **doc**: fix typo in doc/guides/collaborator-guide.md (marsonya) [#&#8203;37643](https://github.com/nodejs/node/pull/37643) - \[[`60d8afa9ab`](https://github.com/nodejs/node/commit/60d8afa9ab)] - **doc**: document that module.evaluate fulfills as undefined (James M Snell) [#&#8203;37663](https://github.com/nodejs/node/pull/37663) - \[[`6192315cf3`](https://github.com/nodejs/node/commit/6192315cf3)] - **doc**: remove generated from dsaEncoding description (Marko Kaznovac) [#&#8203;37459](https://github.com/nodejs/node/pull/37459) - \[[`e4c8c50b28`](https://github.com/nodejs/node/commit/e4c8c50b28)] - **doc**: fix typos in /doc/api/fs.md (Merlin Luntke) [#&#8203;37557](https://github.com/nodejs/node/pull/37557) - \[[`ebc6f41072`](https://github.com/nodejs/node/commit/ebc6f41072)] - **doc**: fix linter issue (Antoine du Hamel) [#&#8203;37657](https://github.com/nodejs/node/pull/37657) - \[[`d17aab1775`](https://github.com/nodejs/node/commit/d17aab1775)] - **doc**: add esm examples for assert (James M Snell) [#&#8203;37607](https://github.com/nodejs/node/pull/37607) - \[[`366772bf87`](https://github.com/nodejs/node/commit/366772bf87)] - **doc**: add return type of readline.createInterface (Darshan Sen) [#&#8203;37600](https://github.com/nodejs/node/pull/37600) - \[[`f50db89a52`](https://github.com/nodejs/node/commit/f50db89a52)] - **doc**: change lang info string in fs JS snippets (Antoine du Hamel) [#&#8203;37605](https://github.com/nodejs/node/pull/37605) - \[[`5a9196e0e4`](https://github.com/nodejs/node/commit/5a9196e0e4)] - **doc**: apply sentence case to headers in pull-requests.md (marsonya) [#&#8203;37602](https://github.com/nodejs/node/pull/37602) - \[[`05badcf755`](https://github.com/nodejs/node/commit/05badcf755)] - **doc**: fix small typo in 15.11.0 release (Tierney Cyren) [#&#8203;37590](https://github.com/nodejs/node/pull/37590) - \[[`e0e7aa1058`](https://github.com/nodejs/node/commit/e0e7aa1058)] - **doc**: add top-level await syntax in vm.md (Antoine du Hamel) [#&#8203;37077](https://github.com/nodejs/node/pull/37077) - \[[`732d8ca811`](https://github.com/nodejs/node/commit/732d8ca811)] - **doc**: clarify that columnOffset applies only to the first line (James M Snell) [#&#8203;37563](https://github.com/nodejs/node/pull/37563) - \[[`267bbe3412`](https://github.com/nodejs/node/commit/267bbe3412)] - **doc**: document that NODE_EXTRA_CA_CERTS is read only once (James M Snell) [#&#8203;37562](https://github.com/nodejs/node/pull/37562) - \[[`f56a805a0d`](https://github.com/nodejs/node/commit/f56a805a0d)] - **doc**: refactor signal info in child_process.md (Darshan Sen) [#&#8203;37528](https://github.com/nodejs/node/pull/37528) - \[[`236ba04a79`](https://github.com/nodejs/node/commit/236ba04a79)] - **domain**: add name to monkey-patched emit function (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550) - \[[`1c09776106`](https://github.com/nodejs/node/commit/1c09776106)] - **domain**: show falsy names as anonymous for DEP0097 (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550) - \[[`5a49e3139e`](https://github.com/nodejs/node/commit/5a49e3139e)] - **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37743](https://github.com/nodejs/node/pull/37743) - \[[`e384291c90`](https://github.com/nodejs/node/commit/e384291c90)] - **events**: remove return value on addEventListener (James M Snell) [#&#8203;37696](https://github.com/nodejs/node/pull/37696) - \[[`ba91ef2d08`](https://github.com/nodejs/node/commit/ba91ef2d08)] - **fs**: improve fsPromises writeFile performance (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610) - \[[`3572299fc2`](https://github.com/nodejs/node/commit/3572299fc2)] - **fs**: add promisified readFile benchmark (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608) - \[[`b277776845`](https://github.com/nodejs/node/commit/b277776845)] - **fs**: improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608) - \[[`6688569a50`](https://github.com/nodejs/node/commit/6688569a50)] - **http**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37654](https://github.com/nodejs/node/pull/37654) - \[[`c737df64fe`](https://github.com/nodejs/node/commit/c737df64fe)] - **http2**: make res.req a normal property (Colin Ihrig) [#&#8203;37706](https://github.com/nodejs/node/pull/37706) - \[[`ac2f50b3fd`](https://github.com/nodejs/node/commit/ac2f50b3fd)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.abort() (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693) - \[[`12fb2ffc33`](https://github.com/nodejs/node/commit/12fb2ffc33)] - **lib**: use AbortError consistently (James M Snell) [#&#8203;37715](https://github.com/nodejs/node/pull/37715) - \[[`e63a25e2ff`](https://github.com/nodejs/node/commit/e63a25e2ff)] - **lib**: fix typo in lib/internal/http2/core.js (marsonya) [#&#8203;37695](https://github.com/nodejs/node/pull/37695) - \[[`852f53ed7e`](https://github.com/nodejs/node/commit/852f53ed7e)] - **lib**: fix typo in lib/internal/bootstrap/loaders.js (marsonya) [#&#8203;37644](https://github.com/nodejs/node/pull/37644) - \[[`daa4ac54c5`](https://github.com/nodejs/node/commit/daa4ac54c5)] - **lib**: remove use of array destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818) - \[[`ae0e76c264`](https://github.com/nodejs/node/commit/ae0e76c264)] - **module**: refactor NativeModule to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37656](https://github.com/nodejs/node/pull/37656) - \[[`a86334fbb9`](https://github.com/nodejs/node/commit/a86334fbb9)] - **(SEMVER-MINOR)** **node-api**: define version 8 (Gabriel Schulhof) [#&#8203;37652](https://github.com/nodejs/node/pull/37652) - \[[`d28ce328ed`](https://github.com/nodejs/node/commit/d28ce328ed)] - **src**: fix variable name of OnCloseReceived callback (Tobias Nießen) [#&#8203;37521](https://github.com/nodejs/node/pull/37521) - \[[`d59c6de7e8`](https://github.com/nodejs/node/commit/d59c6de7e8)] - **src**: add error formatting support (Gus Caplan) [#&#8203;37598](https://github.com/nodejs/node/pull/37598) - \[[`33436e39fe`](https://github.com/nodejs/node/commit/33436e39fe)] - **src**: make BaseObject::is_snapshotable virtual (Anna Henningsen) [#&#8203;37539](https://github.com/nodejs/node/pull/37539) - \[[`30c62dee1c`](https://github.com/nodejs/node/commit/30c62dee1c)] - **src,test**: support dynamically linking OpenSSL 3.0 (Daniel Bevenius) [#&#8203;37669](https://github.com/nodejs/node/pull/37669) - \[[`4bf1f333c7`](https://github.com/nodejs/node/commit/4bf1f333c7)] - **stream,util**: fix "the the" typo in comments (Luigi Pinca) [#&#8203;37674](https://github.com/nodejs/node/pull/37674) - \[[`1b53087541`](https://github.com/nodejs/node/commit/1b53087541)] - **(SEMVER-MINOR)** **test**: update dom/abort tests (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693) - \[[`c2cb153646`](https://github.com/nodejs/node/commit/c2cb153646)] - **(SEMVER-MINOR)** **test**: fixup test to account for quic openssl version (James M Snell) [#&#8203;37601](https://github.com/nodejs/node/pull/37601) - \[[`ede34aa128`](https://github.com/nodejs/node/commit/ede34aa128)] - **test**: address flaky wpt/test-timers (Rich Trott) [#&#8203;37691](https://github.com/nodejs/node/pull/37691) - \[[`ed32cd4e67`](https://github.com/nodejs/node/commit/ed32cd4e67)] - **test**: fixup flaky test-crypto-x509 (Filip Skokan) [#&#8203;37709](https://github.com/nodejs/node/pull/37709) - \[[`013b3ff2d4`](https://github.com/nodejs/node/commit/013b3ff2d4)] - **test**: remove unnecessary V8 flag (Antoine du Hamel) [#&#8203;37671](https://github.com/nodejs/node/pull/37671) - \[[`cc48816826`](https://github.com/nodejs/node/commit/cc48816826)] - **test**: fix WPT URL tests that fetch JSON data (Michaël Zasso) [#&#8203;37624](https://github.com/nodejs/node/pull/37624) - \[[`b0ed1e790e`](https://github.com/nodejs/node/commit/b0ed1e790e)] - **test**: improve error reporting in test-child-process-pipe-dataflow (Rich Trott) [#&#8203;37632](https://github.com/nodejs/node/pull/37632) - \[[`f7edb07ec2`](https://github.com/nodejs/node/commit/f7edb07ec2)] - **test**: terminate WPT workers after test completion (Michaël Zasso) [#&#8203;37627](https://github.com/nodejs/node/pull/37627) - \[[`b7ef829dac`](https://github.com/nodejs/node/commit/b7ef829dac)] - **test**: ignore WPT worker errors after tests finished (Michaël Zasso) [#&#8203;37626](https://github.com/nodejs/node/pull/37626) - \[[`257b1ab225`](https://github.com/nodejs/node/commit/257b1ab225)] - **test**: update Web Platform Tests (Michaël Zasso) [#&#8203;37620](https://github.com/nodejs/node/pull/37620) - \[[`1f6341852f`](https://github.com/nodejs/node/commit/1f6341852f)] - **test**: remove FLAKY status for test-async-hooks-http-parser-destroy (Rich Trott) [#&#8203;37636](https://github.com/nodejs/node/pull/37636) - \[[`044fd2fc86`](https://github.com/nodejs/node/commit/044fd2fc86)] - **test**: remove FLAKY status for fixed test (Rich Trott) [#&#8203;37633](https://github.com/nodejs/node/pull/37633) - \[[`d5ff50d2a7`](https://github.com/nodejs/node/commit/d5ff50d2a7)] - **test**: clear flaky designation for test-stream-pipeline-http2 (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631) - \[[`381fb98061`](https://github.com/nodejs/node/commit/381fb98061)] - **test**: clear FLAKY designation for test-http2-pipe (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631) - \[[`0582c51754`](https://github.com/nodejs/node/commit/0582c51754)] - **test**: fix wasi/test-return-on-exit on 32-bit systems (Colin Ihrig) [#&#8203;37615](https://github.com/nodejs/node/pull/37615) - \[[`0d04b6c043`](https://github.com/nodejs/node/commit/0d04b6c043)] - **test**: fix flaky test-child-process-exec-abortcontroller-promisified (Antoine du Hamel) [#&#8203;37572](https://github.com/nodejs/node/pull/37572) - \[[`a44daff34d`](https://github.com/nodejs/node/commit/a44daff34d)] - **test**: update all Web Platform Tests (Michaël Zasso) [#&#8203;37467](https://github.com/nodejs/node/pull/37467) - \[[`c09bd77daf`](https://github.com/nodejs/node/commit/c09bd77daf)] - **test**: redownload wpt fixtures with correct encoding (Michaël Zasso) [#&#8203;37467](https://github.com/nodejs/node/pull/37467) - \[[`57319770bb`](https://github.com/nodejs/node/commit/57319770bb)] - **test,crypto**: ensure promises resolve in webcrypto tests (Antoine du Hamel) [#&#8203;37653](https://github.com/nodejs/node/pull/37653) - \[[`2d9b624668`](https://github.com/nodejs/node/commit/2d9b624668)] - **tls**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37655](https://github.com/nodejs/node/pull/37655) - \[[`72af5d9895`](https://github.com/nodejs/node/commit/72af5d9895)] - **tools**: parse changelogs only in the default branch (Antoine du Hamel) [#&#8203;37768](https://github.com/nodejs/node/pull/37768) - \[[`bd62771a22`](https://github.com/nodejs/node/commit/bd62771a22)] - **tools**: use bundled npm in update scripts (Ruy Adorno) [#&#8203;37613](https://github.com/nodejs/node/pull/37613) - \[[`4de3b8483a`](https://github.com/nodejs/node/commit/4de3b8483a)] - **tools**: update glob-parent to 5.1.2 (Rich Trott) [#&#8203;37646](https://github.com/nodejs/node/pull/37646) - \[[`ec71a0f817`](https://github.com/nodejs/node/commit/ec71a0f817)] - **tools**: check version number in YAML comments from changelogs (Antoine du Hamel) [#&#8203;37599](https://github.com/nodejs/node/pull/37599) - \[[`07fc61b900`](https://github.com/nodejs/node/commit/07fc61b900)] - **tools**: add support for mjs and cjs JS snippet linting (Antoine du Hamel) [#&#8203;37311](https://github.com/nodejs/node/pull/37311) - \[[`440c944420`](https://github.com/nodejs/node/commit/440c944420)] - **tools**: fix object name in prefer-assert-methods.js (Tobias Nießen) [#&#8203;37544](https://github.com/nodejs/node/pull/37544) - \[[`7042ec89f1`](https://github.com/nodejs/node/commit/7042ec89f1)] - **tools**: update remark-preset-lint-node to 2.1.1 (Rich Trott) [#&#8203;37604](https://github.com/nodejs/node/pull/37604) - \[[`82e78f7c12`](https://github.com/nodejs/node/commit/82e78f7c12)] - **tools**: fix compiler warning in inspector_protocol (Darshan Sen) [#&#8203;37573](https://github.com/nodejs/node/pull/37573) - \[[`fd7234c52f`](https://github.com/nodejs/node/commit/fd7234c52f)] - **tools**: make update-eslint.sh work with npm@7 (Luigi Pinca) [#&#8203;37566](https://github.com/nodejs/node/pull/37566) - \[[`057c6a842a`](https://github.com/nodejs/node/commit/057c6a842a)] - **tools**: add ESLint rule no-array-destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818) - \[[`25a5f0b3b8`](https://github.com/nodejs/node/commit/25a5f0b3b8)] - **tools**: update eslint-plugin-markdown configuration (Colin Ihrig) [#&#8203;37549](https://github.com/nodejs/node/pull/37549) - \[[`7a1de1fce9`](https://github.com/nodejs/node/commit/7a1de1fce9)] - **tools**: update ESLint to 7.21.0 (Luigi Pinca) [#&#8203;37546](https://github.com/nodejs/node/pull/37546) - \[[`9c0ca4689d`](https://github.com/nodejs/node/commit/9c0ca4689d)] - **tools,doc**: add support for several flavors of JS code snippets (Antoine du Hamel) [#&#8203;37162](https://github.com/nodejs/node/pull/37162) - \[[`80af610d95`](https://github.com/nodejs/node/commit/80af610d95)] - **util**: inspect \__proto\_\_ key as written in object literal (Anna Henningsen) [#&#8203;37713](https://github.com/nodejs/node/pull/37713) - \[[`0d135e8316`](https://github.com/nodejs/node/commit/0d135e8316)] - **(SEMVER-MINOR)** **worker**: add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486) - \[[`8024ffbba4`](https://github.com/nodejs/node/commit/8024ffbba4)] - **worker**: add ports property to MessageEvents (Anna Henningsen) [#&#8203;37538](https://github.com/nodejs/node/pull/37538) - \[[`f4fd3fb6a7`](https://github.com/nodejs/node/commit/f4fd3fb6a7)] - **worker**: allow BroadcastChannel in receiveMessageOnPort (Anna Henningsen) [#&#8203;37535](https://github.com/nodejs/node/pull/37535) ### [`v15.11.0`](https://github.com/nodejs/node/releases/v15.11.0) [Compare Source](https://github.com/nodejs/node/compare/v15.10.0...v15.11.0) ##### Notable Changes - \[[`a3e3156b52`](https://github.com/nodejs/node/commit/a3e3156b52)] - **(SEMVER-MINOR)** **crypto**: make FIPS related options always awailable (Vít Ondruch) [#&#8203;36341](https://github.com/nodejs/node/pull/36341) - \[[`9ba5c0f9ba`](https://github.com/nodejs/node/commit/9ba5c0f9ba)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362) ##### Commits - \[[`d039e6fa80`](https://github.com/nodejs/node/commit/d039e6fa80)] - **assert**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37344](https://github.com/nodejs/node/pull/37344) - \[[`d2e5529e08`](https://github.com/nodejs/node/commit/d2e5529e08)] - **bootstrap**: include v8 module into the builtin snapshot (Joyee Cheung) [#&#8203;36943](https://github.com/nodejs/node/pull/36943) - \[[`59861bac0e`](https://github.com/nodejs/node/commit/59861bac0e)] - **bootstrap**: include fs module into the builtin snapshot (Joyee Cheung) [#&#8203;36943](https://github.com/nodejs/node/pull/36943) - \[[`458a4108b7`](https://github.com/nodejs/node/commit/458a4108b7)] - **buffer**: make Blob's constructor more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361) - \[[`0d564ce214`](https://github.com/nodejs/node/commit/0d564ce214)] - **buffer**: make Blob's slice method more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361) - \[[`ddae112133`](https://github.com/nodejs/node/commit/ddae112133)] - **child_process**: fix spawn and fork abort behavior (Nitzan Uziely) [#&#8203;37325](https://github.com/nodejs/node/pull/37325) - \[[`b1e188de8d`](https://github.com/nodejs/node/commit/b1e188de8d)] - **crypto**: refactor hasAnyNotIn to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37433](https://github.com/nodejs/node/pull/37433) - \[[`291d9e9936`](https://github.com/nodejs/node/commit/291d9e9936)] - **crypto**: check ed/x webcrypto key import algorithm names (Filip Skokan) [#&#8203;37305](https://github.com/nodejs/node/pull/37305) - \[[`a3e3156b52`](https://github.com/nodejs/node/commit/a3e3156b52)] - **(SEMVER-MINOR)** **crypto**: make FIPS related options always awailable (Vít Ondruch) [#&#8203;36341](https://github.com/nodejs/node/pull/36341) - \[[`b634469c38`](https://github.com/nodejs/node/commit/b634469c38)] - **crypto**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37364](https://github.com/nodejs/node/pull/37364) - \[[`01773ab614`](https://github.com/nodejs/node/commit/01773ab614)] - **crypto**: use BoringSSL compatible errors (Shelley Vohr) [#&#8203;37297](https://github.com/nodejs/node/pull/37297) - \[[`f3d67000a0`](https://github.com/nodejs/node/commit/f3d67000a0)] - **deps**: upgrade npm to 7.6.0 (Ruy Adorno) [#&#8203;37559](https://github.com/nodejs/node/pull/37559) - \[[`e1045f1004`](https://github.com/nodejs/node/commit/e1045f1004)] - **deps**: upgrade npm to 7.5.6 (Ruy Adorno) [#&#8203;37496](https://github.com/nodejs/node/pull/37496) - \[[`80d3c118f4`](https://github.com/nodejs/node/commit/80d3c118f4)] - **deps**: V8: cherry-pick [`373f4ae`](https://github.com/nodejs/node/commit/373f4ae739ee) (Richard Lau) [#&#8203;37505](https://github.com/nodejs/node/pull/37505) - \[[`1408de7e24`](https://github.com/nodejs/node/commit/1408de7e24)] - **deps**: cherry-pick [`8957d46`](https://github.com/nodejs/node/commit/8957d4677aa794c230577f234071af0) from V8 upstream (Antoine du Hamel) [#&#8203;37471](https://github.com/nodejs/node/pull/37471) - \[[`725d48ae77`](https://github.com/nodejs/node/commit/725d48ae77)] - **doc**: remove experimental from --enable-source-maps (Colin Ihrig) [#&#8203;37540](https://github.com/nodejs/node/pull/37540) - \[[`5d939b7a49`](https://github.com/nodejs/node/commit/5d939b7a49)] - **doc**: fix typo in doc/api/packages.md (marsonya) [#&#8203;37536](https://github.com/nodejs/node/pull/37536) - \[[`cbfc6b1692`](https://github.com/nodejs/node/commit/cbfc6b1692)] - **doc**: document how to register external bindings for snapshot (Joyee Cheung) [#&#8203;37463](https://github.com/nodejs/node/pull/37463) - \[[`dd7a04dc9f`](https://github.com/nodejs/node/commit/dd7a04dc9f)] - **doc**: fix typo "director" instead of "directory" (humanwebpl) [#&#8203;37523](https://github.com/nodejs/node/pull/37523) - \[[`ba81e7cb5e`](https://github.com/nodejs/node/commit/ba81e7cb5e)] - **doc**: revise LTS text in collaborator guide (Rich Trott) [#&#8203;37527](https://github.com/nodejs/node/pull/37527) - \[[`7529a97a5c`](https://github.com/nodejs/node/commit/7529a97a5c)] - **doc**: revise CI text in collaborator guide (Rich Trott) [#&#8203;37526](https://github.com/nodejs/node/pull/37526) - \[[`1285b907ce`](https://github.com/nodejs/node/commit/1285b907ce)] - **doc**: revise objections section of collaborator guide (Rich Trott) [#&#8203;37525](https://github.com/nodejs/node/pull/37525) - \[[`bc86208a0a`](https://github.com/nodejs/node/commit/bc86208a0a)] - **doc**: revise premature disclosure text in collaborator guide (Rich Trott) [#&#8203;37524](https://github.com/nodejs/node/pull/37524) - \[[`46af56752e`](https://github.com/nodejs/node/commit/46af56752e)] - **doc**: change links to use HEAD in top level docs (Michael Dawson) [#&#8203;37494](https://github.com/nodejs/node/pull/37494) - \[[`3b737e63ce`](https://github.com/nodejs/node/commit/3b737e63ce)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37506](https://github.com/nodejs/node/pull/37506) - \[[`fb5e5bed21`](https://github.com/nodejs/node/commit/fb5e5bed21)] - **doc**: fix typo in webcrypto.md (marsonya) [#&#8203;37507](https://github.com/nodejs/node/pull/37507) - \[[`3b7cb75554`](https://github.com/nodejs/node/commit/3b7cb75554)] - **doc**: document the NO_COLOR and FORCE_COLOR env vars (James M Snell) [#&#8203;37477](https://github.com/nodejs/node/pull/37477) - \[[`0fac27d546`](https://github.com/nodejs/node/commit/0fac27d546)] - **doc**: add url.resolve replacement example (Antoine du Hamel) [#&#8203;37501](https://github.com/nodejs/node/pull/37501) - \[[`2228f44b25`](https://github.com/nodejs/node/commit/2228f44b25)] - **doc**: apply sentence case to guides headers (marsonya) [#&#8203;37497](https://github.com/nodejs/node/pull/37497) - \[[`617819e4fb`](https://github.com/nodejs/node/commit/617819e4fb)] - **doc**: update CI requirements for landing pull requests (Antoine du Hamel) [#&#8203;37308](https://github.com/nodejs/node/pull/37308) - \[[`4a40759b33`](https://github.com/nodejs/node/commit/4a40759b33)] - **doc**: recommend queueMicrotask over process.nextTick (James M Snell) [#&#8203;37484](https://github.com/nodejs/node/pull/37484) - \[[`834f63793a`](https://github.com/nodejs/node/commit/834f63793a)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37478](https://github.com/nodejs/node/pull/37478) - \[[`7ac0820da0`](https://github.com/nodejs/node/commit/7ac0820da0)] - **doc**: fix typo in doc/api/http2/md (marsonya) [#&#8203;37479](https://github.com/nodejs/node/pull/37479) - \[[`4ad7a78448`](https://github.com/nodejs/node/commit/4ad7a78448)] - **doc**: alphabetize vm Module class properties (Rich Trott) [#&#8203;37451](https://github.com/nodejs/node/pull/37451) - \[[`a193d7ca87`](https://github.com/nodejs/node/commit/a193d7ca87)] - **doc**: alphabetize crypto Cipher class entries (Rich Trott) [#&#8203;37450](https://github.com/nodejs/node/pull/37450) - \[[`54b6f1bcf9`](https://github.com/nodejs/node/commit/54b6f1bcf9)] - **doc**: use HEAD for links in api docs (Michael Dawson) [#&#8203;37437](https://github.com/nodejs/node/pull/37437) - \[[`549d24b8ad`](https://github.com/nodejs/node/commit/549d24b8ad)] - **doc**: fix alignment of parameters (Michael Dawson) [#&#8203;37422](https://github.com/nodejs/node/pull/37422) - \[[`f3559a922b`](https://github.com/nodejs/node/commit/f3559a922b)] - **doc**: fix typo in doc/api/esm.md (marsonya) [#&#8203;37400](https://github.com/nodejs/node/pull/37400) - \[[`c3d236d405`](https://github.com/nodejs/node/commit/c3d236d405)] - **doc**: fix "referred to" in fs docs (Tobias Nießen) [#&#8203;37388](https://github.com/nodejs/node/pull/37388) - \[[`9ac8c74539`](https://github.com/nodejs/node/commit/9ac8c74539)] - **doc**: document x509 error codes (Dan Čermák) [#&#8203;37096](https://github.com/nodejs/node/pull/37096) - \[[`9a454afcd6`](https://github.com/nodejs/node/commit/9a454afcd6)] - **doc**: fix typo in esm.md (Jay Tailor) [#&#8203;37417](https://github.com/nodejs/node/pull/37417) - \[[`b3bf3d9824`](https://github.com/nodejs/node/commit/b3bf3d9824)] - **doc**: use HEAD in links where possible (Michael Dawson) [#&#8203;37421](https://github.com/nodejs/node/pull/37421) - \[[`6675342cd9`](https://github.com/nodejs/node/commit/6675342cd9)] - **doc**: clarify that async_hook callbacks cannot be async (James M Snell) [#&#8203;37384](https://github.com/nodejs/node/pull/37384) - \[[`4b54c10500`](https://github.com/nodejs/node/commit/4b54c10500)] - **doc**: use \*\*Default:\*\* more consistently (Colin Ihrig) [#&#8203;37387](https://github.com/nodejs/node/pull/37387) - \[[`f20ce47dbb`](https://github.com/nodejs/node/commit/f20ce47dbb)] - **doc,child_process**: `pid` can be `undefined` when `ENOENT` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014) - \[[`6205e29cb9`](https://github.com/nodejs/node/commit/6205e29cb9)] - **doc,lib**: prepare for stricter multi-line array linting (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088) - \[[`9ba5c0f9ba`](https://github.com/nodejs/node/commit/9ba5c0f9ba)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362) - \[[`c0cdb83433`](https://github.com/nodejs/node/commit/c0cdb83433)] - **fs**: fix writeFile signal does not close file (Nitzan Uziely) [#&#8203;37402](https://github.com/nodejs/node/pull/37402) - \[[`e8b1e2c0a3`](https://github.com/nodejs/node/commit/e8b1e2c0a3)] - **fs**: fix pre-aborted writeFile AbortSignal file leak (Nitzan Uziely) [#&#8203;37393](https://github.com/nodejs/node/pull/37393) - \[[`6b42e65983`](https://github.com/nodejs/node/commit/6b42e65983)] - **fs**: fixup negative length in fs.truncate (James M Snell) [#&#8203;37483](https://github.com/nodejs/node/pull/37483) - \[[`d141fce634`](https://github.com/nodejs/node/commit/d141fce634)] - **fs**: use createDeferredPromise() in promises.watch() (Colin Ihrig) [#&#8203;37386](https://github.com/nodejs/node/pull/37386) - \[[`bb81accb16`](https://github.com/nodejs/node/commit/bb81accb16)] - **lib**: use \<array>.push and \<array>.unshift instead of \<array>.concat (Antoine du Hamel) [#&#8203;37239](https://github.com/nodejs/node/pull/37239) - \[[`dc3c299862`](https://github.com/nodejs/node/commit/dc3c299862)] - **lib**: remove outdated todo comment (Antoine du Hamel) [#&#8203;37396](https://github.com/nodejs/node/pull/37396) - \[[`856d20b772`](https://github.com/nodejs/node/commit/856d20b772)] - **lib**: add URI handling functions to primordials (Antoine du Hamel) [#&#8203;37394](https://github.com/nodejs/node/pull/37394) - \[[`a1ed78cb3b`](https://github.com/nodejs/node/commit/a1ed78cb3b)] - **module**: improve support of data: URLs (Antoine du Hamel) [#&#8203;37392](https://github.com/nodejs/node/pull/37392) - \[[`27816eac61`](https://github.com/nodejs/node/commit/27816eac61)] - **node-api**: force env shutdown deferring behavior (Gabriel Schulhof) [#&#8203;37303](https://github.com/nodejs/node/pull/37303) - \[[`f1381f7a7a`](https://github.com/nodejs/node/commit/f1381f7a7a)] - **src**: fix alloc-dealloc-mismatch in node_snapshotable.h (Darshan Sen) [#&#8203;37443](https://github.com/nodejs/node/pull/37443) - \[[`5ea2ed611f`](https://github.com/nodejs/node/commit/5ea2ed611f)] - **src**: fix ETW_WRITE_EMPTY_EVENT macro (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334) - \[[`96bcd52d3e`](https://github.com/nodejs/node/commit/96bcd52d3e)] - **src**: disable unfixable MSVC warnings (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334) - \[[`c75f5f372d`](https://github.com/nodejs/node/commit/c75f5f372d)] - **src**: avoid implicit type conversions (take 2) (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334) - \[[`e400f8c9c8`](https://github.com/nodejs/node/commit/e400f8c9c8)] - **src**: support serialization of binding data (Joyee Cheung) [#&#8203;36943](https://github.com/nodejs/node/pull/36943) - \[[`daad7bbd34`](https://github.com/nodejs/node/commit/daad7bbd34)] - **src**: adjust THP sysfs config token retrieval and file closure (James Addison) [#&#8203;37187](https://github.com/nodejs/node/pull/37187) - \[[`4cc76457d9`](https://github.com/nodejs/node/commit/4cc76457d9)] - **stream**: move duplicated code to an internal module (Rich Trott) [#&#8203;37508](https://github.com/nodejs/node/pull/37508) - \[[`3d3df0c005`](https://github.com/nodejs/node/commit/3d3df0c005)] - **stream**: add AbortSignal support to finished (Nitzan Uziely) [#&#8203;37354](https://github.com/nodejs/node/pull/37354) - \[[`429dffd32e`](https://github.com/nodejs/node/commit/429dffd32e)] - **stream**: add AbortSignal to promisified pipeline (Nitzan Uziely) [#&#8203;37359](https://github.com/nodejs/node/pull/37359) - \[[`9696cf7142`](https://github.com/nodejs/node/commit/9696cf7142)] - **test**: remove FLAKY status for test-http2-multistream-destroy-on-read-tls (Rich Trott) [#&#8203;37533](https://github.com/nodejs/node/pull/37533) - \[[`453113938d`](https://github.com/nodejs/node/commit/453113938d)] - **test**: make status file names consistent (Rich Trott) [#&#8203;37532](https://github.com/nodejs/node/pull/37532) - \[[`00b3446a8e`](https://github.com/nodejs/node/commit/00b3446a8e)] - **test**: account for pending deprecations in esm test (Rich Trott) [#&#8203;37542](https://github.com/nodejs/node/pull/37542) - \[[`f2aa305348`](https://github.com/nodejs/node/commit/f2aa305348)] - **test**: fix incorrect timers-promisified case (ttzztztz) [#&#8203;37425](https://github.com/nodejs/node/pull/37425) - \[[`ce7fbbf94c`](https://github.com/nodejs/node/commit/ce7fbbf94c)] - **test**: fix typo in test_node_crypto.cc (Ikko Ashimine) [#&#8203;37469](https://github.com/nodejs/node/pull/37469) - \[[`ba319f0c60`](https://github.com/nodejs/node/commit/ba319f0c60)] - **test**: remove FLAKY for test-http2-compat-client-upload-reject (Rich Trott) [#&#8203;37462](https://github.com/nodejs/node/pull/37462) - \[[`dfa0440341`](https://github.com/nodejs/node/commit/dfa0440341)] - **test**: validate no debug info for http2 (Michael Dawson) [#&#8203;37447](https://github.com/nodejs/node/pull/37447) - \[[`b38404ee17`](https://github.com/nodejs/node/commit/b38404ee17)] - **test**: remove FLAKY designation for test-http2-client-upload-reject (Rich Trott) [#&#8203;37461](https://github.com/nodejs/node/pull/37461) - \[[`b569105183`](https://github.com/nodejs/node/commit/b569105183)] - **test**: clarify usage of tmpdir.refresh() (Darshan Sen) [#&#8203;37383](https://github.com/nodejs/node/pull/37383) - \[[`4f41900687`](https://github.com/nodejs/node/commit/4f41900687)] - **test**: update upload.zip to be uncorrupted (Greg Ziskind) [#&#8203;37294](https://github.com/nodejs/node/pull/37294) - \[[`d5c311ed15`](https://github.com/nodejs/node/commit/d5c311ed15)] - **test**: fix flaky test-worker-prof (Rich Trott) [#&#8203;37372](https://github.com/nodejs/node/pull/37372) - \[[`df538ebc8e`](https://github.com/nodejs/node/commit/df538ebc8e)] - **test**: fix flaky test-webcrypto-encrypt-decrypt-aes (Darshan Sen) [#&#8203;37380](https://github.com/nodejs/node/pull/37380) - \[[`19d6eb929c`](https://github.com/nodejs/node/commit/19d6eb929c)] - **test**: fix flaky test-fs-promises-file-handle-read (Rich Trott) [#&#8203;37371](https://github.com/nodejs/node/pull/37371) - \[[`c554aa149c`](https://github.com/nodejs/node/commit/c554aa149c)] - **test,child_process**: add check for `subProcess.pid` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014) - \[[`5c27fd73b0`](https://github.com/nodejs/node/commit/5c27fd73b0)] - **tools**: run doctool tests on GitHub Actions CI (Antoine du Hamel) [#&#8203;37398](https://github.com/nodejs/node/pull/37398) - \[[`49013fcee1`](https://github.com/nodejs/node/commit/49013fcee1)] - **tools**: make comma-dangle ESLint rule more stringent … (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088) - \[[`31f4600b7a`](https://github.com/nodejs/node/commit/31f4600b7a)] - **worker**: fix interaction of terminate() with messaging port (Anna Henningsen) [#&#8203;37319](https://github.com/nodejs/node/pull/37319) - \[[`d93137b2a9`](https://github.com/nodejs/node/commit/d93137b2a9)] - **workers**: fix spawning from preload scripts (James M Snell) [#&#8203;37481](https://github.com/nodejs/node/pull/37481) ### [`v15.10.0`](https://github.com/nodejs/node/releases/v15.10.0) [Compare Source](https://github.com/nodejs/node/compare/v15.9.0...v15.10.0) This is a security release. ##### Notable changes Vulnerabilities fixed: - **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion - Affected Node.js versions are vulnerable to denial of service attacks when too many connection attempts with an 'unknownProtocol' are established. This leads to a leak of file descriptors. If a file descriptor limit is configured on the system, then the server is unable to accept new connections and prevent the process also from opening, e.g. a file. If no file descriptor limit is configured, then this lead to an excessive memory usage and cause the system to run out of memory. - **CVE-2021-22884**: DNS rebinding in --inspect - Affected Node.js versions are vulnerable to denial of service attacks when the whitelist includes “localhost6”. When “localhost6” is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the “localhost6” domain. As long as the attacker uses the “localhost6” domain, they can still apply the attack described in CVE-2018-7160. - **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210216.txt ##### Commits - \[[`2a3ce5974b`](https://github.com/nodejs/node/commit/2a3ce5974b)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412) - \[[`afbce66874`](https://github.com/nodejs/node/commit/afbce66874)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412) - \[[`4184806dee`](https://github.com/nodejs/node/commit/4184806dee)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#&#8203;246](https://github.com/nodejs-private/node-private/pull/246) - \[[`43ae9c46c3`](https://github.com/nodejs/node/commit/43ae9c46c3)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#&#8203;244](https://github.com/nodejs-private/node-private/pull/244) ### [`v15.9.0`](https://github.com/nodejs/node/releases/v15.9.0) [Compare Source](https://github.com/nodejs/node/compare/v15.8.0...v15.9.0) ##### Notable Changes - **crypto**: - add keyObject.export() 'jwk' format option (Filip Skokan) [#&#8203;37081](https://github.com/nodejs/node/pull/37081) - **deps**: - upgrade to libuv 1.41.0 (Colin Ihrig) [#&#8203;37360](https://github.com/nodejs/node/pull/37360) - **doc**: - add dmabupt to collaborators (Xu Meng) [#&#8203;37377](https://github.com/nodejs/node/pull/37377) - refactor fs docs structure (James M Snell) [#&#8203;37170](https://github.com/nodejs/node/pull/37170) - **fs**: - add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179) - use a default callback for fs.close() (James M Snell) [#&#8203;37174](https://github.com/nodejs/node/pull/37174) - add AbortSignal support to watch (Benjamin Gruenbaum) [#&#8203;37190](https://github.com/nodejs/node/pull/37190) - **perf_hooks**: - introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155) - **stream**: - improve Readable.from error handling (Benjamin Gruenbaum) [#&#8203;37158](https://github.com/nodejs/node/pull/37158) - **timers**: - introduce setInterval async iterator (linkgoron) [#&#8203;37153](https://github.com/nodejs/node/pull/37153) - **tls**: - add ability to get cert/peer cert as X509Certificate object (James M Snell) [#&#8203;37070](https://github.com/nodejs/node/pull/37070) ##### Commits - \[[`d0f1ff53ff`](https://github.com/nodejs/node/commit/d0f1ff53ff)] - **async_hooks**: set unhandledRejection async context (Sajal Khandelwal) [#&#8203;37281](https://github.com/nodejs/node/pull/37281) - \[[`c160d88c9e`](https://github.com/nodejs/node/commit/c160d88c9e)] - **buffer**: add @&#8203;[@&#8203;toStringTag](https://github.com/toStringTag) to Blob (Colin Ihrig) [#&#8203;37336](https://github.com/nodejs/node/pull/37336) - \[[`8487184457`](https://github.com/nodejs/node/commit/8487184457)] - **child_process**: fix bad abort signal leak (Nitzan Uziely) [#&#8203;37257](https://github.com/nodejs/node/pull/37257) - \[[`e28ea89b1a`](https://github.com/nodejs/node/commit/e28ea89b1a)] - **crypto**: fix subtle.importKey JWK OKP public key import (Filip Skokan) [#&#8203;37255](https://github.com/nodejs/node/pull/37255) - \[[`55fd6b6611`](https://github.com/nodejs/node/commit/55fd6b6611)] - **crypto**: avoid infinite loops in prime generation (Tobias Nießen) [#&#8203;37212](https://github.com/nodejs/node/pull/37212) - \[[`9dac99a11a`](https://github.com/nodejs/node/commit/9dac99a11a)] - **crypto**: fix and simplify prime option validation (Tobias Nießen) [#&#8203;37164](https://github.com/nodejs/node/pull/37164) - \[[`3e2746ff63`](https://github.com/nodejs/node/commit/3e2746ff63)] - **crypto**: remove webcrypto "DSA" JWK Key Type operations (Filip Skokan) [#&#8203;37203](https://github.com/nodejs/node/pull/37203) - \[[`011910b424`](https://github.com/nodejs/node/commit/011910b424)] - **(SEMVER-MINOR)** **crypto**: add keyObject.export() 'jwk' format option (Filip Skokan) [#&#8203;37081](https://github.com/nodejs/node/pull/37081) - \[[`c0eadef495`](https://github.com/nodejs/node/commit/c0eadef495)] - **deps**: upgrade to libuv 1.41.0 (Colin Ihrig) [#&#8203;37360](https://github.com/nodejs/node/pull/37360) - \[[`50e81ba0b8`](https://github.com/nodejs/node/commit/50e81ba0b8)] - **deps**: V8: cherry-pick [`0c8b6e4`](https://github.com/nodejs/node/commit/0c8b6e415c30) (Matin Zadehdolatabad) [#&#8203;37276](https://github.com/nodejs/node/pull/37276) - \[[`d1c1724c69`](https://github.com/nodejs/node/commit/d1c1724c69)] - **deps**: upgrade npm to 7.5.3 (Ruy Adorno) [#&#8203;37283](https://github.com/nodejs/node/pull/37283) - \[[`20c65b00c2`](https://github.com/nodejs/node/commit/20c65b00c2)] - **deps**: V8: backport [`dfcf1e8`](https://github.com/nodejs/node/commit/dfcf1e86fac0) (Michaël Zasso) [#&#8203;37245](https://github.com/nodejs/node/pull/37245) - \[[`e63b380f76`](https://github.com/nodejs/node/commit/e63b380f76)] - **deps**: upgrade npm to 7.5.2 (Ruy Adorno) [#&#8203;37191](https://github.com/nodejs/node/pull/37191) - \[[`d808db2732`](https://github.com/nodejs/node/commit/d808db2732)] - **doc**: add dmabupt to collaborators (Xu Meng) [#&#8203;37377](https://github.com/nodejs/node/pull/37377) - \[[`dd054ca37f`](https://github.com/nodejs/node/commit/dd054ca37f)] - **doc**: optimize HTML rendering (Antoine du Hamel) [#&#8203;37301](https://github.com/nodejs/node/pull/37301) - \[[`c188466a18`](https://github.com/nodejs/node/commit/c188466a18)] - **doc**: fix quotes in stream docs (Tobias Nießen) [#&#8203;37269](https://github.com/nodejs/node/pull/37269) - \[[`f5e4625468`](https://github.com/nodejs/node/commit/f5e4625468)] - **doc**: fix backticks in crypto API docs (Tobias Nießen) [#&#8203;37269](https://github.com/nodejs/node/pull/37269) - \[[`e2a2bab44e`](https://github.com/nodejs/node/commit/e2a2bab44e)] - **doc**: link PACKAGE_EXPORTS_RESOLVE to ESM section (Utku Gultopu) [#&#8203;37135](https://github.com/nodejs/node/pull/37135) - \[[`1e99175e01`](https://github.com/nodejs/node/commit/1e99175e01)] - **doc**: alphabetize crypto.\* methods (Rich Trott) [#&#8203;37353](https://github.com/nodejs/node/pull/37353) - \[[`392c86d38b`](https://github.com/nodejs/node/commit/392c86d38b)] - **doc**: use sentence case in benchmark doc (Rich Trott) [#&#8203;37351](https://github.com/nodejs/node/pull/37351) - \[[`62b2648a96`](https://github.com/nodejs/node/commit/62b2648a96)] - **doc**: apply sentence-consistently in C++ style guide (Rich Trott) [#&#8203;37350](https://github.com/nodejs/node/pull/37350) - \[[`189ce399da`](https://github.com/nodejs/node/commit/189ce399da)] - **doc**: apply sentence case to release doc headers (Rich Trott) [#&#8203;37349](https://github.com/nodejs/node/pull/37349) - \[[`610b29b8bd`](https://github.com/nodejs/node/commit/610b29b8bd)] - **doc**: fix performanceEntry.flags style format (Cheng Liu) [#&#8203;37274](https://github.com/nodejs/node/pull/37274) - \[[`85b1476f1d`](https://github.com/nodejs/node/commit/85b1476f1d)] - **doc**: fix typo in deprecations.md (marsonya) [#&#8203;37282](https://github.com/nodejs/node/pull/37282) - \[[`f253cb9303`](https://github.com/nodejs/node/commit/f253cb9303)] - **doc**: fix typo in buffer.md (marsonya) [#&#8203;37268](https://github.com/nodejs/node/pull/37268) - \[[`804e7ae713`](https://github.com/nodejs/node/commit/804e7ae713)] - **doc**: add version metadata for packages features (Antoine du Hamel) [#&#8203;37289](https://github.com/nodejs/node/pull/37289) - \[[`cdd2fe5651`](https://github.com/nodejs/node/commit/cdd2fe5651)] - **doc**: fix typo in /api/dns.md (marsonya) [#&#8203;37312](https://github.com/nodejs/node/pull/37312) - \[[`7d8fd3f576`](https://github.com/nodejs/node/commit/7d8fd3f576)] - **doc**: refactor fs docs structure (James M Snell) [#&#8203;37170](https://github.com/nodejs/node/pull/37170) - \[[`facf3a5c23`](https://github.com/nodejs/node/commit/facf3a5c23)] - **doc**: fix description of hasSubscribers (Tobias Nießen) [#&#8203;37324](https://github.com/nodejs/node/pull/37324) - \[[`3464c9f007`](https://github.com/nodejs/node/commit/3464c9f007)] - **doc**: discourage error event (Benjamin Gruenbaum) [#&#8203;37264](https://github.com/nodejs/node/pull/37264) - \[[`85bed2ec26`](https://github.com/nodejs/node/commit/85bed2ec26)] - **doc**: fix misnamed SHASUMS256.txt name in README.md (marsonya) [#&#8203;37260](https://github.com/nodejs/node/pull/37260) - \[[`cd50e93307`](https://github.com/nodejs/node/commit/cd50e93307)] - **doc**: warn about using strings as inputs in crypto (Tobias Nießen) [#&#8203;37248](https://github.com/nodejs/node/pull/37248) - \[[`5a4288ebb6`](https://github.com/nodejs/node/commit/5a4288ebb6)] - **doc**: fix typo in crypto.md (marsonya) [#&#8203;37279](https://github.com/nodejs/node/pull/37279) - \[[`0e887caf32`](https://github.com/nodejs/node/commit/0e887caf32)] - **doc**: fix typo in console.md (marsonya) [#&#8203;37279](https://github.com/nodejs/node/pull/37279) - \[[`47c4f1fc54`](https://github.com/nodejs/node/commit/47c4f1fc54)] - **doc**: use sentence case in README headers (Rich Trott) [#&#8203;37251](https://github.com/nodejs/node/pull/37251) - \[[`7da1c9b219`](https://github.com/nodejs/node/commit/7da1c9b219)] - **doc**: use sentence case for headers in BUILDING.md (Rich Trott) [#&#8203;37250](https://github.com/nodejs/node/pull/37250) - \[[`ebf3597db1`](https://github.com/nodejs/node/commit/ebf3597db1)] - **doc**: rename N-API to Node-API (Gabriel Schulhof) [#&#8203;37259](https://github.com/nodejs/node/pull/37259) - \[[`760f126adb`](https://github.com/nodejs/node/commit/760f126adb)] - **doc**: mark Certificate methods as static, add missing KeyObject.from (Filip Skokan) [#&#8203;37198](https://github.com/nodejs/node/pull/37198) - \[[`aebe532967`](https://github.com/nodejs/node/commit/aebe532967)] - **doc**: consistent webcrypto `node.keyObject` format (Filip Skokan) [#&#8203;37200](https://github.com/nodejs/node/pull/37200) - \[[`596bfb36a0`](https://github.com/nodejs/node/commit/596bfb36a0)] - **doc**: mention CryptoKey in port.postMessage() (Filip Skokan) [#&#8203;37196](https://github.com/nodejs/node/pull/37196) - \[[`0702d60def`](https://github.com/nodejs/node/commit/0702d60def)] - **doc**: fix webcrypto HMAC generateKey example (Filip Skokan) [#&#8203;37197](https://github.com/nodejs/node/pull/37197) - \[[`8a254058f5`](https://github.com/nodejs/node/commit/8a254058f5)] - **doc**: fix accommodate typos (Colin Ihrig) [#&#8203;37229](https://github.com/nodejs/node/pull/37229) - \[[`5906e85ce2`](https://github.com/nodejs/node/commit/5906e85ce2)] - **doc**: fix version number for DEP006 (Antoine du Hamel) [#&#8203;37231](https://github.com/nodejs/node/pull/37231) - \[[`52c40c7a48`](https://github.com/nodejs/node/commit/52c40c7a48)] - **doc**: fix CHANGELOG_ARCHIVE table of contents (Antoine du Hamel) [#&#8203;37232](https://github.com/nodejs/node/pull/37232) - \[[`eb08afdf24`](https://github.com/nodejs/node/commit/eb08afdf24)] - **doc**: fix typo in globals.md (Darshan Sen) [#&#8203;37228](https://github.com/nodejs/node/pull/37228) - \[[`b87c0d6c16`](https://github.com/nodejs/node/commit/b87c0d6c16)] - **doc**: fix typo in cli.md (Kalvin Vasconcellos) [#&#8203;37214](https://github.com/nodejs/node/pull/37214) - \[[`3f815d93bf`](https://github.com/nodejs/node/commit/3f815d93bf)] - **doc**: fix pr-url for DEP0148 (Antoine du Hamel) [#&#8203;37205](https://github.com/nodejs/node/pull/37205) - \[[`ff02e5e12c`](https://github.com/nodejs/node/commit/ff02e5e12c)] - **doc**: fix 404 links in module.md (Antoine du Hamel) [#&#8203;37202](https://github.com/nodejs/node/pull/37202) - \[[`67c9a8e176`](https://github.com/nodejs/node/commit/67c9a8e176)] - **doc**: improve promise terminology (Benjamin Gruenbaum) [#&#8203;37181](https://github.com/nodejs/node/pull/37181) - \[[`15804e0b3f`](https://github.com/nodejs/node/commit/15804e0b3f)] - **errors**: align source-map stacks with spec (Benjamin Coe) [#&#8203;37252](https://github.com/nodejs/node/pull/37252) - \[[`88d3f74c85`](https://github.com/nodejs/node/commit/88d3f74c85)] - **(SEMVER-MINOR)** **fs**: add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179) - \[[`c30245072a`](https://github.com/nodejs/node/commit/c30245072a)] - **fs**: allow passing negative zero fd (Darshan Sen) [#&#8203;37123](https://github.com/nodejs/node/pull/37123) - \[[`655d19638a`](https://github.com/nodejs/node/commit/655d19638a)] - **(SEMVER-MINOR)** **fs**: use a default callback for fs.close() (James M Snell) [#&#8203;37174](https://github.com/nodejs/node/pull/37174) - \[[`acd087dffb`](https://github.com/nodejs/node/commit/acd087dffb)] - **(SEMVER-MINOR)** **fs**: add AbortSignal support to watch (Benjamin Gruenbaum) [#&#8203;37190](https://github.com/nodejs/node/pull/37190) - \[[`f5d1bf9d0e`](https://github.com/nodejs/node/commit/f5d1bf9d0e)] - **http**: explain the possibilty of refactor unused argument (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275) - \[[`d63ac28a9a`](https://github.com/nodejs/node/commit/d63ac28a9a)] - **http**: explain the unused argument in IncomingMessage.\_read (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275) - \[[`4cdc5ea823`](https://github.com/nodejs/node/commit/4cdc5ea823)] - **http**: fix ClientRequest unhandled errors (Robert Nagy) [#&#8203;36970](https://github.com/nodejs/node/pull/36970) - \[[`c6198fddc7`](https://github.com/nodejs/node/commit/c6198fddc7)] - **lib**: simplify check in child_process (Darshan Sen) [#&#8203;37367](https://github.com/nodejs/node/pull/37367) - \[[`f6f9af6a59`](https://github.com/nodejs/node/commit/f6f9af6a59)] - **lib**: fix WebIDL `object` and dictionary type conversion (ExE Boss) [#&#8203;37047](https://github.com/nodejs/node/pull/37047) - \[[`acabe08b10`](https://github.com/nodejs/node/commit/acabe08b10)] - **lib**: add weak event handlers (Benjamin Gruenbaum) [#&#8203;36607](https://github.com/nodejs/node/pull/36607) - \[[`3db1b30732`](https://github.com/nodejs/node/commit/3db1b30732)] - **meta**: update README releases section (Zuzana Svetlikova) [#&#8203;37318](https://github.com/nodejs/node/pull/37318) - \[[`d96a97a2b9`](https://github.com/nodejs/node/commit/d96a97a2b9)] - **module**: make synthetic module evaluation steps return a Promise to support top level await (Daniel Clark) [#&#8203;37300](https://github.com/nodejs/node/pull/37300) - \[[`a693baa0cb`](https://github.com/nodejs/node/commit/a693baa0cb)] - **module**: use optional chaining in cjs/loader.js (Darshan Sen) [#&#8203;37238](https://github.com/nodejs/node/pull/37238) - \[[`061939d2f6`](https://github.com/nodejs/node/commit/061939d2f6)] - **(SEMVER-MINOR)** **node-api**: allow retrieval of add-on file name (Gabriel Schulhof) [#&#8203;37195](https://github.com/nodejs/node/pull/37195) - \[[`c4faa39768`](https://github.com/nodejs/node/commit/c4faa39768)] - **(SEMVER-MINOR)** **perf_hooks**: introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155) - \[[`799b2d5275`](https://github.com/nodejs/node/commit/799b2d5275)] - **policy**: fix cascade getting scope (Bradley Meck) [#&#8203;37298](https://github.com/nodejs/node/pull/37298) - \[[`6d53e797d7`](https://github.com/nodejs/node/commit/6d53e797d7)] - **repl**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37345](https://github.com/nodejs/node/pull/37345) - \[[`3fee5b2219`](https://github.com/nodejs/node/commit/3fee5b2219)] - **repl**: add auto‑completion for dynamic import calls (ExE Boss) [#&#8203;37178](https://github.com/nodejs/node/pull/37178) - \[[`c3778343aa`](https://github.com/nodejs/node/commit/c3778343aa)] - **repl**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37188](https://github.com/nodejs/node/pull/37188) - \[[`e28fa6c3fc`](https://github.com/nodejs/node/commit/e28fa6c3fc)] - **src**: fix return type of method in string_search.h (Darshan Sen) [#&#8203;37167](https://github.com/nodejs/node/pull/37167) - \[[`42cc33cc48`](https://github.com/nodejs/node/commit/42cc33cc48)] - **src**: add mutex to ManagedEVPPKey class (Daniel Bevenius) [#&#8203;36825](https://github.com/nodejs/node/pull/36825) - \[[`1a9bcdf1d9`](https://github.com/nodejs/node/commit/1a9bcdf1d9)] - **src**: refactor v8 binding (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112) - \[[`54d36b00af`](https://github.com/nodejs/node/commit/54d36b00af)] - **src**: rename binding_data_name to type_name in BindingData (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112) - \[[`3079a78428`](https://github.com/nodejs/node/commit/3079a78428)] - **src**: avoid implicit type conversions (Michaël Zasso) [#&#8203;37149](https://github.com/nodejs/node/pull/37149) - \[[`a6053dc14a`](https://github.com/nodejs/node/commit/a6053dc14a)] - **src**: add context for TODO comment in env.cc (Yash Ladha) [#&#8203;37140](https://github.com/nodejs/node/pull/37140) - \[[`354df9e8a1`](https://github.com/nodejs/node/commit/354df9e8a1)] - **src**: use make_shared for safe allocation (Yash Ladha) [#&#8203;37139](https://github.com/nodejs/node/pull/37139) - \[[`337b4e7540`](https://github.com/nodejs/node/commit/337b4e7540)] - **src**: put (de)serialization code into node_snapshotable.h/cc (Joyee Cheung) [#&#8203;37114](https://github.com/nodejs/node/pull/37114) - \[[`2a5f67b381`](https://github.com/nodejs/node/commit/2a5f67b381)] - **src**: refactor bookkeeping of bootstrap status (Joyee Cheung) [#&#8203;37113](https://github.com/nodejs/node/pull/37113) - \[[`48ce1eb364`](https://github.com/nodejs/node/commit/48ce1eb364)] - **src**: fix warning in string_search.h (Darshan Sen) [#&#8203;37146](https://github.com/nodejs/node/pull/37146) - \[[`bfe0b46d92`](https://github.com/nodejs/node/commit/bfe0b46d92)] - **src**: simplify calls to BN_bin2bn in prime gen (Tobias Nießen) [#&#8203;37169](https://github.com/nodejs/node/pull/37169) - \[[`9946c1137e`](https://github.com/nodejs/node/commit/9946c1137e)] - **src**: read exactly two tokens from Linux THP sysfs config (James Addison) [#&#8203;37065](https://github.com/nodejs/node/pull/37065) - \[[`1fea05149a`](https://github.com/nodejs/node/commit/1fea05149a)] - **(SEMVER-MINOR)** **stream**: improve Readable.from error handling (Benjamin Gruenbaum) [#&#8203;37158](https://github.com/nodejs/node/pull/37158) - \[[`d2a487e640`](https://github.com/nodejs/node/commit/d2a487e640)] - ***Revert*** "**stream**: fix .end() error propagation" (Matteo Collina) [#&#8203;37060](https://github.com/nodejs/node/pull/37060) - \[[`b5692b4b06`](https://github.com/nodejs/node/commit/b5692b4b06)] - **test**: fix test-doctool-html (Antoine du Hamel) [#&#8203;37397](https://github.com/nodejs/node/pull/37397) - \[[`b09d21b06b`](https://github.com/nodejs/node/commit/b09d21b06b)] - **test**: enable no-restricted-syntax rule for test-timers-promisified (Rich Trott) [#&#8203;37357](https://github.com/nodejs/node/pull/37357) - \[[`1fc8307138`](https://github.com/nodejs/node/commit/1fc8307138)] - **test**: re-implement promises.setInterval() test robustly (Rich Trott) [#&#8203;37230](https://github.com/nodejs/node/pull/37230) - \[[`8483de4da8`](https://github.com/nodejs/node/commit/8483de4da8)] - **test**: only run prime test with supported OpenSSL (Tobias Nießen) [#&#8203;37212](https://github.com/nodejs/node/pull/37212) - \[[`48a634e514`](https://github.com/nodejs/node/commit/48a634e514)] - **test**: rename n-api to node-api (Gabriel Schulhof) [#&#8203;37217](https://github.com/nodejs/node/pull/37217) - \[[`51575252f5`](https://github.com/nodejs/node/commit/51575252f5)] - **test**: remove flaky designation for test-http2-large-file (Rich Trott) [#&#8203;37156](https://github.com/nodejs/node/pull/37156) - \[[`13fe17c4ef`](https://github.com/nodejs/node/commit/13fe17c4ef)] - **test**: split heap snapshot limit tests (Rich Trott) [#&#8203;37189](https://github.com/nodejs/node/pull/37189) - \[[`dc38dd2c6f`](https://github.com/nodejs/node/commit/dc38dd2c6f)] - **timers**: fix unsafe array iteration (Darshan Sen) [#&#8203;37223](https://github.com/nodejs/node/pull/37223) - \[[`eb7ec1b257`](https://github.com/nodejs/node/commit/eb7ec1b257)] - **timers**: remove flaky setInterval test (Nitzan Uziely) [#&#8203;37227](https://github.com/nodejs/node/pull/37227) - \[[`4ebe38b212`](https://github.com/nodejs/node/commit/4ebe38b212)] - **(SEMVER-MINOR)** **timers**: introduce setInterval async iterator (linkgoron) [#&#8203;37153](https://github.com/nodejs/node/pull/37153) - \[[`dc84c181c3`](https://github.com/nodejs/node/commit/dc84c181c3)] - **(SEMVER-MINOR)** **tls**: add ability to get cert/peer cert as X509Certificate object (James M Snell) [#&#8203;37070](https://github.com/nodejs/node/pull/37070) - \[[`2e1f1c6f3c`](https://github.com/nodejs/node/commit/2e1f1c6f3c)] - **tools**: refactor prefer-primordials (Antoine du Hamel) [#&#8203;36018](https://github.com/nodejs/node/pull/36018) - \[[`b2b64113b1`](https://github.com/nodejs/node/commit/b2b64113b1)] - **tools**: update ESLint to 7.20.0 (Colin Ihrig) [#&#8203;37339](https://github.com/nodejs/node/pull/37339) - \[[`a483c284f3`](https://github.com/nodejs/node/commit/a483c284f3)] - **tools**: fix lint-pr-url message (Antoine du Hamel) [#&#8203;37304](https://github.com/nodejs/node/pull/37304) - \[[`1ff375beb3`](https://github.com/nodejs/node/commit/1ff375beb3)] - **tools**: avoid pending deprecation in doc generator (Michaël Zasso) [#&#8203;37267](https://github.com/nodejs/node/pull/37267) - \[[`6db5e7958a`](https://github.com/nodejs/node/commit/6db5e7958a)] - **tools**: add GitHub Action linter for pr-url (Antoine du Hamel) [#&#8203;37221](https://github.com/nodejs/node/pull/37221) - \[[`d8d851ac5c`](https://github.com/nodejs/node/commit/d8d851ac5c)] - **tools**: bump remark-present-lint-node from 2.0.0 to 2.0.1 (Rich Trott) [#&#8203;37270](https://github.com/nodejs/node/pull/37270) - \[[`eb0daaedf9`](https://github.com/nodejs/node/commit/eb0daaedf9)] - **tools**: fix d8 macOS build (Michaël Zasso) [#&#8203;37211](https://github.com/nodejs/node/pull/37211) - \[[`745aad73dc`](https://github.com/nodejs/node/commit/745aad73dc)] - **tools**: update ESLint to 7.19.0 (Colin Ihrig) [#&#8203;37159](https://github.com/nodejs/node/pull/37159) - \[[`676f696a99`](https://github.com/nodejs/node/commit/676f696a99)] - **url**: fix definitions of `URL`/`SearchParams` methods and accessors (ExE Boss) [#&#8203;36799](https://github.com/nodejs/node/pull/36799) - \[[`fbcab109de`](https://github.com/nodejs/node/commit/fbcab109de)] - **url**: move `URLSearchParams` method definitions (ExE Boss) [#&#8203;36799](https://github.com/nodejs/node/pull/36799) - \[[`7c51cecbca`](https://github.com/nodejs/node/commit/7c51cecbca)] - **util**: use assert for unreachable code (Rich Trott) [#&#8203;37249](https://github.com/nodejs/node/pull/37249) - \[[`66a14d3992`](https://github.com/nodejs/node/commit/66a14d3992)] - **vm**: add importModuleDynamically option to compileFunction (Gus Caplan) [#&#8203;35431](https://github.com/nodejs/node/pull/35431) - \[[`05a16e7259`](https://github.com/nodejs/node/commit/05a16e7259)] - **worker**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37346](https://github.com/nodejs/node/pull/37346) ### [`v15.8.0`](https://github.com/nodejs/node/releases/v15.8.0) [Compare Source](https://github.com/nodejs/node/compare/v15.7.0...v15.8.0) ##### Notable Changes - \[[`110063d694`](https://github.com/nodejs/node/commit/110063d694)] - **(SEMVER-MINOR)** **crypto**: add generatePrime/checkPrime (James M Snell) [#&#8203;36997](https://github.com/nodejs/node/pull/36997) - \[[`53a0bdff47`](https://github.com/nodejs/node/commit/53a0bdff47)] - **(SEMVER-MINOR)** **crypto**: experimental (Ed/X)25519/(Ed/X)448 support (James M Snell) [#&#8203;36879](https://github.com/nodejs/node/pull/36879) - \[[`03460432af`](https://github.com/nodejs/node/commit/03460432af)] - **deps**: upgrade npm to 7.5.0 (Ruy Adorno) [#&#8203;37117](https://github.com/nodejs/node/pull/37117) - This update adds a new [`npm diff` command](https://github.com/npm/cli/pull/1319). - \[[`2c7ad38c75`](https://github.com/nodejs/node/commit/2c7ad38c75)] - **(SEMVER-MINOR)** **dgram**: support AbortSignal in createSocket (Nitzan Uziely) [#&#8203;37026](https://github.com/nodejs/node/pull/37026) - \[[`b7c3f99f7e`](https://github.com/nodejs/node/commit/b7c3f99f7e)] - **doc**: add Zijian Liu to collaborators (ZiJian Liu) [#&#8203;37075](https://github.com/nodejs/node/pull/37075) - \[[`02f1d2fda4`](https://github.com/nodejs/node/commit/02f1d2fda4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918) - \[[`75124298d5`](https://github.com/nodejs/node/commit/75124298d5)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662) - \[[`4e757eab96`](https://github.com/nodejs/node/commit/4e757eab96)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676) ##### Commits - \[[`602aaf25af`](https://github.com/nodejs/node/commit/602aaf25af)] - **async_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37125](https://github.com/nodejs/node/pull/37125) - \[[`dcd34b0144`](https://github.com/nodejs/node/commit/dcd34b0144)] - **benchmark**: add benchmark for NODE_V8\_COVERAGE (Benjamin Coe) [#&#8203;36972](https://github.com/nodejs/node/pull/36972) - \[[`ec22756ac9`](https://github.com/nodejs/node/commit/ec22756ac9)] - **benchmark**: make output RFC 4180 compliant (Tobias Nießen) [#&#8203;37038](https://github.com/nodejs/node/pull/37038) - \[[`96cec1e5f3`](https://github.com/nodejs/node/commit/96cec1e5f3)] - **benchmark**: improve explanations in R script (Tobias Nießen) [#&#8203;36995](https://github.com/nodejs/node/pull/36995) - \[[`e4b88b521a`](https://github.com/nodejs/node/commit/e4b88b521a)] - **buffer**: avoid creating the backing store in the thread (James M Snell) [#&#8203;37052](https://github.com/nodejs/node/pull/37052) - \[[`7b78c6773d`](https://github.com/nodejs/node/commit/7b78c6773d)] - **child_process**: allow promisified exec to be cancel (Carlos Fuentes) [#&#8203;34249](https://github.com/nodejs/node/pull/34249) - \[[`c4193ba8ae`](https://github.com/nodejs/node/commit/c4193ba8ae)] - **crypto**: fix encrypted private -> public import (Tobias Nießen) [#&#8203;37056](https://github.com/nodejs/node/pull/37056) - \[[`cb3b0ec4fc`](https://github.com/nodejs/node/commit/cb3b0ec4fc)] - **crypto**: generateKeyPair('ec') should not support NODE-ED\* and NODE-X\* (Filip Skokan) [#&#8203;37063](https://github.com/nodejs/node/pull/37063) - \[[`110063d694`](https://github.com/nodejs/node/commit/110063d694)] - **(SEMVER-MINOR)** **crypto**: add generatePrime/checkPrime (James M Snell) [#&#8203;36997](https://github.com/nodejs/node/pull/36997) - \[[`ab64d74791`](https://github.com/nodejs/node/commit/ab64d74791)] - **crypto**: throw error on invalid object in diffieHellman() (ZiJian Liu) [#&#8203;37016](https://github.com/nodejs/node/pull/37016) - \[[`53a0bdff47`](https://github.com/nodejs/node/commit/53a0bdff47)] - **(SEMVER-MINOR)** **crypto**: experimental (Ed/X)25519/(Ed/X)448 support (James M Snell) [#&#8203;36879](https://github.com/nodejs/node/pull/36879) - \[[`4551d14b8e`](https://github.com/nodejs/node/commit/4551d14b8e)] - **deps**: upgrade npm to 7.5.1 (Ruy Adorno) [#&#8203;37177](https://github.com/nodejs/node/pull/37177) - \[[`9d6fd4586f`](https://github.com/nodejs/node/commit/9d6fd4586f)] - **deps**: update openssl config (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067) - \[[`f74b376596`](https://github.com/nodejs/node/commit/f74b376596)] - ***Revert*** "**deps**: various quic patches from akamai/openssl" (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067) - \[[`6756130c4b`](https://github.com/nodejs/node/commit/6756130c4b)] - ***Revert*** "**deps**: re-enable OPENSSL_NO_QUIC guards" (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067) - \[[`52ce1d5f1a`](https://github.com/nodejs/node/commit/52ce1d5f1a)] - ***Revert*** "**deps**: update patch and docs for openssl update" (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067) - \[[`03460432af`](https://github.com/nodejs/node/commit/03460432af)] - **deps**: upgrade npm to 7.5.0 (Ruy Adorno) [#&#8203;37117](https://github.com/nodejs/node/pull/37117) - \[[`2c7ad38c75`](https://github.com/nodejs/node/commit/2c7ad38c75)] - **(SEMVER-MINOR)** **dgram**: support AbortSignal in createSocket (Nitzan Uziely) [#&#8203;37026](https://github.com/nodejs/node/pull/37026) - \[[`47bfde00fd`](https://github.com/nodejs/node/commit/47bfde00fd)] - **doc**: fix color contrast on \<kbd> elements (Antoine du Hamel) [#&#8203;37185](https://github.com/nodejs/node/pull/37185) - \[[`3c9077130d`](https://github.com/nodejs/node/commit/3c9077130d)] - **doc**: fix list format in Developer's Certificate of Origin (Akash Negi) [#&#8203;37138](https://github.com/nodejs/node/pull/37138) - \[[`8cecce3ff4`](https://github.com/nodejs/node/commit/8cecce3ff4)] - **doc**: fix markup and alphabetization in errors.md (Rich Trott) [#&#8203;37144](https://github.com/nodejs/node/pull/37144) - \[[`a7780815bf`](https://github.com/nodejs/node/commit/a7780815bf)] - **doc**: clarify ERR_INVALID_REPL_INPUT usage (Rich Trott) [#&#8203;37143](https://github.com/nodejs/node/pull/37143) - \[[`e7126503e0`](https://github.com/nodejs/node/commit/e7126503e0)] - **doc**: clarify repl exception conditions (Rich Trott) [#&#8203;37142](https://github.com/nodejs/node/pull/37142) - \[[`e55d3d0953`](https://github.com/nodejs/node/commit/e55d3d0953)] - **doc**: add example for test structure (Turner Jabbour) [#&#8203;35046](https://github.com/nodejs/node/pull/35046) - \[[`9b9a1801ba`](https://github.com/nodejs/node/commit/9b9a1801ba)] - **doc**: remove TOC summary for pages with no TOC (Rich Trott) [#&#8203;37043](https://github.com/nodejs/node/pull/37043) - \[[`ae42658be9`](https://github.com/nodejs/node/commit/ae42658be9)] - **doc**: add missing deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147) - \[[`b79b82de8e`](https://github.com/nodejs/node/commit/b79b82de8e)] - **doc**: update Buffer encoding option count (Dave Cardwell) [#&#8203;37102](https://github.com/nodejs/node/pull/37102) - \[[`ddee21b587`](https://github.com/nodejs/node/commit/ddee21b587)] - **doc**: update BUILDING.md previous versions links (Richard Lau) [#&#8203;37082](https://github.com/nodejs/node/pull/37082) - \[[`1710016053`](https://github.com/nodejs/node/commit/1710016053)] - **doc**: mention adding Fixes to collaborator onboarding PR (Joyee Cheung) [#&#8203;37097](https://github.com/nodejs/node/pull/37097) - \[[`b7c3f99f7e`](https://github.com/nodejs/node/commit/b7c3f99f7e)] - **doc**: add Zijian Liu to collaborators (ZiJian Liu) [#&#8203;37075](https://github.com/nodejs/node/pull/37075) - \[[`7ddfa81612`](https://github.com/nodejs/node/commit/7ddfa81612)] - **doc**: add tooltip for light/dark mode toggle (Rich Trott) [#&#8203;37044](https://github.com/nodejs/node/pull/37044) - \[[`c79688ffe3`](https://github.com/nodejs/node/commit/c79688ffe3)] - **doc**: improve AsyncLocalStorage introduction (Romuald Brillout) [#&#8203;36946](https://github.com/nodejs/node/pull/36946) - \[[`a7b6464097`](https://github.com/nodejs/node/commit/a7b6464097)] - **doc**: `EventTarget` and `Event` are available to user code since v15.0.0 (ExE Boss) [#&#8203;37059](https://github.com/nodejs/node/pull/37059) - \[[`3722c15a75`](https://github.com/nodejs/node/commit/3722c15a75)] - **doc**: add missing comma in tty (Matthew Mario Di Pasquale) [#&#8203;37039](https://github.com/nodejs/node/pull/37039) - \[[`2cfe7954fc`](https://github.com/nodejs/node/commit/2cfe7954fc)] - **doc**: list Unsupported Directory Import resolve err (Guy Bedford) [#&#8203;37032](https://github.com/nodejs/node/pull/37032) - \[[`fef6ac77e5`](https://github.com/nodejs/node/commit/fef6ac77e5)] - **doc**: add missing ARIA label for button (Rich Trott) [#&#8203;37031](https://github.com/nodejs/node/pull/37031) - \[[`634bedcd6f`](https://github.com/nodejs/node/commit/634bedcd6f)] - **doc,test**: fix prime generation description (Tobias Nießen) [#&#8203;37085](https://github.com/nodejs/node/pull/37085) - \[[`181719d4c4`](https://github.com/nodejs/node/commit/181719d4c4)] - **esm**: update to correct deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147) - \[[`02f1d2fda4`](https://github.com/nodejs/node/commit/02f1d2fda4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918) - \[[`69402522fd`](https://github.com/nodejs/node/commit/69402522fd)] - **fs**: read full size if known in promises.readFile (Anna Henningsen) [#&#8203;37127](https://github.com/nodejs/node/pull/37127) - \[[`ad12fefcb0`](https://github.com/nodejs/node/commit/ad12fefcb0)] - **fs**: only use Buffer.concat in promises.readFile when necessary (Anna Henningsen) [#&#8203;37127](https://github.com/nodejs/node/pull/37127) - \[[`6f54a14cda`](https://github.com/nodejs/node/commit/6f54a14cda)] - **fs**: add validatePosition and use in read and readSync (Darshan Sen) [#&#8203;37051](https://github.com/nodejs/node/pull/37051) - \[[`175f6f0be3`](https://github.com/nodejs/node/commit/175f6f0be3)] - **fs**: use throwIfNoEntry option on statSync calls (Antoine du Hamel) [#&#8203;36975](https://github.com/nodejs/node/pull/36975) - \[[`97fc7d8396`](https://github.com/nodejs/node/commit/97fc7d8396)] - **fs**: refactor to remove redundant validation (Darshan Sen) [#&#8203;36984](https://github.com/nodejs/node/pull/36984) - \[[`0129a79d0a`](https://github.com/nodejs/node/commit/0129a79d0a)] - **fs**: add explicit note about undefined path when recursive (Sebastian Silbermann) [#&#8203;37010](https://github.com/nodejs/node/pull/37010) - \[[`7196ac19c1`](https://github.com/nodejs/node/commit/7196ac19c1)] - **http**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37124](https://github.com/nodejs/node/pull/37124) - \[[`ed58065d1f`](https://github.com/nodejs/node/commit/ed58065d1f)] - **lib**: add `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005) - \[[`67b58f68c9`](https://github.com/nodejs/node/commit/67b58f68c9)] - **lib**: refactor to use validateObject (ZiJian Liu) [#&#8203;37028](https://github.com/nodejs/node/pull/37028) - \[[`5227c5e6f5`](https://github.com/nodejs/node/commit/5227c5e6f5)] - **lib**: refactor to use validateFunction (ZiJian Liu) [#&#8203;37045](https://github.com/nodejs/node/pull/37045) - \[[`34adf7f74b`](https://github.com/nodejs/node/commit/34adf7f74b)] - **lib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37029](https://github.com/nodejs/node/pull/37029) - \[[`4a1fc42178`](https://github.com/nodejs/node/commit/4a1fc42178)] - **lib**: refactor to use optional chaining in internal/options.js (raisinten) [#&#8203;36939](https://github.com/nodejs/node/pull/36939) - \[[`d76400a264`](https://github.com/nodejs/node/commit/d76400a264)] - **lib**: refactor to use validateString (ZiJian Liu) [#&#8203;37006](https://github.com/nodejs/node/pull/37006) - \[[`a29da64b46`](https://github.com/nodejs/node/commit/a29da64b46)] - **lib**: refactor to use validateNumber (ZiJian Liu) [#&#8203;36993](https://github.com/nodejs/node/pull/36993) - \[[`56377d6cee`](https://github.com/nodejs/node/commit/56377d6cee)] - **lib**: support returning Safe collections from C++ (ExE Boss) [#&#8203;36989](https://github.com/nodejs/node/pull/36989) - \[[`c4cab1f408`](https://github.com/nodejs/node/commit/c4cab1f408)] - **lib**: refactor to use validateBoolean (ZiJian Liu) [#&#8203;36983](https://github.com/nodejs/node/pull/36983) - \[[`11dd2672cd`](https://github.com/nodejs/node/commit/11dd2672cd)] - **quic**: remove quic (James M Snell) [#&#8203;37067](https://github.com/nodejs/node/pull/37067) - \[[`b533485f32`](https://github.com/nodejs/node/commit/b533485f32)] - **quic**: remove duplicate checks (ZiJian Liu) [#&#8203;37017](https://github.com/nodejs/node/pull/37017) - \[[`1714998e2c`](https://github.com/nodejs/node/commit/1714998e2c)] - **readline**: replace \_questionCancel with a symbol (Colin Ihrig) [#&#8203;37094](https://github.com/nodejs/node/pull/37094) - \[[`3d64d2b5ef`](https://github.com/nodejs/node/commit/3d64d2b5ef)] - **readline**: check for null input in question() (Colin Ihrig) [#&#8203;37089](https://github.com/nodejs/node/pull/37089) - \[[`75124298d5`](https://github.com/nodejs/node/commit/75124298d5)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662) - \[[`4e757eab96`](https://github.com/nodejs/node/commit/4e757eab96)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676) - \[[`a26dfb323b`](https://github.com/nodejs/node/commit/a26dfb323b)] - **src**: expose BaseObject::kInternalFieldCount in post-mortem metadata (Joyee Cheung) [#&#8203;37111](https://github.com/nodejs/node/pull/37111) - \[[`9c831c0d8f`](https://github.com/nodejs/node/commit/9c831c0d8f)] - **src**: fix dead code in RandomPrimeTraits (Tobias Nießen) [#&#8203;37083](https://github.com/nodejs/node/pull/37083) - \[[`81e9acf242`](https://github.com/nodejs/node/commit/81e9acf242)] - **src**: rename crypto_ecdh.(h|cc) to crypto_ec.(h|cc) (Tobias Nießen) [#&#8203;37048](https://github.com/nodejs/node/pull/37048) - \[[`1f819ec47d`](https://github.com/nodejs/node/commit/1f819ec47d)] - **test**: add tests for `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005) - \[[`db38cf27c2`](https://github.com/nodejs/node/commit/db38cf27c2)] - **test**: increase inspect coverage (Emil Sivervik) [#&#8203;36755](https://github.com/nodejs/node/pull/36755) - \[[`10da5c1104`](https://github.com/nodejs/node/commit/10da5c1104)] - **test**: skip tests consistently in parallel.status (Rich Trott) [#&#8203;37035](https://github.com/nodejs/node/pull/37035) - \[[`da07eb654e`](https://github.com/nodejs/node/commit/da07eb654e)] - **test**: increase read file abort coverage (Moshe vilner) [#&#8203;36716](https://github.com/nodejs/node/pull/36716) - \[[`55407b826f`](https://github.com/nodejs/node/commit/55407b826f)] - **test**: update to improve terminology (Michael Dawson) [#&#8203;37011](https://github.com/nodejs/node/pull/37011) - \[[`ef2b25088d`](https://github.com/nodejs/node/commit/ef2b25088d)] - **test**: increase coverage for assert/calltracker (ZiJian Liu) [#&#8203;36728](https://github.com/nodejs/node/pull/36728) - \[[`074641c2e9`](https://github.com/nodejs/node/commit/074641c2e9)] - **test**: improve assertion message for test-vm-memleak (Rich Trott) [#&#8203;37034](https://github.com/nodejs/node/pull/37034) - \[[`4086b230b8`](https://github.com/nodejs/node/commit/4086b230b8)] - **test**: increase fs promise coverage (Emil Sivervik) [#&#8203;36813](https://github.com/nodejs/node/pull/36813) - \[[`94204f7e46`](https://github.com/nodejs/node/commit/94204f7e46)] - **test**: process.nextTick for before exit (ttzztztz) [#&#8203;37012](https://github.com/nodejs/node/pull/37012) - \[[`2135618052`](https://github.com/nodejs/node/commit/2135618052)] - **test**: increase timeout on ASAN Action (Antoine du Hamel) [#&#8203;37007](https://github.com/nodejs/node/pull/37007) - \[[`de6dca12e8`](https://github.com/nodejs/node/commit/de6dca12e8)] - **test**: improve coverage of `SourceTextModule` getters (Juan José Arboleda) [#&#8203;37013](https://github.com/nodejs/node/pull/37013) - \[[`36cc8df358`](https://github.com/nodejs/node/commit/36cc8df358)] - **test**: log error in test-fs-realpath-pipe (Joyee Cheung) [#&#8203;36996](https://github.com/nodejs/node/pull/36996) - \[[`36930e4fe7`](https://github.com/nodejs/node/commit/36930e4fe7)] - **test**: test mode passed as an options object in mkdir/mkdirSync (Darshan Sen) [#&#8203;37008](https://github.com/nodejs/node/pull/37008) - \[[`9c69ca5e54`](https://github.com/nodejs/node/commit/9c69ca5e54)] - **test,doc,lib**: adjust object literal newlines for lint rule (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040) - \[[`fe9f4fdba5`](https://github.com/nodejs/node/commit/fe9f4fdba5)] - **tools**: remove commented code from stability.js (Colin Ihrig) [#&#8203;37092](https://github.com/nodejs/node/pull/37092) - \[[`d2d6121f3e`](https://github.com/nodejs/node/commit/d2d6121f3e)] - **tools**: enable object-curly-newline in ESLint rules (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040) - \[[`3187845980`](https://github.com/nodejs/node/commit/3187845980)] - **util**: add internal createDeferredPromise() (Colin Ihrig) [#&#8203;37095](https://github.com/nodejs/node/pull/37095) ### [`v15.7.0`](https://github.com/nodejs/node/releases/v15.7.0) [Compare Source](https://github.com/nodejs/node/compare/v15.6.0...v15.7.0) ##### Notable changes - **buffer**: - introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811) - add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952) - **doc**: - add [@&#8203;iansu](https://github.com/iansu) to collaborators (Ian Sutherland) [#&#8203;36951](https://github.com/nodejs/node/pull/36951) - add [@&#8203;RaisinTen](https://github.com/RaisinTen) to collaborators (Darshan Sen) [#&#8203;36998](https://github.com/nodejs/node/pull/36998) - add [@&#8203;miladfarca](https://github.com/miladfarca) to collaborators (Milad Fa) [#&#8203;36934](https://github.com/nodejs/node/pull/36934) - **fs**: - allow `position` parameter to be a `BigInt` in read and readSync (raisinten) [#&#8203;36190](https://github.com/nodejs/node/pull/36190) - **http**: - attach request as res.req (Ian Storm Taylor) [#&#8203;36505](https://github.com/nodejs/node/pull/36505) - expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960) ##### Commits - \[[`775b34b822`](https://github.com/nodejs/node/commit/775b34b822)] - **(SEMVER-MINOR)** **buffer**: introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811) - \[[`832cd015d5`](https://github.com/nodejs/node/commit/832cd015d5)] - **(SEMVER-MINOR)** **buffer**: add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952) - \[[`7ce7404f79`](https://github.com/nodejs/node/commit/7ce7404f79)] - **build**: fix compiling against openssl with no-psk (Caleb ツ Everett) [#&#8203;36881](https://github.com/nodejs/node/pull/36881) - \[[`b7d8e61ef1`](https://github.com/nodejs/node/commit/b7d8e61ef1)] - **crypto**: fix randomInt bias (Tobias Nießen) [#&#8203;36894](https://github.com/nodejs/node/pull/36894) - \[[`1149af6265`](https://github.com/nodejs/node/commit/1149af6265)] - **(SEMVER-MINOR)** **crypto**: add keyObject.asymmetricKeyDetails for asymmetric keys (Filip Skokan) [#&#8203;36188](https://github.com/nodejs/node/pull/36188) - \[[`0398167b35`](https://github.com/nodejs/node/commit/0398167b35)] - **crypto**: fix WebCrypto import of RSA-PSS keys (Tobias Nießen) [#&#8203;36877](https://github.com/nodejs/node/pull/36877) - \[[`e52e860172`](https://github.com/nodejs/node/commit/e52e860172)] - **deps**: upgrade npm to 7.4.3 (Ruy Adorno) [#&#8203;37018](https://github.com/nodejs/node/pull/37018) - \[[`ef3a5f6958`](https://github.com/nodejs/node/commit/ef3a5f6958)] - **deps**: update ICU to 68.2 (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980) - \[[`ca479b9e9d`](https://github.com/nodejs/node/commit/ca479b9e9d)] - **deps**: V8: cherry-pick [`fe191e8`](https://github.com/nodejs/node/commit/fe191e8d05cc) (Benjamin Coe) [#&#8203;36956](https://github.com/nodejs/node/pull/36956) - \[[`6f773fbe84`](https://github.com/nodejs/node/commit/6f773fbe84)] - **deps**: upgrade npm to 7.4.2 (Ruy Adorno) [#&#8203;36953](https://github.com/nodejs/node/pull/36953) - \[[`4b952d8d3e`](https://github.com/nodejs/node/commit/4b952d8d3e)] - **doc**: fix maintaining ICU guide (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980) - \[[`a2559b9044`](https://github.com/nodejs/node/commit/a2559b9044)] - **doc**: add [@&#8203;RaisinTen](https://github.com/RaisinTen) to collaborators (Darshan Sen) [#&#8203;36998](https://github.com/nodejs/node/pull/36998) - \[[`4d5273b156`](https://github.com/nodejs/node/commit/4d5273b156)] - **doc**: fix typo in http.server.requestTimout docs (alexbs) [#&#8203;36987](https://github.com/nodejs/node/pull/36987) - \[[`93fc295b75`](https://github.com/nodejs/node/commit/93fc295b75)] - **doc**: add performance notes for fs.readFile (James M Snell) [#&#8203;36880](https://github.com/nodejs/node/pull/36880) - \[[`7ea374b159`](https://github.com/nodejs/node/commit/7ea374b159)] - **doc**: clarify maxSockets option of http.Agent (Pooja D P) [#&#8203;36941](https://github.com/nodejs/node/pull/36941) - \[[`f3637d5328`](https://github.com/nodejs/node/commit/f3637d5328)] - **doc**: remove pull-requests.md preamble (Rich Trott) [#&#8203;36960](https://github.com/nodejs/node/pull/36960) - \[[`d2d9ad7477`](https://github.com/nodejs/node/commit/d2d9ad7477)] - **doc**: fix module.isPreloading documentation (Antoine du Hamel) [#&#8203;36944](https://github.com/nodejs/node/pull/36944) - \[[`48b6781151`](https://github.com/nodejs/node/commit/48b6781151)] - **doc**: fix crypto.generateKeySync aes allowed length list (Filip Skokan) [#&#8203;36928](https://github.com/nodejs/node/pull/36928) - \[[`120db2c169`](https://github.com/nodejs/node/commit/120db2c169)] - **doc**: fix grammar and link to QUIC in changelog (Dan Dascalescu) [#&#8203;36959](https://github.com/nodejs/node/pull/36959) - \[[`af0f0a0f65`](https://github.com/nodejs/node/commit/af0f0a0f65)] - **doc**: fix percentile range in perf_hooks.md (raisinten) [#&#8203;36938](https://github.com/nodejs/node/pull/36938) - \[[`8cf280d9ab`](https://github.com/nodejs/node/commit/8cf280d9ab)] - **doc**: improve perf_hooks docs (Juan José Arboleda) [#&#8203;36909](https://github.com/nodejs/node/pull/36909) - \[[`3ea37c2d67`](https://github.com/nodejs/node/commit/3ea37c2d67)] - **doc**: fix invalid HTML in doc template (Rich Trott) [#&#8203;36930](https://github.com/nodejs/node/pull/36930) - \[[`eaf378aa46`](https://github.com/nodejs/node/commit/eaf378aa46)] - **doc**: remove issue template duplication from contributing docs (Rich Trott) [#&#8203;36908](https://github.com/nodejs/node/pull/36908) - \[[`7a794417f3`](https://github.com/nodejs/node/commit/7a794417f3)] - **doc**: remove resolving-a-bug-report from contributing docs (Rich Trott) [#&#8203;36905](https://github.com/nodejs/node/pull/36905) - \[[`707b97307d`](https://github.com/nodejs/node/commit/707b97307d)] - **doc**: use ESM syntax for WASI example (Antoine du Hamel) [#&#8203;36848](https://github.com/nodejs/node/pull/36848) - \[[`5a9a07e7cd`](https://github.com/nodejs/node/commit/5a9a07e7cd)] - **doc**: add iansu to collaborators (Ian Sutherland) [#&#8203;36951](https://github.com/nodejs/node/pull/36951) - \[[`aa3bc74cd6`](https://github.com/nodejs/node/commit/aa3bc74cd6)] - **doc**: fixup typo in metadata entry (James M Snell) [#&#8203;36947](https://github.com/nodejs/node/pull/36947) - \[[`22e29ccfa3`](https://github.com/nodejs/node/commit/22e29ccfa3)] - **doc**: add alternative version links to the packages page (Filip Skokan) [#&#8203;36915](https://github.com/nodejs/node/pull/36915) - \[[`80c84a1136`](https://github.com/nodejs/node/commit/80c84a1136)] - **doc**: add miladfarca to collaborators (Milad Fa) [#&#8203;36934](https://github.com/nodejs/node/pull/36934) - \[[`e73b1072f3`](https://github.com/nodejs/node/commit/e73b1072f3)] - **doc**: update tls test to use better terminology (Michael Dawson) [#&#8203;36851](https://github.com/nodejs/node/pull/36851) - \[[`5cbf638c06`](https://github.com/nodejs/node/commit/5cbf638c06)] - **doc**: remove unnecessary contributing.md section (Rich Trott) [#&#8203;36891](https://github.com/nodejs/node/pull/36891) - \[[`f99b38fedd`](https://github.com/nodejs/node/commit/f99b38fedd)] - **doc**: wrap TOC in a \<details> tag (Mattia Pontonio) [#&#8203;36896](https://github.com/nodejs/node/pull/36896) - \[[`82eccddf1e`](https://github.com/nodejs/node/commit/82eccddf1e)] - **doc**: update fs.l/statSync API history for throwIfNoEntry (Andrew Casey) [#&#8203;36882](https://github.com/nodejs/node/pull/36882) - \[[`70cd43c32e`](https://github.com/nodejs/node/commit/70cd43c32e)] - **doc**: change "it's" to "its" where necessary (Tobias Nießen) [#&#8203;36913](https://github.com/nodejs/node/pull/36913) - \[[`02a8f52040`](https://github.com/nodejs/node/commit/02a8f52040)] - **doc**: fix indentation on http2 doc entry (Rich Trott) [#&#8203;36869](https://github.com/nodejs/node/pull/36869) - \[[`dc596d0607`](https://github.com/nodejs/node/commit/dc596d0607)] - **events**: remove error listener on signal abort (ZiJian Liu) [#&#8203;36969](https://github.com/nodejs/node/pull/36969) - \[[`c4cdf1d830`](https://github.com/nodejs/node/commit/c4cdf1d830)] - **(SEMVER-MINOR)** **fs**: allow `position` parameter to be a `BigInt` in read and readSync (raisinten) [#&#8203;36190](https://github.com/nodejs/node/pull/36190) - \[[`70ee7dce62`](https://github.com/nodejs/node/commit/70ee7dce62)] - **(SEMVER-MINOR)** **http**: attach request as res.req (Ian Storm Taylor) [#&#8203;36505](https://github.com/nodejs/node/pull/36505) - \[[`f07e1c9d03`](https://github.com/nodejs/node/commit/f07e1c9d03)] - **http**: abortIncoming only on socket close (Robert Nagy) [#&#8203;36821](https://github.com/nodejs/node/pull/36821) - \[[`aa7243e3d4`](https://github.com/nodejs/node/commit/aa7243e3d4)] - **http**: refactor ClientRequest destroy (Robert Nagy) [#&#8203;36863](https://github.com/nodejs/node/pull/36863) - \[[`80051abfcb`](https://github.com/nodejs/node/commit/80051abfcb)] - **http**: cleanup ClientRequest oncreate (Robert Nagy) [#&#8203;36862](https://github.com/nodejs/node/pull/36862) - \[[`f5b8e7b068`](https://github.com/nodejs/node/commit/f5b8e7b068)] - **http2**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36700](https://github.com/nodejs/node/pull/36700) - \[[`8aeba3cb92`](https://github.com/nodejs/node/commit/8aeba3cb92)] - **lib**: refactor to use validateArray (ZiJian Liu) [#&#8203;36982](https://github.com/nodejs/node/pull/36982) - \[[`743dd8f89d`](https://github.com/nodejs/node/commit/743dd8f89d)] - **lib**: remove non used getter in `lib/perf\_hooks.js` (Juan José Arboleda) [#&#8203;36907](https://github.com/nodejs/node/pull/36907) - \[[`f2ac4bb8e2`](https://github.com/nodejs/node/commit/f2ac4bb8e2)] - **lib**: expose primordials object (Antoine du Hamel) [#&#8203;36872](https://github.com/nodejs/node/pull/36872) - \[[`850d3578b6`](https://github.com/nodejs/node/commit/850d3578b6)] - **lib**: refactor `primordials.makeSafe` to use more primordials (ExE Boss) [#&#8203;36865](https://github.com/nodejs/node/pull/36865) - \[[`b86c48cc91`](https://github.com/nodejs/node/commit/b86c48cc91)] - **lib**: refactor source_map to use more primordials (Antoine du Hamel) [#&#8203;36733](https://github.com/nodejs/node/pull/36733) - \[[`1ef92f61fa`](https://github.com/nodejs/node/commit/1ef92f61fa)] - **lib**: refactor source_map to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36734](https://github.com/nodejs/node/pull/36734) - \[[`5290d63e7f`](https://github.com/nodejs/node/commit/5290d63e7f)] - **module**: simplify tryStatSync with throwIfNoEntry option (Antoine du Hamel) [#&#8203;36971](https://github.com/nodejs/node/pull/36971) - \[[`89a7941425`](https://github.com/nodejs/node/commit/89a7941425)] - **os**: performance improvement in vector allocation (Yash Ladha) [#&#8203;36748](https://github.com/nodejs/node/pull/36748) - \[[`3f75a60b51`](https://github.com/nodejs/node/commit/3f75a60b51)] - **perf_hooks**: throw ERR_INVALID_ARG_VALUE if histogram.percentile param is NaN (ZiJian Liu) [#&#8203;36937](https://github.com/nodejs/node/pull/36937) - \[[`9951daefbd`](https://github.com/nodejs/node/commit/9951daefbd)] - **repl**: refactor to avoid unsafe array iteration (raisinten) [#&#8203;36663](https://github.com/nodejs/node/pull/36663) - \[[`868d3b2ff6`](https://github.com/nodejs/node/commit/868d3b2ff6)] - **src**: use BaseObject::kInteralFieldCount in Blob (Joyee Cheung) [#&#8203;36991](https://github.com/nodejs/node/pull/36991) - \[[`a5ffdaee1c`](https://github.com/nodejs/node/commit/a5ffdaee1c)] - **src**: replace push_back with emplace_back in debug_utils (raisinten) [#&#8203;36897](https://github.com/nodejs/node/pull/36897) - \[[`d54998538e`](https://github.com/nodejs/node/commit/d54998538e)] - **src**: use BaseObject::kInternalFieldCount in X509Certificate constructor (Joyee Cheung) [#&#8203;36892](https://github.com/nodejs/node/pull/36892) - \[[`7acea78493`](https://github.com/nodejs/node/commit/7acea78493)] - **test**: mark flaky tests on IBM i (Richard Lau) [#&#8203;36986](https://github.com/nodejs/node/pull/36986) - \[[`e69c4a941d`](https://github.com/nodejs/node/commit/e69c4a941d)] - **(SEMVER-MINOR)** **test**: add wpt tests for Blob (Michaël Zasso) [#&#8203;36811](https://github.com/nodejs/node/pull/36811) - \[[`2f1f1dadaa`](https://github.com/nodejs/node/commit/2f1f1dadaa)] - **test**: increase buffer list coverage (Emil Sivervik) [#&#8203;36688](https://github.com/nodejs/node/pull/36688) - \[[`8d49ce9d75`](https://github.com/nodejs/node/commit/8d49ce9d75)] - **test**: fix warning in test_environment.cc (raisinten) [#&#8203;36846](https://github.com/nodejs/node/pull/36846) - \[[`98369aaf7b`](https://github.com/nodejs/node/commit/98369aaf7b)] - **test**: remove unused ecdhPeerKey (Daniel Bevenius) [#&#8203;36942](https://github.com/nodejs/node/pull/36942) - \[[`ba87be0b0e`](https://github.com/nodejs/node/commit/ba87be0b0e)] - **test**: improve coverage for `Module` getters (Juan José Arboleda) [#&#8203;36950](https://github.com/nodejs/node/pull/36950) - \[[`c7dd9c8c69`](https://github.com/nodejs/node/commit/c7dd9c8c69)] - **test**: skip internet for test-npm-install (Ruy Adorno) [#&#8203;36933](https://github.com/nodejs/node/pull/36933) - \[[`3bbe9a5588`](https://github.com/nodejs/node/commit/3bbe9a5588)] - **test**: improve coverage on worker threads (Juan José Arboleda) [#&#8203;36910](https://github.com/nodejs/node/pull/36910) - \[[`f589bb2052`](https://github.com/nodejs/node/commit/f589bb2052)] - **test**: improve coverage at `lib/internal/vm/module.js` (Juan José Arboleda) [#&#8203;36898](https://github.com/nodejs/node/pull/36898) - \[[`8a8241529e`](https://github.com/nodejs/node/commit/8a8241529e)] - ***Revert*** "**test**: mark test-cluster-bind-privileged-port flaky on arm" (Rod Vagg) [#&#8203;36884](https://github.com/nodejs/node/pull/36884) - \[[`99c15909ad`](https://github.com/nodejs/node/commit/99c15909ad)] - **test**: fixup flaky test-crypto-x509 on windows (James M Snell) [#&#8203;36966](https://github.com/nodejs/node/pull/36966) - \[[`c2ec15aff6`](https://github.com/nodejs/node/commit/c2ec15aff6)] - **test**: check mustCall errors in test-fs-read-type (Tobias Nießen) [#&#8203;36914](https://github.com/nodejs/node/pull/36914) - \[[`30b2aac98a`](https://github.com/nodejs/node/commit/30b2aac98a)] - **test**: fix variable name for non-RSA keys (Tobias Nießen) [#&#8203;36912](https://github.com/nodejs/node/pull/36912) - \[[`fada6b0087`](https://github.com/nodejs/node/commit/fada6b0087)] - **test,benchmark**: stop requiring URL and URLSearchParams (raisinten) [#&#8203;36927](https://github.com/nodejs/node/pull/36927) - \[[`864b97b24d`](https://github.com/nodejs/node/commit/864b97b24d)] - **tls**: use recently added matching SecureContext in default SNICallback (Mateusz Krawczuk) [#&#8203;36072](https://github.com/nodejs/node/pull/36072) - \[[`6ef54bb9ca`](https://github.com/nodejs/node/commit/6ef54bb9ca)] - **tools**: cleanup old ICU version-specific fixes (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980) - \[[`8e02b53b09`](https://github.com/nodejs/node/commit/8e02b53b09)] - **tools**: update ESLint to 7.18.0 (Colin Ihrig) [#&#8203;36955](https://github.com/nodejs/node/pull/36955) - \[[`8dc8adc782`](https://github.com/nodejs/node/commit/8dc8adc782)] - **tools**: add support for top-level await syntax in linter (Antoine du Hamel) [#&#8203;36911](https://github.com/nodejs/node/pull/36911) - \[[`17bdcd9d18`](https://github.com/nodejs/node/commit/17bdcd9d18)] - **tools,doc**: list the stability status of each API (Zijian Liu) [#&#8203;36223](https://github.com/nodejs/node/pull/36223) - \[[`889654d36c`](https://github.com/nodejs/node/commit/889654d36c)] - **url**: align url format behavior with browsers (ZiJian Liu) [#&#8203;36903](https://github.com/nodejs/node/pull/36903) - \[[`64fed319ef`](https://github.com/nodejs/node/commit/64fed319ef)] - **(SEMVER-MINOR)** **url**: expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960) - \[[`f2704170a3`](https://github.com/nodejs/node/commit/f2704170a3)] - **util**: prefer `Reflect.ownKeys(…)` (ExE Boss) [#&#8203;36740](https://github.com/nodejs/node/pull/36740) - \[[`0d719476e0`](https://github.com/nodejs/node/commit/0d719476e0)] - **vm**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36752](https://github.com/nodejs/node/pull/36752) - \[[`bf695ebdb1`](https://github.com/nodejs/node/commit/bf695ebdb1)] - **worker**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36735](https://github.com/nodejs/node/pull/36735) - \[[`403b595ef5`](https://github.com/nodejs/node/commit/403b595ef5)] - **zlib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36722](https://github.com/nodejs/node/pull/36722) ### [`v15.6.0`](https://github.com/nodejs/node/releases/v15.6.0) [Compare Source](https://github.com/nodejs/node/compare/v15.5.1...v15.6.0) ##### Notable Changes - **child_process**: - add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412) - support AbortSignal in fork (Benjamin Gruenbaum) [#&#8203;36603](https://github.com/nodejs/node/pull/36603) - **crypto**: - implement basic secure heap support (James M Snell) [#&#8203;36779](https://github.com/nodejs/node/pull/36779) - fixup bug in keygen error handling (James M Snell) [#&#8203;36779](https://github.com/nodejs/node/pull/36779) - introduce X509Certificate API (James M Snell) [#&#8203;36804](https://github.com/nodejs/node/pull/36804) - implement randomuuid (James M Snell) [#&#8203;36729](https://github.com/nodejs/node/pull/36729) - **doc**: - update release key for Danielle Adams (Danielle Adams) [#&#8203;36793](https://github.com/nodejs/node/pull/36793) - add dnlup to collaborators (Daniele Belardi) [#&#8203;36849](https://github.com/nodejs/node/pull/36849) - add panva to collaborators (Filip Skokan) [#&#8203;36802](https://github.com/nodejs/node/pull/36802) - add yashLadha to collaborator (Yash Ladha) [#&#8203;36666](https://github.com/nodejs/node/pull/36666) - **http**: - set lifo as the default scheduling strategy in Agent (Matteo Collina) [#&#8203;36685](https://github.com/nodejs/node/pull/36685) - **net**: - support abortSignal in server.listen (Nitzan Uziely) [#&#8203;36623](https://github.com/nodejs/node/pull/36623) - **process**: - add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291) - **v8**: - fix native `serdes` constructors (ExE Boss) [#&#8203;36549](https://github.com/nodejs/node/pull/36549) ##### Commits - \[[`3ca7a786c5`](https://github.com/nodejs/node/commit/3ca7a786c5)] - **benchmark**: fix http2 benchmarks (Rich Trott) [#&#8203;36871](https://github.com/nodejs/node/pull/36871) - \[[`4601886d7c`](https://github.com/nodejs/node/commit/4601886d7c)] - **benchmark**: fix http/headers.js with test-double (Rich Trott) [#&#8203;36794](https://github.com/nodejs/node/pull/36794) - \[[`7aedda9dcd`](https://github.com/nodejs/node/commit/7aedda9dcd)] - **benchmark**: add simple https benchmark (Andrey Pechkurov) [#&#8203;36612](https://github.com/nodejs/node/pull/36612) - \[[`822ac48272`](https://github.com/nodejs/node/commit/822ac48272)] - **buffer**: make FastBuffer safe to construct (Antoine du Hamel) [#&#8203;36587](https://github.com/nodejs/node/pull/36587) - \[[`21f329532f`](https://github.com/nodejs/node/commit/21f329532f)] - **build**: refactor Makefile (raisinten) [#&#8203;36759](https://github.com/nodejs/node/pull/36759) - \[[`857b98eed9`](https://github.com/nodejs/node/commit/857b98eed9)] - **build**: fix unknown warning option (raisinten) [#&#8203;36629](https://github.com/nodejs/node/pull/36629) - \[[`ffaa8c1735`](https://github.com/nodejs/node/commit/ffaa8c1735)] - **build**: do not "exit" a script meant to be "source"d (François-Denis Gonthier) [#&#8203;35520](https://github.com/nodejs/node/pull/35520) - \[[`9bc2cec848`](https://github.com/nodejs/node/commit/9bc2cec848)] - **(SEMVER-MINOR)** **child_process**: add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412) - \[[`b98cc51be2`](https://github.com/nodejs/node/commit/b98cc51be2)] - **child_process**: reduce abort handler code duplication (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`78d4d91e54`](https://github.com/nodejs/node/commit/78d4d91e54)] - **child_process**: treat already-aborted controller as aborting (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`a8a427f646`](https://github.com/nodejs/node/commit/a8a427f646)] - **(SEMVER-MINOR)** **child_process**: support AbortSignal in fork (Benjamin Gruenbaum) [#&#8203;36603](https://github.com/nodejs/node/pull/36603) - \[[`7134d49e56`](https://github.com/nodejs/node/commit/7134d49e56)] - **child_process**: clean event listener correctly (Benjamin Gruenbaum) [#&#8203;36424](https://github.com/nodejs/node/pull/36424) - \[[`54bd4ab855`](https://github.com/nodejs/node/commit/54bd4ab855)] - **cluster**: fix edge cases that throw ERR_INTERNAL_ASSERTION (Ouyang Yadong) [#&#8203;36764](https://github.com/nodejs/node/pull/36764) - \[[`0c11a17d82`](https://github.com/nodejs/node/commit/0c11a17d82)] - **console**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36753](https://github.com/nodejs/node/pull/36753) - \[[`53cf996270`](https://github.com/nodejs/node/commit/53cf996270)] - **(SEMVER-MINOR)** **crypto**: implement basic secure heap support (James M Snell) [#&#8203;36779](https://github.com/nodejs/node/pull/36779) - \[[`42aca13953`](https://github.com/nodejs/node/commit/42aca13953)] - **(SEMVER-MINOR)** **crypto**: fixup bug in keygen error handling (James M Snell) [#&#8203;36779](https://github.com/nodejs/node/pull/36779) - \[[`c4ad50e0ff`](https://github.com/nodejs/node/commit/c4ad50e0ff)] - **(SEMVER-MINOR)** **crypto**: introduce X509Certificate API (James M Snell) [#&#8203;36804](https://github.com/nodejs/node/pull/36804) - \[[`4e4deca90d`](https://github.com/nodejs/node/commit/4e4deca90d)] - **(SEMVER-MINOR)** **crypto**: implement randomuuid (James M Snell) [#&#8203;36729](https://github.com/nodejs/node/pull/36729) - \[[`1c9ec2529e`](https://github.com/nodejs/node/commit/1c9ec2529e)] - **deps**: upgrade npm to 7.4.0 (Ruy Adorno) [#&#8203;36829](https://github.com/nodejs/node/pull/36829) - \[[`ff5bd04900`](https://github.com/nodejs/node/commit/ff5bd04900)] - **deps**: update nghttp2 to 1.42.0 (Michaël Zasso) [#&#8203;36842](https://github.com/nodejs/node/pull/36842) - \[[`578fa0fedf`](https://github.com/nodejs/node/commit/578fa0fedf)] - **deps**: V8: cherry-pick [`dfcdf78`](https://github.com/nodejs/node/commit/dfcdf7837e23) (Benjamin Coe) [#&#8203;36573](https://github.com/nodejs/node/pull/36573) - \[[`05f34c6963`](https://github.com/nodejs/node/commit/05f34c6963)] - **doc**: define "browser", "production", "development" (Guy Bedford) [#&#8203;36856](https://github.com/nodejs/node/pull/36856) - \[[`e8bb1f7350`](https://github.com/nodejs/node/commit/e8bb1f7350)] - **doc**: clarify event.isTrusted text (Rich Trott) [#&#8203;36827](https://github.com/nodejs/node/pull/36827) - \[[`153be6c80e`](https://github.com/nodejs/node/commit/153be6c80e)] - **doc**: fix module syncBuiltinESMExports example (Bruce A. MacNaughton) [#&#8203;34284](https://github.com/nodejs/node/pull/34284) - \[[`3b64b38142`](https://github.com/nodejs/node/commit/3b64b38142)] - **doc**: os.uptime() temporary bug notice (Nicholas Schamberg) [#&#8203;36503](https://github.com/nodejs/node/pull/36503) - \[[`da49624a46`](https://github.com/nodejs/node/commit/da49624a46)] - **doc**: update release key for Danielle Adams (Danielle Adams) [#&#8203;36793](https://github.com/nodejs/node/pull/36793) - \[[`2d8423da3c`](https://github.com/nodejs/node/commit/2d8423da3c)] - **doc**: clarify child_process.exec inherits cwd (ugultopu) [#&#8203;36809](https://github.com/nodejs/node/pull/36809) - \[[`1a4d34ebd0`](https://github.com/nodejs/node/commit/1a4d34ebd0)] - **doc**: clarify descriptions of \_writev chunks argument (James M Snell) [#&#8203;36822](https://github.com/nodejs/node/pull/36822) - \[[`7c7180a6f7`](https://github.com/nodejs/node/commit/7c7180a6f7)] - **doc**: document buffer's "Uint" aliases clearly (Michaël Zasso) [#&#8203;36796](https://github.com/nodejs/node/pull/36796) - \[[`ff6edbc6b2`](https://github.com/nodejs/node/commit/ff6edbc6b2)] - **doc**: add dnlup to collaborators (Daniele Belardi) [#&#8203;36849](https://github.com/nodejs/node/pull/36849) - \[[`835bdf0e50`](https://github.com/nodejs/node/commit/835bdf0e50)] - **doc**: improve crypto.randomUUID() text (Rich Trott) [#&#8203;36830](https://github.com/nodejs/node/pull/36830) - \[[`d4bcb3689d`](https://github.com/nodejs/node/commit/d4bcb3689d)] - **doc**: clarify subprocess.stdout/in/err/io properties (James M Snell) [#&#8203;36784](https://github.com/nodejs/node/pull/36784) - \[[`a956fb3fdd`](https://github.com/nodejs/node/commit/a956fb3fdd)] - **doc**: add dark mode (Ajay Poshak) [#&#8203;36313](https://github.com/nodejs/node/pull/36313) - \[[`757b9664cd`](https://github.com/nodejs/node/commit/757b9664cd)] - **doc**: revise method text in async_hooks.md (Rich Trott) [#&#8203;36736](https://github.com/nodejs/node/pull/36736) - \[[`b4091ea59b`](https://github.com/nodejs/node/commit/b4091ea59b)] - **doc**: clarify when messageerror is emitted (James M Snell) [#&#8203;36780](https://github.com/nodejs/node/pull/36780) - \[[`61b039365c`](https://github.com/nodejs/node/commit/61b039365c)] - **doc**: avoid memory leak warning in async_hooks example (James M Snell) [#&#8203;36783](https://github.com/nodejs/node/pull/36783) - \[[`a7bb4da55e`](https://github.com/nodejs/node/commit/a7bb4da55e)] - **doc**: clarify that --require only supports cjs (James M Snell) [#&#8203;36806](https://github.com/nodejs/node/pull/36806) - \[[`c6eb2b4fec`](https://github.com/nodejs/node/commit/c6eb2b4fec)] - **doc**: clarify Buffer.from when using ArrayBuffer (James M Snell) [#&#8203;36785](https://github.com/nodejs/node/pull/36785) - \[[`ad1d8fba9f`](https://github.com/nodejs/node/commit/ad1d8fba9f)] - **doc**: fix broken link for ChildProcess (James M Snell) [#&#8203;36788](https://github.com/nodejs/node/pull/36788) - \[[`ef628891f7`](https://github.com/nodejs/node/commit/ef628891f7)] - **doc**: revise exit() and run() text in async_hooks.md (Rich Trott) [#&#8203;36738](https://github.com/nodejs/node/pull/36738) - \[[`ff39464559`](https://github.com/nodejs/node/commit/ff39464559)] - **doc**: add OpenSSL CVE fix to notable changes in v15.5.0 (Beth Griggs) [#&#8203;36798](https://github.com/nodejs/node/pull/36798) - \[[`6db465a99f`](https://github.com/nodejs/node/commit/6db465a99f)] - **doc**: clarify that N-API addons are context-aware (Alba Mendez) [#&#8203;36640](https://github.com/nodejs/node/pull/36640) - \[[`fad07d5439`](https://github.com/nodejs/node/commit/fad07d5439)] - **doc**: fix typo in esm documentation (Mohamed Kamagate) [#&#8203;36800](https://github.com/nodejs/node/pull/36800) - \[[`67dd48ed05`](https://github.com/nodejs/node/commit/67dd48ed05)] - **doc**: add panva to collaborators (Filip Skokan) [#&#8203;36802](https://github.com/nodejs/node/pull/36802) - \[[`b2c1aeb694`](https://github.com/nodejs/node/commit/b2c1aeb694)] - **doc**: revise process.memoryUsage() text (Rich Trott) [#&#8203;36757](https://github.com/nodejs/node/pull/36757) - \[[`8f672ebbd6`](https://github.com/nodejs/node/commit/8f672ebbd6)] - **doc**: add YAML metadata for process.memoryUsage.rss (Gerhard Stoebich) [#&#8203;36781](https://github.com/nodejs/node/pull/36781) - \[[`fa54f012b8`](https://github.com/nodejs/node/commit/fa54f012b8)] - **doc**: reduce abbreviations in async_hooks.md (Rich Trott) [#&#8203;36737](https://github.com/nodejs/node/pull/36737) - \[[`56c00d7b2f`](https://github.com/nodejs/node/commit/56c00d7b2f)] - **doc**: simplify pull request template (Rich Trott) [#&#8203;36739](https://github.com/nodejs/node/pull/36739) - \[[`214dbac8ff`](https://github.com/nodejs/node/commit/214dbac8ff)] - **doc**: clarify undocumented stream properties (James M Snell) [#&#8203;36715](https://github.com/nodejs/node/pull/36715) - \[[`242ce19346`](https://github.com/nodejs/node/commit/242ce19346)] - **doc**: document common warning types (James M Snell) [#&#8203;36713](https://github.com/nodejs/node/pull/36713) - \[[`d3dc124575`](https://github.com/nodejs/node/commit/d3dc124575)] - **doc**: update emitClose default for fs streams (Kevin Locke) [#&#8203;36653](https://github.com/nodejs/node/pull/36653) - \[[`181bd0510f`](https://github.com/nodejs/node/commit/181bd0510f)] - **doc**: improve ALS.enterWith and exit descriptions (Andrey Pechkurov) [#&#8203;36705](https://github.com/nodejs/node/pull/36705) - \[[`edf8c6de5a`](https://github.com/nodejs/node/commit/edf8c6de5a)] - **doc**: add note about uncloneable objects (James M Snell) [#&#8203;36534](https://github.com/nodejs/node/pull/36534) - \[[`651e7d27b7`](https://github.com/nodejs/node/commit/651e7d27b7)] - **doc**: document http.IncomingMessage behaviour change (Dr) [#&#8203;36641](https://github.com/nodejs/node/pull/36641) - \[[`72b0ab0739`](https://github.com/nodejs/node/commit/72b0ab0739)] - **doc**: add yashLadha to collaborator (Yash Ladha) [#&#8203;36666](https://github.com/nodejs/node/pull/36666) - \[[`8a0cdb3b4e`](https://github.com/nodejs/node/commit/8a0cdb3b4e)] - **doc**: alphabetize http response properties (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631) - \[[`ff4674b033`](https://github.com/nodejs/node/commit/ff4674b033)] - **doc**: correct callback parameter type for createPushResponse() (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631) - \[[`f623d5d377`](https://github.com/nodejs/node/commit/f623d5d377)] - **doc**: use \_code name\_ rather than \_codename\_ (Rich Trott) [#&#8203;36611](https://github.com/nodejs/node/pull/36611) - \[[`1ed517c176`](https://github.com/nodejs/node/commit/1ed517c176)] - **doc**: document return value of https.request (Michael Chen) [#&#8203;36370](https://github.com/nodejs/node/pull/36370) - \[[`5645b21e23`](https://github.com/nodejs/node/commit/5645b21e23)] - **doc**: document "http: lazy create IncomingMessage.headers" (ExE Boss) [#&#8203;36601](https://github.com/nodejs/node/pull/36601) - \[[`3ee4cfc7d7`](https://github.com/nodejs/node/commit/3ee4cfc7d7)] - **doc**: fix bugs in \_construct() example (Maksym Baranovskyi) [#&#8203;36509](https://github.com/nodejs/node/pull/36509) - \[[`93237c5999`](https://github.com/nodejs/node/commit/93237c5999)] - **doc**: remove replication of GitHub template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590) - \[[`538f226f6d`](https://github.com/nodejs/node/commit/538f226f6d)] - **doc**: remove "Related Issues" from pull request template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590) - \[[`dcc93d3dce`](https://github.com/nodejs/node/commit/dcc93d3dce)] - **doc**: expand openssl instructions (Michael Dawson) [#&#8203;36554](https://github.com/nodejs/node/pull/36554) - \[[`41e278bf61`](https://github.com/nodejs/node/commit/41e278bf61)] - **docs**: add references to punycode.md (Isaac Levy) [#&#8203;36761](https://github.com/nodejs/node/pull/36761) - \[[`9b9b6d5fc5`](https://github.com/nodejs/node/commit/9b9b6d5fc5)] - **domain**: make node resilient to Array prototype tempering (Antoine du Hamel) [#&#8203;36676](https://github.com/nodejs/node/pull/36676) - \[[`f0a9c53bec`](https://github.com/nodejs/node/commit/f0a9c53bec)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36651](https://github.com/nodejs/node/pull/36651) - \[[`c844d22b72`](https://github.com/nodejs/node/commit/c844d22b72)] - **errors**: eliminate all overhead for hidden calls (Momtchil Momtchev) [#&#8203;35644](https://github.com/nodejs/node/pull/35644) - \[[`3fa470a3c9`](https://github.com/nodejs/node/commit/3fa470a3c9)] - **events**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36763](https://github.com/nodejs/node/pull/36763) - \[[`82393aefff`](https://github.com/nodejs/node/commit/82393aefff)] - **events**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36304](https://github.com/nodejs/node/pull/36304) - \[[`e3a091d9f3`](https://github.com/nodejs/node/commit/e3a091d9f3)] - **fs**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36699](https://github.com/nodejs/node/pull/36699) - \[[`d5e1b82125`](https://github.com/nodejs/node/commit/d5e1b82125)] - **fs**: accept non-32-bit length in writeBuffer (raisinten) [#&#8203;36667](https://github.com/nodejs/node/pull/36667) - \[[`d858c9576a`](https://github.com/nodejs/node/commit/d858c9576a)] - **http**: remove dead code from internal/http.js (ZiJian Liu) [#&#8203;36630](https://github.com/nodejs/node/pull/36630) - \[[`7e3ad1be32`](https://github.com/nodejs/node/commit/7e3ad1be32)] - ***Revert*** "**http**: remove dead code from internal/http.js" (ZiJian Liu) [#&#8203;36890](https://github.com/nodejs/node/pull/36890) - \[[`a9a2dd32e3`](https://github.com/nodejs/node/commit/a9a2dd32e3)] - **http**: don't cork noop .end() (Robert Nagy) [#&#8203;36633](https://github.com/nodejs/node/pull/36633) - \[[`dfc962f67a`](https://github.com/nodejs/node/commit/dfc962f67a)] - **http**: add test case for req-res close ordering (Daniele Belardi) [#&#8203;36645](https://github.com/nodejs/node/pull/36645) - \[[`cc28d2f541`](https://github.com/nodejs/node/commit/cc28d2f541)] - **(SEMVER-MINOR)** **http**: set lifo as the default scheduling strategy in Agent (Matteo Collina) [#&#8203;36685](https://github.com/nodejs/node/pull/36685) - \[[`954a36947d`](https://github.com/nodejs/node/commit/954a36947d)] - **http**: make HEAD method to work with keep-alive (Joseph Hackman) [#&#8203;34231](https://github.com/nodejs/node/pull/34231) - \[[`9156f430b5`](https://github.com/nodejs/node/commit/9156f430b5)] - **http**: remove dead code from internal/http.js (ZiJian Liu) [#&#8203;36630](https://github.com/nodejs/node/pull/36630) - \[[`5e499c490e`](https://github.com/nodejs/node/commit/5e499c490e)] - **http**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36194](https://github.com/nodejs/node/pull/36194) - \[[`c784f15588`](https://github.com/nodejs/node/commit/c784f15588)] - ***Revert*** "**http**: use `autoDestroy: true` in incoming message" (Daniele Belardi) [#&#8203;36647](https://github.com/nodejs/node/pull/36647) - \[[`a38ad0709c`](https://github.com/nodejs/node/commit/a38ad0709c)] - **http2**: refactor to use primordials instead of \<string>.indexOf (Rohan Chougule) [#&#8203;36679](https://github.com/nodejs/node/pull/36679) - \[[`e85fbb778d`](https://github.com/nodejs/node/commit/e85fbb778d)] - **http2**: fix typos in core.js (Pranshu Jethmalani) [#&#8203;36719](https://github.com/nodejs/node/pull/36719) - \[[`a4d64f967a`](https://github.com/nodejs/node/commit/a4d64f967a)] - **https**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36195](https://github.com/nodejs/node/pull/36195) - \[[`1db3772c95`](https://github.com/nodejs/node/commit/1db3772c95)] - **lib**: simplify `primordials.uncurryThis` (ExE Boss) [#&#8203;36866](https://github.com/nodejs/node/pull/36866) - \[[`95219eac08`](https://github.com/nodejs/node/commit/95219eac08)] - **lib**: refactor to use mapping in cluster master (Yash Ladha) [#&#8203;36250](https://github.com/nodejs/node/pull/36250) - \[[`b764269437`](https://github.com/nodejs/node/commit/b764269437)] - **lib**: remove v8\_prof_polyfill from eslint ignore list (Antoine du Hamel) [#&#8203;36537](https://github.com/nodejs/node/pull/36537) - \[[`eb6b38639a`](https://github.com/nodejs/node/commit/eb6b38639a)] - **lib**: remove unused code (Brian White) [#&#8203;36632](https://github.com/nodejs/node/pull/36632) - \[[`7fe1b5ef5a`](https://github.com/nodejs/node/commit/7fe1b5ef5a)] - **lib**: refactor to use validateCallback (ZiJian Liu) [#&#8203;36609](https://github.com/nodejs/node/pull/36609) - \[[`bb4f8c8732`](https://github.com/nodejs/node/commit/bb4f8c8732)] - **lib**: use more primordials in shared validators (Pooja D P) [#&#8203;36552](https://github.com/nodejs/node/pull/36552) - \[[`181bad58d3`](https://github.com/nodejs/node/commit/181bad58d3)] - **lib**: add primordials.SafeArrayIterator (Antoine du Hamel) [#&#8203;36532](https://github.com/nodejs/node/pull/36532) - \[[`6e338dac3c`](https://github.com/nodejs/node/commit/6e338dac3c)] - **lib**: refactor to use more primordials in internal/encoding.js (raisinten) [#&#8203;36480](https://github.com/nodejs/node/pull/36480) - \[[`ec3e841f59`](https://github.com/nodejs/node/commit/ec3e841f59)] - **lib**: refactor to use primordials in internal/priority_queue.js (ZiJian Liu) [#&#8203;36560](https://github.com/nodejs/node/pull/36560) - \[[`8ac2016229`](https://github.com/nodejs/node/commit/8ac2016229)] - **lib**: add primordials.SafeStringIterator (Antoine du Hamel) [#&#8203;36526](https://github.com/nodejs/node/pull/36526) - \[[`56af1250fe`](https://github.com/nodejs/node/commit/56af1250fe)] - **lib**: make safe primordials safe to construct (Antoine du Hamel) [#&#8203;36428](https://github.com/nodejs/node/pull/36428) - \[[`d20235b6cb`](https://github.com/nodejs/node/commit/d20235b6cb)] - **lib**: fix diagnostics_channel hasSubscribers error (ZiJian Liu) [#&#8203;36599](https://github.com/nodejs/node/pull/36599) - \[[`63091f8440`](https://github.com/nodejs/node/commit/63091f8440)] - **lib**: refactor to use more primordials in internal/histogram.js (raisinten) [#&#8203;36455](https://github.com/nodejs/node/pull/36455) - \[[`eca2df0909`](https://github.com/nodejs/node/commit/eca2df0909)] - **meta**: notify slack when someone force pushes (Mary Marchini) [#&#8203;35131](https://github.com/nodejs/node/pull/35131) - \[[`01213c71b9`](https://github.com/nodejs/node/commit/01213c71b9)] - **module**: fix Windows folder exports deprecation warning (Guy Bedford) [#&#8203;36859](https://github.com/nodejs/node/pull/36859) - \[[`302be57be4`](https://github.com/nodejs/node/commit/302be57be4)] - **module**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36680](https://github.com/nodejs/node/pull/36680) - \[[`24246a29d7`](https://github.com/nodejs/node/commit/24246a29d7)] - **net**: throw ERR_OUT_OF_RANGE if blockList.addSubnet prefix is NaN (ZiJian Liu) [#&#8203;36732](https://github.com/nodejs/node/pull/36732) - \[[`02dbcc4317`](https://github.com/nodejs/node/commit/02dbcc4317)] - **(SEMVER-MINOR)** **net**: support abortSignal in server.listen (Nitzan Uziely) [#&#8203;36623](https://github.com/nodejs/node/pull/36623) - \[[`a258bc9b70`](https://github.com/nodejs/node/commit/a258bc9b70)] - **perf_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36723](https://github.com/nodejs/node/pull/36723) - \[[`94afc3e712`](https://github.com/nodejs/node/commit/94afc3e712)] - **process**: passing -1 to setuid/setgid should not abort (James M Snell) [#&#8203;36786](https://github.com/nodejs/node/pull/36786) - \[[`92af50327e`](https://github.com/nodejs/node/commit/92af50327e)] - **(SEMVER-MINOR)** **process**: add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291) - \[[`8b7336b072`](https://github.com/nodejs/node/commit/8b7336b072)] - **quic,timers**: refactor to use validateAbortSignal (ZiJian Liu) [#&#8203;36604](https://github.com/nodejs/node/pull/36604) - \[[`b17130a55a`](https://github.com/nodejs/node/commit/b17130a55a)] - **readline**: fix behaviour of Interface plugged to a non-terminal output (Antoine du Hamel) [#&#8203;36774](https://github.com/nodejs/node/pull/36774) - \[[`d70824f567`](https://github.com/nodejs/node/commit/d70824f567)] - **src**: fix typo in crypto_aes.cc (Ikko Ashimine) [#&#8203;36717](https://github.com/nodejs/node/pull/36717) - \[[`8b43388903`](https://github.com/nodejs/node/commit/8b43388903)] - **src**: reduce duplicated boilerplate with new env utility fn (James M Snell) [#&#8203;36536](https://github.com/nodejs/node/pull/36536) - \[[`a53997e6c0`](https://github.com/nodejs/node/commit/a53997e6c0)] - **src**: fix leading backslash bug in URL (raisinten) [#&#8203;36613](https://github.com/nodejs/node/pull/36613) - \[[`abae61e230`](https://github.com/nodejs/node/commit/abae61e230)] - **stream**: finished waits for 'close' on OutgoingMessage (Robert Nagy) [#&#8203;36648](https://github.com/nodejs/node/pull/36648) - \[[`4c819d65f9`](https://github.com/nodejs/node/commit/4c819d65f9)] - **stream**: fix .end() error propagation (Robert Nagy) [#&#8203;36817](https://github.com/nodejs/node/pull/36817) - \[[`cb0b53edb1`](https://github.com/nodejs/node/commit/cb0b53edb1)] - **stream**: lazy read ReadStream (Momtchil Momtchev) [#&#8203;36823](https://github.com/nodejs/node/pull/36823) - \[[`b996e3b4b5`](https://github.com/nodejs/node/commit/b996e3b4b5)] - **stream**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36684](https://github.com/nodejs/node/pull/36684) - \[[`190ddced46`](https://github.com/nodejs/node/commit/190ddced46)] - **stream**: only use legacy close listeners if not willEmitClose (Robert Nagy) [#&#8203;36649](https://github.com/nodejs/node/pull/36649) - \[[`1fc30a84ac`](https://github.com/nodejs/node/commit/1fc30a84ac)] - **stream,zlib**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36618](https://github.com/nodejs/node/pull/36618) - \[[`d2b9e7cb01`](https://github.com/nodejs/node/commit/d2b9e7cb01)] - **string_decoder**: throw ERR_STRING_TOO_LONG for UTF-8 (Michaël Zasso) [#&#8203;36661](https://github.com/nodejs/node/pull/36661) - \[[`abc2ff47c2`](https://github.com/nodejs/node/commit/abc2ff47c2)] - **test**: disable test-crypto-secure-heap with asan (James M Snell) [#&#8203;36900](https://github.com/nodejs/node/pull/36900) - \[[`17a52337c4`](https://github.com/nodejs/node/commit/17a52337c4)] - **test**: http complete response after socket double end (Dimitris Halatsis) [#&#8203;36633](https://github.com/nodejs/node/pull/36633) - \[[`cc37ff24dc`](https://github.com/nodejs/node/commit/cc37ff24dc)] - **test**: use faster variant for rss in test-crypto-dh-leak (Pooja D P) [#&#8203;36766](https://github.com/nodejs/node/pull/36766) - \[[`daad0ab1cc`](https://github.com/nodejs/node/commit/daad0ab1cc)] - **test**: use faster variant for rss in test-vm-memleak.js (Pooja D P) [#&#8203;36769](https://github.com/nodejs/node/pull/36769) - \[[`9d25d25cfd`](https://github.com/nodejs/node/commit/9d25d25cfd)] - **test**: mark test-cluster-bind-privileged-port flaky on arm (James M Snell) [#&#8203;36850](https://github.com/nodejs/node/pull/36850) - \[[`c64db20fdd`](https://github.com/nodejs/node/commit/c64db20fdd)] - **test**: use faster variant for rss test-memoryusage-emfile (Pooja D P) [#&#8203;36768](https://github.com/nodejs/node/pull/36768) - \[[`d48e00e5a3`](https://github.com/nodejs/node/commit/d48e00e5a3)] - **test**: fix test-memory-usage.js for IBMi (Rich Trott) [#&#8203;36758](https://github.com/nodejs/node/pull/36758) - \[[`9b7d2c2523`](https://github.com/nodejs/node/commit/9b7d2c2523)] - **test**: guard large string decoder allocation (Michaël Zasso) [#&#8203;36795](https://github.com/nodejs/node/pull/36795) - \[[`5bc130bd9e`](https://github.com/nodejs/node/commit/5bc130bd9e)] - **test**: increase coverage for events (ZiJian Liu) [#&#8203;36668](https://github.com/nodejs/node/pull/36668) - \[[`9f7fbcc64d`](https://github.com/nodejs/node/commit/9f7fbcc64d)] - **test**: add coverage for breakLength one-column array (Rich Trott) [#&#8203;36657](https://github.com/nodejs/node/pull/36657) - \[[`9eff709c23`](https://github.com/nodejs/node/commit/9eff709c23)] - **test**: update wpt interfaces (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659) - \[[`a7f743f5cc`](https://github.com/nodejs/node/commit/a7f743f5cc)] - **test**: update wpt resources (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659) - \[[`4acc2732f9`](https://github.com/nodejs/node/commit/4acc2732f9)] - **test**: update wpt encoding (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659) - \[[`986d5aca44`](https://github.com/nodejs/node/commit/986d5aca44)] - **test**: update wpt url (Daijiro Wachi) [#&#8203;36659](https://github.com/nodejs/node/pull/36659) - \[[`833e614682`](https://github.com/nodejs/node/commit/833e614682)] - **test**: increase coverage for diagnostics_channel (ZiJian Liu) [#&#8203;36602](https://github.com/nodejs/node/pull/36602) - \[[`f0dfe57bd1`](https://github.com/nodejs/node/commit/f0dfe57bd1)] - **test**: add already-aborted-controller test for spawn() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`d5d56ec3d4`](https://github.com/nodejs/node/commit/d5d56ec3d4)] - **test**: add test for reused AbortController with execfile() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`f81556563a`](https://github.com/nodejs/node/commit/f81556563a)] - **test**: increase coverage for internal/error_serdes.js (ZiJian Liu) [#&#8203;36628](https://github.com/nodejs/node/pull/36628) - \[[`34d1d791e5`](https://github.com/nodejs/node/commit/34d1d791e5)] - **test**: improve coverage for util.inspect() with classes (Rich Trott) [#&#8203;36625](https://github.com/nodejs/node/pull/36625) - \[[`1f3bc5ed73`](https://github.com/nodejs/node/commit/1f3bc5ed73)] - **test**: increase runInAsyncScope() coverage (Rich Trott) [#&#8203;36624](https://github.com/nodejs/node/pull/36624) - \[[`863bfc44d2`](https://github.com/nodejs/node/commit/863bfc44d2)] - **test**: redirect stderr EnvironmentWithNoESMLoader (Daniel Bevenius) [#&#8203;36548](https://github.com/nodejs/node/pull/36548) - \[[`8e8b16ff7e`](https://github.com/nodejs/node/commit/8e8b16ff7e)] - **timers**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36767](https://github.com/nodejs/node/pull/36767) - \[[`c23cca2de9`](https://github.com/nodejs/node/commit/c23cca2de9)] - **tls**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36772](https://github.com/nodejs/node/pull/36772) - \[[`37becfda8c`](https://github.com/nodejs/node/commit/37becfda8c)] - **tools**: update all lint-md rollup dependencies (Michaël Zasso) [#&#8203;36843](https://github.com/nodejs/node/pull/36843) - \[[`cfdbb79ccf`](https://github.com/nodejs/node/commit/cfdbb79ccf)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36844](https://github.com/nodejs/node/pull/36844) - \[[`1f2a198c32`](https://github.com/nodejs/node/commit/1f2a198c32)] - **tools**: fix md5 hash for ICU 68.1 src (Richard Lau) [#&#8203;36777](https://github.com/nodejs/node/pull/36777) - \[[`4e0995bc60`](https://github.com/nodejs/node/commit/4e0995bc60)] - **tools**: update ESLint to 7.17.0 (Colin Ihrig) [#&#8203;36726](https://github.com/nodejs/node/pull/36726) - \[[`8ad3455ae3`](https://github.com/nodejs/node/commit/8ad3455ae3)] - **tools**: revise install.py for minor improvements (Rich Trott) [#&#8203;36626](https://github.com/nodejs/node/pull/36626) - \[[`b367d5a61d`](https://github.com/nodejs/node/commit/b367d5a61d)] - **tools**: update gyp-next to v0.7.0 (Michaël Zasso) [#&#8203;36580](https://github.com/nodejs/node/pull/36580) - \[[`10f1c893c8`](https://github.com/nodejs/node/commit/10f1c893c8)] - **tools**: correct usage message for genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606) - \[[`37b39a2d6b`](https://github.com/nodejs/node/commit/37b39a2d6b)] - **tools**: call close() explicitly in genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606) - \[[`7664f3678c`](https://github.com/nodejs/node/commit/7664f3678c)] - **tools**: use `is None` consistently in Python (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606) - \[[`cb7f73c9d4`](https://github.com/nodejs/node/commit/cb7f73c9d4)] - **tools**: revise line in configure.py for clarity (Rich Trott) [#&#8203;36551](https://github.com/nodejs/node/pull/36551) - \[[`258aa50986`](https://github.com/nodejs/node/commit/258aa50986)] - **tty**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36771](https://github.com/nodejs/node/pull/36771) - \[[`5cb8b16452`](https://github.com/nodejs/node/commit/5cb8b16452)] - **url**: fix url.format with ipv6 hostname (ZiJian Liu) [#&#8203;36665](https://github.com/nodejs/node/pull/36665) - \[[`b1c6a44caf`](https://github.com/nodejs/node/commit/b1c6a44caf)] - **url**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36316](https://github.com/nodejs/node/pull/36316) - \[[`baa8064bd0`](https://github.com/nodejs/node/commit/baa8064bd0)] - **util**: refactor inspect.js to use more primodials (Rohan Chougule) [#&#8203;36730](https://github.com/nodejs/node/pull/36730) - \[[`bff201a66d`](https://github.com/nodejs/node/commit/bff201a66d)] - **util**: remove unreachable defensive coding (Rich Trott) [#&#8203;36744](https://github.com/nodejs/node/pull/36744) - \[[`64bf2f229e`](https://github.com/nodejs/node/commit/64bf2f229e)] - **util**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36265](https://github.com/nodejs/node/pull/36265) - \[[`2dd2ec3836`](https://github.com/nodejs/node/commit/2dd2ec3836)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36527](https://github.com/nodejs/node/pull/36527) - \[[`3170636a8e`](https://github.com/nodejs/node/commit/3170636a8e)] - **(SEMVER-MINOR)** **v8**: fix native `serdes` constructors (ExE Boss) [#&#8203;36549](https://github.com/nodejs/node/pull/36549) - \[[`d5a9799e76`](https://github.com/nodejs/node/commit/d5a9799e76)] - **wasi**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36724](https://github.com/nodejs/node/pull/36724) - \[[`b6f74b0b09`](https://github.com/nodejs/node/commit/b6f74b0b09)] - **zlib**: refactor to use primordial instead of \<string>.startsWith (Rohan Chougule) [#&#8203;36718](https://github.com/nodejs/node/pull/36718) ### [`v15.5.1`](https://github.com/nodejs/node/releases/v15.5.1) [Compare Source](https://github.com/nodejs/node/compare/v15.5.0...v15.5.1) This is a security release. ##### Notable changes Vulnerabilities fixed: - **CVE-2020-8265**: use-after-free in TLSWrap (High) - Affected Node.js versions are vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method does not return an error, this object is passed back to the caller as part of a StreamWriteResult structure. This may be exploited to corrupt memory leading to a Denial of Service or potentially other exploits. - **CVE-2020-8287**: HTTP Request Smuggling in nodejs (Low) - Affected versions of Node.js allow two copies of a header field in a http request. For example, two Transfer-Encoding header fields. In this case Node.js identifies the first header field and ignores the second. This can lead to HTTP Request Smuggling (https://cwe.mitre.org/data/definitions/444.html). ##### Commits - \[[`c5dbe831b7`](https://github.com/nodejs/node/commit/c5dbe831b7)] - **http**: add test for http transfer encoding smuggling (Matteo Collina) [nodejs-private/node-private#&#8203;228](https://github.com/nodejs-private/node-private/pull/228) - \[[`e0c9a2285c`](https://github.com/nodejs/node/commit/e0c9a2285c)] - **http**: unset `F_CHUNKED` on new `Transfer-Encoding` (Matteo Collina) [nodejs-private/node-private#&#8203;228](https://github.com/nodejs-private/node-private/pull/228) - \[[`9834ef85a0`](https://github.com/nodejs/node/commit/9834ef85a0)] - **src**: retain pointers to WriteWrap/ShutdownWrap (James M Snell) [nodejs-private/node-private#&#8203;23](https://github.com/nodejs-private/node-private/pull/23) ### [`v15.5.0`](https://github.com/nodejs/node/releases/v15.5.0) [Compare Source](https://github.com/nodejs/node/compare/v15.4.0...v15.5.0) ##### Notable Changes ##### Extended support for `AbortSignal` in child_process and stream The following APIs now support an `AbortSignal` in their options object: - `child_process.spawn()` Calling `.abort()` on the corresponding `AbortController` is similar to calling `.kill()` on the child process except the error passed to the callback will be an `AbortError`: ```js const controller = new AbortController(); const { signal } = controller; const grep = spawn('grep', ['ssh'], { signal }); grep.on('error', (err) => { // This will be called with err being an AbortError if the controller aborts }); controller.abort(); // stops the process ``` - `new stream.Writable()` and `new stream.Readable()` Calling `.abort()` on the corresponding `AbortController` will behave the same way as calling `.destroy(new AbortError())` on the stream: ```js const { Readable } = require('stream'); const controller = new AbortController(); const read = new Readable({ read(size) { // ... }, signal: controller.signal }); // Later, abort the operation closing the stream controller.abort(); ``` Contributed by Benjamin Gruenbaum [#&#8203;36431](https://github.com/nodejs/node/pull/36431), [#&#8203;36432](https://github.com/nodejs/node/pull/36432). ##### BigInt support in `querystring.stringify()` If `querystring.stringify()` is called with an object that contains `BigInt` values, they will now be serialized to their decimal representation instead of the empty string: ```js const querystring = require('querystring'); console.log(querystring.stringify({ bigint: 2n ** 64n })); // Prints: bigint=18446744073709551616 ``` Contributed by Darshan Sen [#&#8203;36499](https://github.com/nodejs/node/pull/36499). ##### Additions to the C++ embedder APIs A new `IsolateSettingsFlag` is available for those calling `SetIsolateUpForNode()`: `SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK` can be used to prevent Node.js from setting a custom callback to prepare stack traces. Contributed by Shelley Vohr [#&#8203;36447](https://github.com/nodejs/node/pull/36447). *** Added `node::GetEnvironmentIsolateData()` and `node::GetArrayBufferAllocator()` to respectively get the current `IsolateData*` and, from it, the current Node.js `ArrayBufferAllocator` if there is one. Contributed by Anna Henningsen [#&#8203;36441](https://github.com/nodejs/node/pull/36441). ##### New core collaborator With this release, we welcome a new Node.js core collaborator: - Pooja D P [@&#8203;PoojaDurgad](https://github.com/PoojaDurgad) [#&#8203;36511](https://github.com/nodejs/node/pull/36511) ##### Commits ##### Semver-minor commits - \[[`e449571230`](https://github.com/nodejs/node/commit/e449571230)] - **(SEMVER-MINOR)** **child_process**: add signal support to spawn (Benjamin Gruenbaum) [#&#8203;36432](https://github.com/nodejs/node/pull/36432) - \[[`25d7e90386`](https://github.com/nodejs/node/commit/25d7e90386)] - **(SEMVER-MINOR)** **http**: use `autoDestroy: true` in incoming message (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`5481be8cbd`](https://github.com/nodejs/node/commit/5481be8cbd)] - **(SEMVER-MINOR)** **lib**: support BigInt in querystring.stringify (raisinten) [#&#8203;36499](https://github.com/nodejs/node/pull/36499) - \[[`036ed1fafc`](https://github.com/nodejs/node/commit/036ed1fafc)] - **(SEMVER-MINOR)** **src**: add way to get IsolateData and allocator from Environment (Anna Henningsen) [#&#8203;36441](https://github.com/nodejs/node/pull/36441) - \[[`e23309486b`](https://github.com/nodejs/node/commit/e23309486b)] - **(SEMVER-MINOR)** **src**: allow preventing SetPrepareStackTraceCallback (Shelley Vohr) [#&#8203;36447](https://github.com/nodejs/node/pull/36447) - \[[`6ecbc1dcb3`](https://github.com/nodejs/node/commit/6ecbc1dcb3)] - **(SEMVER-MINOR)** **stream**: support abortsignal in constructor (Benjamin Gruenbaum) [#&#8203;36431](https://github.com/nodejs/node/pull/36431) ##### Semver-patch commits - \[[`1330995b80`](https://github.com/nodejs/node/commit/1330995b80)] - **build,lib,test**: change whitelist to allowlist (Michaël Zasso) [#&#8203;36406](https://github.com/nodejs/node/pull/36406) - \[[`dc8d1a74a6`](https://github.com/nodejs/node/commit/dc8d1a74a6)] - **deps**: upgrade npm to 7.3.0 (Ruy Adorno) [#&#8203;36572](https://github.com/nodejs/node/pull/36572) - \[[`b6a31f0a70`](https://github.com/nodejs/node/commit/b6a31f0a70)] - **deps**: update archs files for OpenSSL-1.1.1i (Myles Borins) [#&#8203;36520](https://github.com/nodejs/node/pull/36520) - \[[`5b49807c3f`](https://github.com/nodejs/node/commit/5b49807c3f)] - **deps**: re-enable OPENSSL_NO_QUIC guards (James M Snell) [#&#8203;36520](https://github.com/nodejs/node/pull/36520) - \[[`309e2971a2`](https://github.com/nodejs/node/commit/309e2971a2)] - **deps**: various quic patches from akamai/openssl (Todd Short) [#&#8203;36520](https://github.com/nodejs/node/pull/36520) - \[[`27fb651cbc`](https://github.com/nodejs/node/commit/27fb651cbc)] - **deps**: upgrade openssl sources to 1.1.1i (Myles Borins) [#&#8203;36520](https://github.com/nodejs/node/pull/36520) - \[[`1f43aadf90`](https://github.com/nodejs/node/commit/1f43aadf90)] - **deps**: update patch and docs for openssl update (Myles Borins) [#&#8203;36520](https://github.com/nodejs/node/pull/36520) - \[[`752c94d202`](https://github.com/nodejs/node/commit/752c94d202)] - **deps**: fix npm doctor tests for pre-release node (nlf) [#&#8203;36543](https://github.com/nodejs/node/pull/36543) - \[[`b0393fa2ed`](https://github.com/nodejs/node/commit/b0393fa2ed)] - **deps**: upgrade npm to 7.2.0 (Myles Borins) [#&#8203;36543](https://github.com/nodejs/node/pull/36543) - \[[`cb4652e91d`](https://github.com/nodejs/node/commit/cb4652e91d)] - **deps**: update to c-ares 1.17.1 (Danny Sonnenschein) [#&#8203;36207](https://github.com/nodejs/node/pull/36207) - \[[`21fbcb6f81`](https://github.com/nodejs/node/commit/21fbcb6f81)] - **deps**: V8: backport [`4bf051d`](https://github.com/nodejs/node/commit/4bf051d536a1) (Anna Henningsen) [#&#8203;36482](https://github.com/nodejs/node/pull/36482) - \[[`30fe0ff681`](https://github.com/nodejs/node/commit/30fe0ff681)] - **deps**: upgrade npm to 7.1.2 (Darcy Clarke) [#&#8203;36487](https://github.com/nodejs/node/pull/36487) - \[[`0baa610c3e`](https://github.com/nodejs/node/commit/0baa610c3e)] - **deps**: upgrade npm to 7.1.1 (Ruy Adorno) [#&#8203;36459](https://github.com/nodejs/node/pull/36459) - \[[`5929b08851`](https://github.com/nodejs/node/commit/5929b08851)] - **deps**: upgrade npm to 7.1.0 (Ruy Adorno) [#&#8203;36395](https://github.com/nodejs/node/pull/36395) - \[[`deaafd5788`](https://github.com/nodejs/node/commit/deaafd5788)] - **dns**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36314](https://github.com/nodejs/node/pull/36314) - \[[`e30af7be33`](https://github.com/nodejs/node/commit/e30af7be33)] - **fs**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36524](https://github.com/nodejs/node/pull/36524) - \[[`213dcd7930`](https://github.com/nodejs/node/commit/213dcd7930)] - **http**: add test for incomingmessage destroy (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`36b4ddd382`](https://github.com/nodejs/node/commit/36b4ddd382)] - **http**: use standard args order in IncomingMEssage onError (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`60b5e696fc`](https://github.com/nodejs/node/commit/60b5e696fc)] - **http**: remove trailing space (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`f11a648d8e`](https://github.com/nodejs/node/commit/f11a648d8e)] - **http**: add comments in \_http_incoming (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`4b81d79b58`](https://github.com/nodejs/node/commit/4b81d79b58)] - **http**: fix lint error in incoming message (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`397e31e25f`](https://github.com/nodejs/node/commit/397e31e25f)] - **http**: reafactor incoming message destroy (Daniele Belardi) [#&#8203;33035](https://github.com/nodejs/node/pull/33035) - \[[`9852ebca8d`](https://github.com/nodejs/node/commit/9852ebca8d)] - **http**: do not loop over prototype in Agent (Michaël Zasso) [#&#8203;36410](https://github.com/nodejs/node/pull/36410) - \[[`e46a46a4cd`](https://github.com/nodejs/node/commit/e46a46a4cd)] - **inspector**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36356](https://github.com/nodejs/node/pull/36356) - \[[`728f512c7d`](https://github.com/nodejs/node/commit/728f512c7d)] - **lib**: make safe primordials safe to iterate (Antoine du Hamel) [#&#8203;36391](https://github.com/nodejs/node/pull/36391) - \[[`f368d697cf`](https://github.com/nodejs/node/commit/f368d697cf)] - ***Revert*** "**perf_hooks**: make PerformanceObserver an AsyncResource" (Nicolai Stange) [#&#8203;36343](https://github.com/nodejs/node/pull/36343) - \[[`e2ced0d401`](https://github.com/nodejs/node/commit/e2ced0d401)] - **perf_hooks**: invoke performance_entry_callback via MakeSyncCallback() (Nicolai Stange) [#&#8203;36343](https://github.com/nodejs/node/pull/36343) - \[[`7c903ec6c8`](https://github.com/nodejs/node/commit/7c903ec6c8)] - **repl**: disable blocking completions by default (Anna Henningsen) [#&#8203;36564](https://github.com/nodejs/node/pull/36564) - \[[`d38a0ec93e`](https://github.com/nodejs/node/commit/d38a0ec93e)] - **src**: remove unnecessary ToLocalChecked node_errors (Daniel Bevenius) [#&#8203;36547](https://github.com/nodejs/node/pull/36547) - \[[`bbc0d14cd2`](https://github.com/nodejs/node/commit/bbc0d14cd2)] - **src**: use correct microtask queue for checkpoints (Anna Henningsen) [#&#8203;36581](https://github.com/nodejs/node/pull/36581) - \[[`7efb3111e8`](https://github.com/nodejs/node/commit/7efb3111e8)] - **src**: remove unnecessary ToLocalChecked call (Daniel Bevenius) [#&#8203;36523](https://github.com/nodejs/node/pull/36523) - \[[`68687d3419`](https://github.com/nodejs/node/commit/68687d3419)] - **src**: remove empty name check in node_env_var.cc (raisinten) [#&#8203;36133](https://github.com/nodejs/node/pull/36133) - \[[`1b4984de98`](https://github.com/nodejs/node/commit/1b4984de98)] - **src**: remove duplicate V macros in node_v8.cc (Daniel Bevenius) [#&#8203;36454](https://github.com/nodejs/node/pull/36454) - \[[`5ff7f42e65`](https://github.com/nodejs/node/commit/5ff7f42e65)] - **src**: use correct outer Context’s microtask queue (Anna Henningsen) [#&#8203;36482](https://github.com/nodejs/node/pull/36482) - \[[`96c095f237`](https://github.com/nodejs/node/commit/96c095f237)] - **src**: guard against env != null in node_errors.cc (Anna Henningsen) [#&#8203;36414](https://github.com/nodejs/node/pull/36414) - \[[`4f3d7bb417`](https://github.com/nodejs/node/commit/4f3d7bb417)] - **src**: introduce convenience node::MakeSyncCallback() (Nicolai Stange) [#&#8203;36343](https://github.com/nodejs/node/pull/36343) - \[[`e59788262c`](https://github.com/nodejs/node/commit/e59788262c)] - **src**: add typedef for CleanupHookCallback callback (Daniel Bevenius) [#&#8203;36442](https://github.com/nodejs/node/pull/36442) - \[[`2a60e3b9df`](https://github.com/nodejs/node/commit/2a60e3b9df)] - **src**: fix indentation in memory_tracker-inl.h (Daniel Bevenius) [#&#8203;36425](https://github.com/nodejs/node/pull/36425) - \[[`210390f6fd`](https://github.com/nodejs/node/commit/210390f6fd)] - **src**: remove identical V macro (Daniel Bevenius) [#&#8203;36427](https://github.com/nodejs/node/pull/36427) - \[[`02afe586aa`](https://github.com/nodejs/node/commit/02afe586aa)] - **src**: use using declarations consistently (Daniel Bevenius) [#&#8203;36365](https://github.com/nodejs/node/pull/36365) - \[[`169406b7d7`](https://github.com/nodejs/node/commit/169406b7d7)] - **src**: add missing context scopes (Anna Henningsen) [#&#8203;36413](https://github.com/nodejs/node/pull/36413) - \[[`3f33d0bcda`](https://github.com/nodejs/node/commit/3f33d0bcda)] - **stream**: fix pipe deadlock when starting with needDrain (Robert Nagy) [#&#8203;36563](https://github.com/nodejs/node/pull/36563) - \[[`d8b5b9499c`](https://github.com/nodejs/node/commit/d8b5b9499c)] - **stream**: accept iterable as a valid first argument (ZiJian Liu) [#&#8203;36479](https://github.com/nodejs/node/pull/36479) - \[[`58319d5336`](https://github.com/nodejs/node/commit/58319d5336)] - **tls**: forward new SecureContext options (Alba Mendez) [#&#8203;36416](https://github.com/nodejs/node/pull/36416) - \[[`fa40366276`](https://github.com/nodejs/node/commit/fa40366276)] - **util**: simplify constructor retrieval in inspect() (Rich Trott) [#&#8203;36466](https://github.com/nodejs/node/pull/36466) - \[[`cc544dbfaa`](https://github.com/nodejs/node/commit/cc544dbfaa)] - **util**: fix instanceof checks with null prototypes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178) - \[[`13d6597b4b`](https://github.com/nodejs/node/commit/13d6597b4b)] - **util**: fix module prefixes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178) - \[[`20ecc82569`](https://github.com/nodejs/node/commit/20ecc82569)] - **worker**: fix broadcast channel SharedArrayBuffer passing (Anna Henningsen) [#&#8203;36501](https://github.com/nodejs/node/pull/36501) - \[[`56fe9bae26`](https://github.com/nodejs/node/commit/56fe9bae26)] - **worker**: refactor MessagePort entanglement management (Anna Henningsen) [#&#8203;36345](https://github.com/nodejs/node/pull/36345) ##### Documentation commits - \[[`19c233232f`](https://github.com/nodejs/node/commit/19c233232f)] - **doc**: fix AbortSignal example for stream.Readable (Michaël Zasso) [#&#8203;36596](https://github.com/nodejs/node/pull/36596) - \[[`9fbab3e2f5`](https://github.com/nodejs/node/commit/9fbab3e2f5)] - **doc**: update and run license-builder for Babel (Michaël Zasso) [#&#8203;36504](https://github.com/nodejs/node/pull/36504) - \[[`a1ba6686a0`](https://github.com/nodejs/node/commit/a1ba6686a0)] - **doc**: add remark about Collaborators discussion page (FrankQiu) [#&#8203;36420](https://github.com/nodejs/node/pull/36420) - \[[`c5602fb166`](https://github.com/nodejs/node/commit/c5602fb166)] - **doc**: simplify worker_threads.md text (Rich Trott) [#&#8203;36545](https://github.com/nodejs/node/pull/36545) - \[[`149f2cfac1`](https://github.com/nodejs/node/commit/149f2cfac1)] - **doc**: add two tips for speeding the dev builds (Momtchil Momtchev) [#&#8203;36452](https://github.com/nodejs/node/pull/36452) - \[[`ad75c78c32`](https://github.com/nodejs/node/commit/ad75c78c32)] - **doc**: add note about timingSafeEqual for TypedArray (Tobias Nießen) [#&#8203;36323](https://github.com/nodejs/node/pull/36323) - \[[`9830fe5c9e`](https://github.com/nodejs/node/commit/9830fe5c9e)] - **doc**: move Derek Lewis to emeritus (Rich Trott) [#&#8203;36514](https://github.com/nodejs/node/pull/36514) - \[[`eb29a16bae`](https://github.com/nodejs/node/commit/eb29a16bae)] - **doc**: add issue reference to github pr template (Chinmoy Chakraborty) [#&#8203;36440](https://github.com/nodejs/node/pull/36440) - \[[`f09985d42a`](https://github.com/nodejs/node/commit/f09985d42a)] - **doc**: update url.md (Rock) [#&#8203;36147](https://github.com/nodejs/node/pull/36147) - \[[`c3ec90d23c`](https://github.com/nodejs/node/commit/c3ec90d23c)] - **doc**: make explicit reverting node_version.h changes (Richard Lau) [#&#8203;36461](https://github.com/nodejs/node/pull/36461) - \[[`7a34452b1d`](https://github.com/nodejs/node/commit/7a34452b1d)] - **doc**: add license info to the README (FrankQiu) [#&#8203;36278](https://github.com/nodejs/node/pull/36278) - \[[`22f039339f`](https://github.com/nodejs/node/commit/22f039339f)] - **doc**: revise addon mulitple initializations text (Rich Trott) [#&#8203;36457](https://github.com/nodejs/node/pull/36457) - \[[`25a245443a`](https://github.com/nodejs/node/commit/25a245443a)] - **doc**: add v15.4.0 link to CHANGELOG.md (Danielle Adams) [#&#8203;36456](https://github.com/nodejs/node/pull/36456) - \[[`1ec8516fd6`](https://github.com/nodejs/node/commit/1ec8516fd6)] - **doc**: add PoojaDurgad to collaborators (Pooja D P) [#&#8203;36511](https://github.com/nodejs/node/pull/36511) - \[[`98918110a1`](https://github.com/nodejs/node/commit/98918110a1)] - **doc**: edit addon text about event loop blocking (Rich Trott) [#&#8203;36448](https://github.com/nodejs/node/pull/36448) - \[[`62bfe3d313`](https://github.com/nodejs/node/commit/62bfe3d313)] - **doc**: note v15.0.0 changed default --unhandled-rejections=throw (kai zhu) [#&#8203;36361](https://github.com/nodejs/node/pull/36361) - \[[`129053fe4c`](https://github.com/nodejs/node/commit/129053fe4c)] - **doc**: update terminology (Michael Dawson) [#&#8203;36475](https://github.com/nodejs/node/pull/36475) - \[[`e331de2571`](https://github.com/nodejs/node/commit/e331de2571)] - **doc**: reword POSIX threads text in addons.md (Rich Trott) [#&#8203;36436](https://github.com/nodejs/node/pull/36436) - \[[`04f166389b`](https://github.com/nodejs/node/commit/04f166389b)] - **doc**: add RaisinTen as a triager (raisinten) [#&#8203;36404](https://github.com/nodejs/node/pull/36404) - \[[`3341b2cb9d`](https://github.com/nodejs/node/commit/3341b2cb9d)] - **doc**: document ABORT_ERR code (Benjamin Gruenbaum) [#&#8203;36319](https://github.com/nodejs/node/pull/36319) - \[[`6a6b3af736`](https://github.com/nodejs/node/commit/6a6b3af736)] - **doc**: provide more context on techinical values (Michael Dawson) [#&#8203;36201](https://github.com/nodejs/node/pull/36201) ##### Other commits - \[[`e1f00fd996`](https://github.com/nodejs/node/commit/e1f00fd996)] - **benchmark**: reduce code duplication (Rich Trott) [#&#8203;36568](https://github.com/nodejs/node/pull/36568) - \[[`82a26268d7`](https://github.com/nodejs/node/commit/82a26268d7)] - **build**: do not run GitHub actions for draft PRs (Michaël Zasso) [#&#8203;35910](https://github.com/nodejs/node/pull/35910) - \[[`95c80f5fb0`](https://github.com/nodejs/node/commit/95c80f5fb0)] - **build**: run some workflows only on nodejs/node (Michaël Zasso) [#&#8203;36507](https://github.com/nodejs/node/pull/36507) - \[[`584ea8b26c`](https://github.com/nodejs/node/commit/584ea8b26c)] - **build**: fix make test-npm (Ruy Adorno) [#&#8203;36369](https://github.com/nodejs/node/pull/36369) - \[[`01576fbc19`](https://github.com/nodejs/node/commit/01576fbc19)] - **test**: increase abort logic coverage (Moshe vilner) [#&#8203;36586](https://github.com/nodejs/node/pull/36586) - \[[`22ac2279ee`](https://github.com/nodejs/node/commit/22ac2279ee)] - **test**: increase coverage for stream (ZiJian Liu) [#&#8203;36538](https://github.com/nodejs/node/pull/36538) - \[[`9fc2479707`](https://github.com/nodejs/node/commit/9fc2479707)] - **test**: increase coverage for worker (ZiJian Liu) [#&#8203;36491](https://github.com/nodejs/node/pull/36491) - \[[`81e603b7cf`](https://github.com/nodejs/node/commit/81e603b7cf)] - **test**: specify global object for globals (Rich Trott) [#&#8203;36498](https://github.com/nodejs/node/pull/36498) - \[[`109ab787fd`](https://github.com/nodejs/node/commit/109ab787fd)] - **test**: increase coverage for fs/dir read (Zijian Liu) [#&#8203;36388](https://github.com/nodejs/node/pull/36388) - \[[`9f2d3c291b`](https://github.com/nodejs/node/commit/9f2d3c291b)] - **test**: remove test-http2-client-upload as flaky (Rich Trott) [#&#8203;36496](https://github.com/nodejs/node/pull/36496) - \[[`d299ceeac7`](https://github.com/nodejs/node/commit/d299ceeac7)] - **test**: increase coverage for net/blocklist (Zijian Liu) [#&#8203;36405](https://github.com/nodejs/node/pull/36405) - \[[`f7635fd86d`](https://github.com/nodejs/node/commit/f7635fd86d)] - **test**: make executable name more general (Shelley Vohr) [#&#8203;36489](https://github.com/nodejs/node/pull/36489) - \[[`acd78d9d25`](https://github.com/nodejs/node/commit/acd78d9d25)] - **test**: increased externalized string length (Shelley Vohr) [#&#8203;36451](https://github.com/nodejs/node/pull/36451) - \[[`0f749a35ec`](https://github.com/nodejs/node/commit/0f749a35ec)] - **test**: add test for async contexts in PerformanceObserver (ZauberNerd) [#&#8203;36343](https://github.com/nodejs/node/pull/36343) - \[[`dd705ad1f0`](https://github.com/nodejs/node/commit/dd705ad1f0)] - **test**: increase execFile abort coverage (Moshe vilner) [#&#8203;36429](https://github.com/nodejs/node/pull/36429) - \[[`31b062d591`](https://github.com/nodejs/node/commit/31b062d591)] - **test**: fix flaky test-repl (Rich Trott) [#&#8203;36415](https://github.com/nodejs/node/pull/36415) - \[[`023291b43c`](https://github.com/nodejs/node/commit/023291b43c)] - **test**: check null proto-of-proto in util.inspect() (Rich Trott) [#&#8203;36399](https://github.com/nodejs/node/pull/36399) - \[[`d3d1f338c7`](https://github.com/nodejs/node/commit/d3d1f338c7)] - **test**: add SIGTRAP to test-signal-handler (Ash Cripps) [#&#8203;36368](https://github.com/nodejs/node/pull/36368) - \[[`166aa8a7b5`](https://github.com/nodejs/node/commit/166aa8a7b5)] - **test**: fix child-process-pipe-dataflow (Santiago Gimeno) [#&#8203;36366](https://github.com/nodejs/node/pull/36366) - \[[`ecbb757ae0`](https://github.com/nodejs/node/commit/ecbb757ae0)] - **tools**: fix make-v8.sh (Richard Lau) [#&#8203;36594](https://github.com/nodejs/node/pull/36594) - \[[`e3c5adc6d0`](https://github.com/nodejs/node/commit/e3c5adc6d0)] - **tools**: fix release script sign function (Antoine du Hamel) [#&#8203;36556](https://github.com/nodejs/node/pull/36556) - \[[`0d4d34748d`](https://github.com/nodejs/node/commit/0d4d34748d)] - **tools**: update ESLint to 7.16.0 (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579) - \[[`f3828c9dcb`](https://github.com/nodejs/node/commit/f3828c9dcb)] - **tools**: fix update-eslint.sh (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579) - \[[`27260c70b4`](https://github.com/nodejs/node/commit/27260c70b4)] - **tools**: fix release script (Antoine du Hamel) [#&#8203;36540](https://github.com/nodejs/node/pull/36540) - \[[`c6700ad041`](https://github.com/nodejs/node/commit/c6700ad041)] - **tools**: remove unused variable in configure.py (Rich Trott) [#&#8203;36525](https://github.com/nodejs/node/pull/36525) - \[[`7b8d373d5e`](https://github.com/nodejs/node/commit/7b8d373d5e)] - **tools**: lint shell scripts (Antoine du Hamel) [#&#8203;36099](https://github.com/nodejs/node/pull/36099) - \[[`c6e65d09ef`](https://github.com/nodejs/node/commit/c6e65d09ef)] - **tools**: update ini in tools/node-lint-md-cli-rollup (Myles Borins) [#&#8203;36474](https://github.com/nodejs/node/pull/36474) - \[[`7542a3bd55`](https://github.com/nodejs/node/commit/7542a3bd55)] - **tools**: enable no-unsafe-optional-chaining lint rule (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411) - \[[`26f8ccfbe6`](https://github.com/nodejs/node/commit/26f8ccfbe6)] - **tools**: update ESLint to 7.15.0 (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411) - \[[`8ecf2f9976`](https://github.com/nodejs/node/commit/8ecf2f9976)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36407](https://github.com/nodejs/node/pull/36407) - \[[`040b39f076`](https://github.com/nodejs/node/commit/040b39f076)] - **tools**: enable no-unused-expressions lint rule (Michaël Zasso) [#&#8203;36248](https://github.com/nodejs/node/pull/36248) ### [`v15.4.0`](https://github.com/nodejs/node/releases/v15.4.0) [Compare Source](https://github.com/nodejs/node/compare/v15.3.0...v15.4.0) ##### Notable Changes - **child_processes**: - add AbortSignal support (Benjamin Gruenbaum) [#&#8203;36308](https://github.com/nodejs/node/pull/36308) - **deps**: - update ICU to 68.1 (Michaël Zasso) [#&#8203;36187](https://github.com/nodejs/node/pull/36187) - **events**: - support signal in EventTarget (Benjamin Gruenbaum) [#&#8203;36258](https://github.com/nodejs/node/pull/36258) - graduate Event, EventTarget, AbortController (James M Snell) [#&#8203;35949](https://github.com/nodejs/node/pull/35949) - **http**: - enable call chaining with setHeader() (pooja d.p) [#&#8203;35924](https://github.com/nodejs/node/pull/35924) - **module**: - add isPreloading indicator (James M Snell) [#&#8203;36263](https://github.com/nodejs/node/pull/36263) - **stream**: - support abort signal (Benjamin Gruenbaum) [#&#8203;36061](https://github.com/nodejs/node/pull/36061) - add FileHandle support to Read/WriteStream (Momtchil Momtchev) [#&#8203;35922](https://github.com/nodejs/node/pull/35922) - **worker**: - add experimental BroadcastChannel (James M Snell) [#&#8203;36271](https://github.com/nodejs/node/pull/36271) ##### Commits - \[[`e79bdc313a`](https://github.com/nodejs/node/commit/e79bdc313a)] - **assert**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36234](https://github.com/nodejs/node/pull/36234) - \[[`2344e3e360`](https://github.com/nodejs/node/commit/2344e3e360)] - **benchmark**: changed `fstat` to `fstatSync` (Narasimha Prasanna HN) [#&#8203;36206](https://github.com/nodejs/node/pull/36206) - \[[`ca8db41151`](https://github.com/nodejs/node/commit/ca8db41151)] - **benchmark,child_process**: remove failing benchmark parameter (Antoine du Hamel) [#&#8203;36295](https://github.com/nodejs/node/pull/36295) - \[[`9db9be774b`](https://github.com/nodejs/node/commit/9db9be774b)] - **buffer**: refactor to use primordials instead of Array#reduce (Antoine du Hamel) [#&#8203;36392](https://github.com/nodejs/node/pull/36392) - \[[`8d8d2261a5`](https://github.com/nodejs/node/commit/8d8d2261a5)] - **buffer**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36166](https://github.com/nodejs/node/pull/36166) - \[[`74adc441c4`](https://github.com/nodejs/node/commit/74adc441c4)] - **build**: fix typo in Makefile (raisinten) [#&#8203;36176](https://github.com/nodejs/node/pull/36176) - \[[`224a6471cc`](https://github.com/nodejs/node/commit/224a6471cc)] - **(SEMVER-MINOR)** **child_process**: add AbortSignal support (Benjamin Gruenbaum) [#&#8203;36308](https://github.com/nodejs/node/pull/36308) - \[[`4ca1bd8806`](https://github.com/nodejs/node/commit/4ca1bd8806)] - **child_process**: refactor to use more primordials (Zijian Liu) [#&#8203;36269](https://github.com/nodejs/node/pull/36269) - \[[`841e8f444e`](https://github.com/nodejs/node/commit/841e8f444e)] - **crypto**: fix "Invalid JWK" error messages (Filip Skokan) [#&#8203;36200](https://github.com/nodejs/node/pull/36200) - \[[`278862aeb9`](https://github.com/nodejs/node/commit/278862aeb9)] - **deps**: upgrade npm to 7.0.15 (Ruy Adorno) [#&#8203;36293](https://github.com/nodejs/node/pull/36293) - \[[`66bc2067ce`](https://github.com/nodejs/node/commit/66bc2067ce)] - **deps**: V8: cherry-pick [`86991d0`](https://github.com/nodejs/node/commit/86991d0587a1) (Benjamin Coe) [#&#8203;36254](https://github.com/nodejs/node/pull/36254) - \[[`095cef2c11`](https://github.com/nodejs/node/commit/095cef2c11)] - **deps**: update ICU to 68.1 (Michaël Zasso) [#&#8203;36187](https://github.com/nodejs/node/pull/36187) - \[[`8d69d8387e`](https://github.com/nodejs/node/commit/8d69d8387e)] - **dgram**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36286](https://github.com/nodejs/node/pull/36286) - \[[`bef550a50c`](https://github.com/nodejs/node/commit/bef550a50c)] - **doc**: add Powershell oneliner to get Windows version (Michael Bashurov) [#&#8203;30289](https://github.com/nodejs/node/pull/30289) - \[[`2649c384c6`](https://github.com/nodejs/node/commit/2649c384c6)] - **doc**: add version metadata to timers/promises (Colin Ihrig) [#&#8203;36378](https://github.com/nodejs/node/pull/36378) - \[[`0401ffbfb6`](https://github.com/nodejs/node/commit/0401ffbfb6)] - **doc**: add process for handling premature disclosure (Michael Dawson) [#&#8203;36155](https://github.com/nodejs/node/pull/36155) - \[[`3e5fcda13e`](https://github.com/nodejs/node/commit/3e5fcda13e)] - **doc**: add table header in intl.md (Rich Trott) [#&#8203;36261](https://github.com/nodejs/node/pull/36261) - \[[`65d89fdd69`](https://github.com/nodejs/node/commit/65d89fdd69)] - **doc**: adding example to Buffer.isBuffer method (naortedgi) [#&#8203;36233](https://github.com/nodejs/node/pull/36233) - \[[`03cf8dbc0e`](https://github.com/nodejs/node/commit/03cf8dbc0e)] - **doc**: fix typo in events.md (Luigi Pinca) [#&#8203;36231](https://github.com/nodejs/node/pull/36231) - \[[`b176d61e8c`](https://github.com/nodejs/node/commit/b176d61e8c)] - **doc**: fix --experimental-wasm-modules text location (Colin Ihrig) [#&#8203;36220](https://github.com/nodejs/node/pull/36220) - \[[`44c4aaddad`](https://github.com/nodejs/node/commit/44c4aaddad)] - **doc**: stabilize subpath patterns (Guy Bedford) [#&#8203;36177](https://github.com/nodejs/node/pull/36177) - \[[`fdf5d851d0`](https://github.com/nodejs/node/commit/fdf5d851d0)] - **doc**: add missing version to update cmd (Ruy Adorno) [#&#8203;36204](https://github.com/nodejs/node/pull/36204) - \[[`186ad24fdf`](https://github.com/nodejs/node/commit/186ad24fdf)] - **doc**: cleanup events.md structure (James M Snell) [#&#8203;36100](https://github.com/nodejs/node/pull/36100) - \[[`c14512b9a5`](https://github.com/nodejs/node/commit/c14512b9a5)] - **errors**: display original symbol name (Benjamin Coe) [#&#8203;36042](https://github.com/nodejs/node/pull/36042) - \[[`855a85c124`](https://github.com/nodejs/node/commit/855a85c124)] - **(SEMVER-MINOR)** **events**: support signal in EventTarget (Benjamin Gruenbaum) [#&#8203;36258](https://github.com/nodejs/node/pull/36258) - \[[`dc1930923b`](https://github.com/nodejs/node/commit/dc1930923b)] - **(SEMVER-MINOR)** **events**: graduate Event, EventTarget, AbortController (James M Snell) [#&#8203;35949](https://github.com/nodejs/node/pull/35949) - \[[`537e5cbf51`](https://github.com/nodejs/node/commit/537e5cbf51)] - **fs**: move method definition from header (Yash Ladha) [#&#8203;36256](https://github.com/nodejs/node/pull/36256) - \[[`744b8aa807`](https://github.com/nodejs/node/commit/744b8aa807)] - **fs**: pass ERR_DIR_CLOSED asynchronously to dir.close (Zijian Liu) [#&#8203;36243](https://github.com/nodejs/node/pull/36243) - \[[`c04a2df185`](https://github.com/nodejs/node/commit/c04a2df185)] - **fs**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36196](https://github.com/nodejs/node/pull/36196) - \[[`58abdcaceb`](https://github.com/nodejs/node/commit/58abdcaceb)] - **(SEMVER-MINOR)** **http**: enable call chaining with setHeader() (pooja d.p) [#&#8203;35924](https://github.com/nodejs/node/pull/35924) - \[[`cedf51f3ce`](https://github.com/nodejs/node/commit/cedf51f3ce)] - **http2**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36357](https://github.com/nodejs/node/pull/36357) - \[[`5f41f1b19e`](https://github.com/nodejs/node/commit/5f41f1b19e)] - **http2**: check write not scheduled in scope destructor (David Halls) [#&#8203;36241](https://github.com/nodejs/node/pull/36241) - \[[`4127eb2405`](https://github.com/nodejs/node/commit/4127eb2405)] - **https**: add abortcontroller test (Benjamin Gruenbaum) [#&#8203;36307](https://github.com/nodejs/node/pull/36307) - \[[`c2938bde6c`](https://github.com/nodejs/node/commit/c2938bde6c)] - **lib**: add uncurried accessor properties to `primordials` (ExE Boss) [#&#8203;36329](https://github.com/nodejs/node/pull/36329) - \[[`f73a0a8069`](https://github.com/nodejs/node/commit/f73a0a8069)] - **lib**: fix typo in internal/errors.js (raisinten) [#&#8203;36426](https://github.com/nodejs/node/pull/36426) - \[[`617cb58cc8`](https://github.com/nodejs/node/commit/617cb58cc8)] - **lib**: refactor primordials.uncurryThis (Antoine du Hamel) [#&#8203;36221](https://github.com/nodejs/node/pull/36221) - \[[`cc18907ec4`](https://github.com/nodejs/node/commit/cc18907ec4)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36348](https://github.com/nodejs/node/pull/36348) - \[[`d4de7c7eb9`](https://github.com/nodejs/node/commit/d4de7c7eb9)] - **(SEMVER-MINOR)** **module**: add isPreloading indicator (James M Snell) [#&#8203;36263](https://github.com/nodejs/node/pull/36263) - \[[`8611b8f98a`](https://github.com/nodejs/node/commit/8611b8f98a)] - **net**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36303](https://github.com/nodejs/node/pull/36303) - \[[`2a24096720`](https://github.com/nodejs/node/commit/2a24096720)] - **os**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36284](https://github.com/nodejs/node/pull/36284) - \[[`0e7f0c6d27`](https://github.com/nodejs/node/commit/0e7f0c6d27)] - **path**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36302](https://github.com/nodejs/node/pull/36302) - \[[`ea46ca8cbf`](https://github.com/nodejs/node/commit/ea46ca8cbf)] - **perf_hooks**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36297](https://github.com/nodejs/node/pull/36297) - \[[`a9ac86d1ee`](https://github.com/nodejs/node/commit/a9ac86d1ee)] - **policy**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36210](https://github.com/nodejs/node/pull/36210) - \[[`39d0ceda48`](https://github.com/nodejs/node/commit/39d0ceda48)] - **process**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36212](https://github.com/nodejs/node/pull/36212) - \[[`ab084c199e`](https://github.com/nodejs/node/commit/ab084c199e)] - **querystring**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36315](https://github.com/nodejs/node/pull/36315) - \[[`d29199ef82`](https://github.com/nodejs/node/commit/d29199ef82)] - **quic**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36211](https://github.com/nodejs/node/pull/36211) - \[[`b885409e48`](https://github.com/nodejs/node/commit/b885409e48)] - **readline**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36296](https://github.com/nodejs/node/pull/36296) - \[[`9cb53f635a`](https://github.com/nodejs/node/commit/9cb53f635a)] - **repl**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36264](https://github.com/nodejs/node/pull/36264) - \[[`8dadaa652e`](https://github.com/nodejs/node/commit/8dadaa652e)] - **src**: remove some duplication in DeserializeProps (Daniel Bevenius) [#&#8203;36336](https://github.com/nodejs/node/pull/36336) - \[[`a03aa0a6b2`](https://github.com/nodejs/node/commit/a03aa0a6b2)] - **src**: rename AliasedBufferInfo->AliasedBufferIndex (Daniel Bevenius) [#&#8203;36339](https://github.com/nodejs/node/pull/36339) - \[[`e7b2d91e04`](https://github.com/nodejs/node/commit/e7b2d91e04)] - **src**: use transferred consistently (Daniel Bevenius) [#&#8203;36340](https://github.com/nodejs/node/pull/36340) - \[[`6ebb98af11`](https://github.com/nodejs/node/commit/6ebb98af11)] - **src**: use ToLocal in DeserializeProperties (Daniel Bevenius) [#&#8203;36279](https://github.com/nodejs/node/pull/36279) - \[[`47397ffd56`](https://github.com/nodejs/node/commit/47397ffd56)] - **src**: update node.rc file description (devsnek) [#&#8203;36197](https://github.com/nodejs/node/pull/36197) - \[[`cfc8ec18db`](https://github.com/nodejs/node/commit/cfc8ec18db)] - **src**: fix label indentation (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213) - \[[`197ba21279`](https://github.com/nodejs/node/commit/197ba21279)] - **(SEMVER-MINOR)** **stream**: support abort signal (Benjamin Gruenbaum) [#&#8203;36061](https://github.com/nodejs/node/pull/36061) - \[[`6033d30361`](https://github.com/nodejs/node/commit/6033d30361)] - **(SEMVER-MINOR)** **stream**: add FileHandle support to Read/WriteStream (Momtchil Momtchev) [#&#8203;35922](https://github.com/nodejs/node/pull/35922) - \[[`a15addc153`](https://github.com/nodejs/node/commit/a15addc153)] - **string_decoder**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36358](https://github.com/nodejs/node/pull/36358) - \[[`b39d150e60`](https://github.com/nodejs/node/commit/b39d150e60)] - **test**: fix comment misspellings of transferred (Rich Trott) [#&#8203;36360](https://github.com/nodejs/node/pull/36360) - \[[`a7e794d1bf`](https://github.com/nodejs/node/commit/a7e794d1bf)] - **test**: fix flaky test-http2-respond-file-error-pipe-offset (Rich Trott) [#&#8203;36305](https://github.com/nodejs/node/pull/36305) - \[[`1091a658e1`](https://github.com/nodejs/node/commit/1091a658e1)] - **test**: fix bootstrap test (Benjamin Gruenbaum) [#&#8203;36418](https://github.com/nodejs/node/pull/36418) - \[[`fbcb72a665`](https://github.com/nodejs/node/commit/fbcb72a665)] - **test**: increase coverage for readline (Zijian Liu) [#&#8203;36389](https://github.com/nodejs/node/pull/36389) - \[[`22028aae54`](https://github.com/nodejs/node/commit/22028aae54)] - **test**: skip flaky parts of broadcastchannel test on Windows (Rich Trott) [#&#8203;36386](https://github.com/nodejs/node/pull/36386) - \[[`faca2b829e`](https://github.com/nodejs/node/commit/faca2b829e)] - **test**: fix test-worker-broadcastchannel-wpt (Rich Trott) [#&#8203;36353](https://github.com/nodejs/node/pull/36353) - \[[`ea09da492c`](https://github.com/nodejs/node/commit/ea09da492c)] - **test**: fix typo in comment (inokawa) [#&#8203;36312](https://github.com/nodejs/node/pull/36312) - \[[`b61ca1bfe6`](https://github.com/nodejs/node/commit/b61ca1bfe6)] - **test**: replace anonymous functions by arrows (Aleksandr Krutko) [#&#8203;36125](https://github.com/nodejs/node/pull/36125) - \[[`2c7358ef43`](https://github.com/nodejs/node/commit/2c7358ef43)] - **test**: fix flaky sequential/test-fs-watch (Rich Trott) [#&#8203;36249](https://github.com/nodejs/node/pull/36249) - \[[`b613950016`](https://github.com/nodejs/node/commit/b613950016)] - **test**: increase coverage for util.inspect() (Rich Trott) [#&#8203;36228](https://github.com/nodejs/node/pull/36228) - \[[`69a8f05488`](https://github.com/nodejs/node/commit/69a8f05488)] - **test**: improve test coverage SourceMap API (Juan José Arboleda) [#&#8203;36089](https://github.com/nodejs/node/pull/36089) - \[[`44d6d0bf0d`](https://github.com/nodejs/node/commit/44d6d0bf0d)] - **test**: fix missed warning for non-experimental AbortController (James M Snell) [#&#8203;36240](https://github.com/nodejs/node/pull/36240) - \[[`29b5236256`](https://github.com/nodejs/node/commit/29b5236256)] - **timers**: reject with AbortError on cancellation (Benjamin Gruenbaum) [#&#8203;36317](https://github.com/nodejs/node/pull/36317) - \[[`b20409e985`](https://github.com/nodejs/node/commit/b20409e985)] - **tls**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36266](https://github.com/nodejs/node/pull/36266) - \[[`f317bba034`](https://github.com/nodejs/node/commit/f317bba034)] - **tls**: permit null as a cipher value (Rich Trott) [#&#8203;36318](https://github.com/nodejs/node/pull/36318) - \[[`9ae59c847a`](https://github.com/nodejs/node/commit/9ae59c847a)] - **tools**: upgrade to [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) 7.12.1 (Antoine du Hamel) [#&#8203;36321](https://github.com/nodejs/node/pull/36321) - \[[`e798770803`](https://github.com/nodejs/node/commit/e798770803)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324) - \[[`a8b95cfcb2`](https://github.com/nodejs/node/commit/a8b95cfcb2)] - **tools**: bump cpplint to 1.5.4 (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324) - \[[`754b7a76b1`](https://github.com/nodejs/node/commit/754b7a76b1)] - **tools**: remove bashisms from macOS release scripts (Antoine du Hamel) [#&#8203;36121](https://github.com/nodejs/node/pull/36121) - \[[`2868ffb331`](https://github.com/nodejs/node/commit/2868ffb331)] - **tools**: remove bashisms from release script (Antoine du Hamel) [#&#8203;36123](https://github.com/nodejs/node/pull/36123) - \[[`8cf1addaa8`](https://github.com/nodejs/node/commit/8cf1addaa8)] - **tools**: update stability index linking logic (Rich Trott) [#&#8203;36280](https://github.com/nodejs/node/pull/36280) - \[[`d95ae65986`](https://github.com/nodejs/node/commit/d95ae65986)] - **tools**: update highlight.js to 10.1.2 (Myles Borins) [#&#8203;36309](https://github.com/nodejs/node/pull/36309) - \[[`5935ccc11c`](https://github.com/nodejs/node/commit/5935ccc11c)] - **tools**: fix undeclared identifier FALSE (Antoine du Hamel) [#&#8203;36276](https://github.com/nodejs/node/pull/36276) - \[[`a2da7ba914`](https://github.com/nodejs/node/commit/a2da7ba914)] - **tools**: use using-declaration consistently (Daniel Bevenius) [#&#8203;36245](https://github.com/nodejs/node/pull/36245) - \[[`82c1e39c4a`](https://github.com/nodejs/node/commit/82c1e39c4a)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235) - \[[`bcf7393412`](https://github.com/nodejs/node/commit/bcf7393412)] - **tools**: bump cpplint to 1.5.3 (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235) - \[[`be11976407`](https://github.com/nodejs/node/commit/be11976407)] - **tools**: enable no-nonoctal-decimal-escape lint rule (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217) - \[[`c86c2399a2`](https://github.com/nodejs/node/commit/c86c2399a2)] - **tools**: update ESLint to 7.14.0 (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217) - \[[`cfadd82cf3`](https://github.com/nodejs/node/commit/cfadd82cf3)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213) - \[[`03e8aaf613`](https://github.com/nodejs/node/commit/03e8aaf613)] - **tools**: bump cpplint.py to 1.5.2 (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213) - \[[`6bc007fc94`](https://github.com/nodejs/node/commit/6bc007fc94)] - **tty**: refactor to use more primordials (Zijian Liu) [#&#8203;36272](https://github.com/nodejs/node/pull/36272) - \[[`fbd5652943`](https://github.com/nodejs/node/commit/fbd5652943)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36285](https://github.com/nodejs/node/pull/36285) - \[[`8731a80439`](https://github.com/nodejs/node/commit/8731a80439)] - **vm**: add `SafeForTerminationScope`s for SIGINT interruptions (Anna Henningsen) [#&#8203;36344](https://github.com/nodejs/node/pull/36344) - \[[`47345a1f84`](https://github.com/nodejs/node/commit/47345a1f84)] - **worker**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36393](https://github.com/nodejs/node/pull/36393) - \[[`21c4704c7b`](https://github.com/nodejs/node/commit/21c4704c7b)] - **worker**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36267](https://github.com/nodejs/node/pull/36267) - \[[`802d44b1a9`](https://github.com/nodejs/node/commit/802d44b1a9)] - **(SEMVER-MINOR)** **worker**: add experimental BroadcastChannel (James M Snell) [#&#8203;36271](https://github.com/nodejs/node/pull/36271) - \[[`4b4caada9f`](https://github.com/nodejs/node/commit/4b4caada9f)] - **zlib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36347](https://github.com/nodejs/node/pull/36347) ### [`v15.3.0`](https://github.com/nodejs/node/releases/v15.3.0) [Compare Source](https://github.com/nodejs/node/compare/v15.2.1...v15.3.0) ##### Notable Changes - \[[`6349b1d673`](https://github.com/nodejs/node/commit/6349b1d673)] - **(SEMVER-MINOR)** **dns**: add a cancel() method to the promise Resolver (Szymon Marczak) [#&#8203;33099](https://github.com/nodejs/node/pull/33099) - \[[`9ce9b016e6`](https://github.com/nodejs/node/commit/9ce9b016e6)] - **(SEMVER-MINOR)** **events**: add max listener warning for EventTarget (James M Snell) [#&#8203;36001](https://github.com/nodejs/node/pull/36001) - \[[`8390f8a86b`](https://github.com/nodejs/node/commit/8390f8a86b)] - **(SEMVER-MINOR)** **http**: add support for abortsignal to http.request (Benjamin Gruenbaum) [#&#8203;36048](https://github.com/nodejs/node/pull/36048) - \[[`9c6be3cc90`](https://github.com/nodejs/node/commit/9c6be3cc90)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978) - \[[`15ff155c12`](https://github.com/nodejs/node/commit/15ff155c12)] - **(SEMVER-MINOR)** **lib**: add throws option to fs.f/l/statSync (Andrew Casey) [#&#8203;33716](https://github.com/nodejs/node/pull/33716) - \[[`85c85d368a`](https://github.com/nodejs/node/commit/85c85d368a)] - **(SEMVER-MINOR)** **path**: add `path/posix` and `path/win32` alias modules (ExE Boss) [#&#8203;34962](https://github.com/nodejs/node/pull/34962) - \[[`d1baae3640`](https://github.com/nodejs/node/commit/d1baae3640)] - **(SEMVER-MINOR)** **readline**: add getPrompt to get the current prompt (Mattias Runge-Broberg) [#&#8203;33675](https://github.com/nodejs/node/pull/33675) - \[[`5729478509`](https://github.com/nodejs/node/commit/5729478509)] - **(SEMVER-MINOR)** **src**: add loop idle time in diagnostic report (Gireesh Punathil) [#&#8203;35940](https://github.com/nodejs/node/pull/35940) - \[[`baa87c1a7d`](https://github.com/nodejs/node/commit/baa87c1a7d)] - **(SEMVER-MINOR)** **util**: add `util/types` alias module (ExE Boss) [#&#8203;34055](https://github.com/nodejs/node/pull/34055) ##### Commits - \[[`34aa0c868e`](https://github.com/nodejs/node/commit/34aa0c868e)] - **assert**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35998](https://github.com/nodejs/node/pull/35998) - \[[`28d710164a`](https://github.com/nodejs/node/commit/28d710164a)] - **async_hooks**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36168](https://github.com/nodejs/node/pull/36168) - \[[`1924255fdb`](https://github.com/nodejs/node/commit/1924255fdb)] - **async_hooks**: fix leak in AsyncLocalStorage exit (Stephen Belanger) [#&#8203;35779](https://github.com/nodejs/node/pull/35779) - \[[`3ee556a867`](https://github.com/nodejs/node/commit/3ee556a867)] - **benchmark**: fix build warnings (Gabriel Schulhof) [#&#8203;36157](https://github.com/nodejs/node/pull/36157) - \[[`fcc38a1312`](https://github.com/nodejs/node/commit/fcc38a1312)] - **build**: replace which with command -v (raisinten) [#&#8203;36118](https://github.com/nodejs/node/pull/36118) - \[[`60874ba941`](https://github.com/nodejs/node/commit/60874ba941)] - **build**: try “python3” as a last resort for 3.x (Ole André Vadla Ravnås) [#&#8203;35983](https://github.com/nodejs/node/pull/35983) - \[[`fbe210b2a1`](https://github.com/nodejs/node/commit/fbe210b2a1)] - **build**: conditionally clear vcinstalldir (Brian Ingenito) [#&#8203;36009](https://github.com/nodejs/node/pull/36009) - \[[`56f83e6876`](https://github.com/nodejs/node/commit/56f83e6876)] - **build**: refactor configure.py to use argparse (raisinten) [#&#8203;35755](https://github.com/nodejs/node/pull/35755) - \[[`0b70822461`](https://github.com/nodejs/node/commit/0b70822461)] - **child_process**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36003](https://github.com/nodejs/node/pull/36003) - \[[`e54108f2e4`](https://github.com/nodejs/node/commit/e54108f2e4)] - **cluster**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36011](https://github.com/nodejs/node/pull/36011) - \[[`272fc794b2`](https://github.com/nodejs/node/commit/272fc794b2)] - **crypto**: fix format warning in AdditionalConfig (raisinten) [#&#8203;36060](https://github.com/nodejs/node/pull/36060) - \[[`63a138e02f`](https://github.com/nodejs/node/commit/63a138e02f)] - **crypto**: fix passing TypedArray to webcrypto AES methods (Antoine du Hamel) [#&#8203;36087](https://github.com/nodejs/node/pull/36087) - \[[`4a88c73fa5`](https://github.com/nodejs/node/commit/4a88c73fa5)] - **deps**: upgrade npm to 7.0.14 (nlf) [#&#8203;36238](https://github.com/nodejs/node/pull/36238) - \[[`d16e8622a7`](https://github.com/nodejs/node/commit/d16e8622a7)] - **deps**: upgrade npm to 7.0.13 (Ruy Adorno) [#&#8203;36202](https://github.com/nodejs/node/pull/36202) - \[[`c23ee3744f`](https://github.com/nodejs/node/commit/c23ee3744f)] - **deps**: upgrade npm to 7.0.12 (Ruy Adorno) [#&#8203;36153](https://github.com/nodejs/node/pull/36153) - \[[`0fcbb1c0d5`](https://github.com/nodejs/node/commit/0fcbb1c0d5)] - **deps**: V8: cherry-pick [`3176bfd`](https://github.com/nodejs/node/commit/3176bfd447a9) (Anna Henningsen) [#&#8203;35612](https://github.com/nodejs/node/pull/35612) - \[[`27f1bc05fd`](https://github.com/nodejs/node/commit/27f1bc05fd)] - **deps**: upgrade npm to 7.0.11 (Darcy Clarke) [#&#8203;36112](https://github.com/nodejs/node/pull/36112) - \[[`8ae3ffe2be`](https://github.com/nodejs/node/commit/8ae3ffe2be)] - **deps**: V8: cherry-pick [`1d0f426`](https://github.com/nodejs/node/commit/1d0f426311d4) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`4b7ba11d67`](https://github.com/nodejs/node/commit/4b7ba11d67)] - **deps**: V8: cherry-pick [`4e077ff`](https://github.com/nodejs/node/commit/4e077ff0444a) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`098a5b1298`](https://github.com/nodejs/node/commit/098a5b1298)] - **deps**: V8: cherry-pick [`086eecb`](https://github.com/nodejs/node/commit/086eecbd96b6) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`d2c757ab19`](https://github.com/nodejs/node/commit/d2c757ab19)] - **deps**: V8: cherry-pick [`27e1ac1`](https://github.com/nodejs/node/commit/27e1ac1a79ff) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`6349b1d673`](https://github.com/nodejs/node/commit/6349b1d673)] - **(SEMVER-MINOR)** **dns**: add a cancel() method to the promise Resolver (Szymon Marczak) [#&#8203;33099](https://github.com/nodejs/node/pull/33099) - \[[`0fbade38ef`](https://github.com/nodejs/node/commit/0fbade38ef)] - **doc**: add arm64 macOS as experimental (Richard Lau) [#&#8203;36189](https://github.com/nodejs/node/pull/36189) - \[[`42dfda8f78`](https://github.com/nodejs/node/commit/42dfda8f78)] - **doc**: remove stray comma in url.md (Rich Trott) [#&#8203;36175](https://github.com/nodejs/node/pull/36175) - \[[`8bbdbccbb6`](https://github.com/nodejs/node/commit/8bbdbccbb6)] - **doc**: revise agent.destroy() text (Rich Trott) [#&#8203;36163](https://github.com/nodejs/node/pull/36163) - \[[`545ac1fec5`](https://github.com/nodejs/node/commit/545ac1fec5)] - **doc**: fix punctuation in v8.md (Rich Trott) [#&#8203;36192](https://github.com/nodejs/node/pull/36192) - \[[`a6a90af8c0`](https://github.com/nodejs/node/commit/a6a90af8c0)] - **doc**: add compatibility/interop technical value (Geoffrey Booth) [#&#8203;35323](https://github.com/nodejs/node/pull/35323) - \[[`4ab4a99900`](https://github.com/nodejs/node/commit/4ab4a99900)] - **doc**: de-emphasize wrapping in napi_define_class (Gabriel Schulhof) [#&#8203;36159](https://github.com/nodejs/node/pull/36159) - \[[`bb29508e8f`](https://github.com/nodejs/node/commit/bb29508e8f)] - **doc**: add link for v8.takeCoverage() (Rich Trott) [#&#8203;36135](https://github.com/nodejs/node/pull/36135) - \[[`24065b92f1`](https://github.com/nodejs/node/commit/24065b92f1)] - **doc**: mark modules implementation as stable (Guy Bedford) [#&#8203;35781](https://github.com/nodejs/node/pull/35781) - \[[`142cacdc63`](https://github.com/nodejs/node/commit/142cacdc63)] - **doc**: clarify text about process not responding (Rich Trott) [#&#8203;36117](https://github.com/nodejs/node/pull/36117) - \[[`0ff384b0be`](https://github.com/nodejs/node/commit/0ff384b0be)] - **doc**: esm docs consolidation and reordering (Guy Bedford) [#&#8203;36046](https://github.com/nodejs/node/pull/36046) - \[[`b17a83a00d`](https://github.com/nodejs/node/commit/b17a83a00d)] - **doc**: claim ABI version for Electron v13 (Shelley Vohr) [#&#8203;36101](https://github.com/nodejs/node/pull/36101) - \[[`e8a8513b2c`](https://github.com/nodejs/node/commit/e8a8513b2c)] - **doc**: fix invalid link in worker_threads.md (Rich Trott) [#&#8203;36109](https://github.com/nodejs/node/pull/36109) - \[[`cd33594a0d`](https://github.com/nodejs/node/commit/cd33594a0d)] - **doc**: move shigeki to emeritus (Rich Trott) [#&#8203;36093](https://github.com/nodejs/node/pull/36093) - \[[`eefc6aa6c9`](https://github.com/nodejs/node/commit/eefc6aa6c9)] - **doc**: document the error when cwd not exists in child_process.spawn (FeelyChau) [#&#8203;34505](https://github.com/nodejs/node/pull/34505) - \[[`841a2812d0`](https://github.com/nodejs/node/commit/841a2812d0)] - **doc**: fix typo in debugger.md (Rich Trott) [#&#8203;36066](https://github.com/nodejs/node/pull/36066) - \[[`500e709439`](https://github.com/nodejs/node/commit/500e709439)] - **doc**: update list styles for remark-parse@9 rendering (Rich Trott) [#&#8203;36049](https://github.com/nodejs/node/pull/36049) - \[[`a8dab217eb`](https://github.com/nodejs/node/commit/a8dab217eb)] - **doc,url**: fix url.hostname example (Rishabh Mehan) [#&#8203;33735](https://github.com/nodejs/node/pull/33735) - \[[`e48ec703ba`](https://github.com/nodejs/node/commit/e48ec703ba)] - **domain**: improve deprecation warning text for DEP0097 (Anna Henningsen) [#&#8203;36136](https://github.com/nodejs/node/pull/36136) - \[[`bcbf176c22`](https://github.com/nodejs/node/commit/bcbf176c22)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36167](https://github.com/nodejs/node/pull/36167) - \[[`66788970ac`](https://github.com/nodejs/node/commit/66788970ac)] - **esm**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36019](https://github.com/nodejs/node/pull/36019) - \[[`9ce9b016e6`](https://github.com/nodejs/node/commit/9ce9b016e6)] - **(SEMVER-MINOR)** **events**: add max listener warning for EventTarget (James M Snell) [#&#8203;36001](https://github.com/nodejs/node/pull/36001) - \[[`1550073dbc`](https://github.com/nodejs/node/commit/1550073dbc)] - **events**: disabled manual construction AbortSignal (raisinten) [#&#8203;36094](https://github.com/nodejs/node/pull/36094) - \[[`8a6cabbb23`](https://github.com/nodejs/node/commit/8a6cabbb23)] - **events**: port some wpt tests (Ethan Arrowood) [#&#8203;34169](https://github.com/nodejs/node/pull/34169) - \[[`3691eccf0a`](https://github.com/nodejs/node/commit/3691eccf0a)] - **fs**: remove experimental from promises.rmdir recursive (Anders Kaseorg) [#&#8203;36131](https://github.com/nodejs/node/pull/36131) - \[[`76b1863240`](https://github.com/nodejs/node/commit/76b1863240)] - **fs**: filehandle read now accepts object as argument (Nikola Glavina) [#&#8203;34180](https://github.com/nodejs/node/pull/34180) - \[[`2fdf509268`](https://github.com/nodejs/node/commit/2fdf509268)] - **http**: fix typo in comment (Hollow Man) [#&#8203;36193](https://github.com/nodejs/node/pull/36193) - \[[`8390f8a86b`](https://github.com/nodejs/node/commit/8390f8a86b)] - **(SEMVER-MINOR)** **http**: add support for abortsignal to http.request (Benjamin Gruenbaum) [#&#8203;36048](https://github.com/nodejs/node/pull/36048) - \[[`387d92fd0e`](https://github.com/nodejs/node/commit/387d92fd0e)] - **http**: onFinish will not be triggered again when finished (rickyes) [#&#8203;35845](https://github.com/nodejs/node/pull/35845) - \[[`48bf59bb8b`](https://github.com/nodejs/node/commit/48bf59bb8b)] - **http2**: add support for AbortSignal to http2Session.request (Madara Uchiha) [#&#8203;36070](https://github.com/nodejs/node/pull/36070) - \[[`8a0c3b9c76`](https://github.com/nodejs/node/commit/8a0c3b9c76)] - **http2**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36142](https://github.com/nodejs/node/pull/36142) - \[[`f0aed8c01c`](https://github.com/nodejs/node/commit/f0aed8c01c)] - **http2**: add support for TypedArray to getUnpackedSettings (Antoine du Hamel) [#&#8203;36141](https://github.com/nodejs/node/pull/36141) - \[[`9c6be3cc90`](https://github.com/nodejs/node/commit/9c6be3cc90)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978) - \[[`0b40568afe`](https://github.com/nodejs/node/commit/0b40568afe)] - **http2**: delay session.receive() by a tick (Szymon Marczak) [#&#8203;35985](https://github.com/nodejs/node/pull/35985) - \[[`1a4d43f840`](https://github.com/nodejs/node/commit/1a4d43f840)] - **lib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36140](https://github.com/nodejs/node/pull/36140) - \[[`d6ea12e003`](https://github.com/nodejs/node/commit/d6ea12e003)] - **lib**: set abort-controller toStringTag (Benjamin Gruenbaum) [#&#8203;36115](https://github.com/nodejs/node/pull/36115) - \[[`82f1cde57e`](https://github.com/nodejs/node/commit/82f1cde57e)] - **lib**: remove primordials.SafePromise (Antoine du Hamel) [#&#8203;36149](https://github.com/nodejs/node/pull/36149) - \[[`15ff155c12`](https://github.com/nodejs/node/commit/15ff155c12)] - **(SEMVER-MINOR)** **lib**: add throws option to fs.f/l/statSync (Andrew Casey) [#&#8203;33716](https://github.com/nodejs/node/pull/33716) - \[[`75707f45eb`](https://github.com/nodejs/node/commit/75707f45eb)] - **lib,tools**: enforce access to prototype from primordials (Antoine du Hamel) [#&#8203;36025](https://github.com/nodejs/node/pull/36025) - \[[`79b2ba6744`](https://github.com/nodejs/node/commit/79b2ba6744)] - **n-api**: clean up binding creation (Gabriel Schulhof) [#&#8203;36170](https://github.com/nodejs/node/pull/36170) - \[[`5698cc08f0`](https://github.com/nodejs/node/commit/5698cc08f0)] - **n-api**: fix test_async_context warnings (Gabriel Schulhof) [#&#8203;36171](https://github.com/nodejs/node/pull/36171) - \[[`3d623d850c`](https://github.com/nodejs/node/commit/3d623d850c)] - **n-api**: improve consistency of how we get context (Michael Dawson) [#&#8203;36068](https://github.com/nodejs/node/pull/36068) - \[[`89da0c3353`](https://github.com/nodejs/node/commit/89da0c3353)] - **n-api**: factor out calling pattern (Gabriel Schulhof) [#&#8203;36113](https://github.com/nodejs/node/pull/36113) - \[[`5c0ddbca01`](https://github.com/nodejs/node/commit/5c0ddbca01)] - **net**: fix invalid write after end error (Robert Nagy) [#&#8203;36043](https://github.com/nodejs/node/pull/36043) - \[[`85c85d368a`](https://github.com/nodejs/node/commit/85c85d368a)] - **(SEMVER-MINOR)** **path**: add `path/posix` and `path/win32` alias modules (ExE Boss) [#&#8203;34962](https://github.com/nodejs/node/pull/34962) - \[[`ed8af3a8b7`](https://github.com/nodejs/node/commit/ed8af3a8b7)] - **perf_hooks**: make nodeTiming a first-class object (Momtchil Momtchev) [#&#8203;35977](https://github.com/nodejs/node/pull/35977) - \[[`eb9295b583`](https://github.com/nodejs/node/commit/eb9295b583)] - **promise**: emit error on domain unhandled rejections (Benjamin Gruenbaum) [#&#8203;36082](https://github.com/nodejs/node/pull/36082) - \[[`59af919d6b`](https://github.com/nodejs/node/commit/59af919d6b)] - **querystring**: reduce memory usage by Int8Array (sapics) [#&#8203;34179](https://github.com/nodejs/node/pull/34179) - \[[`d1baae3640`](https://github.com/nodejs/node/commit/d1baae3640)] - **(SEMVER-MINOR)** **readline**: add getPrompt to get the current prompt (Mattias Runge-Broberg) [#&#8203;33675](https://github.com/nodejs/node/pull/33675) - \[[`6d1b1c7ad0`](https://github.com/nodejs/node/commit/6d1b1c7ad0)] - **src**: integrate URL::href() and use in inspector (Daijiro Wachi) [#&#8203;35912](https://github.com/nodejs/node/pull/35912) - \[[`7086f2e653`](https://github.com/nodejs/node/commit/7086f2e653)] - **src**: refactor using-declarations node_env_var.cc (raisinten) [#&#8203;36128](https://github.com/nodejs/node/pull/36128) - \[[`122797e87f`](https://github.com/nodejs/node/commit/122797e87f)] - **src**: remove duplicate logic for getting buffer (Yash Ladha) [#&#8203;34553](https://github.com/nodejs/node/pull/34553) - \[[`5729478509`](https://github.com/nodejs/node/commit/5729478509)] - **(SEMVER-MINOR)** **src**: add loop idle time in diagnostic report (Gireesh Punathil) [#&#8203;35940](https://github.com/nodejs/node/pull/35940) - \[[`a81dc9ae18`](https://github.com/nodejs/node/commit/a81dc9ae18)] - **src,crypto**: refactoring of crypto_context, SecureContext (James M Snell) [#&#8203;35665](https://github.com/nodejs/node/pull/35665) - \[[`5fa35f6934`](https://github.com/nodejs/node/commit/5fa35f6934)] - **test**: update comments in test-fs-read-offset-null (Rich Trott) [#&#8203;36152](https://github.com/nodejs/node/pull/36152) - \[[`73bb54af77`](https://github.com/nodejs/node/commit/73bb54af77)] - **test**: update wpt url and resource (Daijiro Wachi) [#&#8203;36032](https://github.com/nodejs/node/pull/36032) - \[[`77b47dfd08`](https://github.com/nodejs/node/commit/77b47dfd08)] - **test**: fix typo in inspector-helper.js (Luigi Pinca) [#&#8203;36127](https://github.com/nodejs/node/pull/36127) - \[[`474664963c`](https://github.com/nodejs/node/commit/474664963c)] - **test**: deflake test-http-destroyed-socket-write2 (Luigi Pinca) [#&#8203;36120](https://github.com/nodejs/node/pull/36120) - \[[`f9bbd35937`](https://github.com/nodejs/node/commit/f9bbd35937)] - **test**: make test-http2-client-jsstream-destroy.js reliable (Rich Trott) [#&#8203;36129](https://github.com/nodejs/node/pull/36129) - \[[`c19df17acb`](https://github.com/nodejs/node/commit/c19df17acb)] - **test**: add test for fs.read when offset key is null (mayank agarwal) [#&#8203;35918](https://github.com/nodejs/node/pull/35918) - \[[`9405cddbee`](https://github.com/nodejs/node/commit/9405cddbee)] - **test**: improve test-stream-duplex-readable-end (Luigi Pinca) [#&#8203;36056](https://github.com/nodejs/node/pull/36056) - \[[`3be5e86c57`](https://github.com/nodejs/node/commit/3be5e86c57)] - **test**: add util.inspect test for null maxStringLength (Rich Trott) [#&#8203;36086](https://github.com/nodejs/node/pull/36086) - \[[`6a4cc43028`](https://github.com/nodejs/node/commit/6a4cc43028)] - **test**: replace var with const (Aleksandr Krutko) [#&#8203;36069](https://github.com/nodejs/node/pull/36069) - \[[`a367c0dfc2`](https://github.com/nodejs/node/commit/a367c0dfc2)] - **timers**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36132](https://github.com/nodejs/node/pull/36132) - \[[`a6ef92bc27`](https://github.com/nodejs/node/commit/a6ef92bc27)] - **tools**: bump unist-util-find@1.0.1 to unist-util-find@1.0.2 (Rich Trott) [#&#8203;36106](https://github.com/nodejs/node/pull/36106) - \[[`2d2491284e`](https://github.com/nodejs/node/commit/2d2491284e)] - **tools**: only use 2 cores for macos action (Myles Borins) [#&#8203;36169](https://github.com/nodejs/node/pull/36169) - \[[`d8fcf2c324`](https://github.com/nodejs/node/commit/d8fcf2c324)] - **tools**: remove bashisms from license builder script (Antoine du Hamel) [#&#8203;36122](https://github.com/nodejs/node/pull/36122) - \[[`7e7ddb11c0`](https://github.com/nodejs/node/commit/7e7ddb11c0)] - **tools**: hide commit queue action link (Antoine du Hamel) [#&#8203;36124](https://github.com/nodejs/node/pull/36124) - \[[`63494e434a`](https://github.com/nodejs/node/commit/63494e434a)] - **tools**: update doc tools to remark-parse@9.0.0 (Rich Trott) [#&#8203;36049](https://github.com/nodejs/node/pull/36049) - \[[`bf0550ce4e`](https://github.com/nodejs/node/commit/bf0550ce4e)] - **tools**: enforce use of single quotes in editorconfig (Antoine du Hamel) [#&#8203;36020](https://github.com/nodejs/node/pull/36020) - \[[`49649a499e`](https://github.com/nodejs/node/commit/49649a499e)] - **tools**: fix config serialization w/ long strings (Ole André Vadla Ravnås) [#&#8203;35982](https://github.com/nodejs/node/pull/35982) - \[[`be220b213d`](https://github.com/nodejs/node/commit/be220b213d)] - **tools**: update ESLint to 7.13.0 (Luigi Pinca) [#&#8203;36031](https://github.com/nodejs/node/pull/36031) - \[[`4140f491fd`](https://github.com/nodejs/node/commit/4140f491fd)] - **util**: fix to inspect getters that access this (raisinten) [#&#8203;36052](https://github.com/nodejs/node/pull/36052) - \[[`baa87c1a7d`](https://github.com/nodejs/node/commit/baa87c1a7d)] - **(SEMVER-MINOR)** **util**: add `util/types` alias module (ExE Boss) [#&#8203;34055](https://github.com/nodejs/node/pull/34055) - \[[`f7b2fce1c1`](https://github.com/nodejs/node/commit/f7b2fce1c1)] - **vm**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36023](https://github.com/nodejs/node/pull/36023) - \[[`4e3883ec2d`](https://github.com/nodejs/node/commit/4e3883ec2d)] - **win,build,tools**: support VS prerelease (Baruch Odem) [#&#8203;36033](https://github.com/nodejs/node/pull/36033) ### [`v15.2.1`](https://github.com/nodejs/node/releases/v15.2.1) [Compare Source](https://github.com/nodejs/node/compare/v15.2.0...v15.2.1) ##### Notable changes This is a security release. Vulnerabilities fixed: - **CVE-2020-8277**: Denial of Service through DNS request (High). A Node.js application that allows an attacker to trigger a DNS request for a host of their choice could trigger a Denial of service by getting the application to resolve a DNS record with a larger number of responses. ##### Commits - \[[`2a44836eeb`](https://github.com/nodejs/node/commit/2a44836eeb)] - **deps**: cherry-pick [`0d252eb`](https://github.com/nodejs/node/commit/0d252eb) from upstream c-ares (Michael Dawson) [nodejs-private/node-private#&#8203;231](https://github.com/nodejs-private/node-private/pull/231) - \[[`b1f5518a0a`](https://github.com/nodejs/node/commit/b1f5518a0a)] - **doc**: fix `events.getEventListeners` example (Dmitry Semigradsky) [#&#8203;36085](https://github.com/nodejs/node/pull/36085) - \[[`b477447a55`](https://github.com/nodejs/node/commit/b477447a55)] - **doc**: fix `added:` info for `stream.\_construct()` (Luigi Pinca) [#&#8203;36067](https://github.com/nodejs/node/pull/36067) - \[[`df211208c0`](https://github.com/nodejs/node/commit/df211208c0)] - **test**: add missing test coverage for setLocalAddress() (Rich Trott) [#&#8203;36039](https://github.com/nodejs/node/pull/36039) - \[[`f5191f5bd2`](https://github.com/nodejs/node/commit/f5191f5bd2)] - **test**: remove flaky designation for fixed test (Rich Trott) [#&#8203;35961](https://github.com/nodejs/node/pull/35961) - \[[`a2f652f7c5`](https://github.com/nodejs/node/commit/a2f652f7c5)] - **test**: move test-worker-eventlooputil to sequential (Rich Trott) [#&#8203;35996](https://github.com/nodejs/node/pull/35996) - \[[`b0b43b27d6`](https://github.com/nodejs/node/commit/b0b43b27d6)] - **test**: fix unreliable test-fs-write-file.js (Rich Trott) [#&#8203;36102](https://github.com/nodejs/node/pull/36102) ### [`v15.2.0`](https://github.com/nodejs/node/releases/v15.2.0) [Compare Source](https://github.com/nodejs/node/compare/v15.1.0...v15.2.0) ##### Notable changes - **events**: - getEventListeners static (Benjamin Gruenbaum) [#&#8203;35991](https://github.com/nodejs/node/pull/35991) - **fs**: - support abortsignal in writeFile (Benjamin Gruenbaum) [#&#8203;35993](https://github.com/nodejs/node/pull/35993) - add support for AbortSignal in readFile (Benjamin Gruenbaum) [#&#8203;35911](https://github.com/nodejs/node/pull/35911) - **stream**: - fix thrown object reference (Gil Pedersen) [#&#8203;36065](https://github.com/nodejs/node/pull/36065) ##### Commits - \[[`9d9a044c1b`](https://github.com/nodejs/node/commit/9d9a044c1b)] - **benchmark**: ignore build artifacts for napi addons (Richard Lau) [#&#8203;35970](https://github.com/nodejs/node/pull/35970) - \[[`4c6de854be`](https://github.com/nodejs/node/commit/4c6de854be)] - **benchmark**: remove modules that require intl (Richard Lau) [#&#8203;35968](https://github.com/nodejs/node/pull/35968) - \[[`292915a6a8`](https://github.com/nodejs/node/commit/292915a6a8)] - **bootstrap**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35999](https://github.com/nodejs/node/pull/35999) - \[[`10c9ea771d`](https://github.com/nodejs/node/commit/10c9ea771d)] - **build**: fix zlib inlining for IA-32 (raisinten) [#&#8203;35679](https://github.com/nodejs/node/pull/35679) - \[[`6ac9c8f31b`](https://github.com/nodejs/node/commit/6ac9c8f31b)] - **build, tools**: look for local installation of NASM (Richard Lau) [#&#8203;36014](https://github.com/nodejs/node/pull/36014) - \[[`9757b47c44`](https://github.com/nodejs/node/commit/9757b47c44)] - **console**: use more primordials (Antoine du Hamel) [#&#8203;35734](https://github.com/nodejs/node/pull/35734) - \[[`0d7422651b`](https://github.com/nodejs/node/commit/0d7422651b)] - **crypto**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36012](https://github.com/nodejs/node/pull/36012) - \[[`dc4936ba50`](https://github.com/nodejs/node/commit/dc4936ba50)] - **crypto**: fix comment in ByteSource (Tobias Nießen) [#&#8203;35972](https://github.com/nodejs/node/pull/35972) - \[[`7cb5c0911e`](https://github.com/nodejs/node/commit/7cb5c0911e)] - **deps**: cherry-pick [`9a49b22`](https://github.com/nodejs/node/commit/9a49b22) from V8 upstream (Daniel Bevenius) [#&#8203;35939](https://github.com/nodejs/node/pull/35939) - \[[`4b03670877`](https://github.com/nodejs/node/commit/4b03670877)] - **dns**: fix trace_events name for resolveCaa() (Rich Trott) [#&#8203;35979](https://github.com/nodejs/node/pull/35979) - \[[`dcb27600da`](https://github.com/nodejs/node/commit/dcb27600da)] - **doc**: escape asterisk in cctest gtest-filter (raisinten) [#&#8203;36034](https://github.com/nodejs/node/pull/36034) - \[[`923276ca53`](https://github.com/nodejs/node/commit/923276ca53)] - **doc**: move v8.getHeapCodeStatistics() (Rich Trott) [#&#8203;36027](https://github.com/nodejs/node/pull/36027) - \[[`71fa9c6b24`](https://github.com/nodejs/node/commit/71fa9c6b24)] - **doc**: add note regarding file structure in src/README.md (Denys Otrishko) [#&#8203;35000](https://github.com/nodejs/node/pull/35000) - \[[`99cb36238d`](https://github.com/nodejs/node/commit/99cb36238d)] - **doc**: advise users to import the full set of trusted release keys (Reşat SABIQ) [#&#8203;32655](https://github.com/nodejs/node/pull/32655) - \[[`06cc400160`](https://github.com/nodejs/node/commit/06cc400160)] - **doc**: fix crypto doc linter errors (Antoine du Hamel) [#&#8203;36035](https://github.com/nodejs/node/pull/36035) - \[[`01129a7b39`](https://github.com/nodejs/node/commit/01129a7b39)] - **doc**: revise v8.getHeapSnapshot() (Rich Trott) [#&#8203;35849](https://github.com/nodejs/node/pull/35849) - \[[`77d33c9b2f`](https://github.com/nodejs/node/commit/77d33c9b2f)] - **doc**: update core-validate-commit link in guide (Daijiro Wachi) [#&#8203;35938](https://github.com/nodejs/node/pull/35938) - \[[`6d56ba03e2`](https://github.com/nodejs/node/commit/6d56ba03e2)] - **doc**: update benchmark CI test indicator in README (Rich Trott) [#&#8203;35945](https://github.com/nodejs/node/pull/35945) - \[[`8bd364a9b3`](https://github.com/nodejs/node/commit/8bd364a9b3)] - **doc**: add new wordings to the API description (Pooja D.P) [#&#8203;35588](https://github.com/nodejs/node/pull/35588) - \[[`acd3617e1a`](https://github.com/nodejs/node/commit/acd3617e1a)] - **doc**: option --prof documentation help added (krank2me) [#&#8203;34991](https://github.com/nodejs/node/pull/34991) - \[[`6968b0fd49`](https://github.com/nodejs/node/commit/6968b0fd49)] - **doc**: fix release-schedule link in backport guide (Daijiro Wachi) [#&#8203;35920](https://github.com/nodejs/node/pull/35920) - \[[`efbfeff62b`](https://github.com/nodejs/node/commit/efbfeff62b)] - **doc**: fix incorrect heading level (Bryan Field) [#&#8203;35965](https://github.com/nodejs/node/pull/35965) - \[[`9c4b360d08`](https://github.com/nodejs/node/commit/9c4b360d08)] - **doc,crypto**: added sign/verify method changes about dsaEncoding (Filip Skokan) [#&#8203;35480](https://github.com/nodejs/node/pull/35480) - \[[`85cf30541d`](https://github.com/nodejs/node/commit/85cf30541d)] - **doc,fs**: document value of stats.isDirectory on symbolic links (coderaiser) [#&#8203;27413](https://github.com/nodejs/node/pull/27413) - \[[`d6bd78ff82`](https://github.com/nodejs/node/commit/d6bd78ff82)] - **doc,net**: document socket.timeout (Brandon Kobel) [#&#8203;34543](https://github.com/nodejs/node/pull/34543) - \[[`36c20d939a`](https://github.com/nodejs/node/commit/36c20d939a)] - **doc,stream**: write(chunk, encoding, cb) encoding can be null (dev-script) [#&#8203;35372](https://github.com/nodejs/node/pull/35372) - \[[`9d26c4d496`](https://github.com/nodejs/node/commit/9d26c4d496)] - **domain**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35885](https://github.com/nodejs/node/pull/35885) - \[[`d83e253065`](https://github.com/nodejs/node/commit/d83e253065)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35944](https://github.com/nodejs/node/pull/35944) - \[[`567f8d8caf`](https://github.com/nodejs/node/commit/567f8d8caf)] - **(SEMVER-MINOR)** **events**: getEventListeners static (Benjamin Gruenbaum) [#&#8203;35991](https://github.com/nodejs/node/pull/35991) - \[[`9e673723e3`](https://github.com/nodejs/node/commit/9e673723e3)] - **events**: fire handlers in correct oder (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`ff59fcdf7b`](https://github.com/nodejs/node/commit/ff59fcdf7b)] - **events**: define abort on prototype (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`ab0eb4f2c9`](https://github.com/nodejs/node/commit/ab0eb4f2c9)] - **events**: support event handlers on prototypes (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`33e2ee58a7`](https://github.com/nodejs/node/commit/33e2ee58a7)] - **events**: define event handler as enumerable (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`a7d0c76f86`](https://github.com/nodejs/node/commit/a7d0c76f86)] - **events**: support emit on nodeeventtarget (Benjamin Gruenbaum) [#&#8203;35851](https://github.com/nodejs/node/pull/35851) - \[[`76332a0439`](https://github.com/nodejs/node/commit/76332a0439)] - **events**: port some wpt tests (Benjamin Gruenbaum) [#&#8203;33621](https://github.com/nodejs/node/pull/33621) - \[[`ccf9f0e62e`](https://github.com/nodejs/node/commit/ccf9f0e62e)] - **(SEMVER-MINOR)** **fs**: support abortsignal in writeFile (Benjamin Gruenbaum) [#&#8203;35993](https://github.com/nodejs/node/pull/35993) - \[[`7ef9c707e9`](https://github.com/nodejs/node/commit/7ef9c707e9)] - **fs**: replace finally with PromisePrototypeFinally (Baruch Odem (Rothkoff)) [#&#8203;35995](https://github.com/nodejs/node/pull/35995) - \[[`ccbe267515`](https://github.com/nodejs/node/commit/ccbe267515)] - **fs**: remove unnecessary Function#bind() in fs/promises (Ben Noordhuis) [#&#8203;35208](https://github.com/nodejs/node/pull/35208) - \[[`6011bfdec5`](https://github.com/nodejs/node/commit/6011bfdec5)] - **fs**: remove unused assignment (Rich Trott) [#&#8203;35882](https://github.com/nodejs/node/pull/35882) - \[[`92bdfd141b`](https://github.com/nodejs/node/commit/92bdfd141b)] - **(SEMVER-MINOR)** **fs**: add support for AbortSignal in readFile (Benjamin Gruenbaum) [#&#8203;35911](https://github.com/nodejs/node/pull/35911) - \[[`11f592450b`](https://github.com/nodejs/node/commit/11f592450b)] - **http2**: add has method to proxySocketHandler (masx200) [#&#8203;35197](https://github.com/nodejs/node/pull/35197) - \[[`28ed7d062e`](https://github.com/nodejs/node/commit/28ed7d062e)] - **http2**: centralise socket event binding in Http2Session (Momtchil Momtchev) [#&#8203;35772](https://github.com/nodejs/node/pull/35772) - \[[`429113ebfb`](https://github.com/nodejs/node/commit/429113ebfb)] - **http2**: move events to the JSStreamSocket (Momtchil Momtchev) [#&#8203;35772](https://github.com/nodejs/node/pull/35772) - \[[`1dd744a420`](https://github.com/nodejs/node/commit/1dd744a420)] - **http2**: fix error stream write followed by destroy (David Halls) [#&#8203;35951](https://github.com/nodejs/node/pull/35951) - \[[`af2a560c42`](https://github.com/nodejs/node/commit/af2a560c42)] - **lib**: add %TypedArray% abstract constructor to primordials (ExE Boss) [#&#8203;36016](https://github.com/nodejs/node/pull/36016) - \[[`b700900d02`](https://github.com/nodejs/node/commit/b700900d02)] - **lib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35875](https://github.com/nodejs/node/pull/35875) - \[[`7a375902ff`](https://github.com/nodejs/node/commit/7a375902ff)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36024](https://github.com/nodejs/node/pull/36024) - \[[`8d76db86b5`](https://github.com/nodejs/node/commit/8d76db86b5)] - **module**: refactor to use iterable-weak-map (Benjamin Coe) [#&#8203;35915](https://github.com/nodejs/node/pull/35915) - \[[`9b6512f7de`](https://github.com/nodejs/node/commit/9b6512f7de)] - **n-api**: unlink reference during its destructor (Gabriel Schulhof) [#&#8203;35933](https://github.com/nodejs/node/pull/35933) - \[[`1b277d97f3`](https://github.com/nodejs/node/commit/1b277d97f3)] - **src**: remove ERR prefix in crypto status enums (Daniel Bevenius) [#&#8203;35867](https://github.com/nodejs/node/pull/35867) - \[[`9774b4cc72`](https://github.com/nodejs/node/commit/9774b4cc72)] - **stream**: fix thrown object reference (Gil Pedersen) [#&#8203;36065](https://github.com/nodejs/node/pull/36065) - \[[`359a6590b0`](https://github.com/nodejs/node/commit/359a6590b0)] - **stream**: writableNeedDrain (Robert Nagy) [#&#8203;35348](https://github.com/nodejs/node/pull/35348) - \[[`b7aa5e2296`](https://github.com/nodejs/node/commit/b7aa5e2296)] - **stream**: remove isPromise utility function (Antoine du Hamel) [#&#8203;35925](https://github.com/nodejs/node/pull/35925) - \[[`fdae9ad188`](https://github.com/nodejs/node/commit/fdae9ad188)] - **test**: fix races in test-performance-eventlooputil (Gerhard Stoebich) [#&#8203;36028](https://github.com/nodejs/node/pull/36028) - \[[`0a4c96a7df`](https://github.com/nodejs/node/commit/0a4c96a7df)] - **test**: use global.EventTarget instead of internals (Antoine du Hamel) [#&#8203;36002](https://github.com/nodejs/node/pull/36002) - \[[`f73b8d84db`](https://github.com/nodejs/node/commit/f73b8d84db)] - **test**: improve error message for policy failures (Bradley Meck) [#&#8203;35633](https://github.com/nodejs/node/pull/35633) - \[[`cb6f0d3d89`](https://github.com/nodejs/node/commit/cb6f0d3d89)] - **test**: update old comment style test_util.cc (raisinten) [#&#8203;35884](https://github.com/nodejs/node/pull/35884) - \[[`23f0d0c45c`](https://github.com/nodejs/node/commit/23f0d0c45c)] - **test**: fix error in test/internet/test-dns.js (Rich Trott) [#&#8203;35969](https://github.com/nodejs/node/pull/35969) - \[[`77e4f19701`](https://github.com/nodejs/node/commit/77e4f19701)] - **timers**: cleanup abort listener on awaitable timers (James M Snell) [#&#8203;36006](https://github.com/nodejs/node/pull/36006) - \[[`a7350b3a8f`](https://github.com/nodejs/node/commit/a7350b3a8f)] - **tools**: don't print gold linker warning w/o flag (Myles Borins) [#&#8203;35955](https://github.com/nodejs/node/pull/35955) - \[[`1f27214480`](https://github.com/nodejs/node/commit/1f27214480)] - **tools**: add new ESLint rule: prefer-primordials (Leko) [#&#8203;35448](https://github.com/nodejs/node/pull/35448) - \[[`da3c2ab828`](https://github.com/nodejs/node/commit/da3c2ab828)] - **tools,doc**: enable ecmaVersion 2021 in acorn parser (Antoine du Hamel) [#&#8203;35994](https://github.com/nodejs/node/pull/35994) - \[[`f8098c3e43`](https://github.com/nodejs/node/commit/f8098c3e43)] - **tools,lib**: recommend using safe primordials (Antoine du Hamel) [#&#8203;36026](https://github.com/nodejs/node/pull/36026) - \[[`eea7e3b0d0`](https://github.com/nodejs/node/commit/eea7e3b0d0)] - **tools,lib**: tighten prefer-primordials rules for Error statics (Antoine du Hamel) [#&#8203;36017](https://github.com/nodejs/node/pull/36017) - \[[`7a2edea7ed`](https://github.com/nodejs/node/commit/7a2edea7ed)] - **win, build**: fix build time on Windows (Bartosz Sosnowski) [#&#8203;35932](https://github.com/nodejs/node/pull/35932) ### [`v15.1.0`](https://github.com/nodejs/node/releases/v15.1.0) [Compare Source](https://github.com/nodejs/node/compare/v15.0.1...v15.1.0) ##### Notable Changes ##### Diagnostics channel (experimental module) `diagnostics_channel` is a new experimental module that provides an API to create named channels to report arbitrary message data for diagnostics purposes. With `diagnostics_channel`, Node.js core and module authors can publish contextual data about what they are doing at a given time. This could be the hostname and query string of a mysql query, for example. Just create a named channel with `dc.channel(name)` and call `channel.publish(data)` to send the data to any listeners to that channel. ```js const dc = require('diagnostics_channel'); const channel = dc.channel('mysql.query'); MySQL.prototype.query = function query(queryString, values, callback) { // Broadcast query information whenever a query is made channel.publish({ query: queryString, host: this.hostname, }); this.doQuery(queryString, values, callback); }; ``` Channels are like one big global event emitter but are split into separate objects to ensure they get the best performance. If nothing is listening to the channel, the publishing overhead should be as close to zero as possible. Consuming channel data is as easy as using `channel.subscribe(listener)` to run a function whenever a message is published to that channel. ```js const dc = require('diagnostics_channel'); const channel = dc.channel('mysql.query'); channel.subscribe(({ query, host }) => { console.log(`mysql query to ${host}: ${query}`); }); ``` The data captured can be used to provide context for what an app is doing at a given time. This can be used for things like augmenting tracing data, tracking network and filesystem activity, logging queries, and many other things. It's also a very useful data source for diagnostics tools to provide a clearer picture of exactly what the application is doing at a given point in the data they are presenting. Contributed by Stephen Belanger [#&#8203;34895](https://github.com/nodejs/node/pull/34895). ##### New child process `'spawn'` event Instances of `ChildProcess` now emit a new `'spawn'` event once the child process has spawned successfully. If emitted, the `'spawn'` event comes before all other events and before any data is received via `stdout` or `stderr`. The `'spawn'` event will fire regardless of whether an error occurs **within** the spawned process. For example, if `bash some-command` spawns successfully, the `'spawn'` event will fire, though `bash` may fail to spawn `some-command`. This caveat also applies when using `{ shell: true }`. Contributed by Matthew Francis Brunetti [#&#8203;35369](https://github.com/nodejs/node/pull/35369). ##### Set the local address for DNS resolution It is now possible to set the local IP address used by a `Resolver` instance to send its requests. This allows programs to specify outbound interfaces when used on multi-homed systems. The resolver will use the v4 local address when making requests to IPv4 DNS servers, and the v6 local address when making requests to IPv6 DNS servers. ```js const { Resolver } = require('dns'); const resolver = new Resolver(); resolver.setLocalAddress('10.1.2.3'); // Equivalent to: resolver.setLocalAddress('10.1.2.3', '::0'); ``` Contributed by Josh Dague [#&#8203;34824](https://github.com/nodejs/node/pull/34824). ##### Control V8 coverage at runtime The `v8` module includes two new methods to control the V8 coverage started by the `NODE_V8_COVERAGE` environment variable. With `v8.takeCoverage()`, it is possible to write a coverage report to disk on demand. This can be done multiple times during the lifetime of the process, and the execution counter will be reset on each call. When the process is about to exit, one last coverage will still be written to disk, unless `v8.stopCoverage()` was invoked before. The `v8.stopCoverage()` method allows to stop the coverage collection, so that V8 can release the execution counters and optimize code. Contributed by Joyee Cheung [#&#8203;33807](https://github.com/nodejs/node/pull/33807). ##### Analyze Worker's event loop utilization `Worker` instances now have a `performance` property, with a single `eventLoopUtilization` method that can be used to gather information about the worker's event loop utilization between the `'online'` and `'exit'` events. The method works the same way as `perf_hooks` `eventLoopUtilization()`. Contributed by Trevor Norris [#&#8203;35664](https://github.com/nodejs/node/pull/35664). ##### Take a V8 heap snapshot just before running out of memory (experimental) With the new `--heapsnapshot-near-heap-limit=max_count` experimental command line flag, it is now possible to automatically generate a heap snapshot when the V8 heap usage is approaching the heap limit. `count` should be a non-negative integer (in which case Node.js will write no more than `max_count` snapshots to disk). When generating snapshots, garbage collection may be triggered and bring the heap usage down, therefore multiple snapshots may be written to disk before the Node.js instance finally runs out of memory. These heap snapshots can be compared to determine what objects are being allocated during the time consecutive snapshots are taken. Generating V8 snapshots takes time and memory (both memory managed by the V8 heap and native memory outside the V8 heap). The bigger the heap is, the more resources it needs. Node.js will adjust the V8 heap to accommondate the additional V8 heap memory overhead, and try its best to avoid using up all the memory avialable to the process. ```console $ node --max-old-space-size=100 --heapsnapshot-near-heap-limit=3 index.js Wrote snapshot to Heap.20200430.100036.49580.0.001.heapsnapshot Wrote snapshot to Heap.20200430.100037.49580.0.002.heapsnapshot Wrote snapshot to Heap.20200430.100038.49580.0.003.heapsnapshot <--- Last few GCs ---> [49580:0x110000000] 4826 ms: Mark-sweep 130.6 (147.8) -> 130.5 (147.8) MB, 27.4 / 0.0 ms (average mu = 0.126, current mu = 0.034) allocation failure scavenge might not succeed [49580:0x110000000] 4845 ms: Mark-sweep 130.6 (147.8) -> 130.6 (147.8) MB, 18.8 / 0.0 ms (average mu = 0.088, current mu = 0.031) allocation failure scavenge might not succeed <--- JS stacktrace ---> FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory .... ``` Contributed by Joyee Cheung [#&#8203;33010](https://github.com/nodejs/node/pull/33010). ##### Commits ##### Semver-minor commits - \[[`8169902b40`](https://github.com/nodejs/node/commit/8169902b40)] - **(SEMVER-MINOR)** **child_process**: add ChildProcess 'spawn' event (Matthew Francis Brunetti) [#&#8203;35369](https://github.com/nodejs/node/pull/35369) - \[[`548f91af2c`](https://github.com/nodejs/node/commit/548f91af2c)] - **(SEMVER-MINOR)** **dns**: add setLocalAddress to Resolver (Josh Dague) [#&#8203;34824](https://github.com/nodejs/node/pull/34824) - \[[`f861733bac`](https://github.com/nodejs/node/commit/f861733bac)] - **(SEMVER-MINOR)** **http**: report request start and end with diagnostics_channel (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895) - \[[`883ed4b7f1`](https://github.com/nodejs/node/commit/883ed4b7f1)] - **(SEMVER-MINOR)** **http2**: add updateSettings to both http2 servers (Vincent Boivin) [#&#8203;35383](https://github.com/nodejs/node/pull/35383) - \[[`b38a43d5d9`](https://github.com/nodejs/node/commit/b38a43d5d9)] - **(SEMVER-MINOR)** **lib**: create diagnostics_channel module (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895) - \[[`a7f37bc725`](https://github.com/nodejs/node/commit/a7f37bc725)] - **(SEMVER-MINOR)** **src**: add --heapsnapshot-near-heap-limit option (Joyee Cheung) [#&#8203;33010](https://github.com/nodejs/node/pull/33010) - \[[`7bfa872013`](https://github.com/nodejs/node/commit/7bfa872013)] - **(SEMVER-MINOR)** **v8**: implement v8.stopCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807) - \[[`15ffed5319`](https://github.com/nodejs/node/commit/15ffed5319)] - **(SEMVER-MINOR)** **v8**: implement v8.takeCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807) - \[[`221e28311f`](https://github.com/nodejs/node/commit/221e28311f)] - **(SEMVER-MINOR)** **worker**: add eventLoopUtilization() (Trevor Norris) [#&#8203;35664](https://github.com/nodejs/node/pull/35664) ##### Semver-patch commits - \[[`d95013f399`](https://github.com/nodejs/node/commit/d95013f399)] - **assert,repl**: enable ecmaVersion 2021 in acorn parser (Michaël Zasso) [#&#8203;35827](https://github.com/nodejs/node/pull/35827) - \[[`b11c7378e3`](https://github.com/nodejs/node/commit/b11c7378e3)] - **build**: fix lint-js-fix target (Antoine du Hamel) [#&#8203;35927](https://github.com/nodejs/node/pull/35927) - \[[`a5fa849631`](https://github.com/nodejs/node/commit/a5fa849631)] - **build**: add vcbuilt test-doc target (Antoine du Hamel) [#&#8203;35708](https://github.com/nodejs/node/pull/35708) - \[[`34281cdaba`](https://github.com/nodejs/node/commit/34281cdaba)] - **build**: turn off Codecov comments (bcoe) [#&#8203;35800](https://github.com/nodejs/node/pull/35800) - \[[`a9c09246bb`](https://github.com/nodejs/node/commit/a9c09246bb)] - **build**: add license-builder GitHub Action (Tierney Cyren) [#&#8203;35712](https://github.com/nodejs/node/pull/35712) - \[[`4447ff1162`](https://github.com/nodejs/node/commit/4447ff1162)] - **build,tools**: gitHub Actions: use Node.js Fermium (Antoine du Hamel) [#&#8203;35840](https://github.com/nodejs/node/pull/35840) - \[[`273e147017`](https://github.com/nodejs/node/commit/273e147017)] - **build,tools**: add lint-js-doc target (Antoine du Hamel) [#&#8203;35708](https://github.com/nodejs/node/pull/35708) - \[[`0ebf44b466`](https://github.com/nodejs/node/commit/0ebf44b466)] - **crypto**: pass empty passphrases to OpenSSL properly (Tobias Nießen) [#&#8203;35914](https://github.com/nodejs/node/pull/35914) - \[[`644c416389`](https://github.com/nodejs/node/commit/644c416389)] - **crypto**: rename check to createJob (Daniel Bevenius) [#&#8203;35858](https://github.com/nodejs/node/pull/35858) - \[[`79a8fb62e6`](https://github.com/nodejs/node/commit/79a8fb62e6)] - **crypto**: fixup scrypt regressions (James M Snell) [#&#8203;35821](https://github.com/nodejs/node/pull/35821) - \[[`abd7c9447c`](https://github.com/nodejs/node/commit/abd7c9447c)] - **crypto**: fix webcrypto ECDH JWK import (Filip Skokan) [#&#8203;35855](https://github.com/nodejs/node/pull/35855) - \[[`d3f1cde908`](https://github.com/nodejs/node/commit/d3f1cde908)] - **deps**: upgrade npm to 7.0.8 (Myles Borins) [#&#8203;35953](https://github.com/nodejs/node/pull/35953) - \[[`55adee0947`](https://github.com/nodejs/node/commit/55adee0947)] - **deps**: upgrade npm to 7.0.7 (Luigi Pinca) [#&#8203;35908](https://github.com/nodejs/node/pull/35908) - \[[`5cb77f2e79`](https://github.com/nodejs/node/commit/5cb77f2e79)] - **deps**: upgrade to cjs-module-lexer@1.0.0 (Guy Bedford) [#&#8203;35928](https://github.com/nodejs/node/pull/35928) - \[[`1303a1fca8`](https://github.com/nodejs/node/commit/1303a1fca8)] - **deps**: update to cjs-module-lexer@0.5.2 (Guy Bedford) [#&#8203;35901](https://github.com/nodejs/node/pull/35901) - \[[`20accb08fa`](https://github.com/nodejs/node/commit/20accb08fa)] - **deps**: upgrade to cjs-module-lexer@0.5.0 (Guy Bedford) [#&#8203;35871](https://github.com/nodejs/node/pull/35871) - \[[`52a77db759`](https://github.com/nodejs/node/commit/52a77db759)] - **deps**: update acorn to v8.0.4 (Michaël Zasso) [#&#8203;35791](https://github.com/nodejs/node/pull/35791) - \[[`e0a1541260`](https://github.com/nodejs/node/commit/e0a1541260)] - **deps**: update to cjs-module-lexer@0.4.3 (Guy Bedford) [#&#8203;35745](https://github.com/nodejs/node/pull/35745) - \[[`894419c1f4`](https://github.com/nodejs/node/commit/894419c1f4)] - **deps**: V8: backport [`4263f8a`](https://github.com/nodejs/node/commit/4263f8a5e8e0) (Brian 'bdougie' Douglas) [#&#8203;35650](https://github.com/nodejs/node/pull/35650) - \[[`564aadedac`](https://github.com/nodejs/node/commit/564aadedac)] - **doc,src,test**: revise C++ code for linter update (Rich Trott) [#&#8203;35719](https://github.com/nodejs/node/pull/35719) - \[[`7c8b5e5e0e`](https://github.com/nodejs/node/commit/7c8b5e5e0e)] - **errors**: do not call resolve on URLs with schemes (bcoe) [#&#8203;35903](https://github.com/nodejs/node/pull/35903) - \[[`1cdfaa80f8`](https://github.com/nodejs/node/commit/1cdfaa80f8)] - **events**: add a few tests (Benjamin Gruenbaum) [#&#8203;35806](https://github.com/nodejs/node/pull/35806) - \[[`f08e2c0213`](https://github.com/nodejs/node/commit/f08e2c0213)] - **events**: make abort_controller event trusted (Benjamin Gruenbaum) [#&#8203;35811](https://github.com/nodejs/node/pull/35811) - \[[`438d9debfd`](https://github.com/nodejs/node/commit/438d9debfd)] - **events**: make eventTarget.removeAllListeners() return this (Luigi Pinca) [#&#8203;35805](https://github.com/nodejs/node/pull/35805) - \[[`b6b7a3b86a`](https://github.com/nodejs/node/commit/b6b7a3b86a)] - **http**: lazy create IncomingMessage.headers (Robert Nagy) [#&#8203;35281](https://github.com/nodejs/node/pull/35281) - \[[`86ed87b6b7`](https://github.com/nodejs/node/commit/86ed87b6b7)] - **http2**: fix reinjection check (Momtchil Momtchev) [#&#8203;35678](https://github.com/nodejs/node/pull/35678) - \[[`5833007eb0`](https://github.com/nodejs/node/commit/5833007eb0)] - **http2**: reinject data received before http2 is attached (Momtchil Momtchev) [#&#8203;35678](https://github.com/nodejs/node/pull/35678) - \[[`cfe61b8714`](https://github.com/nodejs/node/commit/cfe61b8714)] - **http2**: remove unsupported %.\* specifier (Momtchil Momtchev) [#&#8203;35694](https://github.com/nodejs/node/pull/35694) - \[[`d2f574b5be`](https://github.com/nodejs/node/commit/d2f574b5be)] - **lib**: let abort_controller target be EventTarget (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869) - \[[`b1e531a70b`](https://github.com/nodejs/node/commit/b1e531a70b)] - **lib**: use primordials when calling methods of Error (Antoine du Hamel) [#&#8203;35837](https://github.com/nodejs/node/pull/35837) - \[[`0f5a8c55c2`](https://github.com/nodejs/node/commit/0f5a8c55c2)] - **module**: runtime deprecate subpath folder mappings (Guy Bedford) [#&#8203;35747](https://github.com/nodejs/node/pull/35747) - \[[`d16e2fa69a`](https://github.com/nodejs/node/commit/d16e2fa69a)] - **n-api**: napi_make_callback emit async init with resource of async_context (legendecas) [#&#8203;32930](https://github.com/nodejs/node/pull/32930) - \[[`0c17dbd201`](https://github.com/nodejs/node/commit/0c17dbd201)] - **n-api**: revert change to finalization (Michael Dawson) [#&#8203;35777](https://github.com/nodejs/node/pull/35777) - \[[`fb7196434e`](https://github.com/nodejs/node/commit/fb7196434e)] - **src**: remove redundant OpenSSLBuffer (James M Snell) [#&#8203;35663](https://github.com/nodejs/node/pull/35663) - \[[`c9225789d3`](https://github.com/nodejs/node/commit/c9225789d3)] - **src**: remove ERR prefix in WebCryptoKeyExportStatus (Daniel Bevenius) [#&#8203;35639](https://github.com/nodejs/node/pull/35639) - \[[`4128eefcb3`](https://github.com/nodejs/node/commit/4128eefcb3)] - **src**: remove ignore GCC -Wcast-function-type for v8 (Daniel Bevenius) [#&#8203;35768](https://github.com/nodejs/node/pull/35768) - \[[`4b8b5fee6a`](https://github.com/nodejs/node/commit/4b8b5fee6a)] - **src**: use MaybeLocal.ToLocal instead of IsEmpty (Daniel Bevenius) [#&#8203;35716](https://github.com/nodejs/node/pull/35716) - \[[`01d7c46776`](https://github.com/nodejs/node/commit/01d7c46776)] - ***Revert*** "**src**: ignore GCC -Wcast-function-type for v8.h" (Daniel Bevenius) [#&#8203;35758](https://github.com/nodejs/node/pull/35758) - \[[`2868f52a5c`](https://github.com/nodejs/node/commit/2868f52a5c)] - **stream**: fix regression on duplex end (Momtchil Momtchev) [#&#8203;35941](https://github.com/nodejs/node/pull/35941) - \[[`70c41a830d`](https://github.com/nodejs/node/commit/70c41a830d)] - **stream**: remove redundant context from comments (Yash Ladha) [#&#8203;35728](https://github.com/nodejs/node/pull/35728) - \[[`88eb6191e4`](https://github.com/nodejs/node/commit/88eb6191e4)] - **stream**: fix duplicate logic in stream destroy (Yash Ladha) [#&#8203;35727](https://github.com/nodejs/node/pull/35727) - \[[`a41e3ebc3a`](https://github.com/nodejs/node/commit/a41e3ebc3a)] - **timers**: correct explanation in comment (Turner Jabbour) [#&#8203;35437](https://github.com/nodejs/node/pull/35437) - \[[`ee15142fef`](https://github.com/nodejs/node/commit/ee15142fef)] - **tls**: allow reading data into a static buffer (Andrey Pechkurov) [#&#8203;35753](https://github.com/nodejs/node/pull/35753) - \[[`102d7dfe02`](https://github.com/nodejs/node/commit/102d7dfe02)] - **zlib**: test BrotliCompress throws invalid arg value (raisinten) [#&#8203;35830](https://github.com/nodejs/node/pull/35830) ##### Documentation commits - \[[`7937fbe3bc`](https://github.com/nodejs/node/commit/7937fbe3bc)] - **doc**: update tables in README files for linting changes (Rich Trott) [#&#8203;35905](https://github.com/nodejs/node/pull/35905) - \[[`c5b94220c5`](https://github.com/nodejs/node/commit/c5b94220c5)] - **doc**: temporarily disable list-item-bullet-indent (Nick Schonning) [#&#8203;35647](https://github.com/nodejs/node/pull/35647) - \[[`59b36af8d5`](https://github.com/nodejs/node/commit/59b36af8d5)] - **doc**: disable no-undefined-references workarounds (Nick Schonning) [#&#8203;35647](https://github.com/nodejs/node/pull/35647) - \[[`eb55462a75`](https://github.com/nodejs/node/commit/eb55462a75)] - **doc**: adjust table alignment for remark v13 (Nick Schonning) [#&#8203;35647](https://github.com/nodejs/node/pull/35647) - \[[`0ac4a6ab16`](https://github.com/nodejs/node/commit/0ac4a6ab16)] - **doc**: update crypto.createSecretKey history (Ben Turner) [#&#8203;35874](https://github.com/nodejs/node/pull/35874) - \[[`4899998855`](https://github.com/nodejs/node/commit/4899998855)] - **doc**: move bnoordhuis to emeritus (Ben Noordhuis) [#&#8203;35865](https://github.com/nodejs/node/pull/35865) - \[[`337bfcf614`](https://github.com/nodejs/node/commit/337bfcf614)] - **doc**: add on statement in the APIs docs (Pooja D.P) [#&#8203;35610](https://github.com/nodejs/node/pull/35610) - \[[`9703219fdb`](https://github.com/nodejs/node/commit/9703219fdb)] - **doc**: fix a typo in CHANGELOG_V15 (Takuya Noguchi) [#&#8203;35804](https://github.com/nodejs/node/pull/35804) - \[[`c14889bcc1`](https://github.com/nodejs/node/commit/c14889bcc1)] - **doc**: move ronkorving to emeritus (Rich Trott) [#&#8203;35828](https://github.com/nodejs/node/pull/35828) - \[[`8c2b17926c`](https://github.com/nodejs/node/commit/8c2b17926c)] - **doc**: recommend test-doc instead of lint-md (Antoine du Hamel) [#&#8203;35708](https://github.com/nodejs/node/pull/35708) - \[[`0580258449`](https://github.com/nodejs/node/commit/0580258449)] - **doc**: fix reference to googletest test fixture (Tobias Nießen) [#&#8203;35813](https://github.com/nodejs/node/pull/35813) - \[[`d291e3abd9`](https://github.com/nodejs/node/commit/d291e3abd9)] - **doc**: stabilize packages features (Myles Borins) [#&#8203;35742](https://github.com/nodejs/node/pull/35742) - \[[`5e8d821b4c`](https://github.com/nodejs/node/commit/5e8d821b4c)] - **doc**: add conditional example for setBreakpoint() (Chris Opperwall) [#&#8203;35823](https://github.com/nodejs/node/pull/35823) - \[[`8074f69f82`](https://github.com/nodejs/node/commit/8074f69f82)] - **doc**: make small improvements to REPL doc (Rich Trott) [#&#8203;35808](https://github.com/nodejs/node/pull/35808) - \[[`4e76a3c106`](https://github.com/nodejs/node/commit/4e76a3c106)] - **doc**: update MessagePort documentation for EventTarget inheritance (Anna Henningsen) [#&#8203;35839](https://github.com/nodejs/node/pull/35839) - \[[`3db4354cc8`](https://github.com/nodejs/node/commit/3db4354cc8)] - **doc**: use case-sensitive in the example (Pooja D.P) [#&#8203;35624](https://github.com/nodejs/node/pull/35624) - \[[`b07f4a3f7a`](https://github.com/nodejs/node/commit/b07f4a3f7a)] - **doc**: consolidate and clarify breakOnSigInt text (Rich Trott) [#&#8203;35787](https://github.com/nodejs/node/pull/35787) - \[[`c2e6a4b081`](https://github.com/nodejs/node/commit/c2e6a4b081)] - **doc**: fix \_construct example params order (Alejandro Oviedo) [#&#8203;35790](https://github.com/nodejs/node/pull/35790) - \[[`6513a589fe`](https://github.com/nodejs/node/commit/6513a589fe)] - **doc**: add a subsystems header in pull-requests.md (Pooja D.P) [#&#8203;35718](https://github.com/nodejs/node/pull/35718) - \[[`c365867c60`](https://github.com/nodejs/node/commit/c365867c60)] - **doc**: fix typo in BUILDING.md (raisinten) [#&#8203;35807](https://github.com/nodejs/node/pull/35807) - \[[`6211ffd2f7`](https://github.com/nodejs/node/commit/6211ffd2f7)] - **doc**: add require statement in the example (Pooja D.P) [#&#8203;35554](https://github.com/nodejs/node/pull/35554) - \[[`7b3743d8dd`](https://github.com/nodejs/node/commit/7b3743d8dd)] - **doc**: modified memory set statement set size (Pooja D.P) [#&#8203;35517](https://github.com/nodejs/node/pull/35517) - \[[`afbe23d800`](https://github.com/nodejs/node/commit/afbe23d800)] - **doc**: use kbd element in readline doc prose (Rich Trott) [#&#8203;35737](https://github.com/nodejs/node/pull/35737) - \[[`c0a4fac040`](https://github.com/nodejs/node/commit/c0a4fac040)] - **doc**: fix a typo in CHANGELOG_V12 (Shubham Parihar) [#&#8203;35786](https://github.com/nodejs/node/pull/35786) - \[[`0e9acf83f7`](https://github.com/nodejs/node/commit/0e9acf83f7)] - **doc**: fix header level in fs.md (ax1) [#&#8203;35771](https://github.com/nodejs/node/pull/35771) - \[[`f49afb5e10`](https://github.com/nodejs/node/commit/f49afb5e10)] - **doc**: remove stability warning in v8 module doc (Rich Trott) [#&#8203;35774](https://github.com/nodejs/node/pull/35774) - \[[`368ae952b2`](https://github.com/nodejs/node/commit/368ae952b2)] - **doc**: mark optional parameters in timers.md (Vse Mozhe Buty) [#&#8203;35764](https://github.com/nodejs/node/pull/35764) - \[[`f6aa7c82c5`](https://github.com/nodejs/node/commit/f6aa7c82c5)] - **doc**: add a example code to API doc property (Pooja D.P) [#&#8203;35738](https://github.com/nodejs/node/pull/35738) - \[[`55b7a6cea3`](https://github.com/nodejs/node/commit/55b7a6cea3)] - **doc**: document changes for `\*/promises` alias modules (ExE Boss) [#&#8203;34002](https://github.com/nodejs/node/pull/34002) - \[[`4b7708a316`](https://github.com/nodejs/node/commit/4b7708a316)] - **doc**: update console.error example (Lee, Bonggi) [#&#8203;34964](https://github.com/nodejs/node/pull/34964) - \[[`292b529dfa`](https://github.com/nodejs/node/commit/292b529dfa)] - **doc**: add missing link in Node.js 14 Changelog (Antoine du Hamel) [#&#8203;35782](https://github.com/nodejs/node/pull/35782) - \[[`890b03ecd6`](https://github.com/nodejs/node/commit/890b03ecd6)] - **doc**: improve text for breakOnSigint (Rich Trott) [#&#8203;35692](https://github.com/nodejs/node/pull/35692) - \[[`1892532ee8`](https://github.com/nodejs/node/commit/1892532ee8)] - **doc**: this prints replaced with this is printed (Pooja D.P) [#&#8203;35515](https://github.com/nodejs/node/pull/35515) - \[[`6590f8cb4a`](https://github.com/nodejs/node/commit/6590f8cb4a)] - **doc**: update package.json field definitions (Myles Borins) [#&#8203;35741](https://github.com/nodejs/node/pull/35741) - \[[`f269c6cbe2`](https://github.com/nodejs/node/commit/f269c6cbe2)] - **doc**: add Installing Node.js header in BUILDING.md (Pooja D.P) [#&#8203;35710](https://github.com/nodejs/node/pull/35710) - \[[`05a888a8c3`](https://github.com/nodejs/node/commit/05a888a8c3)] - **doc,esm**: document experimental warning removal (Antoine du Hamel) [#&#8203;35750](https://github.com/nodejs/node/pull/35750) - \[[`092c6c4f8f`](https://github.com/nodejs/node/commit/092c6c4f8f)] - **doc,test**: update v8 method doc and comment (Rich Trott) [#&#8203;35795](https://github.com/nodejs/node/pull/35795) ##### Other commits - \[[`76ebae4c05`](https://github.com/nodejs/node/commit/76ebae4c05)] - **benchmark**: make the benchmark tool work with Node 10 (Joyee Cheung) [#&#8203;35817](https://github.com/nodejs/node/pull/35817) - \[[`9b549c1691`](https://github.com/nodejs/node/commit/9b549c1691)] - **benchmark**: add startup benchmark for loading public modules (Joyee Cheung) [#&#8203;35816](https://github.com/nodejs/node/pull/35816) - \[[`5d61e3db4b`](https://github.com/nodejs/node/commit/5d61e3db4b)] - **test**: add missing ref comments to parallel.status (Rich Trott) [#&#8203;35896](https://github.com/nodejs/node/pull/35896) - \[[`231af88001`](https://github.com/nodejs/node/commit/231af88001)] - **test**: correct test-worker-eventlooputil (Gerhard Stoebich) [#&#8203;35891](https://github.com/nodejs/node/pull/35891) - \[[`da612dfc20`](https://github.com/nodejs/node/commit/da612dfc20)] - **test**: integrate abort_controller tests from wpt (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869) - \[[`66ad4be2c1`](https://github.com/nodejs/node/commit/66ad4be2c1)] - **test**: add test to fs/promises setImmediate (tyankatsu) [#&#8203;35852](https://github.com/nodejs/node/pull/35852) - \[[`830b789299`](https://github.com/nodejs/node/commit/830b789299)] - **test**: mark test-worker-eventlooputil flaky (Myles Borins) [#&#8203;35886](https://github.com/nodejs/node/pull/35886) - \[[`7691b673dc`](https://github.com/nodejs/node/commit/7691b673dc)] - **test**: mark test-http2-respond-file-error-pipe-offset flaky (Myles Borins) [#&#8203;35883](https://github.com/nodejs/node/pull/35883) - \[[`de3dcd7356`](https://github.com/nodejs/node/commit/de3dcd7356)] - **test**: fix reference to WPT testharness.js (Tobias Nießen) [#&#8203;35814](https://github.com/nodejs/node/pull/35814) - \[[`8958af4aa0`](https://github.com/nodejs/node/commit/8958af4aa0)] - **test**: add onerror test cases to policy (Daijiro Wachi) [#&#8203;35797](https://github.com/nodejs/node/pull/35797) - \[[`dd3cbb455a`](https://github.com/nodejs/node/commit/dd3cbb455a)] - **test**: add upstream test cases to encoding (Daijiro Wachi) [#&#8203;35794](https://github.com/nodejs/node/pull/35794) - \[[`76991c039f`](https://github.com/nodejs/node/commit/76991c039f)] - **test**: add upstream test cases to urlsearchparam (Daijiro Wachi) [#&#8203;35792](https://github.com/nodejs/node/pull/35792) - \[[`110ef8aa50`](https://github.com/nodejs/node/commit/110ef8aa50)] - **test**: refactor coverage logic (bcoe) [#&#8203;35767](https://github.com/nodejs/node/pull/35767) - \[[`0c5e8ed651`](https://github.com/nodejs/node/commit/0c5e8ed651)] - **test**: add additional deprecation warning tests for rmdir recursive (Ian Sutherland) [#&#8203;35683](https://github.com/nodejs/node/pull/35683) - \[[`11eca36e83`](https://github.com/nodejs/node/commit/11eca36e83)] - **test**: add windows and C++ coverage (Benjamin Coe) [#&#8203;35670](https://github.com/nodejs/node/pull/35670) - \[[`fd027cd61a`](https://github.com/nodejs/node/commit/fd027cd61a)] - **tools**: bump remark-lint-preset-node to 2.0.0 (Rich Trott) [#&#8203;35905](https://github.com/nodejs/node/pull/35905) - \[[`c09fdba786`](https://github.com/nodejs/node/commit/c09fdba786)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;35866](https://github.com/nodejs/node/pull/35866) - \[[`3955ccd305`](https://github.com/nodejs/node/commit/3955ccd305)] - **tools**: bump cpplint to 1.5.1 (Rich Trott) [#&#8203;35866](https://github.com/nodejs/node/pull/35866) - \[[`a07d1af4ea`](https://github.com/nodejs/node/commit/a07d1af4ea)] - **tools**: update ESLint to 7.12.1 (cjihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799) - \[[`d20b318c58`](https://github.com/nodejs/node/commit/d20b318c58)] - **tools**: update ESLint to 7.12.0 (cjihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799) - \[[`31753ec8aa`](https://github.com/nodejs/node/commit/31753ec8aa)] - **tools**: add msvc /P output to .gitignore (Jiawen Geng) [#&#8203;35735](https://github.com/nodejs/node/pull/35735) - \[[`afb3e24cb0`](https://github.com/nodejs/node/commit/afb3e24cb0)] - **tools**: add update-npm script (Myles Borins) [#&#8203;35822](https://github.com/nodejs/node/pull/35822) - \[[`66da122d46`](https://github.com/nodejs/node/commit/66da122d46)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;35719](https://github.com/nodejs/node/pull/35719) - \[[`042d4dd71c`](https://github.com/nodejs/node/commit/042d4dd71c)] - **tools**: bump cpplint to 1.5.0 (Rich Trott) [#&#8203;35719](https://github.com/nodejs/node/pull/35719) ### [`v15.0.1`](https://github.com/nodejs/node/releases/v15.0.1) [Compare Source](https://github.com/nodejs/node/compare/v15.0.0...v15.0.1) ##### Notable changes - **crypto**: fix regression on randomFillSync (James M Snell) [#&#8203;35723](https://github.com/nodejs/node/pull/35723) - This fixes issue https://github.com/nodejs/node/issues/35722. - **deps**: upgrade npm to 7.0.3 (Ruy Adorno) [#&#8203;35724](https://github.com/nodejs/node/pull/35724) - **doc**: add release key for Danielle Adams (Danielle Adams) [#&#8203;35545](https://github.com/nodejs/node/pull/35545) ##### Commits - \[[`c509485c19`](https://github.com/nodejs/node/commit/c509485c19)] - **build**: use make functions instead of echo (Antoine du Hamel) [#&#8203;35707](https://github.com/nodejs/node/pull/35707) - \[[`f5acc2d030`](https://github.com/nodejs/node/commit/f5acc2d030)] - **crypto**: fix regression on randomFillSync (James M Snell) [#&#8203;35723](https://github.com/nodejs/node/pull/35723) - \[[`595c8df48d`](https://github.com/nodejs/node/commit/595c8df48d)] - **deps**: upgrade npm to 7.0.3 (Ruy Adorno) [#&#8203;35724](https://github.com/nodejs/node/pull/35724) - \[[`69e7f20f2d`](https://github.com/nodejs/node/commit/69e7f20f2d)] - **deps**: V8: set correct V8 version patch number (Michaël Zasso) [#&#8203;35732](https://github.com/nodejs/node/pull/35732) - \[[`b78294dc00`](https://github.com/nodejs/node/commit/b78294dc00)] - **doc**: use kbd element in readline doc (Rich Trott) [#&#8203;35698](https://github.com/nodejs/node/pull/35698) - \[[`1efa87082b`](https://github.com/nodejs/node/commit/1efa87082b)] - **doc**: add release key for Danielle Adams (Danielle Adams) [#&#8203;35545](https://github.com/nodejs/node/pull/35545) - \[[`6e91d644e3`](https://github.com/nodejs/node/commit/6e91d644e3)] - **doc**: use kbd element in os doc (Rich Trott) [#&#8203;35656](https://github.com/nodejs/node/pull/35656) - \[[`5a48a7b6f8`](https://github.com/nodejs/node/commit/5a48a7b6f8)] - **doc**: add a statement in the documentation. (Pooja D.P) [#&#8203;35585](https://github.com/nodejs/node/pull/35585) - \[[`6a7a61be7c`](https://github.com/nodejs/node/commit/6a7a61be7c)] - **src**: mark/pop OpenSSL errors in NewRootCertStore (Daniel Bevenius) [#&#8203;35514](https://github.com/nodejs/node/pull/35514) - \[[`d54edece99`](https://github.com/nodejs/node/commit/d54edece99)] - **test**: refactor test-crypto-pbkdf2 (Tobias Nießen) [#&#8203;35693](https://github.com/nodejs/node/pull/35693) ### [`v15.0.0`](https://github.com/nodejs/node/releases/v15.0.0) [Compare Source](https://github.com/nodejs/node/compare/v14.18.1...v15.0.0) ##### Notable Changes ##### Deprecations and Removals - \[[`a11788736a`](https://github.com/nodejs/node/commit/a11788736a)] - **(SEMVER-MAJOR)** **build**: remove --build-v8-with-gn configure option (Yang Guo) [#&#8203;27576](https://github.com/nodejs/node/pull/27576) - \[[`89428c7a2d`](https://github.com/nodejs/node/commit/89428c7a2d)] - **(SEMVER-MAJOR)** **build**: drop support for VS2017 (Michaël Zasso) [#&#8203;33694](https://github.com/nodejs/node/pull/33694) - \[[`c25cf34ac1`](https://github.com/nodejs/node/commit/c25cf34ac1)] - **(SEMVER-MAJOR)** **doc**: move DEP0018 to End-of-Life (Rich Trott) [#&#8203;35316](https://github.com/nodejs/node/pull/35316) - \[[`2002d90abd`](https://github.com/nodejs/node/commit/2002d90abd)] - **(SEMVER-MAJOR)** **fs**: deprecation warning on recursive rmdir (Ian Sutherland) [#&#8203;35562](https://github.com/nodejs/node/pull/35562) - \[[`eee522ac29`](https://github.com/nodejs/node/commit/eee522ac29)] - **(SEMVER-MAJOR)** **lib**: add EventTarget-related browser globals (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496) - \[[`41796ebd30`](https://github.com/nodejs/node/commit/41796ebd30)] - **(SEMVER-MAJOR)** **net**: remove long deprecated server.connections property (James M Snell) [#&#8203;33647](https://github.com/nodejs/node/pull/33647) - \[[`a416692e93`](https://github.com/nodejs/node/commit/a416692e93)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.memory function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`f217b2dfb0`](https://github.com/nodejs/node/commit/f217b2dfb0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.turnOffEditorMode() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`a1bcad8dc0`](https://github.com/nodejs/node/commit/a1bcad8dc0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.parseREPLKeyword() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`4ace010b53`](https://github.com/nodejs/node/commit/4ace010b53)] - **(SEMVER-MAJOR)** **repl**: remove deprecated bufferedCommand property (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`37524307fe`](https://github.com/nodejs/node/commit/37524307fe)] - **(SEMVER-MAJOR)** **repl**: remove deprecated .rli (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`a85ce885bd`](https://github.com/nodejs/node/commit/a85ce885bd)] - **(SEMVER-MAJOR)** **src**: remove deprecated node debug command (James M Snell) [#&#8203;33648](https://github.com/nodejs/node/pull/33648) - \[[`a8904e8eee`](https://github.com/nodejs/node/commit/a8904e8eee)] - **(SEMVER-MAJOR)** **timers**: introduce timers/promises (James M Snell) [#&#8203;33950](https://github.com/nodejs/node/pull/33950) - \[[`1211b9a72f`](https://github.com/nodejs/node/commit/1211b9a72f)] - **(SEMVER-MAJOR)** **util**: change default value of `maxStringLength` to 10000 (unknown) [#&#8203;32744](https://github.com/nodejs/node/pull/32744) - \[[`ca8f3ef2e5`](https://github.com/nodejs/node/commit/ca8f3ef2e5)] - **(SEMVER-MAJOR)** **wasi**: drop --experimental-wasm-bigint requirement (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) ##### npm 7 - [#&#8203;35631](https://github.com/nodejs/node/pull/35631) Node.js 15 comes with a new major release of npm, npm 7. npm 7 comes with many new features - including npm workspaces and a new package-lock.json format. npm 7 also includes yarn.lock file support. One of the big changes in npm 7 is that peer dependencies are now installed by default. ##### Throw On Unhandled Rejections - [#&#8203;33021](https://github.com/nodejs/node/pull/33021) As of Node.js 15, the default mode for `unhandledRejection` is changed to `throw` (from `warn`). In `throw` mode, if an `unhandledRejection` hook is not set, the `unhandledRejection` is raised as an uncaught exception. Users that have an `unhandledRejection` hook should see no change in behavior, and it’s still possible to switch modes using the `--unhandled-rejections=mode` process flag. ##### QUIC - [#&#8203;32379](https://github.com/nodejs/node/pull/32379) Node.js 15 comes with experimental support QUIC, which can be enabled by compiling Node.js with the `--experimental-quic` configuration flag. The Node.js QUIC implementation is exposed by the core `net` module. ##### V8 8.6 - [#&#8203;35415](https://github.com/nodejs/node/pull/35415) The V8 JavaScript engine has been updated to V8 8.6 (V8 8.4 is the latest available in Node.js 14). Along with performance tweaks and improvements the V8 update also brings the following language features: - `Promise.any()` (from V8 8.5) - `AggregateError` (from V8 8.5) - `String.prototype.replaceAll()` (from V8 8.5) - Logical assignment operators `&&=`, `||=`, and `??=` (from V8 8.5) ##### Other Notable Changes - \[[`50228cf6ff`](https://github.com/nodejs/node/commit/50228cf6ff)] - **(SEMVER-MAJOR)** **assert**: add `assert/strict` alias module (ExE Boss) [#&#8203;34001](https://github.com/nodejs/node/pull/34001) - \[[`039cd00a9a`](https://github.com/nodejs/node/commit/039cd00a9a)] - **(SEMVER-MAJOR)** **dns**: add dns/promises alias (shisama) [#&#8203;32953](https://github.com/nodejs/node/pull/32953) - \[[`54b36e401d`](https://github.com/nodejs/node/commit/54b36e401d)] - **(SEMVER-MAJOR)** **fs**: reimplement read and write streams using stream.construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656) - \[[`f5c0e282cc`](https://github.com/nodejs/node/commit/f5c0e282cc)] - **(SEMVER-MAJOR)** **http2**: allow Host in HTTP/2 requests (Alba Mendez) [#&#8203;34664](https://github.com/nodejs/node/pull/34664) - \[[`eee522ac29`](https://github.com/nodejs/node/commit/eee522ac29)] - **(SEMVER-MAJOR)** **lib**: add EventTarget-related browser globals (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496) - \[[`a8b26d72c5`](https://github.com/nodejs/node/commit/a8b26d72c5)] - **(SEMVER-MAJOR)** **lib**: unflag AbortController (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527) - \[[`74ca960aac`](https://github.com/nodejs/node/commit/74ca960aac)] - **(SEMVER-MAJOR)** **lib**: initial experimental AbortController implementation (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527) - \[[`efefdd668d`](https://github.com/nodejs/node/commit/efefdd668d)] - **(SEMVER-MAJOR)** **net**: autoDestroy Socket (Robert Nagy) [#&#8203;31806](https://github.com/nodejs/node/pull/31806) - \[[`0fb91acedf`](https://github.com/nodejs/node/commit/0fb91acedf)] - **(SEMVER-MAJOR)** **src**: disallow JS execution inside FreeEnvironment (Anna Henningsen) [#&#8203;33874](https://github.com/nodejs/node/pull/33874) - \[[`21782277c2`](https://github.com/nodejs/node/commit/21782277c2)] - **(SEMVER-MAJOR)** **src**: use node:moduleName as builtin module filename (Michaël Zasso) [#&#8203;35498](https://github.com/nodejs/node/pull/35498) - \[[`fb8cc72e73`](https://github.com/nodejs/node/commit/fb8cc72e73)] - **(SEMVER-MAJOR)** **stream**: construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656) - \[[`705d888387`](https://github.com/nodejs/node/commit/705d888387)] - **(SEMVER-MAJOR)** **worker**: make MessageEvent class more Web-compatible (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496) ##### Semver-Major Commits - \[[`50228cf6ff`](https://github.com/nodejs/node/commit/50228cf6ff)] - **(SEMVER-MAJOR)** **assert**: add `assert/strict` alias module (ExE Boss) [#&#8203;34001](https://github.com/nodejs/node/pull/34001) - \[[`d701247165`](https://github.com/nodejs/node/commit/d701247165)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`a11788736a`](https://github.com/nodejs/node/commit/a11788736a)] - **(SEMVER-MAJOR)** **build**: remove --build-v8-with-gn configure option (Yang Guo) [#&#8203;27576](https://github.com/nodejs/node/pull/27576) - \[[`89428c7a2d`](https://github.com/nodejs/node/commit/89428c7a2d)] - **(SEMVER-MAJOR)** **build**: drop support for VS2017 (Michaël Zasso) [#&#8203;33694](https://github.com/nodejs/node/pull/33694) - \[[`dae283d96f`](https://github.com/nodejs/node/commit/dae283d96f)] - **(SEMVER-MAJOR)** **crypto**: refactoring internals, add WebCrypto (James M Snell) [#&#8203;35093](https://github.com/nodejs/node/pull/35093) - \[[`ba77dc8597`](https://github.com/nodejs/node/commit/ba77dc8597)] - **(SEMVER-MAJOR)** **crypto**: move node_crypto files to src/crypto (James M Snell) [#&#8203;35093](https://github.com/nodejs/node/pull/35093) - \[[`9378070da0`](https://github.com/nodejs/node/commit/9378070da0)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`d76abfe`](https://github.com/nodejs/node/commit/d76abfed3512) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`efee8341ad`](https://github.com/nodejs/node/commit/efee8341ad)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`717543b`](https://github.com/nodejs/node/commit/717543bbf0ef) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`b006fa8730`](https://github.com/nodejs/node/commit/b006fa8730)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`6be2f6e`](https://github.com/nodejs/node/commit/6be2f6e26e8d) (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`3c23af4cb7`](https://github.com/nodejs/node/commit/3c23af4cb7)] - **(SEMVER-MAJOR)** **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`b803b3f48b`](https://github.com/nodejs/node/commit/b803b3f48b)] - **(SEMVER-MAJOR)** **deps**: fix platform-embedded-file-writer-win for ARM64 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`47cb9f14e8`](https://github.com/nodejs/node/commit/47cb9f14e8)] - **(SEMVER-MAJOR)** **deps**: update V8 postmortem metadata script (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`a1d639ba5d`](https://github.com/nodejs/node/commit/a1d639ba5d)] - **(SEMVER-MAJOR)** **deps**: update V8 to 8.6.395 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`3ddcad55fb`](https://github.com/nodejs/node/commit/3ddcad55fb)] - **(SEMVER-MAJOR)** **deps**: upgrade npm to 7.0.0 (Myles Borins) [#&#8203;35631](https://github.com/nodejs/node/pull/35631) - \[[`2e54524955`](https://github.com/nodejs/node/commit/2e54524955)] - **(SEMVER-MAJOR)** **deps**: update npm to 7.0.0-rc.3 (Myles Borins) [#&#8203;35474](https://github.com/nodejs/node/pull/35474) - \[[`e983b1cece`](https://github.com/nodejs/node/commit/e983b1cece)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0d6debc`](https://github.com/nodejs/node/commit/0d6debcc5f08) (Gus Caplan) [#&#8203;33600](https://github.com/nodejs/node/pull/33600) - \[[`039cd00a9a`](https://github.com/nodejs/node/commit/039cd00a9a)] - **(SEMVER-MAJOR)** **dns**: add dns/promises alias (shisama) [#&#8203;32953](https://github.com/nodejs/node/pull/32953) - \[[`c25cf34ac1`](https://github.com/nodejs/node/commit/c25cf34ac1)] - **(SEMVER-MAJOR)** **doc**: move DEP0018 to End-of-Life (Rich Trott) [#&#8203;35316](https://github.com/nodejs/node/pull/35316) - \[[`8bf37ee496`](https://github.com/nodejs/node/commit/8bf37ee496)] - **(SEMVER-MAJOR)** **doc**: update support macos version for 15.x (Ash Cripps) [#&#8203;35022](https://github.com/nodejs/node/pull/35022) - \[[`2002d90abd`](https://github.com/nodejs/node/commit/2002d90abd)] - **(SEMVER-MAJOR)** **fs**: deprecation warning on recursive rmdir (Ian Sutherland) [#&#8203;35562](https://github.com/nodejs/node/pull/35562) - \[[`54b36e401d`](https://github.com/nodejs/node/commit/54b36e401d)] - **(SEMVER-MAJOR)** **fs**: reimplement read and write streams using stream.construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656) - \[[`32b641e528`](https://github.com/nodejs/node/commit/32b641e528)] - **(SEMVER-MAJOR)** **http**: fixed socket.setEncoding fatal error (iskore) [#&#8203;33405](https://github.com/nodejs/node/pull/33405) - \[[`8a6fab02ad`](https://github.com/nodejs/node/commit/8a6fab02ad)] - **(SEMVER-MAJOR)** **http**: emit 'error' on aborted server request (Robert Nagy) [#&#8203;33172](https://github.com/nodejs/node/pull/33172) - \[[`d005f490a8`](https://github.com/nodejs/node/commit/d005f490a8)] - **(SEMVER-MAJOR)** **http**: cleanup end argument handling (Robert Nagy) [#&#8203;31818](https://github.com/nodejs/node/pull/31818) - \[[`f5c0e282cc`](https://github.com/nodejs/node/commit/f5c0e282cc)] - **(SEMVER-MAJOR)** **http2**: allow Host in HTTP/2 requests (Alba Mendez) [#&#8203;34664](https://github.com/nodejs/node/pull/34664) - \[[`1e4187fcf4`](https://github.com/nodejs/node/commit/1e4187fcf4)] - **(SEMVER-MAJOR)** **http2**: add `invalidheaders` test (Pranshu Srivastava) [#&#8203;33161](https://github.com/nodejs/node/pull/33161) - \[[`d79c330186`](https://github.com/nodejs/node/commit/d79c330186)] - **(SEMVER-MAJOR)** **http2**: refactor state code validation for the http2Stream class (rickyes) [#&#8203;33535](https://github.com/nodejs/node/pull/33535) - \[[`df31f71f1e`](https://github.com/nodejs/node/commit/df31f71f1e)] - **(SEMVER-MAJOR)** **http2**: header field valid checks (Pranshu Srivastava) [#&#8203;33193](https://github.com/nodejs/node/pull/33193) - \[[`1428db8a1f`](https://github.com/nodejs/node/commit/1428db8a1f)] - **(SEMVER-MAJOR)** **lib**: refactor Socket.\_getpeername and Socket.\_getsockname (himself65) [#&#8203;32969](https://github.com/nodejs/node/pull/32969) - \[[`eee522ac29`](https://github.com/nodejs/node/commit/eee522ac29)] - **(SEMVER-MAJOR)** **lib**: add EventTarget-related browser globals (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496) - \[[`c66e6471e7`](https://github.com/nodejs/node/commit/c66e6471e7)] - **(SEMVER-MAJOR)** **lib**: remove ERR_INVALID_OPT_VALUE and ERR_INVALID_OPT_VALUE_ENCODING (Denys Otrishko) [#&#8203;34682](https://github.com/nodejs/node/pull/34682) - \[[`b546a2b469`](https://github.com/nodejs/node/commit/b546a2b469)] - **(SEMVER-MAJOR)** **lib**: handle one of args case in ERR_MISSING_ARGS (Denys Otrishko) [#&#8203;34022](https://github.com/nodejs/node/pull/34022) - \[[`a86a295fd7`](https://github.com/nodejs/node/commit/a86a295fd7)] - **(SEMVER-MAJOR)** **lib**: remove NodeError from the prototype of errors with code (Michaël Zasso) [#&#8203;33857](https://github.com/nodejs/node/pull/33857) - \[[`a8b26d72c5`](https://github.com/nodejs/node/commit/a8b26d72c5)] - **(SEMVER-MAJOR)** **lib**: unflag AbortController (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527) - \[[`74ca960aac`](https://github.com/nodejs/node/commit/74ca960aac)] - **(SEMVER-MAJOR)** **lib**: initial experimental AbortController implementation (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527) - \[[`78ca61e2cf`](https://github.com/nodejs/node/commit/78ca61e2cf)] - **(SEMVER-MAJOR)** **net**: check args in net.connect() and socket.connect() calls (Denys Otrishko) [#&#8203;34022](https://github.com/nodejs/node/pull/34022) - \[[`41796ebd30`](https://github.com/nodejs/node/commit/41796ebd30)] - **(SEMVER-MAJOR)** **net**: remove long deprecated server.connections property (James M Snell) [#&#8203;33647](https://github.com/nodejs/node/pull/33647) - \[[`efefdd668d`](https://github.com/nodejs/node/commit/efefdd668d)] - **(SEMVER-MAJOR)** **net**: autoDestroy Socket (Robert Nagy) [#&#8203;31806](https://github.com/nodejs/node/pull/31806) - \[[`6cfba9f7f6`](https://github.com/nodejs/node/commit/6cfba9f7f6)] - **(SEMVER-MAJOR)** **process**: update v8 fast api calls usage (Maya Lekova) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`3b10f7f933`](https://github.com/nodejs/node/commit/3b10f7f933)] - **(SEMVER-MAJOR)** **process**: change default --unhandled-rejections=throw (Dan Fabulich) [#&#8203;33021](https://github.com/nodejs/node/pull/33021) - \[[`d8eef83757`](https://github.com/nodejs/node/commit/d8eef83757)] - **(SEMVER-MAJOR)** **process**: use v8 fast api calls for hrtime (Gus Caplan) [#&#8203;33600](https://github.com/nodejs/node/pull/33600) - \[[`49745cdef0`](https://github.com/nodejs/node/commit/49745cdef0)] - **(SEMVER-MAJOR)** **process**: delay throwing an error using `throwDeprecation` (Ruben Bridgewater) [#&#8203;32312](https://github.com/nodejs/node/pull/32312) - \[[`a416692e93`](https://github.com/nodejs/node/commit/a416692e93)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.memory function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`f217b2dfb0`](https://github.com/nodejs/node/commit/f217b2dfb0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.turnOffEditorMode() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`a1bcad8dc0`](https://github.com/nodejs/node/commit/a1bcad8dc0)] - **(SEMVER-MAJOR)** **repl**: remove deprecated repl.parseREPLKeyword() function (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`4ace010b53`](https://github.com/nodejs/node/commit/4ace010b53)] - **(SEMVER-MAJOR)** **repl**: remove deprecated bufferedCommand property (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`37524307fe`](https://github.com/nodejs/node/commit/37524307fe)] - **(SEMVER-MAJOR)** **repl**: remove deprecated .rli (Ruben Bridgewater) [#&#8203;33286](https://github.com/nodejs/node/pull/33286) - \[[`b65e5aeaa7`](https://github.com/nodejs/node/commit/b65e5aeaa7)] - **(SEMVER-MAJOR)** **src**: implement NodePlatform::PostJob (Clemens Backes) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`b1e8e0e604`](https://github.com/nodejs/node/commit/b1e8e0e604)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 88 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`eeb6b473fd`](https://github.com/nodejs/node/commit/eeb6b473fd)] - **(SEMVER-MAJOR)** **src**: error reporting on CPUUsage (Yash Ladha) [#&#8203;34762](https://github.com/nodejs/node/pull/34762) - \[[`21782277c2`](https://github.com/nodejs/node/commit/21782277c2)] - **(SEMVER-MAJOR)** **src**: use node:moduleName as builtin module filename (Michaël Zasso) [#&#8203;35498](https://github.com/nodejs/node/pull/35498) - \[[`05771279af`](https://github.com/nodejs/node/commit/05771279af)] - **(SEMVER-MAJOR)** **src**: enable wasm trap handler on windows (Gus Caplan) [#&#8203;35033](https://github.com/nodejs/node/pull/35033) - \[[`b7cf823410`](https://github.com/nodejs/node/commit/b7cf823410)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 86 (Michaël Zasso) [#&#8203;33579](https://github.com/nodejs/node/pull/33579) - \[[`0fb91acedf`](https://github.com/nodejs/node/commit/0fb91acedf)] - **(SEMVER-MAJOR)** **src**: disallow JS execution inside FreeEnvironment (Anna Henningsen) [#&#8203;33874](https://github.com/nodejs/node/pull/33874) - \[[`53fb2b6b41`](https://github.com/nodejs/node/commit/53fb2b6b41)] - **(SEMVER-MAJOR)** **src**: remove \_third_party_main support (Anna Henningsen) [#&#8203;33971](https://github.com/nodejs/node/pull/33971) - \[[`a85ce885bd`](https://github.com/nodejs/node/commit/a85ce885bd)] - **(SEMVER-MAJOR)** **src**: remove deprecated node debug command (James M Snell) [#&#8203;33648](https://github.com/nodejs/node/pull/33648) - \[[`ac3714637e`](https://github.com/nodejs/node/commit/ac3714637e)] - **(SEMVER-MAJOR)** **src**: remove unused CancelPendingDelayedTasks (Anna Henningsen) [#&#8203;32859](https://github.com/nodejs/node/pull/32859) - \[[`a65218f5e8`](https://github.com/nodejs/node/commit/a65218f5e8)] - **(SEMVER-MAJOR)** **stream**: try to wait for flush to complete before 'finish' (Robert Nagy) [#&#8203;34314](https://github.com/nodejs/node/pull/34314) - \[[`4e3f6f355b`](https://github.com/nodejs/node/commit/4e3f6f355b)] - **(SEMVER-MAJOR)** **stream**: cleanup and fix Readable.wrap (Robert Nagy) [#&#8203;34204](https://github.com/nodejs/node/pull/34204) - \[[`527e2147af`](https://github.com/nodejs/node/commit/527e2147af)] - **(SEMVER-MAJOR)** **stream**: add promises version to utility functions (rickyes) [#&#8203;33991](https://github.com/nodejs/node/pull/33991) - \[[`c7e55c6b72`](https://github.com/nodejs/node/commit/c7e55c6b72)] - **(SEMVER-MAJOR)** **stream**: fix writable.end callback behavior (Robert Nagy) [#&#8203;34101](https://github.com/nodejs/node/pull/34101) - \[[`fb8cc72e73`](https://github.com/nodejs/node/commit/fb8cc72e73)] - **(SEMVER-MAJOR)** **stream**: construct (Robert Nagy) [#&#8203;29656](https://github.com/nodejs/node/pull/29656) - \[[`4bc7025309`](https://github.com/nodejs/node/commit/4bc7025309)] - **(SEMVER-MAJOR)** **stream**: write should throw on unknown encoding (Robert Nagy) [#&#8203;33075](https://github.com/nodejs/node/pull/33075) - \[[`ea87809bb6`](https://github.com/nodejs/node/commit/ea87809bb6)] - **(SEMVER-MAJOR)** **stream**: fix \_final and 'prefinish' timing (Robert Nagy) [#&#8203;32780](https://github.com/nodejs/node/pull/32780) - \[[`0bd5595509`](https://github.com/nodejs/node/commit/0bd5595509)] - **(SEMVER-MAJOR)** **stream**: simplify Transform stream implementation (Robert Nagy) [#&#8203;32763](https://github.com/nodejs/node/pull/32763) - \[[`8f86986985`](https://github.com/nodejs/node/commit/8f86986985)] - **(SEMVER-MAJOR)** **stream**: use callback to properly propagate error (Robert Nagy) [#&#8203;29179](https://github.com/nodejs/node/pull/29179) - \[[`94dd7b9f94`](https://github.com/nodejs/node/commit/94dd7b9f94)] - **(SEMVER-MAJOR)** **test**: update tests after increasing typed array size to 4GB (Kim-Anh Tran) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`d9e98df01b`](https://github.com/nodejs/node/commit/d9e98df01b)] - **(SEMVER-MAJOR)** **test**: fix tests for npm 7.0.0 (Myles Borins) [#&#8203;35631](https://github.com/nodejs/node/pull/35631) - \[[`c87641aa97`](https://github.com/nodejs/node/commit/c87641aa97)] - **(SEMVER-MAJOR)** **test**: fix test suite to work with npm 7 (Myles Borins) [#&#8203;35474](https://github.com/nodejs/node/pull/35474) - \[[`eb9d7a437e`](https://github.com/nodejs/node/commit/eb9d7a437e)] - **(SEMVER-MAJOR)** **test**: update WPT harness and tests (Michaël Zasso) [#&#8203;33770](https://github.com/nodejs/node/pull/33770) - \[[`a8904e8eee`](https://github.com/nodejs/node/commit/a8904e8eee)] - **(SEMVER-MAJOR)** **timers**: introduce timers/promises (James M Snell) [#&#8203;33950](https://github.com/nodejs/node/pull/33950) - \[[`c55f661551`](https://github.com/nodejs/node/commit/c55f661551)] - **(SEMVER-MAJOR)** **tools**: disable x86 safe exception handlers in V8 (Michaël Zasso) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`80e8aec4a5`](https://github.com/nodejs/node/commit/80e8aec4a5)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 8.6 (Ujjwal Sharma) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`faeb9607c6`](https://github.com/nodejs/node/commit/faeb9607c6)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 8.5 (Ujjwal Sharma) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`bb62f4ad9e`](https://github.com/nodejs/node/commit/bb62f4ad9e)] - **(SEMVER-MAJOR)** **url**: file URL path normalization (Daijiro Wachi) [#&#8203;35477](https://github.com/nodejs/node/pull/35477) - \[[`69ef4c2375`](https://github.com/nodejs/node/commit/69ef4c2375)] - **(SEMVER-MAJOR)** **url**: verify domain is not empty after "ToASCII" (Michaël Zasso) [#&#8203;33770](https://github.com/nodejs/node/pull/33770) - \[[`4831278a16`](https://github.com/nodejs/node/commit/4831278a16)] - **(SEMVER-MAJOR)** **url**: remove U+0000 case in the fragment state (Michaël Zasso) [#&#8203;33770](https://github.com/nodejs/node/pull/33770) - \[[`0d08d5ae7c`](https://github.com/nodejs/node/commit/0d08d5ae7c)] - **(SEMVER-MAJOR)** **url**: remove gopher from special schemes (Michaël Zasso) [#&#8203;33325](https://github.com/nodejs/node/pull/33325) - \[[`9be51ee9a1`](https://github.com/nodejs/node/commit/9be51ee9a1)] - **(SEMVER-MAJOR)** **url**: forbid lt and gt in url host code point (Yash Ladha) [#&#8203;33328](https://github.com/nodejs/node/pull/33328) - \[[`1211b9a72f`](https://github.com/nodejs/node/commit/1211b9a72f)] - **(SEMVER-MAJOR)** **util**: change default value of `maxStringLength` to 10000 (unknown) [#&#8203;32744](https://github.com/nodejs/node/pull/32744) - \[[`ca8f3ef2e5`](https://github.com/nodejs/node/commit/ca8f3ef2e5)] - **(SEMVER-MAJOR)** **wasi**: drop --experimental-wasm-bigint requirement (Colin Ihrig) [#&#8203;35415](https://github.com/nodejs/node/pull/35415) - \[[`abd8cdfc4e`](https://github.com/nodejs/node/commit/abd8cdfc4e)] - **(SEMVER-MAJOR)** **win, child_process**: sanitize env variables (Bartosz Sosnowski) [#&#8203;35210](https://github.com/nodejs/node/pull/35210) - \[[`705d888387`](https://github.com/nodejs/node/commit/705d888387)] - **(SEMVER-MAJOR)** **worker**: make MessageEvent class more Web-compatible (Anna Henningsen) [#&#8203;35496](https://github.com/nodejs/node/pull/35496) - \[[`7603c7e50c`](https://github.com/nodejs/node/commit/7603c7e50c)] - **(SEMVER-MAJOR)** **worker**: set trackUnmanagedFds to true by default (Anna Henningsen) [#&#8203;34394](https://github.com/nodejs/node/pull/34394) - \[[`5ef5116311`](https://github.com/nodejs/node/commit/5ef5116311)] - **(SEMVER-MAJOR)** **worker**: rename error code to be more accurate (Anna Henningsen) [#&#8203;33872](https://github.com/nodejs/node/pull/33872) ##### Semver-Minor Commits - \[[`1d5fa88eb8`](https://github.com/nodejs/node/commit/1d5fa88eb8)] - **(SEMVER-MINOR)** **cli**: add --node-memory-debug option (Anna Henningsen) [#&#8203;35537](https://github.com/nodejs/node/pull/35537) - \[[`095be6a01f`](https://github.com/nodejs/node/commit/095be6a01f)] - **(SEMVER-MINOR)** **crypto**: add getCipherInfo method (James M Snell) [#&#8203;35368](https://github.com/nodejs/node/pull/35368) - \[[`df1023bb22`](https://github.com/nodejs/node/commit/df1023bb22)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with on (James M Snell) [#&#8203;34912](https://github.com/nodejs/node/pull/34912) - \[[`883fc779b6`](https://github.com/nodejs/node/commit/883fc779b6)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with once (James M Snell) [#&#8203;34911](https://github.com/nodejs/node/pull/34911) - \[[`e876c0c308`](https://github.com/nodejs/node/commit/e876c0c308)] - **(SEMVER-MINOR)** **http2**: add support for sensitive headers (Anna Henningsen) [#&#8203;34145](https://github.com/nodejs/node/pull/34145) - \[[`6f34498148`](https://github.com/nodejs/node/commit/6f34498148)] - **(SEMVER-MINOR)** **net**: add support for resolving DNS CAA records (Danny Sonnenschein) [#&#8203;35466](https://github.com/nodejs/node/pull/35466) - \[[`37a8179673`](https://github.com/nodejs/node/commit/37a8179673)] - **(SEMVER-MINOR)** **net**: make blocklist family case insensitive (James M Snell) [#&#8203;34864](https://github.com/nodejs/node/pull/34864) - \[[`1f9b20b637`](https://github.com/nodejs/node/commit/1f9b20b637)] - **(SEMVER-MINOR)** **net**: introduce net.BlockList (James M Snell) [#&#8203;34625](https://github.com/nodejs/node/pull/34625) - \[[`278d38f4cf`](https://github.com/nodejs/node/commit/278d38f4cf)] - **(SEMVER-MINOR)** **src**: add maybe versions of EmitExit and EmitBeforeExit (Anna Henningsen) [#&#8203;35486](https://github.com/nodejs/node/pull/35486) - \[[`2310f679a1`](https://github.com/nodejs/node/commit/2310f679a1)] - **(SEMVER-MINOR)** **src**: move node_binding to modern THROW_ERR\* (James M Snell) [#&#8203;35469](https://github.com/nodejs/node/pull/35469) - \[[`744a284ccc`](https://github.com/nodejs/node/commit/744a284ccc)] - **(SEMVER-MINOR)** **stream**: support async for stream impl functions (James M Snell) [#&#8203;34416](https://github.com/nodejs/node/pull/34416) - \[[`bfbdc84738`](https://github.com/nodejs/node/commit/bfbdc84738)] - **(SEMVER-MINOR)** **timers**: allow promisified timeouts/immediates to be canceled (James M Snell) [#&#8203;33833](https://github.com/nodejs/node/pull/33833) - \[[`a8971f87d3`](https://github.com/nodejs/node/commit/a8971f87d3)] - **(SEMVER-MINOR)** **url**: support non-special URLs (Daijiro Wachi) [#&#8203;34925](https://github.com/nodejs/node/pull/34925) ##### Semver-Patch Commits - \[[`d10c59fc60`](https://github.com/nodejs/node/commit/d10c59fc60)] - **benchmark,test**: remove output from readable-async-iterator benchmark (Rich Trott) [#&#8203;34411](https://github.com/nodejs/node/pull/34411) - \[[`8a12e9994f`](https://github.com/nodejs/node/commit/8a12e9994f)] - **bootstrap**: use file URL instead of relative url (Daijiro Wachi) [#&#8203;35622](https://github.com/nodejs/node/pull/35622) - \[[`f8bde7ce06`](https://github.com/nodejs/node/commit/f8bde7ce06)] - **bootstrap**: build fast APIs in pre-execution (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`b18651bcd2`](https://github.com/nodejs/node/commit/b18651bcd2)] - **build**: do not pass mode option to test-v8 command (Michaël Zasso) [#&#8203;35705](https://github.com/nodejs/node/pull/35705) - \[[`bb2945ed6b`](https://github.com/nodejs/node/commit/bb2945ed6b)] - **build**: add GitHub Action for code coverage (Benjamin Coe) [#&#8203;35653](https://github.com/nodejs/node/pull/35653) - \[[`cfbbeea4a1`](https://github.com/nodejs/node/commit/cfbbeea4a1)] - **build**: use GITHUB_ENV file to set env variables (Michaël Zasso) [#&#8203;35638](https://github.com/nodejs/node/pull/35638) - \[[`8a93b371a3`](https://github.com/nodejs/node/commit/8a93b371a3)] - **build**: do not install jq in workflows (Michaël Zasso) [#&#8203;35638](https://github.com/nodejs/node/pull/35638) - \[[`ccbd1d5efa`](https://github.com/nodejs/node/commit/ccbd1d5efa)] - **build**: add quic to github action (gengjiawen) [#&#8203;34336](https://github.com/nodejs/node/pull/34336) - \[[`f4f191bbc2`](https://github.com/nodejs/node/commit/f4f191bbc2)] - **build**: define NODE_EXPERIMENTAL_QUIC in mkcodecache and node_mksnapshot (Joyee Cheung) [#&#8203;34454](https://github.com/nodejs/node/pull/34454) - \[[`5b2c263ba8`](https://github.com/nodejs/node/commit/5b2c263ba8)] - **deps**: fix typo in zlib.gyp that break arm-fpu-neon build (lucasg) [#&#8203;35659](https://github.com/nodejs/node/pull/35659) - \[[`5b9593f727`](https://github.com/nodejs/node/commit/5b9593f727)] - **deps**: upgrade npm to 7.0.2 (Myles Borins) [#&#8203;35667](https://github.com/nodejs/node/pull/35667) - \[[`dabc6ddddc`](https://github.com/nodejs/node/commit/dabc6ddddc)] - **deps**: upgrade npm to 7.0.0-rc.4 (Myles Borins) [#&#8203;35576](https://github.com/nodejs/node/pull/35576) - \[[`757bac6711`](https://github.com/nodejs/node/commit/757bac6711)] - **deps**: update nghttp3 (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752) - \[[`c788be2e6e`](https://github.com/nodejs/node/commit/c788be2e6e)] - **deps**: update ngtcp2 (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752) - \[[`7816e5f7b9`](https://github.com/nodejs/node/commit/7816e5f7b9)] - **deps**: fix indenting of sources in ngtcp2.gyp (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`f5343d1b40`](https://github.com/nodejs/node/commit/f5343d1b40)] - **deps**: re-enable OPENSSL_NO_QUIC guards (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`9de95f494e`](https://github.com/nodejs/node/commit/9de95f494e)] - **deps**: temporary fixup for ngtcp2 to build on windows (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`ec7ad1d0ec`](https://github.com/nodejs/node/commit/ec7ad1d0ec)] - **deps**: cherry-pick akamai/openssl/commit/bf4b08ecfbb7a26ca4b0b9ecaee3b31d18d7bda9 (Tatsuhiro Tsujikawa) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`c3d85b7637`](https://github.com/nodejs/node/commit/c3d85b7637)] - **deps**: cherry-pick akamai/openssl/commit/a5a08cb8050bb69120e833456e355f482e392456 (Benjamin Kaduk) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`bad1a150ea`](https://github.com/nodejs/node/commit/bad1a150ea)] - **deps**: cherry-pick akamai/openssl/commit/d5a13ca6e29f3ff85c731770ab0ee2f2487bf8b3 (Benjamin Kaduk) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`74cbfd3f36`](https://github.com/nodejs/node/commit/74cbfd3f36)] - **deps**: cherry-pick akamai/openssl/commit/a6282c566d88db11300c82abc3c84a4e2e9ea568 (Benjamin Kaduk) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`8a9763a8ea`](https://github.com/nodejs/node/commit/8a9763a8ea)] - **deps**: update nghttp3 (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`6b27d07779`](https://github.com/nodejs/node/commit/6b27d07779)] - **deps**: update ngtcp2 (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`a041723774`](https://github.com/nodejs/node/commit/a041723774)] - **deps**: fix indentation for sources in nghttp3.gyp (Daniel Bevenius) [#&#8203;33942](https://github.com/nodejs/node/pull/33942) - \[[`a0cbd676e7`](https://github.com/nodejs/node/commit/a0cbd676e7)] - **deps**: add defines to nghttp3/ngtcp2 gyp configs (Daniel Bevenius) [#&#8203;33942](https://github.com/nodejs/node/pull/33942) - \[[`bccb514936`](https://github.com/nodejs/node/commit/bccb514936)] - **deps**: maintaining ngtcp2 and nghttp3 (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379) - \[[`834fa8f23f`](https://github.com/nodejs/node/commit/834fa8f23f)] - **deps**: add ngtcp2 and nghttp3 (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379) - \[[`f96b981528`](https://github.com/nodejs/node/commit/f96b981528)] - **deps**: details for updating openssl quic support (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379) - \[[`98c8498552`](https://github.com/nodejs/node/commit/98c8498552)] - **deps**: update archs files for OpenSSL-1.1.0 (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379) - \[[`2c549e505e`](https://github.com/nodejs/node/commit/2c549e505e)] - **deps**: add support for BoringSSL QUIC APIs (Todd Short) [#&#8203;32379](https://github.com/nodejs/node/pull/32379) - \[[`1103b15af6`](https://github.com/nodejs/node/commit/1103b15af6)] - **doc**: fix YAML lint error on master (Rich Trott) [#&#8203;35709](https://github.com/nodejs/node/pull/35709) - \[[`7798e59e98`](https://github.com/nodejs/node/commit/7798e59e98)] - **doc**: upgrade stability status of report API (Gireesh Punathil) [#&#8203;35654](https://github.com/nodejs/node/pull/35654) - \[[`ce03a182cf`](https://github.com/nodejs/node/commit/ce03a182cf)] - **doc**: clarify experimental API elements in vm.md (Rich Trott) [#&#8203;35594](https://github.com/nodejs/node/pull/35594) - \[[`89defff3b9`](https://github.com/nodejs/node/commit/89defff3b9)] - **doc**: correct order of metadata for deprecation (Rich Trott) [#&#8203;35668](https://github.com/nodejs/node/pull/35668) - \[[`ee85eb9f8a`](https://github.com/nodejs/node/commit/ee85eb9f8a)] - **doc**: importModuleDynamically gets Script, not Module (Simen Bekkhus) [#&#8203;35593](https://github.com/nodejs/node/pull/35593) - \[[`9e5a27a9d3`](https://github.com/nodejs/node/commit/9e5a27a9d3)] - **doc**: fix EventEmitter examples (Sourav Shaw) [#&#8203;33513](https://github.com/nodejs/node/pull/33513) - \[[`2c2c87e291`](https://github.com/nodejs/node/commit/2c2c87e291)] - **doc**: fix stability indicator in webcrypto doc (Rich Trott) [#&#8203;35672](https://github.com/nodejs/node/pull/35672) - \[[`f59d4e05a2`](https://github.com/nodejs/node/commit/f59d4e05a2)] - **doc**: add example code for process.getgroups() (Pooja D.P) [#&#8203;35625](https://github.com/nodejs/node/pull/35625) - \[[`8a3808dc37`](https://github.com/nodejs/node/commit/8a3808dc37)] - **doc**: use kbd element in tty doc (Rich Trott) [#&#8203;35613](https://github.com/nodejs/node/pull/35613) - \[[`4079bfd462`](https://github.com/nodejs/node/commit/4079bfd462)] - **doc**: Remove reference to io.js (Hussaina Begum Nandyala) [#&#8203;35618](https://github.com/nodejs/node/pull/35618) - \[[`e6d5af3c95`](https://github.com/nodejs/node/commit/e6d5af3c95)] - **doc**: fix typos in quic.md (Luigi Pinca) [#&#8203;35444](https://github.com/nodejs/node/pull/35444) - \[[`524123fbf0`](https://github.com/nodejs/node/commit/524123fbf0)] - **doc**: update releaser in v12.18.4 changelog (Beth Griggs) [#&#8203;35217](https://github.com/nodejs/node/pull/35217) - \[[`ccdd1bd82a`](https://github.com/nodejs/node/commit/ccdd1bd82a)] - **doc**: fix incorrectly marked Buffer in quic.md (Rich Trott) [#&#8203;35075](https://github.com/nodejs/node/pull/35075) - \[[`cc754f2985`](https://github.com/nodejs/node/commit/cc754f2985)] - **doc**: make AbortSignal text consistent in events.md (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005) - \[[`f9c362ff6c`](https://github.com/nodejs/node/commit/f9c362ff6c)] - **doc**: revise AbortSignal text and example using events.once() (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005) - \[[`7aeff6b8c8`](https://github.com/nodejs/node/commit/7aeff6b8c8)] - **doc**: claim ABI version for Electron v12 (Shelley Vohr) [#&#8203;34816](https://github.com/nodejs/node/pull/34816) - \[[`7a1220a1d7`](https://github.com/nodejs/node/commit/7a1220a1d7)] - **doc**: fix headings in quic.md (Anna Henningsen) [#&#8203;34717](https://github.com/nodejs/node/pull/34717) - \[[`d5c7aec3cb`](https://github.com/nodejs/node/commit/d5c7aec3cb)] - **doc**: use \_can\_ to describe actions in quic.md (Rich Trott) [#&#8203;34613](https://github.com/nodejs/node/pull/34613) - \[[`319c275b26`](https://github.com/nodejs/node/commit/319c275b26)] - **doc**: use \_can\_ to describe actions in quic.md (Rich Trott) [#&#8203;34613](https://github.com/nodejs/node/pull/34613) - \[[`2c30920886`](https://github.com/nodejs/node/commit/2c30920886)] - **doc**: use sentence-case in quic.md headers (Rich Trott) [#&#8203;34453](https://github.com/nodejs/node/pull/34453) - \[[`8ada27510d`](https://github.com/nodejs/node/commit/8ada27510d)] - **doc**: add missing backticks in timers.md (vsemozhetbyt) [#&#8203;34030](https://github.com/nodejs/node/pull/34030) - \[[`862d005e60`](https://github.com/nodejs/node/commit/862d005e60)] - **doc**: make globals Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777) - \[[`85dbd17bde`](https://github.com/nodejs/node/commit/85dbd17bde)] - **doc**: make perf_hooks Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777) - \[[`2e49010bc8`](https://github.com/nodejs/node/commit/2e49010bc8)] - **doc**: make events Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777) - \[[`680fb8fc62`](https://github.com/nodejs/node/commit/680fb8fc62)] - **doc**: fix deprecation "End-of-Life" capitalization (Colin Ihrig) [#&#8203;33691](https://github.com/nodejs/node/pull/33691) - \[[`458677f5ef`](https://github.com/nodejs/node/commit/458677f5ef)] - **errors**: print original exception context (Benjamin Coe) [#&#8203;33491](https://github.com/nodejs/node/pull/33491) - \[[`b1831fed3a`](https://github.com/nodejs/node/commit/b1831fed3a)] - **events**: simplify event target agnostic logic in on and once (Denys Otrishko) [#&#8203;34997](https://github.com/nodejs/node/pull/34997) - \[[`7f25fe8b67`](https://github.com/nodejs/node/commit/7f25fe8b67)] - **fs**: remove unused assignment (Rich Trott) [#&#8203;35642](https://github.com/nodejs/node/pull/35642) - \[[`2c4f30deea`](https://github.com/nodejs/node/commit/2c4f30deea)] - **fs**: fix when path is buffer on fs.symlinkSync (himself65) [#&#8203;34540](https://github.com/nodejs/node/pull/34540) - \[[`db0e991d52`](https://github.com/nodejs/node/commit/db0e991d52)] - **fs**: remove custom Buffer pool for streams (Robert Nagy) [#&#8203;33981](https://github.com/nodejs/node/pull/33981) - \[[`51a2df4439`](https://github.com/nodejs/node/commit/51a2df4439)] - **fs**: document why isPerformingIO is required (Robert Nagy) [#&#8203;33982](https://github.com/nodejs/node/pull/33982) - \[[`999e7d7b44`](https://github.com/nodejs/node/commit/999e7d7b44)] - **gyp,build**: consistent shared library location (Rod Vagg) [#&#8203;35635](https://github.com/nodejs/node/pull/35635) - \[[`30cc54275d`](https://github.com/nodejs/node/commit/30cc54275d)] - **http**: don't emit error after close (Robert Nagy) [#&#8203;33654](https://github.com/nodejs/node/pull/33654) - \[[`ddff2b2b22`](https://github.com/nodejs/node/commit/ddff2b2b22)] - **lib**: honor setUncaughtExceptionCaptureCallback (Gireesh Punathil) [#&#8203;35595](https://github.com/nodejs/node/pull/35595) - \[[`a8806535d9`](https://github.com/nodejs/node/commit/a8806535d9)] - **lib**: use Object static properties from primordials (Michaël Zasso) [#&#8203;35380](https://github.com/nodejs/node/pull/35380) - \[[`11f1ad939f`](https://github.com/nodejs/node/commit/11f1ad939f)] - **module**: only try to enrich CJS syntax errors (Michaël Zasso) [#&#8203;35691](https://github.com/nodejs/node/pull/35691) - \[[`aaf225a2a0`](https://github.com/nodejs/node/commit/aaf225a2a0)] - **module**: add setter for module.parent (Antoine du Hamel) [#&#8203;35522](https://github.com/nodejs/node/pull/35522) - \[[`109a296e2a`](https://github.com/nodejs/node/commit/109a296e2a)] - **quic**: fix typo in code comment (Ikko Ashimine) [#&#8203;35308](https://github.com/nodejs/node/pull/35308) - \[[`186230527b`](https://github.com/nodejs/node/commit/186230527b)] - **quic**: fix error message on invalid connection ID (Rich Trott) [#&#8203;35026](https://github.com/nodejs/node/pull/35026) - \[[`e5116b304f`](https://github.com/nodejs/node/commit/e5116b304f)] - **quic**: remove unused function arguments (Rich Trott) [#&#8203;35010](https://github.com/nodejs/node/pull/35010) - \[[`449f73e05f`](https://github.com/nodejs/node/commit/449f73e05f)] - **quic**: remove undefined variable (Rich Trott) [#&#8203;35007](https://github.com/nodejs/node/pull/35007) - \[[`44e6a6af67`](https://github.com/nodejs/node/commit/44e6a6af67)] - **quic**: use qlog fin flag (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752) - \[[`2a80737278`](https://github.com/nodejs/node/commit/2a80737278)] - **quic**: fixups after ngtcp2/nghttp3 update (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752) - \[[`c855c3e8ca`](https://github.com/nodejs/node/commit/c855c3e8ca)] - **quic**: use net.BlockList for limiting access to a QuicSocket (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`bfc35354c1`](https://github.com/nodejs/node/commit/bfc35354c1)] - **quic**: consolidate stats collecting in QuicSession (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`94aa291348`](https://github.com/nodejs/node/commit/94aa291348)] - **quic**: clarify TODO statements (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`19e712b9b2`](https://github.com/nodejs/node/commit/19e712b9b2)] - **quic**: resolve InitializeSecureContext TODO comment (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`240592228b`](https://github.com/nodejs/node/commit/240592228b)] - **quic**: fixup session ticket app data todo comments (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`c17eaa3f3f`](https://github.com/nodejs/node/commit/c17eaa3f3f)] - **quic**: add natRebinding argument to docs (James M Snell) [#&#8203;34669](https://github.com/nodejs/node/pull/34669) - \[[`442968c92a`](https://github.com/nodejs/node/commit/442968c92a)] - **quic**: check setSocket natRebinding argument, extend test (James M Snell) [#&#8203;34669](https://github.com/nodejs/node/pull/34669) - \[[`10d5047a4f`](https://github.com/nodejs/node/commit/10d5047a4f)] - **quic**: fixup set_socket, fix skipped test (James M Snell) [#&#8203;34669](https://github.com/nodejs/node/pull/34669) - \[[`344c5e4e50`](https://github.com/nodejs/node/commit/344c5e4e50)] - **quic**: limit push check to http/3 (James M Snell) [#&#8203;34655](https://github.com/nodejs/node/pull/34655) - \[[`34165f03aa`](https://github.com/nodejs/node/commit/34165f03aa)] - **quic**: resolve some minor TODOs (James M Snell) [#&#8203;34655](https://github.com/nodejs/node/pull/34655) - \[[`1e6e5c3ef3`](https://github.com/nodejs/node/commit/1e6e5c3ef3)] - **quic**: resolve minor TODO in QuicSocket (James M Snell) [#&#8203;34655](https://github.com/nodejs/node/pull/34655) - \[[`ba5c64bf45`](https://github.com/nodejs/node/commit/ba5c64bf45)] - **quic**: use AbortController with correct name/message (Anna Henningsen) [#&#8203;34763](https://github.com/nodejs/node/pull/34763) - \[[`a7477704c4`](https://github.com/nodejs/node/commit/a7477704c4)] - **quic**: prefer modernize-make-unique (gengjiawen) [#&#8203;34692](https://github.com/nodejs/node/pull/34692) - \[[`5b6cd6fa1a`](https://github.com/nodejs/node/commit/5b6cd6fa1a)] - **quic**: use the SocketAddressLRU to track validation status (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618) - \[[`f75e69a94b`](https://github.com/nodejs/node/commit/f75e69a94b)] - **quic**: use SocketAddressLRU to track known SocketAddress info (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618) - \[[`6b0b33cd4c`](https://github.com/nodejs/node/commit/6b0b33cd4c)] - **quic**: cleanup some outstanding todo items (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618) - \[[`6e65f26b73`](https://github.com/nodejs/node/commit/6e65f26b73)] - **quic**: use QuicCallbackScope consistently for QuicSession (James M Snell) [#&#8203;34541](https://github.com/nodejs/node/pull/34541) - \[[`d96083bad5`](https://github.com/nodejs/node/commit/d96083bad5)] - **quic**: introduce QuicCallbackScope (James M Snell) [#&#8203;34541](https://github.com/nodejs/node/pull/34541) - \[[`4b0275ab87`](https://github.com/nodejs/node/commit/4b0275ab87)] - **quic**: refactor clientHello (James M Snell) [#&#8203;34541](https://github.com/nodejs/node/pull/34541) - \[[`a97b5f9c6a`](https://github.com/nodejs/node/commit/a97b5f9c6a)] - **quic**: use OpenSSL built-in cert and hostname validation (James M Snell) [#&#8203;34533](https://github.com/nodejs/node/pull/34533) - \[[`7a5fbafe96`](https://github.com/nodejs/node/commit/7a5fbafe96)] - **quic**: fix build for macOS (gengjiawen) [#&#8203;34336](https://github.com/nodejs/node/pull/34336) - \[[`1f94b89309`](https://github.com/nodejs/node/commit/1f94b89309)] - **quic**: refactor ocsp to use async function rather than event/callback (James M Snell) [#&#8203;34498](https://github.com/nodejs/node/pull/34498) - \[[`06664298fa`](https://github.com/nodejs/node/commit/06664298fa)] - **quic**: remove no-longer relevant TODO statements (James M Snell) [#&#8203;34498](https://github.com/nodejs/node/pull/34498) - \[[`2fb92f4cc6`](https://github.com/nodejs/node/commit/2fb92f4cc6)] - **quic**: remove extraneous unused debug property (James M Snell) [#&#8203;34498](https://github.com/nodejs/node/pull/34498) - \[[`b06fe33de1`](https://github.com/nodejs/node/commit/b06fe33de1)] - **quic**: use async \_construct for QuicStream (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`8bd61d4c38`](https://github.com/nodejs/node/commit/8bd61d4c38)] - **quic**: documentation updates (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`086c916997`](https://github.com/nodejs/node/commit/086c916997)] - **quic**: extensive refactoring of QuicStream lifecycle (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`cf28f8a7dd`](https://github.com/nodejs/node/commit/cf28f8a7dd)] - **quic**: gitignore qlog files (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`83bf0d7e8c`](https://github.com/nodejs/node/commit/83bf0d7e8c)] - **quic**: remove unneeded quicstream.aborted and fixup docs (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`a65296db2c`](https://github.com/nodejs/node/commit/a65296db2c)] - **quic**: remove stream pending code (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`da20287e1a`](https://github.com/nodejs/node/commit/da20287e1a)] - **quic**: simplify QuicStream construction logic (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`6e30fe7a7f`](https://github.com/nodejs/node/commit/6e30fe7a7f)] - **quic**: convert openStream to Promise (James M Snell) [#&#8203;34351](https://github.com/nodejs/node/pull/34351) - \[[`89453cfc08`](https://github.com/nodejs/node/commit/89453cfc08)] - **quic**: fixup quic.md (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`4523d4a813`](https://github.com/nodejs/node/commit/4523d4a813)] - **quic**: fixup closing/draining period timing (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`ed4882241c`](https://github.com/nodejs/node/commit/ed4882241c)] - **quic**: properly pass readable/writable constructor options (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`57c1129508`](https://github.com/nodejs/node/commit/57c1129508)] - **quic**: implement QuicSession close as promise (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`8e5c5b16ab`](https://github.com/nodejs/node/commit/8e5c5b16ab)] - **quic**: cleanup QuicClientSession constructor (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`fe4e7e4598`](https://github.com/nodejs/node/commit/fe4e7e4598)] - **quic**: use promisified dns lookup (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`346aeaf874`](https://github.com/nodejs/node/commit/346aeaf874)] - **quic**: eliminate "ready"/"not ready" states for QuicSession (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`6665dda9f6`](https://github.com/nodejs/node/commit/6665dda9f6)] - **quic**: implement QuicSocket Promise API, part 2 (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`79c0e892dd`](https://github.com/nodejs/node/commit/79c0e892dd)] - **quic**: implement QuicSocket Promise API, part 1 (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`53b12f0c7b`](https://github.com/nodejs/node/commit/53b12f0c7b)] - **quic**: implement QuicEndpoint Promise API (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`16b32eae3e`](https://github.com/nodejs/node/commit/16b32eae3e)] - **quic**: handle unhandled rejections on QuicSession (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`e5d963e24d`](https://github.com/nodejs/node/commit/e5d963e24d)] - **quic**: fixup kEndpointClose (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`9f552df5b4`](https://github.com/nodejs/node/commit/9f552df5b4)] - **quic**: fix endpointClose error handling, document (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`b80108c033`](https://github.com/nodejs/node/commit/b80108c033)] - **quic**: restrict addEndpoint to before QuicSocket bind (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`81c01bbdba`](https://github.com/nodejs/node/commit/81c01bbdba)] - **quic**: use a getter for stream options (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`b8945ba2ab`](https://github.com/nodejs/node/commit/b8945ba2ab)] - **quic**: clarifying code comments (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`429ab1dce6`](https://github.com/nodejs/node/commit/429ab1dce6)] - **quic**: minor reduction in code duplication (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`aafdc2fcad`](https://github.com/nodejs/node/commit/aafdc2fcad)] - **quic**: replace ipv6Only option with `'udp6-only'` type (James M Snell) [#&#8203;34283](https://github.com/nodejs/node/pull/34283) - \[[`fbc38ee134`](https://github.com/nodejs/node/commit/fbc38ee134)] - **quic**: clear clang warning (gengjiawen) [#&#8203;34335](https://github.com/nodejs/node/pull/34335) - \[[`c176d5fac2`](https://github.com/nodejs/node/commit/c176d5fac2)] - **quic**: set destroyed at timestamps for duration calculation (James M Snell) [#&#8203;34262](https://github.com/nodejs/node/pull/34262) - \[[`48a349efd9`](https://github.com/nodejs/node/commit/48a349efd9)] - **quic**: use Number instead of BigInt for more stats (James M Snell) [#&#8203;34262](https://github.com/nodejs/node/pull/34262) - \[[`5e769b2eaf`](https://github.com/nodejs/node/commit/5e769b2eaf)] - **quic**: use less specific error codes (James M Snell) [#&#8203;34262](https://github.com/nodejs/node/pull/34262) - \[[`26493c02a2`](https://github.com/nodejs/node/commit/26493c02a2)] - **quic**: remove no longer valid CHECK (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`458d243f20`](https://github.com/nodejs/node/commit/458d243f20)] - **quic**: proper custom inspect for QuicStream (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`0860b11655`](https://github.com/nodejs/node/commit/0860b11655)] - **quic**: proper custom inspect for QuicSession (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`b047930d76`](https://github.com/nodejs/node/commit/b047930d76)] - **quic**: proper custom inspect for QuicSocket (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`511f8c1138`](https://github.com/nodejs/node/commit/511f8c1138)] - **quic**: proper custom inspect for QuicEndpoint (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`fe11f6bf7c`](https://github.com/nodejs/node/commit/fe11f6bf7c)] - **quic**: cleanup QuicSocketFlags, used shared state struct (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`d08e99de24`](https://github.com/nodejs/node/commit/d08e99de24)] - **quic**: use getter/setter for stateless reset toggle (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`f2753c7695`](https://github.com/nodejs/node/commit/f2753c7695)] - **quic**: unref timers again (Anna Henningsen) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`71236097d0`](https://github.com/nodejs/node/commit/71236097d0)] - **quic**: use Number() instead of bigint for QuicSocket stats (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`94372b124a`](https://github.com/nodejs/node/commit/94372b124a)] - **quic**: refactor/improve/document QuicSocket listening event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`afc9390ae5`](https://github.com/nodejs/node/commit/afc9390ae5)] - **quic**: refactor/improve QuicSocket ready event handling (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`e3813261b8`](https://github.com/nodejs/node/commit/e3813261b8)] - **quic**: add tests confirming error handling for QuicSocket close event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`cc89aac5f7`](https://github.com/nodejs/node/commit/cc89aac5f7)] - **quic**: refactor/improve error handling for busy event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`edc71ef008`](https://github.com/nodejs/node/commit/edc71ef008)] - **quic**: handle errors thrown / rejections in the session event (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`bcde849be9`](https://github.com/nodejs/node/commit/bcde849be9)] - **quic**: remove unnecessary bool conversion (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`c535131627`](https://github.com/nodejs/node/commit/c535131627)] - **quic**: additional minor cleanups in node_quic_session.h (James M Snell) [#&#8203;34247](https://github.com/nodejs/node/pull/34247) - \[[`0f97d6066a`](https://github.com/nodejs/node/commit/0f97d6066a)] - **quic**: use TimerWrap for idle and retransmit timers (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186) - \[[`1b1e985478`](https://github.com/nodejs/node/commit/1b1e985478)] - **quic**: add missing memory tracker fields (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`5a87e9b0a5`](https://github.com/nodejs/node/commit/5a87e9b0a5)] - **quic**: cleanup timers if they haven't been already (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`3837d9cf1f`](https://github.com/nodejs/node/commit/3837d9cf1f)] - **quic**: fixup lint issues (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`7b062ca015`](https://github.com/nodejs/node/commit/7b062ca015)] - **quic**: refactor qlog handling (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`e4d369e96e`](https://github.com/nodejs/node/commit/e4d369e96e)] - **quic**: remove onSessionDestroy callback (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`3acdd6aac7`](https://github.com/nodejs/node/commit/3acdd6aac7)] - **quic**: refactor QuicSession shared state to use AliasedStruct (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`f9c2245fb5`](https://github.com/nodejs/node/commit/f9c2245fb5)] - **quic**: refactor QuicSession close/destroy flow (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`f7510ca439`](https://github.com/nodejs/node/commit/f7510ca439)] - **quic**: additional cleanups on the c++ side (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`b5bf5bb20f`](https://github.com/nodejs/node/commit/b5bf5bb20f)] - **quic**: refactor native object flags for better readability (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`b1750a4d53`](https://github.com/nodejs/node/commit/b1750a4d53)] - **quic**: continued refactoring for quic_stream/quic_session (James M Snell) [#&#8203;34160](https://github.com/nodejs/node/pull/34160) - \[[`31d6d9d0f7`](https://github.com/nodejs/node/commit/31d6d9d0f7)] - **quic**: reduce duplication of code (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`b5fe31ef19`](https://github.com/nodejs/node/commit/b5fe31ef19)] - **quic**: avoid using private JS fields for now (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`2afc1abd05`](https://github.com/nodejs/node/commit/2afc1abd05)] - **quic**: fixup constant exports, export all protocol error codes (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`b1fab88ff0`](https://github.com/nodejs/node/commit/b1fab88ff0)] - **quic**: remove unused callback function (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`3bae2d5073`](https://github.com/nodejs/node/commit/3bae2d5073)] - **quic**: consolidate onSessionClose and onSessionSilentClose (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`def8e76999`](https://github.com/nodejs/node/commit/def8e76999)] - **quic**: fixup set_final_size (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`d6034186d6`](https://github.com/nodejs/node/commit/d6034186d6)] - **quic**: cleanups for QuicSocket (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`73a51bb9dc`](https://github.com/nodejs/node/commit/73a51bb9dc)] - **quic**: cleanups in JS API (James M Snell) [#&#8203;34137](https://github.com/nodejs/node/pull/34137) - \[[`204f20f2d1`](https://github.com/nodejs/node/commit/204f20f2d1)] - **quic**: minor cleanups in quic_buffer (James M Snell) [#&#8203;34087](https://github.com/nodejs/node/pull/34087) - \[[`68634d2592`](https://github.com/nodejs/node/commit/68634d2592)] - **quic**: remove redundant cast (gengjiawen) [#&#8203;34086](https://github.com/nodejs/node/pull/34086) - \[[`213cac0b94`](https://github.com/nodejs/node/commit/213cac0b94)] - **quic**: temporarily skip quic-ipv6only test (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`99f7c4bb5e`](https://github.com/nodejs/node/commit/99f7c4bb5e)] - **quic**: possibly resolve flaky assertion failure in ipv6only test (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`2a5922e483`](https://github.com/nodejs/node/commit/2a5922e483)] - **quic**: temporarily disable packetloss tests (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`86e67aaa69`](https://github.com/nodejs/node/commit/86e67aaa69)] - **quic**: updates to implement for h3-29 (James M Snell) [#&#8203;34033](https://github.com/nodejs/node/pull/34033) - \[[`adf14e2617`](https://github.com/nodejs/node/commit/adf14e2617)] - **quic**: fix lint error in node_quic_crypto (Daniel Bevenius) [#&#8203;34019](https://github.com/nodejs/node/pull/34019) - \[[`9f2e00fb99`](https://github.com/nodejs/node/commit/9f2e00fb99)] - **quic**: temporarily disable preferred address tests (James M Snell) [#&#8203;33934](https://github.com/nodejs/node/pull/33934) - \[[`0e7c8bdc0c`](https://github.com/nodejs/node/commit/0e7c8bdc0c)] - **quic**: return 0 from SSL_CTX_sess_set_new_cb callback (Anna Henningsen) [#&#8203;33931](https://github.com/nodejs/node/pull/33931) - \[[`c7d859e756`](https://github.com/nodejs/node/commit/c7d859e756)] - **quic**: refactor and improve ipv6Only (James M Snell) [#&#8203;33935](https://github.com/nodejs/node/pull/33935) - \[[`1b7434dfc0`](https://github.com/nodejs/node/commit/1b7434dfc0)] - **quic**: set up FunctionTemplates more cleanly (Anna Henningsen) [#&#8203;33968](https://github.com/nodejs/node/pull/33968) - \[[`8ef86a920c`](https://github.com/nodejs/node/commit/8ef86a920c)] - **quic**: fix clang warning (gengjiawen) [#&#8203;33963](https://github.com/nodejs/node/pull/33963) - \[[`013cd1ac6f`](https://github.com/nodejs/node/commit/013cd1ac6f)] - **quic**: use Check instead of FromJust in node_quic.cc (Daniel Bevenius) [#&#8203;33937](https://github.com/nodejs/node/pull/33937) - \[[`09330fc155`](https://github.com/nodejs/node/commit/09330fc155)] - **quic**: fix clang-tidy performance-faster-string-find issue (gengjiawen) [#&#8203;33975](https://github.com/nodejs/node/pull/33975) - \[[`9743624c0b`](https://github.com/nodejs/node/commit/9743624c0b)] - **quic**: fix typo in comments (gengjiawen) [#&#8203;33975](https://github.com/nodejs/node/pull/33975) - \[[`88ef15812c`](https://github.com/nodejs/node/commit/88ef15812c)] - **quic**: remove unused string include http3\_application (Daniel Bevenius) [#&#8203;33926](https://github.com/nodejs/node/pull/33926) - \[[`1bd88a3ac6`](https://github.com/nodejs/node/commit/1bd88a3ac6)] - **quic**: fix up node_quic_stream includes (Daniel Bevenius) [#&#8203;33921](https://github.com/nodejs/node/pull/33921) - \[[`d7d79f2163`](https://github.com/nodejs/node/commit/d7d79f2163)] - **quic**: avoid memory fragmentation issue (James M Snell) [#&#8203;33912](https://github.com/nodejs/node/pull/33912) - \[[`16116f5f5f`](https://github.com/nodejs/node/commit/16116f5f5f)] - **quic**: remove noop code (Robert Nagy) [#&#8203;33914](https://github.com/nodejs/node/pull/33914) - \[[`272b46e04d`](https://github.com/nodejs/node/commit/272b46e04d)] - **quic**: skip test-quic-preferred-address-ipv6.js when no ipv6 (James M Snell) [#&#8203;33919](https://github.com/nodejs/node/pull/33919) - \[[`4b70f95d64`](https://github.com/nodejs/node/commit/4b70f95d64)] - **quic**: use Check instead of FromJust in QuicStream (Daniel Bevenius) [#&#8203;33909](https://github.com/nodejs/node/pull/33909) - \[[`133a97f60d`](https://github.com/nodejs/node/commit/133a97f60d)] - **quic**: always copy stateless reset token (Anna Henningsen) [#&#8203;33917](https://github.com/nodejs/node/pull/33917) - \[[`14d012ef96`](https://github.com/nodejs/node/commit/14d012ef96)] - **quic**: fix minor linting issue (James M Snell) [#&#8203;33913](https://github.com/nodejs/node/pull/33913) - \[[`55360443ce`](https://github.com/nodejs/node/commit/55360443ce)] - **quic**: initial QUIC implementation (James M Snell) [#&#8203;32379](https://github.com/nodejs/node/pull/32379) - \[[`a12a2d892f`](https://github.com/nodejs/node/commit/a12a2d892f)] - **repl**: update deprecation codes (Antoine du HAMEL) [#&#8203;33430](https://github.com/nodejs/node/pull/33430) - \[[`2b3acc44f0`](https://github.com/nodejs/node/commit/2b3acc44f0)] - **src**: large pages support in illumos/solaris systems (David Carlier) [#&#8203;34320](https://github.com/nodejs/node/pull/34320) - \[[`84a7880749`](https://github.com/nodejs/node/commit/84a7880749)] - **src**: minor cleanup and simplification of crypto::Hash (James M Snell) [#&#8203;35651](https://github.com/nodejs/node/pull/35651) - \[[`bfc906906f`](https://github.com/nodejs/node/commit/bfc906906f)] - **src**: combine TLSWrap/SSLWrap (James M Snell) [#&#8203;35552](https://github.com/nodejs/node/pull/35552) - \[[`9fd6122659`](https://github.com/nodejs/node/commit/9fd6122659)] - **src**: add embedding helpers to reduce boilerplate code (Anna Henningsen) [#&#8203;35597](https://github.com/nodejs/node/pull/35597) - \[[`f7ed5f4ae3`](https://github.com/nodejs/node/commit/f7ed5f4ae3)] - **src**: remove toLocalChecked in crypto_context (James M Snell) [#&#8203;35509](https://github.com/nodejs/node/pull/35509) - \[[`17d5d94921`](https://github.com/nodejs/node/commit/17d5d94921)] - **src**: replace more toLocalCheckeds in crypto_\* (James M Snell) [#&#8203;35509](https://github.com/nodejs/node/pull/35509) - \[[`83eaaf9731`](https://github.com/nodejs/node/commit/83eaaf9731)] - **src**: remove unused AsyncWrapObject (James M Snell) [#&#8203;35511](https://github.com/nodejs/node/pull/35511) - \[[`ee5f849fda`](https://github.com/nodejs/node/commit/ee5f849fda)] - **src**: fix compiler warning in env.cc (Anna Henningsen) [#&#8203;35547](https://github.com/nodejs/node/pull/35547) - \[[`40364b181d`](https://github.com/nodejs/node/commit/40364b181d)] - **src**: add check against non-weak BaseObjects at process exit (Anna Henningsen) [#&#8203;35490](https://github.com/nodejs/node/pull/35490) - \[[`bc0c094b74`](https://github.com/nodejs/node/commit/bc0c094b74)] - **src**: unset NODE_VERSION_IS_RELEASE from master (Antoine du Hamel) [#&#8203;35531](https://github.com/nodejs/node/pull/35531) - \[[`fdf0a84e82`](https://github.com/nodejs/node/commit/fdf0a84e82)] - **src**: move all base64.h inline methods into -inl.h header file (Anna Henningsen) [#&#8203;35432](https://github.com/nodejs/node/pull/35432) - \[[`ff4cf817a3`](https://github.com/nodejs/node/commit/ff4cf817a3)] - **src**: create helper for reading Uint32BE (Juan José Arboleda) [#&#8203;34944](https://github.com/nodejs/node/pull/34944) - \[[`c6e1edcc28`](https://github.com/nodejs/node/commit/c6e1edcc28)] - **src**: add Update(const sockaddr\*) variant (James M Snell) [#&#8203;34752](https://github.com/nodejs/node/pull/34752) - \[[`1c14810edc`](https://github.com/nodejs/node/commit/1c14810edc)] - **src**: allow instances of net.BlockList to be created internally (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`6d1f0aed52`](https://github.com/nodejs/node/commit/6d1f0aed52)] - **src**: add SocketAddressLRU Utility (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618) - \[[`feb93c4e84`](https://github.com/nodejs/node/commit/feb93c4e84)] - **src**: guard against nullptr deref in TimerWrapHandle::Stop (Anna Henningsen) [#&#8203;34460](https://github.com/nodejs/node/pull/34460) - \[[`7a447bcd54`](https://github.com/nodejs/node/commit/7a447bcd54)] - **src**: snapshot node (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`c943cb4809`](https://github.com/nodejs/node/commit/c943cb4809)] - **src**: reset zero fill toggle at pre-execution (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`0b8ae5f2cd`](https://github.com/nodejs/node/commit/0b8ae5f2cd)] - **src**: snapshot loaders (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`7ecb285842`](https://github.com/nodejs/node/commit/7ecb285842)] - **src**: make code cache test work with snapshots (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`1faf6f459f`](https://github.com/nodejs/node/commit/1faf6f459f)] - **src**: snapshot Environment upon instantiation (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`ef9964f4c1`](https://github.com/nodejs/node/commit/ef9964f4c1)] - **src**: add an ExternalReferenceRegistry class (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`404302fff5`](https://github.com/nodejs/node/commit/404302fff5)] - **src**: split the main context initialization from Environemnt ctor (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`874460a1d1`](https://github.com/nodejs/node/commit/874460a1d1)] - **src**: refactor TimerWrap lifetime management (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252) - \[[`e2f9dc6e5a`](https://github.com/nodejs/node/commit/e2f9dc6e5a)] - **src**: remove user_data from TimerWrap (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252) - \[[`e19a251824`](https://github.com/nodejs/node/commit/e19a251824)] - **src**: replace InspectorTimer with TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186) - \[[`d4f69002b4`](https://github.com/nodejs/node/commit/d4f69002b4)] - **src**: add TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186) - \[[`52de4cb107`](https://github.com/nodejs/node/commit/52de4cb107)] - **src**: minor updates to FastHrtime (Anna Henningsen) [#&#8203;33851](https://github.com/nodejs/node/pull/33851) - \[[`4678e44bb2`](https://github.com/nodejs/node/commit/4678e44bb2)] - **src**: perform bounds checking on error source line (Anna Henningsen) [#&#8203;33645](https://github.com/nodejs/node/pull/33645) - \[[`7232c2a160`](https://github.com/nodejs/node/commit/7232c2a160)] - **src**: use getauxval in node_main.cc (Daniel Bevenius) [#&#8203;33693](https://github.com/nodejs/node/pull/33693) - \[[`6be80e1893`](https://github.com/nodejs/node/commit/6be80e1893)] - **stream**: fix legacy pipe error handling (Robert Nagy) [#&#8203;35257](https://github.com/nodejs/node/pull/35257) - \[[`2b9003b165`](https://github.com/nodejs/node/commit/2b9003b165)] - **stream**: don't destroy on async iterator success (Robert Nagy) [#&#8203;35122](https://github.com/nodejs/node/pull/35122) - \[[`9c62e0e384`](https://github.com/nodejs/node/commit/9c62e0e384)] - **stream**: move to internal/streams (Matteo Collina) [#&#8203;35239](https://github.com/nodejs/node/pull/35239) - \[[`e0d3b758a0`](https://github.com/nodejs/node/commit/e0d3b758a0)] - **stream**: improve Writable.destroy performance (Robert Nagy) [#&#8203;35067](https://github.com/nodejs/node/pull/35067) - \[[`02c4869bee`](https://github.com/nodejs/node/commit/02c4869bee)] - **stream**: fix Duplex.\_construct race (Robert Nagy) [#&#8203;34456](https://github.com/nodejs/node/pull/34456) - \[[`5aeaff6499`](https://github.com/nodejs/node/commit/5aeaff6499)] - **stream**: refactor lazyLoadPromises (rickyes) [#&#8203;34354](https://github.com/nodejs/node/pull/34354) - \[[`a55b77d2d3`](https://github.com/nodejs/node/commit/a55b77d2d3)] - **stream**: finished on closed OutgoingMessage (Robert Nagy) [#&#8203;34313](https://github.com/nodejs/node/pull/34313) - \[[`e10e292c5e`](https://github.com/nodejs/node/commit/e10e292c5e)] - **stream**: remove unused \_transformState (Robert Nagy) [#&#8203;33105](https://github.com/nodejs/node/pull/33105) - \[[`f5c11a1a0a`](https://github.com/nodejs/node/commit/f5c11a1a0a)] - **stream**: don't emit finish after close (Robert Nagy) [#&#8203;32933](https://github.com/nodejs/node/pull/32933) - \[[`089d654dd8`](https://github.com/nodejs/node/commit/089d654dd8)] - **test**: fix addons/dlopen-ping-pong for npm 7.0.1 (Myles Borins) [#&#8203;35667](https://github.com/nodejs/node/pull/35667) - \[[`9ce5a03148`](https://github.com/nodejs/node/commit/9ce5a03148)] - **test**: add test for listen callback runtime binding (H Adinarayana) [#&#8203;35657](https://github.com/nodejs/node/pull/35657) - \[[`a3731309cc`](https://github.com/nodejs/node/commit/a3731309cc)] - **test**: refactor test-https-host-headers (himself65) [#&#8203;32805](https://github.com/nodejs/node/pull/32805) - \[[`30fb4a015d`](https://github.com/nodejs/node/commit/30fb4a015d)] - **test**: add common.mustSucceed (Tobias Nießen) [#&#8203;35086](https://github.com/nodejs/node/pull/35086) - \[[`c143266b55`](https://github.com/nodejs/node/commit/c143266b55)] - **test**: add a few uncovered url tests from wpt (Daijiro Wachi) [#&#8203;35636](https://github.com/nodejs/node/pull/35636) - \[[`6751b6dc3d`](https://github.com/nodejs/node/commit/6751b6dc3d)] - **test**: check for AbortController existence (James M Snell) [#&#8203;35616](https://github.com/nodejs/node/pull/35616) - \[[`9f2e19fa30`](https://github.com/nodejs/node/commit/9f2e19fa30)] - **test**: update url test for win (Daijiro Wachi) [#&#8203;35622](https://github.com/nodejs/node/pull/35622) - \[[`c88d845db3`](https://github.com/nodejs/node/commit/c88d845db3)] - **test**: update wpt status for url (Daijiro Wachi) [#&#8203;35335](https://github.com/nodejs/node/pull/35335) - \[[`589dbf1392`](https://github.com/nodejs/node/commit/589dbf1392)] - **test**: update wpt tests for url (Daijiro Wachi) [#&#8203;35329](https://github.com/nodejs/node/pull/35329) - \[[`46bef7b771`](https://github.com/nodejs/node/commit/46bef7b771)] - **test**: add Actions annotation output (Mary Marchini) [#&#8203;34590](https://github.com/nodejs/node/pull/34590) - \[[`a9c5b873ca`](https://github.com/nodejs/node/commit/a9c5b873ca)] - **test**: move buffer-as-path symlink test to its own test file (Rich Trott) [#&#8203;34569](https://github.com/nodejs/node/pull/34569) - \[[`31ba9a20bd`](https://github.com/nodejs/node/commit/31ba9a20bd)] - **test**: run test-benchmark-napi on arm (Rich Trott) [#&#8203;34502](https://github.com/nodejs/node/pull/34502) - \[[`2c4ebe0426`](https://github.com/nodejs/node/commit/2c4ebe0426)] - **test**: use `.then(common.mustCall())` for all async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363) - \[[`772fdb0cd3`](https://github.com/nodejs/node/commit/772fdb0cd3)] - **test**: fix flaky test-fs-stream-construct (Rich Trott) [#&#8203;34203](https://github.com/nodejs/node/pull/34203) - \[[`9b8d317d99`](https://github.com/nodejs/node/commit/9b8d317d99)] - **test**: fix flaky test-http2-invalidheaderfield (Rich Trott) [#&#8203;34173](https://github.com/nodejs/node/pull/34173) - \[[`2ccf15b2bf`](https://github.com/nodejs/node/commit/2ccf15b2bf)] - **test**: ensure finish is emitted before destroy (Robert Nagy) [#&#8203;33137](https://github.com/nodejs/node/pull/33137) - \[[`27f3530da3`](https://github.com/nodejs/node/commit/27f3530da3)] - **test**: remove unnecessary eslint-disable comment (Rich Trott) [#&#8203;34000](https://github.com/nodejs/node/pull/34000) - \[[`326a79ebb9`](https://github.com/nodejs/node/commit/326a79ebb9)] - **test**: fix typo in test-quic-client-empty-preferred-address.js (gengjiawen) [#&#8203;33976](https://github.com/nodejs/node/pull/33976) - \[[`b0b268f5a2`](https://github.com/nodejs/node/commit/b0b268f5a2)] - **test**: fix flaky fs-construct test (Robert Nagy) [#&#8203;33625](https://github.com/nodejs/node/pull/33625) - \[[`cbe955c227`](https://github.com/nodejs/node/commit/cbe955c227)] - **test**: add net regression test (Robert Nagy) [#&#8203;32794](https://github.com/nodejs/node/pull/32794) - \[[`5d179cb2ec`](https://github.com/nodejs/node/commit/5d179cb2ec)] - **timers**: use AbortController with correct name/message (Anna Henningsen) [#&#8203;34763](https://github.com/nodejs/node/pull/34763) - \[[`64d22c320c`](https://github.com/nodejs/node/commit/64d22c320c)] - **timers**: fix multipleResolves in promisified timeouts/immediates (Denys Otrishko) [#&#8203;33949](https://github.com/nodejs/node/pull/33949) - \[[`fbe33aa52e`](https://github.com/nodejs/node/commit/fbe33aa52e)] - **tools**: bump remark-lint-preset-node to 1.17.1 (Rich Trott) [#&#8203;35668](https://github.com/nodejs/node/pull/35668) - \[[`35a6946193`](https://github.com/nodejs/node/commit/35a6946193)] - **tools**: update gyp-next to v0.6.2 (Michaël Zasso) [#&#8203;35690](https://github.com/nodejs/node/pull/35690) - \[[`be80faa0c8`](https://github.com/nodejs/node/commit/be80faa0c8)] - **tools**: update gyp-next to v0.6.0 (Ujjwal Sharma) [#&#8203;35635](https://github.com/nodejs/node/pull/35635) - \[[`2d83e743d9`](https://github.com/nodejs/node/commit/2d83e743d9)] - **tools**: update ESLint to 7.11.0 (Colin Ihrig) [#&#8203;35578](https://github.com/nodejs/node/pull/35578) - \[[`0eca660948`](https://github.com/nodejs/node/commit/0eca660948)] - **tools**: update ESLint to 7.7.0 (Colin Ihrig) [#&#8203;34783](https://github.com/nodejs/node/pull/34783) - \[[`77b68f9a29`](https://github.com/nodejs/node/commit/77b68f9a29)] - **tools**: add linting rule for async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363) - \[[`f04538761f`](https://github.com/nodejs/node/commit/f04538761f)] - **tools**: enable Node.js command line flags in node_mksnapshot (Joyee Cheung) [#&#8203;32984](https://github.com/nodejs/node/pull/32984) - \[[`b0d4eb37c7`](https://github.com/nodejs/node/commit/b0d4eb37c7)] - **tools**: update ESLint to 7.4.0 (Colin Ihrig) [#&#8203;34205](https://github.com/nodejs/node/pull/34205) - \[[`076e4ed2d1`](https://github.com/nodejs/node/commit/076e4ed2d1)] - **tools**: update ESLint from 7.2.0 to 7.3.1 (Rich Trott) [#&#8203;34000](https://github.com/nodejs/node/pull/34000) - \[[`7afe3af200`](https://github.com/nodejs/node/commit/7afe3af200)] - **url**: fix file url reparse (Daijiro Wachi) [#&#8203;35671](https://github.com/nodejs/node/pull/35671) ### [`v14.18.1`](https://github.com/nodejs/node/releases/v14.18.1) [Compare Source](https://github.com/nodejs/node/compare/v14.18.0...v14.18.1) This is a security release. ##### Notable changes - **CVE-2021-22959**: HTTP Request Smuggling due to spaced in headers (Medium) - The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at [CVE-2021-22959](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22959) after publication. - **CVE-2021-22960**: HTTP Request Smuggling when parsing the body (Medium) - The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at [CVE-2021-22960](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22960) after publication. ##### Commits - \[[`8c254ca7e4`](https://github.com/nodejs/node/commit/8c254ca7e4)] - **deps**: update llhttp to 2.1.4 (Fedor Indutny) [nodejs-private/node-private#&#8203;285](https://github.com/nodejs-private/node-private/pull/285) - \[[`9b92ae2499`](https://github.com/nodejs/node/commit/9b92ae2499)] - **http**: add regression test for smuggling content length (Matteo Collina) [nodejs-private/node-private#&#8203;285](https://github.com/nodejs-private/node-private/pull/285) - \[[`f467539719`](https://github.com/nodejs/node/commit/f467539719)] - **http**: add regression test for chunked smuggling (Matteo Collina) [nodejs-private/node-private#&#8203;285](https://github.com/nodejs-private/node-private/pull/285) ### [`v14.18.0`](https://github.com/nodejs/node/releases/v14.18.0) [Compare Source](https://github.com/nodejs/node/compare/v14.17.6...v14.18.0) ##### Notable Changes - \[[`3a60de0135`](https://github.com/nodejs/node/commit/3a60de0135)] - **assert**: change status of legacy asserts (James M Snell) [#&#8203;38113](https://github.com/nodejs/node/pull/38113) - \[[`df37c106a7`](https://github.com/nodejs/node/commit/df37c106a7)] - **(SEMVER-MINOR)** **buffer**: introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811) - \[[`223494c548`](https://github.com/nodejs/node/commit/223494c548)] - **(SEMVER-MINOR)** **buffer**: add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952) - \[[`14fc4ddabc`](https://github.com/nodejs/node/commit/14fc4ddabc)] - **(SEMVER-MINOR)** **child_process**: allow `options.cwd` receive a URL (Khaidi Chu) [#&#8203;38862](https://github.com/nodejs/node/pull/38862) - \[[`b68b13acb3`](https://github.com/nodejs/node/commit/b68b13acb3)] - **(SEMVER-MINOR)** **child_process**: add timeout to spawn and fork (Nitzan Uziely) [#&#8203;37256](https://github.com/nodejs/node/pull/37256) - \[[`da98c9f99b`](https://github.com/nodejs/node/commit/da98c9f99b)] - **(SEMVER-MINOR)** **child_process**: allow promisified exec to be cancel (Carlos Fuentes) [#&#8203;34249](https://github.com/nodejs/node/pull/34249) - \[[`779310ac87`](https://github.com/nodejs/node/commit/779310ac87)] - **(SEMVER-MINOR)** **child_process**: add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412) - \[[`40eb3b79f1`](https://github.com/nodejs/node/commit/40eb3b79f1)] - **(SEMVER-MINOR)** **cli**: add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755) - \[[`39eba0a2e1`](https://github.com/nodejs/node/commit/39eba0a2e1)] - **(SEMVER-MINOR)** **cli**: add --node-memory-debug option (Anna Henningsen) [#&#8203;35537](https://github.com/nodejs/node/pull/35537) - \[[`d8d9a9628a`](https://github.com/nodejs/node/commit/d8d9a9628a)] - **(SEMVER-MINOR)** **dns**: add "tries" option to Resolve options (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`15ba19b020`](https://github.com/nodejs/node/commit/15ba19b020)] - **(SEMVER-MINOR)** **dns**: allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099) - \[[`307c1d817f`](https://github.com/nodejs/node/commit/307c1d817f)] - **doc**: refactor fs docs structure (James M Snell) [#&#8203;37170](https://github.com/nodejs/node/pull/37170) - \[[`9ee3f77e32`](https://github.com/nodejs/node/commit/9ee3f77e32)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362) - \[[`e73bfed2f4`](https://github.com/nodejs/node/commit/e73bfed2f4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918) - \[[`989c204a58`](https://github.com/nodejs/node/commit/989c204a58)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028) - \[[`ef72490cde`](https://github.com/nodejs/node/commit/ef72490cde)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287) - \[[`cad9d20f64`](https://github.com/nodejs/node/commit/cad9d20f64)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490) - \[[`2b0e2706c0`](https://github.com/nodejs/node/commit/2b0e2706c0)] - **fs**: improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608) - \[[`fe12cc07b3`](https://github.com/nodejs/node/commit/fe12cc07b3)] - **(SEMVER-MINOR)** **fs**: add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179) - \[[`2459c115a8`](https://github.com/nodejs/node/commit/2459c115a8)] - **(SEMVER-MINOR)** **fs**: allow `position` parameter to be a `BigInt` in read and readSync (Darshan Sen) [#&#8203;36190](https://github.com/nodejs/node/pull/36190) - \[[`6544cfb4b9`](https://github.com/nodejs/node/commit/6544cfb4b9)] - **(SEMVER-MINOR)** **http2**: add support for sensitive headers (Anna Henningsen) [#&#8203;34145](https://github.com/nodejs/node/pull/34145) - \[[`a6c6cbb4e6`](https://github.com/nodejs/node/commit/a6c6cbb4e6)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978) - \[[`1e5aca550c`](https://github.com/nodejs/node/commit/1e5aca550c)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748) - \[[`93af04afbb`](https://github.com/nodejs/node/commit/93af04afbb)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587) - \[[`f9f9389d83`](https://github.com/nodejs/node/commit/f9f9389d83)] - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - \[[`87c71065eb`](https://github.com/nodejs/node/commit/87c71065eb)] - **(SEMVER-MINOR)** **net**: introduce net.BlockList (James M Snell) [#&#8203;34625](https://github.com/nodejs/node/pull/34625) - \[[`b421d99a48`](https://github.com/nodejs/node/commit/b421d99a48)] - **(SEMVER-MINOR)** **node-api**: allow retrieval of add-on file name (Gabriel Schulhof) [#&#8203;37195](https://github.com/nodejs/node/pull/37195) - \[[`6a4811df8a`](https://github.com/nodejs/node/commit/6a4811df8a)] - **(SEMVER-MINOR)** **os**: add os.devNull (Luigi Pinca) [#&#8203;38569](https://github.com/nodejs/node/pull/38569) - \[[`4a88ddeeca`](https://github.com/nodejs/node/commit/4a88ddeeca)] - **(SEMVER-MINOR)** **perf_hooks**: introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155) - \[[`1a6bf1c4a3`](https://github.com/nodejs/node/commit/1a6bf1c4a3)] - **(SEMVER-MINOR)** **process**: add api to enable source-maps programmatically (legendecas) [#&#8203;39085](https://github.com/nodejs/node/pull/39085) - \[[`99735a6fe8`](https://github.com/nodejs/node/commit/99735a6fe8)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659) - \[[`3982919317`](https://github.com/nodejs/node/commit/3982919317)] - **(SEMVER-MINOR)** **process**: add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291) - \[[`526e6c7bde`](https://github.com/nodejs/node/commit/526e6c7bde)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932) - \[[`e6eee08692`](https://github.com/nodejs/node/commit/e6eee08692)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676) - \[[`32de361d70`](https://github.com/nodejs/node/commit/32de361d70)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662) - \[[`797f7f8a38`](https://github.com/nodejs/node/commit/797f7f8a38)] - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - \[[`abfd71b64c`](https://github.com/nodejs/node/commit/abfd71b64c)] - **(SEMVER-MINOR)** **src**: call overload ctor from the original ctor (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768) - \[[`1efae01b18`](https://github.com/nodejs/node/commit/1efae01b18)] - **(SEMVER-MINOR)** **src**: add a constructor overload for CallbackScope (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768) - \[[`f7933804ba`](https://github.com/nodejs/node/commit/f7933804ba)] - **(SEMVER-MINOR)** **src**: allow to negate boolean CLI flags (Michaël Zasso) [#&#8203;39023](https://github.com/nodejs/node/pull/39023) - \[[`6d06ac2202`](https://github.com/nodejs/node/commit/6d06ac2202)] - **(SEMVER-MINOR)** **src**: add --heapsnapshot-near-heap-limit option (Joyee Cheung) [#&#8203;33010](https://github.com/nodejs/node/pull/33010) - \[[`577d228ca0`](https://github.com/nodejs/node/commit/577d228ca0)] - **(SEMVER-MINOR)** **src**: add way to get IsolateData and allocator from Environment (Anna Henningsen) [#&#8203;36441](https://github.com/nodejs/node/pull/36441) - \[[`658a266cd4`](https://github.com/nodejs/node/commit/658a266cd4)] - **(SEMVER-MINOR)** **src**: allow preventing SetPrepareStackTraceCallback (Shelley Vohr) [#&#8203;36447](https://github.com/nodejs/node/pull/36447) - \[[`f421422ea4`](https://github.com/nodejs/node/commit/f421422ea4)] - **(SEMVER-MINOR)** **src**: add maybe versions of EmitExit and EmitBeforeExit (Anna Henningsen) [#&#8203;35486](https://github.com/nodejs/node/pull/35486) - \[[`a62d4d60f4`](https://github.com/nodejs/node/commit/a62d4d60f4)] - **(SEMVER-MINOR)** **stream**: add readableDidRead if has been read from (Robert Nagy) [#&#8203;39589](https://github.com/nodejs/node/pull/39589) - \[[`63502131a3`](https://github.com/nodejs/node/commit/63502131a3)] - **(SEMVER-MINOR)** **stream**: pipeline accept Buffer as a valid first argument (Nitzan Uziely) [#&#8203;37739](https://github.com/nodejs/node/pull/37739) - \[[`68bbebd42c`](https://github.com/nodejs/node/commit/68bbebd42c)] - **(SEMVER-MINOR)** **tls**: allow reading data into a static buffer (Andrey Pechkurov) [#&#8203;35753](https://github.com/nodejs/node/pull/35753) - \[[`1cbb74d63d`](https://github.com/nodejs/node/commit/1cbb74d63d)] - **(SEMVER-MINOR)** **url**: expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960) - \[[`8eb11356dd`](https://github.com/nodejs/node/commit/8eb11356dd)] - **(SEMVER-MINOR)** **util**: expose toUSVString (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814) - \[[`84fcdc3074`](https://github.com/nodejs/node/commit/84fcdc3074)] - **(SEMVER-MINOR)** **v8**: implement v8.stopCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807) - \[[`b238b6bf17`](https://github.com/nodejs/node/commit/b238b6bf17)] - **(SEMVER-MINOR)** **v8**: implement v8.takeCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807) - \[[`9f6bc58da8`](https://github.com/nodejs/node/commit/9f6bc58da8)] - **(SEMVER-MINOR)** **worker**: add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486) ##### Commits ##### Semver-minor commits - \[[`f3563d3197`](https://github.com/nodejs/node/commit/f3563d3197)] - **(SEMVER-MINOR)** **async_hooks**: use new v8::Context PromiseHook API (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`df37c106a7`](https://github.com/nodejs/node/commit/df37c106a7)] - **(SEMVER-MINOR)** **buffer**: introduce Blob (James M Snell) [#&#8203;36811](https://github.com/nodejs/node/pull/36811) - \[[`223494c548`](https://github.com/nodejs/node/commit/223494c548)] - **(SEMVER-MINOR)** **buffer**: add base64url encoding option (Filip Skokan) [#&#8203;36952](https://github.com/nodejs/node/pull/36952) - \[[`14fc4ddabc`](https://github.com/nodejs/node/commit/14fc4ddabc)] - **(SEMVER-MINOR)** **child_process**: allow `options.cwd` receive a URL (Khaidi Chu) [#&#8203;38862](https://github.com/nodejs/node/pull/38862) - \[[`b68b13acb3`](https://github.com/nodejs/node/commit/b68b13acb3)] - **(SEMVER-MINOR)** **child_process**: add timeout to spawn and fork (Nitzan Uziely) [#&#8203;37256](https://github.com/nodejs/node/pull/37256) - \[[`da98c9f99b`](https://github.com/nodejs/node/commit/da98c9f99b)] - **(SEMVER-MINOR)** **child_process**: allow promisified exec to be cancel (Carlos Fuentes) [#&#8203;34249](https://github.com/nodejs/node/pull/34249) - \[[`779310ac87`](https://github.com/nodejs/node/commit/779310ac87)] - **(SEMVER-MINOR)** **child_process**: add 'overlapped' stdio flag (Thiago Padilha) [#&#8203;29412](https://github.com/nodejs/node/pull/29412) - \[[`40eb3b79f1`](https://github.com/nodejs/node/commit/40eb3b79f1)] - **(SEMVER-MINOR)** **cli**: add -C alias for --conditions flag (Guy Bedford) [#&#8203;38755](https://github.com/nodejs/node/pull/38755) - \[[`39eba0a2e1`](https://github.com/nodejs/node/commit/39eba0a2e1)] - **(SEMVER-MINOR)** **cli**: add --node-memory-debug option (Anna Henningsen) [#&#8203;35537](https://github.com/nodejs/node/pull/35537) - \[[`d9b58a0262`](https://github.com/nodejs/node/commit/d9b58a0262)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`fa4cb17`](https://github.com/nodejs/node/commit/fa4cb172cde2) (Stephen Belanger) [#&#8203;38577](https://github.com/nodejs/node/pull/38577) - \[[`9d7177c152`](https://github.com/nodejs/node/commit/9d7177c152)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`4c07451`](https://github.com/nodejs/node/commit/4c074516397b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`ec0f0ef8ef`](https://github.com/nodejs/node/commit/ec0f0ef8ef)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`5f44131`](https://github.com/nodejs/node/commit/5f4413194480) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`3e7238e45a`](https://github.com/nodejs/node/commit/3e7238e45a)] - **(SEMVER-MINOR)** **deps**: V8: cherry-pick [`272445f`](https://github.com/nodejs/node/commit/272445f10927) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`214e568597`](https://github.com/nodejs/node/commit/214e568597)] - **(SEMVER-MINOR)** **deps**: V8: backport [`c0fceaa`](https://github.com/nodejs/node/commit/c0fceaa0669b) (Stephen Belanger) [#&#8203;36394](https://github.com/nodejs/node/pull/36394) - \[[`d8d9a9628a`](https://github.com/nodejs/node/commit/d8d9a9628a)] - **(SEMVER-MINOR)** **dns**: add "tries" option to Resolve options (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`15ba19b020`](https://github.com/nodejs/node/commit/15ba19b020)] - **(SEMVER-MINOR)** **dns**: allow `--dns-result-order` to change default dns verbatim (Ouyang Yadong) [#&#8203;38099](https://github.com/nodejs/node/pull/38099) - \[[`defb77cac9`](https://github.com/nodejs/node/commit/defb77cac9)] - **(SEMVER-MINOR)** **doc**: add missing change to resolver ctor (Luan Devecchi) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`9ee3f77e32`](https://github.com/nodejs/node/commit/9ee3f77e32)] - **(SEMVER-MINOR)** **errors**: remove experimental from --enable-source-maps (Benjamin Coe) [#&#8203;37362](https://github.com/nodejs/node/pull/37362) - \[[`989c204a58`](https://github.com/nodejs/node/commit/989c204a58)] - **(SEMVER-MINOR)** **fs**: allow empty string for temp directory prefix (Voltrex) [#&#8203;39028](https://github.com/nodejs/node/pull/39028) - \[[`ef72490cde`](https://github.com/nodejs/node/commit/ef72490cde)] - **(SEMVER-MINOR)** **fs**: allow no-params fsPromises fileHandle read (Nitzan Uziely) [#&#8203;38287](https://github.com/nodejs/node/pull/38287) - \[[`cad9d20f64`](https://github.com/nodejs/node/commit/cad9d20f64)] - **(SEMVER-MINOR)** **fs**: add support for async iterators to `fsPromises.writeFile` (HiroyukiYagihashi) [#&#8203;37490](https://github.com/nodejs/node/pull/37490) - \[[`fe12cc07b3`](https://github.com/nodejs/node/commit/fe12cc07b3)] - **(SEMVER-MINOR)** **fs**: add fsPromises.watch() (James M Snell) [#&#8203;37179](https://github.com/nodejs/node/pull/37179) - \[[`2459c115a8`](https://github.com/nodejs/node/commit/2459c115a8)] - **(SEMVER-MINOR)** **fs**: allow `position` parameter to be a `BigInt` in read and readSync (Darshan Sen) [#&#8203;36190](https://github.com/nodejs/node/pull/36190) - \[[`6544cfb4b9`](https://github.com/nodejs/node/commit/6544cfb4b9)] - **(SEMVER-MINOR)** **http2**: add support for sensitive headers (Anna Henningsen) [#&#8203;34145](https://github.com/nodejs/node/pull/34145) - \[[`a6c6cbb4e6`](https://github.com/nodejs/node/commit/a6c6cbb4e6)] - **(SEMVER-MINOR)** **http2**: allow setting the local window size of a session (Yongsheng Zhang) [#&#8203;35978](https://github.com/nodejs/node/pull/35978) - \[[`93af04afbb`](https://github.com/nodejs/node/commit/93af04afbb)] - **(SEMVER-MINOR)** **module**: add support for `URL` to `import.meta.resolve` (Antoine du Hamel) [#&#8203;38587](https://github.com/nodejs/node/pull/38587) - \[[`f9f9389d83`](https://github.com/nodejs/node/commit/f9f9389d83)] - **(SEMVER-MINOR)** **module**: add support for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - \[[`76d4f22bab`](https://github.com/nodejs/node/commit/76d4f22bab)] - **(SEMVER-MINOR)** **net**: allow net.BlockList to use net.SocketAddress objects (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`82363d864d`](https://github.com/nodejs/node/commit/82363d864d)] - **(SEMVER-MINOR)** **net**: add SocketAddress class (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`0202ba46b8`](https://github.com/nodejs/node/commit/0202ba46b8)] - **(SEMVER-MINOR)** **net**: make net.BlockList cloneable (James M Snell) [#&#8203;37917](https://github.com/nodejs/node/pull/37917) - \[[`a41a3e3b3f`](https://github.com/nodejs/node/commit/a41a3e3b3f)] - **(SEMVER-MINOR)** **net**: make blocklist family case insensitive (James M Snell) [#&#8203;34864](https://github.com/nodejs/node/pull/34864) - \[[`87c71065eb`](https://github.com/nodejs/node/commit/87c71065eb)] - **(SEMVER-MINOR)** **net**: introduce net.BlockList (James M Snell) [#&#8203;34625](https://github.com/nodejs/node/pull/34625) - \[[`b421d99a48`](https://github.com/nodejs/node/commit/b421d99a48)] - **(SEMVER-MINOR)** **node-api**: allow retrieval of add-on file name (Gabriel Schulhof) [#&#8203;37195](https://github.com/nodejs/node/pull/37195) - \[[`6a4811df8a`](https://github.com/nodejs/node/commit/6a4811df8a)] - **(SEMVER-MINOR)** **os**: add os.devNull (Luigi Pinca) [#&#8203;38569](https://github.com/nodejs/node/pull/38569) - \[[`4a88ddeeca`](https://github.com/nodejs/node/commit/4a88ddeeca)] - **(SEMVER-MINOR)** **perf_hooks**: introduce createHistogram (James M Snell) [#&#8203;37155](https://github.com/nodejs/node/pull/37155) - \[[`1a6bf1c4a3`](https://github.com/nodejs/node/commit/1a6bf1c4a3)] - **(SEMVER-MINOR)** **process**: add api to enable source-maps programmatically (legendecas) [#&#8203;39085](https://github.com/nodejs/node/pull/39085) - \[[`99735a6fe8`](https://github.com/nodejs/node/commit/99735a6fe8)] - **(SEMVER-MINOR)** **process**: add `'worker'` event (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659) - \[[`3982919317`](https://github.com/nodejs/node/commit/3982919317)] - **(SEMVER-MINOR)** **process**: add direct access to rss without iterating pages (Adrien Maret) [#&#8203;34291](https://github.com/nodejs/node/pull/34291) - \[[`526e6c7bde`](https://github.com/nodejs/node/commit/526e6c7bde)] - **(SEMVER-MINOR)** **readline**: add AbortSignal support to interface (Nitzan Uziely) [#&#8203;37932](https://github.com/nodejs/node/pull/37932) - \[[`e6eee08692`](https://github.com/nodejs/node/commit/e6eee08692)] - **(SEMVER-MINOR)** **readline**: add support for the AbortController to the question method (Mattias Runge-Broberg) [#&#8203;33676](https://github.com/nodejs/node/pull/33676) - \[[`32de361d70`](https://github.com/nodejs/node/commit/32de361d70)] - **(SEMVER-MINOR)** **readline**: add history event and option to set initial history (Mattias Runge-Broberg) [#&#8203;33662](https://github.com/nodejs/node/pull/33662) - \[[`797f7f8a38`](https://github.com/nodejs/node/commit/797f7f8a38)] - **(SEMVER-MINOR)** **repl**: add auto‑completion for `node:`‑prefixed `require(…)` calls (ExE Boss) [#&#8203;37246](https://github.com/nodejs/node/pull/37246) - \[[`abfd71b64c`](https://github.com/nodejs/node/commit/abfd71b64c)] - **(SEMVER-MINOR)** **src**: call overload ctor from the original ctor (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768) - \[[`1efae01b18`](https://github.com/nodejs/node/commit/1efae01b18)] - **(SEMVER-MINOR)** **src**: add a constructor overload for CallbackScope (Darshan Sen) [#&#8203;39768](https://github.com/nodejs/node/pull/39768) - \[[`1aa2080d29`](https://github.com/nodejs/node/commit/1aa2080d29)] - **(SEMVER-MINOR)** **src**: fix align in cares_wrap.h (Luan) [#&#8203;39610](https://github.com/nodejs/node/pull/39610) - \[[`f7933804ba`](https://github.com/nodejs/node/commit/f7933804ba)] - **(SEMVER-MINOR)** **src**: allow to negate boolean CLI flags (Michaël Zasso) [#&#8203;39023](https://github.com/nodejs/node/pull/39023) - \[[`6d06ac2202`](https://github.com/nodejs/node/commit/6d06ac2202)] - **(SEMVER-MINOR)** **src**: add --heapsnapshot-near-heap-limit option (Joyee Cheung) [#&#8203;33010](https://github.com/nodejs/node/pull/33010) - \[[`4091eb9db7`](https://github.com/nodejs/node/commit/4091eb9db7)] - **(SEMVER-MINOR)** **src**: move node_binding to modern THROW_ERR\* (James M Snell) [#&#8203;35469](https://github.com/nodejs/node/pull/35469) - \[[`577d228ca0`](https://github.com/nodejs/node/commit/577d228ca0)] - **(SEMVER-MINOR)** **src**: add way to get IsolateData and allocator from Environment (Anna Henningsen) [#&#8203;36441](https://github.com/nodejs/node/pull/36441) - \[[`658a266cd4`](https://github.com/nodejs/node/commit/658a266cd4)] - **(SEMVER-MINOR)** **src**: allow preventing SetPrepareStackTraceCallback (Shelley Vohr) [#&#8203;36447](https://github.com/nodejs/node/pull/36447) - \[[`f421422ea4`](https://github.com/nodejs/node/commit/f421422ea4)] - **(SEMVER-MINOR)** **src**: add maybe versions of EmitExit and EmitBeforeExit (Anna Henningsen) [#&#8203;35486](https://github.com/nodejs/node/pull/35486) - \[[`a62d4d60f4`](https://github.com/nodejs/node/commit/a62d4d60f4)] - **(SEMVER-MINOR)** **stream**: add readableDidRead if has been read from (Robert Nagy) [#&#8203;39589](https://github.com/nodejs/node/pull/39589) - \[[`63502131a3`](https://github.com/nodejs/node/commit/63502131a3)] - **(SEMVER-MINOR)** **stream**: pipeline accept Buffer as a valid first argument (Nitzan Uziely) [#&#8203;37739](https://github.com/nodejs/node/pull/37739) - \[[`72ef41c72b`](https://github.com/nodejs/node/commit/72ef41c72b)] - **(SEMVER-MINOR)** **test**: add wpt tests for Blob (Michaël Zasso) [#&#8203;36811](https://github.com/nodejs/node/pull/36811) - \[[`68bbebd42c`](https://github.com/nodejs/node/commit/68bbebd42c)] - **(SEMVER-MINOR)** **tls**: allow reading data into a static buffer (Andrey Pechkurov) [#&#8203;35753](https://github.com/nodejs/node/pull/35753) - \[[`587deacad9`](https://github.com/nodejs/node/commit/587deacad9)] - **(SEMVER-MINOR)** **tools**: add `Worker` to type-parser (James M Snell) [#&#8203;38659](https://github.com/nodejs/node/pull/38659) - \[[`1cbb74d63d`](https://github.com/nodejs/node/commit/1cbb74d63d)] - **(SEMVER-MINOR)** **url**: expose urlToHttpOptions utility (Yongsheng Zhang) [#&#8203;35960](https://github.com/nodejs/node/pull/35960) - \[[`8eb11356dd`](https://github.com/nodejs/node/commit/8eb11356dd)] - **(SEMVER-MINOR)** **util**: expose toUSVString (Robert Nagy) [#&#8203;39814](https://github.com/nodejs/node/pull/39814) - \[[`84fcdc3074`](https://github.com/nodejs/node/commit/84fcdc3074)] - **(SEMVER-MINOR)** **v8**: implement v8.stopCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807) - \[[`b238b6bf17`](https://github.com/nodejs/node/commit/b238b6bf17)] - **(SEMVER-MINOR)** **v8**: implement v8.takeCoverage() (Joyee Cheung) [#&#8203;33807](https://github.com/nodejs/node/pull/33807) - \[[`9f6bc58da8`](https://github.com/nodejs/node/commit/9f6bc58da8)] - **(SEMVER-MINOR)** **worker**: add setEnvironmentData/getEnvironmentData (James M Snell) [#&#8203;37486](https://github.com/nodejs/node/pull/37486) ##### Semver-patch commits - \[[`3a60de0135`](https://github.com/nodejs/node/commit/3a60de0135)] - **assert**: change status of legacy asserts (James M Snell) [#&#8203;38113](https://github.com/nodejs/node/pull/38113) - \[[`5a42be9719`](https://github.com/nodejs/node/commit/5a42be9719)] - **async_hooks**: use resource stack for AsyncLocalStorage run (Stephen Belanger) [#&#8203;39890](https://github.com/nodejs/node/pull/39890) - \[[`fc29ddb38e`](https://github.com/nodejs/node/commit/fc29ddb38e)] - **async_hooks**: emit promise trace events from JS (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`13296d1abf`](https://github.com/nodejs/node/commit/13296d1abf)] - **async_hooks**: eliminate native PromiseHook (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`48e5971e51`](https://github.com/nodejs/node/commit/48e5971e51)] - **async_hooks**: check for empty contexts before removing (Bryan English) [#&#8203;39095](https://github.com/nodejs/node/pull/39095) - \[[`691c00c48b`](https://github.com/nodejs/node/commit/691c00c48b)] - **async_hooks**: switch between native and context hooks correctly (Stephen Belanger) [#&#8203;38912](https://github.com/nodejs/node/pull/38912) - \[[`8484ab2a6c`](https://github.com/nodejs/node/commit/8484ab2a6c)] - **buffer**: avoid creating the backing store in the thread (James M Snell) [#&#8203;37052](https://github.com/nodejs/node/pull/37052) - \[[`c8d039a872`](https://github.com/nodejs/node/commit/c8d039a872)] - **buffer**: make Blob's constructor more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361) - \[[`05d73ac286`](https://github.com/nodejs/node/commit/05d73ac286)] - **buffer**: make Blob's slice method more spec-compliant (Michaël Zasso) [#&#8203;37361](https://github.com/nodejs/node/pull/37361) - \[[`e7cf2efc60`](https://github.com/nodejs/node/commit/e7cf2efc60)] - **buffer**: add @&#8203;[@&#8203;toStringTag](https://github.com/toStringTag) to Blob (Colin Ihrig) [#&#8203;37336](https://github.com/nodejs/node/pull/37336) - \[[`d99deeaf97`](https://github.com/nodejs/node/commit/d99deeaf97)] - **build**: fix update authors commit (Mestery) [#&#8203;39858](https://github.com/nodejs/node/pull/39858) - \[[`5e1cba81bf`](https://github.com/nodejs/node/commit/5e1cba81bf)] - **build**: add authors.yml (Tierney Cyren) [#&#8203;35831](https://github.com/nodejs/node/pull/35831) - \[[`ed3c332089`](https://github.com/nodejs/node/commit/ed3c332089)] - **build**: add option to hide console window (Cheng Zhao) [#&#8203;39712](https://github.com/nodejs/node/pull/39712) - \[[`c696f97c5e`](https://github.com/nodejs/node/commit/c696f97c5e)] - **build**: exclude markdown files from some GitHub Actions (Rich Trott) [#&#8203;39565](https://github.com/nodejs/node/pull/39565) - \[[`0bd6dd1ee2`](https://github.com/nodejs/node/commit/0bd6dd1ee2)] - **build**: use lts shorthand in GitHub Actions (Rich Trott) [#&#8203;39538](https://github.com/nodejs/node/pull/39538) - \[[`3482bca643`](https://github.com/nodejs/node/commit/3482bca643)] - **build**: override python executable path on configure (legendecas) [#&#8203;39465](https://github.com/nodejs/node/pull/39465) - \[[`61261cdb8e`](https://github.com/nodejs/node/commit/61261cdb8e)] - **build**: use Node.js 14 in commit-lint.yml (Rich Trott) [#&#8203;39506](https://github.com/nodejs/node/pull/39506) - \[[`719f1563c1`](https://github.com/nodejs/node/commit/719f1563c1)] - **build**: fix `host_arch_cc()` for AIX/IBM i (Richard Lau) [#&#8203;39481](https://github.com/nodejs/node/pull/39481) - \[[`6e06b2ff9d`](https://github.com/nodejs/node/commit/6e06b2ff9d)] - **build**: update coverage Makefile target comments (Richard Lau) [#&#8203;39365](https://github.com/nodejs/node/pull/39365) - \[[`4e28d2b2c0`](https://github.com/nodejs/node/commit/4e28d2b2c0)] - **build**: run workflows when a PR is ready for review (Michaël Zasso) [#&#8203;39405](https://github.com/nodejs/node/pull/39405) - \[[`0da5d74da4`](https://github.com/nodejs/node/commit/0da5d74da4)] - **build**: update to setup-node@v2 (Rich Trott) [#&#8203;39366](https://github.com/nodejs/node/pull/39366) - \[[`f2e1c2267e`](https://github.com/nodejs/node/commit/f2e1c2267e)] - **build**: update gcovr for gcc 8 compatibility (Richard Lau) [#&#8203;39326](https://github.com/nodejs/node/pull/39326) - \[[`131dd6ec4d`](https://github.com/nodejs/node/commit/131dd6ec4d)] - **build**: remove unused comment in Makefile (LitoMore) [#&#8203;39171](https://github.com/nodejs/node/pull/39171) - \[[`40e46321b0`](https://github.com/nodejs/node/commit/40e46321b0)] - **build**: uvwasi honours node_shared_libuv (Jérémy Lal) [#&#8203;39260](https://github.com/nodejs/node/pull/39260) - \[[`5c6ab719f2`](https://github.com/nodejs/node/commit/5c6ab719f2)] - **build**: shorten path used in tarball build workflow (Richard Lau) [#&#8203;39192](https://github.com/nodejs/node/pull/39192) - \[[`870526374c`](https://github.com/nodejs/node/commit/870526374c)] - **build**: add `library_files` to gyp variables (himself65) [#&#8203;39293](https://github.com/nodejs/node/pull/39293) - \[[`0e221156aa`](https://github.com/nodejs/node/commit/0e221156aa)] - **build**: pass directory instead of list of files to js2c.py (Joyee Cheung) [#&#8203;39069](https://github.com/nodejs/node/pull/39069) - \[[`8d8415415b`](https://github.com/nodejs/node/commit/8d8415415b)] - **build**: don't pass `--mode` argument to V8 test-runner (Richard Lau) [#&#8203;39055](https://github.com/nodejs/node/pull/39055) - \[[`2d50217634`](https://github.com/nodejs/node/commit/2d50217634)] - **build**: fix commit linter on unrebased PRs (Mary Marchini) [#&#8203;39121](https://github.com/nodejs/node/pull/39121) - \[[`c93d5e006e`](https://github.com/nodejs/node/commit/c93d5e006e)] - **build**: use Actions to validate commit message (Mary Marchini) [#&#8203;32417](https://github.com/nodejs/node/pull/32417) - \[[`0bcaf9c4d1`](https://github.com/nodejs/node/commit/0bcaf9c4d1)] - **child_process**: fix spawn and fork abort behavior (Nitzan Uziely) [#&#8203;37325](https://github.com/nodejs/node/pull/37325) - \[[`8010c83180`](https://github.com/nodejs/node/commit/8010c83180)] - **child_process**: fix bad abort signal leak (Nitzan Uziely) [#&#8203;37257](https://github.com/nodejs/node/pull/37257) - \[[`32aff2f5a0`](https://github.com/nodejs/node/commit/32aff2f5a0)] - **console**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36753](https://github.com/nodejs/node/pull/36753) - \[[`f46e8cdf79`](https://github.com/nodejs/node/commit/f46e8cdf79)] - **debugger**: remove undefined parameter (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570) - \[[`482459edd4`](https://github.com/nodejs/node/commit/482459edd4)] - **debugger**: validate sec-websocket-accept response header (Chris Opperwall) [#&#8203;39357](https://github.com/nodejs/node/pull/39357) - \[[`e9c46107d7`](https://github.com/nodejs/node/commit/e9c46107d7)] - **debugger**: rename internal module (Rich Trott) [#&#8203;39378](https://github.com/nodejs/node/pull/39378) - \[[`49e0883c75`](https://github.com/nodejs/node/commit/49e0883c75)] - **debugger**: indicate server is ending (Rich Trott) [#&#8203;39334](https://github.com/nodejs/node/pull/39334) - \[[`72a3419510`](https://github.com/nodejs/node/commit/72a3419510)] - **debugger**: rename inspector-cli test module to debugger (Rich Trott) [#&#8203;38530](https://github.com/nodejs/node/pull/38530) - \[[`b3352cfba4`](https://github.com/nodejs/node/commit/b3352cfba4)] - **debugger**: prevent simultaneous heap snapshots (Rich Trott) [#&#8203;39638](https://github.com/nodejs/node/pull/39638) - \[[`e5826ab1c2`](https://github.com/nodejs/node/commit/e5826ab1c2)] - **debugger**: remove final lint exceptions in inspect_repl.js (Rich Trott) [#&#8203;39078](https://github.com/nodejs/node/pull/39078) - \[[`34c0701952`](https://github.com/nodejs/node/commit/34c0701952)] - **deps**: V8: cherry-pick [`00bb1a7`](https://github.com/nodejs/node/commit/00bb1a77c03e) (Darshan Sen) [#&#8203;39829](https://github.com/nodejs/node/pull/39829) - \[[`42359ab582`](https://github.com/nodejs/node/commit/42359ab582)] - **deps**: upgrade to libuv 1.42.0 (Luigi Pinca) [#&#8203;39525](https://github.com/nodejs/node/pull/39525) - \[[`d863a9db68`](https://github.com/nodejs/node/commit/d863a9db68)] - **deps**: bump HdrHistogram_C to 0.11.2 (Matteo Collina) [#&#8203;39462](https://github.com/nodejs/node/pull/39462) - \[[`4c93968a62`](https://github.com/nodejs/node/commit/4c93968a62)] - **deps**: extract gtest source files to deps/googletest (legendecas) [#&#8203;39386](https://github.com/nodejs/node/pull/39386) - \[[`fcae391fed`](https://github.com/nodejs/node/commit/fcae391fed)] - **deps**: update Acorn to v8.4.1 (Michaël Zasso) [#&#8203;39166](https://github.com/nodejs/node/pull/39166) - \[[`327838dd96`](https://github.com/nodejs/node/commit/327838dd96)] - **deps**: V8: backport [`c922458`](https://github.com/nodejs/node/commit/c9224589cf53) (Stephen Belanger) [#&#8203;39743](https://github.com/nodejs/node/pull/39743) - \[[`89c1bbd7b2`](https://github.com/nodejs/node/commit/89c1bbd7b2)] - **deps**: V8: cherry-pick [`81814ed`](https://github.com/nodejs/node/commit/81814ed44574) (Stephen Belanger) [#&#8203;39719](https://github.com/nodejs/node/pull/39719) - \[[`8b9215d07c`](https://github.com/nodejs/node/commit/8b9215d07c)] - **deps**: update to cjs-module-lexer@1.2.2 (Guy Bedford) [#&#8203;39402](https://github.com/nodejs/node/pull/39402) - \[[`e201293ddb`](https://github.com/nodejs/node/commit/e201293ddb)] - **dgram**: use simplified validator (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753) - \[[`6fdac38f91`](https://github.com/nodejs/node/commit/6fdac38f91)] - **doc,fs**: remove experimental status for WHATWG URL as path (Antoine du Hamel) [#&#8203;38870](https://github.com/nodejs/node/pull/38870) - \[[`d56e8268f9`](https://github.com/nodejs/node/commit/d56e8268f9)] - **doc,lib**: prepare for stricter multi-line array linting (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088) - \[[`5500ae9236`](https://github.com/nodejs/node/commit/5500ae9236)] - **domain**: do not add domain to promise from other context (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`dc855af18e`](https://github.com/nodejs/node/commit/dc855af18e)] - **errors**: don't throw TypeError on missing export (Benjamin Coe) [#&#8203;39017](https://github.com/nodejs/node/pull/39017) - \[[`c13eadc218`](https://github.com/nodejs/node/commit/c13eadc218)] - **errors**: eliminate all overhead for hidden calls (Momtchil Momtchev) [#&#8203;35644](https://github.com/nodejs/node/pull/35644) - \[[`d42bbe48c5`](https://github.com/nodejs/node/commit/d42bbe48c5)] - **esm**: use correct URL for error decoration (Bradley Farias) [#&#8203;37854](https://github.com/nodejs/node/pull/37854) - \[[`9db3304368`](https://github.com/nodejs/node/commit/9db3304368)] - **esm**: update to correct deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147) - \[[`e73bfed2f4`](https://github.com/nodejs/node/commit/e73bfed2f4)] - **esm**: deprecate legacy main lookup for modules (Guy Bedford) [#&#8203;36918](https://github.com/nodejs/node/pull/36918) - \[[`c1782ea1f5`](https://github.com/nodejs/node/commit/c1782ea1f5)] - **events**: allow the options argument to be null (Luigi Pinca) [#&#8203;39486](https://github.com/nodejs/node/pull/39486) - \[[`d2834fb97f`](https://github.com/nodejs/node/commit/d2834fb97f)] - **fs**: improve fsPromises writeFile performance (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610) - \[[`ee1d13c90d`](https://github.com/nodejs/node/commit/ee1d13c90d)] - **fs**: use byteLength to handle ArrayBuffer views (Michaël Zasso) [#&#8203;38187](https://github.com/nodejs/node/pull/38187) - \[[`b38d6b475b`](https://github.com/nodejs/node/commit/b38d6b475b)] - **fs**: fixup negative length in fs.truncate (James M Snell) [#&#8203;37483](https://github.com/nodejs/node/pull/37483) - \[[`fe28128f3c`](https://github.com/nodejs/node/commit/fe28128f3c)] - **fs**: add docs and tests for `AsyncIterable` support in `fh.writeFile` (Antoine du Hamel) [#&#8203;39836](https://github.com/nodejs/node/pull/39836) - \[[`2b0e2706c0`](https://github.com/nodejs/node/commit/2b0e2706c0)] - **fs**: improve fsPromises readFile performance (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608) - \[[`a4d6f78619`](https://github.com/nodejs/node/commit/a4d6f78619)] - **fs**: move constants to internal/fs/utils.js (Darshan Sen) [#&#8203;38061](https://github.com/nodejs/node/pull/38061) - \[[`402f7722ce`](https://github.com/nodejs/node/commit/402f7722ce)] - **fs**: add validatePosition and use in read and readSync (Darshan Sen) [#&#8203;37051](https://github.com/nodejs/node/pull/37051) - \[[`2bc301dcff`](https://github.com/nodejs/node/commit/2bc301dcff)] - **http**: decodes url.username and url.password for authorization header (Lew Gordon) [#&#8203;39310](https://github.com/nodejs/node/pull/39310) - \[[`5459f4af33`](https://github.com/nodejs/node/commit/5459f4af33)] - **http**: clean up HttpParser correctly (Tobias Koppers) [#&#8203;39292](https://github.com/nodejs/node/pull/39292) - \[[`8b3feee148`](https://github.com/nodejs/node/commit/8b3feee148)] - **http,https**: align server option of https with http (Qingyu Deng) [#&#8203;38992](https://github.com/nodejs/node/pull/38992) - \[[`cf59e87c8b`](https://github.com/nodejs/node/commit/cf59e87c8b)] - **inspector**: update inspector_protocol to [`89c4adf`](https://github.com/nodejs/node/commit/89c4adf) (Rich Trott) [#&#8203;39650](https://github.com/nodejs/node/pull/39650) - \[[`ea5f2047a2`](https://github.com/nodejs/node/commit/ea5f2047a2)] - **inspector**: update inspector_protocol to [`8ec18cf`](https://github.com/nodejs/node/commit/8ec18cf) (Rich Trott) [#&#8203;39614](https://github.com/nodejs/node/pull/39614) - \[[`1e5aca550c`](https://github.com/nodejs/node/commit/1e5aca550c)] - **inspector**: mark as stable (Gireesh Punathil) [#&#8203;37748](https://github.com/nodejs/node/pull/37748) - \[[`8a2ce5dae6`](https://github.com/nodejs/node/commit/8a2ce5dae6)] - **inspector**: move inspector async hooks to environment (Joyee Cheung) [#&#8203;39112](https://github.com/nodejs/node/pull/39112) - \[[`338189ff6f`](https://github.com/nodejs/node/commit/338189ff6f)] - **lib**: simplify validators (Voltrex) [#&#8203;39753](https://github.com/nodejs/node/pull/39753) - \[[`e1019351e8`](https://github.com/nodejs/node/commit/e1019351e8)] - **lib**: cleanup validation (Voltrex) [#&#8203;39652](https://github.com/nodejs/node/pull/39652) - \[[`dbaf4988bc`](https://github.com/nodejs/node/commit/dbaf4988bc)] - **lib**: use validators (Voltrex) [#&#8203;39663](https://github.com/nodejs/node/pull/39663) - \[[`9c33e4bfb2`](https://github.com/nodejs/node/commit/9c33e4bfb2)] - **lib**: use validator (Voltrex) [#&#8203;39547](https://github.com/nodejs/node/pull/39547) - \[[`5b1104291d`](https://github.com/nodejs/node/commit/5b1104291d)] - **lib**: use `validateObject` (Voltrex) [#&#8203;39605](https://github.com/nodejs/node/pull/39605) - \[[`1ce81079df`](https://github.com/nodejs/node/commit/1ce81079df)] - **lib**: remove use of array destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818) - \[[`b24b34effd`](https://github.com/nodejs/node/commit/b24b34effd)] - **lib**: add `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005) - \[[`7cdff9a6a8`](https://github.com/nodejs/node/commit/7cdff9a6a8)] - **lib**: refactor `primordials.makeSafe` to use more primordials (ExE Boss) [#&#8203;36865](https://github.com/nodejs/node/pull/36865) - \[[`1737352580`](https://github.com/nodejs/node/commit/1737352580)] - **lib**: comment explaining special-case handling of promises (Stephen Belanger) [#&#8203;39135](https://github.com/nodejs/node/pull/39135) - \[[`7f54cccb6c`](https://github.com/nodejs/node/commit/7f54cccb6c)] - **lib**: refactor to use validateString (ZiJian Liu) [#&#8203;37006](https://github.com/nodejs/node/pull/37006) - \[[`98259dc527`](https://github.com/nodejs/node/commit/98259dc527)] - **module**: improve support of data: URLs (Antoine du Hamel) [#&#8203;37392](https://github.com/nodejs/node/pull/37392) - \[[`9aba2888a1`](https://github.com/nodejs/node/commit/9aba2888a1)] - **net**: throw ERR_OUT_OF_RANGE if blockList.addSubnet prefix is NaN (ZiJian Liu) [#&#8203;36732](https://github.com/nodejs/node/pull/36732) - \[[`2ca12c83b4`](https://github.com/nodejs/node/commit/2ca12c83b4)] - **node-api**: handle pending exception in cb wrapper (Michael Dawson) [#&#8203;39476](https://github.com/nodejs/node/pull/39476) - \[[`9e5edf2158`](https://github.com/nodejs/node/commit/9e5edf2158)] - **node-api**: cctest on v8impl::Reference (legendecas) [#&#8203;38970](https://github.com/nodejs/node/pull/38970) - \[[`a74032a490`](https://github.com/nodejs/node/commit/a74032a490)] - **node-api**: rtn pending excep on napi_new_instance (legendecas) [#&#8203;38798](https://github.com/nodejs/node/pull/38798) - \[[`bcb85adee6`](https://github.com/nodejs/node/commit/bcb85adee6)] - **policy**: canonicalize before resolving specifiers (Bradley Farias) [#&#8203;37863](https://github.com/nodejs/node/pull/37863) - \[[`0ff520cf02`](https://github.com/nodejs/node/commit/0ff520cf02)] - **policy**: fix integrity when DEFAULT_ENCODING is set (Tobias Nießen) [#&#8203;39750](https://github.com/nodejs/node/pull/39750) - \[[`6c87b591d9`](https://github.com/nodejs/node/commit/6c87b591d9)] - **readline**: allow completer to rewrite existing input (Anna Henningsen) [#&#8203;39178](https://github.com/nodejs/node/pull/39178) - \[[`37b4708b19`](https://github.com/nodejs/node/commit/37b4708b19)] - **repl**: fix tla function hoisting (Don Jayamanne) [#&#8203;39745](https://github.com/nodejs/node/pull/39745) - \[[`9264caeafe`](https://github.com/nodejs/node/commit/9264caeafe)] - **repl**: do not include legacy getter/setter methods in completion (Anna Henningsen) [#&#8203;39576](https://github.com/nodejs/node/pull/39576) - \[[`50c5e71e22`](https://github.com/nodejs/node/commit/50c5e71e22)] - **repl**: correctly hoist top level await declarations (ejose19) [#&#8203;39265](https://github.com/nodejs/node/pull/39265) - \[[`1e065a0a43`](https://github.com/nodejs/node/commit/1e065a0a43)] - **repl**: processTopLevelAwait fallback error handling (ejose19) [#&#8203;39290](https://github.com/nodejs/node/pull/39290) - \[[`99664494ff`](https://github.com/nodejs/node/commit/99664494ff)] - **repl**: ensure correct syntax err for await parsing (Guy Bedford) [#&#8203;39154](https://github.com/nodejs/node/pull/39154) - \[[`761dafafde`](https://github.com/nodejs/node/commit/761dafafde)] - **repl**: fix Ctrl+C on top level await (Antoine du Hamel) [#&#8203;38656](https://github.com/nodejs/node/pull/38656) - \[[`88b02cbb08`](https://github.com/nodejs/node/commit/88b02cbb08)] - **repl**: add auto‑completion for dynamic import calls (ExE Boss) [#&#8203;37178](https://github.com/nodejs/node/pull/37178) - \[[`8f3a8830ba`](https://github.com/nodejs/node/commit/8f3a8830ba)] - **repl**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37188](https://github.com/nodejs/node/pull/37188) - \[[`a48e2d6ec7`](https://github.com/nodejs/node/commit/a48e2d6ec7)] - **repl**: refactor to avoid unsafe array iteration (Darshan Sen) [#&#8203;36663](https://github.com/nodejs/node/pull/36663) - \[[`20ffadf437`](https://github.com/nodejs/node/commit/20ffadf437)] - **repl**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36264](https://github.com/nodejs/node/pull/36264) - \[[`f69c934ad4`](https://github.com/nodejs/node/commit/f69c934ad4)] - **report**: generates report on threads with no isolates (legendecas) [#&#8203;38994](https://github.com/nodejs/node/pull/38994) - \[[`c4686fa5a7`](https://github.com/nodejs/node/commit/c4686fa5a7)] - **src**: fix TextDecoder final flush size calculation (James M Snell) [#&#8203;39737](https://github.com/nodejs/node/pull/39737) - \[[`495cd02c20`](https://github.com/nodejs/node/commit/495cd02c20)] - **src**: add cosmetic space character to `async_wrap.h` file (Juan José Arboleda) [#&#8203;39459](https://github.com/nodejs/node/pull/39459) - \[[`985ec48975`](https://github.com/nodejs/node/commit/985ec48975)] - **src**: print native module id on native module not found (legendecas) [#&#8203;39460](https://github.com/nodejs/node/pull/39460) - \[[`e6ff7e648e`](https://github.com/nodejs/node/commit/e6ff7e648e)] - **src**: close HandleWraps instead of deleting them in OnGCCollect() (Anna Henningsen) [#&#8203;39441](https://github.com/nodejs/node/pull/39441) - \[[`5c473bdc12`](https://github.com/nodejs/node/commit/5c473bdc12)] - **src**: remove unused guards around node-api reference (legendecas) [#&#8203;38334](https://github.com/nodejs/node/pull/38334) - \[[`41213bd507`](https://github.com/nodejs/node/commit/41213bd507)] - **src**: add JSDoc typings for v8 (Voltrex) [#&#8203;38944](https://github.com/nodejs/node/pull/38944) - \[[`02b1df9fac`](https://github.com/nodejs/node/commit/02b1df9fac)] - **src**: fix crash in AfterGetAddrInfo (Anna Henningsen) [#&#8203;39735](https://github.com/nodejs/node/pull/39735) - \[[`99493b07d4`](https://github.com/nodejs/node/commit/99493b07d4)] - **src**: fix fatal errors when a current isolate not exist (legendecas) [#&#8203;38624](https://github.com/nodejs/node/pull/38624) - \[[`9433c28c14`](https://github.com/nodejs/node/commit/9433c28c14)] - **src**: remove more extra semis from member fns (Shelley Vohr) [#&#8203;38744](https://github.com/nodejs/node/pull/38744) - \[[`bad990c934`](https://github.com/nodejs/node/commit/bad990c934)] - **src**: use BaseObject::kInteralFieldCount in Blob (Joyee Cheung) [#&#8203;36991](https://github.com/nodejs/node/pull/36991) - \[[`0a759dff52`](https://github.com/nodejs/node/commit/0a759dff52)] - **src**: compare IPv4 addresses in host byte order (Colin Ihrig) [#&#8203;39096](https://github.com/nodejs/node/pull/39096) - \[[`d73181f243`](https://github.com/nodejs/node/commit/d73181f243)] - **src**: reduce duplicated boilerplate with new env utility fn (James M Snell) [#&#8203;36536](https://github.com/nodejs/node/pull/36536) - \[[`85af15a8b6`](https://github.com/nodejs/node/commit/85af15a8b6)] - **src**: allow instances of net.BlockList to be created internally (James M Snell) [#&#8203;34741](https://github.com/nodejs/node/pull/34741) - \[[`1008c80176`](https://github.com/nodejs/node/commit/1008c80176)] - **src**: add SocketAddressLRU Utility (James M Snell) [#&#8203;34618](https://github.com/nodejs/node/pull/34618) - \[[`e404841a9c`](https://github.com/nodejs/node/commit/e404841a9c)] - **src**: set PromiseHooks by Environment (Bryan English) [#&#8203;38821](https://github.com/nodejs/node/pull/38821) - \[[`c8c290ae8f`](https://github.com/nodejs/node/commit/c8c290ae8f)] - **src,zlib**: tighten up Z_\*\_WINDOWBITS macros (Khaidi Chu) [#&#8203;39115](https://github.com/nodejs/node/pull/39115) - \[[`de171177b4`](https://github.com/nodejs/node/commit/de171177b4)] - **stream**: clean `endWritableNT` (Mestery) [#&#8203;39645](https://github.com/nodejs/node/pull/39645) - \[[`32a5b8f59b`](https://github.com/nodejs/node/commit/32a5b8f59b)] - **stream**: move duplicated code to an internal module (Rich Trott) [#&#8203;37508](https://github.com/nodejs/node/pull/37508) - \[[`f90b22d351`](https://github.com/nodejs/node/commit/f90b22d351)] - **util**: add internal createDeferredPromise() (Colin Ihrig) [#&#8203;37095](https://github.com/nodejs/node/pull/37095) - \[[`61b4a98480`](https://github.com/nodejs/node/commit/61b4a98480)] - **zlib**: avoid converting `Uint8Array` instances to `Buffer` (Antoine du Hamel) [#&#8203;39492](https://github.com/nodejs/node/pull/39492) ##### Documentation commits - \[[`8efd559347`](https://github.com/nodejs/node/commit/8efd559347)] - **doc**: add duplicate CVE check in sec. release doc (Daniel Bevenius) [#&#8203;39845](https://github.com/nodejs/node/pull/39845) - \[[`7b123ec78d`](https://github.com/nodejs/node/commit/7b123ec78d)] - **doc**: improve description of the triagers team (Michaël Zasso) [#&#8203;39833](https://github.com/nodejs/node/pull/39833) - \[[`615477f67b`](https://github.com/nodejs/node/commit/615477f67b)] - **doc**: update instructions for cc (Michael Dawson) [#&#8203;39674](https://github.com/nodejs/node/pull/39674) - \[[`1a8a26d92e`](https://github.com/nodejs/node/commit/1a8a26d92e)] - **doc**: fix malformed changelog entries (Rich Trott) [#&#8203;39791](https://github.com/nodejs/node/pull/39791) - \[[`9e772ca9a1`](https://github.com/nodejs/node/commit/9e772ca9a1)] - **doc**: fix lint errors in packages.md (Rich Trott) [#&#8203;39792](https://github.com/nodejs/node/pull/39792) - \[[`2624c98207`](https://github.com/nodejs/node/commit/2624c98207)] - **doc**: add example of self-reference in scoped packages (Jesús Leganés-Combarro 'piranna) [#&#8203;37630](https://github.com/nodejs/node/pull/37630) - \[[`00f2cee26c`](https://github.com/nodejs/node/commit/00f2cee26c)] - **doc**: add himadriganguly as a triager (Himadri Ganguly) [#&#8203;39757](https://github.com/nodejs/node/pull/39757) - \[[`95b9cc78d2`](https://github.com/nodejs/node/commit/95b9cc78d2)] - **doc**: fix YAML comment opening tags (Jayden Seric) [#&#8203;38324](https://github.com/nodejs/node/pull/38324) - \[[`49a7962d58`](https://github.com/nodejs/node/commit/49a7962d58)] - **doc**: fix `fs.rmdir` `recursive` option deprecation history (Antoine du Hamel) [#&#8203;39728](https://github.com/nodejs/node/pull/39728) - \[[`53300d33c7`](https://github.com/nodejs/node/commit/53300d33c7)] - **doc**: fixed variable names in queueMicrotask example (ashish maurya) [#&#8203;39634](https://github.com/nodejs/node/pull/39634) - \[[`df1e20aaf1`](https://github.com/nodejs/node/commit/df1e20aaf1)] - **doc**: update debugger.md description and examples (Rich Trott) [#&#8203;39661](https://github.com/nodejs/node/pull/39661) - \[[`9672bbf01c`](https://github.com/nodejs/node/commit/9672bbf01c)] - **doc**: fix color contrast issue in light mode (Rich Trott) [#&#8203;39660](https://github.com/nodejs/node/pull/39660) - \[[`48281ecfcd`](https://github.com/nodejs/node/commit/48281ecfcd)] - **doc**: add code examples to `Writable.destroy()` and `Writable.destroyed` (Juan José Arboleda) [#&#8203;39491](https://github.com/nodejs/node/pull/39491) - \[[`8799a134e4`](https://github.com/nodejs/node/commit/8799a134e4)] - **doc**: move `NODE_MODULE_VERSION` in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`89c8afcf48`](https://github.com/nodejs/node/commit/89c8afcf48)] - **doc**: remove outdated ARM information from release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`a718b26f28`](https://github.com/nodejs/node/commit/a718b26f28)] - **doc**: fence command examples in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`42669bb049`](https://github.com/nodejs/node/commit/42669bb049)] - **doc**: update backport labels in release guide (Richard Lau) [#&#8203;39544](https://github.com/nodejs/node/pull/39544) - \[[`a437de3c5f`](https://github.com/nodejs/node/commit/a437de3c5f)] - **doc**: add code example to `http.createServer` method (Juan José Arboleda) [#&#8203;39455](https://github.com/nodejs/node/pull/39455) - \[[`695569fc17`](https://github.com/nodejs/node/commit/695569fc17)] - **doc**: move lball@redhat.com to emeritus (Lance Ball) [#&#8203;39501](https://github.com/nodejs/node/pull/39501) - \[[`c7523da86c`](https://github.com/nodejs/node/commit/c7523da86c)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39488](https://github.com/nodejs/node/pull/39488) - \[[`e826109d5c`](https://github.com/nodejs/node/commit/e826109d5c)] - **doc**: update strategic initiative champion (Rich Trott) [#&#8203;39487](https://github.com/nodejs/node/pull/39487) - \[[`39da842051`](https://github.com/nodejs/node/commit/39da842051)] - **doc**: simplify unnecessarily specific .mailmap entries (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430) - \[[`6a4c6ce4d7`](https://github.com/nodejs/node/commit/6a4c6ce4d7)] - **doc**: update checkbox label in backporting guide (Darshan Sen) [#&#8203;39420](https://github.com/nodejs/node/pull/39420) - \[[`d17afa08bd`](https://github.com/nodejs/node/commit/d17afa08bd)] - **doc**: remove \_Addenda\_ from headers (Rich Trott) [#&#8203;39427](https://github.com/nodejs/node/pull/39427) - \[[`ae97a96d9e`](https://github.com/nodejs/node/commit/ae97a96d9e)] - **doc**: simplify .mailmap file (Rich Trott) [#&#8203;39418](https://github.com/nodejs/node/pull/39418) - \[[`a3dee70f66`](https://github.com/nodejs/node/commit/a3dee70f66)] - **doc**: fix broken internal link in http.md (Rich Trott) [#&#8203;39425](https://github.com/nodejs/node/pull/39425) - \[[`ca947ac524`](https://github.com/nodejs/node/commit/ca947ac524)] - **doc**: remove outdated step in onboarding exercise (Rich Trott) [#&#8203;39410](https://github.com/nodejs/node/pull/39410) - \[[`86e12607f0`](https://github.com/nodejs/node/commit/86e12607f0)] - **doc**: revise strategic initiatives text (Rich Trott) [#&#8203;39417](https://github.com/nodejs/node/pull/39417) - \[[`cd8e773d28`](https://github.com/nodejs/node/commit/cd8e773d28)] - **doc**: update mailmap and AUTHORS (Rich Trott) [#&#8203;39393](https://github.com/nodejs/node/pull/39393) - \[[`8376b07ae8`](https://github.com/nodejs/node/commit/8376b07ae8)] - **doc**: use a details tag for completed initiatves (Rich Trott) [#&#8203;39416](https://github.com/nodejs/node/pull/39416) - \[[`43d28f5f00`](https://github.com/nodejs/node/commit/43d28f5f00)] - **doc**: update commit-queue.md to indicate GitHub Actions are checked (Rich Trott) [#&#8203;39411](https://github.com/nodejs/node/pull/39411) - \[[`63b0603e95`](https://github.com/nodejs/node/commit/63b0603e95)] - **doc**: use \_pull request\_ instead of \_PR\_ in onboarding doc (Rich Trott) [#&#8203;39409](https://github.com/nodejs/node/pull/39409) - \[[`73f784f764`](https://github.com/nodejs/node/commit/73f784f764)] - **doc**: add strategic initiatives from TSC repo (Rich Trott) [#&#8203;39394](https://github.com/nodejs/node/pull/39394) - \[[`1a494d51dc`](https://github.com/nodejs/node/commit/1a494d51dc)] - **doc**: standardize on \_pull request\_ (Rich Trott) [#&#8203;39384](https://github.com/nodejs/node/pull/39384) - \[[`eb12e4ccfb`](https://github.com/nodejs/node/commit/eb12e4ccfb)] - **doc**: make minor edits to pull request text (Rich Trott) [#&#8203;39383](https://github.com/nodejs/node/pull/39383) - \[[`ab0bf4fa1a`](https://github.com/nodejs/node/commit/ab0bf4fa1a)] - **doc**: add docker-node and build-wg issue contents (Daniel Bevenius) [#&#8203;39215](https://github.com/nodejs/node/pull/39215) - \[[`8438e8bf33`](https://github.com/nodejs/node/commit/8438e8bf33)] - **doc**: add instructions for core vuln files (Daniel Bevenius) [#&#8203;39220](https://github.com/nodejs/node/pull/39220) - \[[`c3cfefc2d3`](https://github.com/nodejs/node/commit/c3cfefc2d3)] - **doc**: standardize on not capitalizing \_collaborator\_ (Rich Trott) [#&#8203;39379](https://github.com/nodejs/node/pull/39379) - \[[`672023f9f2`](https://github.com/nodejs/node/commit/672023f9f2)] - **doc**: update mailmap and deduplicate AUTHORS entry (Rich Trott) [#&#8203;39391](https://github.com/nodejs/node/pull/39391) - \[[`baaa397e39`](https://github.com/nodejs/node/commit/baaa397e39)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39367](https://github.com/nodejs/node/pull/39367) - \[[`f39d93a428`](https://github.com/nodejs/node/commit/f39d93a428)] - **doc**: move jdalton to emeritus (Rich Trott) [#&#8203;39380](https://github.com/nodejs/node/pull/39380) - \[[`0b1ce72d64`](https://github.com/nodejs/node/commit/0b1ce72d64)] - **doc**: edit guide on pull requests (Rich Trott) [#&#8203;39359](https://github.com/nodejs/node/pull/39359) - \[[`6f0b3a20d1`](https://github.com/nodejs/node/commit/6f0b3a20d1)] - **doc**: add text about moving long commit lists out of PR description (Danielle Adams) [#&#8203;39186](https://github.com/nodejs/node/pull/39186) - \[[`9d43ce3b80`](https://github.com/nodejs/node/commit/9d43ce3b80)] - **doc**: do not use & for "and" in text (Rich Trott) [#&#8203;39345](https://github.com/nodejs/node/pull/39345) - \[[`25c104f21f`](https://github.com/nodejs/node/commit/25c104f21f)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39277](https://github.com/nodejs/node/pull/39277) - \[[`b47b47930c`](https://github.com/nodejs/node/commit/b47b47930c)] - **doc**: put information about the past in details tags (Rich Trott) [#&#8203;39321](https://github.com/nodejs/node/pull/39321) - \[[`5eafc3afa8`](https://github.com/nodejs/node/commit/5eafc3afa8)] - **doc**: move AndreasMadsen to emeritus (Rich Trott) [#&#8203;39315](https://github.com/nodejs/node/pull/39315) - \[[`fbf658f1d5`](https://github.com/nodejs/node/commit/fbf658f1d5)] - **doc**: move ofrobots to collaborator emeritus (Rich Trott) [#&#8203;39307](https://github.com/nodejs/node/pull/39307) - \[[`fc7d714149`](https://github.com/nodejs/node/commit/fc7d714149)] - **doc**: simplify CRAN mirror text in benchmark guide (Rich Trott) [#&#8203;39287](https://github.com/nodejs/node/pull/39287) - \[[`22f0b7e0d0`](https://github.com/nodejs/node/commit/22f0b7e0d0)] - **doc**: use "repository" instead of "repo" in onboarding.md (Rich Trott) [#&#8203;39286](https://github.com/nodejs/node/pull/39286) - \[[`f46ae3ffb6`](https://github.com/nodejs/node/commit/f46ae3ffb6)] - **doc**: update collaborator email address (Rich Trott) [#&#8203;39263](https://github.com/nodejs/node/pull/39263) - \[[`8c569cef88`](https://github.com/nodejs/node/commit/8c569cef88)] - **doc**: remove GitHub mark (Rich Trott) [#&#8203;39251](https://github.com/nodejs/node/pull/39251) - \[[`b4a0c5a384`](https://github.com/nodejs/node/commit/b4a0c5a384)] - **doc**: remove emailing the TSC from offboarding doc (Rich Trott) [#&#8203;39280](https://github.com/nodejs/node/pull/39280) - \[[`a4d70ff0cc`](https://github.com/nodejs/node/commit/a4d70ff0cc)] - **doc**: use "repository" in guides versus repo (Michael Dawson) [#&#8203;39198](https://github.com/nodejs/node/pull/39198) - \[[`31163ed9ee`](https://github.com/nodejs/node/commit/31163ed9ee)] - **doc**: update Node-api version matrix (Michael Dawson) [#&#8203;39197](https://github.com/nodejs/node/pull/39197) - \[[`9357547519`](https://github.com/nodejs/node/commit/9357547519)] - **doc**: update node-api support matrix (Michael Dawson) [#&#8203;38424](https://github.com/nodejs/node/pull/38424) - \[[`f08e9d5230`](https://github.com/nodejs/node/commit/f08e9d5230)] - **doc**: remove onboarding-extras (Rich Trott) [#&#8203;39252](https://github.com/nodejs/node/pull/39252) - \[[`6466faf26d`](https://github.com/nodejs/node/commit/6466faf26d)] - **doc**: move Sam Ruby to emeritus (Rich Trott) [#&#8203;39264](https://github.com/nodejs/node/pull/39264) - \[[`06acbf6453`](https://github.com/nodejs/node/commit/06acbf6453)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39250](https://github.com/nodejs/node/pull/39250) - \[[`9178805653`](https://github.com/nodejs/node/commit/9178805653)] - **doc**: fix color contrast for anchor marks in dark mode (Rich Trott) [#&#8203;39168](https://github.com/nodejs/node/pull/39168) - \[[`c6118b23f7`](https://github.com/nodejs/node/commit/c6118b23f7)] - **doc**: rename datatypes to data types (FrankEntriken) [#&#8203;39209](https://github.com/nodejs/node/pull/39209) - \[[`fdd315918f`](https://github.com/nodejs/node/commit/fdd315918f)] - **doc**: normalize CSS variable names and indentation (Rich Trott) [#&#8203;39199](https://github.com/nodejs/node/pull/39199) - \[[`9c7c44781c`](https://github.com/nodejs/node/commit/9c7c44781c)] - **doc**: use more consistent formatting for deprecations (Rich Trott) [#&#8203;39218](https://github.com/nodejs/node/pull/39218) - \[[`c97ebd7905`](https://github.com/nodejs/node/commit/c97ebd7905)] - **doc**: update AUTHORS (Rich Trott) [#&#8203;39217](https://github.com/nodejs/node/pull/39217) - \[[`c4a3a24848`](https://github.com/nodejs/node/commit/c4a3a24848)] - **doc**: use "pull request" instead of "PR" in packages.md (Rich Trott) [#&#8203;39213](https://github.com/nodejs/node/pull/39213) - \[[`0d098bfaf0`](https://github.com/nodejs/node/commit/0d098bfaf0)] - **doc**: move v8.stopCoverage() to expected location in doc (Rich Trott) [#&#8203;39212](https://github.com/nodejs/node/pull/39212) - \[[`bd6af78749`](https://github.com/nodejs/node/commit/bd6af78749)] - **doc**: move vm.measureMemory() to expected location in doc (Rich Trott) [#&#8203;39211](https://github.com/nodejs/node/pull/39211) - \[[`7378b84bb8`](https://github.com/nodejs/node/commit/7378b84bb8)] - **doc**: add missing deprecation code (Colin Ihrig) [#&#8203;37147](https://github.com/nodejs/node/pull/37147) - \[[`2f6861ca51`](https://github.com/nodejs/node/commit/2f6861ca51)] - **doc**: use ASCII order for md refs (Antoine du Hamel) [#&#8203;39170](https://github.com/nodejs/node/pull/39170) - \[[`fa3909504f`](https://github.com/nodejs/node/commit/fa3909504f)] - **doc**: add cc oss-security@lists.openwall.com (Daniel Bevenius) [#&#8203;39191](https://github.com/nodejs/node/pull/39191) - \[[`52105acd5f`](https://github.com/nodejs/node/commit/52105acd5f)] - **doc**: remove instructions for unsupported Node.js versions (Rich Trott) [#&#8203;39185](https://github.com/nodejs/node/pull/39185) - \[[`eb2d75da16`](https://github.com/nodejs/node/commit/eb2d75da16)] - **doc**: remove obsolete cc recommendations (Rich Trott) [#&#8203;39181](https://github.com/nodejs/node/pull/39181) - \[[`4cf17edd03`](https://github.com/nodejs/node/commit/4cf17edd03)] - **doc**: use "repository" in maintaining-V8 doc (Rich Trott) [#&#8203;39179](https://github.com/nodejs/node/pull/39179) - \[[`d6a4f8aac9`](https://github.com/nodejs/node/commit/d6a4f8aac9)] - **doc**: fix broken link in errors.md (Rich Trott) [#&#8203;39200](https://github.com/nodejs/node/pull/39200) - \[[`82458b30fe`](https://github.com/nodejs/node/commit/82458b30fe)] - **doc**: correct JavaScript primitive value names in n-api.md (legendecas) [#&#8203;39129](https://github.com/nodejs/node/pull/39129) - \[[`2629979fd0`](https://github.com/nodejs/node/commit/2629979fd0)] - **doc**: apply logical ordering to CSS variables (Rich Trott) [#&#8203;39169](https://github.com/nodejs/node/pull/39169) - \[[`1996580b06`](https://github.com/nodejs/node/commit/1996580b06)] - **doc**: use repository instead of repo (Rich Trott) [#&#8203;39157](https://github.com/nodejs/node/pull/39157) - \[[`74ba115ab6`](https://github.com/nodejs/node/commit/74ba115ab6)] - **doc**: fix `EventTarget.dispatchEvent` docs (Rohan Sharma) [#&#8203;39127](https://github.com/nodejs/node/pull/39127) - \[[`2884d9094d`](https://github.com/nodejs/node/commit/2884d9094d)] - **doc**: update AUTHORS file (Rich Trott) [#&#8203;39082](https://github.com/nodejs/node/pull/39082) - \[[`d069c725b1`](https://github.com/nodejs/node/commit/d069c725b1)] - **doc**: fix napi_default_property name (Davidson Francis) [#&#8203;39104](https://github.com/nodejs/node/pull/39104) - \[[`1b74d3f775`](https://github.com/nodejs/node/commit/1b74d3f775)] - **doc**: fix dead links in packages.md (Michaël Zasso) [#&#8203;39113](https://github.com/nodejs/node/pull/39113) - \[[`0c2b5a048d`](https://github.com/nodejs/node/commit/0c2b5a048d)] - **doc**: clearify that http does chunked encoding itself (Mao Wtm) [#&#8203;28379](https://github.com/nodejs/node/pull/28379) - \[[`d0d731e271`](https://github.com/nodejs/node/commit/d0d731e271)] - **doc**: add descriptions about when `options.mode` is ignored (Ray) [#&#8203;39881](https://github.com/nodejs/node/pull/39881) - \[[`898db5a570`](https://github.com/nodejs/node/commit/898db5a570)] - **doc**: add code example to `fs.truncate` method (Juan José Arboleda) [#&#8203;39454](https://github.com/nodejs/node/pull/39454) - \[[`05d7460747`](https://github.com/nodejs/node/commit/05d7460747)] - **doc**: add annotation to writeFile `data` as `Object` (Jacob) [#&#8203;39167](https://github.com/nodejs/node/pull/39167) - \[[`2ef61b987d`](https://github.com/nodejs/node/commit/2ef61b987d)] - **doc**: fix constants usage in fs.access example (Cyrille Bourgois) [#&#8203;39289](https://github.com/nodejs/node/pull/39289) - \[[`b2c533ea1d`](https://github.com/nodejs/node/commit/b2c533ea1d)] - **doc**: remove unnecessary module format comments (Rich Trott) [#&#8203;39219](https://github.com/nodejs/node/pull/39219) - \[[`e8355c47d2`](https://github.com/nodejs/node/commit/e8355c47d2)] - **doc**: remove file name from self-reference links (Antoine du Hamel) [#&#8203;39165](https://github.com/nodejs/node/pull/39165) - \[[`f799c4617e`](https://github.com/nodejs/node/commit/f799c4617e)] - **doc**: use `await` in filehandle.truncate() snippet (RA80533) [#&#8203;38939](https://github.com/nodejs/node/pull/38939) - \[[`e7f3f0d778`](https://github.com/nodejs/node/commit/e7f3f0d778)] - **doc**: update abort signal in fs promise api example (Moritz Kneilmann) [#&#8203;38669](https://github.com/nodejs/node/pull/38669) - \[[`a44219d979`](https://github.com/nodejs/node/commit/a44219d979)] - **doc**: add documentation for fs.WriteStream.close() (Hitesh Sharma) [#&#8203;38610](https://github.com/nodejs/node/pull/38610) - \[[`c3ae1cfbab`](https://github.com/nodejs/node/commit/c3ae1cfbab)] - **doc**: fix fs.openSync() signature (Luigi Pinca) [#&#8203;38591](https://github.com/nodejs/node/pull/38591) - \[[`23a8aed3f9`](https://github.com/nodejs/node/commit/23a8aed3f9)] - **doc**: typo stats() should be stat(); clarity (Bryan Field) [#&#8203;38541](https://github.com/nodejs/node/pull/38541) - \[[`9fe46ea0fd`](https://github.com/nodejs/node/commit/9fe46ea0fd)] - **doc**: fix broken AHAFS link in fs doc (Rich Trott) [#&#8203;38534](https://github.com/nodejs/node/pull/38534) - \[[`7a92c3cfd4`](https://github.com/nodejs/node/commit/7a92c3cfd4)] - **doc**: clarify that fs.Dir async iterator closes automatically (James M Snell) [#&#8203;38438](https://github.com/nodejs/node/pull/38438) - \[[`b819848487`](https://github.com/nodejs/node/commit/b819848487)] - **doc**: remove superfluous await from fsPromises.readdir example (Michael Rommel) [#&#8203;38293](https://github.com/nodejs/node/pull/38293) - \[[`9fa7dcf9df`](https://github.com/nodejs/node/commit/9fa7dcf9df)] - **doc**: fix missing backtick in fs.md (Siddharth) [#&#8203;38260](https://github.com/nodejs/node/pull/38260) - \[[`4cf4ee99dc`](https://github.com/nodejs/node/commit/4cf4ee99dc)] - **doc**: fix typo in fs.md (Antoine du Hamel) [#&#8203;38100](https://github.com/nodejs/node/pull/38100) - \[[`f9d36cbf42`](https://github.com/nodejs/node/commit/f9d36cbf42)] - **doc**: fix typos in /doc/api/fs.md (Merlin Luntke) [#&#8203;37557](https://github.com/nodejs/node/pull/37557) - \[[`bbcc2171c5`](https://github.com/nodejs/node/commit/bbcc2171c5)] - **doc**: fix typo "director" instead of "directory" (humanwebpl) [#&#8203;37523](https://github.com/nodejs/node/pull/37523) - \[[`67ac6b3b66`](https://github.com/nodejs/node/commit/67ac6b3b66)] - **doc**: fix "referred to" in fs docs (Tobias Nießen) [#&#8203;37388](https://github.com/nodejs/node/pull/37388) - \[[`3b9fa2412f`](https://github.com/nodejs/node/commit/3b9fa2412f)] - **doc**: change "Version 4 UUID" to "version 4 UUID" (Tobias Nießen) [#&#8203;39682](https://github.com/nodejs/node/pull/39682) - \[[`3d26572773`](https://github.com/nodejs/node/commit/3d26572773)] - **doc**: add point to ask H1 reporter about credit (Daniel Bevenius) [#&#8203;39585](https://github.com/nodejs/node/pull/39585) - \[[`469190d13c`](https://github.com/nodejs/node/commit/469190d13c)] - **doc**: move util.toUSVString() outside of deprecated group (Luigi Pinca) [#&#8203;39840](https://github.com/nodejs/node/pull/39840) - \[[`f509788850`](https://github.com/nodejs/node/commit/f509788850)] - **doc**: fix lint error in modules.md (Rich Trott) [#&#8203;37811](https://github.com/nodejs/node/pull/37811) - \[[`a7833c7ce6`](https://github.com/nodejs/node/commit/a7833c7ce6)] - **doc**: refactor signal info in child_process.md (Darshan Sen) [#&#8203;37528](https://github.com/nodejs/node/pull/37528) - \[[`f5b2fe1204`](https://github.com/nodejs/node/commit/f5b2fe1204)] - **doc**: change lang info string in fs JS snippets (Antoine du Hamel) [#&#8203;37605](https://github.com/nodejs/node/pull/37605) - \[[`307c1d817f`](https://github.com/nodejs/node/commit/307c1d817f)] - **doc**: refactor fs docs structure (Michaël Zasso) [#&#8203;37170](https://github.com/nodejs/node/pull/37170) - \[[`298a16a2e7`](https://github.com/nodejs/node/commit/298a16a2e7)] - **doc**: update emitClose default for fs streams (Kevin Locke) [#&#8203;36653](https://github.com/nodejs/node/pull/36653) - \[[`0c469b3f77`](https://github.com/nodejs/node/commit/0c469b3f77)] - **doc**: revise process.memoryUsage() text (Rich Trott) [#&#8203;36757](https://github.com/nodejs/node/pull/36757) - \[[`1ebe7d70ea`](https://github.com/nodejs/node/commit/1ebe7d70ea)] - **doc**: fix punctuation in v8.md (Rich Trott) [#&#8203;36192](https://github.com/nodejs/node/pull/36192) - \[[`591a05b637`](https://github.com/nodejs/node/commit/591a05b637)] - **doc**: add link for v8.takeCoverage() (Rich Trott) [#&#8203;36135](https://github.com/nodejs/node/pull/36135) - \[[`e5fe3164f3`](https://github.com/nodejs/node/commit/e5fe3164f3)] - **doc**: add YAML metadata for process.memoryUsage.rss (Gerhard Stoebich) [#&#8203;36781](https://github.com/nodejs/node/pull/36781) ##### Other commits - \[[`ab66dabbf2`](https://github.com/nodejs/node/commit/ab66dabbf2)] - **doc,meta**: update email addresses for misterdjules (Rich Trott) [#&#8203;39433](https://github.com/nodejs/node/pull/39433) - \[[`c6ccd97fe2`](https://github.com/nodejs/node/commit/c6ccd97fe2)] - **doc,tools**: remove `checkLinks.mjs` (Antoine du Hamel) [#&#8203;39206](https://github.com/nodejs/node/pull/39206) - \[[`8f8f528f08`](https://github.com/nodejs/node/commit/8f8f528f08)] - **meta**: add gyp as owner of gyp files and tools/gyp (Mary Marchini) [#&#8203;34847](https://github.com/nodejs/node/pull/34847) - \[[`4b2eee5232`](https://github.com/nodejs/node/commit/4b2eee5232)] - **meta**: consolidate AUTHORS entries for ooHmartY (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`6916a6c2b0`](https://github.com/nodejs/node/commit/6916a6c2b0)] - **meta**: consolidate AUTHORS entries for homosaur (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`b65a635c8a`](https://github.com/nodejs/node/commit/b65a635c8a)] - **meta**: consolidate AUTHORS entries for Ayase-252 (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`e86b59cf4c`](https://github.com/nodejs/node/commit/e86b59cf4c)] - **meta**: consolidate AUTHORS entries for robin-drexler (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`1eda8442bd`](https://github.com/nodejs/node/commit/1eda8442bd)] - **meta**: consolidate AUTHORS entries for samshull (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`cd67d86572`](https://github.com/nodejs/node/commit/cd67d86572)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39705](https://github.com/nodejs/node/pull/39705) - \[[`bb06282a9e`](https://github.com/nodejs/node/commit/bb06282a9e)] - **meta**: consolidate email addresses for MarshallOfSound (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651) - \[[`12fe34eae4`](https://github.com/nodejs/node/commit/12fe34eae4)] - **meta**: consolidate email addresses for tadjik1 (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651) - \[[`4301e252b4`](https://github.com/nodejs/node/commit/4301e252b4)] - **meta**: consolidate email addresses for szmarczak (Rich Trott) [#&#8203;39651](https://github.com/nodejs/node/pull/39651) - \[[`3e8fc49730`](https://github.com/nodejs/node/commit/3e8fc49730)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39636](https://github.com/nodejs/node/pull/39636) - \[[`60f41c34dd`](https://github.com/nodejs/node/commit/60f41c34dd)] - **meta**: simplify mailmap (Rich Trott) [#&#8203;39612](https://github.com/nodejs/node/pull/39612) - \[[`fc9c680260`](https://github.com/nodejs/node/commit/fc9c680260)] - **meta**: consolidate emails for tadhgcreedon (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611) - \[[`d87fcf9959`](https://github.com/nodejs/node/commit/d87fcf9959)] - **meta**: consolidate emails for timcosta (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611) - \[[`fdbe97849b`](https://github.com/nodejs/node/commit/fdbe97849b)] - **meta**: consolidate emails for timruffles (Rich Trott) [#&#8203;39611](https://github.com/nodejs/node/pull/39611) - \[[`b9f2ea92e9`](https://github.com/nodejs/node/commit/b9f2ea92e9)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39629](https://github.com/nodejs/node/pull/39629) - \[[`472cf1520e`](https://github.com/nodejs/node/commit/472cf1520e)] - **meta**: add mailmap entry for ryzokuken (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596) - \[[`ae3f8b1eda`](https://github.com/nodejs/node/commit/ae3f8b1eda)] - **meta**: add mailmap entry for uttampawar (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596) - \[[`2a2d8ebd90`](https://github.com/nodejs/node/commit/2a2d8ebd90)] - **meta**: add mailmap entry for dmabupt (Rich Trott) [#&#8203;39596](https://github.com/nodejs/node/pull/39596) - \[[`030036ec92`](https://github.com/nodejs/node/commit/030036ec92)] - **meta**: align README/.mailmap/AUTHORS email entries (Rich Trott) [#&#8203;39505](https://github.com/nodejs/node/pull/39505) - \[[`fd2146be91`](https://github.com/nodejs/node/commit/fd2146be91)] - **meta**: add mailmap entry for garygsc (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588) - \[[`0833e2d9cb`](https://github.com/nodejs/node/commit/0833e2d9cb)] - **meta**: add mailmap entry for ttzztztz (Rich Trott) [#&#8203;39588](https://github.com/nodejs/node/pull/39588) - \[[`1fbc19ee32`](https://github.com/nodejs/node/commit/1fbc19ee32)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39587](https://github.com/nodejs/node/pull/39587) - \[[`2d6428665d`](https://github.com/nodejs/node/commit/2d6428665d)] - **meta**: update .mailmap to remove duplication in AUTHORS (Rich Trott) [#&#8203;39561](https://github.com/nodejs/node/pull/39561) - \[[`6c4febd701`](https://github.com/nodejs/node/commit/6c4febd701)] - **meta**: add .mailmap entries to remove AUTHORS duplicates (Rich Trott) [#&#8203;39560](https://github.com/nodejs/node/pull/39560) - \[[`1755f49a20`](https://github.com/nodejs/node/commit/1755f49a20)] - **meta**: add .mailmap entry to remove duplication in AUTHORS (Rich Trott) [#&#8203;39559](https://github.com/nodejs/node/pull/39559) - \[[`fdcc5729d9`](https://github.com/nodejs/node/commit/fdcc5729d9)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521) - \[[`27e9a44852`](https://github.com/nodejs/node/commit/27e9a44852)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521) - \[[`5e1c49ff0f`](https://github.com/nodejs/node/commit/5e1c49ff0f)] - **meta**: update collaborator email in AUTHORS/.mailmap (Rich Trott) [#&#8203;39521](https://github.com/nodejs/node/pull/39521) - \[[`fbecae169e`](https://github.com/nodejs/node/commit/fbecae169e)] - **meta**: move gdams to emeritus (Rich Trott) [#&#8203;39539](https://github.com/nodejs/node/pull/39539) - \[[`48ec33f1b8`](https://github.com/nodejs/node/commit/48ec33f1b8)] - **meta**: update collaborator email in README (Rich Trott) [#&#8203;39510](https://github.com/nodejs/node/pull/39510) - \[[`f269df31ea`](https://github.com/nodejs/node/commit/f269df31ea)] - **meta**: remove unneeded .mailmap entry (Rich Trott) [#&#8203;39512](https://github.com/nodejs/node/pull/39512) - \[[`b0c1aab28d`](https://github.com/nodejs/node/commit/b0c1aab28d)] - **meta**: update email address for collaborator (Rich Trott) [#&#8203;39511](https://github.com/nodejs/node/pull/39511) - \[[`5f4935292a`](https://github.com/nodejs/node/commit/5f4935292a)] - **meta**: align collaborator name in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39489](https://github.com/nodejs/node/pull/39489) - \[[`1b2078c912`](https://github.com/nodejs/node/commit/1b2078c912)] - **meta**: align email address in README/.mailmap/AUTHORS (Rich Trott) [#&#8203;39503](https://github.com/nodejs/node/pull/39503) - \[[`2f816bf24b`](https://github.com/nodejs/node/commit/2f816bf24b)] - **meta**: revise .mailmap for README consistency (Rich Trott) [#&#8203;39457](https://github.com/nodejs/node/pull/39457) - \[[`1302a911f5`](https://github.com/nodejs/node/commit/1302a911f5)] - **meta**: alphabetize .mailmap file (Rich Trott) [#&#8203;39434](https://github.com/nodejs/node/pull/39434) - \[[`55322c0260`](https://github.com/nodejs/node/commit/55322c0260)] - **meta**: align collaborator email in .mailmap/AUTHORS with README (Rich Trott) [#&#8203;39478](https://github.com/nodejs/node/pull/39478) - \[[`83f5cc0bd4`](https://github.com/nodejs/node/commit/83f5cc0bd4)] - **meta**: update AUTHORS (Rich Trott) [#&#8203;39461](https://github.com/nodejs/node/pull/39461) - \[[`69b56a3fe9`](https://github.com/nodejs/node/commit/69b56a3fe9)] - **meta**: add .mailmap entry for new email for existing contributor (Rich Trott) [#&#8203;39431](https://github.com/nodejs/node/pull/39431) - \[[`2f325c946f`](https://github.com/nodejs/node/commit/2f325c946f)] - **meta**: use form schema for bug report template (Michaël Zasso) [#&#8203;39194](https://github.com/nodejs/node/pull/39194) - \[[`9766a99dd2`](https://github.com/nodejs/node/commit/9766a99dd2)] - **meta**: add [@&#8203;nodejs/actions](https://github.com/nodejs/actions) as CODEOWNERS (Mary Marchini) [#&#8203;39119](https://github.com/nodejs/node/pull/39119) - \[[`007f9a0e36`](https://github.com/nodejs/node/commit/007f9a0e36)] - **test**: fix test-vm-memleak for high baseline platforms (Rich Trott) [#&#8203;38062](https://github.com/nodejs/node/pull/38062) - \[[`0fabd8e755`](https://github.com/nodejs/node/commit/0fabd8e755)] - **test**: fix flaky test-vm-memleak (Rich Trott) [#&#8203;38054](https://github.com/nodejs/node/pull/38054) - \[[`64fb928ec7`](https://github.com/nodejs/node/commit/64fb928ec7)] - **test**: fix flaky test-child-process-exec-abortcontroller-promisified (Antoine du Hamel) [#&#8203;37572](https://github.com/nodejs/node/pull/37572) - \[[`e660892f1a`](https://github.com/nodejs/node/commit/e660892f1a)] - **test**: use simplfied validator (voltrexmaster) [#&#8203;39753](https://github.com/nodejs/node/pull/39753) - \[[`779417f97e`](https://github.com/nodejs/node/commit/779417f97e)] - **test**: use template to concatenate string (Himadri Ganguly) [#&#8203;39621](https://github.com/nodejs/node/pull/39621) - \[[`a61076042d`](https://github.com/nodejs/node/commit/a61076042d)] - **test**: deflake test-http2-buffersize (Luigi Pinca) [#&#8203;39591](https://github.com/nodejs/node/pull/39591) - \[[`68ef265c39`](https://github.com/nodejs/node/commit/68ef265c39)] - **test**: convert anonymous function to arrow function (Himadri Ganguly) [#&#8203;39604](https://github.com/nodejs/node/pull/39604) - \[[`78db43c9e7`](https://github.com/nodejs/node/commit/78db43c9e7)] - **test**: add test-debugger-breakpoint-exists (Rich Trott) [#&#8203;39570](https://github.com/nodejs/node/pull/39570) - \[[`5696bcf715`](https://github.com/nodejs/node/commit/5696bcf715)] - **test**: fix WASI link test (Richard Lau) [#&#8203;39485](https://github.com/nodejs/node/pull/39485) - \[[`0b564a6d40`](https://github.com/nodejs/node/commit/0b564a6d40)] - **test**: add test for WebSocket secret verification in debugger (Rich Trott) [#&#8203;39357](https://github.com/nodejs/node/pull/39357) - \[[`831f266d6f`](https://github.com/nodejs/node/commit/831f266d6f)] - **test**: put common lint exceptions into config file (Rich Trott) [#&#8203;39358](https://github.com/nodejs/node/pull/39358) - \[[`d8066f5325`](https://github.com/nodejs/node/commit/d8066f5325)] - **test**: mark test-domain-error-types flaky (James M Snell) [#&#8203;39369](https://github.com/nodejs/node/pull/39369) - \[[`c915a1bd04`](https://github.com/nodejs/node/commit/c915a1bd04)] - **test**: remove eslint-disable comment from fixture file (Rich Trott) [#&#8203;39320](https://github.com/nodejs/node/pull/39320) - \[[`1eb8307cc5`](https://github.com/nodejs/node/commit/1eb8307cc5)] - **test**: move debugger test case to parallel (Rich Trott) [#&#8203;39300](https://github.com/nodejs/node/pull/39300) - \[[`546202364c`](https://github.com/nodejs/node/commit/546202364c)] - **test**: remove debugger workaround for AIX (Rich Trott) [#&#8203;39296](https://github.com/nodejs/node/pull/39296) - \[[`e12164e88d`](https://github.com/nodejs/node/commit/e12164e88d)] - **test**: fix test-debugger-heap-profiler for workers (Richard Lau) [#&#8203;39687](https://github.com/nodejs/node/pull/39687) - \[[`a45bf2f1a0`](https://github.com/nodejs/node/commit/a45bf2f1a0)] - **test**: use common.PORT instead of hardcoded port number (Rich Trott) [#&#8203;39298](https://github.com/nodejs/node/pull/39298) - \[[`9b737ebd4b`](https://github.com/nodejs/node/commit/9b737ebd4b)] - **test**: add test for debugger restart message issue (Rich Trott) [#&#8203;39273](https://github.com/nodejs/node/pull/39273) - \[[`68523894ab`](https://github.com/nodejs/node/commit/68523894ab)] - **test**: remove workaround code in debugger test (Rich Trott) [#&#8203;39238](https://github.com/nodejs/node/pull/39238) - \[[`2cd414147b`](https://github.com/nodejs/node/commit/2cd414147b)] - **test**: move test-debugger-address to parallel (Rich Trott) [#&#8203;39236](https://github.com/nodejs/node/pull/39236) - \[[`a2e4020e4b`](https://github.com/nodejs/node/commit/a2e4020e4b)] - **test**: prepare for consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930) - \[[`62b439e04d`](https://github.com/nodejs/node/commit/62b439e04d)] - **test**: replace "inspector-cli" with "debugger" (Rich Trott) [#&#8203;39156](https://github.com/nodejs/node/pull/39156) - \[[`f13a302d23`](https://github.com/nodejs/node/commit/f13a302d23)] - **test**: improve coverage of stream.Readable (Rongjian Zhang) [#&#8203;38702](https://github.com/nodejs/node/pull/38702) - \[[`f3d2e6ac29`](https://github.com/nodejs/node/commit/f3d2e6ac29)] - **test**: add tests for `bound apply` variants of varargs `primordials` (ExE Boss) [#&#8203;37005](https://github.com/nodejs/node/pull/37005) - \[[`f70fd00fb3`](https://github.com/nodejs/node/commit/f70fd00fb3)] - **test**: use localhost test instead of connecting to remote (Adam Majer) [#&#8203;39011](https://github.com/nodejs/node/pull/39011) - \[[`c4ff5e4a7e`](https://github.com/nodejs/node/commit/c4ff5e4a7e)] - **test**: update error message keywords (leeight) [#&#8203;39826](https://github.com/nodejs/node/pull/39826) - \[[`922dacebfb`](https://github.com/nodejs/node/commit/922dacebfb)] - **test**: increase coverage for Blob (ZiJian Liu) [#&#8203;38515](https://github.com/nodejs/node/pull/38515) - \[[`c6ab19895d`](https://github.com/nodejs/node/commit/c6ab19895d)] - **test**: account for OOM risks in heapsnapshot-near-heap-limit tests (Joyee Cheung) [#&#8203;37761](https://github.com/nodejs/node/pull/37761) - \[[`971d5be57c`](https://github.com/nodejs/node/commit/971d5be57c)] - **test**: split heap snapshot limit tests (Rich Trott) [#&#8203;37189](https://github.com/nodejs/node/pull/37189) - \[[`815d59a7b3`](https://github.com/nodejs/node/commit/815d59a7b3)] - **test**: fix test-memory-usage.js for IBMi (Rich Trott) [#&#8203;36758](https://github.com/nodejs/node/pull/36758) - \[[`aa5309c33f`](https://github.com/nodejs/node/commit/aa5309c33f)] - **test**: increase coverage for net/blocklist (Zijian Liu) [#&#8203;36405](https://github.com/nodejs/node/pull/36405) - \[[`f3be3ec417`](https://github.com/nodejs/node/commit/f3be3ec417)] - **test**: check mustCall errors in test-fs-read-type (Tobias Nießen) [#&#8203;36914](https://github.com/nodejs/node/pull/36914) - \[[`b643fe7edf`](https://github.com/nodejs/node/commit/b643fe7edf)] - **test**: use faster variant for rss (Pooja D P) [#&#8203;36839](https://github.com/nodejs/node/pull/36839) - \[[`d4362db111`](https://github.com/nodejs/node/commit/d4362db111)] - **test**: use faster variant for rss in test-crypto-dh-leak (Pooja D P) [#&#8203;36766](https://github.com/nodejs/node/pull/36766) - \[[`3094ef967a`](https://github.com/nodejs/node/commit/3094ef967a)] - **test**: use faster variant for rss in test-vm-memleak.js (Pooja D P) [#&#8203;36769](https://github.com/nodejs/node/pull/36769) - \[[`ff7879b41e`](https://github.com/nodejs/node/commit/ff7879b41e)] - **test**: use faster variant for rss test-memoryusage-emfile (Pooja D P) [#&#8203;36768](https://github.com/nodejs/node/pull/36768) - \[[`d39200c7f4`](https://github.com/nodejs/node/commit/d39200c7f4)] - **tools**: make utils.SearchFiles Python2-compatible (Michaël Zasso) [#&#8203;40020](https://github.com/nodejs/node/pull/40020) - \[[`55493f2011`](https://github.com/nodejs/node/commit/55493f2011)] - **tools**: update workflow to open a pull request (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825) - \[[`417a3ac474`](https://github.com/nodejs/node/commit/417a3ac474)] - **tools**: use find-inactive-collaborators to modify README.md (Rich Trott) [#&#8203;39825](https://github.com/nodejs/node/pull/39825) - \[[`e9b1a006a1`](https://github.com/nodejs/node/commit/e9b1a006a1)] - **tools**: fix markdown linting (Rich Trott) [#&#8203;39832](https://github.com/nodejs/node/pull/39832) - \[[`67f1bff657`](https://github.com/nodejs/node/commit/67f1bff657)] - **tools**: update markdown linter dependencies and move to ESM (Antoine du Hamel) [#&#8203;39801](https://github.com/nodejs/node/pull/39801) - \[[`67c5921e8a`](https://github.com/nodejs/node/commit/67c5921e8a)] - **tools**: update rollup to latest version in markdown linter (Rich Trott) [#&#8203;39797](https://github.com/nodejs/node/pull/39797) - \[[`64714b429a`](https://github.com/nodejs/node/commit/64714b429a)] - **tools**: update markdown lint dependencies (Rich Trott) [#&#8203;39770](https://github.com/nodejs/node/pull/39770) - \[[`de9461168a`](https://github.com/nodejs/node/commit/de9461168a)] - **tools**: bump remark-preset-lint-node to 3.0.0 (Rich Trott) [#&#8203;39755](https://github.com/nodejs/node/pull/39755) - \[[`dfdf6c7317`](https://github.com/nodejs/node/commit/dfdf6c7317)] - **tools**: update markdown linter rules (Rich Trott) [#&#8203;38384](https://github.com/nodejs/node/pull/38384) - \[[`f8fee449f7`](https://github.com/nodejs/node/commit/f8fee449f7)] - **tools**: update path-parse in markdown linter package-lock file (Rich Trott) [#&#8203;39729](https://github.com/nodejs/node/pull/39729) - \[[`a338c0e07b`](https://github.com/nodejs/node/commit/a338c0e07b)] - **tools**: fix more build warnings in inspector_protocol (Richard Lau) [#&#8203;39725](https://github.com/nodejs/node/pull/39725) - \[[`09630cf199`](https://github.com/nodejs/node/commit/09630cf199)] - **tools**: cherry-pick [`ffb34b6`](https://github.com/nodejs/node/commit/ffb34b6d5dbf0) (Darshan Sen) [#&#8203;39725](https://github.com/nodejs/node/pull/39725) - \[[`26a067e33e`](https://github.com/nodejs/node/commit/26a067e33e)] - **tools**: update inspector_protocol to [`e8ba1a7`](https://github.com/nodejs/node/commit/e8ba1a7) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`9847d58feb`](https://github.com/nodejs/node/commit/9847d58feb)] - **tools**: update inspector_protocol to [`39ca567`](https://github.com/nodejs/node/commit/39ca567) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`6870bb7505`](https://github.com/nodejs/node/commit/6870bb7505)] - **tools**: update inspector_protocol to [`97d3146`](https://github.com/nodejs/node/commit/97d3146) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`383fa01e97`](https://github.com/nodejs/node/commit/383fa01e97)] - ***Revert*** "**tools**: fix compiler warning in inspector_protocol" (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`b95a759c86`](https://github.com/nodejs/node/commit/b95a759c86)] - **tools**: update inspector_protocol to [`a53e96d`](https://github.com/nodejs/node/commit/a53e96d31a2755eb16ca37) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`ad39687422`](https://github.com/nodejs/node/commit/ad39687422)] - **tools**: update inspector_protocol to [`fe0467f`](https://github.com/nodejs/node/commit/fe0467fd105a) (Rich Trott) [#&#8203;39694](https://github.com/nodejs/node/pull/39694) - \[[`78de83cc74`](https://github.com/nodejs/node/commit/78de83cc74)] - **tools**: improve error detection in find-inactive-collaborators (Rich Trott) [#&#8203;39617](https://github.com/nodejs/node/pull/39617) - \[[`a5152a0875`](https://github.com/nodejs/node/commit/a5152a0875)] - **tools**: flag README/mailmap mismatches in find-inactive-collaborators (Rich Trott) [#&#8203;39477](https://github.com/nodejs/node/pull/39477) - \[[`87c5332f89`](https://github.com/nodejs/node/commit/87c5332f89)] - **tools**: use mailmap for find-inactive-collaborators (Rich Trott) [#&#8203;39432](https://github.com/nodejs/node/pull/39432) - \[[`f75224f1ce`](https://github.com/nodejs/node/commit/f75224f1ce)] - **tools**: email matchin is case insensitive for .mailmap (Rich Trott) [#&#8203;39430](https://github.com/nodejs/node/pull/39430) - \[[`dfb77a581f`](https://github.com/nodejs/node/commit/dfb77a581f)] - **tools**: make internal link checker more robust (Rich Trott) [#&#8203;39429](https://github.com/nodejs/node/pull/39429) - \[[`d2c0da20a0`](https://github.com/nodejs/node/commit/d2c0da20a0)] - **tools**: added remark-frontmatter (Ben Halverson) [#&#8203;38717](https://github.com/nodejs/node/pull/38717) - \[[`cec04821aa`](https://github.com/nodejs/node/commit/cec04821aa)] - **tools**: change commit fetch limiting in find-inactive-collaborators (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362) - \[[`d948148498`](https://github.com/nodejs/node/commit/d948148498)] - **tools**: use Node.js 16.x for GitHub workflow (Rich Trott) [#&#8203;39362](https://github.com/nodejs/node/pull/39362) - \[[`edc5791b5a`](https://github.com/nodejs/node/commit/edc5791b5a)] - **tools**: add GitHub Action to run find-inactive-collaborators.mjs (Rich Trott) [#&#8203;39335](https://github.com/nodejs/node/pull/39335) - \[[`d86d37bc9e`](https://github.com/nodejs/node/commit/d86d37bc9e)] - **tools**: relax max-len lint rule for template strings (Rich Trott) [#&#8203;38097](https://github.com/nodejs/node/pull/38097) - \[[`f467e2a0c5`](https://github.com/nodejs/node/commit/f467e2a0c5)] - **tools**: pass bot token to node-pr-labeler (Michaël Zasso) [#&#8203;39271](https://github.com/nodejs/node/pull/39271) - \[[`61ec594609`](https://github.com/nodejs/node/commit/61ec594609)] - **tools**: add find-inactive-collaborators.js (Rich Trott) [#&#8203;39262](https://github.com/nodejs/node/pull/39262) - \[[`ff0ca11521`](https://github.com/nodejs/node/commit/ff0ca11521)] - **tools**: update path-parse to 1.0.7 (Rich Trott) [#&#8203;39232](https://github.com/nodejs/node/pull/39232) - \[[`b8fb75121b`](https://github.com/nodejs/node/commit/b8fb75121b)] - **tools**: remove unused `lint-pr-commit-message.sh` (Richard Lau) [#&#8203;39120](https://github.com/nodejs/node/pull/39120) - \[[`e7761b627f`](https://github.com/nodejs/node/commit/e7761b627f)] - **tools**: apply consistent comma-dangle lint rule (Rich Trott) [#&#8203;37930](https://github.com/nodejs/node/pull/37930) - \[[`315eba7789`](https://github.com/nodejs/node/commit/315eba7789)] - **tools**: make comma-dangle ESLint rule more stringent … (Rich Trott) [#&#8203;37088](https://github.com/nodejs/node/pull/37088) - \[[`3ecfe9d7ee`](https://github.com/nodejs/node/commit/3ecfe9d7ee)] - **tools**: update remark-preset-lint-node to 2.4.1 (Rich Trott) [#&#8203;39201](https://github.com/nodejs/node/pull/39201) - \[[`70e527c0c7`](https://github.com/nodejs/node/commit/70e527c0c7)] - **tools**: upgrade `highlight.js` to version 11.0.1 (Antoine du Hamel) [#&#8203;39032](https://github.com/nodejs/node/pull/39032) - \[[`7b2bebba7a`](https://github.com/nodejs/node/commit/7b2bebba7a)] - **tools**: add support for import assertions in linter (Antoine du Hamel) [#&#8203;39924](https://github.com/nodejs/node/pull/39924) - \[[`1353a6e22f`](https://github.com/nodejs/node/commit/1353a6e22f)] - **tools**: update ESLint to 7.32.0 (Luigi Pinca) [#&#8203;39602](https://github.com/nodejs/node/pull/39602) - \[[`509f26549c`](https://github.com/nodejs/node/commit/509f26549c)] - **tools**: update ESLint to 7.31.0 (Colin Ihrig) [#&#8203;39424](https://github.com/nodejs/node/pull/39424) - \[[`f0e0c8f720`](https://github.com/nodejs/node/commit/f0e0c8f720)] - **tools**: update ESLint to 7.30.0 (Colin Ihrig) [#&#8203;39242](https://github.com/nodejs/node/pull/39242) - \[[`6540c271e4`](https://github.com/nodejs/node/commit/6540c271e4)] - **tools**: update [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) to 7.14.7 (Rich Trott) [#&#8203;39160](https://github.com/nodejs/node/pull/39160) - \[[`d7e2318e74`](https://github.com/nodejs/node/commit/d7e2318e74)] - **tools**: add ESLint rule no-array-destructuring (Antoine du Hamel) [#&#8203;36818](https://github.com/nodejs/node/pull/36818) - \[[`87e5429334`](https://github.com/nodejs/node/commit/87e5429334)] - **tools,doc**: fix error message for unrecognized type (Antoine du Hamel) [#&#8203;39221](https://github.com/nodejs/node/pull/39221) - \[[`f206af679c`](https://github.com/nodejs/node/commit/f206af679c)] - **typings**: add a few JSDoc typings for the net lib module (nerdthatnoonelikes) [#&#8203;38953](https://github.com/nodejs/node/pull/38953) - \[[`d458cd7e2b`](https://github.com/nodejs/node/commit/d458cd7e2b)] - **typings**: add JSDoc typings for timers (Voltrex) [#&#8203;38834](https://github.com/nodejs/node/pull/38834) ### [`v14.17.6`](https://github.com/nodejs/node/releases/v14.17.6) [Compare Source](https://github.com/nodejs/node/compare/v14.17.5...v14.17.6) This is a security release. ##### Notable Changes These are vulnerabilities in the node-tar, arborist, and npm cli modules which are related to the initial reports and subsequent remediation of node-tar vulnerabilities [CVE-2021-32803](https://github.com/advisories/GHSA-r628-mhmh-qjhw) and [CVE-2021-32804](https://github.com/advisories/GHSA-3jfq-g458-7qm9). Subsequent internal security review of node-tar and additional external bounty reports have resulted in another 5 CVE being remediated in core npm CLI dependencies including node-tar, and npm arborist. You can read more about it in: - [CVE-2021-37701](https://github.com/npm/node-tar/security/advisories/GHSA-9r2w-394v-53qc) - [CVE-2021-37712](https://github.com/npm/node-tar/security/advisories/GHSA-qq89-hq3f-393p) - [CVE-2021-37713](https://github.com/npm/node-tar/security/advisories/GHSA-5955-9wpr-37jh) - [CVE-2021-39134](https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc) - [CVE-2021-39135](https://github.com/npm/arborist/security/advisories/GHSA-gmw6-94gg-2rc2) ##### Commits - \[[`5b3f70bfb5`](https://github.com/nodejs/node/commit/5b3f70bfb5)] - **deps**: update archs files for OpenSSL-1.1.1l (Richard Lau) [#&#8203;39868](https://github.com/nodejs/node/pull/39868) - \[[`71372625ae`](https://github.com/nodejs/node/commit/71372625ae)] - **deps**: upgrade openssl sources to 1.1.1l (Richard Lau) [#&#8203;39868](https://github.com/nodejs/node/pull/39868) - \[[`4276984803`](https://github.com/nodejs/node/commit/4276984803)] - **deps**: upgrade npm to 6.14.15 (Darcy Clarke) [#&#8203;39856](https://github.com/nodejs/node/pull/39856) ### [`v14.17.5`](https://github.com/nodejs/node/releases/v14.17.5) [Compare Source](https://github.com/nodejs/node/compare/v14.17.4...v14.17.5) This is a security release. ##### Notable Changes - **CVE-2021-3672/CVE-2021-22931**: Improper handling of untypical characters in domain names (High) - Node.js was vulnerable to Remote Code Execution, XSS, application crashes due to missing input validation of hostnames returned by Domain Name Servers in the Node.js DNS library which can lead to the output of wrong hostnames (leading to Domain Hijacking) and injection vulnerabilities in applications using the library. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22931. - **CVE-2021-22940**: Use after free on close http2 on stream canceling (High) - Node.js was vulnerable to a use after free attack where an attacker might be able to exploit memory corruption to change process behavior. This release includes a follow-up fix for CVE-2021-22930 as the issue was not completely resolved by the previous fix. You can read more about it at https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22940. - **CVE-2021-22939**: Incomplete validation of rejectUnauthorized parameter (Low) - If the Node.js HTTPS API was used incorrectly and "undefined" was in passed for the "rejectUnauthorized" parameter, no error was returned and connections to servers with an expired certificate would have been accepted. You can read more about it at https://nvd.nist.gov/vuln/detail/CVE-2021-22939. ##### Commits - \[[`4923b59e0b`](https://github.com/nodejs/node/commit/4923b59e0b)] - **deps**: update c-ares to 1.17.2 (Beth Griggs) [#&#8203;39724](https://github.com/nodejs/node/pull/39724) - \[[`847a4c6a8a`](https://github.com/nodejs/node/commit/847a4c6a8a)] - **deps**: reflect c-ares source tree (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653) - \[[`33208e2f89`](https://github.com/nodejs/node/commit/33208e2f89)] - **deps**: apply missed updates from c-ares 1.17.1 (Beth Griggs) [#&#8203;39653](https://github.com/nodejs/node/pull/39653) - \[[`af5c1af9a4`](https://github.com/nodejs/node/commit/af5c1af9a4)] - **http2**: add tests for cancel event while client is paused reading (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622) - \[[`434872e838`](https://github.com/nodejs/node/commit/434872e838)] - **http2**: update handling of rst_stream with error code NGHTTP2\_CANCEL (Akshay K) [#&#8203;39622](https://github.com/nodejs/node/pull/39622) - \[[`35b86110e4`](https://github.com/nodejs/node/commit/35b86110e4)] - **tls**: validate "rejectUnauthorized: undefined" (Matteo Collina) [nodejs-private/node-private#&#8203;276](https://github.com/nodejs-private/node-private/pull/276) ### [`v14.17.4`](https://github.com/nodejs/node/releases/v14.17.4) [Compare Source](https://github.com/nodejs/node/compare/v14.17.3...v14.17.4) This is a security release. ##### Notable Changes - **CVE-2021-22930**: Use after free on close http2 on stream canceling (High) - Node.js is vulnerable to a use after free attack where an attacker might be able to exploit the memory corruption, to change process behavior. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22930 This releases also fixes some regressions with internationalization introduced by the ICU updates in Node.js 14.17.0 and 14.17.1. ##### Commits - \[[`86477b2b53`](https://github.com/nodejs/node/commit/86477b2b53)] - **benchmark**: output JSON-compatible numbers (Michaël Zasso) [#&#8203;38778](https://github.com/nodejs/node/pull/38778) - \[[`f9693cf0a0`](https://github.com/nodejs/node/commit/f9693cf0a0)] - **benchmark**: fix http elapsed time (Antoine du Hamel) [#&#8203;38743](https://github.com/nodejs/node/pull/38743) - \[[`1ab4f81abc`](https://github.com/nodejs/node/commit/1ab4f81abc)] - **build**: fix building with external builtins (Momtchil Momtchev) [#&#8203;39091](https://github.com/nodejs/node/pull/39091) - \[[`a657f250f1`](https://github.com/nodejs/node/commit/a657f250f1)] - **build**: reconfigure when gyp files change on Windows (Joyee Cheung) [#&#8203;39066](https://github.com/nodejs/node/pull/39066) - \[[`6962c647d6`](https://github.com/nodejs/node/commit/6962c647d6)] - ***Revert*** "**build**: work around bug in MSBuild v16.10.0" (Michaël Zasso) [#&#8203;38977](https://github.com/nodejs/node/pull/38977) - \[[`069cf59e56`](https://github.com/nodejs/node/commit/069cf59e56)] - **build**: make build-addons errors fail the build (Richard Lau) [#&#8203;38983](https://github.com/nodejs/node/pull/38983) - \[[`d341561ae0`](https://github.com/nodejs/node/commit/d341561ae0)] - **build**: fix commit-queue default branch (Mary Marchini) [#&#8203;38998](https://github.com/nodejs/node/pull/38998) - \[[`0736dd833a`](https://github.com/nodejs/node/commit/0736dd833a)] - **build**: don't pass python override to V8 build (Richard Lau) [#&#8203;38969](https://github.com/nodejs/node/pull/38969) - \[[`49a000683a`](https://github.com/nodejs/node/commit/49a000683a)] - **build**: correct Xcode spelling in .gitignore (bl-ue) [#&#8203;38895](https://github.com/nodejs/node/pull/38895) - \[[`1ffbe3d5da`](https://github.com/nodejs/node/commit/1ffbe3d5da)] - **build**: remove outdated dont-land-on-v6.x label (Michaël Zasso) [#&#8203;38886](https://github.com/nodejs/node/pull/38886) - \[[`7f53a0b349`](https://github.com/nodejs/node/commit/7f53a0b349)] - **build**: add lto build to CI (Jiawen Geng) [#&#8203;38567](https://github.com/nodejs/node/pull/38567) - \[[`a6f8ba8f0c`](https://github.com/nodejs/node/commit/a6f8ba8f0c)] - **build**: allow LTO with Clang 3.9.1+ (Jesse Chan) [#&#8203;38751](https://github.com/nodejs/node/pull/38751) - \[[`b5b1d1fb79`](https://github.com/nodejs/node/commit/b5b1d1fb79)] - **build**: replace non-POSIX test -a|o (Issam E. Maghni) [#&#8203;38731](https://github.com/nodejs/node/pull/38731) - \[[`fc2b1ec308`](https://github.com/nodejs/node/commit/fc2b1ec308)] - **child_process**: refactor to use `validateBoolean` (Qingyu Deng) [#&#8203;38927](https://github.com/nodejs/node/pull/38927) - \[[`55ea29eedd`](https://github.com/nodejs/node/commit/55ea29eedd)] - **child_process**: retain reference to data with advanced serialization (Anna Henningsen) [#&#8203;38728](https://github.com/nodejs/node/pull/38728) - \[[`716ee1531c`](https://github.com/nodejs/node/commit/716ee1531c)] - **debugger**: rename internal library for clarity (Rich Trott) [#&#8203;39080](https://github.com/nodejs/node/pull/39080) - \[[`b7ee9d8287`](https://github.com/nodejs/node/commit/b7ee9d8287)] - **debugger**: use ERR_DEBUGGER_STARTUP_ERROR in \_inspect.js (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`5d4d23dcf3`](https://github.com/nodejs/node/commit/5d4d23dcf3)] - **debugger**: use error codes in debugger REPL (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`a3991d7c18`](https://github.com/nodejs/node/commit/a3991d7c18)] - **debugger**: use ERR_DEBUGGER_ERROR in debugger client (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`052e1c5385`](https://github.com/nodejs/node/commit/052e1c5385)] - **debugger**: removed unused function argument (Rich Trott) [#&#8203;38850](https://github.com/nodejs/node/pull/38850) - \[[`f9a4dcb30c`](https://github.com/nodejs/node/commit/f9a4dcb30c)] - **debugger**: refactor `inspect_repl` to use primordials (Antoine du Hamel) [#&#8203;38551](https://github.com/nodejs/node/pull/38551) - \[[`ad8056659f`](https://github.com/nodejs/node/commit/ad8056659f)] - **debugger**: refactor to use internal modules (Antoine du Hamel) [#&#8203;38550](https://github.com/nodejs/node/pull/38550) - \[[`b5724a1984`](https://github.com/nodejs/node/commit/b5724a1984)] - **debugger**: disable only the lint rules required by current file state (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529) - \[[`34659f2b7a`](https://github.com/nodejs/node/commit/34659f2b7a)] - **debugger**: avoid non-ASCII char in code file (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529) - \[[`ae90756582`](https://github.com/nodejs/node/commit/ae90756582)] - **debugger**: wrap lines longer than 80 chars (Rich Trott) [#&#8203;38529](https://github.com/nodejs/node/pull/38529) - \[[`b30ff35a36`](https://github.com/nodejs/node/commit/b30ff35a36)] - **debugger**: align message with Node.js standard (Rich Trott) [#&#8203;38400](https://github.com/nodejs/node/pull/38400) - \[[`d74d67f207`](https://github.com/nodejs/node/commit/d74d67f207)] - **debugger**: remove unnecessary boilerplate copyright comment (Rich Trott) [#&#8203;38952](https://github.com/nodejs/node/pull/38952) - \[[`e58f938ab3`](https://github.com/nodejs/node/commit/e58f938ab3)] - **debugger**: enable linter on `internal/inspector/inspect_client` (Antoine du Hamel) [#&#8203;38417](https://github.com/nodejs/node/pull/38417) - \[[`249acd5e69`](https://github.com/nodejs/node/commit/249acd5e69)] - **debugger**: reduce scope of eslint disable comment (Rich Trott) [#&#8203;38946](https://github.com/nodejs/node/pull/38946) - \[[`0ef5e088c0`](https://github.com/nodejs/node/commit/0ef5e088c0)] - **debugger**: revise async iterator usage to comply with lint rules (Rich Trott) [#&#8203;38847](https://github.com/nodejs/node/pull/38847) - \[[`79bfb0416b`](https://github.com/nodejs/node/commit/79bfb0416b)] - **debugger**: wait for V8 debugger to be enabled (Michaël Zasso) [#&#8203;38811](https://github.com/nodejs/node/pull/38811) - \[[`721edeffd3`](https://github.com/nodejs/node/commit/721edeffd3)] - **debugger**: refactor `internal/inspector/_inspect` to use more primordials (Antoine du Hamel) [#&#8203;38406](https://github.com/nodejs/node/pull/38406) - \[[`21ecee1b4b`](https://github.com/nodejs/node/commit/21ecee1b4b)] - **debugger**: add usage example for `--port` (Rafael Gonzaga) [#&#8203;38400](https://github.com/nodejs/node/pull/38400) - \[[`cde72213d1`](https://github.com/nodejs/node/commit/cde72213d1)] - ***Revert*** "**debugger**: rename internal library for clarity" (Antoine du Hamel) [#&#8203;39446](https://github.com/nodejs/node/pull/39446) - \[[`4c2b813799`](https://github.com/nodejs/node/commit/4c2b813799)] - **debugger**: rename internal library for clarity (Rich Trott) [#&#8203;39080](https://github.com/nodejs/node/pull/39080) - \[[`61da371251`](https://github.com/nodejs/node/commit/61da371251)] - **debugger**: apply automatic lint fixes for inspect_repl.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411) - \[[`8dd1f70fe3`](https://github.com/nodejs/node/commit/8dd1f70fe3)] - **debugger**: apply automatic lint fixes for \_inspect.js (Rich Trott) [#&#8203;38411](https://github.com/nodejs/node/pull/38411) - \[[`fb0ab4c034`](https://github.com/nodejs/node/commit/fb0ab4c034)] - **debugger**: removed unused function argument (Rich Trott) [#&#8203;38850](https://github.com/nodejs/node/pull/38850) - \[[`9e28c6c946`](https://github.com/nodejs/node/commit/9e28c6c946)] - **debugger**: fix race condition/deadlock on initialization (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`a8924fa0fb`](https://github.com/nodejs/node/commit/a8924fa0fb)] - **debugger**: replace internal use of deprecated API (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`22afb7cbe6`](https://github.com/nodejs/node/commit/22afb7cbe6)] - **debugger**: allow longer time to connect (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`b172e6f436`](https://github.com/nodejs/node/commit/b172e6f436)] - **debugger**: accommodate line chunking in Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`1da692185a`](https://github.com/nodejs/node/commit/1da692185a)] - **debugger**: fix inspect restart on Windows (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`0321c5b194`](https://github.com/nodejs/node/commit/0321c5b194)] - **debugger**: remove unused code (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`8bd2a3926a`](https://github.com/nodejs/node/commit/8bd2a3926a)] - **debugger**: move node-inspect to internal library (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`acf5279c39`](https://github.com/nodejs/node/commit/acf5279c39)] - **deps**: upgrade npm to 6.14.14 (Darcy Clarke) [#&#8203;39553](https://github.com/nodejs/node/pull/39553) - \[[`4efefe02a8`](https://github.com/nodejs/node/commit/4efefe02a8)] - **deps**: V8: backport [`ae7bfb3`](https://github.com/nodejs/node/commit/ae7bfb3f03b3) (Michaël Zasso) [#&#8203;39051](https://github.com/nodejs/node/pull/39051) - \[[`5039f21396`](https://github.com/nodejs/node/commit/5039f21396)] - **deps**: V8: backport [`16ffec9`](https://github.com/nodejs/node/commit/16ffec97e5eb) (Michaël Zasso) [#&#8203;39051](https://github.com/nodejs/node/pull/39051) - \[[`9b69069f71`](https://github.com/nodejs/node/commit/9b69069f71)] - **deps**: V8: cherry-pick [`b0a7f56`](https://github.com/nodejs/node/commit/b0a7f5691113) (Michaël Zasso) [#&#8203;39051](https://github.com/nodejs/node/pull/39051) - \[[`4213e97d26`](https://github.com/nodejs/node/commit/4213e97d26)] - **deps**: V8: cherry-pick [`81181a8`](https://github.com/nodejs/node/commit/81181a8ad80a) (thomasmichaelwallace) [#&#8203;39187](https://github.com/nodejs/node/pull/39187) - \[[`ccecea5f72`](https://github.com/nodejs/node/commit/ccecea5f72)] - **deps**: restore minimum ICU version to 65 (Richard Lau) [#&#8203;39068](https://github.com/nodejs/node/pull/39068) - \[[`7557e74cf4`](https://github.com/nodejs/node/commit/7557e74cf4)] - **deps**: V8: update build dependencies (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244) - \[[`a60a960406`](https://github.com/nodejs/node/commit/a60a960406)] - **deps**: V8: cherry-pick [`8959494`](https://github.com/nodejs/node/commit/895949419186) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244) - \[[`7fdd6ecbb4`](https://github.com/nodejs/node/commit/7fdd6ecbb4)] - **deps**: V8: cherry-pick [`0b3a4ec`](https://github.com/nodejs/node/commit/0b3a4ecf7083) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244) - \[[`4be2e878b7`](https://github.com/nodejs/node/commit/4be2e878b7)] - **deps**: V8: cherry-pick [`7c182bd`](https://github.com/nodejs/node/commit/7c182bd65f42) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244) - \[[`a83b01a4af`](https://github.com/nodejs/node/commit/a83b01a4af)] - **deps**: V8: cherry-pick [`92e6d33`](https://github.com/nodejs/node/commit/92e6d3317082) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244) - \[[`17eb561184`](https://github.com/nodejs/node/commit/17eb561184)] - **deps**: V8: backport [`1b1eda0`](https://github.com/nodejs/node/commit/1b1eda0876aa) (Michaël Zasso) [#&#8203;39244](https://github.com/nodejs/node/pull/39244) - \[[`04032fa1a3`](https://github.com/nodejs/node/commit/04032fa1a3)] - **doc**: remove references to deleted freenode channels (devsnek) [#&#8203;39047](https://github.com/nodejs/node/pull/39047) - \[[`797bd73849`](https://github.com/nodejs/node/commit/797bd73849)] - **doc**: add missing parameter types (Voltrex) [#&#8203;39013](https://github.com/nodejs/node/pull/39013) - \[[`e474e984e5`](https://github.com/nodejs/node/commit/e474e984e5)] - **doc**: clarify that only one Python version is required to build (bl-ue) [#&#8203;38894](https://github.com/nodejs/node/pull/38894) - \[[`cd48ee71d9`](https://github.com/nodejs/node/commit/cd48ee71d9)] - **doc**: fixed typo in process.md (Derevianchenko Maksym) [#&#8203;38941](https://github.com/nodejs/node/pull/38941) - \[[`41fcbad2b2`](https://github.com/nodejs/node/commit/41fcbad2b2)] - **doc**: add missing semis after classes (Darshan Sen) [#&#8203;38931](https://github.com/nodejs/node/pull/38931) - \[[`b40529643b`](https://github.com/nodejs/node/commit/b40529643b)] - **doc**: mark util.inherits as legacy (Voltrex) [#&#8203;38896](https://github.com/nodejs/node/pull/38896) - \[[`b2d836b1ea`](https://github.com/nodejs/node/commit/b2d836b1ea)] - **doc**: clarify when `readable._read(...)` is called (Shaun Keys) [#&#8203;38726](https://github.com/nodejs/node/pull/38726) - \[[`e36d2a6d6a`](https://github.com/nodejs/node/commit/e36d2a6d6a)] - **doc**: fixed typo in n-api.md (julianjany) [#&#8203;38822](https://github.com/nodejs/node/pull/38822) - \[[`b4f60bb523`](https://github.com/nodejs/node/commit/b4f60bb523)] - **doc**: use "Long Term Support" in collaborator guide (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841) - \[[`7a9850a5fb`](https://github.com/nodejs/node/commit/7a9850a5fb)] - **doc**: use "Long Term Support" in technical values doc (Rich Trott) [#&#8203;38841](https://github.com/nodejs/node/pull/38841) - \[[`dfe9698db0`](https://github.com/nodejs/node/commit/dfe9698db0)] - **doc**: use "Long Term Support" in README (Philip) [#&#8203;38839](https://github.com/nodejs/node/pull/38839) - \[[`8699e622fc`](https://github.com/nodejs/node/commit/8699e622fc)] - **doc**: fix grammar in `fs.md` (yotamselementor) [#&#8203;38818](https://github.com/nodejs/node/pull/38818) - \[[`826ae9b2e2`](https://github.com/nodejs/node/commit/826ae9b2e2)] - **doc**: fixup code sample in http.md (TodorTotev) [#&#8203;38776](https://github.com/nodejs/node/pull/38776) - \[[`8049b69b7f`](https://github.com/nodejs/node/commit/8049b69b7f)] - **doc**: document null target pattern (Guy Bedford) [#&#8203;38724](https://github.com/nodejs/node/pull/38724) - \[[`4d9129eb71`](https://github.com/nodejs/node/commit/4d9129eb71)] - **doc**: update code examples for `node:url` module (fisker Cheung) [#&#8203;38645](https://github.com/nodejs/node/pull/38645) - \[[`2ff671e4c4`](https://github.com/nodejs/node/commit/2ff671e4c4)] - **doc,url**: clarify domainTo\* when built without ICU (Darshan Sen) [#&#8203;38789](https://github.com/nodejs/node/pull/38789) - \[[`9b993edca8`](https://github.com/nodejs/node/commit/9b993edca8)] - **errors**: add ERR_DEBUGGER_STARTUP_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`cfccf13e84`](https://github.com/nodejs/node/commit/cfccf13e84)] - **errors**: add ERR_DEBUGGER_ERROR (Rich Trott) [#&#8203;39024](https://github.com/nodejs/node/pull/39024) - \[[`bb9a9adc2b`](https://github.com/nodejs/node/commit/bb9a9adc2b)] - **errors**: don't rekey on primitive type (Benjamin Coe) [#&#8203;39025](https://github.com/nodejs/node/pull/39025) - \[[`d48b91ea2b`](https://github.com/nodejs/node/commit/d48b91ea2b)] - **http2**: on receiving rst_stream with cancel code add it to pending list (Akshay K) [#&#8203;39423](https://github.com/nodejs/node/pull/39423) - \[[`d8cc2fffd6`](https://github.com/nodejs/node/commit/d8cc2fffd6)] - **lib**: add primordials.SafeArrayIterator (Antoine du Hamel) [#&#8203;36532](https://github.com/nodejs/node/pull/36532) - \[[`e3223edb89`](https://github.com/nodejs/node/commit/e3223edb89)] - **lib**: harden lint checks for globals (Antoine du Hamel) [#&#8203;38419](https://github.com/nodejs/node/pull/38419) - \[[`d4f96bb926`](https://github.com/nodejs/node/commit/d4f96bb926)] - **lib**: enforce using `primordials.globalThis` instead of `global` (Antoine du Hamel) [#&#8203;38230](https://github.com/nodejs/node/pull/38230) - \[[`ea9003a559`](https://github.com/nodejs/node/commit/ea9003a559)] - **lib**: add `globalThis` to primordials (Antoine du Hamel) [#&#8203;38211](https://github.com/nodejs/node/pull/38211) - \[[`097a7874d3`](https://github.com/nodejs/node/commit/097a7874d3)] - **lib**: remove semicolon in preparation for babel/eslint-parser update (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094) - \[[`199fe32cbc`](https://github.com/nodejs/node/commit/199fe32cbc)] - **lib**: make internal/options lazy (Joyee Cheung) [#&#8203;38993](https://github.com/nodejs/node/pull/38993) - \[[`2bc2a232af`](https://github.com/nodejs/node/commit/2bc2a232af)] - **lib**: add JSDoc typings for child_process (Voltrex) [#&#8203;38222](https://github.com/nodejs/node/pull/38222) - \[[`b0a1984d4d`](https://github.com/nodejs/node/commit/b0a1984d4d)] - **lib**: fix typos (bl-ue) [#&#8203;38846](https://github.com/nodejs/node/pull/38846) - \[[`6c061d5f2c`](https://github.com/nodejs/node/commit/6c061d5f2c)] - **meta**: update label-pr-config (Michaël Zasso) [#&#8203;38950](https://github.com/nodejs/node/pull/38950) - \[[`afb61786b9`](https://github.com/nodejs/node/commit/afb61786b9)] - **module**: fix legacy `node` specifier resolution to resolve `"main"` field (Antoine du Hamel) [#&#8203;38979](https://github.com/nodejs/node/pull/38979) - \[[`cd3305a9e4`](https://github.com/nodejs/node/commit/cd3305a9e4)] - **node-api**: avoid SecondPassCallback crash (Michael Dawson) [#&#8203;38899](https://github.com/nodejs/node/pull/38899) - \[[`e7f266e93d`](https://github.com/nodejs/node/commit/e7f266e93d)] - **src**: use SPrintF in ProcessEmitWarning (Darshan Sen) [#&#8203;38758](https://github.com/nodejs/node/pull/38758) - \[[`43fe6c1d27`](https://github.com/nodejs/node/commit/43fe6c1d27)] - **src**: cleanup uv_fs_t regardless of success or not (legendecas) [#&#8203;38996](https://github.com/nodejs/node/pull/38996) - \[[`dcfb182546`](https://github.com/nodejs/node/commit/dcfb182546)] - **src**: refactor to use locale functions (Darshan Sen) [#&#8203;39014](https://github.com/nodejs/node/pull/39014) - \[[`bee477b000`](https://github.com/nodejs/node/commit/bee477b000)] - **src**: throw error in LoadBuiltinModuleSource when reading fails (Joyee Cheung) [#&#8203;38904](https://github.com/nodejs/node/pull/38904) - \[[`ff7cc8f9ef`](https://github.com/nodejs/node/commit/ff7cc8f9ef)] - **src**: add not-weak DCHECK to PersistentToLocal::Strong (Anna Henningsen) [#&#8203;38875](https://github.com/nodejs/node/pull/38875) - \[[`981217e48a`](https://github.com/nodejs/node/commit/981217e48a)] - **src**: replace `auto`s in node_api.cc (Khaidi Chu) [#&#8203;38852](https://github.com/nodejs/node/pull/38852) - \[[`73e199d963`](https://github.com/nodejs/node/commit/73e199d963)] - **src**: fix typos (bl-ue) [#&#8203;38845](https://github.com/nodejs/node/pull/38845) - \[[`2d32031724`](https://github.com/nodejs/node/commit/2d32031724)] - **src**: use HandleScope in StreamReq::Done() (Darshan Sen) [#&#8203;38720](https://github.com/nodejs/node/pull/38720) - \[[`2c11d3ec0a`](https://github.com/nodejs/node/commit/2c11d3ec0a)] - **src**: remove commented code in `node_file.cc` (Juan José Arboleda) [#&#8203;38693](https://github.com/nodejs/node/pull/38693) - \[[`846a138f54`](https://github.com/nodejs/node/commit/846a138f54)] - **src**: write named pipe info in diagnostic report (legendecas) [#&#8203;38637](https://github.com/nodejs/node/pull/38637) - \[[`7d82200861`](https://github.com/nodejs/node/commit/7d82200861)] - **src**: replace `auto`s in node_contextify.cc (Khaidi Chu) [#&#8203;38644](https://github.com/nodejs/node/pull/38644) - \[[`51da7d2048`](https://github.com/nodejs/node/commit/51da7d2048)] - **src,url**: separate some tables out of node_url.cc (Khaidi Chu) [#&#8203;38988](https://github.com/nodejs/node/pull/38988) - \[[`45c2ea3b72`](https://github.com/nodejs/node/commit/45c2ea3b72)] - **test**: add NumberFormat resolvedOptions test (Richard Lau) [#&#8203;39401](https://github.com/nodejs/node/pull/39401) - \[[`6b2fea38d1`](https://github.com/nodejs/node/commit/6b2fea38d1)] - **test**: move inspector-cli tests to sequential (Rich Trott) [#&#8203;39079](https://github.com/nodejs/node/pull/39079) - \[[`6447cab7be`](https://github.com/nodejs/node/commit/6447cab7be)] - **test**: improve buffer coverage (Rongjian Zhang) [#&#8203;38538](https://github.com/nodejs/node/pull/38538) - \[[`6f1862eab3`](https://github.com/nodejs/node/commit/6f1862eab3)] - **test**: fix name of variable in inspector-cli test (Tobias Nießen) [#&#8203;38869](https://github.com/nodejs/node/pull/38869) - \[[`40093504bc`](https://github.com/nodejs/node/commit/40093504bc)] - **test**: fix typo (Houssem Chebab) [#&#8203;39045](https://github.com/nodejs/node/pull/39045) - \[[`ab28f9b9a1`](https://github.com/nodejs/node/commit/ab28f9b9a1)] - **test**: remove obsolete TLS test (Rich Trott) [#&#8203;39001](https://github.com/nodejs/node/pull/39001) - \[[`b3b59953fe`](https://github.com/nodejs/node/commit/b3b59953fe)] - **test**: improve coverage of lib/events.js (Rongjian Zhang) [#&#8203;38582](https://github.com/nodejs/node/pull/38582) - \[[`c99a09f05f`](https://github.com/nodejs/node/commit/c99a09f05f)] - **test**: http outgoing \_headers setter null (ycjcl868) [#&#8203;38881](https://github.com/nodejs/node/pull/38881) - \[[`660a97b1d5`](https://github.com/nodejs/node/commit/660a97b1d5)] - **test**: suppress warning in test_environment.cc (Daniel Bevenius) [#&#8203;38868](https://github.com/nodejs/node/pull/38868) - \[[`0cca16ac4c`](https://github.com/nodejs/node/commit/0cca16ac4c)] - **test**: improve coverage of fs internal utils (Rongjian Zhang) [#&#8203;38746](https://github.com/nodejs/node/pull/38746) - \[[`fecad40f27`](https://github.com/nodejs/node/commit/fecad40f27)] - **test**: fix writefile with fd (Nitzan Uziely) [#&#8203;38820](https://github.com/nodejs/node/pull/38820) - \[[`01f00faaa8`](https://github.com/nodejs/node/commit/01f00faaa8)] - **test**: simplify test-path-resolve.js (himself65) [#&#8203;38671](https://github.com/nodejs/node/pull/38671) - \[[`504bfd7a88`](https://github.com/nodejs/node/commit/504bfd7a88)] - **test**: improve coverage for `question` in readline (Qingyu Deng) [#&#8203;38799](https://github.com/nodejs/node/pull/38799) - \[[`eb91932e77`](https://github.com/nodejs/node/commit/eb91932e77)] - **test**: os, replace custom flatten method with built-in Array.flat (Wael Almattar) [#&#8203;38770](https://github.com/nodejs/node/pull/38770) - \[[`aeea252b96`](https://github.com/nodejs/node/commit/aeea252b96)] - **test**: improve coverage of lib/\_http_outgoing.js (Rongjian Zhang) [#&#8203;38734](https://github.com/nodejs/node/pull/38734) - \[[`e265d8ee1b`](https://github.com/nodejs/node/commit/e265d8ee1b)] - **test**: give js-native-api tests consistent names (Gabriel Schulhof) [#&#8203;38692](https://github.com/nodejs/node/pull/38692) - \[[`99fd8bfc6a`](https://github.com/nodejs/node/commit/99fd8bfc6a)] - **test**: fix flaky inspector-cli tests when breakpionts are restored (Rich Trott) [#&#8203;38431](https://github.com/nodejs/node/pull/38431) - \[[`4d3a1fad28`](https://github.com/nodejs/node/commit/4d3a1fad28)] - **test**: extend timeout on debugger tests for slower machines (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`dd2642b5db`](https://github.com/nodejs/node/commit/dd2642b5db)] - **test**: fix comment typo (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`193ea8fd91`](https://github.com/nodejs/node/commit/193ea8fd91)] - **test**: fix test-inspector-cli-address (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`a62826bbe6`](https://github.com/nodejs/node/commit/a62826bbe6)] - **test,debugger**: migrate node-inspect tests to core (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`ab45ace9bd`](https://github.com/nodejs/node/commit/ab45ace9bd)] - **tools**: update babel-eslint-parser to 7.14.5 (Rich Trott) [#&#8203;39094](https://github.com/nodejs/node/pull/39094) - \[[`b8e63b3c08`](https://github.com/nodejs/node/commit/b8e63b3c08)] - **tools**: update ESLint to 7.29.0 (Rich Trott) [#&#8203;39083](https://github.com/nodejs/node/pull/39083) - \[[`54a250e79c`](https://github.com/nodejs/node/commit/54a250e79c)] - **tools**: update doctool dependencies, migrate to ESM (Michaël Zasso) [#&#8203;38966](https://github.com/nodejs/node/pull/38966) - \[[`443db64eed`](https://github.com/nodejs/node/commit/443db64eed)] - **tools**: avoid crashing CQ when git push fails (Antoine du Hamel) [#&#8203;36861](https://github.com/nodejs/node/pull/36861) - \[[`547f88b149`](https://github.com/nodejs/node/commit/547f88b149)] - **tools**: fix typo in commit-queue.sh (bl-ue) [#&#8203;39000](https://github.com/nodejs/node/pull/39000) - \[[`1023433a81`](https://github.com/nodejs/node/commit/1023433a81)] - **tools**: update ESLint to 7.28.0 (Luigi Pinca) [#&#8203;38955](https://github.com/nodejs/node/pull/38955) - \[[`9b4ae8fbb0`](https://github.com/nodejs/node/commit/9b4ae8fbb0)] - **tools**: bump remark-preset-lint-node to 2.3.0 (Rich Trott) [#&#8203;38910](https://github.com/nodejs/node/pull/38910) - \[[`2ad0719e86`](https://github.com/nodejs/node/commit/2ad0719e86)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851) - \[[`b7686d0c1e`](https://github.com/nodejs/node/commit/b7686d0c1e)] - **tools**: bump cpplint to 1.5.5 (Rich Trott) [#&#8203;38851](https://github.com/nodejs/node/pull/38851) - \[[`2ec7c9de57`](https://github.com/nodejs/node/commit/2ec7c9de57)] - **tools**: remove exception for Node.js 8 and earlier (Rich Trott) [#&#8203;38840](https://github.com/nodejs/node/pull/38840) - \[[`1dc71da302`](https://github.com/nodejs/node/commit/1dc71da302)] - **tools**: update setup-node to setup-node@v2 (pengjie) [#&#8203;38825](https://github.com/nodejs/node/pull/38825) - \[[`fc219d862c`](https://github.com/nodejs/node/commit/fc219d862c)] - **tools**: remove node-inspect from license (Rich Trott) [#&#8203;38161](https://github.com/nodejs/node/pull/38161) - \[[`4bb0bd0f0e`](https://github.com/nodejs/node/commit/4bb0bd0f0e)] - **tools,doc**: forbid CJS globals in ESM code snippets (Antoine du Hamel) [#&#8203;38889](https://github.com/nodejs/node/pull/38889) - \[[`58154ce426`](https://github.com/nodejs/node/commit/58154ce426)] - **typings**: add JSDoc typings for https (Voltrex) [#&#8203;38589](https://github.com/nodejs/node/pull/38589) - \[[`6ea1368a67`](https://github.com/nodejs/node/commit/6ea1368a67)] - **typings**: add JSDoc typings for events (Voltrex) [#&#8203;38712](https://github.com/nodejs/node/pull/38712) - \[[`b6942a6138`](https://github.com/nodejs/node/commit/b6942a6138)] - **url,src**: simplify ipv6 logic by using uv_inet_pton (Khaidi Chu) [#&#8203;38842](https://github.com/nodejs/node/pull/38842) - \[[`dd00547ada`](https://github.com/nodejs/node/commit/dd00547ada)] - **vm**: use missing validator (Voltrex) [#&#8203;38935](https://github.com/nodejs/node/pull/38935) - \[[`2c28e00685`](https://github.com/nodejs/node/commit/2c28e00685)] - **worker**: do not look up context twice in PostMessage (Anna Henningsen) [#&#8203;38784](https://github.com/nodejs/node/pull/38784) ### [`v14.17.3`](https://github.com/nodejs/node/releases/v14.17.3) [Compare Source](https://github.com/nodejs/node/compare/v14.17.2...v14.17.3) ##### Notable Changes Node.js 14.17.2 introduced a regression in the Windows installer on non-English locales that is being fixed in this release. There is no need to download this release if you are not using the Windows installer. ##### Commits - \[[`0f00104a2c`](https://github.com/nodejs/node/commit/0f00104a2c)] - **win,msi**: use localized "Authenticated Users" name (Richard Lau) [#&#8203;39241](https://github.com/nodejs/node/pull/39241) ### [`v14.17.2`](https://github.com/nodejs/node/releases/v14.17.2) [Compare Source](https://github.com/nodejs/node/compare/v14.17.1...v14.17.2) This is a security release. ##### Notable Changes Vulnerabilities fixed: - **CVE-2021-22918**: libuv upgrade - Out of bounds read (Medium) - Node.js is vulnerable to out-of-bounds read in libuv's uv\_\_idna_toascii() function which is used to convert strings to ASCII. This is called by Node's dns module's lookup() function and can lead to information disclosures or crashes. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22918 - **CVE-2021-22921**: Windows installer - Node Installer Local Privilege Escalation (Medium) - Node.js is vulnerable to local privilege escalation attacks under certain conditions on Windows platforms. More specifically, improper configuration of permissions in the installation directory allows an attacker to perform two different escalation attacks: PATH and DLL hijacking. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22921 ##### Commits - \[[`a7496aba0a`](https://github.com/nodejs/node/commit/a7496aba0a)] - **deps**: uv: cherry-pick [`99c29c9`](https://github.com/nodejs/node/commit/99c29c9c2c9b) (Ben Noordhuis) [nodejs-private/node-private#&#8203;267](https://github.com/nodejs-private/node-private/pull/267) - \[[`d0b449da1d`](https://github.com/nodejs/node/commit/d0b449da1d)] - **win,msi**: set install directory permission (AkshayK) [nodejs-private/node-private#&#8203;269](https://github.com/nodejs-private/node-private/pull/269) ### [`v14.17.1`](https://github.com/nodejs/node/releases/v14.17.1) [Compare Source](https://github.com/nodejs/node/compare/v14.17.0...v14.17.1) ##### Notable Changes - \[[`6035492c8f`](https://github.com/nodejs/node/commit/6035492c8f)] - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178) - \[[`9417fd0bc8`](https://github.com/nodejs/node/commit/9417fd0bc8)] - **errors**: align source-map stacks with spec (Benjamin Coe) [#&#8203;37252](https://github.com/nodejs/node/pull/37252) ##### Commits - \[[`87fa636953`](https://github.com/nodejs/node/commit/87fa636953)] - **assert**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36234](https://github.com/nodejs/node/pull/36234) - \[[`cfff3b4462`](https://github.com/nodejs/node/commit/cfff3b4462)] - **assert**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37344](https://github.com/nodejs/node/pull/37344) - \[[`dd18def7db`](https://github.com/nodejs/node/commit/dd18def7db)] - **async_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37125](https://github.com/nodejs/node/pull/37125) - \[[`5f3e96b570`](https://github.com/nodejs/node/commit/5f3e96b570)] - **async_hooks,doc**: replace process.stdout.fd with 1 (Darshan Sen) [#&#8203;38382](https://github.com/nodejs/node/pull/38382) - \[[`f4cb8b8281`](https://github.com/nodejs/node/commit/f4cb8b8281)] - **benchmark**: avoid using `console.log()` (Antoine du Hamel) [#&#8203;38370](https://github.com/nodejs/node/pull/38370) - \[[`9e4c1f2f2c`](https://github.com/nodejs/node/commit/9e4c1f2f2c)] - **benchmark**: use `process.hrtime.bigint()` (Antoine du Hamel) [#&#8203;38369](https://github.com/nodejs/node/pull/38369) - \[[`3c886e0ad6`](https://github.com/nodejs/node/commit/3c886e0ad6)] - **buffer**: remove TODOs in `atob` / `btoa` (Khaidi Chu) [#&#8203;38548](https://github.com/nodejs/node/pull/38548) - \[[`c5b86f8c2f`](https://github.com/nodejs/node/commit/c5b86f8c2f)] - **buffer**: remove unreachable code (Rongjian Zhang) [#&#8203;38537](https://github.com/nodejs/node/pull/38537) - \[[`9ae2a27d44`](https://github.com/nodejs/node/commit/9ae2a27d44)] - **buffer**: make FastBuffer safe to construct (Antoine du Hamel) [#&#8203;36587](https://github.com/nodejs/node/pull/36587) - \[[`ff546ff744`](https://github.com/nodejs/node/commit/ff546ff744)] - **buffer**: refactor to use primordials instead of Array#reduce (Antoine du Hamel) [#&#8203;36392](https://github.com/nodejs/node/pull/36392) - \[[`5acf0a5ba3`](https://github.com/nodejs/node/commit/5acf0a5ba3)] - **buffer**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36166](https://github.com/nodejs/node/pull/36166) - \[[`52fd42ec46`](https://github.com/nodejs/node/commit/52fd42ec46)] - **build**: work around bug in MSBuild v16.10.0 (Michaël Zasso) [#&#8203;38873](https://github.com/nodejs/node/pull/38873) - \[[`5df0f35bf6`](https://github.com/nodejs/node/commit/5df0f35bf6)] - **build**: add workaround for V8 builds (Richard Lau) [#&#8203;38632](https://github.com/nodejs/node/pull/38632) - \[[`754aa384e0`](https://github.com/nodejs/node/commit/754aa384e0)] - **build**: remove dependency on `distutils.spawn` (Richard Lau) [#&#8203;38600](https://github.com/nodejs/node/pull/38600) - \[[`5de7e64f3a`](https://github.com/nodejs/node/commit/5de7e64f3a)] - **build**: fix make test-npm (Ruy Adorno) [#&#8203;36369](https://github.com/nodejs/node/pull/36369) - \[[`e5fae63108`](https://github.com/nodejs/node/commit/e5fae63108)] - **child_process**: reduce abort handler code duplication (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`598d2bdf09`](https://github.com/nodejs/node/commit/598d2bdf09)] - **child_process**: treat already-aborted controller as aborting (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`8d7708bdef`](https://github.com/nodejs/node/commit/8d7708bdef)] - **child_process**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36003](https://github.com/nodejs/node/pull/36003) - \[[`b8c4d30e77`](https://github.com/nodejs/node/commit/b8c4d30e77)] - **deps**: update to cjs-module-lexer@1.2.1 (Guy Bedford) [#&#8203;38450](https://github.com/nodejs/node/pull/38450) - \[[`6035492c8f`](https://github.com/nodejs/node/commit/6035492c8f)] - **deps**: update ICU to 69.1 (Michaël Zasso) [#&#8203;38178](https://github.com/nodejs/node/pull/38178) - \[[`51dad8cabb`](https://github.com/nodejs/node/commit/51dad8cabb)] - **deps**: V8: cherry-pick [`035c305`](https://github.com/nodejs/node/commit/035c305ce776) (Michaël Zasso) [#&#8203;38497](https://github.com/nodejs/node/pull/38497) - \[[`a467125c8d`](https://github.com/nodejs/node/commit/a467125c8d)] - **deps**: V8: cherry-pick [`dfcdf78`](https://github.com/nodejs/node/commit/dfcdf7837e23) (Benjamin Coe) [#&#8203;36573](https://github.com/nodejs/node/pull/36573) - \[[`acc9fad2ba`](https://github.com/nodejs/node/commit/acc9fad2ba)] - **deps**: V8: cherry-pick [`86991d0`](https://github.com/nodejs/node/commit/86991d0587a1) (Benjamin Coe) [#&#8203;36254](https://github.com/nodejs/node/pull/36254) - \[[`d67827744b`](https://github.com/nodejs/node/commit/d67827744b)] - **deps**: V8: cherry-pick [`530080c`](https://github.com/nodejs/node/commit/530080c44af2) (Milad Fa) [#&#8203;38508](https://github.com/nodejs/node/pull/38508) - \[[`bac9ba4f8a`](https://github.com/nodejs/node/commit/bac9ba4f8a)] - **dgram**: extract cluster lazy loading method to make it testable (Rongjian Zhang) [#&#8203;38563](https://github.com/nodejs/node/pull/38563) - \[[`f5b2115b76`](https://github.com/nodejs/node/commit/f5b2115b76)] - **dgram**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36286](https://github.com/nodejs/node/pull/36286) - \[[`cd7cf0547a`](https://github.com/nodejs/node/commit/cd7cf0547a)] - **dns**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36314](https://github.com/nodejs/node/pull/36314) - \[[`9f67c0852c`](https://github.com/nodejs/node/commit/9f67c0852c)] - **doc**: cleanup events.md structure (James M Snell) [#&#8203;36100](https://github.com/nodejs/node/pull/36100) - \[[`41cfe645c0`](https://github.com/nodejs/node/commit/41cfe645c0)] - **doc**: fix JS flavor selection (Antoine du Hamel) [#&#8203;37791](https://github.com/nodejs/node/pull/37791) - \[[`7c4748b0dc`](https://github.com/nodejs/node/commit/7c4748b0dc)] - **doc**: use `HEAD` instead of `master` for links (Antoine du Hamel) [#&#8203;38518](https://github.com/nodejs/node/pull/38518) - \[[`26426577ff`](https://github.com/nodejs/node/commit/26426577ff)] - **doc**: remove import.meta.resolve parent URL type (Kevin Locke) [#&#8203;38585](https://github.com/nodejs/node/pull/38585) - \[[`88055abf19`](https://github.com/nodejs/node/commit/88055abf19)] - **doc**: document buffer.kStringMaxLength (Tobias Nießen) [#&#8203;38688](https://github.com/nodejs/node/pull/38688) - \[[`2e8dfee165`](https://github.com/nodejs/node/commit/2e8dfee165)] - **doc**: clarify synchronous blocking of Worker stdio (James M Snell) [#&#8203;38658](https://github.com/nodejs/node/pull/38658) - \[[`212cd5cf05`](https://github.com/nodejs/node/commit/212cd5cf05)] - **doc**: update contact info (Gabriel Schulhof) [#&#8203;38689](https://github.com/nodejs/node/pull/38689) - \[[`fa35c0662b`](https://github.com/nodejs/node/commit/fa35c0662b)] - **doc**: change color of doctag on night mode (Qingyu Deng) [#&#8203;38652](https://github.com/nodejs/node/pull/38652) - \[[`4c67437c53`](https://github.com/nodejs/node/commit/4c67437c53)] - **doc**: clarify DiffieHellmanGroup class docs (Nitzan Uziely) [#&#8203;38363](https://github.com/nodejs/node/pull/38363) - \[[`e90c60b1e3`](https://github.com/nodejs/node/commit/e90c60b1e3)] - **doc**: use AIX instead of Aix in fs.md (Rich Trott) [#&#8203;38535](https://github.com/nodejs/node/pull/38535) - \[[`dc67fec1b4`](https://github.com/nodejs/node/commit/dc67fec1b4)] - **doc**: remove extraneous dash from flag prefix (Rodolfo Carvalho) [#&#8203;38532](https://github.com/nodejs/node/pull/38532) - \[[`4c54d81a59`](https://github.com/nodejs/node/commit/4c54d81a59)] - **doc**: document `'secureConnect'` event limitation (James M Snell) [#&#8203;38447](https://github.com/nodejs/node/pull/38447) - \[[`839e8d1672`](https://github.com/nodejs/node/commit/839e8d1672)] - **doc**: mark querystring api as legacy (James M Snell) [#&#8203;38436](https://github.com/nodejs/node/pull/38436) - \[[`a75b7af9bd`](https://github.com/nodejs/node/commit/a75b7af9bd)] - **doc**: add arguments for stream event of Http2Server and Http2SecureServer (Qingyu Deng) [#&#8203;37892](https://github.com/nodejs/node/pull/37892) - \[[`cf0007edc4`](https://github.com/nodejs/node/commit/cf0007edc4)] - **doc**: indicate that abort tests do not generate core files (Rich Trott) [#&#8203;38422](https://github.com/nodejs/node/pull/38422) - \[[`945450b5cf`](https://github.com/nodejs/node/commit/945450b5cf)] - **doc**: add try/catch in http2 respondWithFile example (Matteo Collina) [#&#8203;38410](https://github.com/nodejs/node/pull/38410) - \[[`1f7cd7148a`](https://github.com/nodejs/node/commit/1f7cd7148a)] - **doc**: note the system requirements for V8 tests (DeeDeeG) [#&#8203;38319](https://github.com/nodejs/node/pull/38319) - \[[`cd54834854`](https://github.com/nodejs/node/commit/cd54834854)] - **doc**: minor clarification to pathObject (James M Snell) [#&#8203;38437](https://github.com/nodejs/node/pull/38437) - \[[`ba117c2c6f`](https://github.com/nodejs/node/commit/ba117c2c6f)] - **doc**: document new TCP_KEEPCNT and TCP_KEEPINTVL socket option defaults (Arnold Zokas) [#&#8203;38313](https://github.com/nodejs/node/pull/38313) - \[[`dcdbaffced`](https://github.com/nodejs/node/commit/dcdbaffced)] - **doc**: do not mention TCP in the allowHalfOpen option description (Luigi Pinca) [#&#8203;38360](https://github.com/nodejs/node/pull/38360) - \[[`fe8003e5de`](https://github.com/nodejs/node/commit/fe8003e5de)] - **doc**: update message to match actual output (Rich Trott) [#&#8203;35271](https://github.com/nodejs/node/pull/35271) - \[[`c03f23e126`](https://github.com/nodejs/node/commit/c03f23e126)] - **doc**: request default snap track be updated for LTS (Rod Vagg) [#&#8203;37708](https://github.com/nodejs/node/pull/37708) - \[[`a9f7aeed12`](https://github.com/nodejs/node/commit/a9f7aeed12)] - **doc**: mark `process.hrtime()` as legacy (Antoine du Hamel) [#&#8203;38371](https://github.com/nodejs/node/pull/38371) - \[[`cede0c57b8`](https://github.com/nodejs/node/commit/cede0c57b8)] - **doc**: fix version history for `"exports"` patterns (Antoine du Hamel) [#&#8203;38355](https://github.com/nodejs/node/pull/38355) - \[[`9702f22397`](https://github.com/nodejs/node/commit/9702f22397)] - **doc**: fix `package.json` `"imports"` field history (Antoine du Hamel) [#&#8203;38356](https://github.com/nodejs/node/pull/38356) - \[[`2d96da875e`](https://github.com/nodejs/node/commit/2d96da875e)] - **doc**: fix typo in buffer.md (divlo) [#&#8203;38323](https://github.com/nodejs/node/pull/38323) - \[[`6b58f28472`](https://github.com/nodejs/node/commit/6b58f28472)] - **doc**: add nodejs-sec email template (Daniel Bevenius) [#&#8203;38290](https://github.com/nodejs/node/pull/38290) - \[[`5a532e4725`](https://github.com/nodejs/node/commit/5a532e4725)] - **doc**: update TSC members list with three new members (Rich Trott) [#&#8203;38352](https://github.com/nodejs/node/pull/38352) - \[[`e994d6a27c`](https://github.com/nodejs/node/commit/e994d6a27c)] - **doc**: use `foo.prototype.bar` notation in buffer.md (Voltrex) [#&#8203;38032](https://github.com/nodejs/node/pull/38032) - \[[`c61f363d66`](https://github.com/nodejs/node/commit/c61f363d66)] - **doc**: internal/test/binding for testing (Bradley Meck) [#&#8203;38026](https://github.com/nodejs/node/pull/38026) - \[[`0bb6fe31b3`](https://github.com/nodejs/node/commit/0bb6fe31b3)] - **doc**: add missing events.on metadata (Anna Henningsen) [#&#8203;37965](https://github.com/nodejs/node/pull/37965) - \[[`30c82b2745`](https://github.com/nodejs/node/commit/30c82b2745)] - **doc**: fix wording in outgoingMessage.write (Tobias Nießen) [#&#8203;37894](https://github.com/nodejs/node/pull/37894) - \[[`932000020a`](https://github.com/nodejs/node/commit/932000020a)] - **doc**: fix grammar errors in http document (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265) - \[[`19e8ae44c4`](https://github.com/nodejs/node/commit/19e8ae44c4)] - **doc**: add document for http.OutgoingMessage (Qingyu Deng) [#&#8203;37265](https://github.com/nodejs/node/pull/37265) - \[[`a6c123363d`](https://github.com/nodejs/node/commit/a6c123363d)] - **doc**: remove generated from dsaEncoding description (Marko Kaznovac) [#&#8203;37459](https://github.com/nodejs/node/pull/37459) - \[[`bc6ea63e48`](https://github.com/nodejs/node/commit/bc6ea63e48)] - **doc**: document how to register external bindings for snapshot (Joyee Cheung) [#&#8203;37463](https://github.com/nodejs/node/pull/37463) - \[[`2168e954aa`](https://github.com/nodejs/node/commit/2168e954aa)] - **doc**: document the NO_COLOR and FORCE_COLOR env vars (James M Snell) [#&#8203;37477](https://github.com/nodejs/node/pull/37477) - \[[`2907848fc9`](https://github.com/nodejs/node/commit/2907848fc9)] - **doc**: clarify event.isTrusted text (Rich Trott) [#&#8203;36827](https://github.com/nodejs/node/pull/36827) - \[[`7efa020892`](https://github.com/nodejs/node/commit/7efa020892)] - **doc**: expand openssl instructions (Michael Dawson) [#&#8203;36554](https://github.com/nodejs/node/pull/36554) - \[[`b197a44152`](https://github.com/nodejs/node/commit/b197a44152)] - **doc**: document ABORT_ERR code (Benjamin Gruenbaum) [#&#8203;36319](https://github.com/nodejs/node/pull/36319) - \[[`1d80f89442`](https://github.com/nodejs/node/commit/1d80f89442)] - **doc**: document changes for `*/promises` alias modules (ExE Boss) [#&#8203;34002](https://github.com/nodejs/node/pull/34002) - \[[`9417fd0bc8`](https://github.com/nodejs/node/commit/9417fd0bc8)] - **errors**: align source-map stacks with spec (Benjamin Coe) [#&#8203;37252](https://github.com/nodejs/node/pull/37252) - \[[`dcd221ce69`](https://github.com/nodejs/node/commit/dcd221ce69)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36651](https://github.com/nodejs/node/pull/36651) - \[[`ee444473e9`](https://github.com/nodejs/node/commit/ee444473e9)] - **errors**: display original symbol name (Benjamin Coe) [#&#8203;36042](https://github.com/nodejs/node/pull/36042) - \[[`83d28374d6`](https://github.com/nodejs/node/commit/83d28374d6)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36167](https://github.com/nodejs/node/pull/36167) - \[[`7d7e34c15a`](https://github.com/nodejs/node/commit/7d7e34c15a)] - **errors**: refactor to use more primordials (Antoine du Hamel) [#&#8203;35944](https://github.com/nodejs/node/pull/35944) - \[[`18e5c0f3e2`](https://github.com/nodejs/node/commit/18e5c0f3e2)] - **events**: refactor to use optional chaining (ZiJian Liu) [#&#8203;36763](https://github.com/nodejs/node/pull/36763) - \[[`4fdcbae583`](https://github.com/nodejs/node/commit/4fdcbae583)] - **events**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36304](https://github.com/nodejs/node/pull/36304) - \[[`c4e7dca8f3`](https://github.com/nodejs/node/commit/c4e7dca8f3)] - **fs**: fix error when writing buffers > INT32\_MAX (Zach Bjornson) [#&#8203;38546](https://github.com/nodejs/node/pull/38546) - \[[`07c55d2844`](https://github.com/nodejs/node/commit/07c55d2844)] - ***Revert*** "**http**: make HEAD method to work with keep-alive" (Michaël Zasso) [#&#8203;38949](https://github.com/nodejs/node/pull/38949) - \[[`d8da265c81`](https://github.com/nodejs/node/commit/d8da265c81)] - **http2**: treat non-EOF empty frames like other invalid frames (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875) - \[[`c3bd0fdb73`](https://github.com/nodejs/node/commit/c3bd0fdb73)] - **http2**: fix setting options before handle exists (Anna Henningsen) [#&#8203;37875](https://github.com/nodejs/node/pull/37875) - \[[`74fe1d8f0c`](https://github.com/nodejs/node/commit/74fe1d8f0c)] - **http2**: add support for TypedArray to getUnpackedSettings (Antoine du Hamel) [#&#8203;36141](https://github.com/nodejs/node/pull/36141) - \[[`c90f1dbeb3`](https://github.com/nodejs/node/commit/c90f1dbeb3)] - **https**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36195](https://github.com/nodejs/node/pull/36195) - \[[`8258799472`](https://github.com/nodejs/node/commit/8258799472)] - **inspector**: remove redundant method for connection check (Yash Ladha) [#&#8203;37986](https://github.com/nodejs/node/pull/37986) - \[[`ba19313e1e`](https://github.com/nodejs/node/commit/ba19313e1e)] - **inspector**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36356](https://github.com/nodejs/node/pull/36356) - \[[`eb8f7ee634`](https://github.com/nodejs/node/commit/eb8f7ee634)] - **lib**: revert primordials in a hot path (Antoine du Hamel) [#&#8203;38248](https://github.com/nodejs/node/pull/38248) - \[[`cea8b4265c`](https://github.com/nodejs/node/commit/cea8b4265c)] - **lib**: make `IterableWeakMap` safe to iterate (Antoine du Hamel) [#&#8203;38523](https://github.com/nodejs/node/pull/38523) - \[[`490bc58229`](https://github.com/nodejs/node/commit/490bc58229)] - **lib**: fix and improve os typings (Akhil Marsonya) [#&#8203;38316](https://github.com/nodejs/node/pull/38316) - \[[`af39df6d03`](https://github.com/nodejs/node/commit/af39df6d03)] - **lib**: add URI handling functions to primordials (Antoine du Hamel) [#&#8203;37394](https://github.com/nodejs/node/pull/37394) - \[[`16691be80e`](https://github.com/nodejs/node/commit/16691be80e)] - **lib**: fix WebIDL `object` and dictionary type conversion (ExE Boss) [#&#8203;37047](https://github.com/nodejs/node/pull/37047) - \[[`47ed512312`](https://github.com/nodejs/node/commit/47ed512312)] - **lib**: refactor to use optional chaining in internal/options.js (raisinten) [#&#8203;36939](https://github.com/nodejs/node/pull/36939) - \[[`346fc0ac21`](https://github.com/nodejs/node/commit/346fc0ac21)] - **lib**: support returning Safe collections from C++ (ExE Boss) [#&#8203;36989](https://github.com/nodejs/node/pull/36989) - \[[`8912caba64`](https://github.com/nodejs/node/commit/8912caba64)] - **lib**: expose primordials object (Antoine du Hamel) [#&#8203;36872](https://github.com/nodejs/node/pull/36872) - \[[`46c019b988`](https://github.com/nodejs/node/commit/46c019b988)] - **lib**: refactor source_map to use more primordials (Antoine du Hamel) [#&#8203;36733](https://github.com/nodejs/node/pull/36733) - \[[`cf9556d8f7`](https://github.com/nodejs/node/commit/cf9556d8f7)] - **lib**: refactor source_map to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36734](https://github.com/nodejs/node/pull/36734) - \[[`6eaf357f49`](https://github.com/nodejs/node/commit/6eaf357f49)] - **lib**: simplify `primordials.uncurryThis` (ExE Boss) [#&#8203;36866](https://github.com/nodejs/node/pull/36866) - \[[`9338759b01`](https://github.com/nodejs/node/commit/9338759b01)] - **lib**: remove v8\_prof_polyfill from eslint ignore list (Antoine du Hamel) [#&#8203;36537](https://github.com/nodejs/node/pull/36537) - \[[`c9861a344a`](https://github.com/nodejs/node/commit/c9861a344a)] - **lib**: remove unused code (Brian White) [#&#8203;36632](https://github.com/nodejs/node/pull/36632) - \[[`01a71dd393`](https://github.com/nodejs/node/commit/01a71dd393)] - **lib**: refactor to use more primordials in internal/encoding.js (raisinten) [#&#8203;36480](https://github.com/nodejs/node/pull/36480) - \[[`e6c0877604`](https://github.com/nodejs/node/commit/e6c0877604)] - **lib**: refactor to use primordials in internal/priority_queue.js (ZiJian Liu) [#&#8203;36560](https://github.com/nodejs/node/pull/36560) - \[[`6e3a2ffb98`](https://github.com/nodejs/node/commit/6e3a2ffb98)] - **lib**: add primordials.SafeStringIterator (Antoine du Hamel) [#&#8203;36526](https://github.com/nodejs/node/pull/36526) - \[[`bf0738bc07`](https://github.com/nodejs/node/commit/bf0738bc07)] - **lib**: make safe primordials safe to construct (Antoine du Hamel) [#&#8203;36428](https://github.com/nodejs/node/pull/36428) - \[[`7ebc18f293`](https://github.com/nodejs/node/commit/7ebc18f293)] - **lib**: make safe primordials safe to iterate (Antoine du Hamel) [#&#8203;36391](https://github.com/nodejs/node/pull/36391) - \[[`e12dbc8519`](https://github.com/nodejs/node/commit/e12dbc8519)] - **lib**: refactor to use more primordials in internal/histogram.js (raisinten) [#&#8203;36455](https://github.com/nodejs/node/pull/36455) - \[[`5daeac64a4`](https://github.com/nodejs/node/commit/5daeac64a4)] - **lib**: add uncurried accessor properties to `primordials` (ExE Boss) [#&#8203;36329](https://github.com/nodejs/node/pull/36329) - \[[`bb4900d9eb`](https://github.com/nodejs/node/commit/bb4900d9eb)] - **lib**: refactor primordials.uncurryThis (Antoine du Hamel) [#&#8203;36221](https://github.com/nodejs/node/pull/36221) - \[[`0fbe945ebb`](https://github.com/nodejs/node/commit/0fbe945ebb)] - **lib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36140](https://github.com/nodejs/node/pull/36140) - \[[`24d4d63308`](https://github.com/nodejs/node/commit/24d4d63308)] - **lib**: add %TypedArray% abstract constructor to primordials (ExE Boss) [#&#8203;36016](https://github.com/nodejs/node/pull/36016) - \[[`e2395b0f3b`](https://github.com/nodejs/node/commit/e2395b0f3b)] - **lib**: use Object static properties from primordials (Michaël Zasso) [#&#8203;35380](https://github.com/nodejs/node/pull/35380) - \[[`b3e22e1612`](https://github.com/nodejs/node/commit/b3e22e1612)] - **lib,tools**: enforce access to prototype from primordials (Antoine du Hamel) [#&#8203;36025](https://github.com/nodejs/node/pull/36025) - \[[`e94e0b488e`](https://github.com/nodejs/node/commit/e94e0b488e)] - **meta**: add v8 team (Jiawen Geng) [#&#8203;38566](https://github.com/nodejs/node/pull/38566) - \[[`fcc6a00f1a`](https://github.com/nodejs/node/commit/fcc6a00f1a)] - **meta**: post comment when pr labeled fast-track (James M Snell) [#&#8203;38446](https://github.com/nodejs/node/pull/38446) - \[[`bd0d9647ca`](https://github.com/nodejs/node/commit/bd0d9647ca)] - **module**: clarify CJS global-like variables not defined error message (Antoine du Hamel) [#&#8203;37852](https://github.com/nodejs/node/pull/37852) - \[[`0fdb5d59f7`](https://github.com/nodejs/node/commit/0fdb5d59f7)] - **module**: refactor NativeModule to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37656](https://github.com/nodejs/node/pull/37656) - \[[`77c7d979b6`](https://github.com/nodejs/node/commit/77c7d979b6)] - **module**: simplify tryStatSync with throwIfNoEntry option (Antoine du Hamel) [#&#8203;36971](https://github.com/nodejs/node/pull/36971) - \[[`1aae572220`](https://github.com/nodejs/node/commit/1aae572220)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36348](https://github.com/nodejs/node/pull/36348) - \[[`9e7f166161`](https://github.com/nodejs/node/commit/9e7f166161)] - **module**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36024](https://github.com/nodejs/node/pull/36024) - \[[`eee1d291cf`](https://github.com/nodejs/node/commit/eee1d291cf)] - **module**: refactor to use iterable-weak-map (Benjamin Coe) [#&#8203;35915](https://github.com/nodejs/node/pull/35915) - \[[`52cbe89f7f`](https://github.com/nodejs/node/commit/52cbe89f7f)] - **net**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36303](https://github.com/nodejs/node/pull/36303) - \[[`779ad54078`](https://github.com/nodejs/node/commit/779ad54078)] - **node-api**: faster threadsafe_function (Fedor Indutny) [#&#8203;38506](https://github.com/nodejs/node/pull/38506) - \[[`5995221ced`](https://github.com/nodejs/node/commit/5995221ced)] - **node-api**: fix shutdown crashes (Michael Dawson) [#&#8203;38492](https://github.com/nodejs/node/pull/38492) - \[[`d8acec4cb1`](https://github.com/nodejs/node/commit/d8acec4cb1)] - **node-api**: make reference weak parameter an indirect link to references (Chengzhong Wu) [#&#8203;38000](https://github.com/nodejs/node/pull/38000) - \[[`c442d89ad6`](https://github.com/nodejs/node/commit/c442d89ad6)] - **os**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36284](https://github.com/nodejs/node/pull/36284) - \[[`daeb6fcd78`](https://github.com/nodejs/node/commit/daeb6fcd78)] - **path**: inline conditions (Voltrex) [#&#8203;38613](https://github.com/nodejs/node/pull/38613) - \[[`e2f531f646`](https://github.com/nodejs/node/commit/e2f531f646)] - **path**: refactor to use more primordials (Akhil Marsonya) [#&#8203;37893](https://github.com/nodejs/node/pull/37893) - \[[`c1364d15a2`](https://github.com/nodejs/node/commit/c1364d15a2)] - **path**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36302](https://github.com/nodejs/node/pull/36302) - \[[`726ef40fcb`](https://github.com/nodejs/node/commit/726ef40fcb)] - **perf_hooks**: throw ERR_INVALID_ARG_VALUE if histogram.percentile param is NaN (ZiJian Liu) [#&#8203;36937](https://github.com/nodejs/node/pull/36937) - \[[`4686f4f41b`](https://github.com/nodejs/node/commit/4686f4f41b)] - **perf_hooks**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36723](https://github.com/nodejs/node/pull/36723) - \[[`6adec6351e`](https://github.com/nodejs/node/commit/6adec6351e)] - **perf_hooks**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36297](https://github.com/nodejs/node/pull/36297) - \[[`bf9aa425c0`](https://github.com/nodejs/node/commit/bf9aa425c0)] - **policy**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36210](https://github.com/nodejs/node/pull/36210) - \[[`0f6c3f76b3`](https://github.com/nodejs/node/commit/0f6c3f76b3)] - **querystring**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36315](https://github.com/nodejs/node/pull/36315) - \[[`b5b8a996f3`](https://github.com/nodejs/node/commit/b5b8a996f3)] - **readline**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36296](https://github.com/nodejs/node/pull/36296) - \[[`cd981808b4`](https://github.com/nodejs/node/commit/cd981808b4)] - **repl**: document top level await limitation with const/let (James M Snell) [#&#8203;38449](https://github.com/nodejs/node/pull/38449) - \[[`a4eb5571eb`](https://github.com/nodejs/node/commit/a4eb5571eb)] - **repl**: display prompt once after error callback (Anna Henningsen) [#&#8203;38314](https://github.com/nodejs/node/pull/38314) - \[[`163fcecb69`](https://github.com/nodejs/node/commit/163fcecb69)] - **src**: fix multiple AddLinkedBinding() calls (Anna Henningsen) [#&#8203;39012](https://github.com/nodejs/node/pull/39012) - \[[`8809ef98f9`](https://github.com/nodejs/node/commit/8809ef98f9)] - **src**: update cares_wrap OpenBSD defines (Anna Henningsen) [#&#8203;38670](https://github.com/nodejs/node/pull/38670) - \[[`d66f88ce97`](https://github.com/nodejs/node/commit/d66f88ce97)] - **src**: remove extra semi after member fn (Shelley Vohr) [#&#8203;38686](https://github.com/nodejs/node/pull/38686) - \[[`bc2111c7e6`](https://github.com/nodejs/node/commit/bc2111c7e6)] - **src**: make workers messaging more resilient (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510) - \[[`378e0e778b`](https://github.com/nodejs/node/commit/378e0e778b)] - **src**: fix validation of negative offset to avoid abort (James M Snell) [#&#8203;38421](https://github.com/nodejs/node/pull/38421) - \[[`c170026b7b`](https://github.com/nodejs/node/commit/c170026b7b)] - **src**: use %progbits instead of [@&#8203;progbits](https://github.com/progbits) (Stephen Gallagher) [#&#8203;38312](https://github.com/nodejs/node/pull/38312) - \[[`d177541b0e`](https://github.com/nodejs/node/commit/d177541b0e)] - **src**: fix setting Converter sub char length (James M Snell) [#&#8203;38331](https://github.com/nodejs/node/pull/38331) - \[[`e279b029c0`](https://github.com/nodejs/node/commit/e279b029c0)] - **src**: avoid deferred gc/cleanup for Buffer.from (James M Snell) [#&#8203;38337](https://github.com/nodejs/node/pull/38337) - \[[`006c7b78da`](https://github.com/nodejs/node/commit/006c7b78da)] - **src**: indent long help text properly (David Glasser) [#&#8203;37911](https://github.com/nodejs/node/pull/37911) - \[[`f5541ddea3`](https://github.com/nodejs/node/commit/f5541ddea3)] - **src**: fix ETW_WRITE_EMPTY_EVENT macro (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334) - \[[`6b1052d034`](https://github.com/nodejs/node/commit/6b1052d034)] - **src**: disable unfixable MSVC warnings (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334) - \[[`38afa3fa79`](https://github.com/nodejs/node/commit/38afa3fa79)] - **src**: avoid implicit type conversions (take 2) (Michaël Zasso) [#&#8203;37334](https://github.com/nodejs/node/pull/37334) - \[[`8a60ae2161`](https://github.com/nodejs/node/commit/8a60ae2161)] - **src**: fix compiler warnings in node_buffer.cc (Darshan Sen) [#&#8203;38722](https://github.com/nodejs/node/pull/38722) - \[[`78cde14c45`](https://github.com/nodejs/node/commit/78cde14c45)] - **src**: fix compiler warning in env.cc (Anna Henningsen) [#&#8203;35547](https://github.com/nodejs/node/pull/35547) - \[[`ea311a41cc`](https://github.com/nodejs/node/commit/ea311a41cc)] - **src**: add check against non-weak BaseObjects at process exit (Anna Henningsen) [#&#8203;35490](https://github.com/nodejs/node/pull/35490) - \[[`a1b4681efc`](https://github.com/nodejs/node/commit/a1b4681efc)] - **src**: use transferred consistently (Daniel Bevenius) [#&#8203;36340](https://github.com/nodejs/node/pull/36340) - \[[`29c623e5cb`](https://github.com/nodejs/node/commit/29c623e5cb)] - **src**: fix label indentation (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213) - \[[`dbb0d2612c`](https://github.com/nodejs/node/commit/dbb0d2612c)] - **stream**: fix multiple Writable.destroy() calls (Robert Nagy) [#&#8203;38221](https://github.com/nodejs/node/pull/38221) - \[[`a18b1ff80b`](https://github.com/nodejs/node/commit/a18b1ff80b)] - **stream**: the position of \_read() is wrong (helloyou2012) [#&#8203;38292](https://github.com/nodejs/node/pull/38292) - \[[`ab130e929a`](https://github.com/nodejs/node/commit/ab130e929a)] - **stream**: only use legacy close listeners if not willEmitClose (Robert Nagy) [#&#8203;36649](https://github.com/nodejs/node/pull/36649) - \[[`c31e2f6b0f`](https://github.com/nodejs/node/commit/c31e2f6b0f)] - **stream**: fix legacy pipe error handling (Robert Nagy) [#&#8203;35257](https://github.com/nodejs/node/pull/35257) - \[[`1dc4dea215`](https://github.com/nodejs/node/commit/1dc4dea215)] - **string_decoder**: throw ERR_STRING_TOO_LONG for UTF-8 (Michaël Zasso) [#&#8203;36661](https://github.com/nodejs/node/pull/36661) - \[[`0db9101922`](https://github.com/nodejs/node/commit/0db9101922)] - **string_decoder**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36358](https://github.com/nodejs/node/pull/36358) - \[[`8a44ee478e`](https://github.com/nodejs/node/commit/8a44ee478e)] - **test**: improve coverage of lib/\_http_client.js (Rongjian Zhang) [#&#8203;38599](https://github.com/nodejs/node/pull/38599) - \[[`8a45b85dbd`](https://github.com/nodejs/node/commit/8a45b85dbd)] - **test**: improve coverage of lib/os.js (Rongjian Zhang) [#&#8203;38653](https://github.com/nodejs/node/pull/38653) - \[[`d7c6a3eb03`](https://github.com/nodejs/node/commit/d7c6a3eb03)] - **test**: call functions internally (Voltrex) [#&#8203;38560](https://github.com/nodejs/node/pull/38560) - \[[`726cb48bd8`](https://github.com/nodejs/node/commit/726cb48bd8)] - **test**: complete coverage of querystring (Rongjian Zhang) [#&#8203;38520](https://github.com/nodejs/node/pull/38520) - \[[`4f1ba79eb8`](https://github.com/nodejs/node/commit/4f1ba79eb8)] - **test**: increase coverage for AbortController (ZiJian Liu) [#&#8203;38514](https://github.com/nodejs/node/pull/38514) - \[[`d98b355336`](https://github.com/nodejs/node/commit/d98b355336)] - **test**: run message and pseudo-tty tests in parallel (Richard Lau) [#&#8203;38502](https://github.com/nodejs/node/pull/38502) - \[[`7938af6565`](https://github.com/nodejs/node/commit/7938af6565)] - **test**: move test-net-connect-econnrefused from pummel to sequential (Rich Trott) [#&#8203;38462](https://github.com/nodejs/node/pull/38462) - \[[`52f3837518`](https://github.com/nodejs/node/commit/52f3837518)] - **test**: fix `common.mustCall` `length` and `name` properties (Antoine du Hamel) [#&#8203;38464](https://github.com/nodejs/node/pull/38464) - \[[`fdfb39e692`](https://github.com/nodejs/node/commit/fdfb39e692)] - **test**: address deprecation warning (Rich Trott) [#&#8203;38448](https://github.com/nodejs/node/pull/38448) - \[[`25e5afe3be`](https://github.com/nodejs/node/commit/25e5afe3be)] - **test**: move abort test from pummel to abort directory (Rich Trott) [#&#8203;38396](https://github.com/nodejs/node/pull/38396) - \[[`296b969e0a`](https://github.com/nodejs/node/commit/296b969e0a)] - **test**: skip some pummel tests on slower machines (Rich Trott) [#&#8203;38394](https://github.com/nodejs/node/pull/38394) - \[[`a9ff9c0918`](https://github.com/nodejs/node/commit/a9ff9c0918)] - **test**: add ancestor package.json checks for tmpdir (Richard Lau) [#&#8203;38285](https://github.com/nodejs/node/pull/38285) - \[[`c9ce98c377`](https://github.com/nodejs/node/commit/c9ce98c377)] - **test**: replace function with arrow function and remove unused argument (Andres) [#&#8203;38235](https://github.com/nodejs/node/pull/38235) - \[[`c77abf5a89`](https://github.com/nodejs/node/commit/c77abf5a89)] - **test**: use .test domain for not found address (Richard Lau) [#&#8203;38286](https://github.com/nodejs/node/pull/38286) - \[[`d9eb8b3ed0`](https://github.com/nodejs/node/commit/d9eb8b3ed0)] - **test**: increase fs promise coverage (Emil Sivervik) [#&#8203;36813](https://github.com/nodejs/node/pull/36813) - \[[`d85b70fffa`](https://github.com/nodejs/node/commit/d85b70fffa)] - **test**: increase timeout on ASAN Action (Antoine du Hamel) [#&#8203;37007](https://github.com/nodejs/node/pull/37007) - \[[`836fba52ea`](https://github.com/nodejs/node/commit/836fba52ea)] - **test**: improve coverage of `SourceTextModule` getters (Juan José Arboleda) [#&#8203;37013](https://github.com/nodejs/node/pull/37013) - \[[`f43fc6b6cc`](https://github.com/nodejs/node/commit/f43fc6b6cc)] - **test**: improve coverage for `Module` getters (Juan José Arboleda) [#&#8203;36950](https://github.com/nodejs/node/pull/36950) - \[[`a45d280c18`](https://github.com/nodejs/node/commit/a45d280c18)] - **test**: improve coverage on worker threads (Juan José Arboleda) [#&#8203;36910](https://github.com/nodejs/node/pull/36910) - \[[`ec4d79e259`](https://github.com/nodejs/node/commit/ec4d79e259)] - **test**: improve coverage at `lib/internal/vm/module.js` (Juan José Arboleda) [#&#8203;36898](https://github.com/nodejs/node/pull/36898) - \[[`c34de75687`](https://github.com/nodejs/node/commit/c34de75687)] - **test**: guard large string decoder allocation (Michaël Zasso) [#&#8203;36795](https://github.com/nodejs/node/pull/36795) - \[[`3215a58843`](https://github.com/nodejs/node/commit/3215a58843)] - **test**: add already-aborted-controller test for spawn() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`c3b116795b`](https://github.com/nodejs/node/commit/c3b116795b)] - **test**: add test for reused AbortController with execfile() (Rich Trott) [#&#8203;36644](https://github.com/nodejs/node/pull/36644) - \[[`219ed0ba4c`](https://github.com/nodejs/node/commit/219ed0ba4c)] - **test**: add Actions annotation output (Mary Marchini) [#&#8203;34590](https://github.com/nodejs/node/pull/34590) - \[[`89ee6abae0`](https://github.com/nodejs/node/commit/89ee6abae0)] - **test**: use `.then(common.mustCall())` for all async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363) - \[[`294b3e60a5`](https://github.com/nodejs/node/commit/294b3e60a5)] - **test,doc,lib**: adjust object literal newlines for lint rule (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040) - \[[`bfe02b8808`](https://github.com/nodejs/node/commit/bfe02b8808)] - **test,readline**: improve tab completion coverage (Antoine du Hamel) [#&#8203;38465](https://github.com/nodejs/node/pull/38465) - \[[`1dc7fd238c`](https://github.com/nodejs/node/commit/1dc7fd238c)] - **timers**: fix unsafe array iteration (Darshan Sen) [#&#8203;37223](https://github.com/nodejs/node/pull/37223) - \[[`679973866d`](https://github.com/nodejs/node/commit/679973866d)] - **timers**: reject with AbortError on cancellation (Benjamin Gruenbaum) [#&#8203;36317](https://github.com/nodejs/node/pull/36317) - \[[`dec3610a31`](https://github.com/nodejs/node/commit/dec3610a31)] - **timers**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36132](https://github.com/nodejs/node/pull/36132) - \[[`d84b05a619`](https://github.com/nodejs/node/commit/d84b05a619)] - **timers**: cleanup abort listener on awaitable timers (James M Snell) [#&#8203;36006](https://github.com/nodejs/node/pull/36006) - \[[`f6e4dbb779`](https://github.com/nodejs/node/commit/f6e4dbb779)] - **tls**: validate ticket keys buffer (Antoine du Hamel) [#&#8203;38308](https://github.com/nodejs/node/pull/38308) - \[[`661e9809bd`](https://github.com/nodejs/node/commit/661e9809bd)] - **tls**: fix session and keylog add listener segfault (Nitzan Uziely) [#&#8203;38180](https://github.com/nodejs/node/pull/38180) - \[[`de44e90523`](https://github.com/nodejs/node/commit/de44e90523)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324) - \[[`37bc7d5945`](https://github.com/nodejs/node/commit/37bc7d5945)] - **tools**: bump cpplint to 1.5.4 (Rich Trott) [#&#8203;36324](https://github.com/nodejs/node/pull/36324) - \[[`84e918858e`](https://github.com/nodejs/node/commit/84e918858e)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235) - \[[`fb2bb93f95`](https://github.com/nodejs/node/commit/fb2bb93f95)] - **tools**: bump cpplint to 1.5.3 (Rich Trott) [#&#8203;36235](https://github.com/nodejs/node/pull/36235) - \[[`3351910f97`](https://github.com/nodejs/node/commit/3351910f97)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213) - \[[`193b18effa`](https://github.com/nodejs/node/commit/193b18effa)] - **tools**: bump cpplint.py to 1.5.2 (Rich Trott) [#&#8203;36213](https://github.com/nodejs/node/pull/36213) - \[[`8a6c35d735`](https://github.com/nodejs/node/commit/8a6c35d735)] - **tools**: update ESLint to 7.27.0 (Luigi Pinca) [#&#8203;38764](https://github.com/nodejs/node/pull/38764) - \[[`f8753b6299`](https://github.com/nodejs/node/commit/f8753b6299)] - **tools**: update ESLint to 7.26.0 (Colin Ihrig) [#&#8203;38605](https://github.com/nodejs/node/pull/38605) - \[[`1098aec40b`](https://github.com/nodejs/node/commit/1098aec40b)] - **tools**: update ESLint to 7.25.0 (Colin Ihrig) [#&#8203;38378](https://github.com/nodejs/node/pull/38378) - \[[`3fbabfa94d`](https://github.com/nodejs/node/commit/3fbabfa94d)] - **tools**: update ESLint to 7.24.0 (Colin Ihrig) [#&#8203;38179](https://github.com/nodejs/node/pull/38179) - \[[`6ce779cd8b`](https://github.com/nodejs/node/commit/6ce779cd8b)] - **tools**: update ESLint to 7.23.0 (Luigi Pinca) [#&#8203;37979](https://github.com/nodejs/node/pull/37979) - \[[`77f88e7725`](https://github.com/nodejs/node/commit/77f88e7725)] - **tools**: update ESLint to 7.22.0 (Colin Ihrig) [#&#8203;37734](https://github.com/nodejs/node/pull/37734) - \[[`5de911eeaf`](https://github.com/nodejs/node/commit/5de911eeaf)] - **tools**: make update-eslint.sh work with npm@7 (Luigi Pinca) [#&#8203;37566](https://github.com/nodejs/node/pull/37566) - \[[`839976669f`](https://github.com/nodejs/node/commit/839976669f)] - **tools**: add support for mjs and cjs JS snippet linting (Antoine du Hamel) [#&#8203;37311](https://github.com/nodejs/node/pull/37311) - \[[`2463bd0689`](https://github.com/nodejs/node/commit/2463bd0689)] - **tools**: update eslint-plugin-markdown configuration (Colin Ihrig) [#&#8203;37549](https://github.com/nodejs/node/pull/37549) - \[[`f868fac455`](https://github.com/nodejs/node/commit/f868fac455)] - **tools**: enable object-curly-newline in ESLint rules (Rich Trott) [#&#8203;37040](https://github.com/nodejs/node/pull/37040) - \[[`d13508d219`](https://github.com/nodejs/node/commit/d13508d219)] - **tools**: make GH Actions workflows work if default branch is not master (Antoine du Hamel) [#&#8203;38516](https://github.com/nodejs/node/pull/38516) - \[[`7021c31d06`](https://github.com/nodejs/node/commit/7021c31d06)] - **tools**: use mktemp to create the workspace directory (Luigi Pinca) [#&#8203;38432](https://github.com/nodejs/node/pull/38432) - \[[`16a3e555ba`](https://github.com/nodejs/node/commit/16a3e555ba)] - **tools**: use a shallow clone of the npm/cli repository (Luigi Pinca) [#&#8203;38463](https://github.com/nodejs/node/pull/38463) - \[[`3484a23140`](https://github.com/nodejs/node/commit/3484a23140)] - **tools**: remove fixer for non-ascii-character ESLint custom rule (Rich Trott) [#&#8203;38413](https://github.com/nodejs/node/pull/38413) - \[[`aec4b295e4`](https://github.com/nodejs/node/commit/aec4b295e4)] - **tools**: fix doc generation when version info is not available (Antoine du Hamel) [#&#8203;38398](https://github.com/nodejs/node/pull/38398) - \[[`0172b110a3`](https://github.com/nodejs/node/commit/0172b110a3)] - **tools**: add \_depot_tools to PATH (for V8 tests) (DeeDeeG) [#&#8203;38299](https://github.com/nodejs/node/pull/38299) - \[[`d0eed18c87`](https://github.com/nodejs/node/commit/d0eed18c87)] - **tools**: fix type mismatch in test runner (Richard Lau) [#&#8203;38289](https://github.com/nodejs/node/pull/38289) - \[[`11ca018db9`](https://github.com/nodejs/node/commit/11ca018db9)] - **tools**: simplify eslint comma-dangle configuration (tools) (Rich Trott) [#&#8203;37883](https://github.com/nodejs/node/pull/37883) - \[[`f7c14e86a7`](https://github.com/nodejs/node/commit/f7c14e86a7)] - **tools**: simplify eslint comma-dangle configuration (Rich Trott) [#&#8203;37850](https://github.com/nodejs/node/pull/37850) - \[[`241e05795b`](https://github.com/nodejs/node/commit/241e05795b)] - **tools**: run doctool tests on GitHub Actions CI (Antoine du Hamel) [#&#8203;37398](https://github.com/nodejs/node/pull/37398) - \[[`a4dd50f8f9`](https://github.com/nodejs/node/commit/a4dd50f8f9)] - **tools**: refactor prefer-primordials (Antoine du Hamel) [#&#8203;36018](https://github.com/nodejs/node/pull/36018) - \[[`4af3906e72`](https://github.com/nodejs/node/commit/4af3906e72)] - **tools**: update ESLint to 7.21.0 (Luigi Pinca) [#&#8203;37546](https://github.com/nodejs/node/pull/37546) - \[[`955880de1a`](https://github.com/nodejs/node/commit/955880de1a)] - **tools**: update ESLint to 7.20.0 (Colin Ihrig) [#&#8203;37339](https://github.com/nodejs/node/pull/37339) - \[[`42c1f98a31`](https://github.com/nodejs/node/commit/42c1f98a31)] - **tools**: update ESLint to 7.19.0 (Colin Ihrig) [#&#8203;37159](https://github.com/nodejs/node/pull/37159) - \[[`25eb720b4d`](https://github.com/nodejs/node/commit/25eb720b4d)] - **tools**: update ESLint to 7.18.0 (Colin Ihrig) [#&#8203;36955](https://github.com/nodejs/node/pull/36955) - \[[`4983ef205e`](https://github.com/nodejs/node/commit/4983ef205e)] - **tools**: update gyp-next to v0.7.0 (Michaël Zasso) [#&#8203;36580](https://github.com/nodejs/node/pull/36580) - \[[`613378da1e`](https://github.com/nodejs/node/commit/613378da1e)] - **tools**: update ESLint to 7.17.0 (Colin Ihrig) [#&#8203;36726](https://github.com/nodejs/node/pull/36726) - \[[`e6d01f6545`](https://github.com/nodejs/node/commit/e6d01f6545)] - **tools**: update ESLint to 7.16.0 (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579) - \[[`98806da810`](https://github.com/nodejs/node/commit/98806da810)] - **tools**: enable no-unsafe-optional-chaining lint rule (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411) - \[[`7d411920f6`](https://github.com/nodejs/node/commit/7d411920f6)] - **tools**: update ESLint to 7.15.0 (Colin Ihrig) [#&#8203;36411](https://github.com/nodejs/node/pull/36411) - \[[`226a86c3b5`](https://github.com/nodejs/node/commit/226a86c3b5)] - **tools**: enable no-unused-expressions lint rule (Michaël Zasso) [#&#8203;36248](https://github.com/nodejs/node/pull/36248) - \[[`24a81c7d6c`](https://github.com/nodejs/node/commit/24a81c7d6c)] - **tools**: enable no-nonoctal-decimal-escape lint rule (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217) - \[[`19d4eb17b9`](https://github.com/nodejs/node/commit/19d4eb17b9)] - **tools**: update ESLint to 7.14.0 (Colin Ihrig) [#&#8203;36217](https://github.com/nodejs/node/pull/36217) - \[[`9fa8d2037f`](https://github.com/nodejs/node/commit/9fa8d2037f)] - **tools**: add linting rule for async IIFEs (Anna Henningsen) [#&#8203;34363](https://github.com/nodejs/node/pull/34363) - \[[`55fc206d13`](https://github.com/nodejs/node/commit/55fc206d13)] - **tools**: update ESLint to 7.13.0 (Luigi Pinca) [#&#8203;36031](https://github.com/nodejs/node/pull/36031) - \[[`937fc0a30c`](https://github.com/nodejs/node/commit/937fc0a30c)] - **tools**: update ESLint to 7.12.1 (Colin Ihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799) - \[[`29d0840a90`](https://github.com/nodejs/node/commit/29d0840a90)] - **tools**: update ESLint to 7.12.0 (Colin Ihrig) [#&#8203;35799](https://github.com/nodejs/node/pull/35799) - \[[`dcbd44758c`](https://github.com/nodejs/node/commit/dcbd44758c)] - **tools**: update ESLint to 7.11.0 (Colin Ihrig) [#&#8203;35578](https://github.com/nodejs/node/pull/35578) - \[[`c7751b4e69`](https://github.com/nodejs/node/commit/c7751b4e69)] - **tools**: add new ESLint rule: prefer-primordials (Leko) [#&#8203;35448](https://github.com/nodejs/node/pull/35448) - \[[`9a5411a2b4`](https://github.com/nodejs/node/commit/9a5411a2b4)] - **tools,doc**: add support for several flavors of JS code snippets (Antoine du Hamel) [#&#8203;37162](https://github.com/nodejs/node/pull/37162) - \[[`e19478aa76`](https://github.com/nodejs/node/commit/e19478aa76)] - **tools,lib**: recommend using safe primordials (Antoine du Hamel) [#&#8203;36026](https://github.com/nodejs/node/pull/36026) - \[[`5f848a612d`](https://github.com/nodejs/node/commit/5f848a612d)] - **tools,lib**: tighten prefer-primordials rules for Error statics (Antoine du Hamel) [#&#8203;36017](https://github.com/nodejs/node/pull/36017) - \[[`716076e389`](https://github.com/nodejs/node/commit/716076e389)] - **tty**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36771](https://github.com/nodejs/node/pull/36771) - \[[`41d74a4d9a`](https://github.com/nodejs/node/commit/41d74a4d9a)] - **tty**: refactor to use more primordials (Zijian Liu) [#&#8203;36272](https://github.com/nodejs/node/pull/36272) - \[[`e35a3543fd`](https://github.com/nodejs/node/commit/e35a3543fd)] - **typings**: add JSDoc typings for util (Rohit Gohri) [#&#8203;38213](https://github.com/nodejs/node/pull/38213) - \[[`c8b22185f7`](https://github.com/nodejs/node/commit/c8b22185f7)] - **url**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36316](https://github.com/nodejs/node/pull/36316) - \[[`e113035c9a`](https://github.com/nodejs/node/commit/e113035c9a)] - **util**: simplify constructor retrieval in inspect() (Rich Trott) [#&#8203;36466](https://github.com/nodejs/node/pull/36466) - \[[`1551b40d01`](https://github.com/nodejs/node/commit/1551b40d01)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36527](https://github.com/nodejs/node/pull/36527) - \[[`6c1bbb5caf`](https://github.com/nodejs/node/commit/6c1bbb5caf)] - **v8**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36285](https://github.com/nodejs/node/pull/36285) - \[[`3aee77d279`](https://github.com/nodejs/node/commit/3aee77d279)] - **vm**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36752](https://github.com/nodejs/node/pull/36752) - \[[`0dea86634d`](https://github.com/nodejs/node/commit/0dea86634d)] - **wasi**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36724](https://github.com/nodejs/node/pull/36724) - \[[`2c66305ac4`](https://github.com/nodejs/node/commit/2c66305ac4)] - ***Revert*** "**worker**: remove `ERR_CLOSED_MESSAGE_PORT`" (Juan José Arboleda) [#&#8203;38510](https://github.com/nodejs/node/pull/38510) - \[[`698bffaa90`](https://github.com/nodejs/node/commit/698bffaa90)] - **worker**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;37346](https://github.com/nodejs/node/pull/37346) - \[[`3d4785c174`](https://github.com/nodejs/node/commit/3d4785c174)] - **worker**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36267](https://github.com/nodejs/node/pull/36267) - \[[`8702b045a4`](https://github.com/nodejs/node/commit/8702b045a4)] - **zlib**: fix brotli flush range (Khaidi Chu) [#&#8203;38408](https://github.com/nodejs/node/pull/38408) - \[[`459fe6864e`](https://github.com/nodejs/node/commit/459fe6864e)] - **zlib**: refactor to avoid unsafe array iteration (Antoine du Hamel) [#&#8203;36722](https://github.com/nodejs/node/pull/36722) - \[[`740638de0f`](https://github.com/nodejs/node/commit/740638de0f)] - **zlib**: refactor to use primordial instead of \<string>.startsWith (Rohan Chougule) [#&#8203;36718](https://github.com/nodejs/node/pull/36718) - \[[`32e10f388c`](https://github.com/nodejs/node/commit/32e10f388c)] - **zlib**: refactor to use more primordials (Antoine du Hamel) [#&#8203;36347](https://github.com/nodejs/node/pull/36347) ### [`v14.17.0`](https://github.com/nodejs/node/releases/v14.17.0) [Compare Source](https://github.com/nodejs/node/compare/v14.16.1...v14.17.0) ##### Notable Changes ##### Diagnostics channel (experimental module) `diagnostics_channel` is a new experimental module that provides an API to create named channels to report arbitrary message data for diagnostics purposes. The module was initially introduced in Node.js v15.1.0 and is backported to v14.17.0 to enable testing it at a larger scale. With `diagnostics_channel`, Node.js core and module authors can publish contextual data about what they are doing at a given time. This could be the hostname and query string of a mysql query, for example. Just create a named channel with `dc.channel(name)` and call `channel.publish(data)` to send the data to any listeners to that channel. ```js const dc = require('diagnostics_channel'); const channel = dc.channel('mysql.query'); MySQL.prototype.query = function query(queryString, values, callback) { // Broadcast query information whenever a query is made channel.publish({ query: queryString, host: this.hostname, }); this.doQuery(queryString, values, callback); }; ``` Channels are like one big global event emitter but are split into separate objects to ensure they get the best performance. If nothing is listening to the channel, the publishing overhead should be as close to zero as possible. Consuming channel data is as easy as using `channel.subscribe(listener)` to run a function whenever a message is published to that channel. ```js const dc = require('diagnostics_channel'); const channel = dc.channel('mysql.query'); channel.subscribe(({ query, host }) => { console.log(`mysql query to ${host}: ${query}`); }); ``` The data captured can be used to provide context for what an app is doing at a given time. This can be used for things like augmenting tracing data, tracking network and filesystem activity, logging queries, and many other things. It's also a very useful data source for diagnostics tools to provide a clearer picture of exactly what the application is doing at a given point in the data they are presenting. Contributed by Stephen Belanger [#&#8203;34895](https://github.com/nodejs/node/pull/34895). ##### UUID support in the crypto module The new `crypto.randomUUID()` method now allows to generate random [RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) Version 4 UUID strings: ```js const { randomUUID } = require('crypto'); console.log(randomUUID()); // 'aa7c91a1-f8fc-4339-b9db-f93fc7233429' ``` Contributed by James M Snell [#&#8203;36729](https://github.com/nodejs/node/pull/36729). ##### Experimental support for `AbortController` and `AbortSignal` Node.js 14.17.0 adds experimental partial support for `AbortController` and `AbortSignal`. Both constructors can be enabled globally using the `--experimental-abortcontroller` flag. Additionally, several Node.js APIs have been updated to support `AbortSignal` for cancellation. It is not mandatory to use the built-in constructors with them. Any spec-compliant third-party alternatives should be compatible. `AbortSignal` support was added to the following methods: - `child_process.exec` - `child_process.execFile` - `child_process.fork` - `child_process.spawn` - `dgram.createSocket` - `events.on` - `events.once` - `fs.readFile` - `fs.watch` - `fs.writeFile` - `http.request` - `https.request` - `http2Session.request` - The promisified variants of `setImmediate` and `setTimeout` ##### Other notable changes - **doc**: - revoke deprecation of legacy url, change status to legacy (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - add legacy status to stability index (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - upgrade stability status of report API (Gireesh Punathil) [#&#8203;35654](https://github.com/nodejs/node/pull/35654) - **deps**: - V8: Backport various patches for Apple Silicon support (BoHong Li) [#&#8203;38051](https://github.com/nodejs/node/pull/38051) - update ICU to 68.1 (Michaël Zasso) [#&#8203;36187](https://github.com/nodejs/node/pull/36187) - upgrade to libuv 1.41.0 (Colin Ihrig) [#&#8203;37360](https://github.com/nodejs/node/pull/37360) - **http**: - add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660) - report request start and end with diagnostics_channel (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895) - **util**: - add getSystemErrorMap() impl (eladkeyshawn) [#&#8203;38101](https://github.com/nodejs/node/pull/38101) ##### Commits - \[[`9fb10dc4e7`](https://github.com/nodejs/node/commit/9fb10dc4e7)] - **assert,util**: fix commutativity edge case (Ruben Bridgewater) [#&#8203;37711](https://github.com/nodejs/node/pull/37711) - \[[`2bbf253b00`](https://github.com/nodejs/node/commit/2bbf253b00)] - **benchmark**: changed `fstat` to `fstatSync` (Narasimha Prasanna HN) [#&#8203;36206](https://github.com/nodejs/node/pull/36206) - \[[`c00c31c3c5`](https://github.com/nodejs/node/commit/c00c31c3c5)] - **benchmark**: improve compare.R output (Brian White) [#&#8203;38118](https://github.com/nodejs/node/pull/38118) - \[[`a191bc7761`](https://github.com/nodejs/node/commit/a191bc7761)] - **benchmark**: add benchmark for fsPromises.writeFile (Nitzan Uziely) [#&#8203;37610](https://github.com/nodejs/node/pull/37610) - \[[`d2770a5608`](https://github.com/nodejs/node/commit/d2770a5608)] - **benchmark**: add benchmark for NODE_V8\_COVERAGE (Benjamin Coe) [#&#8203;36972](https://github.com/nodejs/node/pull/36972) - \[[`4318e708b8`](https://github.com/nodejs/node/commit/4318e708b8)] - **benchmark**: make output RFC 4180 compliant (Tobias Nießen) [#&#8203;37038](https://github.com/nodejs/node/pull/37038) - \[[`0fbeab7a95`](https://github.com/nodejs/node/commit/0fbeab7a95)] - **benchmark**: improve explanations in R script (Tobias Nießen) [#&#8203;36995](https://github.com/nodejs/node/pull/36995) - \[[`c22efc5191`](https://github.com/nodejs/node/commit/c22efc5191)] - **benchmark**: fix http2 benchmarks (Rich Trott) [#&#8203;36871](https://github.com/nodejs/node/pull/36871) - \[[`682d0a92db`](https://github.com/nodejs/node/commit/682d0a92db)] - **benchmark**: fix http/headers.js with test-double (Rich Trott) [#&#8203;36794](https://github.com/nodejs/node/pull/36794) - \[[`3a11ee88a2`](https://github.com/nodejs/node/commit/3a11ee88a2)] - **benchmark**: add simple https benchmark (Andrey Pechkurov) [#&#8203;36612](https://github.com/nodejs/node/pull/36612) - \[[`681c4afc51`](https://github.com/nodejs/node/commit/681c4afc51)] - **benchmark**: reduce code duplication (Rich Trott) [#&#8203;36568](https://github.com/nodejs/node/pull/36568) - \[[`f28eea0896`](https://github.com/nodejs/node/commit/f28eea0896)] - **benchmark,child_process**: remove failing benchmark parameter (Antoine du Hamel) [#&#8203;36295](https://github.com/nodejs/node/pull/36295) - \[[`bf2d9f25d4`](https://github.com/nodejs/node/commit/bf2d9f25d4)] - **(SEMVER-MINOR)** **buffer**: implement btoa and atob (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529) - \[[`0544410328`](https://github.com/nodejs/node/commit/0544410328)] - **buffer,errors**: add missing n literal in range error string (Cactysman) [#&#8203;37750](https://github.com/nodejs/node/pull/37750) - \[[`5667d0a540`](https://github.com/nodejs/node/commit/5667d0a540)] - **build**: don't run test workflow on doc dir on macOS (ycjcl868) [#&#8203;37999](https://github.com/nodejs/node/pull/37999) - \[[`079d90b9f3`](https://github.com/nodejs/node/commit/079d90b9f3)] - **build**: package release changelog for releases (Richard Lau) [#&#8203;38033](https://github.com/nodejs/node/pull/38033) - \[[`5c74dc7227`](https://github.com/nodejs/node/commit/5c74dc7227)] - **build**: refactor Makefile (raisinten) [#&#8203;36759](https://github.com/nodejs/node/pull/36759) - \[[`38921b3805`](https://github.com/nodejs/node/commit/38921b3805)] - **build**: do not "exit" a script meant to be "source"d (François-Denis Gonthier) [#&#8203;35520](https://github.com/nodejs/node/pull/35520) - \[[`dcbcd9e045`](https://github.com/nodejs/node/commit/dcbcd9e045)] - **build**: run some workflows only on nodejs/node (Michaël Zasso) [#&#8203;36507](https://github.com/nodejs/node/pull/36507) - \[[`cda0a80713`](https://github.com/nodejs/node/commit/cda0a80713)] - **build**: fix typo in Makefile (raisinten) [#&#8203;36176](https://github.com/nodejs/node/pull/36176) - \[[`d8f8719415`](https://github.com/nodejs/node/commit/d8f8719415)] - **build**: do not pass mode option to test-v8 command (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`f62b138278`](https://github.com/nodejs/node/commit/f62b138278)] - **build**: fix label-pr workflow (Michaël Zasso) [#&#8203;38399](https://github.com/nodejs/node/pull/38399) - \[[`1250db9206`](https://github.com/nodejs/node/commit/1250db9206)] - **build**: label PRs with GitHub Action instead of nodejs-github-bot (Phillip Johnsen) [#&#8203;38301](https://github.com/nodejs/node/pull/38301) - \[[`9ccf7dbe2d`](https://github.com/nodejs/node/commit/9ccf7dbe2d)] - **build,lib,test**: change whitelist to allowlist (Michaël Zasso) [#&#8203;36406](https://github.com/nodejs/node/pull/36406) - \[[`385e8e8d7b`](https://github.com/nodejs/node/commit/385e8e8d7b)] - **(SEMVER-MINOR)** **child_process**: support AbortSignal in fork (Benjamin Gruenbaum) [#&#8203;36603](https://github.com/nodejs/node/pull/36603) - \[[`0b691ce57e`](https://github.com/nodejs/node/commit/0b691ce57e)] - **(SEMVER-MINOR)** **child_process**: add signal support to spawn (Benjamin Gruenbaum) [#&#8203;36432](https://github.com/nodejs/node/pull/36432) - \[[`6c08c9de4a`](https://github.com/nodejs/node/commit/6c08c9de4a)] - **child_process**: clean event listener correctly (Benjamin Gruenbaum) [#&#8203;36424](https://github.com/nodejs/node/pull/36424) - \[[`a5c0f39197`](https://github.com/nodejs/node/commit/a5c0f39197)] - **(SEMVER-MINOR)** **child_process**: add AbortSignal support (Benjamin Gruenbaum) [#&#8203;36308](https://github.com/nodejs/node/pull/36308) - \[[`aa5b726f83`](https://github.com/nodejs/node/commit/aa5b726f83)] - **(SEMVER-MINOR)** **child_process**: add ChildProcess 'spawn' event (Matthew Francis Brunetti) [#&#8203;35369](https://github.com/nodejs/node/pull/35369) - \[[`723977feaa`](https://github.com/nodejs/node/commit/723977feaa)] - **crypto**: reduce range of size to int max (Qingyu Deng) [#&#8203;38096](https://github.com/nodejs/node/pull/38096) - \[[`46ece20fe3`](https://github.com/nodejs/node/commit/46ece20fe3)] - **crypto**: fix DiffieHellman argument validation (Antoine du Hamel) [#&#8203;37810](https://github.com/nodejs/node/pull/37810) - \[[`00659a9218`](https://github.com/nodejs/node/commit/00659a9218)] - **crypto**: fix randomInt bias (Tobias Nießen) [#&#8203;36894](https://github.com/nodejs/node/pull/36894) - \[[`08f9130888`](https://github.com/nodejs/node/commit/08f9130888)] - **(SEMVER-MINOR)** **crypto**: implement randomuuid (James M Snell) [#&#8203;36729](https://github.com/nodejs/node/pull/36729) - \[[`8951c19e72`](https://github.com/nodejs/node/commit/8951c19e72)] - **deps**: V8: cherry-pick [`501482c`](https://github.com/nodejs/node/commit/501482cbc704) (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121) - \[[`ea0b0697c3`](https://github.com/nodejs/node/commit/ea0b0697c3)] - **deps**: update nghttp2 to 1.42.0 (Michaël Zasso) [#&#8203;36842](https://github.com/nodejs/node/pull/36842) - \[[`5747dff04e`](https://github.com/nodejs/node/commit/5747dff04e)] - **deps**: update to c-ares 1.17.1 (Danny Sonnenschein) [#&#8203;36207](https://github.com/nodejs/node/pull/36207) - \[[`329ee8bbc3`](https://github.com/nodejs/node/commit/329ee8bbc3)] - **deps**: V8: cherry-pick [`bbc59d1`](https://github.com/nodejs/node/commit/bbc59d124ef3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`bda15149f8`](https://github.com/nodejs/node/commit/bda15149f8)] - **deps**: V8: cherry-pick [`be91c6c`](https://github.com/nodejs/node/commit/be91c6c50818) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`16a005cfa0`](https://github.com/nodejs/node/commit/16a005cfa0)] - **deps**: V8: cherry-pick [`4e24c35`](https://github.com/nodejs/node/commit/4e24c353d812) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`42140a12f2`](https://github.com/nodejs/node/commit/42140a12f2)] - **deps**: V8: cherry-pick [`eddb823`](https://github.com/nodejs/node/commit/eddb82330975) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`4d0bc3839a`](https://github.com/nodejs/node/commit/4d0bc3839a)] - **deps**: V8: cherry-pick [`6771d3e`](https://github.com/nodejs/node/commit/6771d3e31883) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`982937893e`](https://github.com/nodejs/node/commit/982937893e)] - **deps**: V8: cherry-pick [`f44fcbf`](https://github.com/nodejs/node/commit/f44fcbf803ac) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`fa45d6a358`](https://github.com/nodejs/node/commit/fa45d6a358)] - **deps**: V8: cherry-pick [`93b2105`](https://github.com/nodejs/node/commit/93b2105fbe44) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`c5fe3a226a`](https://github.com/nodejs/node/commit/c5fe3a226a)] - **deps**: V8: cherry-pick [`1a7d55a`](https://github.com/nodejs/node/commit/1a7d55a9a427) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`7dd68ac5b6`](https://github.com/nodejs/node/commit/7dd68ac5b6)] - **deps**: V8: cherry-pick [`8ebd894`](https://github.com/nodejs/node/commit/8ebd894186ed) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`a4a9246ea1`](https://github.com/nodejs/node/commit/a4a9246ea1)] - **deps**: V8: cherry-pick [`1e35f64`](https://github.com/nodejs/node/commit/1e35f6472510) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`9bfb0f33e9`](https://github.com/nodejs/node/commit/9bfb0f33e9)] - **deps**: V8: cherry-pick [`3066b7b`](https://github.com/nodejs/node/commit/3066b7b2fcb3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`5dc82469d5`](https://github.com/nodejs/node/commit/5dc82469d5)] - **deps**: V8: cherry-pick [`254c794`](https://github.com/nodejs/node/commit/254c7945eea2) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`77b7a3b710`](https://github.com/nodejs/node/commit/77b7a3b710)] - **deps**: V8: cherry-pick [`5678ebe`](https://github.com/nodejs/node/commit/5678ebe8f6c4) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`0bd8e14501`](https://github.com/nodejs/node/commit/0bd8e14501)] - **deps**: V8: cherry-pick [`8130669`](https://github.com/nodejs/node/commit/813066946968) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`d221cdc97c`](https://github.com/nodejs/node/commit/d221cdc97c)] - **deps**: V8: cherry-pick [`d2283ba`](https://github.com/nodejs/node/commit/d2283ba066ba) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`26cc160565`](https://github.com/nodejs/node/commit/26cc160565)] - **deps**: V8: cherry-pick [`53c4d05`](https://github.com/nodejs/node/commit/53c4d057974a) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`05530e8333`](https://github.com/nodejs/node/commit/05530e8333)] - **deps**: V8: cherry-pick [`e527ba4`](https://github.com/nodejs/node/commit/e527ba4bf8af) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`fdb4a0c170`](https://github.com/nodejs/node/commit/fdb4a0c170)] - **deps**: V8: cherry-pick [`5c6c99a`](https://github.com/nodejs/node/commit/5c6c99a8dc72) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`42552a7eda`](https://github.com/nodejs/node/commit/42552a7eda)] - **deps**: V8: cherry-pick [`ad2c5da`](https://github.com/nodejs/node/commit/ad2c5dae4688) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`aff53dd8b3`](https://github.com/nodejs/node/commit/aff53dd8b3)] - **deps**: V8: cherry-pick [`482e5c7`](https://github.com/nodejs/node/commit/482e5c7750b3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`931d31a2cb`](https://github.com/nodejs/node/commit/931d31a2cb)] - **deps**: V8: cherry-pick [`412ac52`](https://github.com/nodejs/node/commit/412ac52d8246) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`e99e456757`](https://github.com/nodejs/node/commit/e99e456757)] - **deps**: V8: cherry-pick [`c449afa`](https://github.com/nodejs/node/commit/c449afa1953b) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`18a4cbfb52`](https://github.com/nodejs/node/commit/18a4cbfb52)] - **deps**: V8: cherry-pick [`3ba21a1`](https://github.com/nodejs/node/commit/3ba21a17ce2f) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`70f622b542`](https://github.com/nodejs/node/commit/70f622b542)] - **deps**: V8: cherry-pick [`8c725f7`](https://github.com/nodejs/node/commit/8c725f7b5bbf) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`0e6976f5ee`](https://github.com/nodejs/node/commit/0e6976f5ee)] - **deps**: V8: cherry-pick [`ed3eeda`](https://github.com/nodejs/node/commit/ed3eedae33d0) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`86c7c0ae4e`](https://github.com/nodejs/node/commit/86c7c0ae4e)] - **deps**: V8: cherry-pick [`6a4cd97`](https://github.com/nodejs/node/commit/6a4cd97d6691) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`b10cce1b87`](https://github.com/nodejs/node/commit/b10cce1b87)] - **deps**: V8: cherry-pick [`d724820`](https://github.com/nodejs/node/commit/d724820c1d5d) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`aaeeb75a99`](https://github.com/nodejs/node/commit/aaeeb75a99)] - **deps**: V8: cherry-pick [`33f4064`](https://github.com/nodejs/node/commit/33f4064dbad3) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`b0d1a060e2`](https://github.com/nodejs/node/commit/b0d1a060e2)] - **deps**: V8: cherry-pick [`abb4d0a`](https://github.com/nodejs/node/commit/abb4d0a431c0) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`5372f1ff5b`](https://github.com/nodejs/node/commit/5372f1ff5b)] - **deps**: V8: cherry-pick [`a59e3ac`](https://github.com/nodejs/node/commit/a59e3ac1d7fa) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`31154a5611`](https://github.com/nodejs/node/commit/31154a5611)] - **deps**: V8: cherry-pick [`516b5d3`](https://github.com/nodejs/node/commit/516b5d3f9cfe) (Michaël Zasso) [#&#8203;38275](https://github.com/nodejs/node/pull/38275) - \[[`fc8f1b7f0a`](https://github.com/nodejs/node/commit/fc8f1b7f0a)] - **deps**: upgrade npm to 6.14.13 (Ruy Adorno) [#&#8203;38214](https://github.com/nodejs/node/pull/38214) - \[[`0c1e878c4c`](https://github.com/nodejs/node/commit/0c1e878c4c)] - **deps**: backport v8 [`f19142e`](https://github.com/nodejs/node/commit/f19142e6) (Guy Bedford) [#&#8203;37864](https://github.com/nodejs/node/pull/37864) - \[[`dd5da301c8`](https://github.com/nodejs/node/commit/dd5da301c8)] - **deps**: backport v8 [`5f90cfd`](https://github.com/nodejs/node/commit/5f90cfd7) (Guy Bedford) [#&#8203;37973](https://github.com/nodejs/node/pull/37973) - \[[`d56079ab9b`](https://github.com/nodejs/node/commit/d56079ab9b)] - **deps**: update to cjs-module-lexer@1.1.1 (Guy Bedford) [#&#8203;38002](https://github.com/nodejs/node/pull/38002) - \[[`866e3244da`](https://github.com/nodejs/node/commit/866e3244da)] - **deps**: V8: Backport various patches for Apple Silicon support (BoHong Li) [#&#8203;38051](https://github.com/nodejs/node/pull/38051) - \[[`16b59c62ff`](https://github.com/nodejs/node/commit/16b59c62ff)] - **deps**: cherry-pick [`8957d46`](https://github.com/nodejs/node/commit/8957d4677aa794c230577f234071af0) from V8 upstream (Antoine du Hamel) [#&#8203;37471](https://github.com/nodejs/node/pull/37471) - \[[`5707adaf33`](https://github.com/nodejs/node/commit/5707adaf33)] - **deps**: V8: cherry-pick [`0c8b6e4`](https://github.com/nodejs/node/commit/0c8b6e415c30) (Matin Zadehdolatabad) [#&#8203;37276](https://github.com/nodejs/node/pull/37276) - \[[`7d247f1691`](https://github.com/nodejs/node/commit/7d247f1691)] - **deps**: V8: cherry-pick [`1d0f426`](https://github.com/nodejs/node/commit/1d0f426311d4) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`14a87a5a01`](https://github.com/nodejs/node/commit/14a87a5a01)] - **deps**: V8: cherry-pick [`4e077ff`](https://github.com/nodejs/node/commit/4e077ff0444a) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`507c2f2101`](https://github.com/nodejs/node/commit/507c2f2101)] - **deps**: V8: cherry-pick [`086eecb`](https://github.com/nodejs/node/commit/086eecbd96b6) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`31f8610a02`](https://github.com/nodejs/node/commit/31f8610a02)] - **deps**: V8: cherry-pick [`27e1ac1`](https://github.com/nodejs/node/commit/27e1ac1a79ff) (Ole André Vadla Ravnås) [#&#8203;35986](https://github.com/nodejs/node/pull/35986) - \[[`6b115d762d`](https://github.com/nodejs/node/commit/6b115d762d)] - **deps**: patch V8 to 8.4.371.23 (Michaël Zasso) [#&#8203;38001](https://github.com/nodejs/node/pull/38001) - \[[`a92ecf0081`](https://github.com/nodejs/node/commit/a92ecf0081)] - **deps**: v8 backport [`9689b17`](https://github.com/nodejs/node/commit/9689b17687b) (Guy Bedford) [#&#8203;37865](https://github.com/nodejs/node/pull/37865) - \[[`3e8ceed0eb`](https://github.com/nodejs/node/commit/3e8ceed0eb)] - **deps**: update ICU to 68.2 (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980) - \[[`2d7e0b6912`](https://github.com/nodejs/node/commit/2d7e0b6912)] - **deps**: update ICU to 68.1 (Michaël Zasso) [#&#8203;36187](https://github.com/nodejs/node/pull/36187) - \[[`bfba66dbd6`](https://github.com/nodejs/node/commit/bfba66dbd6)] - **deps**: upgrade to libuv 1.41.0 (Colin Ihrig) [#&#8203;37360](https://github.com/nodejs/node/pull/37360) - \[[`e446d82394`](https://github.com/nodejs/node/commit/e446d82394)] - **deps**: V8: cherry-pick [`beebee4`](https://github.com/nodejs/node/commit/beebee4f80ff) (Peter Marshall) [#&#8203;37293](https://github.com/nodejs/node/pull/37293) - \[[`ae1fa98496`](https://github.com/nodejs/node/commit/ae1fa98496)] - **deps**: cherry-pick [`f4376ec`](https://github.com/nodejs/node/commit/f4376ec801e1ded) from V8 upstream (Daniel Bevenius) [#&#8203;37225](https://github.com/nodejs/node/pull/37225) - \[[`81cd06b3c6`](https://github.com/nodejs/node/commit/81cd06b3c6)] - **(SEMVER-MINOR)** **dgram**: support AbortSignal in createSocket (Nitzan Uziely) [#&#8203;37026](https://github.com/nodejs/node/pull/37026) - \[[`46651b63c1`](https://github.com/nodejs/node/commit/46651b63c1)] - **dns**: refactor cares_wrap internals (James M Snell) [#&#8203;38172](https://github.com/nodejs/node/pull/38172) - \[[`8715462f47`](https://github.com/nodejs/node/commit/8715462f47)] - **(SEMVER-MINOR)** **dns**: add a cancel() method to the promise Resolver (Szymon Marczak) [#&#8203;33099](https://github.com/nodejs/node/pull/33099) - \[[`0f126d0e05`](https://github.com/nodejs/node/commit/0f126d0e05)] - **dns**: fix trace_events name for resolveCaa() (Rich Trott) [#&#8203;35979](https://github.com/nodejs/node/pull/35979) - \[[`ed79c98683`](https://github.com/nodejs/node/commit/ed79c98683)] - **(SEMVER-MINOR)** **dns**: add setLocalAddress to Resolver (Josh Dague) [#&#8203;34824](https://github.com/nodejs/node/pull/34824) - \[[`2e7f74c8a5`](https://github.com/nodejs/node/commit/2e7f74c8a5)] - **doc**: harmonize changes list ordering (Antoine du Hamel) [#&#8203;35454](https://github.com/nodejs/node/pull/35454) - \[[`885ed96540`](https://github.com/nodejs/node/commit/885ed96540)] - **doc**: fix typo in repl.md (Arkerone) [#&#8203;38244](https://github.com/nodejs/node/pull/38244) - \[[`92650278eb`](https://github.com/nodejs/node/commit/92650278eb)] - **doc**: change "oject" to "object" (Arkerone) [#&#8203;38256](https://github.com/nodejs/node/pull/38256) - \[[`5dfe5af155`](https://github.com/nodejs/node/commit/5dfe5af155)] - **doc**: revise TLS minVersion/maxVersion text (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202) - \[[`e6c599b680`](https://github.com/nodejs/node/commit/e6c599b680)] - **doc**: standardize command flag notes (Ferdi) [#&#8203;38199](https://github.com/nodejs/node/pull/38199) - \[[`bb8db846b3`](https://github.com/nodejs/node/commit/bb8db846b3)] - **doc**: clarify child_process close event (Nitzan Uziely) [#&#8203;38181](https://github.com/nodejs/node/pull/38181) - \[[`be28376140`](https://github.com/nodejs/node/commit/be28376140)] - **doc**: add command flag to import.meta.resolve (Ferdi) [#&#8203;38171](https://github.com/nodejs/node/pull/38171) - \[[`c7c8722ba3`](https://github.com/nodejs/node/commit/c7c8722ba3)] - **doc**: update links in ICU guide (Michaël Zasso) [#&#8203;38177](https://github.com/nodejs/node/pull/38177) - \[[`4350bf5a0b`](https://github.com/nodejs/node/commit/4350bf5a0b)] - **doc**: mention cryptographic prng in description of randomUUID (Serkan Özel) [#&#8203;38074](https://github.com/nodejs/node/pull/38074) - \[[`424c8e1eb9`](https://github.com/nodejs/node/commit/424c8e1eb9)] - **doc**: add link to V8 (Voltrex) [#&#8203;38144](https://github.com/nodejs/node/pull/38144) - \[[`ecc85516cf`](https://github.com/nodejs/node/commit/ecc85516cf)] - **doc**: improve security text in collaborators guide (Rich Trott) [#&#8203;38107](https://github.com/nodejs/node/pull/38107) - \[[`6c970ba2d4`](https://github.com/nodejs/node/commit/6c970ba2d4)] - **doc**: apply consistent punctuation to header contributing guide (Akhil Marsonya) [#&#8203;38047](https://github.com/nodejs/node/pull/38047) - \[[`aff0cd3ea6`](https://github.com/nodejs/node/commit/aff0cd3ea6)] - **doc**: sending http request to localhost to avoid https redirect (Hassaan Pasha) [#&#8203;38036](https://github.com/nodejs/node/pull/38036) - \[[`56aaf7010c`](https://github.com/nodejs/node/commit/56aaf7010c)] - **doc**: apply sentence case to backporting-to-release-lines.md headers (marsonya) [#&#8203;37617](https://github.com/nodejs/node/pull/37617) - \[[`8615fa1983`](https://github.com/nodejs/node/commit/8615fa1983)] - **doc**: add parentheses to function and move reference (Rich Trott) [#&#8203;38066](https://github.com/nodejs/node/pull/38066) - \[[`5d2f0d0c4e`](https://github.com/nodejs/node/commit/5d2f0d0c4e)] - **doc**: change wording in doc/api/domain.md comment (Akhil Marsonya) [#&#8203;38044](https://github.com/nodejs/node/pull/38044) - \[[`ac59022106`](https://github.com/nodejs/node/commit/ac59022106)] - **doc**: fix asyncLocalStorage.run() description (Darkripper214) [#&#8203;38023](https://github.com/nodejs/node/pull/38023) - \[[`df54edc668`](https://github.com/nodejs/node/commit/df54edc668)] - **doc**: document how to unref stdin when using readline.Interface (Anu Pasumarthy) [#&#8203;38019](https://github.com/nodejs/node/pull/38019) - \[[`21bc5d4bd4`](https://github.com/nodejs/node/commit/21bc5d4bd4)] - **doc**: move psmarshall to collaborators emeriti (Peter Marshall) [#&#8203;37994](https://github.com/nodejs/node/pull/37994) - \[[`69c4bfd750`](https://github.com/nodejs/node/commit/69c4bfd750)] - **doc**: add distinctive color for code elements inside links (Antoine du Hamel) [#&#8203;37950](https://github.com/nodejs/node/pull/37950) - \[[`35a382e814`](https://github.com/nodejs/node/commit/35a382e814)] - **doc**: add Windows-specific info to subprocess.kill() (João Lucas Lucchetta) [#&#8203;34867](https://github.com/nodejs/node/pull/34867) - \[[`2a5f21f9cd`](https://github.com/nodejs/node/commit/2a5f21f9cd)] - **doc**: fix typos in lib/internal/bootstrap/pre_execution.js (marsonya) [#&#8203;37658](https://github.com/nodejs/node/pull/37658) - \[[`9f1f2153e9`](https://github.com/nodejs/node/commit/9f1f2153e9)] - **doc**: add more commands for cherry-picking and changelog to release docs (Danielle Adams) [#&#8203;37785](https://github.com/nodejs/node/pull/37785) - \[[`dd1c47bbf3`](https://github.com/nodejs/node/commit/dd1c47bbf3)] - **doc**: spell out ICU acronym on first occurrence (Rich Trott) [#&#8203;37942](https://github.com/nodejs/node/pull/37942) - \[[`585f1119a3`](https://github.com/nodejs/node/commit/585f1119a3)] - **doc**: update GOVERNANCE.md for TSC Charter changes (Rich Trott) [#&#8203;37888](https://github.com/nodejs/node/pull/37888) - \[[`b51651cfc5`](https://github.com/nodejs/node/commit/b51651cfc5)] - **doc**: reduce header nesting in async_hooks.md (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839) - \[[`7789159009`](https://github.com/nodejs/node/commit/7789159009)] - **doc**: add examples for WHATWG URL objects (James M Snell) [#&#8203;37822](https://github.com/nodejs/node/pull/37822) - \[[`b31bb72c10`](https://github.com/nodejs/node/commit/b31bb72c10)] - **doc**: clarify when child process 'spawn' event is \*not\* emitted (Matthew Francis Brunetti) [#&#8203;37833](https://github.com/nodejs/node/pull/37833) - \[[`9166653aef`](https://github.com/nodejs/node/commit/9166653aef)] - **doc**: fix legacy stability indicator display (Rich Trott) [#&#8203;37838](https://github.com/nodejs/node/pull/37838) - \[[`2e0266de5b`](https://github.com/nodejs/node/commit/2e0266de5b)] - **doc**: use sentence-style capitlaztion in template header (Rich Trott) [#&#8203;37837](https://github.com/nodejs/node/pull/37837) - \[[`1b83242772`](https://github.com/nodejs/node/commit/1b83242772)] - **doc**: add Ayase-252 to triagers (Qingyu Deng) [#&#8203;37781](https://github.com/nodejs/node/pull/37781) - \[[`89418e8758`](https://github.com/nodejs/node/commit/89418e8758)] - **doc**: use sentence case in issues.md headers (marsonya) [#&#8203;37537](https://github.com/nodejs/node/pull/37537) - \[[`66502fc186`](https://github.com/nodejs/node/commit/66502fc186)] - **doc**: move Derek Lewis back to collaborators (Derek Lewis) [#&#8203;37726](https://github.com/nodejs/node/pull/37726) - \[[`0d720a4a5c`](https://github.com/nodejs/node/commit/0d720a4a5c)] - **doc**: apply style for legacy status (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - \[[`c8383dd99f`](https://github.com/nodejs/node/commit/c8383dd99f)] - **doc**: revoke deprecation of legacy url, change status to legacy (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - \[[`e34aace62b`](https://github.com/nodejs/node/commit/e34aace62b)] - **doc**: add legacy status to stability index (James M Snell) [#&#8203;37784](https://github.com/nodejs/node/pull/37784) - \[[`b2d3ac835c`](https://github.com/nodejs/node/commit/b2d3ac835c)] - **doc**: add [@&#8203;linkgoron](https://github.com/linkgoron) to collaborators (Nitzan Uziely) [#&#8203;37817](https://github.com/nodejs/node/pull/37817) - \[[`a27534e883`](https://github.com/nodejs/node/commit/a27534e883)] - **doc**: fix AbortError example for timers (dbachko) [#&#8203;37738](https://github.com/nodejs/node/pull/37738) - \[[`14a160ae04`](https://github.com/nodejs/node/commit/14a160ae04)] - **doc**: fix typo in stream docs (Ian Kerins) [#&#8203;37716](https://github.com/nodejs/node/pull/37716) - \[[`fe0f6a53a6`](https://github.com/nodejs/node/commit/fe0f6a53a6)] - **doc**: add gyp maintain info (Jiawen Geng) [#&#8203;37765](https://github.com/nodejs/node/pull/37765) - \[[`6d7c7bc8d9`](https://github.com/nodejs/node/commit/6d7c7bc8d9)] - **doc**: add marsonya as a triager (marsonya) [#&#8203;37667](https://github.com/nodejs/node/pull/37667) - \[[`5f2da5af42`](https://github.com/nodejs/node/commit/5f2da5af42)] - **doc**: add hints to http.request() options (Luigi Pinca) [#&#8203;37745](https://github.com/nodejs/node/pull/37745) - \[[`02cd4044da`](https://github.com/nodejs/node/commit/02cd4044da)] - **doc**: fix link to googletest fixtures (Tobias Nießen) [#&#8203;37698](https://github.com/nodejs/node/pull/37698) - \[[`85a293bdfc`](https://github.com/nodejs/node/commit/85a293bdfc)] - **doc**: fix typo in description of close event (Tobias Nießen) [#&#8203;37662](https://github.com/nodejs/node/pull/37662) - \[[`3a6e40530c`](https://github.com/nodejs/node/commit/3a6e40530c)] - **doc**: use sentence case in README.md headers (marsonya) [#&#8203;37645](https://github.com/nodejs/node/pull/37645) - \[[`c51a60cd05`](https://github.com/nodejs/node/commit/c51a60cd05)] - **doc**: add localPort to http.request() options (Luigi Pinca) [#&#8203;37586](https://github.com/nodejs/node/pull/37586) - \[[`b0840ac680`](https://github.com/nodejs/node/commit/b0840ac680)] - **doc**: fix typo in doc/guides/collaborator-guide.md (marsonya) [#&#8203;37643](https://github.com/nodejs/node/pull/37643) - \[[`5ef2a8de25`](https://github.com/nodejs/node/commit/5ef2a8de25)] - **doc**: document that module.evaluate fulfills as undefined (James M Snell) [#&#8203;37663](https://github.com/nodejs/node/pull/37663) - \[[`b192227a95`](https://github.com/nodejs/node/commit/b192227a95)] - **doc**: add return type of readline.createInterface (Darshan Sen) [#&#8203;37600](https://github.com/nodejs/node/pull/37600) - \[[`68d5cb80de`](https://github.com/nodejs/node/commit/68d5cb80de)] - **doc**: apply sentence case to headers in pull-requests.md (marsonya) [#&#8203;37602](https://github.com/nodejs/node/pull/37602) - \[[`183dba0dd8`](https://github.com/nodejs/node/commit/183dba0dd8)] - **doc**: add top-level await syntax in vm.md (Antoine du Hamel) [#&#8203;37077](https://github.com/nodejs/node/pull/37077) - \[[`1dc7f426aa`](https://github.com/nodejs/node/commit/1dc7f426aa)] - **doc**: clarify that columnOffset applies only to the first line (James M Snell) [#&#8203;37563](https://github.com/nodejs/node/pull/37563) - \[[`c21731b39f`](https://github.com/nodejs/node/commit/c21731b39f)] - **doc**: document that NODE_EXTRA_CA_CERTS is read only once (James M Snell) [#&#8203;37562](https://github.com/nodejs/node/pull/37562) - \[[`0255ed7e8e`](https://github.com/nodejs/node/commit/0255ed7e8e)] - **doc**: fix typo in doc/api/packages.md (marsonya) [#&#8203;37536](https://github.com/nodejs/node/pull/37536) - \[[`52c0f0bf0f`](https://github.com/nodejs/node/commit/52c0f0bf0f)] - **doc**: revise LTS text in collaborator guide (Rich Trott) [#&#8203;37527](https://github.com/nodejs/node/pull/37527) - \[[`fdc6a96d49`](https://github.com/nodejs/node/commit/fdc6a96d49)] - **doc**: revise CI text in collaborator guide (Rich Trott) [#&#8203;37526](https://github.com/nodejs/node/pull/37526) - \[[`c62a1345bb`](https://github.com/nodejs/node/commit/c62a1345bb)] - **doc**: revise objections section of collaborator guide (Rich Trott) [#&#8203;37525](https://github.com/nodejs/node/pull/37525) - \[[`adc75368ba`](https://github.com/nodejs/node/commit/adc75368ba)] - **doc**: revise premature disclosure text in collaborator guide (Rich Trott) [#&#8203;37524](https://github.com/nodejs/node/pull/37524) - \[[`1b851461b1`](https://github.com/nodejs/node/commit/1b851461b1)] - **doc**: change links to use HEAD in top level docs (Michael Dawson) [#&#8203;37494](https://github.com/nodejs/node/pull/37494) - \[[`64ed65ecc4`](https://github.com/nodejs/node/commit/64ed65ecc4)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37506](https://github.com/nodejs/node/pull/37506) - \[[`ff1990c409`](https://github.com/nodejs/node/commit/ff1990c409)] - **doc**: add url.resolve replacement example (Antoine du Hamel) [#&#8203;37501](https://github.com/nodejs/node/pull/37501) - \[[`52b3b54c14`](https://github.com/nodejs/node/commit/52b3b54c14)] - **doc**: apply sentence case to guides headers (marsonya) [#&#8203;37497](https://github.com/nodejs/node/pull/37497) - \[[`da2cd4a48a`](https://github.com/nodejs/node/commit/da2cd4a48a)] - **doc**: update CI requirements for landing pull requests (Antoine du Hamel) [#&#8203;37308](https://github.com/nodejs/node/pull/37308) - \[[`2082f5bd68`](https://github.com/nodejs/node/commit/2082f5bd68)] - **doc**: recommend queueMicrotask over process.nextTick (James M Snell) [#&#8203;37484](https://github.com/nodejs/node/pull/37484) - \[[`099eef6a84`](https://github.com/nodejs/node/commit/099eef6a84)] - **doc**: apply sentence case to headers in doc/guides (marsonya) [#&#8203;37478](https://github.com/nodejs/node/pull/37478) - \[[`a0bab6915e`](https://github.com/nodejs/node/commit/a0bab6915e)] - **doc**: fix typo in doc/api/http2/md (marsonya) [#&#8203;37479](https://github.com/nodejs/node/pull/37479) - \[[`3e82263877`](https://github.com/nodejs/node/commit/3e82263877)] - **doc**: alphabetize vm Module class properties (Rich Trott) [#&#8203;37451](https://github.com/nodejs/node/pull/37451) - \[[`e6f804b0af`](https://github.com/nodejs/node/commit/e6f804b0af)] - **doc**: alphabetize crypto Cipher class entries (Rich Trott) [#&#8203;37450](https://github.com/nodejs/node/pull/37450) - \[[`bb434a983c`](https://github.com/nodejs/node/commit/bb434a983c)] - **doc**: use HEAD for links in api docs (Michael Dawson) [#&#8203;37437](https://github.com/nodejs/node/pull/37437) - \[[`39ef3bd155`](https://github.com/nodejs/node/commit/39ef3bd155)] - **doc**: fix alignment of parameters (Michael Dawson) [#&#8203;37422](https://github.com/nodejs/node/pull/37422) - \[[`8b60e66982`](https://github.com/nodejs/node/commit/8b60e66982)] - **doc**: fix typo in doc/api/esm.md (marsonya) [#&#8203;37400](https://github.com/nodejs/node/pull/37400) - \[[`605cb4cd4c`](https://github.com/nodejs/node/commit/605cb4cd4c)] - **doc**: fix typo in esm.md (Jay Tailor) [#&#8203;37417](https://github.com/nodejs/node/pull/37417) - \[[`74f0760a9b`](https://github.com/nodejs/node/commit/74f0760a9b)] - **doc**: use HEAD in links where possible (Michael Dawson) [#&#8203;37421](https://github.com/nodejs/node/pull/37421) - \[[`4785755014`](https://github.com/nodejs/node/commit/4785755014)] - **doc**: clarify that async_hook callbacks cannot be async (James M Snell) [#&#8203;37384](https://github.com/nodejs/node/pull/37384) - \[[`07130c038f`](https://github.com/nodejs/node/commit/07130c038f)] - **doc**: add dmabupt to collaborators (Xu Meng) [#&#8203;37377](https://github.com/nodejs/node/pull/37377) - \[[`2a3feff2f0`](https://github.com/nodejs/node/commit/2a3feff2f0)] - **doc**: optimize HTML rendering (Antoine du Hamel) [#&#8203;37301](https://github.com/nodejs/node/pull/37301) - \[[`8b5e42e031`](https://github.com/nodejs/node/commit/8b5e42e031)] - **doc**: fix quotes in stream docs (Tobias Nießen) [#&#8203;37269](https://github.com/nodejs/node/pull/37269) - \[[`d426143f54`](https://github.com/nodejs/node/commit/d426143f54)] - **doc**: link PACKAGE_EXPORTS_RESOLVE to ESM section (Utku Gultopu) [#&#8203;37135](https://github.com/nodejs/node/pull/37135) - \[[`debffd9b41`](https://github.com/nodejs/node/commit/debffd9b41)] - **doc**: use sentence case in benchmark doc (Rich Trott) [#&#8203;37351](https://github.com/nodejs/node/pull/37351) - \[[`f28a5c6e1e`](https://github.com/nodejs/node/commit/f28a5c6e1e)] - **doc**: apply sentence-consistently in C++ style guide (Rich Trott) [#&#8203;37350](https://github.com/nodejs/node/pull/37350) - \[[`569ad98b9a`](https://github.com/nodejs/node/commit/569ad98b9a)] - **doc**: apply sentence case to release doc headers (Rich Trott) [#&#8203;37349](https://github.com/nodejs/node/pull/37349) - \[[`7cf4a4b2b8`](https://github.com/nodejs/node/commit/7cf4a4b2b8)] - **doc**: fix performanceEntry.flags style format (Cheng Liu) [#&#8203;37274](https://github.com/nodejs/node/pull/37274) - \[[`5ade2fd207`](https://github.com/nodejs/node/commit/5ade2fd207)] - **doc**: fix typo in deprecations.md (marsonya) [#&#8203;37282](https://github.com/nodejs/node/pull/37282) - \[[`5bc0a0d9f7`](https://github.com/nodejs/node/commit/5bc0a0d9f7)] - **doc**: add version metadata for packages features (Antoine du Hamel) [#&#8203;37289](https://github.com/nodejs/node/pull/37289) - \[[`b485a3e2d2`](https://github.com/nodejs/node/commit/b485a3e2d2)] - **doc**: fix typo in /api/dns.md (marsonya) [#&#8203;37312](https://github.com/nodejs/node/pull/37312) - \[[`a99456ce69`](https://github.com/nodejs/node/commit/a99456ce69)] - **doc**: fix description of hasSubscribers (Tobias Nießen) [#&#8203;37324](https://github.com/nodejs/node/pull/37324) - \[[`b7c9366979`](https://github.com/nodejs/node/commit/b7c9366979)] - **doc**: discourage error event (Benjamin Gruenbaum) [#&#8203;37264](https://github.com/nodejs/node/pull/37264) - \[[`8c41bc953e`](https://github.com/nodejs/node/commit/8c41bc953e)] - **doc**: fix misnamed SHASUMS256.txt name in README.md (marsonya) [#&#8203;37260](https://github.com/nodejs/node/pull/37260) - \[[`b2ee1afb2e`](https://github.com/nodejs/node/commit/b2ee1afb2e)] - **doc**: fix typo in console.md (marsonya) [#&#8203;37279](https://github.com/nodejs/node/pull/37279) - \[[`281d75cebb`](https://github.com/nodejs/node/commit/281d75cebb)] - **doc**: use sentence case in README headers (Rich Trott) [#&#8203;37251](https://github.com/nodejs/node/pull/37251) - \[[`8cffab6571`](https://github.com/nodejs/node/commit/8cffab6571)] - **doc**: use sentence case for headers in BUILDING.md (Rich Trott) [#&#8203;37250](https://github.com/nodejs/node/pull/37250) - \[[`0eaeaea454`](https://github.com/nodejs/node/commit/0eaeaea454)] - **doc**: rename N-API to Node-API (Gabriel Schulhof) [#&#8203;37259](https://github.com/nodejs/node/pull/37259) - \[[`cb632e4040`](https://github.com/nodejs/node/commit/cb632e4040)] - **doc**: fix version number for DEP006 (Antoine du Hamel) [#&#8203;37231](https://github.com/nodejs/node/pull/37231) - \[[`e7415c374b`](https://github.com/nodejs/node/commit/e7415c374b)] - **doc**: fix CHANGELOG_ARCHIVE table of contents (Antoine du Hamel) [#&#8203;37232](https://github.com/nodejs/node/pull/37232) - \[[`2959c65632`](https://github.com/nodejs/node/commit/2959c65632)] - **doc**: fix typo in globals.md (Darshan Sen) [#&#8203;37228](https://github.com/nodejs/node/pull/37228) - \[[`ad80e3de1e`](https://github.com/nodejs/node/commit/ad80e3de1e)] - **doc**: fix 404 links in module.md (Antoine du Hamel) [#&#8203;37202](https://github.com/nodejs/node/pull/37202) - \[[`e7ca9b6d71`](https://github.com/nodejs/node/commit/e7ca9b6d71)] - **doc**: fix color contrast on \<kbd> elements (Antoine du Hamel) [#&#8203;37185](https://github.com/nodejs/node/pull/37185) - \[[`11d3e71f80`](https://github.com/nodejs/node/commit/11d3e71f80)] - **doc**: improve promise terminology (Benjamin Gruenbaum) [#&#8203;37181](https://github.com/nodejs/node/pull/37181) - \[[`35cf86c83b`](https://github.com/nodejs/node/commit/35cf86c83b)] - **doc**: fix list format in Developer's Certificate of Origin (Akash Negi) [#&#8203;37138](https://github.com/nodejs/node/pull/37138) - \[[`6264ac187a`](https://github.com/nodejs/node/commit/6264ac187a)] - **doc**: clarify ERR_INVALID_REPL_INPUT usage (Rich Trott) [#&#8203;37143](https://github.com/nodejs/node/pull/37143) - \[[`d340dca940`](https://github.com/nodejs/node/commit/d340dca940)] - **doc**: clarify repl exception conditions (Rich Trott) [#&#8203;37142](https://github.com/nodejs/node/pull/37142) - \[[`26ec20a9b6`](https://github.com/nodejs/node/commit/26ec20a9b6)] - **doc**: add example for test structure (Turner Jabbour) [#&#8203;35046](https://github.com/nodejs/node/pull/35046) - \[[`8099bfb35c`](https://github.com/nodejs/node/commit/8099bfb35c)] - **doc**: remove TOC summary for pages with no TOC (Rich Trott) [#&#8203;37043](https://github.com/nodejs/node/pull/37043) - \[[`b0c9b1fdfb`](https://github.com/nodejs/node/commit/b0c9b1fdfb)] - **doc**: update Buffer encoding option count (Dave Cardwell) [#&#8203;37102](https://github.com/nodejs/node/pull/37102) - \[[`af313a8495`](https://github.com/nodejs/node/commit/af313a8495)] - **doc**: update BUILDING.md previous versions links (Richard Lau) [#&#8203;37082](https://github.com/nodejs/node/pull/37082) - \[[`b353549f7c`](https://github.com/nodejs/node/commit/b353549f7c)] - **doc**: mention adding Fixes to collaborator onboarding PR (Joyee Cheung) [#&#8203;37097](https://github.com/nodejs/node/pull/37097) - \[[`8ed0c17bee`](https://github.com/nodejs/node/commit/8ed0c17bee)] - **doc**: add Zijian Liu to collaborators (ZiJian Liu) [#&#8203;37075](https://github.com/nodejs/node/pull/37075) - \[[`87fcda8d3e`](https://github.com/nodejs/node/commit/87fcda8d3e)] - **doc**: add tooltip for light/dark mode toggle (Rich Trott) [#&#8203;37044](https://github.com/nodejs/node/pull/37044) - \[[`49f13743e5`](https://github.com/nodejs/node/commit/49f13743e5)] - **doc**: improve AsyncLocalStorage introduction (Romuald Brillout) [#&#8203;36946](https://github.com/nodejs/node/pull/36946) - \[[`b8080134a2`](https://github.com/nodejs/node/commit/b8080134a2)] - **doc**: add missing comma in tty (Matthew Mario Di Pasquale) [#&#8203;37039](https://github.com/nodejs/node/pull/37039) - \[[`1e2beeea99`](https://github.com/nodejs/node/commit/1e2beeea99)] - **doc**: list Unsupported Directory Import resolve err (Guy Bedford) [#&#8203;37032](https://github.com/nodejs/node/pull/37032) - \[[`fb4eee132e`](https://github.com/nodejs/node/commit/fb4eee132e)] - **doc**: add missing ARIA label for button (Rich Trott) [#&#8203;37031](https://github.com/nodejs/node/pull/37031) - \[[`f260f4a12f`](https://github.com/nodejs/node/commit/f260f4a12f)] - **doc**: add [@&#8203;RaisinTen](https://github.com/RaisinTen) to collaborators (Darshan Sen) [#&#8203;36998](https://github.com/nodejs/node/pull/36998) - \[[`00075986f0`](https://github.com/nodejs/node/commit/00075986f0)] - **doc**: fix typo in http.server.requestTimout docs (alexbs) [#&#8203;36987](https://github.com/nodejs/node/pull/36987) - \[[`b25b69418a`](https://github.com/nodejs/node/commit/b25b69418a)] - **doc**: add performance notes for fs.readFile (James M Snell) [#&#8203;36880](https://github.com/nodejs/node/pull/36880) - \[[`385d0df02d`](https://github.com/nodejs/node/commit/385d0df02d)] - **doc**: clarify maxSockets option of http.Agent (Pooja D P) [#&#8203;36941](https://github.com/nodejs/node/pull/36941) - \[[`792bea4e78`](https://github.com/nodejs/node/commit/792bea4e78)] - **doc**: remove pull-requests.md preamble (Rich Trott) [#&#8203;36960](https://github.com/nodejs/node/pull/36960) - \[[`d43492ee42`](https://github.com/nodejs/node/commit/d43492ee42)] - **doc**: fix percentile range in perf_hooks.md (raisinten) [#&#8203;36938](https://github.com/nodejs/node/pull/36938) - \[[`f39ee90c94`](https://github.com/nodejs/node/commit/f39ee90c94)] - **doc**: improve perf_hooks docs (Juan José Arboleda) [#&#8203;36909](https://github.com/nodejs/node/pull/36909) - \[[`e990b11672`](https://github.com/nodejs/node/commit/e990b11672)] - **doc**: fix invalid HTML in doc template (Rich Trott) [#&#8203;36930](https://github.com/nodejs/node/pull/36930) - \[[`e1c62dd977`](https://github.com/nodejs/node/commit/e1c62dd977)] - **doc**: remove issue template duplication from contributing docs (Rich Trott) [#&#8203;36908](https://github.com/nodejs/node/pull/36908) - \[[`3c70f6842d`](https://github.com/nodejs/node/commit/3c70f6842d)] - **doc**: remove resolving-a-bug-report from contributing docs (Rich Trott) [#&#8203;36905](https://github.com/nodejs/node/pull/36905) - \[[`308d361a79`](https://github.com/nodejs/node/commit/308d361a79)] - **doc**: use ESM syntax for WASI example (Antoine du Hamel) [#&#8203;36848](https://github.com/nodejs/node/pull/36848) - \[[`189fae8618`](https://github.com/nodejs/node/commit/189fae8618)] - **doc**: add iansu to collaborators (Ian Sutherland) [#&#8203;36951](https://github.com/nodejs/node/pull/36951) - \[[`28c80b514f`](https://github.com/nodejs/node/commit/28c80b514f)] - **doc**: add alternative version links to the packages page (Filip Skokan) [#&#8203;36915](https://github.com/nodejs/node/pull/36915) - \[[`ed5bb7673f`](https://github.com/nodejs/node/commit/ed5bb7673f)] - **doc**: add miladfarca to collaborators (Milad Fa) [#&#8203;36934](https://github.com/nodejs/node/pull/36934) - \[[`580b647ee4`](https://github.com/nodejs/node/commit/580b647ee4)] - **doc**: update tls test to use better terminology (Michael Dawson) [#&#8203;36851](https://github.com/nodejs/node/pull/36851) - \[[`fa82cbc4f7`](https://github.com/nodejs/node/commit/fa82cbc4f7)] - **doc**: remove unnecessary contributing.md section (Rich Trott) [#&#8203;36891](https://github.com/nodejs/node/pull/36891) - \[[`583b2192d9`](https://github.com/nodejs/node/commit/583b2192d9)] - **doc**: wrap TOC in a \<details> tag (Mattia Pontonio) [#&#8203;36896](https://github.com/nodejs/node/pull/36896) - \[[`9a3cfa7069`](https://github.com/nodejs/node/commit/9a3cfa7069)] - **doc**: fix indentation on http2 doc entry (Rich Trott) [#&#8203;36869](https://github.com/nodejs/node/pull/36869) - \[[`7fbbdb831a`](https://github.com/nodejs/node/commit/7fbbdb831a)] - **doc**: define "browser", "production", "development" (Guy Bedford) [#&#8203;36856](https://github.com/nodejs/node/pull/36856) - \[[`5770ae057e`](https://github.com/nodejs/node/commit/5770ae057e)] - **doc**: fix module syncBuiltinESMExports example (Bruce A. MacNaughton) [#&#8203;34284](https://github.com/nodejs/node/pull/34284) - \[[`099d776e29`](https://github.com/nodejs/node/commit/099d776e29)] - **doc**: update release key for Danielle Adams (Danielle Adams) [#&#8203;36793](https://github.com/nodejs/node/pull/36793) - \[[`57e27a3824`](https://github.com/nodejs/node/commit/57e27a3824)] - **doc**: clarify child_process.exec inherits cwd (ugultopu) [#&#8203;36809](https://github.com/nodejs/node/pull/36809) - \[[`f605bc00ae`](https://github.com/nodejs/node/commit/f605bc00ae)] - **doc**: clarify descriptions of \_writev chunks argument (James M Snell) [#&#8203;36822](https://github.com/nodejs/node/pull/36822) - \[[`cf0fa7fa2f`](https://github.com/nodejs/node/commit/cf0fa7fa2f)] - **doc**: document buffer's "Uint" aliases clearly (Michaël Zasso) [#&#8203;36796](https://github.com/nodejs/node/pull/36796) - \[[`5f36ff80b9`](https://github.com/nodejs/node/commit/5f36ff80b9)] - **doc**: add dnlup to collaborators (Daniele Belardi) [#&#8203;36849](https://github.com/nodejs/node/pull/36849) - \[[`c1ea23c55d`](https://github.com/nodejs/node/commit/c1ea23c55d)] - **doc**: clarify subprocess.stdout/in/err/io properties (James M Snell) [#&#8203;36784](https://github.com/nodejs/node/pull/36784) - \[[`19e61206f2`](https://github.com/nodejs/node/commit/19e61206f2)] - **doc**: add dark mode (Ajay Poshak) [#&#8203;36313](https://github.com/nodejs/node/pull/36313) - \[[`8620458966`](https://github.com/nodejs/node/commit/8620458966)] - **doc**: revise method text in async_hooks.md (Rich Trott) [#&#8203;36736](https://github.com/nodejs/node/pull/36736) - \[[`a800b5b698`](https://github.com/nodejs/node/commit/a800b5b698)] - **doc**: clarify when messageerror is emitted (James M Snell) [#&#8203;36780](https://github.com/nodejs/node/pull/36780) - \[[`e973bdc14e`](https://github.com/nodejs/node/commit/e973bdc14e)] - **doc**: avoid memory leak warning in async_hooks example (James M Snell) [#&#8203;36783](https://github.com/nodejs/node/pull/36783) - \[[`1521a59002`](https://github.com/nodejs/node/commit/1521a59002)] - **doc**: clarify that --require only supports cjs (James M Snell) [#&#8203;36806](https://github.com/nodejs/node/pull/36806) - \[[`dc15608661`](https://github.com/nodejs/node/commit/dc15608661)] - **doc**: clarify Buffer.from when using ArrayBuffer (James M Snell) [#&#8203;36785](https://github.com/nodejs/node/pull/36785) - \[[`67a6e9c516`](https://github.com/nodejs/node/commit/67a6e9c516)] - **doc**: fix broken link for ChildProcess (James M Snell) [#&#8203;36788](https://github.com/nodejs/node/pull/36788) - \[[`31039dbf63`](https://github.com/nodejs/node/commit/31039dbf63)] - **doc**: revise exit() and run() text in async_hooks.md (Rich Trott) [#&#8203;36738](https://github.com/nodejs/node/pull/36738) - \[[`844a15622f`](https://github.com/nodejs/node/commit/844a15622f)] - **doc**: clarify that N-API addons are context-aware (Alba Mendez) [#&#8203;36640](https://github.com/nodejs/node/pull/36640) - \[[`8f48e77217`](https://github.com/nodejs/node/commit/8f48e77217)] - **doc**: fix typo in esm documentation (Mohamed Kamagate) [#&#8203;36800](https://github.com/nodejs/node/pull/36800) - \[[`095c69dce3`](https://github.com/nodejs/node/commit/095c69dce3)] - **doc**: add panva to collaborators (Filip Skokan) [#&#8203;36802](https://github.com/nodejs/node/pull/36802) - \[[`8bda9f4dce`](https://github.com/nodejs/node/commit/8bda9f4dce)] - **doc**: reduce abbreviations in async_hooks.md (Rich Trott) [#&#8203;36737](https://github.com/nodejs/node/pull/36737) - \[[`1a65b442f0`](https://github.com/nodejs/node/commit/1a65b442f0)] - **doc**: simplify pull request template (Rich Trott) [#&#8203;36739](https://github.com/nodejs/node/pull/36739) - \[[`71b94e1ff7`](https://github.com/nodejs/node/commit/71b94e1ff7)] - **doc**: clarify undocumented stream properties (James M Snell) [#&#8203;36715](https://github.com/nodejs/node/pull/36715) - \[[`bcca52c11a`](https://github.com/nodejs/node/commit/bcca52c11a)] - **doc**: document common warning types (James M Snell) [#&#8203;36713](https://github.com/nodejs/node/pull/36713) - \[[`97faeeb115`](https://github.com/nodejs/node/commit/97faeeb115)] - **doc**: improve ALS.enterWith and exit descriptions (Andrey Pechkurov) [#&#8203;36705](https://github.com/nodejs/node/pull/36705) - \[[`535bbc294a`](https://github.com/nodejs/node/commit/535bbc294a)] - **doc**: add yashLadha to collaborator (Yash Ladha) [#&#8203;36666](https://github.com/nodejs/node/pull/36666) - \[[`6293aea1d1`](https://github.com/nodejs/node/commit/6293aea1d1)] - **doc**: alphabetize http response properties (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631) - \[[`afb9534d65`](https://github.com/nodejs/node/commit/afb9534d65)] - **doc**: correct callback parameter type for createPushResponse() (Rich Trott) [#&#8203;36631](https://github.com/nodejs/node/pull/36631) - \[[`f65b842ee1`](https://github.com/nodejs/node/commit/f65b842ee1)] - **doc**: use \_code name\_ rather than \_codename\_ (Rich Trott) [#&#8203;36611](https://github.com/nodejs/node/pull/36611) - \[[`12dc0e6a28`](https://github.com/nodejs/node/commit/12dc0e6a28)] - **doc**: document return value of https.request (Michael Chen) [#&#8203;36370](https://github.com/nodejs/node/pull/36370) - \[[`317a1d7a0d`](https://github.com/nodejs/node/commit/317a1d7a0d)] - **doc**: remove replication of GitHub template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590) - \[[`653492f2d4`](https://github.com/nodejs/node/commit/653492f2d4)] - **doc**: remove "Related Issues" from pull request template (Rich Trott) [#&#8203;36590](https://github.com/nodejs/node/pull/36590) - \[[`b57785d89b`](https://github.com/nodejs/node/commit/b57785d89b)] - **doc**: update and run license-builder for Babel (Michaël Zasso) [#&#8203;36504](https://github.com/nodejs/node/pull/36504) - \[[`e3c2d112eb`](https://github.com/nodejs/node/commit/e3c2d112eb)] - **doc**: add remark about Collaborators discussion page (FrankQiu) [#&#8203;36420](https://github.com/nodejs/node/pull/36420) - \[[`8b349187b8`](https://github.com/nodejs/node/commit/8b349187b8)] - **doc**: add two tips for speeding the dev builds (Momtchil Momtchev) [#&#8203;36452](https://github.com/nodejs/node/pull/36452) - \[[`6198d74cd3`](https://github.com/nodejs/node/commit/6198d74cd3)] - **doc**: add note about timingSafeEqual for TypedArray (Tobias Nießen) [#&#8203;36323](https://github.com/nodejs/node/pull/36323) - \[[`d27028040e`](https://github.com/nodejs/node/commit/d27028040e)] - **doc**: move Derek Lewis to emeritus (Rich Trott) [#&#8203;36514](https://github.com/nodejs/node/pull/36514) - \[[`cf9d476948`](https://github.com/nodejs/node/commit/cf9d476948)] - **doc**: add issue reference to github pr template (Chinmoy Chakraborty) [#&#8203;36440](https://github.com/nodejs/node/pull/36440) - \[[`760e593968`](https://github.com/nodejs/node/commit/760e593968)] - **doc**: update url.md (Rock) [#&#8203;36147](https://github.com/nodejs/node/pull/36147) - \[[`c32c109450`](https://github.com/nodejs/node/commit/c32c109450)] - **doc**: make explicit reverting node_version.h changes (Richard Lau) [#&#8203;36461](https://github.com/nodejs/node/pull/36461) - \[[`647ec70419`](https://github.com/nodejs/node/commit/647ec70419)] - **doc**: add license info to the README (FrankQiu) [#&#8203;36278](https://github.com/nodejs/node/pull/36278) - \[[`2ec839d974`](https://github.com/nodejs/node/commit/2ec839d974)] - **doc**: revise addon mulitple initializations text (Rich Trott) [#&#8203;36457](https://github.com/nodejs/node/pull/36457) - \[[`050b52f16b`](https://github.com/nodejs/node/commit/050b52f16b)] - **doc**: add PoojaDurgad to collaborators (Pooja D P) [#&#8203;36511](https://github.com/nodejs/node/pull/36511) - \[[`681d2a7176`](https://github.com/nodejs/node/commit/681d2a7176)] - **doc**: edit addon text about event loop blocking (Rich Trott) [#&#8203;36448](https://github.com/nodejs/node/pull/36448) - \[[`afad5e6be6`](https://github.com/nodejs/node/commit/afad5e6be6)] - **doc**: update terminology (Michael Dawson) [#&#8203;36475](https://github.com/nodejs/node/pull/36475) - \[[`615a0aaf86`](https://github.com/nodejs/node/commit/615a0aaf86)] - **doc**: reword POSIX threads text in addons.md (Rich Trott) [#&#8203;36436](https://github.com/nodejs/node/pull/36436) - \[[`94d41f22f0`](https://github.com/nodejs/node/commit/94d41f22f0)] - **doc**: add RaisinTen as a triager (raisinten) [#&#8203;36404](https://github.com/nodejs/node/pull/36404) - \[[`cd065210a5`](https://github.com/nodejs/node/commit/cd065210a5)] - **doc**: provide more context on techinical values (Michael Dawson) [#&#8203;36201](https://github.com/nodejs/node/pull/36201) - \[[`f515156fab`](https://github.com/nodejs/node/commit/f515156fab)] - **doc**: add Powershell oneliner to get Windows version (Michael Bashurov) [#&#8203;30289](https://github.com/nodejs/node/pull/30289) - \[[`280d1b09be`](https://github.com/nodejs/node/commit/280d1b09be)] - **doc**: add process for handling premature disclosure (Michael Dawson) [#&#8203;36155](https://github.com/nodejs/node/pull/36155) - \[[`9269352e45`](https://github.com/nodejs/node/commit/9269352e45)] - **doc**: add table header in intl.md (Rich Trott) [#&#8203;36261](https://github.com/nodejs/node/pull/36261) - \[[`6201f23e12`](https://github.com/nodejs/node/commit/6201f23e12)] - **doc**: adding example to Buffer.isBuffer method (naortedgi) [#&#8203;36233](https://github.com/nodejs/node/pull/36233) - \[[`1d78d50127`](https://github.com/nodejs/node/commit/1d78d50127)] - **doc**: fix typo in events.md (Luigi Pinca) [#&#8203;36231](https://github.com/nodejs/node/pull/36231) - \[[`9b32c9c575`](https://github.com/nodejs/node/commit/9b32c9c575)] - **doc**: fix --experimental-wasm-modules text location (Colin Ihrig) [#&#8203;36220](https://github.com/nodejs/node/pull/36220) - \[[`28149cff23`](https://github.com/nodejs/node/commit/28149cff23)] - **doc**: add missing version to update cmd (Ruy Adorno) [#&#8203;36204](https://github.com/nodejs/node/pull/36204) - \[[`2d6494775b`](https://github.com/nodejs/node/commit/2d6494775b)] - **doc**: fix invalid link in worker_threads.md (Rich Trott) [#&#8203;36109](https://github.com/nodejs/node/pull/36109) - \[[`ec140d7160`](https://github.com/nodejs/node/commit/ec140d7160)] - **doc**: fix `events.getEventListeners` example (Dmitry Semigradsky) [#&#8203;36085](https://github.com/nodejs/node/pull/36085) - \[[`34d8a64c56`](https://github.com/nodejs/node/commit/34d8a64c56)] - **doc**: fix incorrect heading level (Bryan Field) [#&#8203;35965](https://github.com/nodejs/node/pull/35965) - \[[`d9d7ebd0b4`](https://github.com/nodejs/node/commit/d9d7ebd0b4)] - **doc**: make globals Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777) - \[[`2f7afd11a4`](https://github.com/nodejs/node/commit/2f7afd11a4)] - **doc**: make perf_hooks Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777) - \[[`810b1d0cbb`](https://github.com/nodejs/node/commit/810b1d0cbb)] - **doc**: make events Extends usage consistent (Colin Ihrig) [#&#8203;33777](https://github.com/nodejs/node/pull/33777) - \[[`cf4fa79f17`](https://github.com/nodejs/node/commit/cf4fa79f17)] - **doc**: recommend checking abortSignal.aborted first (James M Snell) [#&#8203;37714](https://github.com/nodejs/node/pull/37714) - \[[`e93615c5e3`](https://github.com/nodejs/node/commit/e93615c5e3)] - **doc**: make AbortSignal text consistent in events.md (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005) - \[[`1a362d8d4b`](https://github.com/nodejs/node/commit/1a362d8d4b)] - **doc**: revise AbortSignal text and example using events.once() (Rich Trott) [#&#8203;35005](https://github.com/nodejs/node/pull/35005) - \[[`a7da993cff`](https://github.com/nodejs/node/commit/a7da993cff)] - **doc**: stabilize packages features (Myles Borins) [#&#8203;35742](https://github.com/nodejs/node/pull/35742) - \[[`b133034735`](https://github.com/nodejs/node/commit/b133034735)] - **doc**: stabilize subpath patterns (Guy Bedford) [#&#8203;36177](https://github.com/nodejs/node/pull/36177) - \[[`5a3e12b1ee`](https://github.com/nodejs/node/commit/5a3e12b1ee)] - **doc**: update fs.l/statSync API history for throwIfNoEntry (Andrew Casey) [#&#8203;36882](https://github.com/nodejs/node/pull/36882) - \[[`7c9f3a9d0c`](https://github.com/nodejs/node/commit/7c9f3a9d0c)] - **doc**: fix module.isPreloading documentation (Antoine du Hamel) [#&#8203;36944](https://github.com/nodejs/node/pull/36944) - \[[`c1af59384d`](https://github.com/nodejs/node/commit/c1af59384d)] - **doc**: mark modules implementation as stable (Guy Bedford) [#&#8203;35781](https://github.com/nodejs/node/pull/35781) - \[[`9930b6b825`](https://github.com/nodejs/node/commit/9930b6b825)] - **doc**: update `buffer.constants.MAX\_LENGTH` (Qingyu Deng) [#&#8203;38109](https://github.com/nodejs/node/pull/38109) - \[[`c975a8ded1`](https://github.com/nodejs/node/commit/c975a8ded1)] - **doc**: fix maintaining ICU guide (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980) - \[[`d1004d26e4`](https://github.com/nodejs/node/commit/d1004d26e4)] - **doc**: fix typo in BUILDING.md (raisinten) [#&#8203;35807](https://github.com/nodejs/node/pull/35807) - \[[`f41c28cf4b`](https://github.com/nodejs/node/commit/f41c28cf4b)] - **doc**: fix YAML lint error on master (Rich Trott) [#&#8203;35709](https://github.com/nodejs/node/pull/35709) - \[[`4a768bc13b`](https://github.com/nodejs/node/commit/4a768bc13b)] - **doc**: upgrade stability status of report API (Gireesh Punathil) [#&#8203;35654](https://github.com/nodejs/node/pull/35654) - \[[`a3c564bead`](https://github.com/nodejs/node/commit/a3c564bead)] - **doc,child_process**: `pid` can be `undefined` when `ENOENT` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014) - \[[`404327563a`](https://github.com/nodejs/node/commit/404327563a)] - **doc,tools**: allow stability table to be updated (Richard Lau) [#&#8203;38048](https://github.com/nodejs/node/pull/38048) - \[[`eb6ea8501b`](https://github.com/nodejs/node/commit/eb6ea8501b)] - **doc,tools**: use only one level 1 header per page (Rich Trott) [#&#8203;37839](https://github.com/nodejs/node/pull/37839) - \[[`73c1999d0c`](https://github.com/nodejs/node/commit/73c1999d0c)] - **docs**: add references to punycode.md (Isaac Levy) [#&#8203;36761](https://github.com/nodejs/node/pull/36761) - \[[`bd38dfbfcc`](https://github.com/nodejs/node/commit/bd38dfbfcc)] - **domain**: add name to monkey-patched emit function (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550) - \[[`13d972dd86`](https://github.com/nodejs/node/commit/13d972dd86)] - **domain**: show falsy names as anonymous for DEP0097 (Colin Ihrig) [#&#8203;37550](https://github.com/nodejs/node/pull/37550) - \[[`3f43743c9d`](https://github.com/nodejs/node/commit/3f43743c9d)] - **domain**: make node resilient to Array prototype tempering (Antoine du Hamel) [#&#8203;36676](https://github.com/nodejs/node/pull/36676) - \[[`4807499d21`](https://github.com/nodejs/node/commit/4807499d21)] - **domain**: improve deprecation warning text for DEP0097 (Anna Henningsen) [#&#8203;36136](https://github.com/nodejs/node/pull/36136) - \[[`b01c496e34`](https://github.com/nodejs/node/commit/b01c496e34)] - **errors**: do not call resolve on URLs with schemes (Benjamin Coe) [#&#8203;35903](https://github.com/nodejs/node/pull/35903) - \[[`3c37f896a4`](https://github.com/nodejs/node/commit/3c37f896a4)] - **errors**: print original exception context (Benjamin Coe) [#&#8203;33491](https://github.com/nodejs/node/pull/33491) - \[[`3006302372`](https://github.com/nodejs/node/commit/3006302372)] - **(SEMVER-MINOR)** **events**: add max listener warning for EventTarget (James M Snell) [#&#8203;36001](https://github.com/nodejs/node/pull/36001) - \[[`6e734a8a61`](https://github.com/nodejs/node/commit/6e734a8a61)] - **(SEMVER-MINOR)** **events**: getEventListeners static (Benjamin Gruenbaum) [#&#8203;35991](https://github.com/nodejs/node/pull/35991) - \[[`64cd54be57`](https://github.com/nodejs/node/commit/64cd54be57)] - **events**: disabled manual construction AbortSignal (raisinten) [#&#8203;36094](https://github.com/nodejs/node/pull/36094) - \[[`daad5214c4`](https://github.com/nodejs/node/commit/daad5214c4)] - **events**: fire handlers in correct oder (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`7c95cfc164`](https://github.com/nodejs/node/commit/7c95cfc164)] - **events**: define abort on prototype (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`bdad1bc4fc`](https://github.com/nodejs/node/commit/bdad1bc4fc)] - **events**: support event handlers on prototypes (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`6e21e8283f`](https://github.com/nodejs/node/commit/6e21e8283f)] - **events**: define event handler as enumerable (Benjamin Gruenbaum) [#&#8203;35931](https://github.com/nodejs/node/pull/35931) - \[[`e51d7c535f`](https://github.com/nodejs/node/commit/e51d7c535f)] - **events**: support emit on nodeeventtarget (Benjamin Gruenbaum) [#&#8203;35851](https://github.com/nodejs/node/pull/35851) - \[[`6558ffa76b`](https://github.com/nodejs/node/commit/6558ffa76b)] - **events**: add a few tests (Benjamin Gruenbaum) [#&#8203;35806](https://github.com/nodejs/node/pull/35806) - \[[`bf728b5439`](https://github.com/nodejs/node/commit/bf728b5439)] - **events**: make abort_controller event trusted (Benjamin Gruenbaum) [#&#8203;35811](https://github.com/nodejs/node/pull/35811) - \[[`3f33b5a89e`](https://github.com/nodejs/node/commit/3f33b5a89e)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with on (James M Snell) [#&#8203;34912](https://github.com/nodejs/node/pull/34912) - \[[`1fefb5cb75`](https://github.com/nodejs/node/commit/1fefb5cb75)] - **(SEMVER-MINOR)** **events**: allow use of AbortController with once (James M Snell) [#&#8203;34911](https://github.com/nodejs/node/pull/34911) - \[[`85987450df`](https://github.com/nodejs/node/commit/85987450df)] - **fs**: fix chown abort (Darshan Sen) [#&#8203;38004](https://github.com/nodejs/node/pull/38004) - \[[`dd1fe6d8ba`](https://github.com/nodejs/node/commit/dd1fe6d8ba)] - **fs**: add promisified readFile benchmark (Nitzan Uziely) [#&#8203;37608](https://github.com/nodejs/node/pull/37608) - \[[`f2279f856e`](https://github.com/nodejs/node/commit/f2279f856e)] - **fs**: fix writeFile signal does not close file (Nitzan Uziely) [#&#8203;37402](https://github.com/nodejs/node/pull/37402) - \[[`92348a9216`](https://github.com/nodejs/node/commit/92348a9216)] - **(SEMVER-MINOR)** **fs**: use a default callback for fs.close() (James M Snell) [#&#8203;37174](https://github.com/nodejs/node/pull/37174) - \[[`e582832643`](https://github.com/nodejs/node/commit/e582832643)] - **fs**: only use Buffer.concat in promises.readFile when necessary (Anna Henningsen) [#&#8203;37127](https://github.com/nodejs/node/pull/37127) - \[[`a1ee9b3680`](https://github.com/nodejs/node/commit/a1ee9b3680)] - **fs**: add explicit note about undefined path when recursive (Sebastian Silbermann) [#&#8203;37010](https://github.com/nodejs/node/pull/37010) - \[[`fe6e5e4c0e`](https://github.com/nodejs/node/commit/fe6e5e4c0e)] - **fs**: accept non-32-bit length in writeBuffer (raisinten) [#&#8203;36667](https://github.com/nodejs/node/pull/36667) - \[[`455243667a`](https://github.com/nodejs/node/commit/455243667a)] - **fs**: move method definition from header (Yash Ladha) [#&#8203;36256](https://github.com/nodejs/node/pull/36256) - \[[`1bffd8d7bb`](https://github.com/nodejs/node/commit/1bffd8d7bb)] - **fs**: pass ERR_DIR_CLOSED asynchronously to dir.close (Zijian Liu) [#&#8203;36243](https://github.com/nodejs/node/pull/36243) - \[[`9b8596a67f`](https://github.com/nodejs/node/commit/9b8596a67f)] - **fs**: fix when path is buffer on fs.symlinkSync (himself65) [#&#8203;34540](https://github.com/nodejs/node/pull/34540) - \[[`026941381b`](https://github.com/nodejs/node/commit/026941381b)] - **fs**: fix pre-aborted writeFile AbortSignal file leak (Nitzan Uziely) [#&#8203;37393](https://github.com/nodejs/node/pull/37393) - \[[`7aa2e5d8dc`](https://github.com/nodejs/node/commit/7aa2e5d8dc)] - **(SEMVER-MINOR)** **fs**: add AbortSignal support to watch (Benjamin Gruenbaum) [#&#8203;37190](https://github.com/nodejs/node/pull/37190) - \[[`219cd000c0`](https://github.com/nodejs/node/commit/219cd000c0)] - **(SEMVER-MINOR)** **fs**: support abortsignal in writeFile (Benjamin Gruenbaum) [#&#8203;35993](https://github.com/nodejs/node/pull/35993) - \[[`5f88b644f8`](https://github.com/nodejs/node/commit/5f88b644f8)] - **(SEMVER-MINOR)** **fs**: add support for AbortSignal in readFile (Benjamin Gruenbaum) [#&#8203;35911](https://github.com/nodejs/node/pull/35911) - \[[`443cacee5f`](https://github.com/nodejs/node/commit/443cacee5f)] - **fs**: remove custom Buffer pool for streams (Robert Nagy) [#&#8203;33981](https://github.com/nodejs/node/pull/33981) - \[[`d0115f14f6`](https://github.com/nodejs/node/commit/d0115f14f6)] - **(SEMVER-MINOR)** **http**: add http.ClientRequest.getRawHeaderNames() (simov) [#&#8203;37660](https://github.com/nodejs/node/pull/37660) - \[[`105b8630b9`](https://github.com/nodejs/node/commit/105b8630b9)] - **http**: explain the possibilty of refactor unused argument (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275) - \[[`926bb4fd17`](https://github.com/nodejs/node/commit/926bb4fd17)] - **http**: explain the unused argument in IncomingMessage.\_read (Qingyu Deng) [#&#8203;37275](https://github.com/nodejs/node/pull/37275) - \[[`e7bc37909c`](https://github.com/nodejs/node/commit/e7bc37909c)] - **http**: cleanup ClientRequest oncreate (Robert Nagy) [#&#8203;36862](https://github.com/nodejs/node/pull/36862) - \[[`5064822f24`](https://github.com/nodejs/node/commit/5064822f24)] - **http**: make HEAD method to work with keep-alive (Joseph Hackman) [#&#8203;34231](https://github.com/nodejs/node/pull/34231) - \[[`8163f3179b`](https://github.com/nodejs/node/commit/8163f3179b)] - **http**: remove dead code from internal/http.js (ZiJian Liu) [#&#8203;36630](https://github.com/nodejs/node/pull/36630) - \[[`ad39b37974`](https://github.com/nodejs/node/commit/ad39b37974)] - **(SEMVER-MINOR)** **http**: enable call chaining with setHeader() (pooja d.p) [#&#8203;35924](https://github.com/nodejs/node/pull/35924) - \[[`623099db4b`](https://github.com/nodejs/node/commit/623099db4b)] - **(SEMVER-MINOR)** **http**: report request start and end with diagnostics_channel (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895) - \[[`524b7134e8`](https://github.com/nodejs/node/commit/524b7134e8)] - **(SEMVER-MINOR)** **http**: add support for abortsignal to http.request (Benjamin Gruenbaum) [#&#8203;36048](https://github.com/nodejs/node/pull/36048) - \[[`f70aee03ab`](https://github.com/nodejs/node/commit/f70aee03ab)] - **(SEMVER-MINOR)** **http**: set lifo as the default scheduling strategy in Agent (Matteo Collina) [#&#8203;36685](https://github.com/nodejs/node/pull/36685) - \[[`16a16508c4`](https://github.com/nodejs/node/commit/16a16508c4)] - **http2**: fix typos in core.js (Pranshu Jethmalani) [#&#8203;36719](https://github.com/nodejs/node/pull/36719) - \[[`2e259220cb`](https://github.com/nodejs/node/commit/2e259220cb)] - **(SEMVER-MINOR)** **http2**: add updateSettings to both http2 servers (Vincent Boivin) [#&#8203;35383](https://github.com/nodejs/node/pull/35383) - \[[`336fb18b44`](https://github.com/nodejs/node/commit/336fb18b44)] - **http2**: add support for AbortSignal to http2Session.request (Madara Uchiha) [#&#8203;36070](https://github.com/nodejs/node/pull/36070) - \[[`f44b3c12e5`](https://github.com/nodejs/node/commit/f44b3c12e5)] - **https**: add abortcontroller test (Benjamin Gruenbaum) [#&#8203;36307](https://github.com/nodejs/node/pull/36307) - \[[`b5ad655c6b`](https://github.com/nodejs/node/commit/b5ad655c6b)] - **lib**: properly process JavaScript exceptions on async_hooks fatal error (legendecas) [#&#8203;38106](https://github.com/nodejs/node/pull/38106) - \[[`1d8269302e`](https://github.com/nodejs/node/commit/1d8269302e)] - **lib**: change wording in lib/domain.js comment (Akhil Marsonya) [#&#8203;37933](https://github.com/nodejs/node/pull/37933) - \[[`a61fd37786`](https://github.com/nodejs/node/commit/a61fd37786)] - **lib**: change wording in lib/internal/child_process comment (Akhil Marsonya) [#&#8203;37903](https://github.com/nodejs/node/pull/37903) - \[[`13ac680cdb`](https://github.com/nodejs/node/commit/13ac680cdb)] - **lib**: fix typo in internal/modules/esm/module_job.js (marsonya) [#&#8203;37773](https://github.com/nodejs/node/pull/37773) - \[[`eea4f3bf82`](https://github.com/nodejs/node/commit/eea4f3bf82)] - **lib**: fix typo in lib/internal/bootstrap/loaders.js (marsonya) [#&#8203;37644](https://github.com/nodejs/node/pull/37644) - \[[`fe47563bed`](https://github.com/nodejs/node/commit/fe47563bed)] - **lib**: simplify check in child_process (Darshan Sen) [#&#8203;37367](https://github.com/nodejs/node/pull/37367) - \[[`d78e2ed82c`](https://github.com/nodejs/node/commit/d78e2ed82c)] - **lib**: remove non used getter in `lib/perf\_hooks.js` (Juan José Arboleda) [#&#8203;36907](https://github.com/nodejs/node/pull/36907) - \[[`08b69fb1e8`](https://github.com/nodejs/node/commit/08b69fb1e8)] - **lib**: fix diagnostics_channel hasSubscribers error (ZiJian Liu) [#&#8203;36599](https://github.com/nodejs/node/pull/36599) - \[[`3ee0423dfa`](https://github.com/nodejs/node/commit/3ee0423dfa)] - **(SEMVER-MINOR)** **lib**: support BigInt in querystring.stringify (raisinten) [#&#8203;36499](https://github.com/nodejs/node/pull/36499) - \[[`e71eed620a`](https://github.com/nodejs/node/commit/e71eed620a)] - **lib**: fix typo in internal/errors.js (raisinten) [#&#8203;36426](https://github.com/nodejs/node/pull/36426) - \[[`be537fe877`](https://github.com/nodejs/node/commit/be537fe877)] - **lib**: remove primordials.SafePromise (Antoine du Hamel) [#&#8203;36149](https://github.com/nodejs/node/pull/36149) - \[[`60ef53cc14`](https://github.com/nodejs/node/commit/60ef53cc14)] - **(SEMVER-MINOR)** **lib**: create diagnostics_channel module (Stephen Belanger) [#&#8203;34895](https://github.com/nodejs/node/pull/34895) - \[[`b1507c41e7`](https://github.com/nodejs/node/commit/b1507c41e7)] - **lib**: add brand checks to AbortController and AbortSignal (Mattias Buelens) [#&#8203;37720](https://github.com/nodejs/node/pull/37720) - \[[`448a6a22cf`](https://github.com/nodejs/node/commit/448a6a22cf)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.abort() (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693) - \[[`4cd9f39066`](https://github.com/nodejs/node/commit/4cd9f39066)] - **lib**: set abort-controller toStringTag (Benjamin Gruenbaum) [#&#8203;36115](https://github.com/nodejs/node/pull/36115) - \[[`b2f8e8dd28`](https://github.com/nodejs/node/commit/b2f8e8dd28)] - **lib**: let abort_controller target be EventTarget (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869) - \[[`f30f9314c8`](https://github.com/nodejs/node/commit/f30f9314c8)] - **(SEMVER-MINOR)** **lib**: initial experimental AbortController implementation (James M Snell) [#&#8203;33527](https://github.com/nodejs/node/pull/33527) - \[[`5e77bcd3dc`](https://github.com/nodejs/node/commit/5e77bcd3dc)] - **(SEMVER-MINOR)** **lib**: add throws option to fs.f/l/statSync (Andrew Casey) [#&#8203;33716](https://github.com/nodejs/node/pull/33716) - \[[`e0df3bc751`](https://github.com/nodejs/node/commit/e0df3bc751)] - **meta**: notify slack when someone force pushes (Mary Marchini) [#&#8203;35131](https://github.com/nodejs/node/pull/35131) - \[[`079671d3c1`](https://github.com/nodejs/node/commit/079671d3c1)] - **module**: improve error message for invalid data URL (Antoine du Hamel) [#&#8203;37701](https://github.com/nodejs/node/pull/37701) - \[[`4cdd9b63b4`](https://github.com/nodejs/node/commit/4cdd9b63b4)] - **module**: make synthetic module evaluation steps return a Promise to support top level await (Daniel Clark) [#&#8203;37300](https://github.com/nodejs/node/pull/37300) - \[[`2413907a12`](https://github.com/nodejs/node/commit/2413907a12)] - **(SEMVER-MINOR)** **module**: add isPreloading indicator (James M Snell) [#&#8203;36263](https://github.com/nodejs/node/pull/36263) - \[[`fd08c37d98`](https://github.com/nodejs/node/commit/fd08c37d98)] - **(SEMVER-MINOR)** **net**: add support for resolving DNS CAA records (Danny Sonnenschein) [#&#8203;35466](https://github.com/nodejs/node/pull/35466) - \[[`8413759d84`](https://github.com/nodejs/node/commit/8413759d84)] - **node-api**: fix crash in finalization (Michael Dawson) [#&#8203;37876](https://github.com/nodejs/node/pull/37876) - \[[`6e018559db`](https://github.com/nodejs/node/commit/6e018559db)] - **node-api**: stop ref gc during environment teardown (Gabriel Schulhof) [#&#8203;37616](https://github.com/nodejs/node/pull/37616) - \[[`b5b1ad39dd`](https://github.com/nodejs/node/commit/b5b1ad39dd)] - **node-api**: force env shutdown deferring behavior (Gabriel Schulhof) [#&#8203;37303](https://github.com/nodejs/node/pull/37303) - \[[`36abc1802c`](https://github.com/nodejs/node/commit/36abc1802c)] - **(SEMVER-MINOR)** **node-api**: define version 8 (Gabriel Schulhof) [#&#8203;37652](https://github.com/nodejs/node/pull/37652) - \[[`991251fbb2`](https://github.com/nodejs/node/commit/991251fbb2)] - **os**: performance improvement in vector allocation (Yash Ladha) [#&#8203;36748](https://github.com/nodejs/node/pull/36748) - \[[`395b9a69a1`](https://github.com/nodejs/node/commit/395b9a69a1)] - **perf_hooks**: make nodeTiming a first-class object (Momtchil Momtchev) [#&#8203;35977](https://github.com/nodejs/node/pull/35977) - \[[`506f1d4044`](https://github.com/nodejs/node/commit/506f1d4044)] - **policy**: fix cascade getting scope (Bradley Meck) [#&#8203;37298](https://github.com/nodejs/node/pull/37298) - \[[`e9110d56d2`](https://github.com/nodejs/node/commit/e9110d56d2)] - **process**: do not lazily load AsyncResource (Michaël Zasso) [#&#8203;38041](https://github.com/nodejs/node/pull/38041) - \[[`43057595e2`](https://github.com/nodejs/node/commit/43057595e2)] - **process**: passing -1 to setuid/setgid should not abort (James M Snell) [#&#8203;36786](https://github.com/nodejs/node/pull/36786) - \[[`70cbe4a565`](https://github.com/nodejs/node/commit/70cbe4a565)] - **readline**: fix behaviour of Interface plugged to a non-terminal output (Antoine du Hamel) [#&#8203;36774](https://github.com/nodejs/node/pull/36774) - \[[`ffaa1149e1`](https://github.com/nodejs/node/commit/ffaa1149e1)] - **(SEMVER-MINOR)** **readline**: add getPrompt to get the current prompt (Mattias Runge-Broberg) [#&#8203;33675](https://github.com/nodejs/node/pull/33675) - \[[`8d4936da2c`](https://github.com/nodejs/node/commit/8d4936da2c)] - **repl**: fix error message printing (Anna Henningsen) [#&#8203;38209](https://github.com/nodejs/node/pull/38209) - \[[`1ac07b2aee`](https://github.com/nodejs/node/commit/1ac07b2aee)] - **repl**: disable blocking completions by default (Anna Henningsen) [#&#8203;36564](https://github.com/nodejs/node/pull/36564) - \[[`5ed770e1b7`](https://github.com/nodejs/node/commit/5ed770e1b7)] - **src**: cache some context in locals (Khaidi Chu) [#&#8203;37473](https://github.com/nodejs/node/pull/37473) - \[[`ec4be2d7e1`](https://github.com/nodejs/node/commit/ec4be2d7e1)] - **src**: fix finalization crash (James M Snell) [#&#8203;38250](https://github.com/nodejs/node/pull/38250) - \[[`854a2a9c8a`](https://github.com/nodejs/node/commit/854a2a9c8a)] - **src**: fix typo for initialization (Yash Ladha) [#&#8203;37974](https://github.com/nodejs/node/pull/37974) - \[[`b0f8f8d637`](https://github.com/nodejs/node/commit/b0f8f8d637)] - **src**: fix typo in node_mutex (Tobias Nießen) [#&#8203;38011](https://github.com/nodejs/node/pull/38011) - \[[`e4f614100f`](https://github.com/nodejs/node/commit/e4f614100f)] - **src**: document newer values for --unhandled-rejections flag (David Glasser) [#&#8203;37899](https://github.com/nodejs/node/pull/37899) - \[[`d0cb129cdb`](https://github.com/nodejs/node/commit/d0cb129cdb)] - **src**: fix typo in src code guide (Tobias Nießen) [#&#8203;37956](https://github.com/nodejs/node/pull/37956) - \[[`6aa1ed20fa`](https://github.com/nodejs/node/commit/6aa1ed20fa)] - **src**: report idle time correctly (Stephen Belanger) [#&#8203;37868](https://github.com/nodejs/node/pull/37868) - \[[`eb0faa12df`](https://github.com/nodejs/node/commit/eb0faa12df)] - **src**: add .note.GNU-stack section (James Addison) [#&#8203;37688](https://github.com/nodejs/node/pull/37688) - \[[`ec5d7b1ec0`](https://github.com/nodejs/node/commit/ec5d7b1ec0)] - **src**: fix variable name of OnCloseReceived callback (Tobias Nießen) [#&#8203;37521](https://github.com/nodejs/node/pull/37521) - \[[`fc0d6e4008`](https://github.com/nodejs/node/commit/fc0d6e4008)] - **src**: add error formatting support (Gus Caplan) [#&#8203;37598](https://github.com/nodejs/node/pull/37598) - \[[`512ae7e125`](https://github.com/nodejs/node/commit/512ae7e125)] - **src**: adjust THP sysfs config token retrieval and file closure (James Addison) [#&#8203;37187](https://github.com/nodejs/node/pull/37187) - \[[`bf16d288e2`](https://github.com/nodejs/node/commit/bf16d288e2)] - **src**: fix return type of method in string_search.h (Darshan Sen) [#&#8203;37167](https://github.com/nodejs/node/pull/37167) - \[[`f476c6dc0c`](https://github.com/nodejs/node/commit/f476c6dc0c)] - **src**: refactor v8 binding (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112) - \[[`33ebf5d9ef`](https://github.com/nodejs/node/commit/33ebf5d9ef)] - **src**: rename binding_data_name to type_name in BindingData (Joyee Cheung) [#&#8203;37112](https://github.com/nodejs/node/pull/37112) - \[[`88d9676e74`](https://github.com/nodejs/node/commit/88d9676e74)] - **src**: use make_shared for safe allocation (Yash Ladha) [#&#8203;37139](https://github.com/nodejs/node/pull/37139) - \[[`ec7e5bc786`](https://github.com/nodejs/node/commit/ec7e5bc786)] - **src**: fix warning in string_search.h (Darshan Sen) [#&#8203;37146](https://github.com/nodejs/node/pull/37146) - \[[`00309eea27`](https://github.com/nodejs/node/commit/00309eea27)] - **src**: read exactly two tokens from Linux THP sysfs config (James Addison) [#&#8203;37065](https://github.com/nodejs/node/pull/37065) - \[[`1ecdb66299`](https://github.com/nodejs/node/commit/1ecdb66299)] - **src**: expose BaseObject::kInternalFieldCount in post-mortem metadata (Joyee Cheung) [#&#8203;37111](https://github.com/nodejs/node/pull/37111) - \[[`93517dce78`](https://github.com/nodejs/node/commit/93517dce78)] - **src**: replace push_back with emplace_back in debug_utils (raisinten) [#&#8203;36897](https://github.com/nodejs/node/pull/36897) - \[[`dcba374604`](https://github.com/nodejs/node/commit/dcba374604)] - **src**: fix leading backslash bug in URL (raisinten) [#&#8203;36613](https://github.com/nodejs/node/pull/36613) - \[[`c308b06483`](https://github.com/nodejs/node/commit/c308b06483)] - **src**: remove unnecessary ToLocalChecked node_errors (Daniel Bevenius) [#&#8203;36547](https://github.com/nodejs/node/pull/36547) - \[[`e8f8c70911`](https://github.com/nodejs/node/commit/e8f8c70911)] - **src**: remove unnecessary ToLocalChecked call (Daniel Bevenius) [#&#8203;36523](https://github.com/nodejs/node/pull/36523) - \[[`a356f32e66`](https://github.com/nodejs/node/commit/a356f32e66)] - **src**: remove empty name check in node_env_var.cc (raisinten) [#&#8203;36133](https://github.com/nodejs/node/pull/36133) - \[[`308cb93304`](https://github.com/nodejs/node/commit/308cb93304)] - **src**: remove duplicate V macros in node_v8.cc (Daniel Bevenius) [#&#8203;36454](https://github.com/nodejs/node/pull/36454) - \[[`6df1132c85`](https://github.com/nodejs/node/commit/6df1132c85)] - **src**: guard against env != null in node_errors.cc (Anna Henningsen) [#&#8203;36414](https://github.com/nodejs/node/pull/36414) - \[[`3701e5d14f`](https://github.com/nodejs/node/commit/3701e5d14f)] - **src**: add typedef for CleanupHookCallback callback (Daniel Bevenius) [#&#8203;36442](https://github.com/nodejs/node/pull/36442) - \[[`bd90752a7e`](https://github.com/nodejs/node/commit/bd90752a7e)] - **src**: fix indentation in memory_tracker-inl.h (Daniel Bevenius) [#&#8203;36425](https://github.com/nodejs/node/pull/36425) - \[[`05bb3e14cf`](https://github.com/nodejs/node/commit/05bb3e14cf)] - **src**: remove identical V macro (Daniel Bevenius) [#&#8203;36427](https://github.com/nodejs/node/pull/36427) - \[[`4b386e3dbe`](https://github.com/nodejs/node/commit/4b386e3dbe)] - **src**: add missing context scopes (Anna Henningsen) [#&#8203;36413](https://github.com/nodejs/node/pull/36413) - \[[`685ed2c275`](https://github.com/nodejs/node/commit/685ed2c275)] - **src**: use ToLocal in DeserializeProperties (Daniel Bevenius) [#&#8203;36279](https://github.com/nodejs/node/pull/36279) - \[[`d8cb34158b`](https://github.com/nodejs/node/commit/d8cb34158b)] - **src**: update node.rc file description (devsnek) [#&#8203;36197](https://github.com/nodejs/node/pull/36197) - \[[`bacd432f34`](https://github.com/nodejs/node/commit/bacd432f34)] - **src**: move all base64.h inline methods into -inl.h header file (Anna Henningsen) [#&#8203;35432](https://github.com/nodejs/node/pull/35432) - \[[`b1d5160828`](https://github.com/nodejs/node/commit/b1d5160828)] - **src**: guard against nullptr deref in TimerWrapHandle::Stop (Anna Henningsen) [#&#8203;34460](https://github.com/nodejs/node/pull/34460) - \[[`cf2475ca09`](https://github.com/nodejs/node/commit/cf2475ca09)] - **src**: refactor TimerWrap lifetime management (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252) - \[[`b8bccc3132`](https://github.com/nodejs/node/commit/b8bccc3132)] - **src**: remove user_data from TimerWrap (Anna Henningsen) [#&#8203;34252](https://github.com/nodejs/node/pull/34252) - \[[`8e1e3b563f`](https://github.com/nodejs/node/commit/8e1e3b563f)] - **src**: replace InspectorTimer with TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186) - \[[`a3a4d2c283`](https://github.com/nodejs/node/commit/a3a4d2c283)] - **src**: add TimerWrap utility (James M Snell) [#&#8203;34186](https://github.com/nodejs/node/pull/34186) - \[[`ae9bd89329`](https://github.com/nodejs/node/commit/ae9bd89329)] - **src**: perform bounds checking on error source line (Anna Henningsen) [#&#8203;33645](https://github.com/nodejs/node/pull/33645) - \[[`44868010f7`](https://github.com/nodejs/node/commit/44868010f7)] - **(SEMVER-MINOR)** **src**: add loop idle time in diagnostic report (Gireesh Punathil) [#&#8203;35940](https://github.com/nodejs/node/pull/35940) - \[[`4793f165dc`](https://github.com/nodejs/node/commit/4793f165dc)] - **stream**: fix pipe deadlock when starting with needDrain (Robert Nagy) [#&#8203;36563](https://github.com/nodejs/node/pull/36563) - \[[`617f2dc0cf`](https://github.com/nodejs/node/commit/617f2dc0cf)] - **(SEMVER-MINOR)** **stream**: writableNeedDrain (Robert Nagy) [#&#8203;35348](https://github.com/nodejs/node/pull/35348) - \[[`26e9c39cea`](https://github.com/nodejs/node/commit/26e9c39cea)] - **stream**: remove isPromise utility function (Antoine du Hamel) [#&#8203;35925](https://github.com/nodejs/node/pull/35925) - \[[`7858de4f63`](https://github.com/nodejs/node/commit/7858de4f63)] - **stream,util**: fix "the the" typo in comments (Luigi Pinca) [#&#8203;37674](https://github.com/nodejs/node/pull/37674) - \[[`93c917c1ce`](https://github.com/nodejs/node/commit/93c917c1ce)] - **test**: move buffer-as-path symlink test to its own test file (Rich Trott) [#&#8203;34569](https://github.com/nodejs/node/pull/34569) - \[[`cd95bf3dd7`](https://github.com/nodejs/node/commit/cd95bf3dd7)] - **test**: change Fixes: to Refs: (Rich Trott) [#&#8203;34568](https://github.com/nodejs/node/pull/34568) - \[[`2e81ded71e`](https://github.com/nodejs/node/commit/2e81ded71e)] - **test**: fix flaky test-dns and test-dns-lookup (Rich Trott) [#&#8203;38282](https://github.com/nodejs/node/pull/38282) - \[[`ea1183c6ec`](https://github.com/nodejs/node/commit/ea1183c6ec)] - **test**: fixup failing test/internet/test-dns.js (James M Snell) [#&#8203;38241](https://github.com/nodejs/node/pull/38241) - \[[`ae44e5f5b5`](https://github.com/nodejs/node/commit/ae44e5f5b5)] - **test**: add tests for missing https agent options (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202) - \[[`796007ba07`](https://github.com/nodejs/node/commit/796007ba07)] - **test**: fix test-https-agent-additional-options.js (Rich Trott) [#&#8203;38202](https://github.com/nodejs/node/pull/38202) - \[[`a4275eec79`](https://github.com/nodejs/node/commit/a4275eec79)] - **test**: fix typo in comment in binding.c (Tobias Nießen) [#&#8203;38220](https://github.com/nodejs/node/pull/38220) - \[[`95c7dabbb4`](https://github.com/nodejs/node/commit/95c7dabbb4)] - **test**: fix typo in gtest-all.cc (Ikko Ashimine) [#&#8203;38224](https://github.com/nodejs/node/pull/38224) - \[[`605f830672`](https://github.com/nodejs/node/commit/605f830672)] - **test**: add undefined fatalException exit code test (Nitzan Uziely) [#&#8203;38119](https://github.com/nodejs/node/pull/38119) - \[[`ce70ea8a85`](https://github.com/nodejs/node/commit/ce70ea8a85)] - **test**: skip fs.watch() test on IBMi (Rich Trott) [#&#8203;38192](https://github.com/nodejs/node/pull/38192) - \[[`058abbece1`](https://github.com/nodejs/node/commit/058abbece1)] - **test**: skip test-vm-memleak in ASAN (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`c7981daf09`](https://github.com/nodejs/node/commit/c7981daf09)] - **test**: skip test-hash-seed on armv6 and armv7 (Rich Trott) [#&#8203;34289](https://github.com/nodejs/node/pull/34289) - \[[`552c945c7c`](https://github.com/nodejs/node/commit/552c945c7c)] - **test**: remove unneeded m flag on regular expressions (Rich Trott) [#&#8203;38124](https://github.com/nodejs/node/pull/38124) - \[[`e999da7004`](https://github.com/nodejs/node/commit/e999da7004)] - **test**: fix flaky test-zlib-unused-weak.js (Ouyang Yadong) [#&#8203;38149](https://github.com/nodejs/node/pull/38149) - \[[`aa0d8146e9`](https://github.com/nodejs/node/commit/aa0d8146e9)] - **test**: add regression test for serdes readDouble() (Colin Ihrig) [#&#8203;38121](https://github.com/nodejs/node/pull/38121) - \[[`dd8c9ad65b`](https://github.com/nodejs/node/commit/dd8c9ad65b)] - **test**: skip test-crypto-dh-keys on armv6 and armv7 (Rich Trott) [#&#8203;38076](https://github.com/nodejs/node/pull/38076) - \[[`7d85617484`](https://github.com/nodejs/node/commit/7d85617484)] - **test**: fix skip message for test-macos-app-sandbox (Tobias Nießen) [#&#8203;38114](https://github.com/nodejs/node/pull/38114) - \[[`f1aae43349`](https://github.com/nodejs/node/commit/f1aae43349)] - **test**: correct test comment (Evan Lucas) [#&#8203;38095](https://github.com/nodejs/node/pull/38095) - \[[`d6ab9bf1ad`](https://github.com/nodejs/node/commit/d6ab9bf1ad)] - **test**: fix flaky test-net-timeout (Rich Trott) [#&#8203;38060](https://github.com/nodejs/node/pull/38060) - \[[`1cb3d89bf1`](https://github.com/nodejs/node/commit/1cb3d89bf1)] - **test**: fix flaky timeout-delayed-body and headers tests (Nitzan Uziely) [#&#8203;38045](https://github.com/nodejs/node/pull/38045) - \[[`8590720489`](https://github.com/nodejs/node/commit/8590720489)] - **test**: add extra space in test failure output (Qingyu Deng) [#&#8203;37957](https://github.com/nodejs/node/pull/37957) - \[[`d6346e1486`](https://github.com/nodejs/node/commit/d6346e1486)] - **test**: deflake test-fs-read-optional-params (Luigi Pinca) [#&#8203;37991](https://github.com/nodejs/node/pull/37991) - \[[`abec939c58`](https://github.com/nodejs/node/commit/abec939c58)] - **test**: improve clarity of ALS-enable-disable.js (Darkripper214) [#&#8203;38008](https://github.com/nodejs/node/pull/38008) - \[[`2e3305d1b3`](https://github.com/nodejs/node/commit/2e3305d1b3)] - **test**: add DataView test case for v8 serdes (Rich Trott) [#&#8203;37955](https://github.com/nodejs/node/pull/37955) - \[[`7b0e4e23f2`](https://github.com/nodejs/node/commit/7b0e4e23f2)] - **test**: fix typeof comparison (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924) - \[[`4c5eff91ef`](https://github.com/nodejs/node/commit/4c5eff91ef)] - **test**: increase wiggle room for memory in test-worker-resource-limits (Rich Trott) [#&#8203;37901](https://github.com/nodejs/node/pull/37901) - \[[`939f5541fa`](https://github.com/nodejs/node/commit/939f5541fa)] - **test**: fix deprecation warning in test-doctool-html (Antoine du Hamel) [#&#8203;37858](https://github.com/nodejs/node/pull/37858) - \[[`f5334881f2`](https://github.com/nodejs/node/commit/f5334881f2)] - **test**: fix ibmi skip message (Tobias Nießen) [#&#8203;37821](https://github.com/nodejs/node/pull/37821) - \[[`cd71199cdb`](https://github.com/nodejs/node/commit/cd71199cdb)] - **test**: fix flaky test-vm-timeout-escape-promise-module-2 (Rich Trott) [#&#8203;37842](https://github.com/nodejs/node/pull/37842) - \[[`b858e12fca`](https://github.com/nodejs/node/commit/b858e12fca)] - **test**: remove duplicated test for eventtarget (himself65) [#&#8203;37853](https://github.com/nodejs/node/pull/37853) - \[[`e57e532d28`](https://github.com/nodejs/node/commit/e57e532d28)] - **test**: relax Y2K38 check in test-fs-utimes-y2K38 (Richard Lau) [#&#8203;37825](https://github.com/nodejs/node/pull/37825) - \[[`08d32e18b7`](https://github.com/nodejs/node/commit/08d32e18b7)] - **test**: remove skip for fixed test-benchmark-fs (Rich Trott) [#&#8203;37803](https://github.com/nodejs/node/pull/37803) - \[[`3f86dc1d9b`](https://github.com/nodejs/node/commit/3f86dc1d9b)] - **test**: improve test-arm-math-illegal-instruction (marsonya) [#&#8203;37670](https://github.com/nodejs/node/pull/37670) - \[[`5c60087132`](https://github.com/nodejs/node/commit/5c60087132)] - **(SEMVER-MINOR)** **test**: app atob web platform tests (James M Snell) [#&#8203;37529](https://github.com/nodejs/node/pull/37529) - \[[`02916edbdd`](https://github.com/nodejs/node/commit/02916edbdd)] - **test**: add known_issues test for [#&#8203;13683](https://github.com/nodejs/node/issues/13683) (Rich Trott) [#&#8203;37744](https://github.com/nodejs/node/pull/37744) - \[[`62292031a8`](https://github.com/nodejs/node/commit/62292031a8)] - **test**: fix test-fs-utimes on non-Y2K38 file systems (Rich Trott) [#&#8203;37707](https://github.com/nodejs/node/pull/37707) - \[[`e29905441e`](https://github.com/nodejs/node/commit/e29905441e)] - **test**: remove unnecessary V8 flag (Antoine du Hamel) [#&#8203;37671](https://github.com/nodejs/node/pull/37671) - \[[`27d4fedca3`](https://github.com/nodejs/node/commit/27d4fedca3)] - **test**: improve error reporting in test-child-process-pipe-dataflow (Rich Trott) [#&#8203;37632](https://github.com/nodejs/node/pull/37632) - \[[`376fcc75c6`](https://github.com/nodejs/node/commit/376fcc75c6)] - **test**: remove FLAKY status for test-async-hooks-http-parser-destroy (Rich Trott) [#&#8203;37636](https://github.com/nodejs/node/pull/37636) - \[[`a91a200be0`](https://github.com/nodejs/node/commit/a91a200be0)] - **test**: remove FLAKY status for fixed test (Rich Trott) [#&#8203;37633](https://github.com/nodejs/node/pull/37633) - \[[`102d12f308`](https://github.com/nodejs/node/commit/102d12f308)] - **test**: clear flaky designation for test-stream-pipeline-http2 (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631) - \[[`ed30e52ee8`](https://github.com/nodejs/node/commit/ed30e52ee8)] - **test**: clear FLAKY designation for test-http2-pipe (Rich Trott) [#&#8203;37631](https://github.com/nodejs/node/pull/37631) - \[[`df93cb47da`](https://github.com/nodejs/node/commit/df93cb47da)] - **test**: fix wasi/test-return-on-exit on 32-bit systems (Colin Ihrig) [#&#8203;37615](https://github.com/nodejs/node/pull/37615) - \[[`097f638fde`](https://github.com/nodejs/node/commit/097f638fde)] - **test**: remove FLAKY status for test-http2-multistream-destroy-on-read-tls (Rich Trott) [#&#8203;37533](https://github.com/nodejs/node/pull/37533) - \[[`0726192c94`](https://github.com/nodejs/node/commit/0726192c94)] - **test**: make status file names consistent (Rich Trott) [#&#8203;37532](https://github.com/nodejs/node/pull/37532) - \[[`bcc4f1773c`](https://github.com/nodejs/node/commit/bcc4f1773c)] - **test**: remove FLAKY for test-http2-compat-client-upload-reject (Rich Trott) [#&#8203;37462](https://github.com/nodejs/node/pull/37462) - \[[`d168cdea50`](https://github.com/nodejs/node/commit/d168cdea50)] - **test**: validate no debug info for http2 (Michael Dawson) [#&#8203;37447](https://github.com/nodejs/node/pull/37447) - \[[`2f2f83fc4c`](https://github.com/nodejs/node/commit/2f2f83fc4c)] - **test**: remove FLAKY designation for test-http2-client-upload-reject (Rich Trott) [#&#8203;37461](https://github.com/nodejs/node/pull/37461) - \[[`776ef11732`](https://github.com/nodejs/node/commit/776ef11732)] - **test**: clarify usage of tmpdir.refresh() (Darshan Sen) [#&#8203;37383](https://github.com/nodejs/node/pull/37383) - \[[`8386b88c7f`](https://github.com/nodejs/node/commit/8386b88c7f)] - **test**: fix test-doctool-html (Antoine du Hamel) [#&#8203;37397](https://github.com/nodejs/node/pull/37397) - \[[`03752c0412`](https://github.com/nodejs/node/commit/03752c0412)] - **test**: remove flaky designation for test-http2-large-file (Rich Trott) [#&#8203;37156](https://github.com/nodejs/node/pull/37156) - \[[`db44b92c58`](https://github.com/nodejs/node/commit/db44b92c58)] - **test**: increase inspect coverage (Emil Sivervik) [#&#8203;36755](https://github.com/nodejs/node/pull/36755) - \[[`21e7b021a0`](https://github.com/nodejs/node/commit/21e7b021a0)] - **test**: skip tests consistently in parallel.status (Rich Trott) [#&#8203;37035](https://github.com/nodejs/node/pull/37035) - \[[`8f580df5ac`](https://github.com/nodejs/node/commit/8f580df5ac)] - **test**: increase read file abort coverage (Moshe vilner) [#&#8203;36716](https://github.com/nodejs/node/pull/36716) - \[[`55a7b0c2e1`](https://github.com/nodejs/node/commit/55a7b0c2e1)] - **test**: increase coverage for assert/calltracker (ZiJian Liu) [#&#8203;36728](https://github.com/nodejs/node/pull/36728) - \[[`ec7ee61af0`](https://github.com/nodejs/node/commit/ec7ee61af0)] - **test**: improve assertion message for test-vm-memleak (Rich Trott) [#&#8203;37034](https://github.com/nodejs/node/pull/37034) - \[[`456fd758f3`](https://github.com/nodejs/node/commit/456fd758f3)] - **test**: process.nextTick for before exit (ttzztztz) [#&#8203;37012](https://github.com/nodejs/node/pull/37012) - \[[`d99f1755d3`](https://github.com/nodejs/node/commit/d99f1755d3)] - **test**: log error in test-fs-realpath-pipe (Joyee Cheung) [#&#8203;36996](https://github.com/nodejs/node/pull/36996) - \[[`0e1963c486`](https://github.com/nodejs/node/commit/0e1963c486)] - **test**: test mode passed as an options object in mkdir/mkdirSync (Darshan Sen) [#&#8203;37008](https://github.com/nodejs/node/pull/37008) - \[[`5408f51684`](https://github.com/nodejs/node/commit/5408f51684)] - **test**: mark flaky tests on IBM i (Richard Lau) [#&#8203;36986](https://github.com/nodejs/node/pull/36986) - \[[`e72b2b4639`](https://github.com/nodejs/node/commit/e72b2b4639)] - **test**: increase buffer list coverage (Emil Sivervik) [#&#8203;36688](https://github.com/nodejs/node/pull/36688) - \[[`90122d87c9`](https://github.com/nodejs/node/commit/90122d87c9)] - **test**: fix warning in test_environment.cc (raisinten) [#&#8203;36846](https://github.com/nodejs/node/pull/36846) - \[[`2cbd72e17d`](https://github.com/nodejs/node/commit/2cbd72e17d)] - **test**: skip internet for test-npm-install (Ruy Adorno) [#&#8203;36933](https://github.com/nodejs/node/pull/36933) - \[[`2896219613`](https://github.com/nodejs/node/commit/2896219613)] - **test**: add coverage for breakLength one-column array (Rich Trott) [#&#8203;36657](https://github.com/nodejs/node/pull/36657) - \[[`ff212f44b7`](https://github.com/nodejs/node/commit/ff212f44b7)] - **test**: increase coverage for diagnostics_channel (ZiJian Liu) [#&#8203;36602](https://github.com/nodejs/node/pull/36602) - \[[`35c388ab1f`](https://github.com/nodejs/node/commit/35c388ab1f)] - **test**: increase coverage for internal/error_serdes.js (ZiJian Liu) [#&#8203;36628](https://github.com/nodejs/node/pull/36628) - \[[`581a95f0ea`](https://github.com/nodejs/node/commit/581a95f0ea)] - **test**: improve coverage for util.inspect() with classes (Rich Trott) [#&#8203;36625](https://github.com/nodejs/node/pull/36625) - \[[`e82a2e8ad5`](https://github.com/nodejs/node/commit/e82a2e8ad5)] - **test**: increase runInAsyncScope() coverage (Rich Trott) [#&#8203;36624](https://github.com/nodejs/node/pull/36624) - \[[`064144db89`](https://github.com/nodejs/node/commit/064144db89)] - **test**: redirect stderr EnvironmentWithNoESMLoader (Daniel Bevenius) [#&#8203;36548](https://github.com/nodejs/node/pull/36548) - \[[`cf8d025207`](https://github.com/nodejs/node/commit/cf8d025207)] - **test**: increase abort logic coverage (Moshe vilner) [#&#8203;36586](https://github.com/nodejs/node/pull/36586) - \[[`eba2dc5330`](https://github.com/nodejs/node/commit/eba2dc5330)] - **test**: increase coverage for worker (ZiJian Liu) [#&#8203;36491](https://github.com/nodejs/node/pull/36491) - \[[`5ef609af3e`](https://github.com/nodejs/node/commit/5ef609af3e)] - **test**: specify global object for globals (Rich Trott) [#&#8203;36498](https://github.com/nodejs/node/pull/36498) - \[[`829213f624`](https://github.com/nodejs/node/commit/829213f624)] - **test**: increase coverage for fs/dir read (Zijian Liu) [#&#8203;36388](https://github.com/nodejs/node/pull/36388) - \[[`c0604c9958`](https://github.com/nodejs/node/commit/c0604c9958)] - **test**: remove test-http2-client-upload as flaky (Rich Trott) [#&#8203;36496](https://github.com/nodejs/node/pull/36496) - \[[`dabbd6d8ad`](https://github.com/nodejs/node/commit/dabbd6d8ad)] - **test**: make executable name more general (Shelley Vohr) [#&#8203;36489](https://github.com/nodejs/node/pull/36489) - \[[`44603b7535`](https://github.com/nodejs/node/commit/44603b7535)] - **test**: increased externalized string length (Shelley Vohr) [#&#8203;36451](https://github.com/nodejs/node/pull/36451) - \[[`2d0b6ca1c6`](https://github.com/nodejs/node/commit/2d0b6ca1c6)] - **test**: fix flaky test-repl (Rich Trott) [#&#8203;36415](https://github.com/nodejs/node/pull/36415) - \[[`fee0389c12`](https://github.com/nodejs/node/commit/fee0389c12)] - **test**: check null proto-of-proto in util.inspect() (Rich Trott) [#&#8203;36399](https://github.com/nodejs/node/pull/36399) - \[[`0e821ff337`](https://github.com/nodejs/node/commit/0e821ff337)] - **test**: fix child-process-pipe-dataflow (Santiago Gimeno) [#&#8203;36366](https://github.com/nodejs/node/pull/36366) - \[[`736b575b7e`](https://github.com/nodejs/node/commit/736b575b7e)] - **test**: fix comment misspellings of transferred (Rich Trott) [#&#8203;36360](https://github.com/nodejs/node/pull/36360) - \[[`5fc0f5eabb`](https://github.com/nodejs/node/commit/5fc0f5eabb)] - **test**: increase coverage for readline (Zijian Liu) [#&#8203;36389](https://github.com/nodejs/node/pull/36389) - \[[`f5e8f12c1e`](https://github.com/nodejs/node/commit/f5e8f12c1e)] - **test**: fix typo in comment (inokawa) [#&#8203;36312](https://github.com/nodejs/node/pull/36312) - \[[`72b3e5a6d9`](https://github.com/nodejs/node/commit/72b3e5a6d9)] - **test**: replace anonymous functions by arrows (Aleksandr Krutko) [#&#8203;36125](https://github.com/nodejs/node/pull/36125) - \[[`b11e3ea1e6`](https://github.com/nodejs/node/commit/b11e3ea1e6)] - **test**: fix flaky sequential/test-fs-watch (Rich Trott) [#&#8203;36249](https://github.com/nodejs/node/pull/36249) - \[[`cb530d2372`](https://github.com/nodejs/node/commit/cb530d2372)] - **test**: increase coverage for util.inspect() (Rich Trott) [#&#8203;36228](https://github.com/nodejs/node/pull/36228) - \[[`94a877b0a4`](https://github.com/nodejs/node/commit/94a877b0a4)] - **test**: improve test coverage SourceMap API (Juan José Arboleda) [#&#8203;36089](https://github.com/nodejs/node/pull/36089) - \[[`6c62e15c36`](https://github.com/nodejs/node/commit/6c62e15c36)] - **test**: move test-worker-eventlooputil to sequential (Rich Trott) [#&#8203;35996](https://github.com/nodejs/node/pull/35996) - \[[`16f6f1a0c2`](https://github.com/nodejs/node/commit/16f6f1a0c2)] - **test**: add missing test coverage for setLocalAddress() (Rich Trott) [#&#8203;36039](https://github.com/nodejs/node/pull/36039) - \[[`23835012e0`](https://github.com/nodejs/node/commit/23835012e0)] - **test**: fix races in test-performance-eventlooputil (Gerhard Stoebich) [#&#8203;36028](https://github.com/nodejs/node/pull/36028) - \[[`d63747de5a`](https://github.com/nodejs/node/commit/d63747de5a)] - **test**: fix error in test/internet/test-dns.js (Rich Trott) [#&#8203;35969](https://github.com/nodejs/node/pull/35969) - \[[`00b9d955e9`](https://github.com/nodejs/node/commit/00b9d955e9)] - **test**: run test-benchmark-napi on arm (Rich Trott) [#&#8203;34502](https://github.com/nodejs/node/pull/34502) - \[[`de654bf5b4`](https://github.com/nodejs/node/commit/de654bf5b4)] - **test**: fix unreliable test-fs-write-file.js (Rich Trott) [#&#8203;36102](https://github.com/nodejs/node/pull/36102) - \[[`397d9372c2`](https://github.com/nodejs/node/commit/397d9372c2)] - **(SEMVER-MINOR)** **test**: update dom/abort tests (James M Snell) [#&#8203;37693](https://github.com/nodejs/node/pull/37693) - \[[`dc63ca686e`](https://github.com/nodejs/node/commit/dc63ca686e)] - **test**: increase execFile abort coverage (Moshe vilner) [#&#8203;36429](https://github.com/nodejs/node/pull/36429) - \[[`88f42617dd`](https://github.com/nodejs/node/commit/88f42617dd)] - **test**: integrate abort_controller tests from wpt (Daijiro Wachi) [#&#8203;35869](https://github.com/nodejs/node/pull/35869) - \[[`cd1da67295`](https://github.com/nodejs/node/commit/cd1da67295)] - **test**: fix flaky test-http2-respond-file-error-pipe-offset (Rich Trott) [#&#8203;36305](https://github.com/nodejs/node/pull/36305) - \[[`db04ae6b02`](https://github.com/nodejs/node/commit/db04ae6b02)] - **test**: add SIGTRAP to test-signal-handler (Ash Cripps) [#&#8203;36368](https://github.com/nodejs/node/pull/36368) - \[[`48e3f592a0`](https://github.com/nodejs/node/commit/48e3f592a0)] - **test**: refactor coverage logic (Benjamin Coe) [#&#8203;35767](https://github.com/nodejs/node/pull/35767) - \[[`01ba1c9a9c`](https://github.com/nodejs/node/commit/01ba1c9a9c)] - **test**: correct test-worker-eventlooputil (Gerhard Stoebich) [#&#8203;35891](https://github.com/nodejs/node/pull/35891) - \[[`89046d7840`](https://github.com/nodejs/node/commit/89046d7840)] - **test**: add cpu-profiler-crash test (Santiago Gimeno) [#&#8203;37293](https://github.com/nodejs/node/pull/37293) - \[[`6961be5ed1`](https://github.com/nodejs/node/commit/6961be5ed1)] - **test**: add arm64 arch to test-worker-prof status (Daniel Bevenius) [#&#8203;37225](https://github.com/nodejs/node/pull/37225) - \[[`98f08c06e4`](https://github.com/nodejs/node/commit/98f08c06e4)] - **test,benchmark**: stop requiring URL and URLSearchParams (raisinten) [#&#8203;36927](https://github.com/nodejs/node/pull/36927) - \[[`51ef745975`](https://github.com/nodejs/node/commit/51ef745975)] - **test,child_process**: add check for `subProcess.pid` (dr-js) [#&#8203;37014](https://github.com/nodejs/node/pull/37014) - \[[`8476537aa4`](https://github.com/nodejs/node/commit/8476537aa4)] - **test,http**: check that http server is robust from handler abuse (Rich Trott) [#&#8203;37958](https://github.com/nodejs/node/pull/37958) - \[[`e4d10426c4`](https://github.com/nodejs/node/commit/e4d10426c4)] - **timers**: fix arbitrary object clearImmediate errors (Nitzan Uziely) [#&#8203;37824](https://github.com/nodejs/node/pull/37824) - \[[`1b74a08eba`](https://github.com/nodejs/node/commit/1b74a08eba)] - **timers**: refactor to use validateAbortSignal (ZiJian Liu) [#&#8203;36604](https://github.com/nodejs/node/pull/36604) - \[[`4b04bb87f6`](https://github.com/nodejs/node/commit/4b04bb87f6)] - **timers**: use AbortController with correct name/message (Anna Henningsen) [#&#8203;34763](https://github.com/nodejs/node/pull/34763) - \[[`9660a78278`](https://github.com/nodejs/node/commit/9660a78278)] - **(SEMVER-MINOR)** **timers**: move promisified timers implementations (James M Snell) [#&#8203;33950](https://github.com/nodejs/node/pull/33950) - \[[`59a8425d04`](https://github.com/nodejs/node/commit/59a8425d04)] - **timers**: fix multipleResolves in promisified timeouts/immediates (Denys Otrishko) [#&#8203;33949](https://github.com/nodejs/node/pull/33949) - \[[`84b2863f00`](https://github.com/nodejs/node/commit/84b2863f00)] - **(SEMVER-MINOR)** **timers**: allow promisified timeouts/immediates to be canceled (James M Snell) [#&#8203;33833](https://github.com/nodejs/node/pull/33833) - \[[`08ed2337ea`](https://github.com/nodejs/node/commit/08ed2337ea)] - **tls**: forward new SecureContext options (Alba Mendez) [#&#8203;36416](https://github.com/nodejs/node/pull/36416) - \[[`2c49953fc9`](https://github.com/nodejs/node/commit/2c49953fc9)] - **tools**: update glob-parent to 5.1.2 (Rich Trott) [#&#8203;37646](https://github.com/nodejs/node/pull/37646) - \[[`b76aa10aa8`](https://github.com/nodejs/node/commit/b76aa10aa8)] - **tools**: update remark-preset-lint-node to 2.1.1 (Rich Trott) [#&#8203;37604](https://github.com/nodejs/node/pull/37604) - \[[`5afaeafabe`](https://github.com/nodejs/node/commit/5afaeafabe)] - **tools**: bump remark-present-lint-node from 2.0.0 to 2.0.1 (Rich Trott) [#&#8203;37270](https://github.com/nodejs/node/pull/37270) - \[[`abd45d3355`](https://github.com/nodejs/node/commit/abd45d3355)] - **tools**: update all lint-md rollup dependencies (Michaël Zasso) [#&#8203;36843](https://github.com/nodejs/node/pull/36843) - \[[`c8f77f2e1d`](https://github.com/nodejs/node/commit/c8f77f2e1d)] - **tools**: update ini in tools/node-lint-md-cli-rollup (Myles Borins) [#&#8203;36474](https://github.com/nodejs/node/pull/36474) - \[[`ac70a59056`](https://github.com/nodejs/node/commit/ac70a59056)] - **tools**: bump remark-lint-preset-node to 2.0.0 (Rich Trott) [#&#8203;35905](https://github.com/nodejs/node/pull/35905) - \[[`cbb0a458b5`](https://github.com/nodejs/node/commit/cbb0a458b5)] - **tools**: bump remark-lint-preset-node to 1.17.1 (Rich Trott) [#&#8203;35668](https://github.com/nodejs/node/pull/35668) - \[[`ed7c0d7c1b`](https://github.com/nodejs/node/commit/ed7c0d7c1b)] - **tools**: skip macOS GitHub Actions test on doc-only changes (Rich Trott) [#&#8203;38296](https://github.com/nodejs/node/pull/38296) - \[[`4254315ebe`](https://github.com/nodejs/node/commit/4254315ebe)] - **tools**: improve valid-typeof lint rule (Rich Trott) [#&#8203;37924](https://github.com/nodejs/node/pull/37924) - \[[`f055faf647`](https://github.com/nodejs/node/commit/f055faf647)] - **tools**: improve macos-firewall.sh output (Rich Trott) [#&#8203;37846](https://github.com/nodejs/node/pull/37846) - \[[`2551bb1a61`](https://github.com/nodejs/node/commit/2551bb1a61)] - **tools**: make genv8constants.py Python3-compatible (Michaël Zasso) [#&#8203;37835](https://github.com/nodejs/node/pull/37835) - \[[`e6a79802d3`](https://github.com/nodejs/node/commit/e6a79802d3)] - **tools**: update gitignore for CMake (Jiawen Geng) [#&#8203;37793](https://github.com/nodejs/node/pull/37793) - \[[`e4975d9057`](https://github.com/nodejs/node/commit/e4975d9057)] - **tools**: fix object name in prefer-assert-methods.js (Tobias Nießen) [#&#8203;37544](https://github.com/nodejs/node/pull/37544) - \[[`77eb45aad4`](https://github.com/nodejs/node/commit/77eb45aad4)] - **tools**: fix compiler warning in inspector_protocol (Darshan Sen) [#&#8203;37573](https://github.com/nodejs/node/pull/37573) - \[[`af8b3852a8`](https://github.com/nodejs/node/commit/af8b3852a8)] - **tools**: fix lint-pr-url message (Antoine du Hamel) [#&#8203;37304](https://github.com/nodejs/node/pull/37304) - \[[`2ba6db3c3e`](https://github.com/nodejs/node/commit/2ba6db3c3e)] - **tools**: avoid pending deprecation in doc generator (Michaël Zasso) [#&#8203;37267](https://github.com/nodejs/node/pull/37267) - \[[`981659c7b9`](https://github.com/nodejs/node/commit/981659c7b9)] - **tools**: add GitHub Action linter for pr-url (Antoine du Hamel) [#&#8203;37221](https://github.com/nodejs/node/pull/37221) - \[[`2e5994dcd8`](https://github.com/nodejs/node/commit/2e5994dcd8)] - **tools**: remove commented code from stability.js (Colin Ihrig) [#&#8203;37092](https://github.com/nodejs/node/pull/37092) - \[[`ef1aab1239`](https://github.com/nodejs/node/commit/ef1aab1239)] - **tools**: add support for top-level await syntax in linter (Antoine du Hamel) [#&#8203;36911](https://github.com/nodejs/node/pull/36911) - \[[`aef769745b`](https://github.com/nodejs/node/commit/aef769745b)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36844](https://github.com/nodejs/node/pull/36844) - \[[`dd10afc45a`](https://github.com/nodejs/node/commit/dd10afc45a)] - **tools**: revise install.py for minor improvements (Rich Trott) [#&#8203;36626](https://github.com/nodejs/node/pull/36626) - \[[`d85ea61c7e`](https://github.com/nodejs/node/commit/d85ea61c7e)] - **tools**: correct usage message for genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606) - \[[`9990ec7423`](https://github.com/nodejs/node/commit/9990ec7423)] - **tools**: call close() explicitly in genv8constants.py (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606) - \[[`26d5965c77`](https://github.com/nodejs/node/commit/26d5965c77)] - **tools**: use `is None` consistently in Python (Rich Trott) [#&#8203;36606](https://github.com/nodejs/node/pull/36606) - \[[`bb07a767c0`](https://github.com/nodejs/node/commit/bb07a767c0)] - **tools**: revise line in configure.py for clarity (Rich Trott) [#&#8203;36551](https://github.com/nodejs/node/pull/36551) - \[[`5ac21bceba`](https://github.com/nodejs/node/commit/5ac21bceba)] - **tools**: fix make-v8.sh (Richard Lau) [#&#8203;36594](https://github.com/nodejs/node/pull/36594) - \[[`3cac041b97`](https://github.com/nodejs/node/commit/3cac041b97)] - **tools**: fix release script sign function (Antoine du Hamel) [#&#8203;36556](https://github.com/nodejs/node/pull/36556) - \[[`b398e4044c`](https://github.com/nodejs/node/commit/b398e4044c)] - **tools**: fix update-eslint.sh (Yongsheng Zhang) [#&#8203;36579](https://github.com/nodejs/node/pull/36579) - \[[`471da7dc88`](https://github.com/nodejs/node/commit/471da7dc88)] - **tools**: fix release script (Antoine du Hamel) [#&#8203;36540](https://github.com/nodejs/node/pull/36540) - \[[`1f3c129f05`](https://github.com/nodejs/node/commit/1f3c129f05)] - **tools**: remove unused variable in configure.py (Rich Trott) [#&#8203;36525](https://github.com/nodejs/node/pull/36525) - \[[`9b13ddc6a6`](https://github.com/nodejs/node/commit/9b13ddc6a6)] - **tools**: lint shell scripts (Antoine du Hamel) [#&#8203;36099](https://github.com/nodejs/node/pull/36099) - \[[`7ac8ab8e26`](https://github.com/nodejs/node/commit/7ac8ab8e26)] - **tools**: update doc tool dependencies (Michaël Zasso) [#&#8203;36407](https://github.com/nodejs/node/pull/36407) - \[[`e8b2c776f7`](https://github.com/nodejs/node/commit/e8b2c776f7)] - **tools**: upgrade to [@&#8203;babel/eslint-parser](https://github.com/babel/eslint-parser) 7.12.1 (Antoine du Hamel) [#&#8203;36321](https://github.com/nodejs/node/pull/36321) - \[[`a0339101ba`](https://github.com/nodejs/node/commit/a0339101ba)] - **tools**: remove bashisms from macOS release scripts (Antoine du Hamel) [#&#8203;36121](https://github.com/nodejs/node/pull/36121) - \[[`9434bb3cfd`](https://github.com/nodejs/node/commit/9434bb3cfd)] - **tools**: remove bashisms from release script (Antoine du Hamel) [#&#8203;36123](https://github.com/nodejs/node/pull/36123) - \[[`2183a2be51`](https://github.com/nodejs/node/commit/2183a2be51)] - **tools**: update stability index linking logic (Rich Trott) [#&#8203;36280](https://github.com/nodejs/node/pull/36280) - \[[`2677fe9dcb`](https://github.com/nodejs/node/commit/2677fe9dcb)] - **tools**: update highlight.js to 10.1.2 (Myles Borins) [#&#8203;36309](https://github.com/nodejs/node/pull/36309) - \[[`17f942ffc0`](https://github.com/nodejs/node/commit/17f942ffc0)] - **tools**: fix undeclared identifier FALSE (Antoine du Hamel) [#&#8203;36276](https://github.com/nodejs/node/pull/36276) - \[[`4bb5c10915`](https://github.com/nodejs/node/commit/4bb5c10915)] - **tools**: cleanup old ICU version-specific fixes (Michaël Zasso) [#&#8203;36980](https://github.com/nodejs/node/pull/36980) - \[[`77f32ee8f7`](https://github.com/nodejs/node/commit/77f32ee8f7)] - **tools**: fix md5 hash for ICU 68.1 src (Richard Lau) [#&#8203;36777](https://github.com/nodejs/node/pull/36777) - \[[`5d29781491`](https://github.com/nodejs/node/commit/5d29781491)] - **tools**: add msvc /P output to .gitignore (Jiawen Geng) [#&#8203;35735](https://github.com/nodejs/node/pull/35735) - \[[`571afd3c30`](https://github.com/nodejs/node/commit/571afd3c30)] - **tools,doc**: add "legacy" badge in the TOC (Antoine du Hamel) [#&#8203;37949](https://github.com/nodejs/node/pull/37949) - \[[`15d66fbc0c`](https://github.com/nodejs/node/commit/15d66fbc0c)] - **tools,doc**: list the stability status of each API (Zijian Liu) [#&#8203;36223](https://github.com/nodejs/node/pull/36223) - \[[`d89d55ab36`](https://github.com/nodejs/node/commit/d89d55ab36)] - **tty**: validate file descriptor to avoid int32 overflow (Antoine du Hamel) [#&#8203;37809](https://github.com/nodejs/node/pull/37809) - \[[`face4b86dd`](https://github.com/nodejs/node/commit/face4b86dd)] - **typings**: add JSDoc to os module functions (David Brownman) [#&#8203;38197](https://github.com/nodejs/node/pull/38197) - \[[`599434a61d`](https://github.com/nodejs/node/commit/599434a61d)] - **typings**: add JSDoc Types to lib/querystring (Simon Knott) [#&#8203;38185](https://github.com/nodejs/node/pull/38185) - \[[`60c7591af2`](https://github.com/nodejs/node/commit/60c7591af2)] - **typings**: add JSDoc typings for http (Voltrex) [#&#8203;38191](https://github.com/nodejs/node/pull/38191) - \[[`530e69e145`](https://github.com/nodejs/node/commit/530e69e145)] - **typings**: add JSDoc typings for assert (Voltrex) [#&#8203;38188](https://github.com/nodejs/node/pull/38188) - \[[`e2c2f2b7a5`](https://github.com/nodejs/node/commit/e2c2f2b7a5)] - **typings**: add JSDoc types to lib/path (Simon Knott) [#&#8203;38186](https://github.com/nodejs/node/pull/38186) - \[[`d13fc6ed68`](https://github.com/nodejs/node/commit/d13fc6ed68)] - **url**: align url format behavior with browsers (ZiJian Liu) [#&#8203;36903](https://github.com/nodejs/node/pull/36903) - \[[`2aff77f358`](https://github.com/nodejs/node/commit/2aff77f358)] - **url**: fix url.format with ipv6 hostname (ZiJian Liu) [#&#8203;36665](https://github.com/nodejs/node/pull/36665) - \[[`08a6d9effd`](https://github.com/nodejs/node/commit/08a6d9effd)] - **(SEMVER-MINOR)** **util**: add getSystemErrorMap() impl (eladkeyshawn) [#&#8203;38101](https://github.com/nodejs/node/pull/38101) - \[[`e6c64bf0c7`](https://github.com/nodejs/node/commit/e6c64bf0c7)] - **util**: remove unreachable inspect code (Rich Trott) [#&#8203;37941](https://github.com/nodejs/node/pull/37941) - \[[`b5c5bd1f51`](https://github.com/nodejs/node/commit/b5c5bd1f51)] - **util**: inspect \__proto\_\_ key as written in object literal (Anna Henningsen) [#&#8203;37713](https://github.com/nodejs/node/pull/37713) - \[[`2bfe185c3f`](https://github.com/nodejs/node/commit/2bfe185c3f)] - **util**: use assert for unreachable code (Rich Trott) [#&#8203;37249](https://github.com/nodejs/node/pull/37249) - \[[`ba4788dd9f`](https://github.com/nodejs/node/commit/ba4788dd9f)] - **(SEMVER-MINOR)** **v8**: fix native `serdes` constructors (ExE Boss) [#&#8203;36549](https://github.com/nodejs/node/pull/36549) - \[[`16606d05b7`](https://github.com/nodejs/node/commit/16606d05b7)] - **vm**: add `SafeForTerminationScope`s for SIGINT interruptions (Anna Henningsen) [#&#8203;36344](https://github.com/nodejs/node/pull/36344) - \[[`b6f4d790d3`](https://github.com/nodejs/node/commit/b6f4d790d3)] - **worker**: fix exit code for error thrown in handler (Nitzan Uziely) [#&#8203;38012](https://github.com/nodejs/node/pull/38012) - \[[`9460f2cd83`](https://github.com/nodejs/node/commit/9460f2cd83)] - **(SEMVER-MINOR)** **worker**: add eventLoopUtilization() (Trevor Norris) [#&#8203;35664](https://github.com/nodejs/node/pull/35664) - \[[`78ad8b4c44`](https://github.com/nodejs/node/commit/78ad8b4c44)] - **workers**: fix spawning from preload scripts (James M Snell) [#&#8203;37481](https://github.com/nodejs/node/pull/37481) ### [`v14.16.1`](https://github.com/nodejs/node/releases/v14.16.1) [Compare Source](https://github.com/nodejs/node/compare/v14.16.0...v14.16.1) This is a security release. ##### Notable Changes Vulnerabilities fixed: - **CVE-2021-3450**: OpenSSL - CA certificate check bypass with X509\_V_FLAG_X509\_STRICT (High) - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt - Impacts: - All versions of the 15.x, 14.x, 12.x and 10.x releases lines - **CVE-2021-3449**: OpenSSL - NULL pointer deref in signature_algorithms processing (High) - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt - Impacts: - All versions of the 15.x, 14.x, 12.x and 10.x releases lines - **CVE-2020-7774**: npm upgrade - Update y18n to fix Prototype-Pollution (High) - This is a vulnerability in the y18n npm module which may be exploited by prototype pollution. You can read more about it in https://github.com/advisories/GHSA-c4w7-xm78-47vh - Impacts: - All versions of the 14.x, 12.x and 10.x releases lines ##### Commits - \[[`467be7a950`](https://github.com/nodejs/node/commit/467be7a950)] - **deps**: upgrade npm to 6.14.12 (Ruy Adorno) [#&#8203;37918](https://github.com/nodejs/node/pull/37918) - \[[`6bc8f58182`](https://github.com/nodejs/node/commit/6bc8f58182)] - **deps**: update archs files for OpenSSL-1.1.1k (Tobias Nießen) [#&#8203;37938](https://github.com/nodejs/node/pull/37938) - \[[`403a014ef6`](https://github.com/nodejs/node/commit/403a014ef6)] - **deps**: upgrade openssl sources to 1.1.1k (Tobias Nießen) [#&#8203;37938](https://github.com/nodejs/node/pull/37938) ### [`v14.16.0`](https://github.com/nodejs/node/releases/v14.16.0) [Compare Source](https://github.com/nodejs/node/compare/v14.15.5...v14.16.0) This is a security release. ##### Notable changes Vulnerabilities fixed: - **CVE-2021-22883**: HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion - Affected Node.js versions are vulnerable to denial of service attacks when too many connection attempts with an 'unknownProtocol' are established. This leads to a leak of file descriptors. If a file descriptor limit is configured on the system, then the server is unable to accept new connections and prevent the process also from opening, e.g. a file. If no file descriptor limit is configured, then this lead to an excessive memory usage and cause the system to run out of memory. - **CVE-2021-22884**: DNS rebinding in --inspect - Affected Node.js versions are vulnerable to denial of service attacks when the whitelist includes “localhost6”. When “localhost6” is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the “localhost6” domain. As long as the attacker uses the “localhost6” domain, they can still apply the attack described in CVE-2018-7160. - **CVE-2021-23840**: OpenSSL - Integer overflow in CipherUpdate - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210216.txt ##### Commits - \[[`313d26800c`](https://github.com/nodejs/node/commit/313d26800c)] - **deps**: update archs files for OpenSSL-1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412) - \[[`6098012b48`](https://github.com/nodejs/node/commit/6098012b48)] - **deps**: upgrade openssl sources to 1.1.1j (Daniel Bevenius) [#&#8203;37412](https://github.com/nodejs/node/pull/37412) - \[[`afea10b097`](https://github.com/nodejs/node/commit/afea10b097)] - **(SEMVER-MINOR)** **http2**: add unknownProtocol timeout (Daniel Bevenius) [nodejs-private/node-private#&#8203;246](https://github.com/nodejs-private/node-private/pull/246) - \[[`1ca3f5abcb`](https://github.com/nodejs/node/commit/1ca3f5abcb)] - **src**: drop localhost6 as allowed host for inspector (Matteo Collina) [nodejs-private/node-private#&#8203;244](https://github.com/nodejs-private/node-private/pull/244) ### [`v14.15.5`](https://github.com/nodejs/node/releases/v14.15.5) [Compare Source](https://github.com/nodejs/node/compare/v14.15.4...v14.15.5) ##### Notable Changes - **deps**: - upgrade npm to 6.14.11 (Ruy Adorno) [#&#8203;37173](https://github.com/nodejs/node/pull/37173) - V8: backport [`dfcf1e8`](https://github.com/nodejs/node/commit/dfcf1e86fac0) (Michaël Zasso) [#&#8203;37245](https://github.com/nodejs/node/pull/37245) - **Note**: Node.js is not believed to be vulnerable to CVE-2021-21148. - **stream,zlib**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36618](https://github.com/nodejs/node/pull/36618) ##### Commits - \[[`20b1e6c802`](https://github.com/nodejs/node/commit/20b1e6c802)] - **deps**: V8: backport [`dfcf1e8`](https://github.com/nodejs/node/commit/dfcf1e86fac0) (Michaël Zasso) [#&#8203;37245](https://github.com/nodejs/node/pull/37245) - \[[`408c7a65f3`](https://github.com/nodejs/node/commit/408c7a65f3)] - **deps**: upgrade npm to 6.14.11 (Ruy Adorno) [#&#8203;37173](https://github.com/nodejs/node/pull/37173) - \[[`017eed665b`](https://github.com/nodejs/node/commit/017eed665b)] - **http**: do not loop over prototype in Agent (Michaël Zasso) [#&#8203;36410](https://github.com/nodejs/node/pull/36410) - \[[`25a3204fe2`](https://github.com/nodejs/node/commit/25a3204fe2)] - **http**: don't cork .end when not needed (Dimitris Halatsis) [#&#8203;36633](https://github.com/nodejs/node/pull/36633) - \[[`2a1e4e9244`](https://github.com/nodejs/node/commit/2a1e4e9244)] - **stream**: accept iterable as a valid first argument (ZiJian Liu) [#&#8203;36479](https://github.com/nodejs/node/pull/36479) - \[[`9ff73fcdbe`](https://github.com/nodejs/node/commit/9ff73fcdbe)] - **stream,zlib**: do not use \_stream_\* anymore (Matteo Collina) [#&#8203;36618](https://github.com/nodejs/node/pull/36618) - \[[`c03cddb46f`](https://github.com/nodejs/node/commit/c03cddb46f)] - **test**: http complete response after socket double end (Dimitris Halatsis) [#&#8203;36633](https://github.com/nodejs/node/pull/36633) - \[[`f206505e9d`](https://github.com/nodejs/node/commit/f206505e9d)] - **util**: fix instanceof checks with null prototypes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178) - \[[`2f7944b18b`](https://github.com/nodejs/node/commit/2f7944b18b)] - **util**: fix module prefixes during inspection (Ruben Bridgewater) [#&#8203;36178](https://github.com/nodejs/node/pull/36178) ### [`v14.15.4`](https://github.com/nodejs/node/releases/v14.15.4) [Compare Source](https://github.com/nodejs/node/compare/v14.15.3...v14.15.4) This is a security release. ##### Notable Changes Vulnerabilities fixed: - **CVE-2020-1971**: OpenSSL - EDIPARTYNAME NULL pointer de-reference (High) - This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20201208.txt - **CVE-2020-8265**: use-after-free in TLSWrap (High) - Affected Node.js versions are vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method does not return an error, this object is passed back to the caller as part of a StreamWriteResult structure. This may be exploited to corrupt memory leading to a Denial of Service or potentially other exploits. - **CVE-2020-8287**: HTTP Request Smuggling in nodejs (Low) - Affected versions of Node.js allow two copies of a header field in a http request. For example, two Transfer-Encoding header fields. In this case Node.js identifies the first header field and ignores the second. This can lead to HTTP Request Smuggling (https://cwe.mitre.org/data/definitions/444.html). ##### Commits - \[[`305c0f4977`](https://github.com/nodejs/node/commit/305c0f4977)] - **deps**: upgrade npm to </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 added 1 commit 2021-10-20 19:03:54 +00:00
continuous-integration/drone/pr Build is failing Details
31d7bd03f9
Update Node.js to v17
mwalbeck closed this pull request 2021-10-20 19:22:48 +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 17.x releases. But if you manually upgrade to 17.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 `17.x` releases. But if you manually upgrade to `17.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.
Some checks failed
continuous-integration/drone/pr Build is failing

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#45
No description provided.