Update Node.js to v20 #264

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

This PR contains the following updates:

Package Type Update Change
node stage major 16.20.2-bullseye -> 20.12.2-bullseye

Release Notes

nodejs/node (node)

v20.12.2: 2024-04-10, Version 20.12.2 'Iron' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27980 - Command injection via args parameter of child_process.spawn without shell option enabled on Windows
Commits
  • [`69ffc6d50d`](https://github.com/nodejs/node/commit/69ffc6d50d)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#563](https://github.com/nodejs-private/node-private/pull/563)
    
    

v20.12.1: 2024-04-03, Version 20.12.1 'Iron' (LTS), @​RafaelGSS

Compare Source

This is a security release

Notable Changes
  • CVE-2024-27983 - Assertion failed in node::http2::Http2Session::~Http2Session() leads to HTTP/2 server crash- (High)
  • CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium)
  • llhttp version 9.2.1
  • undici version 5.28.4
Commits
  • [`bd8f10a257`](https://github.com/nodejs/node/commit/bd8f10a257)] - **deps**: update undici to v5.28.4 (Matteo Collina) [nodejs-private/node-private#576](https://github.com/nodejs-private/node-private/pull/576)
    
  • [`5e34540a96`](https://github.com/nodejs/node/commit/5e34540a96)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-private#557](https://github.com/nodejs-private/node-private/pull/557)
    
  • [`ba1ae6d188`](https://github.com/nodejs/node/commit/ba1ae6d188)] - **src**: ensure to close stream when destroying session (Anna Henningsen) [nodejs-private/node-private#561](https://github.com/nodejs-private/node-private/pull/561)
    
    

v20.12.0: 2024-03-26, Version 20.12.0 'Iron' (LTS), @​richardlau

Compare Source

Notable Changes
crypto: implement crypto.hash()

This patch introduces a helper crypto.hash() that computes
a digest from the input at one shot. This can be 1.2-2x faster
than the object-based createHash() for smaller inputs (<= 5MB)
that are readily available (not streamed) and incur less memory
overhead since no intermediate objects will be created.

const crypto = require('node:crypto');

// Hashing a string and return the result as a hex-encoded string.
const string = 'Node.js';
// 10b3493287f831e81a438811a1ffba01f8cec4b7
console.log(crypto.hash('sha1', string));

Contributed by Joyee Cheung in #​51044.

Loading and parsing environment variables
  • process.loadEnvFile(path):

    • Use this function to load the .env file. If no path is specified, it automatically loads the .env file in the current directory. Example: process.loadEnvFile().
    • Load a specific .env file by specifying its path. Example: process.loadEnvFile('./development.env').
  • util.parseEnv(content):

    • Use this function to parse an existing string containing environment variable assignments.
    • Example usage: require('node:util').parseEnv('HELLO=world').

Contributed by Yagiz Nizipli in #​51476.

New connection attempt events

Three new events were added in the net.createConnection flow:

  • connectionAttempt: Emitted when a new connection attempt is established. In case of Happy Eyeballs, this might emitted multiple times.
  • connectionAttemptFailed: Emitted when a connection attempt failed. In case of Happy Eyeballs, this might emitted multiple times.
  • connectionAttemptTimeout: Emitted when a connection attempt timed out. In case of Happy Eyeballs, this will not be emitted for the last attempt. This is not emitted at all if Happy Eyeballs is not used.

Additionally, a previous bug has been fixed where a new connection attempt could have been started after a previous one failed and after the connection was destroyed by the user.
This led to a failed assertion.

Contributed by Paolo Insogna in #​51045.

Permission Model changes

Node.js 20.12.0 comes with several fixes for the experimental permission model and two new semver-minor commits.
We're adding a new flag --allow-addons to enable addon usage when using the Permission Model.

$ node --experimental-permission --allow-addons

Contributed by Rafael Gonzaga in #​51183

And relative paths are now supported through the --allow-fs-* flags.
Therefore, with this release one can use:

$ node --experimental-permission --allow-fs-read=./index.js

To give only read access to the entrypoint of the application.

Contributed by Rafael Gonzaga and Carlos Espa in #​50758.

sea: support embedding assets

Users can now include assets by adding a key-path dictionary
to the configuration as the assets field. At build time, Node.js
would read the assets from the specified paths and bundle them into
the preparation blob. In the generated executable, users can retrieve
the assets using the sea.getAsset() and sea.getAssetAsBlob() API.

{
  "main": "/path/to/bundled/script.js",
  "output": "/path/to/write/the/generated/blob.blob",
  "assets": {
    "a.jpg": "/path/to/a.jpg",
    "b.txt": "/path/to/b.txt"
  }
}

The single-executable application can access the assets as follows:

const { getAsset } = require('node:sea');
// Returns a copy of the data in an ArrayBuffer
const image = getAsset('a.jpg');
// Returns a string decoded from the asset as UTF8.
const text = getAsset('b.txt', 'utf8');
// Returns a Blob containing the asset without copying.
const blob = getAssetAsBlob('a.jpg');

Contributed by Joyee Cheung in #​50960.

Support configurable snapshot through --build-snapshot-config flag

We are adding a new flag --build-snapshot-config to configure snapshots through a custom JSON configuration file.

$ node --build-snapshot-config=/path/to/myconfig.json

When using this flag, additional script files provided on the command line will
not be executed and instead be interpreted as regular command line arguments.

These changes were contributed by Joyee Cheung and Anna Henningsen in #​50453

Text Styling
  • util.styleText(format, text): This function returns a formatted text considering the format passed.

A new API has been created to format text based on util.inspect.colors, enabling you to style text in different colors (such as red, blue, ...) and emphasis (italic, bold, ...).

const { styleText } = require('node:util');
const errorMessage = styleText('red', 'Error! Error!');
console.log(errorMessage);

Contributed by Rafael Gonzaga in #​51850.

vm: support using the default loader to handle dynamic import()

This patch adds support for using vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER as the
importModuleDynamically option in all vm APIs that take this option except vm.SourceTextModule. This allows users to have a shortcut to support dynamic import() in the compiled code without missing the compilation cache if they don't need customization of the loading process. We emit an experimental warning when the import() is actually handled by the default loader through this option instead of requiring --experimental-vm-modules.

const { Script, constants } = require('node:vm');
const { resolve } = require('node:path');
const { writeFileSync } = require('node:fs');

// Write test.js and test.txt to the directory where the current script
// being run is located.
writeFileSync(resolve(__dirname, 'test.mjs'),
              'export const filename = "./test.json";');
writeFileSync(resolve(__dirname, 'test.json'),
              '{"hello": "world"}');

// Compile a script that loads test.mjs and then test.json
// as if the script is placed in the same directory.
const script = new Script(
  `(async function() {
    const { filename } = await import('./test.mjs');
    return import(filename, { with: { type: 'json' } })
  })();`,
  {
    filename: resolve(__dirname, 'test-with-default.js'),
    importModuleDynamically: constants.USE_MAIN_CONTEXT_DEFAULT_LOADER,
  });

// { default: { hello: 'world' } }
script.runInThisContext().then(console.log);

Contributed by Joyee Cheung in #​51244.

Root certificates updated to NSS 3.98

Certificates added:

  • Telekom Security TLS ECC Root 2020
  • Telekom Security TLS RSA Root 2023

Certificates removed:

  • Security Communication Root CA
Updated dependencies
  • acorn updated to 8.11.3.
  • ada updated to 2.7.6.
  • base64 updated to 0.5.2.
  • brotli updated to 1.1.0.
  • c-ares updated to 1.27.0.
  • corepack updated to 0.25.2.
  • ICU updated to 74.2. Includes CLDR 44.1 and Unicode 15.1.
  • nghttp2 updated to 1.60.0.
  • npm updated to 10.5.0. Fixes a regression in signals not being passed onto child processes.
  • simdutf8 updated to 4.0.8.
  • Timezone updated to 2024a.
  • zlib updated to 1.3.0.1-motley-40e35a7.
Other notable changes
  • [`4f49e9d000`](https://github.com/nodejs/node/commit/4f49e9d000)] - **(SEMVER-MINOR)** **build**: build opt to set local location of headers (Michael Dawson) [#&#8203;51525](https://github.com/nodejs/node/pull/51525)
    
  • [`ccdb01187b`](https://github.com/nodejs/node/commit/ccdb01187b)] - **doc**: add zcbenz to collaborators (Cheng Zhao) [#&#8203;51812](https://github.com/nodejs/node/pull/51812)
    
  • [`481af53aea`](https://github.com/nodejs/node/commit/481af53aea)] - **doc**: add lemire to collaborators (Daniel Lemire) [#&#8203;51572](https://github.com/nodejs/node/pull/51572)
    
  • [`5ba4d96525`](https://github.com/nodejs/node/commit/5ba4d96525)] - **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader (Tim Perry) [#&#8203;51412](https://github.com/nodejs/node/pull/51412)
    
  • [`0861498e8b`](https://github.com/nodejs/node/commit/0861498e8b)] - **(SEMVER-MINOR)** **http2**: add server handshake utility (snek) [#&#8203;51172](https://github.com/nodejs/node/pull/51172)
    
  • [`6b08d006ee`](https://github.com/nodejs/node/commit/6b08d006ee)] - **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter) [#&#8203;51323](https://github.com/nodejs/node/pull/51323)
    
  • [`7894989bf0`](https://github.com/nodejs/node/commit/7894989bf0)] - **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee Cheung) [#&#8203;51044](https://github.com/nodejs/node/pull/51044)
    
  • [`a58c98ea85`](https://github.com/nodejs/node/commit/a58c98ea85)] - **(SEMVER-MINOR)** **src**: print string content better in BlobDeserializer (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960)
    
  • [`c3c0a3ee5c`](https://github.com/nodejs/node/commit/c3c0a3ee5c)] - **(SEMVER-MINOR)** **src**: support multi-line values for .env file (IlyasShabi) [#&#8203;51289](https://github.com/nodejs/node/pull/51289)
    
  • [`2a921966c6`](https://github.com/nodejs/node/commit/2a921966c6)] - **(SEMVER-MINOR)** **src**: do not coerce dotenv paths (Tobias Nießen) [#&#8203;51425](https://github.com/nodejs/node/pull/51425)
    
  • [`0dee86f295`](https://github.com/nodejs/node/commit/0dee86f295)] - **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee Cheung) [#&#8203;50453](https://github.com/nodejs/node/pull/50453)
    
  • [`ade6614067`](https://github.com/nodejs/node/commit/ade6614067)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#&#8203;50097](https://github.com/nodejs/node/pull/50097)
    
  • [`fe922f05e4`](https://github.com/nodejs/node/commit/fe922f05e4)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#&#8203;51246](https://github.com/nodejs/node/pull/51246)
    
    
Commits
  • [`cbda4e9fc5`](https://github.com/nodejs/node/commit/cbda4e9fc5)] - **assert,crypto**: make KeyObject and CryptoKey testable for equality (Filip Skokan) [#&#8203;50897](https://github.com/nodejs/node/pull/50897)
    
  • [`92fca59647`](https://github.com/nodejs/node/commit/92fca59647)] - **async_hooks,inspector**: implement inspector api without async_wrap (Gabriel Bota) [#&#8203;51501](https://github.com/nodejs/node/pull/51501)
    
  • [`029ca982dc`](https://github.com/nodejs/node/commit/029ca982dc)] - **benchmark**: update iterations of benchmark/async_hooks/async-local- (Lei Shi) [#&#8203;51420](https://github.com/nodejs/node/pull/51420)
    
  • [`350e9fee8d`](https://github.com/nodejs/node/commit/350e9fee8d)] - **benchmark**: update iterations of benchmark/domain/domain-fn-args.js (Lei Shi) [#&#8203;51408](https://github.com/nodejs/node/pull/51408)
    
  • [`40fda97deb`](https://github.com/nodejs/node/commit/40fda97deb)] - **benchmark**: update iterations of assert/deepequal-typedarrays.js (Lei Shi) [#&#8203;51419](https://github.com/nodejs/node/pull/51419)
    
  • [`1b2e3b7049`](https://github.com/nodejs/node/commit/1b2e3b7049)] - **benchmark**: update iterations of benchmark/assert/deepequal-map.js (Lei Shi) [#&#8203;51416](https://github.com/nodejs/node/pull/51416)
    
  • [`7639259203`](https://github.com/nodejs/node/commit/7639259203)] - **benchmark**: rename startup.js to startup-core.js (Joyee Cheung) [#&#8203;51669](https://github.com/nodejs/node/pull/51669)
    
  • [`4be33b5577`](https://github.com/nodejs/node/commit/4be33b5577)] - **benchmark**: remove dependency on unshipped tools (Adam Majer) [#&#8203;51146](https://github.com/nodejs/node/pull/51146)
    
  • [`bd03a154a9`](https://github.com/nodejs/node/commit/bd03a154a9)] - **benchmark**: update iterations in benchmark/perf_hooks (Lei Shi) [#&#8203;50869](https://github.com/nodejs/node/pull/50869)
    
  • [`19b943b909`](https://github.com/nodejs/node/commit/19b943b909)] - **benchmark**: update iterations in benchmark/crypto/aes-gcm-throughput.js (Lei Shi) [#&#8203;50929](https://github.com/nodejs/node/pull/50929)
    
  • [`278c990dea`](https://github.com/nodejs/node/commit/278c990dea)] - **benchmark**: update iteration and size in benchmark/crypto/randomBytes.js (Lei Shi) [#&#8203;50868](https://github.com/nodejs/node/pull/50868)
    
  • [`443d4fcff3`](https://github.com/nodejs/node/commit/443d4fcff3)] - **benchmark**: add undici websocket benchmark (Chenyu Yang) [#&#8203;50586](https://github.com/nodejs/node/pull/50586)
    
  • [`3ab6143380`](https://github.com/nodejs/node/commit/3ab6143380)] - **benchmark**: add create-hash benchmark (Joyee Cheung) [#&#8203;51026](https://github.com/nodejs/node/pull/51026)
    
  • [`6a8ff09332`](https://github.com/nodejs/node/commit/6a8ff09332)] - **benchmark**: update interations and len in benchmark/util/text-decoder.js (Lei Shi) [#&#8203;50938](https://github.com/nodejs/node/pull/50938)
    
  • [`22b53bc1fa`](https://github.com/nodejs/node/commit/22b53bc1fa)] - **benchmark**: update iterations of benchmark/util/type-check.js (Lei Shi) [#&#8203;50937](https://github.com/nodejs/node/pull/50937)
    
  • [`f56bda5109`](https://github.com/nodejs/node/commit/f56bda5109)] - **benchmark**: update iterations in benchmark/util/normalize-encoding.js (Lei Shi) [#&#8203;50934](https://github.com/nodejs/node/pull/50934)
    
  • [`4fc83e1ce3`](https://github.com/nodejs/node/commit/4fc83e1ce3)] - **benchmark**: update iterations in benchmark/util/inspect-array.js (Lei Shi) [#&#8203;50933](https://github.com/nodejs/node/pull/50933)
    
  • [`0edddcfc19`](https://github.com/nodejs/node/commit/0edddcfc19)] - **benchmark**: update iterations in benchmark/util/format.js (Lei Shi) [#&#8203;50932](https://github.com/nodejs/node/pull/50932)
    
  • [`f109961fd1`](https://github.com/nodejs/node/commit/f109961fd1)] - **benchmark**: update iterations in benchmark/crypto/hkdf.js (Lei Shi) [#&#8203;50866](https://github.com/nodejs/node/pull/50866)
    
  • [`1e923f11f2`](https://github.com/nodejs/node/commit/1e923f11f2)] - **benchmark**: update iterations in benchmark/crypto/get-ciphers.js (Lei Shi) [#&#8203;50863](https://github.com/nodejs/node/pull/50863)
    
  • [`f13643da06`](https://github.com/nodejs/node/commit/f13643da06)] - **benchmark**: update number of iterations for `util.inspect` (kylo5aby) [#&#8203;50651](https://github.com/nodejs/node/pull/50651)
    
  • [`03b19cbd2a`](https://github.com/nodejs/node/commit/03b19cbd2a)] - **bootstrap**: improve snapshot unsupported builtin warnings (Joyee Cheung) [#&#8203;50944](https://github.com/nodejs/node/pull/50944)
    
  • [`51ea5b60a9`](https://github.com/nodejs/node/commit/51ea5b60a9)] - **build**: fix arm64 host cross-compilation in GN (Cheng Zhao) [#&#8203;51903](https://github.com/nodejs/node/pull/51903)
    
  • [`9f5547afa2`](https://github.com/nodejs/node/commit/9f5547afa2)] - ***Revert*** "**build**: workaround for node-core-utils" (Richard Lau) [#&#8203;51975](https://github.com/nodejs/node/pull/51975)
    
  • [`58255e73ae`](https://github.com/nodejs/node/commit/58255e73ae)] - **build**: respect the `NODE` env variable in `Makefile` (Antoine du Hamel) [#&#8203;51743](https://github.com/nodejs/node/pull/51743)
    
  • [`0a7419bf0b`](https://github.com/nodejs/node/commit/0a7419bf0b)] - ***Revert*** "**build**: fix warning in cares under GN build" (Luigi Pinca) [#&#8203;51865](https://github.com/nodejs/node/pull/51865)
    
  • [`4118174b85`](https://github.com/nodejs/node/commit/4118174b85)] - **build**: remove `librt` libs link for Android compatibility (BuShe Pie) [#&#8203;51632](https://github.com/nodejs/node/pull/51632)
    
  • [`012da16b85`](https://github.com/nodejs/node/commit/012da16b85)] - **build**: do not rely on gn_helpers in GN build (Cheng Zhao) [#&#8203;51439](https://github.com/nodejs/node/pull/51439)
    
  • [`93fcf52990`](https://github.com/nodejs/node/commit/93fcf52990)] - **build**: fix warning in cares under GN build (Cheng Zhao) [#&#8203;51687](https://github.com/nodejs/node/pull/51687)
    
  • [`2176495455`](https://github.com/nodejs/node/commit/2176495455)] - **build**: fix building js2c with GN (Cheng Zhao) [#&#8203;51818](https://github.com/nodejs/node/pull/51818)
    
  • [`d6e702f885`](https://github.com/nodejs/node/commit/d6e702f885)] - **build**: encode non-ASCII Latin1 characters as one byte in JS2C (Joyee Cheung) [#&#8203;51605](https://github.com/nodejs/node/pull/51605)
    
  • [`4f49e9d000`](https://github.com/nodejs/node/commit/4f49e9d000)] - **(SEMVER-MINOR)** **build**: build opt to set local location of headers (Michael Dawson) [#&#8203;51525](https://github.com/nodejs/node/pull/51525)
    
  • [`8e84aad0ef`](https://github.com/nodejs/node/commit/8e84aad0ef)] - **build**: use macOS m1 machines for testing (Yagiz Nizipli) [#&#8203;51620](https://github.com/nodejs/node/pull/51620)
    
  • [`5fce1a17e2`](https://github.com/nodejs/node/commit/5fce1a17e2)] - **build**: check before removing %config% link (liudonghua) [#&#8203;51437](https://github.com/nodejs/node/pull/51437)
    
  • [`46d6dce1a8`](https://github.com/nodejs/node/commit/46d6dce1a8)] - **build**: increase parallel executions in github (Yagiz Nizipli) [#&#8203;51554](https://github.com/nodejs/node/pull/51554)
    
  • [`8b3ead1f3e`](https://github.com/nodejs/node/commit/8b3ead1f3e)] - **build**: remove copyright header in node.gni (Cheng Zhao) [#&#8203;51535](https://github.com/nodejs/node/pull/51535)
    
  • [`d8b86ad363`](https://github.com/nodejs/node/commit/d8b86ad363)] - **build**: update GN build files for ngtcp2 (Cheng Zhao) [#&#8203;51313](https://github.com/nodejs/node/pull/51313)
    
  • [`ba0ffddd2d`](https://github.com/nodejs/node/commit/ba0ffddd2d)] - **build**: fix for VScode "Reopen in Container" (Serg Kryvonos) [#&#8203;51271](https://github.com/nodejs/node/pull/51271)
    
  • [`8b97e2e0a7`](https://github.com/nodejs/node/commit/8b97e2e0a7)] - **build**: add `-flax-vector-conversions` to V8 build (Michaël Zasso) [#&#8203;51257](https://github.com/nodejs/node/pull/51257)
    
  • [`bd528c7dc0`](https://github.com/nodejs/node/commit/bd528c7dc0)] - **build**: fix warnings from uv for gn build (Cheng Zhao) [#&#8203;51069](https://github.com/nodejs/node/pull/51069)
    
  • [`ffe467b062`](https://github.com/nodejs/node/commit/ffe467b062)] - **build,tools**: make addons tests work with GN (Cheng Zhao) [#&#8203;50737](https://github.com/nodejs/node/pull/50737)
    
  • [`448d67109a`](https://github.com/nodejs/node/commit/448d67109a)] - **(SEMVER-MINOR)** **crypto**: implement crypto.hash() (Joyee Cheung) [#&#8203;51044](https://github.com/nodejs/node/pull/51044)
    
  • [`48959dd2b4`](https://github.com/nodejs/node/commit/48959dd2b4)] - **crypto**: update root certificates to NSS 3.98 (Node.js GitHub Bot) [#&#8203;51794](https://github.com/nodejs/node/pull/51794)
    
  • [`68e8b2c492`](https://github.com/nodejs/node/commit/68e8b2c492)] - **crypto**: use EVP_MD_fetch and cache EVP_MD for hashes (Joyee Cheung) [#&#8203;51034](https://github.com/nodejs/node/pull/51034)
    
  • [`adb5d69621`](https://github.com/nodejs/node/commit/adb5d69621)] - **crypto**: update CryptoKey symbol properties (Filip Skokan) [#&#8203;50897](https://github.com/nodejs/node/pull/50897)
    
  • [`df0213fd3d`](https://github.com/nodejs/node/commit/df0213fd3d)] - **deps**: update nghttp2 to 1.60.0 (Node.js GitHub Bot) [#&#8203;51948](https://github.com/nodejs/node/pull/51948)
    
  • [`208dd887a5`](https://github.com/nodejs/node/commit/208dd887a5)] - **deps**: upgrade npm to 10.5.0 (npm team) [#&#8203;51913](https://github.com/nodejs/node/pull/51913)
    
  • [`587e70e1ee`](https://github.com/nodejs/node/commit/587e70e1ee)] - **deps**: update corepack to 0.25.2 (Node.js GitHub Bot) [#&#8203;51810](https://github.com/nodejs/node/pull/51810)
    
  • [`38343c4857`](https://github.com/nodejs/node/commit/38343c4857)] - **deps**: update c-ares to 1.27.0 (Node.js GitHub Bot) [#&#8203;51846](https://github.com/nodejs/node/pull/51846)
    
  • [`c9974f621c`](https://github.com/nodejs/node/commit/c9974f621c)] - **deps**: update c-ares to 1.26.0 (Node.js GitHub Bot) [#&#8203;51582](https://github.com/nodejs/node/pull/51582)
    
  • [`0aa18e1a1c`](https://github.com/nodejs/node/commit/0aa18e1a1c)] - **deps**: update googletest to [`6a59382`](https://github.com/nodejs/node/commit/6a59382) (Node.js GitHub Bot) [#&#8203;51580](https://github.com/nodejs/node/pull/51580)
    
  • [`f871bc6ddc`](https://github.com/nodejs/node/commit/f871bc6ddc)] - **deps**: update nghttp2 to 1.59.0 (Node.js GitHub Bot) [#&#8203;51581](https://github.com/nodejs/node/pull/51581)
    
  • [`94f8ee8717`](https://github.com/nodejs/node/commit/94f8ee8717)] - **deps**: update corepack to 0.24.1 (Node.js GitHub Bot) [#&#8203;51459](https://github.com/nodejs/node/pull/51459)
    
  • [`c23ce06e6b`](https://github.com/nodejs/node/commit/c23ce06e6b)] - **deps**: update ada to 2.7.6 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542)
    
  • [`372ce69de1`](https://github.com/nodejs/node/commit/372ce69de1)] - **deps**: update ada to 2.7.5 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542)
    
  • [`133719b2c9`](https://github.com/nodejs/node/commit/133719b2c9)] - **deps**: update googletest to [`7c07a86`](https://github.com/nodejs/node/commit/7c07a86) (Node.js GitHub Bot) [#&#8203;51458](https://github.com/nodejs/node/pull/51458)
    
  • [`35675aa07f`](https://github.com/nodejs/node/commit/35675aa07f)] - **deps**: update acorn-walk to 8.3.2 (Node.js GitHub Bot) [#&#8203;51457](https://github.com/nodejs/node/pull/51457)
    
  • [`ca73f55a22`](https://github.com/nodejs/node/commit/ca73f55a22)] - **deps**: update base64 to 0.5.2 (Node.js GitHub Bot) [#&#8203;51455](https://github.com/nodejs/node/pull/51455)
    
  • [`c9dad18191`](https://github.com/nodejs/node/commit/c9dad18191)] - **deps**: compile c-ares with C11 support (Michaël Zasso) [#&#8203;51410](https://github.com/nodejs/node/pull/51410)
    
  • [`a727fa73ee`](https://github.com/nodejs/node/commit/a727fa73ee)] - **deps**: upgrade npm to 10.3.0 (npm team) [#&#8203;51431](https://github.com/nodejs/node/pull/51431)
    
  • [`834bbfd039`](https://github.com/nodejs/node/commit/834bbfd039)] - **deps**: update c-ares to 1.25.0 (Node.js GitHub Bot) [#&#8203;51385](https://github.com/nodejs/node/pull/51385)
    
  • [`4c8fa3e7c2`](https://github.com/nodejs/node/commit/4c8fa3e7c2)] - **deps**: update uvwasi to 0.0.20 and fixup tests (Michael Dawson) [#&#8203;51355](https://github.com/nodejs/node/pull/51355)
    
  • [`bd183ef2af`](https://github.com/nodejs/node/commit/bd183ef2af)] - **deps**: add nghttp3/\*\*/.deps to .gitignore (Luigi Pinca) [#&#8203;51400](https://github.com/nodejs/node/pull/51400)
    
  • [`1d8169995c`](https://github.com/nodejs/node/commit/1d8169995c)] - **deps**: update corepack to 0.24.0 (Node.js GitHub Bot) [#&#8203;51318](https://github.com/nodejs/node/pull/51318)
    
  • [`4dfbbb8789`](https://github.com/nodejs/node/commit/4dfbbb8789)] - **deps**: update acorn to 8.11.3 (Node.js GitHub Bot) [#&#8203;51317](https://github.com/nodejs/node/pull/51317)
    
  • [`7d60877fa3`](https://github.com/nodejs/node/commit/7d60877fa3)] - **deps**: update brotli to 1.1.0 (Node.js GitHub Bot) [#&#8203;50804](https://github.com/nodejs/node/pull/50804)
    
  • [`1b99a3f0af`](https://github.com/nodejs/node/commit/1b99a3f0af)] - **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) [#&#8203;51274](https://github.com/nodejs/node/pull/51274)
    
  • [`2270285839`](https://github.com/nodejs/node/commit/2270285839)] - **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot) [#&#8203;51000](https://github.com/nodejs/node/pull/51000)
    
  • [`61d1535d84`](https://github.com/nodejs/node/commit/61d1535d84)] - **deps**: V8: cherry-pick [`de611e6`](https://github.com/nodejs/node/commit/de611e69ad51) (Keyhan Vakil) [#&#8203;51200](https://github.com/nodejs/node/pull/51200)
    
  • [`04323fd595`](https://github.com/nodejs/node/commit/04323fd595)] - **deps**: update googletest to [`530d5c8`](https://github.com/nodejs/node/commit/530d5c8) (Node.js GitHub Bot) [#&#8203;51191](https://github.com/nodejs/node/pull/51191)
    
  • [`454b4f8d7e`](https://github.com/nodejs/node/commit/454b4f8d7e)] - **deps**: update acorn-walk to 8.3.1 (Node.js GitHub Bot) [#&#8203;50457](https://github.com/nodejs/node/pull/50457)
    
  • [`cc693eb908`](https://github.com/nodejs/node/commit/cc693eb908)] - **deps**: update acorn-walk to 8.3.0 (Node.js GitHub Bot) [#&#8203;50457](https://github.com/nodejs/node/pull/50457)
    
  • [`09519c6655`](https://github.com/nodejs/node/commit/09519c6655)] - **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) [#&#8203;51105](https://github.com/nodejs/node/pull/51105)
    
  • [`a2f39e9168`](https://github.com/nodejs/node/commit/a2f39e9168)] - **deps**: V8: cherry-pick [`0fd478b`](https://github.com/nodejs/node/commit/0fd478bcdabd) (Joyee Cheung) [#&#8203;50572](https://github.com/nodejs/node/pull/50572)
    
  • [`1aaf156ea7`](https://github.com/nodejs/node/commit/1aaf156ea7)] - **deps**: update zlib to 1.3-22124f5 (Node.js GitHub Bot) [#&#8203;50910](https://github.com/nodejs/node/pull/50910)
    
  • [`3f4e254047`](https://github.com/nodejs/node/commit/3f4e254047)] - **deps**: update googletest to [`76bb2af`](https://github.com/nodejs/node/commit/76bb2af) (Node.js GitHub Bot) [#&#8203;50555](https://github.com/nodejs/node/pull/50555)
    
  • [`702684c008`](https://github.com/nodejs/node/commit/702684c008)] - **deps**: update googletest to [`b10fad3`](https://github.com/nodejs/node/commit/b10fad3) (Node.js GitHub Bot) [#&#8203;50555](https://github.com/nodejs/node/pull/50555)
    
  • [`4ee7f29657`](https://github.com/nodejs/node/commit/4ee7f29657)] - **deps**: update timezone to 2024a (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723)
    
  • [`452d74c8b6`](https://github.com/nodejs/node/commit/452d74c8b6)] - **deps**: update icu to 74.2 (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723)
    
  • [`e6fc5a5ee1`](https://github.com/nodejs/node/commit/e6fc5a5ee1)] - **deps**: update timezone to 2023d (Node.js GitHub Bot) [#&#8203;51461](https://github.com/nodejs/node/pull/51461)
    
  • [`4ee0f8306b`](https://github.com/nodejs/node/commit/4ee0f8306b)] - **deps**: update icu to 74.1 (Node.js GitHub Bot) [#&#8203;50515](https://github.com/nodejs/node/pull/50515)
    
  • [`cb49f31480`](https://github.com/nodejs/node/commit/cb49f31480)] - **deps**: cherry-pick [libuv/libuv@`d09441c`](https://github.com/libuv/libuv/commit/d09441c) (Richard Lau) [#&#8203;51976](https://github.com/nodejs/node/pull/51976)
    
  • [`ea50540c5e`](https://github.com/nodejs/node/commit/ea50540c5e)] - ***Revert*** "**deps**: V8: cherry-pick [`13192d6`](https://github.com/nodejs/node/commit/13192d6e10fa)" (kxxt) [#&#8203;51495](https://github.com/nodejs/node/pull/51495)
    
  • [`6fd1617ab4`](https://github.com/nodejs/node/commit/6fd1617ab4)] - **doc**: add policy for distribution (Geoffrey Booth) [#&#8203;51918](https://github.com/nodejs/node/pull/51918)
    
  • [`fc0b389006`](https://github.com/nodejs/node/commit/fc0b389006)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#&#8203;51925](https://github.com/nodejs/node/pull/51925)
    
  • [`93d6d66339`](https://github.com/nodejs/node/commit/93d6d66339)] - **doc**: clarify Corepack threat model (Antoine du Hamel) [#&#8203;51917](https://github.com/nodejs/node/pull/51917)
    
  • [`276d1d1d65`](https://github.com/nodejs/node/commit/276d1d1d65)] - **doc**: add stability index to crypto.hash() (Joyee Cheung) [#&#8203;51978](https://github.com/nodejs/node/pull/51978)
    
  • [`473af948b5`](https://github.com/nodejs/node/commit/473af948b5)] - **doc**: remove redundant backquote which breaks sentence (JounQin) [#&#8203;51904](https://github.com/nodejs/node/pull/51904)
    
  • [`b52b249b05`](https://github.com/nodejs/node/commit/b52b249b05)] - **doc**: update node-api/node-addon-api team link to sharing project news (Ulises Gascón) [#&#8203;51877](https://github.com/nodejs/node/pull/51877)
    
  • [`a74c373ea4`](https://github.com/nodejs/node/commit/a74c373ea4)] - **doc**: add website team to sharing project news (Ulises Gascón) [#&#8203;49002](https://github.com/nodejs/node/pull/49002)
    
  • [`b7ce547d41`](https://github.com/nodejs/node/commit/b7ce547d41)] - **doc**: update guide link for Event Loop (Shrujal Shah) [#&#8203;51874](https://github.com/nodejs/node/pull/51874)
    
  • [`3dfee7ee33`](https://github.com/nodejs/node/commit/3dfee7ee33)] - **doc**: change `ExperimentalWarnings` to `ExperimentalWarning` (Ameet Kaustav) [#&#8203;51741](https://github.com/nodejs/node/pull/51741)
    
  • [`740d0679e7`](https://github.com/nodejs/node/commit/740d0679e7)] - **doc**: add Paolo to TSC members (Michael Dawson) [#&#8203;51825](https://github.com/nodejs/node/pull/51825)
    
  • [`3240a2f349`](https://github.com/nodejs/node/commit/3240a2f349)] - **doc**: reserve 123 for Electron 30 (Keeley Hammond) [#&#8203;51803](https://github.com/nodejs/node/pull/51803)
    
  • [`597e3db0f9`](https://github.com/nodejs/node/commit/597e3db0f9)] - **doc**: add mention to GPG_TTY (Rafael Gonzaga) [#&#8203;51806](https://github.com/nodejs/node/pull/51806)
    
  • [`ccdb01187b`](https://github.com/nodejs/node/commit/ccdb01187b)] - **doc**: add zcbenz to collaborators (Cheng Zhao) [#&#8203;51812](https://github.com/nodejs/node/pull/51812)
    
  • [`3a3de00437`](https://github.com/nodejs/node/commit/3a3de00437)] - **doc**: add entry to stewards (Rafael Gonzaga) [#&#8203;51760](https://github.com/nodejs/node/pull/51760)
    
  • [`06b882d2fa`](https://github.com/nodejs/node/commit/06b882d2fa)] - **doc**: update technical priorities for 2023 (Jean Burellier) [#&#8203;47523](https://github.com/nodejs/node/pull/47523)
    
  • [`9a68b47fe1`](https://github.com/nodejs/node/commit/9a68b47fe1)] - **doc**: mark isWebAssemblyCompiledModule eol (Marco Ippolito) [#&#8203;51442](https://github.com/nodejs/node/pull/51442)
    
  • [`8016628710`](https://github.com/nodejs/node/commit/8016628710)] - **doc**: fix `globals.md` introduction (Antoine du Hamel) [#&#8203;51742](https://github.com/nodejs/node/pull/51742)
    
  • [`9ddbe4523f`](https://github.com/nodejs/node/commit/9ddbe4523f)] - **doc**: updates for better json generating (Dmitry Semigradsky) [#&#8203;51592](https://github.com/nodejs/node/pull/51592)
    
  • [`140cf26d47`](https://github.com/nodejs/node/commit/140cf26d47)] - **doc**: document the GN build (Cheng Zhao) [#&#8203;51676](https://github.com/nodejs/node/pull/51676)
    
  • [`ecfb3f18b3`](https://github.com/nodejs/node/commit/ecfb3f18b3)] - **doc**: fix uncaught exception example (Gabriel Schulhof) [#&#8203;51638](https://github.com/nodejs/node/pull/51638)
    
  • [`b3157a08bf`](https://github.com/nodejs/node/commit/b3157a08bf)] - **doc**: clarify execution of `after` hook on test suite completion (Ognjen Jevremović) [#&#8203;51523](https://github.com/nodejs/node/pull/51523)
    
  • [`1dae1873d9`](https://github.com/nodejs/node/commit/1dae1873d9)] - **doc**: fix `dns.lookup` and `dnsPromises.lookup` description (Duncan Chiu) [#&#8203;51517](https://github.com/nodejs/node/pull/51517)
    
  • [`50df052087`](https://github.com/nodejs/node/commit/50df052087)] - **doc**: note that path.normalize deviates from POSIX (Tobias Nießen) [#&#8203;51513](https://github.com/nodejs/node/pull/51513)
    
  • [`481af53aea`](https://github.com/nodejs/node/commit/481af53aea)] - **doc**: add lemire to collaborators (Daniel Lemire) [#&#8203;51572](https://github.com/nodejs/node/pull/51572)
    
  • [`dec0d5d19a`](https://github.com/nodejs/node/commit/dec0d5d19a)] - **doc**: fix historical experimental fetch flag (Kenrick) [#&#8203;51506](https://github.com/nodejs/node/pull/51506)
    
  • [`96c480b1a1`](https://github.com/nodejs/node/commit/96c480b1a1)] - **doc**: fix type of connectionAttempt parameter (Rafael Gonzaga) [#&#8203;51490](https://github.com/nodejs/node/pull/51490)
    
  • [`76968ab112`](https://github.com/nodejs/node/commit/76968ab112)] - **doc**: remove reference to resolved child_process v8 issue (Ian Kerins) [#&#8203;51467](https://github.com/nodejs/node/pull/51467)
    
  • [`bdd3a2a9fd`](https://github.com/nodejs/node/commit/bdd3a2a9fd)] - **doc**: update typos (Aranđel Šarenac) [#&#8203;51475](https://github.com/nodejs/node/pull/51475)
    
  • [`3532f5587c`](https://github.com/nodejs/node/commit/3532f5587c)] - **doc**: add notes on inspector breakpoints (Chengzhong Wu) [#&#8203;51417](https://github.com/nodejs/node/pull/51417)
    
  • [`0dffb9f049`](https://github.com/nodejs/node/commit/0dffb9f049)] - **doc**: add links in `offboarding.md` (Antoine du Hamel) [#&#8203;51440](https://github.com/nodejs/node/pull/51440)
    
  • [`58d2442f0f`](https://github.com/nodejs/node/commit/58d2442f0f)] - **doc**: fix spelling mistake (u9g) [#&#8203;51454](https://github.com/nodejs/node/pull/51454)
    
  • [`a09f440dbd`](https://github.com/nodejs/node/commit/a09f440dbd)] - **doc**: add check for security reverts (Michael Dawson) [#&#8203;51376](https://github.com/nodejs/node/pull/51376)
    
  • [`401837bfc4`](https://github.com/nodejs/node/commit/401837bfc4)] - **doc**: fix some policy scope typos (Tim Kuijsten) [#&#8203;51234](https://github.com/nodejs/node/pull/51234)
    
  • [`f301f829ba`](https://github.com/nodejs/node/commit/f301f829ba)] - **doc**: improve subtests documentation (Marco Ippolito) [#&#8203;51379](https://github.com/nodejs/node/pull/51379)
    
  • [`1e40f552fd`](https://github.com/nodejs/node/commit/1e40f552fd)] - **doc**: add missing word in `child_process.md` (Joseph Joy) [#&#8203;50370](https://github.com/nodejs/node/pull/50370)
    
  • [`42b4f0f5ab`](https://github.com/nodejs/node/commit/42b4f0f5ab)] - **doc**: fixup alignment of warning subsection (James M Snell) [#&#8203;51374](https://github.com/nodejs/node/pull/51374)
    
  • [`b5bc597871`](https://github.com/nodejs/node/commit/b5bc597871)] - **doc**: the GN files should use Node's license (Cheng Zhao) [#&#8203;50694](https://github.com/nodejs/node/pull/50694)
    
  • [`01a41041d6`](https://github.com/nodejs/node/commit/01a41041d6)] - **doc**: improve localWindowSize event descriptions (Davy Landman) [#&#8203;51071](https://github.com/nodejs/node/pull/51071)
    
  • [`63aa27df10`](https://github.com/nodejs/node/commit/63aa27df10)] - **doc**: mark `--jitless` as experimental (Antoine du Hamel) [#&#8203;51247](https://github.com/nodejs/node/pull/51247)
    
  • [`c8233912e9`](https://github.com/nodejs/node/commit/c8233912e9)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;51199](https://github.com/nodejs/node/pull/51199)
    
  • [`9e360df521`](https://github.com/nodejs/node/commit/9e360df521)] - **doc**: fix limitations and known issues in pm (Rafael Gonzaga) [#&#8203;51184](https://github.com/nodejs/node/pull/51184)
    
  • [`52d8222d32`](https://github.com/nodejs/node/commit/52d8222d32)] - **doc**: mention node:wasi in the Threat Model (Rafael Gonzaga) [#&#8203;51211](https://github.com/nodejs/node/pull/51211)
    
  • [`cb3270e4c8`](https://github.com/nodejs/node/commit/cb3270e4c8)] - **doc**: remove ambiguous 'considered' (Rich Trott) [#&#8203;51207](https://github.com/nodejs/node/pull/51207)
    
  • [`979e183e0c`](https://github.com/nodejs/node/commit/979e183e0c)] - **doc**: set exit code in custom test runner example (Matteo Collina) [#&#8203;51056](https://github.com/nodejs/node/pull/51056)
    
  • [`eaadebb1f4`](https://github.com/nodejs/node/commit/eaadebb1f4)] - **doc**: remove version from `maintaining-dependencies.md` (Antoine du Hamel) [#&#8203;51195](https://github.com/nodejs/node/pull/51195)
    
  • [`256db6e056`](https://github.com/nodejs/node/commit/256db6e056)] - **doc**: mention native addons are restricted in pm (Rafael Gonzaga) [#&#8203;51185](https://github.com/nodejs/node/pull/51185)
    
  • [`2a61602ab2`](https://github.com/nodejs/node/commit/2a61602ab2)] - **doc**: correct note on behavior of stats.isDirectory (Nick Reilingh) [#&#8203;50946](https://github.com/nodejs/node/pull/50946)
    
  • [`184b8bea5b`](https://github.com/nodejs/node/commit/184b8bea5b)] - **doc**: fix `TestsStream` parent class (Jungku Lee) [#&#8203;51181](https://github.com/nodejs/node/pull/51181)
    
  • [`c61597ffe4`](https://github.com/nodejs/node/commit/c61597ffe4)] - **(SEMVER-MINOR)** **doc**: add documentation for --build-snapshot-config (Anna Henningsen) [#&#8203;50453](https://github.com/nodejs/node/pull/50453)
    
  • [`b88170d602`](https://github.com/nodejs/node/commit/b88170d602)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;51111](https://github.com/nodejs/node/pull/51111)
    
  • [`f2b4626ab8`](https://github.com/nodejs/node/commit/f2b4626ab8)] - **doc**: deprecate hash constructor (Marco Ippolito) [#&#8203;51077](https://github.com/nodejs/node/pull/51077)
    
  • [`6c241550cd`](https://github.com/nodejs/node/commit/6c241550cd)] - **doc**: add note regarding `--experimental-detect-module` (Shubherthi Mitra) [#&#8203;51089](https://github.com/nodejs/node/pull/51089)
    
  • [`8ee30ea900`](https://github.com/nodejs/node/commit/8ee30ea900)] - **doc**: correct tracingChannel.traceCallback() (Gerhard Stöbich) [#&#8203;51068](https://github.com/nodejs/node/pull/51068)
    
  • [`1cd27b6eff`](https://github.com/nodejs/node/commit/1cd27b6eff)] - **doc**: use length argument in pbkdf2Key (Tobias Nießen) [#&#8203;51066](https://github.com/nodejs/node/pull/51066)
    
  • [`09ad974537`](https://github.com/nodejs/node/commit/09ad974537)] - **doc**: add deprecation notice to `dirent.path` (Antoine du Hamel) [#&#8203;51059](https://github.com/nodejs/node/pull/51059)
    
  • [`1113e58f87`](https://github.com/nodejs/node/commit/1113e58f87)] - **doc**: deprecate `dirent.path` (Antoine du Hamel) [#&#8203;51020](https://github.com/nodejs/node/pull/51020)
    
  • [`37979d750e`](https://github.com/nodejs/node/commit/37979d750e)] - **doc**: add additional details about `--input-type` (Shubham Pandey) [#&#8203;50796](https://github.com/nodejs/node/pull/50796)
    
  • [`3ff00e1e79`](https://github.com/nodejs/node/commit/3ff00e1e79)] - **doc**: add procedure when CVEs don't get published (Rafael Gonzaga) [#&#8203;50945](https://github.com/nodejs/node/pull/50945)
    
  • [`0930be6bd5`](https://github.com/nodejs/node/commit/0930be6bd5)] - **doc**: fix some errors in esm resolution algorithms (Christopher Jeffrey (JJ)) [#&#8203;50898](https://github.com/nodejs/node/pull/50898)
    
  • [`ddc7964b03`](https://github.com/nodejs/node/commit/ddc7964b03)] - **doc**: reserve 121 for Electron 29 (Shelley Vohr) [#&#8203;50957](https://github.com/nodejs/node/pull/50957)
    
  • [`625fd69b76`](https://github.com/nodejs/node/commit/625fd69b76)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;50926](https://github.com/nodejs/node/pull/50926)
    
  • [`f18269607a`](https://github.com/nodejs/node/commit/f18269607a)] - **doc**: document non-node_modules-only runtime deprecation (Joyee Cheung) [#&#8203;50748](https://github.com/nodejs/node/pull/50748)
    
  • [`5f8e7a0fdb`](https://github.com/nodejs/node/commit/5f8e7a0fdb)] - **doc**: add doc for Unix abstract socket (theanarkh) [#&#8203;50904](https://github.com/nodejs/node/pull/50904)
    
  • [`e0598787e0`](https://github.com/nodejs/node/commit/e0598787e0)] - **doc**: remove flicker on page load on dark theme (Dima Demakov) [#&#8203;50942](https://github.com/nodejs/node/pull/50942)
    
  • [`2a7047d933`](https://github.com/nodejs/node/commit/2a7047d933)] - **doc,crypto**: further clarify RSA_PKCS1\_PADDING support (Tobias Nießen) [#&#8203;51799](https://github.com/nodejs/node/pull/51799)
    
  • [`31c4ba4dfd`](https://github.com/nodejs/node/commit/31c4ba4dfd)] - **doc,crypto**: add changelog and note about disabled RSA_PKCS1\_PADDING (Filip Skokan) [#&#8203;51782](https://github.com/nodejs/node/pull/51782)
    
  • [`90da41548f`](https://github.com/nodejs/node/commit/90da41548f)] - **doc,module**: clarify hook chain execution sequence (Jacob Smith) [#&#8203;51884](https://github.com/nodejs/node/pull/51884)
    
  • [`bb7d7f3d1c`](https://github.com/nodejs/node/commit/bb7d7f3d1c)] - **errors**: fix stacktrace of SystemError (uzlopak) [#&#8203;49956](https://github.com/nodejs/node/pull/49956)
    
  • [`db7459b57b`](https://github.com/nodejs/node/commit/db7459b57b)] - **errors**: improve hideStackFrames (Aras Abbasi) [#&#8203;49990](https://github.com/nodejs/node/pull/49990)
    
  • [`a6b3569121`](https://github.com/nodejs/node/commit/a6b3569121)] - **esm**: improve error when calling `import.meta.resolve` from `data:` URL (Antoine du Hamel) [#&#8203;49516](https://github.com/nodejs/node/pull/49516)
    
  • [`38f4000905`](https://github.com/nodejs/node/commit/38f4000905)] - **esm**: fix hint on invalid module specifier (Antoine du Hamel) [#&#8203;51223](https://github.com/nodejs/node/pull/51223)
    
  • [`e39e37bbd5`](https://github.com/nodejs/node/commit/e39e37bbd5)] - **esm**: fix hook name in error message (Bruce MacNaughton) [#&#8203;50466](https://github.com/nodejs/node/pull/50466)
    
  • [`d9b5cd533c`](https://github.com/nodejs/node/commit/d9b5cd533c)] - **events**: no stopPropagation call in cancelBubble (mert.altin) [#&#8203;50405](https://github.com/nodejs/node/pull/50405)
    
  • [`287a02c4b2`](https://github.com/nodejs/node/commit/287a02c4b2)] - **fs**: load rimraf lazily in fs/promises (Joyee Cheung) [#&#8203;51617](https://github.com/nodejs/node/pull/51617)
    
  • [`bbd1351ef0`](https://github.com/nodejs/node/commit/bbd1351ef0)] - **fs**: remove race condition for recursive watch on Linux (Matteo Collina) [#&#8203;51406](https://github.com/nodejs/node/pull/51406)
    
  • [`1b7ccec5a7`](https://github.com/nodejs/node/commit/1b7ccec5a7)] - **fs**: update jsdoc for `filehandle.createWriteStream` and `appendFile` (Jungku Lee) [#&#8203;51494](https://github.com/nodejs/node/pull/51494)
    
  • [`25056f5024`](https://github.com/nodejs/node/commit/25056f5024)] - **fs**: fix fs.promises.realpath for long paths on Windows (翠 / green) [#&#8203;51032](https://github.com/nodejs/node/pull/51032)
    
  • [`a8fd01a5a2`](https://github.com/nodejs/node/commit/a8fd01a5a2)] - **fs**: make offset, position & length args in fh.read() optional (Pulkit Gupta) [#&#8203;51087](https://github.com/nodejs/node/pull/51087)
    
  • [`721557c6d8`](https://github.com/nodejs/node/commit/721557c6d8)] - **fs**: add missing jsdoc parameters to `readSync` (Yagiz Nizipli) [#&#8203;51225](https://github.com/nodejs/node/pull/51225)
    
  • [`3ce9aacfcd`](https://github.com/nodejs/node/commit/3ce9aacfcd)] - **fs**: remove `internalModuleReadJSON` binding (Yagiz Nizipli) [#&#8203;51224](https://github.com/nodejs/node/pull/51224)
    
  • [`65df2c6787`](https://github.com/nodejs/node/commit/65df2c6787)] - **fs**: improve mkdtemp performance for buffer prefix (Yagiz Nizipli) [#&#8203;51078](https://github.com/nodejs/node/pull/51078)
    
  • [`6705b48012`](https://github.com/nodejs/node/commit/6705b48012)] - **fs**: validate fd synchronously on c++ (Yagiz Nizipli) [#&#8203;51027](https://github.com/nodejs/node/pull/51027)
    
  • [`afd5d67f89`](https://github.com/nodejs/node/commit/afd5d67f89)] - **fs**: throw fchownSync error from c++ (Yagiz Nizipli) [#&#8203;51075](https://github.com/nodejs/node/pull/51075)
    
  • [`bac982bce5`](https://github.com/nodejs/node/commit/bac982bce5)] - **fs**: update params in jsdoc for createReadStream and createWriteStream (Jungku Lee) [#&#8203;51063](https://github.com/nodejs/node/pull/51063)
    
  • [`6764f0c9a8`](https://github.com/nodejs/node/commit/6764f0c9a8)] - **fs**: improve error performance of readvSync (IlyasShabi) [#&#8203;50100](https://github.com/nodejs/node/pull/50100)
    
  • [`0225fce776`](https://github.com/nodejs/node/commit/0225fce776)] - **(SEMVER-MINOR)** **fs**: introduce `dirent.parentPath` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976)
    
  • [`4adea6c405`](https://github.com/nodejs/node/commit/4adea6c405)] - **fs,test**: add URL to string to fs.watch (Rafael Gonzaga) [#&#8203;51346](https://github.com/nodejs/node/pull/51346)
    
  • [`6bf148e12b`](https://github.com/nodejs/node/commit/6bf148e12b)] - **http**: fix `close` return value mismatch between doc and implementation (kylo5aby) [#&#8203;51797](https://github.com/nodejs/node/pull/51797)
    
  • [`66318602d0`](https://github.com/nodejs/node/commit/66318602d0)] - **http**: split set-cookie when using setHeaders (Marco Ippolito) [#&#8203;51649](https://github.com/nodejs/node/pull/51649)
    
  • [`f7b53d05bd`](https://github.com/nodejs/node/commit/f7b53d05bd)] - **http**: remove misleading warning (Luigi Pinca) [#&#8203;51204](https://github.com/nodejs/node/pull/51204)
    
  • [`9062d30600`](https://github.com/nodejs/node/commit/9062d30600)] - **http**: do not override user-provided options object (KuthorX) [#&#8203;33633](https://github.com/nodejs/node/pull/33633)
    
  • [`4e38dee4ee`](https://github.com/nodejs/node/commit/4e38dee4ee)] - **http**: handle multi-value content-disposition header (Arsalan Ahmad) [#&#8203;50977](https://github.com/nodejs/node/pull/50977)
    
  • [`b560bfbb84`](https://github.com/nodejs/node/commit/b560bfbb84)] - **http2**: close idle connections when allowHTTP1 is true (xsbchen) [#&#8203;51569](https://github.com/nodejs/node/pull/51569)
    
  • [`5ba4d96525`](https://github.com/nodejs/node/commit/5ba4d96525)] - **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader (Tim Perry) [#&#8203;51412](https://github.com/nodejs/node/pull/51412)
    
  • [`0861498e8b`](https://github.com/nodejs/node/commit/0861498e8b)] - **(SEMVER-MINOR)** **http2**: add server handshake utility (snek) [#&#8203;51172](https://github.com/nodejs/node/pull/51172)
    
  • [`6b08d006ee`](https://github.com/nodejs/node/commit/6b08d006ee)] - **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter) [#&#8203;51323](https://github.com/nodejs/node/pull/51323)
    
  • [`23414a6120`](https://github.com/nodejs/node/commit/23414a6120)] - **http2**: addtl http/2 settings (Marten Richter) [#&#8203;49025](https://github.com/nodejs/node/pull/49025)
    
  • [`3fe59ba224`](https://github.com/nodejs/node/commit/3fe59ba224)] - **inspector**: add NodeRuntime.waitingForDebugger event (mary marchini) [#&#8203;51560](https://github.com/nodejs/node/pull/51560)
    
  • [`44f05e0d30`](https://github.com/nodejs/node/commit/44f05e0d30)] - **lib**: make sure close net server (theanarkh) [#&#8203;51929](https://github.com/nodejs/node/pull/51929)
    
  • [`3be5ff9c45`](https://github.com/nodejs/node/commit/3be5ff9c45)] - **lib**: return directly if udp socket close before lookup (theanarkh) [#&#8203;51914](https://github.com/nodejs/node/pull/51914)
    
  • [`dcbf88f4c7`](https://github.com/nodejs/node/commit/dcbf88f4c7)] - **lib**: account for cwd access from snapshot serialization cb (Anna Henningsen) [#&#8203;51901](https://github.com/nodejs/node/pull/51901)
    
  • [`da8fa484f8`](https://github.com/nodejs/node/commit/da8fa484f8)] - **lib**: fix http client socket path (theanarkh) [#&#8203;51900](https://github.com/nodejs/node/pull/51900)
    
  • [`55011d2c71`](https://github.com/nodejs/node/commit/55011d2c71)] - **lib**: only build the ESM facade for builtins when they are needed (Joyee Cheung) [#&#8203;51669](https://github.com/nodejs/node/pull/51669)
    
  • [`7894989bf0`](https://github.com/nodejs/node/commit/7894989bf0)] - **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee Cheung) [#&#8203;51044](https://github.com/nodejs/node/pull/51044)
    
  • [`9082cc557d`](https://github.com/nodejs/node/commit/9082cc557d)] - **lib**: do not access process.noDeprecation at build time (Joyee Cheung) [#&#8203;51447](https://github.com/nodejs/node/pull/51447)
    
  • [`6679e6b616`](https://github.com/nodejs/node/commit/6679e6b616)] - **lib**: add assertion for user ESM execution (Joyee Cheung) [#&#8203;51748](https://github.com/nodejs/node/pull/51748)
    
  • [`d6e8d03afc`](https://github.com/nodejs/node/commit/d6e8d03afc)] - **lib**: create global console properties at snapshot build time (Joyee Cheung) [#&#8203;51700](https://github.com/nodejs/node/pull/51700)
    
  • [`bd2a3c10ae`](https://github.com/nodejs/node/commit/bd2a3c10ae)] - **lib**: define FormData and fetch etc. in the built-in snapshot (Joyee Cheung) [#&#8203;51598](https://github.com/nodejs/node/pull/51598)
    
  • [`da79876ef0`](https://github.com/nodejs/node/commit/da79876ef0)] - **lib**: allow checking the test result from afterEach (Tim Stableford) [#&#8203;51485](https://github.com/nodejs/node/pull/51485)
    
  • [`bff7e3cf7a`](https://github.com/nodejs/node/commit/bff7e3cf7a)] - **lib**: remove unnecessary refreshHrtimeBuffer() (Joyee Cheung) [#&#8203;51446](https://github.com/nodejs/node/pull/51446)
    
  • [`562947e012`](https://github.com/nodejs/node/commit/562947e012)] - **lib**: fix use of `--frozen-intrinsics` with `--jitless` (Antoine du Hamel) [#&#8203;51248](https://github.com/nodejs/node/pull/51248)
    
  • [`7b83ef749e`](https://github.com/nodejs/node/commit/7b83ef749e)] - **lib**: move function declaration outside of loop (Sanjaiyan Parthipan) [#&#8203;51242](https://github.com/nodejs/node/pull/51242)
    
  • [`0a85b0fd9d`](https://github.com/nodejs/node/commit/0a85b0fd9d)] - **lib**: reduce overhead of `SafePromiseAllSettledReturnVoid` calls (Antoine du Hamel) [#&#8203;51243](https://github.com/nodejs/node/pull/51243)
    
  • [`f4d7f0498e`](https://github.com/nodejs/node/commit/f4d7f0498e)] - **lib**: expose default prepareStackTrace (Chengzhong Wu) [#&#8203;50827](https://github.com/nodejs/node/pull/50827)
    
  • [`5c7a9c8d4a`](https://github.com/nodejs/node/commit/5c7a9c8d4a)] - **lib**: don't parse windows drive letters as schemes (华) [#&#8203;50580](https://github.com/nodejs/node/pull/50580)
    
  • [`9da6384f5a`](https://github.com/nodejs/node/commit/9da6384f5a)] - **lib**: refactor to use validateFunction in diagnostics_channel (Deokjin Kim) [#&#8203;50955](https://github.com/nodejs/node/pull/50955)
    
  • [`be3205ae24`](https://github.com/nodejs/node/commit/be3205ae24)] - **lib**: streamline process.binding() handling (Joyee Cheung) [#&#8203;50773](https://github.com/nodejs/node/pull/50773)
    
  • [`f4987eb91e`](https://github.com/nodejs/node/commit/f4987eb91e)] - **lib,permission**: handle buffer on fs.symlink (Rafael Gonzaga) [#&#8203;51212](https://github.com/nodejs/node/pull/51212)
    
  • [`861e040b40`](https://github.com/nodejs/node/commit/861e040b40)] - **lib,src**: extract sourceMappingURL from module (unbyte) [#&#8203;51690](https://github.com/nodejs/node/pull/51690)
    
  • [`8a082754e0`](https://github.com/nodejs/node/commit/8a082754e0)] - **lib,src**: replace toUSVString with `toWellFormed()` (Yagiz Nizipli) [#&#8203;47342](https://github.com/nodejs/node/pull/47342)
    
  • [`3badc1139c`](https://github.com/nodejs/node/commit/3badc1139c)] - **(SEMVER-MINOR)** **lib,src,permission**: port path.resolve to C++ (Rafael Gonzaga) [#&#8203;50758](https://github.com/nodejs/node/pull/50758)
    
  • [`4b3cc3ce18`](https://github.com/nodejs/node/commit/4b3cc3ce18)] - **loader**: speed up line length calc used by moduleProvider (Mudit) [#&#8203;50969](https://github.com/nodejs/node/pull/50969)
    
  • [`960d67c51f`](https://github.com/nodejs/node/commit/960d67c51f)] - **meta**: bump github/codeql-action from 3.23.2 to 3.24.6 (dependabot\[bot]) [#&#8203;51942](https://github.com/nodejs/node/pull/51942)
    
  • [`1783b93af2`](https://github.com/nodejs/node/commit/1783b93af2)] - **meta**: bump actions/upload-artifact from 4.3.0 to 4.3.1 (dependabot\[bot]) [#&#8203;51941](https://github.com/nodejs/node/pull/51941)
    
  • [`1db603db2f`](https://github.com/nodejs/node/commit/1db603db2f)] - **meta**: bump codecov/codecov-action from 4.0.1 to 4.1.0 (dependabot\[bot]) [#&#8203;51940](https://github.com/nodejs/node/pull/51940)
    
  • [`2ddec64d5a`](https://github.com/nodejs/node/commit/2ddec64d5a)] - **meta**: bump actions/cache from 4.0.0 to 4.0.1 (dependabot\[bot]) [#&#8203;51939](https://github.com/nodejs/node/pull/51939)
    
  • [`92490421be`](https://github.com/nodejs/node/commit/92490421be)] - **meta**: bump actions/download-artifact from 4.1.1 to 4.1.3 (dependabot\[bot]) [#&#8203;51938](https://github.com/nodejs/node/pull/51938)
    
  • [`f3fa2b72b8`](https://github.com/nodejs/node/commit/f3fa2b72b8)] - **meta**: bump actions/setup-node from 4.0.1 to 4.0.2 (dependabot\[bot]) [#&#8203;51937](https://github.com/nodejs/node/pull/51937)
    
  • [`a62b042e83`](https://github.com/nodejs/node/commit/a62b042e83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;51726](https://github.com/nodejs/node/pull/51726)
    
  • [`491f9f9902`](https://github.com/nodejs/node/commit/491f9f9902)] - **meta**: bump codecov/codecov-action from 3.1.4 to 4.0.1 (dependabot\[bot]) [#&#8203;51648](https://github.com/nodejs/node/pull/51648)
    
  • [`2765077a47`](https://github.com/nodejs/node/commit/2765077a47)] - **meta**: bump actions/download-artifact from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;51644](https://github.com/nodejs/node/pull/51644)
    
  • [`152a07b854`](https://github.com/nodejs/node/commit/152a07b854)] - **meta**: bump actions/upload-artifact from 4.0.0 to 4.3.0 (dependabot\[bot]) [#&#8203;51643](https://github.com/nodejs/node/pull/51643)
    
  • [`53826920fb`](https://github.com/nodejs/node/commit/53826920fb)] - **meta**: bump step-security/harden-runner from 2.6.1 to 2.7.0 (dependabot\[bot]) [#&#8203;51641](https://github.com/nodejs/node/pull/51641)
    
  • [`3d1dc9b030`](https://github.com/nodejs/node/commit/3d1dc9b030)] - **meta**: bump actions/cache from 3.3.2 to 4.0.0 (dependabot\[bot]) [#&#8203;51640](https://github.com/nodejs/node/pull/51640)
    
  • [`287bdf6bda`](https://github.com/nodejs/node/commit/287bdf6bda)] - **meta**: bump github/codeql-action from 3.22.12 to 3.23.2 (dependabot\[bot]) [#&#8203;51639](https://github.com/nodejs/node/pull/51639)
    
  • [`90068fb0f1`](https://github.com/nodejs/node/commit/90068fb0f1)] - **meta**: add .mailmap entry for lemire (Daniel Lemire) [#&#8203;51600](https://github.com/nodejs/node/pull/51600)
    
  • [`f91786bd70`](https://github.com/nodejs/node/commit/f91786bd70)] - **meta**: mark security-wg codeowner for deps folder (Marco Ippolito) [#&#8203;51529](https://github.com/nodejs/node/pull/51529)
    
  • [`e51221be8d`](https://github.com/nodejs/node/commit/e51221be8d)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;51468](https://github.com/nodejs/node/pull/51468)
    
  • [`4a8a012c6d`](https://github.com/nodejs/node/commit/4a8a012c6d)] - **meta**: move RaisinTen to emeritus and remove from strategic initiatives (Darshan Sen) [#&#8203;51411](https://github.com/nodejs/node/pull/51411)
    
  • [`e9276bab3f`](https://github.com/nodejs/node/commit/e9276bab3f)] - **meta**: add .temp and .lock tags to ignore (Rafael Gonzaga) [#&#8203;51343](https://github.com/nodejs/node/pull/51343)
    
  • [`ae6fecbc8d`](https://github.com/nodejs/node/commit/ae6fecbc8d)] - **meta**: bump actions/setup-python from 4.7.1 to 5.0.0 (dependabot\[bot]) [#&#8203;51335](https://github.com/nodejs/node/pull/51335)
    
  • [`f4be49a618`](https://github.com/nodejs/node/commit/f4be49a618)] - **meta**: bump actions/setup-node from 4.0.0 to 4.0.1 (dependabot\[bot]) [#&#8203;51334](https://github.com/nodejs/node/pull/51334)
    
  • [`e24aa7ced1`](https://github.com/nodejs/node/commit/e24aa7ced1)] - **meta**: bump github/codeql-action from 2.22.8 to 3.22.12 (dependabot\[bot]) [#&#8203;51333](https://github.com/nodejs/node/pull/51333)
    
  • [`287c2bcf56`](https://github.com/nodejs/node/commit/287c2bcf56)] - **meta**: bump actions/stale from 8.0.0 to 9.0.0 (dependabot\[bot]) [#&#8203;51332](https://github.com/nodejs/node/pull/51332)
    
  • [`1cad0dfaff`](https://github.com/nodejs/node/commit/1cad0dfaff)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;51329](https://github.com/nodejs/node/pull/51329)
    
  • [`eef64b782e`](https://github.com/nodejs/node/commit/eef64b782e)] - **meta**: notify tsc on changes in SECURITY.md (Rafael Gonzaga) [#&#8203;51259](https://github.com/nodejs/node/pull/51259)
    
  • [`95a880f728`](https://github.com/nodejs/node/commit/95a880f728)] - **meta**: update artifact actions to v4 (Michaël Zasso) [#&#8203;51219](https://github.com/nodejs/node/pull/51219)
    
  • [`59805f6879`](https://github.com/nodejs/node/commit/59805f6879)] - **meta**: bump step-security/harden-runner from 2.6.0 to 2.6.1 (dependabot\[bot]) [#&#8203;50999](https://github.com/nodejs/node/pull/50999)
    
  • [`d74e0b97c3`](https://github.com/nodejs/node/commit/d74e0b97c3)] - **meta**: bump github/codeql-action from 2.22.5 to 2.22.8 (dependabot\[bot]) [#&#8203;50998](https://github.com/nodejs/node/pull/50998)
    
  • [`91cd9183d1`](https://github.com/nodejs/node/commit/91cd9183d1)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;50931](https://github.com/nodejs/node/pull/50931)
    
  • [`c621491aba`](https://github.com/nodejs/node/commit/c621491aba)] - **module**: fix crash when built-in module export a `default` key (Antoine du Hamel) [#&#8203;51481](https://github.com/nodejs/node/pull/51481)
    
  • [`43a8d3e984`](https://github.com/nodejs/node/commit/43a8d3e984)] - **module**: fix `--preserve-symlinks-main` (per4uk) [#&#8203;51312](https://github.com/nodejs/node/pull/51312)
    
  • [`d8da197f86`](https://github.com/nodejs/node/commit/d8da197f86)] - **module**: move the CJS exports cache to internal/modules/cjs/loader (Joyee Cheung) [#&#8203;51157](https://github.com/nodejs/node/pull/51157)
    
  • [`5fc10ca4d6`](https://github.com/nodejs/node/commit/5fc10ca4d6)] - **module**: load source maps in `commonjs` translator (Hiroki Osame) [#&#8203;51033](https://github.com/nodejs/node/pull/51033)
    
  • [`43e9f0bc65`](https://github.com/nodejs/node/commit/43e9f0bc65)] - **module**: document `parentURL` in register options (Hiroki Osame) [#&#8203;51039](https://github.com/nodejs/node/pull/51039)
    
  • [`870ef5a73f`](https://github.com/nodejs/node/commit/870ef5a73f)] - **net**: fix connect crash when call destroy in lookup handler (theanarkh) [#&#8203;51826](https://github.com/nodejs/node/pull/51826)
    
  • [`caf71e05a6`](https://github.com/nodejs/node/commit/caf71e05a6)] - **net**: fix example IPv4 in dns docs (Aras Abbasi) [#&#8203;51377](https://github.com/nodejs/node/pull/51377)
    
  • [`58a636be0e`](https://github.com/nodejs/node/commit/58a636be0e)] - **(SEMVER-MINOR)** **net**: add connection attempt events (Paolo Insogna) [#&#8203;51045](https://github.com/nodejs/node/pull/51045)
    
  • [`06a29f830a`](https://github.com/nodejs/node/commit/06a29f830a)] - **node-api**: make napi_get_buffer_info check if passed buffer is valid (Janrupf) [#&#8203;51571](https://github.com/nodejs/node/pull/51571)
    
  • [`0fb98438e4`](https://github.com/nodejs/node/commit/0fb98438e4)] - **node-api**: move NAPI_EXPERIMENTAL definition to gyp file (Gabriel Schulhof) [#&#8203;51254](https://github.com/nodejs/node/pull/51254)
    
  • [`242139fb98`](https://github.com/nodejs/node/commit/242139fb98)] - **node-api**: optimize napi_set_property for perf (Mert Can Altın) [#&#8203;50282](https://github.com/nodejs/node/pull/50282)
    
  • [`dc3d70c040`](https://github.com/nodejs/node/commit/dc3d70c040)] - **node-api**: type tag external values without v8::Private (Chengzhong Wu) [#&#8203;51149](https://github.com/nodejs/node/pull/51149)
    
  • [`0ac070ccb7`](https://github.com/nodejs/node/commit/0ac070ccb7)] - **node-api**: segregate nogc APIs from rest via type system (Gabriel Schulhof) [#&#8203;50060](https://github.com/nodejs/node/pull/50060)
    
  • [`de65cada70`](https://github.com/nodejs/node/commit/de65cada70)] - **node-api**: introduce experimental feature flags (Gabriel Schulhof) [#&#8203;50991](https://github.com/nodejs/node/pull/50991)
    
  • [`e192ba18cd`](https://github.com/nodejs/node/commit/e192ba18cd)] - **perf_hooks**: performance milestone time origin timestamp improvement (IlyasShabi) [#&#8203;51713](https://github.com/nodejs/node/pull/51713)
    
  • [`f94336f95a`](https://github.com/nodejs/node/commit/f94336f95a)] - **repl**: fix `NO_COLORS` env var is ignored (Moshe Atlow) [#&#8203;51568](https://github.com/nodejs/node/pull/51568)
    
  • [`e08649caa0`](https://github.com/nodejs/node/commit/e08649caa0)] - **repl**: fix prepareStackTrace frames array order (Chengzhong Wu) [#&#8203;50827](https://github.com/nodejs/node/pull/50827)
    
  • [`07614072f1`](https://github.com/nodejs/node/commit/07614072f1)] - **sea**: update stability index (Joyee Cheung) [#&#8203;51774](https://github.com/nodejs/node/pull/51774)
    
  • [`eea0d74454`](https://github.com/nodejs/node/commit/eea0d74454)] - **(SEMVER-MINOR)** **sea**: support sea.getRawAsset() (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960)
    
  • [`db0efa3f40`](https://github.com/nodejs/node/commit/db0efa3f40)] - **(SEMVER-MINOR)** **sea**: support embedding assets (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960)
    
  • [`9b164c6eec`](https://github.com/nodejs/node/commit/9b164c6eec)] - **src**: fix --disable-single-executable-application (Joyee Cheung) [#&#8203;51808](https://github.com/nodejs/node/pull/51808)
    
  • [`306c1d35e5`](https://github.com/nodejs/node/commit/306c1d35e5)] - **src**: simplify direct queries of env vars in C++ land (Joyee Cheung) [#&#8203;51829](https://github.com/nodejs/node/pull/51829)
    
  • [`696063a47c`](https://github.com/nodejs/node/commit/696063a47c)] - **src**: stop the profiler and the inspector before snapshot serialization (Joyee Cheung) [#&#8203;51815](https://github.com/nodejs/node/pull/51815)
    
  • [`be40c8286c`](https://github.com/nodejs/node/commit/be40c8286c)] - **src**: simplify embedder entry point execution (Joyee Cheung) [#&#8203;51557](https://github.com/nodejs/node/pull/51557)
    
  • [`90391ff256`](https://github.com/nodejs/node/commit/90391ff256)] - **src**: compile code eagerly in snapshot builder (Joyee Cheung) [#&#8203;51672](https://github.com/nodejs/node/pull/51672)
    
  • [`3875fa1dc5`](https://github.com/nodejs/node/commit/3875fa1dc5)] - **src**: check empty before accessing string (Cheng Zhao) [#&#8203;51665](https://github.com/nodejs/node/pull/51665)
    
  • [`a58c98ea85`](https://github.com/nodejs/node/commit/a58c98ea85)] - **(SEMVER-MINOR)** **src**: print string content better in BlobDeserializer (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960)
    
  • [`62707a9d27`](https://github.com/nodejs/node/commit/62707a9d27)] - **src**: fix vm bug for configurable globalThis (F. Hinkelmann) [#&#8203;51602](https://github.com/nodejs/node/pull/51602)
    
  • [`c3c0a3ee5c`](https://github.com/nodejs/node/commit/c3c0a3ee5c)] - **(SEMVER-MINOR)** **src**: support multi-line values for .env file (IlyasShabi) [#&#8203;51289](https://github.com/nodejs/node/pull/51289)
    
  • [`dc8fe9ebf4`](https://github.com/nodejs/node/commit/dc8fe9ebf4)] - **(SEMVER-MINOR)** **src**: add `process.loadEnvFile` and `util.parseEnv` (Yagiz Nizipli) [#&#8203;51476](https://github.com/nodejs/node/pull/51476)
    
  • [`a5afad2a4d`](https://github.com/nodejs/node/commit/a5afad2a4d)] - **src**: terminate correctly double-quote in env variable (Marco Ippolito) [#&#8203;51510](https://github.com/nodejs/node/pull/51510)
    
  • [`2a921966c6`](https://github.com/nodejs/node/commit/2a921966c6)] - **(SEMVER-MINOR)** **src**: do not coerce dotenv paths (Tobias Nießen) [#&#8203;51425](https://github.com/nodejs/node/pull/51425)
    
  • [`50ec55c268`](https://github.com/nodejs/node/commit/50ec55c268)] - **src**: refactor `GetCreationContext` calls (Jungku Lee) [#&#8203;51367](https://github.com/nodejs/node/pull/51367)
    
  • [`2e65389922`](https://github.com/nodejs/node/commit/2e65389922)] - **src**: do not read string out of bounds (Cheng Zhao) [#&#8203;51358](https://github.com/nodejs/node/pull/51358)
    
  • [`a653531089`](https://github.com/nodejs/node/commit/a653531089)] - **src**: avoid shadowed string in fs_permission (Shelley Vohr) [#&#8203;51123](https://github.com/nodejs/node/pull/51123)
    
  • [`c190a057ff`](https://github.com/nodejs/node/commit/c190a057ff)] - **src**: avoid draining platform tasks at FreeEnvironment (Chengzhong Wu) [#&#8203;51290](https://github.com/nodejs/node/pull/51290)
    
  • [`00227674f5`](https://github.com/nodejs/node/commit/00227674f5)] - **src**: add fast api for Histogram (James M Snell) [#&#8203;51296](https://github.com/nodejs/node/pull/51296)
    
  • [`4733c8e4df`](https://github.com/nodejs/node/commit/4733c8e4df)] - **src**: refactor `GetCreationContext` calls (Yagiz Nizipli) [#&#8203;51287](https://github.com/nodejs/node/pull/51287)
    
  • [`d76e16bb47`](https://github.com/nodejs/node/commit/d76e16bb47)] - **src**: enter isolate before destructing IsolateData (Ben Noordhuis) [#&#8203;51138](https://github.com/nodejs/node/pull/51138)
    
  • [`4ffdd37d2c`](https://github.com/nodejs/node/commit/4ffdd37d2c)] - **src**: eliminate duplicate code in histogram.cc (James M Snell) [#&#8203;51263](https://github.com/nodejs/node/pull/51263)
    
  • [`2ce8b974a0`](https://github.com/nodejs/node/commit/2ce8b974a0)] - **src**: fix unix abstract socket path for trace event (theanarkh) [#&#8203;50858](https://github.com/nodejs/node/pull/50858)
    
  • [`9b25268cb8`](https://github.com/nodejs/node/commit/9b25268cb8)] - **src**: use BignumPointer and use BN_clear_free (James M Snell) [#&#8203;50454](https://github.com/nodejs/node/pull/50454)
    
  • [`a80f660343`](https://github.com/nodejs/node/commit/a80f660343)] - **src**: implement FastByteLengthUtf8 with simdutf::utf8\_length_from_latin1 (Daniel Lemire) [#&#8203;50840](https://github.com/nodejs/node/pull/50840)
    
  • [`0dee86f295`](https://github.com/nodejs/node/commit/0dee86f295)] - **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee Cheung) [#&#8203;50453](https://github.com/nodejs/node/pull/50453)
    
  • [`90b5ed1d1d`](https://github.com/nodejs/node/commit/90b5ed1d1d)] - **src**: implement countObjectsWithPrototype (Joyee Cheung) [#&#8203;50572](https://github.com/nodejs/node/pull/50572)
    
  • [`9365e129ed`](https://github.com/nodejs/node/commit/9365e129ed)] - **src**: register udp_wrap external references (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943)
    
  • [`b05d496b6c`](https://github.com/nodejs/node/commit/b05d496b6c)] - **src**: register spawn_sync external references (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943)
    
  • [`642fb44982`](https://github.com/nodejs/node/commit/642fb44982)] - **src**: register process_wrap external references (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943)
    
  • [`c7c9e81a1a`](https://github.com/nodejs/node/commit/c7c9e81a1a)] - **src**: fix double free reported by coverity (Michael Dawson) [#&#8203;51046](https://github.com/nodejs/node/pull/51046)
    
  • [`358793e28e`](https://github.com/nodejs/node/commit/358793e28e)] - **src**: remove unused headers in `node_file.cc` (Jungku Lee) [#&#8203;50927](https://github.com/nodejs/node/pull/50927)
    
  • [`c705b73a74`](https://github.com/nodejs/node/commit/c705b73a74)] - **src**: implement --trace-promises (Joyee Cheung) [#&#8203;50899](https://github.com/nodejs/node/pull/50899)
    
  • [`97aa67f006`](https://github.com/nodejs/node/commit/97aa67f006)] - **src**: fix dynamically linked zlib version (Richard Lau) [#&#8203;51007](https://github.com/nodejs/node/pull/51007)
    
  • [`d6f46a44f2`](https://github.com/nodejs/node/commit/d6f46a44f2)] - **src**: make ModifyCodeGenerationFromStrings more robust (Joyee Cheung) [#&#8203;50763](https://github.com/nodejs/node/pull/50763)
    
  • [`362135a1f9`](https://github.com/nodejs/node/commit/362135a1f9)] - **src**: disable uncaught exception abortion for ESM syntax detection (Yagiz Nizipli) [#&#8203;50987](https://github.com/nodejs/node/pull/50987)
    
  • [`d82b0d4320`](https://github.com/nodejs/node/commit/d82b0d4320)] - **src**: fix backtrace with tail \[\[noreturn]] abort (Chengzhong Wu) [#&#8203;50849](https://github.com/nodejs/node/pull/50849)
    
  • [`6df3e31bff`](https://github.com/nodejs/node/commit/6df3e31bff)] - **src**: print MKSNAPSHOT debug logs to stderr (Joyee Cheung) [#&#8203;50759](https://github.com/nodejs/node/pull/50759)
    
  • [`fd5efac176`](https://github.com/nodejs/node/commit/fd5efac176)] - **(SEMVER-MINOR)** **src,permission**: add --allow-addon flag (Rafael Gonzaga) [#&#8203;51183](https://github.com/nodejs/node/pull/51183)
    
  • [`b616f6fa06`](https://github.com/nodejs/node/commit/b616f6fa06)] - **src,stream**: improve WriteString (ywave620) [#&#8203;51155](https://github.com/nodejs/node/pull/51155)
    
  • [`16d8cd5b22`](https://github.com/nodejs/node/commit/16d8cd5b22)] - **stream**: do not defer construction by one microtick (Matteo Collina) [#&#8203;52005](https://github.com/nodejs/node/pull/52005)
    
  • [`7931c3bbc8`](https://github.com/nodejs/node/commit/7931c3bbc8)] - **stream**: fix eventNames() to not return not defined events (IlyasShabi) [#&#8203;51331](https://github.com/nodejs/node/pull/51331)
    
  • [`d0a6f3515d`](https://github.com/nodejs/node/commit/d0a6f3515d)] - **stream**: fix cloned webstreams not being unref correctly (tsctx) [#&#8203;51526](https://github.com/nodejs/node/pull/51526)
    
  • [`8750070a47`](https://github.com/nodejs/node/commit/8750070a47)] - **stream**: fix fd is null when calling clearBuffer (kylo5aby) [#&#8203;50994](https://github.com/nodejs/node/pull/50994)
    
  • [`ade6614067`](https://github.com/nodejs/node/commit/ade6614067)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#&#8203;50097](https://github.com/nodejs/node/pull/50097)
    
  • [`905c48fc6e`](https://github.com/nodejs/node/commit/905c48fc6e)] - **test**: add regression test for test_runner after hook (Colin Ihrig) [#&#8203;51998](https://github.com/nodejs/node/pull/51998)
    
  • [`60f008b65e`](https://github.com/nodejs/node/commit/60f008b65e)] - **test**: reduce flakiness of `test-runner-output` (Antoine du Hamel) [#&#8203;51952](https://github.com/nodejs/node/pull/51952)
    
  • [`0ad88f6a5c`](https://github.com/nodejs/node/commit/0ad88f6a5c)] - **test**: fix flaky http-chunk-extensions-limit test (Ethan Arrowood) [#&#8203;51943](https://github.com/nodejs/node/pull/51943)
    
  • [`3f85c7ac97`](https://github.com/nodejs/node/commit/3f85c7ac97)] - **test**: remove flaky designation (Luigi Pinca) [#&#8203;51736](https://github.com/nodejs/node/pull/51736)
    
  • [`f37648ee5c`](https://github.com/nodejs/node/commit/f37648ee5c)] - **test**: skip SEA tests when SEA generation fails (Joyee Cheung) [#&#8203;51887](https://github.com/nodejs/node/pull/51887)
    
  • [`136b6a998b`](https://github.com/nodejs/node/commit/136b6a998b)] - **test**: fix unreliable assumption in js-native-api/test_cannot_run_js (Joyee Cheung) [#&#8203;51898](https://github.com/nodejs/node/pull/51898)
    
  • [`d90594aefa`](https://github.com/nodejs/node/commit/d90594aefa)] - **test**: deflake test-http2-large-write-multiple-requests (Joyee Cheung) [#&#8203;51863](https://github.com/nodejs/node/pull/51863)
    
  • [`a0b36e33d1`](https://github.com/nodejs/node/commit/a0b36e33d1)] - **test**: fix test-debugger-profile for coverage generation (Joyee Cheung) [#&#8203;51816](https://github.com/nodejs/node/pull/51816)
    
  • [`dd0f164ca3`](https://github.com/nodejs/node/commit/dd0f164ca3)] - **test**: fix test-bootstrap-modules for coverage generation (Joyee Cheung) [#&#8203;51816](https://github.com/nodejs/node/pull/51816)
    
  • [`e4c7d62496`](https://github.com/nodejs/node/commit/e4c7d62496)] - **test**: ensure delay in recursive fs watch tests (Joyee Cheung) [#&#8203;51842](https://github.com/nodejs/node/pull/51842)
    
  • [`963d7d7dea`](https://github.com/nodejs/node/commit/963d7d7dea)] - **test**: fix test-child-process-fork-net (Joyee Cheung) [#&#8203;51841](https://github.com/nodejs/node/pull/51841)
    
  • [`dd708d337e`](https://github.com/nodejs/node/commit/dd708d337e)] - **test**: split wasi tests (Joyee Cheung) [#&#8203;51836](https://github.com/nodejs/node/pull/51836)
    
  • [`853b48d905`](https://github.com/nodejs/node/commit/853b48d905)] - **test**: remove test-fs-stat-bigint flaky designation (Luigi Pinca) [#&#8203;51735](https://github.com/nodejs/node/pull/51735)
    
  • [`fdc7d751de`](https://github.com/nodejs/node/commit/fdc7d751de)] - **test**: skip test-http-correct-hostname on loong64 (Shi Pujin) [#&#8203;51663](https://github.com/nodejs/node/pull/51663)
    
  • [`c33f860d2b`](https://github.com/nodejs/node/commit/c33f860d2b)] - **test**: remove test-cli-node-options flaky designation (Luigi Pinca) [#&#8203;51716](https://github.com/nodejs/node/pull/51716)
    
  • [`f528e965f6`](https://github.com/nodejs/node/commit/f528e965f6)] - **test**: remove test-domain-error-types flaky designation (Luigi Pinca) [#&#8203;51717](https://github.com/nodejs/node/pull/51717)
    
  • [`7e3ee828f1`](https://github.com/nodejs/node/commit/7e3ee828f1)] - **test**: fix `internet/test-inspector-help-page` (Richard Lau) [#&#8203;51693](https://github.com/nodejs/node/pull/51693)
    
  • [`170278c25d`](https://github.com/nodejs/node/commit/170278c25d)] - **test**: remove duplicate entry for flaky test (Luigi Pinca) [#&#8203;51654](https://github.com/nodejs/node/pull/51654)
    
  • [`d0d5bd0e54`](https://github.com/nodejs/node/commit/d0d5bd0e54)] - **test**: remove test-crypto-keygen flaky designation (Luigi Pinca) [#&#8203;51567](https://github.com/nodejs/node/pull/51567)
    
  • [`bca6dcca0b`](https://github.com/nodejs/node/commit/bca6dcca0b)] - **test**: remove test-fs-rmdir-recursive flaky designation (Luigi Pinca) [#&#8203;51566](https://github.com/nodejs/node/pull/51566)
    
  • [`af3f229d6b`](https://github.com/nodejs/node/commit/af3f229d6b)] - **test**: remove common.expectsError calls for asserts (Paulo Chaves) [#&#8203;51504](https://github.com/nodejs/node/pull/51504)
    
  • [`f6fcd200e6`](https://github.com/nodejs/node/commit/f6fcd200e6)] - **test**: mark test-http2-large-file as flaky (Michaël Zasso) [#&#8203;51549](https://github.com/nodejs/node/pull/51549)
    
  • [`1d8e65a230`](https://github.com/nodejs/node/commit/1d8e65a230)] - **test**: use checkIfCollectableByCounting in SourceTextModule leak test (Joyee Cheung) [#&#8203;51512](https://github.com/nodejs/node/pull/51512)
    
  • [`713afed6b0`](https://github.com/nodejs/node/commit/713afed6b0)] - **test**: remove test-file-write-stream4 flaky designation (Luigi Pinca) [#&#8203;51472](https://github.com/nodejs/node/pull/51472)
    
  • [`292d0174df`](https://github.com/nodejs/node/commit/292d0174df)] - **test**: add URL tests to fs-write (Rafael Gonzaga) [#&#8203;51352](https://github.com/nodejs/node/pull/51352)
    
  • [`954e2f2f58`](https://github.com/nodejs/node/commit/954e2f2f58)] - **test**: remove unneeded common.expectsError for asserts (Andrés Morelos) [#&#8203;51353](https://github.com/nodejs/node/pull/51353)
    
  • [`f2dfe0fa80`](https://github.com/nodejs/node/commit/f2dfe0fa80)] - **test**: add regression test for 51586 (Matteo Collina) [#&#8203;51491](https://github.com/nodejs/node/pull/51491)
    
  • [`6ee5f50789`](https://github.com/nodejs/node/commit/6ee5f50789)] - **test**: fix flaky conditions for ppc64 SEA tests (Richard Lau) [#&#8203;51422](https://github.com/nodejs/node/pull/51422)
    
  • [`06a6eef9a4`](https://github.com/nodejs/node/commit/06a6eef9a4)] - **test**: replace forEach() with for...of (Alexander Jones) [#&#8203;50608](https://github.com/nodejs/node/pull/50608)
    
  • [`a98102a6de`](https://github.com/nodejs/node/commit/a98102a6de)] - **test**: replace forEach with for...of (Ospite Privilegiato) [#&#8203;50787](https://github.com/nodejs/node/pull/50787)
    
  • [`e9080a94d3`](https://github.com/nodejs/node/commit/e9080a94d3)] - **test**: replace foreach with for of (lucacapocci94-dev) [#&#8203;50790](https://github.com/nodejs/node/pull/50790)
    
  • [`42b162b06d`](https://github.com/nodejs/node/commit/42b162b06d)] - **test**: replace forEach() with for...of (Jia) [#&#8203;50610](https://github.com/nodejs/node/pull/50610)
    
  • [`cab7737f7e`](https://github.com/nodejs/node/commit/cab7737f7e)] - **test**: fix inconsistency write size in `test-fs-readfile-tostring-fail` (Jungku Lee) [#&#8203;51141](https://github.com/nodejs/node/pull/51141)
    
  • [`15731b4b2f`](https://github.com/nodejs/node/commit/15731b4b2f)] - **test**: replace forEach test-http-server-multiheaders2 (Marco Mac) [#&#8203;50794](https://github.com/nodejs/node/pull/50794)
    
  • [`9cedaa62fa`](https://github.com/nodejs/node/commit/9cedaa62fa)] - **test**: replace forEach with for-of in test-webcrypto-export-import-ec (Chiara Ricciardi) [#&#8203;51249](https://github.com/nodejs/node/pull/51249)
    
  • [`7f301e04be`](https://github.com/nodejs/node/commit/7f301e04be)] - **test**: move to for of loop in test-http-hostname-typechecking.js (Luca Del Puppo) [#&#8203;50782](https://github.com/nodejs/node/pull/50782)
    
  • [`6e62e649df`](https://github.com/nodejs/node/commit/6e62e649df)] - **test**: skip test-watch-mode-inspect on arm (Michael Dawson) [#&#8203;51210](https://github.com/nodejs/node/pull/51210)
    
  • [`c3c2b2b041`](https://github.com/nodejs/node/commit/c3c2b2b041)] - **test**: replace forEach with for of in file test-trace-events-net.js (Ianna83) [#&#8203;50789](https://github.com/nodejs/node/pull/50789)
    
  • [`55c423ba4f`](https://github.com/nodejs/node/commit/55c423ba4f)] - **test**: replace forEach() with for...of in test/parallel/test-util-log.js (Edoardo Dusi) [#&#8203;50783](https://github.com/nodejs/node/pull/50783)
    
  • [`8ac05cf3c4`](https://github.com/nodejs/node/commit/8ac05cf3c4)] - **test**: replace forEach with for of in test-trace-events-api.js (Andrea Pavone) [#&#8203;50784](https://github.com/nodejs/node/pull/50784)
    
  • [`d10d39e8ba`](https://github.com/nodejs/node/commit/d10d39e8ba)] - **test**: replace forEach with for-of in test-v8-serders.js (Mattia Iannone) [#&#8203;50791](https://github.com/nodejs/node/pull/50791)
    
  • [`576adc5e5b`](https://github.com/nodejs/node/commit/576adc5e5b)] - **test**: add URL tests to fs-read in pm (Rafael Gonzaga) [#&#8203;51213](https://github.com/nodejs/node/pull/51213)
    
  • [`996cef51b7`](https://github.com/nodejs/node/commit/996cef51b7)] - **test**: use tmpdir.refresh() in test-esm-loader-resolve-type.mjs (Luigi Pinca) [#&#8203;51206](https://github.com/nodejs/node/pull/51206)
    
  • [`8f2d982342`](https://github.com/nodejs/node/commit/8f2d982342)] - **test**: use tmpdir.refresh() in test-esm-json.mjs (Luigi Pinca) [#&#8203;51205](https://github.com/nodejs/node/pull/51205)
    
  • [`efd6630143`](https://github.com/nodejs/node/commit/efd6630143)] - **test**: fix flakiness in worker\*.test-free-called (Jithil P Ponnan) [#&#8203;51013](https://github.com/nodejs/node/pull/51013)
    
  • [`54a29ee506`](https://github.com/nodejs/node/commit/54a29ee506)] - **test**: deflake test-diagnostics-channel-memory-leak (Joyee Cheung) [#&#8203;50572](https://github.com/nodejs/node/pull/50572)
    
  • [`6319ea6183`](https://github.com/nodejs/node/commit/6319ea6183)] - **test**: test syncrhnous methods of child_process in snapshot (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943)
    
  • [`50df4aee2b`](https://github.com/nodejs/node/commit/50df4aee2b)] - **test**: handle relative https redirect (Richard Lau) [#&#8203;51121](https://github.com/nodejs/node/pull/51121)
    
  • [`9f88f40cae`](https://github.com/nodejs/node/commit/9f88f40cae)] - **test**: fix test runner colored output test (Moshe Atlow) [#&#8203;51064](https://github.com/nodejs/node/pull/51064)
    
  • [`a1feae24cb`](https://github.com/nodejs/node/commit/a1feae24cb)] - **test**: resolve path of embedtest binary correctly (Cheng Zhao) [#&#8203;50276](https://github.com/nodejs/node/pull/50276)
    
  • [`a4f1805c92`](https://github.com/nodejs/node/commit/a4f1805c92)] - **test**: escape cwd in regexp (Jérémy Lal) [#&#8203;50980](https://github.com/nodejs/node/pull/50980)
    
  • [`1c28db8116`](https://github.com/nodejs/node/commit/1c28db8116)] - **test**: replace forEach to for.. test-webcrypto-export-import-cfrg.js (Angelo Parziale) [#&#8203;50785](https://github.com/nodejs/node/pull/50785)
    
  • [`a4f505213e`](https://github.com/nodejs/node/commit/a4f505213e)] - **test**: log more information in SEA tests (Joyee Cheung) [#&#8203;50759](https://github.com/nodejs/node/pull/50759)
    
  • [`c91b817a5c`](https://github.com/nodejs/node/commit/c91b817a5c)] - **test**: consolidate utf8 text fixtures in tests (Joyee Cheung) [#&#8203;50732](https://github.com/nodejs/node/pull/50732)
    
  • [`26a06b093b`](https://github.com/nodejs/node/commit/26a06b093b)] - **test**: give more time to GC in test-shadow-realm-gc-\* (Joyee Cheung) [#&#8203;50735](https://github.com/nodejs/node/pull/50735)
    
  • [`e8f5735149`](https://github.com/nodejs/node/commit/e8f5735149)] - **test**: test surrogate pair filenames on windows (Mert Can Altın) [#&#8203;51800](https://github.com/nodejs/node/pull/51800)
    
  • [`1ab9ff46a5`](https://github.com/nodejs/node/commit/1ab9ff46a5)] - **test**: mark test-wasi as flaky on Windows on ARM (Joyee Cheung) [#&#8203;51834](https://github.com/nodejs/node/pull/51834)
    
  • [`1c47da1453`](https://github.com/nodejs/node/commit/1c47da1453)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;51533](https://github.com/nodejs/node/pull/51533)
    
  • [`91c8624608`](https://github.com/nodejs/node/commit/91c8624608)] - **test_runner**: serialize 'expected' and 'actual' in isolation (Malthe Borch) [#&#8203;51851](https://github.com/nodejs/node/pull/51851)
    
  • [`cea90dcfe3`](https://github.com/nodejs/node/commit/cea90dcfe3)] - **test_runner**: add ref methods to mocked timers (Marco Ippolito) [#&#8203;51809](https://github.com/nodejs/node/pull/51809)
    
  • [`9ff0df1793`](https://github.com/nodejs/node/commit/9ff0df1793)] - **test_runner**: check if timeout was cleared by own callback (Ben Richeson) [#&#8203;51673](https://github.com/nodejs/node/pull/51673)
    
  • [`34ecd1e36b`](https://github.com/nodejs/node/commit/34ecd1e36b)] - **test_runner**: fixed test object is incorrectly passed to setup() (Pulkit Gupta) [#&#8203;50982](https://github.com/nodejs/node/pull/50982)
    
  • [`da17a2538e`](https://github.com/nodejs/node/commit/da17a2538e)] - **test_runner**: fixed to run after hook if before throws an error (Pulkit Gupta) [#&#8203;51062](https://github.com/nodejs/node/pull/51062)
    
  • [`b8f0ea6f60`](https://github.com/nodejs/node/commit/b8f0ea6f60)] - **test_runner**: fix infinite loop when files are undefined in test runner (Pulkit Gupta) [#&#8203;51047](https://github.com/nodejs/node/pull/51047)
    
  • [`fe922f05e4`](https://github.com/nodejs/node/commit/fe922f05e4)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#&#8203;51246](https://github.com/nodejs/node/pull/51246)
    
  • [`f4ac7baf85`](https://github.com/nodejs/node/commit/f4ac7baf85)] - **tools**: fix installing node with shared mode (Cheng Zhao) [#&#8203;51910](https://github.com/nodejs/node/pull/51910)
    
  • [`f07605fa7b`](https://github.com/nodejs/node/commit/f07605fa7b)] - **tools**: update eslint to 8.57.0 (Node.js GitHub Bot) [#&#8203;51867](https://github.com/nodejs/node/pull/51867)
    
  • [`d16b235fca`](https://github.com/nodejs/node/commit/d16b235fca)] - **tools**: update lint-md-dependencies to rollup@4.12.0 (Node.js GitHub Bot) [#&#8203;51795](https://github.com/nodejs/node/pull/51795)
    
  • [`d27e811a01`](https://github.com/nodejs/node/commit/d27e811a01)] - **tools**: fix missing \[\[fallthrough]] in js2c (Cheng Zhao) [#&#8203;51845](https://github.com/nodejs/node/pull/51845)
    
  • [`7eb69308da`](https://github.com/nodejs/node/commit/7eb69308da)] - **tools**: disable automated libuv updates (Rafael Gonzaga) [#&#8203;51775](https://github.com/nodejs/node/pull/51775)
    
  • [`1f15af425c`](https://github.com/nodejs/node/commit/1f15af425c)] - **tools**: update lint-md-dependencies to rollup@4.10.0 (Node.js GitHub Bot) [#&#8203;51720](https://github.com/nodejs/node/pull/51720)
    
  • [`c7ae13e6bc`](https://github.com/nodejs/node/commit/c7ae13e6bc)] - **tools**: update github_reporter to 1.6.0 (Node.js GitHub Bot) [#&#8203;51658](https://github.com/nodejs/node/pull/51658)
    
  • [`0fb079bd85`](https://github.com/nodejs/node/commit/0fb079bd85)] - **tools**: run `build-windows` workflow only on source changes (Antoine du Hamel) [#&#8203;51596](https://github.com/nodejs/node/pull/51596)
    
  • [`c2538e31fa`](https://github.com/nodejs/node/commit/c2538e31fa)] - **tools**: update lint-md-dependencies to rollup@4.9.6 (Node.js GitHub Bot) [#&#8203;51583](https://github.com/nodejs/node/pull/51583)
    
  • [`e02dbf074b`](https://github.com/nodejs/node/commit/e02dbf074b)] - **tools**: fix loong64 build (Shi Pujin) [#&#8203;51401](https://github.com/nodejs/node/pull/51401)
    
  • [`ce49cb6656`](https://github.com/nodejs/node/commit/ce49cb6656)] - **tools**: set normalizeTD text default to empty string (Marco Ippolito) [#&#8203;51543](https://github.com/nodejs/node/pull/51543)
    
  • [`e8dc5ac552`](https://github.com/nodejs/node/commit/e8dc5ac552)] - **tools**: limit parallelism with ninja in V8 builds (Richard Lau) [#&#8203;51473](https://github.com/nodejs/node/pull/51473)
    
  • [`97470b179b`](https://github.com/nodejs/node/commit/97470b179b)] - **tools**: do not pass invalid flag to C compiler (Michaël Zasso) [#&#8203;51409](https://github.com/nodejs/node/pull/51409)
    
  • [`59af1d7923`](https://github.com/nodejs/node/commit/59af1d7923)] - **tools**: update lint-md-dependencies to rollup@4.9.5 (Node.js GitHub Bot) [#&#8203;51460](https://github.com/nodejs/node/pull/51460)
    
  • [`6385c7ad57`](https://github.com/nodejs/node/commit/6385c7ad57)] - **tools**: update inspector_protocol to [`83b1154`](https://github.com/nodejs/node/commit/83b1154) (Kohei Ueno) [#&#8203;51309](https://github.com/nodejs/node/pull/51309)
    
  • [`5235aaf299`](https://github.com/nodejs/node/commit/5235aaf299)] - **tools**: update github_reporter to 1.5.4 (Node.js GitHub Bot) [#&#8203;51395](https://github.com/nodejs/node/pull/51395)
    
  • [`4ce2ecb1ce`](https://github.com/nodejs/node/commit/4ce2ecb1ce)] - **tools**: fix version parsing in brotli update script (Richard Lau) [#&#8203;51373](https://github.com/nodejs/node/pull/51373)
    
  • [`86102078f5`](https://github.com/nodejs/node/commit/86102078f5)] - **tools**: update lint-md-dependencies to rollup@4.9.4 (Node.js GitHub Bot) [#&#8203;51396](https://github.com/nodejs/node/pull/51396)
    
  • [`e658208159`](https://github.com/nodejs/node/commit/e658208159)] - **tools**: remove openssl v1 update script (Marco Ippolito) [#&#8203;51378](https://github.com/nodejs/node/pull/51378)
    
  • [`4372f6a5b8`](https://github.com/nodejs/node/commit/4372f6a5b8)] - **tools**: remove deprecated python api (Alex Yang) [#&#8203;49731](https://github.com/nodejs/node/pull/49731)
    
  • [`2b24059e53`](https://github.com/nodejs/node/commit/2b24059e53)] - **tools**: update lint-md-dependencies to rollup@4.9.2 (Node.js GitHub Bot) [#&#8203;51320](https://github.com/nodejs/node/pull/51320)
    
  • [`1da2e8d15e`](https://github.com/nodejs/node/commit/1da2e8d15e)] - **tools**: fix dep_updaters dir updates (Michaël Zasso) [#&#8203;51294](https://github.com/nodejs/node/pull/51294)
    
  • [`b264dda7f2`](https://github.com/nodejs/node/commit/b264dda7f2)] - **tools**: update inspector_protocol to [`c488ba2`](https://github.com/nodejs/node/commit/c488ba2) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`fdb07d5418`](https://github.com/nodejs/node/commit/fdb07d5418)] - **tools**: update inspector_protocol to [`9b4a4aa`](https://github.com/nodejs/node/commit/9b4a4aa) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`6863fb84a6`](https://github.com/nodejs/node/commit/6863fb84a6)] - **tools**: update inspector_protocol to [`2f51e05`](https://github.com/nodejs/node/commit/2f51e05) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`6b85f5c6e0`](https://github.com/nodejs/node/commit/6b85f5c6e0)] - **tools**: update inspector_protocol to [`d7b099b`](https://github.com/nodejs/node/commit/d7b099b) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`cf029ca24f`](https://github.com/nodejs/node/commit/cf029ca24f)] - **tools**: update inspector_protocol to [`912eb68`](https://github.com/nodejs/node/commit/912eb68) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`af119447f5`](https://github.com/nodejs/node/commit/af119447f5)] - **tools**: update inspector_protocol to [`547c5b8`](https://github.com/nodejs/node/commit/547c5b8) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`5a72506823`](https://github.com/nodejs/node/commit/5a72506823)] - **tools**: update inspector_protocol to [`ca525fc`](https://github.com/nodejs/node/commit/ca525fc) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293)
    
  • [`c7aa3976f9`](https://github.com/nodejs/node/commit/c7aa3976f9)] - **tools**: update lint-md-dependencies to rollup@4.9.1 (Node.js GitHub Bot) [#&#8203;51276](https://github.com/nodejs/node/pull/51276)
    
  • [`8e02d08a82`](https://github.com/nodejs/node/commit/8e02d08a82)] - **tools**: check timezone current version (Marco Ippolito) [#&#8203;51178](https://github.com/nodejs/node/pull/51178)
    
  • [`fa1e88775d`](https://github.com/nodejs/node/commit/fa1e88775d)] - **tools**: update lint-md-dependencies to rollup@4.9.0 (Node.js GitHub Bot) [#&#8203;51193](https://github.com/nodejs/node/pull/51193)
    
  • [`04c0bf9cc5`](https://github.com/nodejs/node/commit/04c0bf9cc5)] - **tools**: update eslint to 8.56.0 (Node.js GitHub Bot) [#&#8203;51194](https://github.com/nodejs/node/pull/51194)
    
  • [`e896cbd0d5`](https://github.com/nodejs/node/commit/e896cbd0d5)] - **tools**: update lint-md-dependencies to rollup@4.7.0 (Node.js GitHub Bot) [#&#8203;51106](https://github.com/nodejs/node/pull/51106)
    
  • [`c7350c2083`](https://github.com/nodejs/node/commit/c7350c2083)] - **tools**: update doc to highlight.js@11.9.0 unified@11.0.4 (Node.js GitHub Bot) [#&#8203;50459](https://github.com/nodejs/node/pull/50459)
    
  • [`00dfabf8fb`](https://github.com/nodejs/node/commit/00dfabf8fb)] - **tools**: update eslint to 8.55.0 (Node.js GitHub Bot) [#&#8203;51025](https://github.com/nodejs/node/pull/51025)
    
  • [`f91d56157b`](https://github.com/nodejs/node/commit/f91d56157b)] - **tools**: update lint-md-dependencies to rollup@4.6.1 (Node.js GitHub Bot) [#&#8203;51022](https://github.com/nodejs/node/pull/51022)
    
  • [`450163cf9b`](https://github.com/nodejs/node/commit/450163cf9b)] - **tools**: add triggers to update release links workflow (Moshe Atlow) [#&#8203;50974](https://github.com/nodejs/node/pull/50974)
    
  • [`b1442024ea`](https://github.com/nodejs/node/commit/b1442024ea)] - **tools**: update lint-md-dependencies to rollup@4.5.2 (Node.js GitHub Bot) [#&#8203;50913](https://github.com/nodejs/node/pull/50913)
    
  • [`6fc6a62daf`](https://github.com/nodejs/node/commit/6fc6a62daf)] - **tools**: fix current version check (Marco Ippolito) [#&#8203;50951](https://github.com/nodejs/node/pull/50951)
    
  • [`bc6bdda8b1`](https://github.com/nodejs/node/commit/bc6bdda8b1)] - **tools**: fix update-icu.sh (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723)
    
  • [`a7a4cce75d`](https://github.com/nodejs/node/commit/a7a4cce75d)] - **typings**: lib/internal/vm.js (Geoffrey Booth) [#&#8203;50112](https://github.com/nodejs/node/pull/50112)
    
  • [`6375540507`](https://github.com/nodejs/node/commit/6375540507)] - **typings**: fix JSDoc in `internal/modules/esm/hooks` (Alex Yang) [#&#8203;50887](https://github.com/nodejs/node/pull/50887)
    
  • [`4bc8e98d7c`](https://github.com/nodejs/node/commit/4bc8e98d7c)] - **url**: don't update URL immediately on update to URLSearchParams (Matt Cowley) [#&#8203;51520](https://github.com/nodejs/node/pull/51520)
    
  • [`2acbcbd8ad`](https://github.com/nodejs/node/commit/2acbcbd8ad)] - **url**: throw error if argument length of revokeObjectURL is 0 (DylanTet) [#&#8203;50433](https://github.com/nodejs/node/pull/50433)
    
  • [`c50134615e`](https://github.com/nodejs/node/commit/c50134615e)] - **(SEMVER-MINOR)** **util**: add styleText API to text formatting (Rafael Gonzaga) [#&#8203;51850](https://github.com/nodejs/node/pull/51850)
    
  • [`f79ac336ad`](https://github.com/nodejs/node/commit/f79ac336ad)] - **util**: pass invalidSubtypeIndex instead of trimmedSubtype to error (Gaurish Sethia) [#&#8203;51264](https://github.com/nodejs/node/pull/51264)
    
  • [`c3b89c310f`](https://github.com/nodejs/node/commit/c3b89c310f)] - **util**: improve performance of function areSimilarFloatArrays (Liu Jia) [#&#8203;51040](https://github.com/nodejs/node/pull/51040)
    
  • [`5202995b48`](https://github.com/nodejs/node/commit/5202995b48)] - **vm**: implement isContext() directly in JS land with private symbol (Joyee Cheung) [#&#8203;51685](https://github.com/nodejs/node/pull/51685)
    
  • [`0211a3d65f`](https://github.com/nodejs/node/commit/0211a3d65f)] - **(SEMVER-MINOR)** **vm**: support using the default loader to handle dynamic import() (Joyee Cheung) [#&#8203;51244](https://github.com/nodejs/node/pull/51244)
    
  • [`07fc077c5d`](https://github.com/nodejs/node/commit/07fc077c5d)] - **vm**: use v8::DeserializeInternalFieldsCallback explicitly (Joyee Cheung) [#&#8203;50984](https://github.com/nodejs/node/pull/50984)
    
  • [`5183e3a4b1`](https://github.com/nodejs/node/commit/5183e3a4b1)] - **watch**: clarify that the fileName parameter can be null (Luigi Pinca) [#&#8203;51305](https://github.com/nodejs/node/pull/51305)
    
  • [`63bf8a66df`](https://github.com/nodejs/node/commit/63bf8a66df)] - **watch**: fix null `fileName` on windows systems (vnc5) [#&#8203;49891](https://github.com/nodejs/node/pull/49891)
    
  • [`07da4e9b58`](https://github.com/nodejs/node/commit/07da4e9b58)] - **watch**: fix infinite loop when passing --watch=true flag (Pulkit Gupta) [#&#8203;51160](https://github.com/nodejs/node/pull/51160)
    
    

v20.11.1: 2024-02-14, Version 20.11.1 'Iron' (LTS), @​RafaelGSS prepared by @​marco-ippolito

Compare Source

Notable changes

This is a security release.

Notable changes
  • CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High)
  • CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High)
  • CVE-2024-21896 - Path traversal by monkey-patching Buffer internals- (High)
  • CVE-2024-22017 - setuid() does not drop all privileges due to io_uring - (High)
  • CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against PKCS#1 v1.5 padding) - (Medium)
  • CVE-2024-21891 - Multiple permission model bypasses due to improper path traversal sequence sanitization - (Medium)
  • CVE-2024-21890 - Improper handling of wildcards in --allow-fs-read and --allow-fs-write (Medium)
  • CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium)
  • undici version 5.28.3
  • libuv version 1.48.0
  • OpenSSL version 3.0.13+quic1
Commits
  • [`7079c062bb`](https://github.com/nodejs/node/commit/7079c062bb)] - **crypto**: disable [PKCS#1](https://github.com/PKCS/node/issues/1) padding for privateDecrypt (Michael Dawson) [nodejs-private/node-private#525](https://github.com/nodejs-private/node-private/pull/525)
    
  • [`186a6e1ffb`](https://github.com/nodejs/node/commit/186a6e1ffb)] - **deps**: fix GHSA-f74f-cvh7-c6q6/CVE-2024-24806 (Santiago Gimeno) [#&#8203;51737](https://github.com/nodejs/node/pull/51737)
    
  • [`686da19abb`](https://github.com/nodejs/node/commit/686da19abb)] - **deps**: disable io_uring support in libuv by default (Tobias Nießen) [nodejs-private/node-private#529](https://github.com/nodejs-private/node-private/pull/529)
    
  • [`f7b44bfbce`](https://github.com/nodejs/node/commit/f7b44bfbce)] - **deps**: update archs files for openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614)
    
  • [`7a30fecea2`](https://github.com/nodejs/node/commit/7a30fecea2)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614)
    
  • [`480fc169a8`](https://github.com/nodejs/node/commit/480fc169a8)] - **fs**: protect against modified Buffer internals in possiblyTransformPath (Tobias Nießen) [nodejs-private/node-private#497](https://github.com/nodejs-private/node-private/pull/497)
    
  • [`77ac7c3153`](https://github.com/nodejs/node/commit/77ac7c3153)] - **http**: add maximum chunk extension size (Paolo Insogna) [nodejs-private/node-private#519](https://github.com/nodejs-private/node-private/pull/519)
    
  • [`ed7d149675`](https://github.com/nodejs/node/commit/ed7d149675)] - **lib**: use cache fs internals against path traversal (RafaelGSS) [nodejs-private/node-private#516](https://github.com/nodejs-private/node-private/pull/516)
    
  • [`89bd5fc38f`](https://github.com/nodejs/node/commit/89bd5fc38f)] - **lib**: update undici to v5.28.3 (Matteo Collina) [nodejs-private/node-private#539](https://github.com/nodejs-private/node-private/pull/539)
    
  • [`d01dd4291d`](https://github.com/nodejs/node/commit/d01dd4291d)] - **permission**: fix wildcard when children > 1 (Rafael Gonzaga) [#&#8203;51209](https://github.com/nodejs/node/pull/51209)
    
  • [`40ff37dfcc`](https://github.com/nodejs/node/commit/40ff37dfcc)] - **src**: fix HasOnly(capability) in node::credentials (Tobias Nießen) [nodejs-private/node-private#505](https://github.com/nodejs-private/node-private/pull/505)
    
  • [`3f6addd590`](https://github.com/nodejs/node/commit/3f6addd590)] - **src,deps**: disable setuid() etc if io_uring enabled (Tobias Nießen) [nodejs-private/node-private#529](https://github.com/nodejs-private/node-private/pull/529)
    
  • [`d6da413aa4`](https://github.com/nodejs/node/commit/d6da413aa4)] - **test,doc**: clarify wildcard usage (RafaelGSS) [nodejs-private/node-private#517](https://github.com/nodejs-private/node-private/pull/517)
    
  • [`c213910aea`](https://github.com/nodejs/node/commit/c213910aea)] - **zlib**: pause stream if outgoing buffer is full (Matteo Collina) [nodejs-private/node-private#541](https://github.com/nodejs-private/node-private/pull/541)
    
    

v20.11.0: 2024-01-09, Version 20.11.0 'Iron' (LTS), @​UlisesGascon

Compare Source

Notable Changes
  • [`833190fe7c`](https://github.com/nodejs/node/commit/833190fe7c)] - **crypto**: update root certificates to NSS 3.95 (Node.js GitHub Bot) [#&#8203;50805](https://github.com/nodejs/node/pull/50805)
    
  • [`a541b78bdb`](https://github.com/nodejs/node/commit/a541b78bdb)] - **doc**: add MrJithil to collaborators (Jithil P Ponnan) [#&#8203;50666](https://github.com/nodejs/node/pull/50666)
    
  • [`d4be8fad83`](https://github.com/nodejs/node/commit/d4be8fad83)] - **doc**: add Ethan-Arrowood as a collaborator (Ethan Arrowood) [#&#8203;50393](https://github.com/nodejs/node/pull/50393)
    
  • [`c1a196c897`](https://github.com/nodejs/node/commit/c1a196c897)] - **(SEMVER-MINOR)** **esm**: add import.meta.dirname and import.meta.filename (James Sumners) [#&#8203;48740](https://github.com/nodejs/node/pull/48740)
    
  • [`aa3209b880`](https://github.com/nodejs/node/commit/aa3209b880)] - **fs**: add c++ fast path for writeFileSync utf8 (CanadaHonk) [#&#8203;49884](https://github.com/nodejs/node/pull/49884)
    
  • [`8e886a2fff`](https://github.com/nodejs/node/commit/8e886a2fff)] - **(SEMVER-MINOR)** **module**: remove useCustomLoadersIfPresent flag (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`21ab3c0f0b`](https://github.com/nodejs/node/commit/21ab3c0f0b)] - **(SEMVER-MINOR)** **module**: bootstrap module loaders in shadow realm (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`29d91b13e3`](https://github.com/nodejs/node/commit/29d91b13e3)] - **(SEMVER-MINOR)** **src**: add `--disable-warning` option (Ethan Arrowood) [#&#8203;50661](https://github.com/nodejs/node/pull/50661)
    
  • [`11b3e470db`](https://github.com/nodejs/node/commit/11b3e470db)] - **(SEMVER-MINOR)** **src**: create per isolate proxy env template (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`621c4d66c2`](https://github.com/nodejs/node/commit/621c4d66c2)] - **(SEMVER-MINOR)** **src**: make process binding data weak (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`139d6c8d3b`](https://github.com/nodejs/node/commit/139d6c8d3b)] - **stream**: use Array for Readable buffer (Robert Nagy) [#&#8203;50341](https://github.com/nodejs/node/pull/50341)
    
  • [`6206957e8d`](https://github.com/nodejs/node/commit/6206957e8d)] - **stream**: optimize creation (Robert Nagy) [#&#8203;50337](https://github.com/nodejs/node/pull/50337)
    
  • [`e64378643d`](https://github.com/nodejs/node/commit/e64378643d)] - **(SEMVER-MINOR)** **test_runner**: adds built in lcov reporter (Phil Nash) [#&#8203;50018](https://github.com/nodejs/node/pull/50018)
    
  • [`4a830c2d9d`](https://github.com/nodejs/node/commit/4a830c2d9d)] - **(SEMVER-MINOR)** **test_runner**: add Date to the supported mock APIs (Lucas Santos) [#&#8203;48638](https://github.com/nodejs/node/pull/48638)
    
  • [`842dc01def`](https://github.com/nodejs/node/commit/842dc01def)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-timeout flag (Shubham Pandey) [#&#8203;50443](https://github.com/nodejs/node/pull/50443)
    
    
Commits
  • [`e40a559ab1`](https://github.com/nodejs/node/commit/e40a559ab1)] - **benchmark**: update iterations in benchmark/util/splice-one.js (Liu Jia) [#&#8203;50698](https://github.com/nodejs/node/pull/50698)
    
  • [`00f7a5d26f`](https://github.com/nodejs/node/commit/00f7a5d26f)] - **benchmark**: increase the iteration number to an appropriate value (Lei Shi) [#&#8203;50766](https://github.com/nodejs/node/pull/50766)
    
  • [`be6ad3f375`](https://github.com/nodejs/node/commit/be6ad3f375)] - **benchmark**: rewrite import.meta benchmark (Joyee Cheung) [#&#8203;50683](https://github.com/nodejs/node/pull/50683)
    
  • [`9857364129`](https://github.com/nodejs/node/commit/9857364129)] - **benchmark**: add misc/startup-cli-version benchmark (Joyee Cheung) [#&#8203;50684](https://github.com/nodejs/node/pull/50684)
    
  • [`22d729e7f5`](https://github.com/nodejs/node/commit/22d729e7f5)] - **benchmark**: remove punycode from require-builtins fixture (Joyee Cheung) [#&#8203;50689](https://github.com/nodejs/node/pull/50689)
    
  • [`4cf10a149a`](https://github.com/nodejs/node/commit/4cf10a149a)] - **benchmark**: change iterations in benchmark/es/string-concatenations.js (Liu Jia) [#&#8203;50585](https://github.com/nodejs/node/pull/50585)
    
  • [`15c2ed93a8`](https://github.com/nodejs/node/commit/15c2ed93a8)] - **benchmark**: add benchmarks for encodings (Aras Abbasi) [#&#8203;50348](https://github.com/nodejs/node/pull/50348)
    
  • [`8a896428ca`](https://github.com/nodejs/node/commit/8a896428ca)] - **benchmark**: add more cases to Readable.from (Raz Luvaton) [#&#8203;50351](https://github.com/nodejs/node/pull/50351)
    
  • [`dbe6c5f354`](https://github.com/nodejs/node/commit/dbe6c5f354)] - **benchmark**: skip test-benchmark-os on IBMi (Michael Dawson) [#&#8203;50286](https://github.com/nodejs/node/pull/50286)
    
  • [`179b4b6e62`](https://github.com/nodejs/node/commit/179b4b6e62)] - **benchmark**: move permission-fs-read to permission-processhas-fs-read (Aki Hasegawa-Johnson) [#&#8203;49770](https://github.com/nodejs/node/pull/49770)
    
  • [`32d65c001d`](https://github.com/nodejs/node/commit/32d65c001d)] - **buffer**: improve Buffer.equals performance (kylo5aby) [#&#8203;50621](https://github.com/nodejs/node/pull/50621)
    
  • [`80ea83757e`](https://github.com/nodejs/node/commit/80ea83757e)] - **build**: add GN configurations for simdjson (Cheng Zhao) [#&#8203;50831](https://github.com/nodejs/node/pull/50831)
    
  • [`904e645bcd`](https://github.com/nodejs/node/commit/904e645bcd)] - **build**: add configuration flag to enable Maglev (Keyhan Vakil) [#&#8203;50692](https://github.com/nodejs/node/pull/50692)
    
  • [`019efa8a5a`](https://github.com/nodejs/node/commit/019efa8a5a)] - **build**: fix GN configuration for deps/base64 (Cheng Zhao) [#&#8203;50696](https://github.com/nodejs/node/pull/50696)
    
  • [`a645d5ac54`](https://github.com/nodejs/node/commit/a645d5ac54)] - **build**: disable flag v8\_scriptormodule_legacy_lifetime (Chengzhong Wu) [#&#8203;50616](https://github.com/nodejs/node/pull/50616)
    
  • [`8705058b09`](https://github.com/nodejs/node/commit/8705058b09)] - **build**: add GN build files (Cheng Zhao) [#&#8203;47637](https://github.com/nodejs/node/pull/47637)
    
  • [`0a5e9c12cf`](https://github.com/nodejs/node/commit/0a5e9c12cf)] - **build**: fix build with Python 3.12 (Luigi Pinca) [#&#8203;50582](https://github.com/nodejs/node/pull/50582)
    
  • [`ff5713dd43`](https://github.com/nodejs/node/commit/ff5713dd43)] - **build**: support Python 3.12 (Shi Pujin) [#&#8203;50209](https://github.com/nodejs/node/pull/50209)
    
  • [`cfd50f229a`](https://github.com/nodejs/node/commit/cfd50f229a)] - **build**: fix building when there is only python3 (Cheng Zhao) [#&#8203;48462](https://github.com/nodejs/node/pull/48462)
    
  • [`833190fe7c`](https://github.com/nodejs/node/commit/833190fe7c)] - **crypto**: update root certificates to NSS 3.95 (Node.js GitHub Bot) [#&#8203;50805](https://github.com/nodejs/node/pull/50805)
    
  • [`54c46dae9e`](https://github.com/nodejs/node/commit/54c46dae9e)] - **deps**: update zlib to 1.2.13.1-motley-5daffc7 (Node.js GitHub Bot) [#&#8203;50803](https://github.com/nodejs/node/pull/50803)
    
  • [`0be84e5a28`](https://github.com/nodejs/node/commit/0be84e5a28)] - **deps**: update undici to 5.27.2 (Node.js GitHub Bot) [#&#8203;50813](https://github.com/nodejs/node/pull/50813)
    
  • [`ec67890824`](https://github.com/nodejs/node/commit/ec67890824)] - **deps**: V8: cherry-pick [`0f9ebbc`](https://github.com/nodejs/node/commit/0f9ebbc672c7) (Chengzhong Wu) [#&#8203;50867](https://github.com/nodejs/node/pull/50867)
    
  • [`bc2ebb972b`](https://github.com/nodejs/node/commit/bc2ebb972b)] - **deps**: V8: cherry-pick [`13192d6`](https://github.com/nodejs/node/commit/13192d6e10fa) (Levi Zim) [#&#8203;50552](https://github.com/nodejs/node/pull/50552)
    
  • [`656135d70a`](https://github.com/nodejs/node/commit/656135d70a)] - **deps**: update zlib to 1.2.13.1-motley-dfc48fc (Node.js GitHub Bot) [#&#8203;50456](https://github.com/nodejs/node/pull/50456)
    
  • [`41ee4bcc5d`](https://github.com/nodejs/node/commit/41ee4bcc5d)] - **deps**: update ada to 2.7.4 (Node.js GitHub Bot) [#&#8203;50815](https://github.com/nodejs/node/pull/50815)
    
  • [`a40948b5c5`](https://github.com/nodejs/node/commit/a40948b5c5)] - **deps**: update minimatch to 9.0.3 (Node.js GitHub Bot) [#&#8203;50806](https://github.com/nodejs/node/pull/50806)
    
  • [`7be1222c4a`](https://github.com/nodejs/node/commit/7be1222c4a)] - **deps**: update simdutf to 4.0.4 (Node.js GitHub Bot) [#&#8203;50772](https://github.com/nodejs/node/pull/50772)
    
  • [`68e7d49db6`](https://github.com/nodejs/node/commit/68e7d49db6)] - **deps**: upgrade npm to 10.2.4 (npm team) [#&#8203;50751](https://github.com/nodejs/node/pull/50751)
    
  • [`3d82d38336`](https://github.com/nodejs/node/commit/3d82d38336)] - **deps**: escape Python strings correctly (Michaël Zasso) [#&#8203;50695](https://github.com/nodejs/node/pull/50695)
    
  • [`d3870ac957`](https://github.com/nodejs/node/commit/d3870ac957)] - **deps**: update base64 to 0.5.1 (Node.js GitHub Bot) [#&#8203;50629](https://github.com/nodejs/node/pull/50629)
    
  • [`4b219b6ece`](https://github.com/nodejs/node/commit/4b219b6ece)] - **deps**: update corepack to 0.23.0 (Node.js GitHub Bot) [#&#8203;50563](https://github.com/nodejs/node/pull/50563)
    
  • [`6c41b50922`](https://github.com/nodejs/node/commit/6c41b50922)] - **deps**: update nghttp2 to 1.58.0 (Node.js GitHub Bot) [#&#8203;50441](https://github.com/nodejs/node/pull/50441)
    
  • [`3beee0ae8f`](https://github.com/nodejs/node/commit/3beee0ae8f)] - **deps**: update acorn to 8.11.2 (Node.js GitHub Bot) [#&#8203;50460](https://github.com/nodejs/node/pull/50460)
    
  • [`220916fa93`](https://github.com/nodejs/node/commit/220916fa93)] - **deps**: update undici to 5.27.0 (Node.js GitHub Bot) [#&#8203;50463](https://github.com/nodejs/node/pull/50463)
    
  • [`f9960b3545`](https://github.com/nodejs/node/commit/f9960b3545)] - **deps**: update googletest to [`116b7e5`](https://github.com/nodejs/node/commit/116b7e5) (Node.js GitHub Bot) [#&#8203;50324](https://github.com/nodejs/node/pull/50324)
    
  • [`d5c16f897a`](https://github.com/nodejs/node/commit/d5c16f897a)] - **dns**: call handle.setServers() with a valid array (Luigi Pinca) [#&#8203;50811](https://github.com/nodejs/node/pull/50811)
    
  • [`1bd6537c97`](https://github.com/nodejs/node/commit/1bd6537c97)] - **doc**: recommend supported Python versions (Luigi Pinca) [#&#8203;50407](https://github.com/nodejs/node/pull/50407)
    
  • [`402e257520`](https://github.com/nodejs/node/commit/402e257520)] - **doc**: update notable changes in v21.1.0 (Joyee Cheung) [#&#8203;50388](https://github.com/nodejs/node/pull/50388)
    
  • [`032535e270`](https://github.com/nodejs/node/commit/032535e270)] - **doc**: make theme consistent across api and other docs (Dima Demakov) [#&#8203;50877](https://github.com/nodejs/node/pull/50877)
    
  • [`d53842683f`](https://github.com/nodejs/node/commit/d53842683f)] - **doc**: add a section regarding `instanceof` in `primordials.md` (Antoine du Hamel) [#&#8203;50874](https://github.com/nodejs/node/pull/50874)
    
  • [`fe315055a7`](https://github.com/nodejs/node/commit/fe315055a7)] - **doc**: update email to reflect affiliation (Yagiz Nizipli) [#&#8203;50856](https://github.com/nodejs/node/pull/50856)
    
  • [`e14f661950`](https://github.com/nodejs/node/commit/e14f661950)] - **doc**: shard not supported with watch mode (Pulkit Gupta) [#&#8203;50640](https://github.com/nodejs/node/pull/50640)
    
  • [`b3d015de71`](https://github.com/nodejs/node/commit/b3d015de71)] - **doc**: get rid of unnecessary `eslint-skip` comments (Antoine du Hamel) [#&#8203;50829](https://github.com/nodejs/node/pull/50829)
    
  • [`168cbf9cb9`](https://github.com/nodejs/node/commit/168cbf9cb9)] - **doc**: create deprecation code for isWebAssemblyCompiledModule (Marco Ippolito) [#&#8203;50486](https://github.com/nodejs/node/pull/50486)
    
  • [`30baacba41`](https://github.com/nodejs/node/commit/30baacba41)] - **doc**: add CanadaHonk to triagers (CanadaHonk) [#&#8203;50848](https://github.com/nodejs/node/pull/50848)
    
  • [`e6e7cbceac`](https://github.com/nodejs/node/commit/e6e7cbceac)] - **doc**: fix typos in --allow-fs-\* (Tobias Nießen) [#&#8203;50845](https://github.com/nodejs/node/pull/50845)
    
  • [`e22ce9586f`](https://github.com/nodejs/node/commit/e22ce9586f)] - **doc**: update Crypto API doc for x509.keyUsage (Daniel Meechan) [#&#8203;50603](https://github.com/nodejs/node/pull/50603)
    
  • [`549d4422b7`](https://github.com/nodejs/node/commit/549d4422b7)] - **doc**: fix fs.writeFileSync return value documentation (Ryan Zimmerman) [#&#8203;50760](https://github.com/nodejs/node/pull/50760)
    
  • [`3c79e3cdba`](https://github.com/nodejs/node/commit/3c79e3cdba)] - **doc**: update print results(detail) in `PerformanceEntry` (Jungku Lee) [#&#8203;50723](https://github.com/nodejs/node/pull/50723)
    
  • [`aeaf96d06e`](https://github.com/nodejs/node/commit/aeaf96d06e)] - **doc**: fix `Buffer.allocUnsafe` documentation (Mert Can Altın) [#&#8203;50686](https://github.com/nodejs/node/pull/50686)
    
  • [`347e1dd06a`](https://github.com/nodejs/node/commit/347e1dd06a)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;50691](https://github.com/nodejs/node/pull/50691)
    
  • [`a541b78bdb`](https://github.com/nodejs/node/commit/a541b78bdb)] - **doc**: add MrJithil to collaborators (Jithil P Ponnan) [#&#8203;50666](https://github.com/nodejs/node/pull/50666)
    
  • [`90f415dd61`](https://github.com/nodejs/node/commit/90f415dd61)] - **doc**: fix typo in fs.md (fwio) [#&#8203;50570](https://github.com/nodejs/node/pull/50570)
    
  • [`e2388151ba`](https://github.com/nodejs/node/commit/e2388151ba)] - **doc**: add missing description of argument in `subtle.encrypt` (Deokjin Kim) [#&#8203;50578](https://github.com/nodejs/node/pull/50578)
    
  • [`39cc013465`](https://github.com/nodejs/node/commit/39cc013465)] - **doc**: update pm documentation to include resource (Ranieri Innocenti Spada) [#&#8203;50601](https://github.com/nodejs/node/pull/50601)
    
  • [`ba6d427c23`](https://github.com/nodejs/node/commit/ba6d427c23)] - **doc**: correct attribution in v20.6.0 changelog (Jacob Smith) [#&#8203;50564](https://github.com/nodejs/node/pull/50564)
    
  • [`1b2dab8254`](https://github.com/nodejs/node/commit/1b2dab8254)] - **doc**: update to align `console.table` row to the left (Jungku Lee) [#&#8203;50553](https://github.com/nodejs/node/pull/50553)
    
  • [`5d48ef7778`](https://github.com/nodejs/node/commit/5d48ef7778)] - **doc**: underline links (Rich Trott) [#&#8203;50481](https://github.com/nodejs/node/pull/50481)
    
  • [`5e6057c9d2`](https://github.com/nodejs/node/commit/5e6057c9d2)] - **doc**: remove duplicate word (Gerhard Stöbich) [#&#8203;50475](https://github.com/nodejs/node/pull/50475)
    
  • [`64bf2fd4ee`](https://github.com/nodejs/node/commit/64bf2fd4ee)] - **doc**: fix typo in `webstreams.md` (André Santos) [#&#8203;50426](https://github.com/nodejs/node/pull/50426)
    
  • [`cca55b8414`](https://github.com/nodejs/node/commit/cca55b8414)] - **doc**: add information about Node-API versions >=9 (Michael Dawson) [#&#8203;50168](https://github.com/nodejs/node/pull/50168)
    
  • [`d4be8fad83`](https://github.com/nodejs/node/commit/d4be8fad83)] - **doc**: add Ethan-Arrowood as a collaborator (Ethan Arrowood) [#&#8203;50393](https://github.com/nodejs/node/pull/50393)
    
  • [`0b311838f6`](https://github.com/nodejs/node/commit/0b311838f6)] - **doc**: fix TOC in `releases.md` (Bryce Seefieldt) [#&#8203;50372](https://github.com/nodejs/node/pull/50372)
    
  • [`843d5f84ca`](https://github.com/nodejs/node/commit/843d5f84ca)] - **esm**: fallback to `getSource` when `load` returns nullish `source` (Antoine du Hamel) [#&#8203;50825](https://github.com/nodejs/node/pull/50825)
    
  • [`8d5469c84b`](https://github.com/nodejs/node/commit/8d5469c84b)] - **esm**: do not call `getSource` when format is `commonjs` (Francesco Trotta) [#&#8203;50465](https://github.com/nodejs/node/pull/50465)
    
  • [`b48cf314d3`](https://github.com/nodejs/node/commit/b48cf314d3)] - **esm**: bypass CJS loader in default load under `--default-type=module` (Antoine du Hamel) [#&#8203;50004](https://github.com/nodejs/node/pull/50004)
    
  • [`c1a196c897`](https://github.com/nodejs/node/commit/c1a196c897)] - **(SEMVER-MINOR)** **esm**: add import.meta.dirname and import.meta.filename (James Sumners) [#&#8203;48740](https://github.com/nodejs/node/pull/48740)
    
  • [`435f9c9276`](https://github.com/nodejs/node/commit/435f9c9276)] - **fs**: use default w flag for writeFileSync with utf8 encoding (Murilo Kakazu) [#&#8203;50990](https://github.com/nodejs/node/pull/50990)
    
  • [`aa3209b880`](https://github.com/nodejs/node/commit/aa3209b880)] - **fs**: add c++ fast path for writeFileSync utf8 (CanadaHonk) [#&#8203;49884](https://github.com/nodejs/node/pull/49884)
    
  • [`05e25e0230`](https://github.com/nodejs/node/commit/05e25e0230)] - **fs**: improve error perf of sync `lstat`+`fstat` (CanadaHonk) [#&#8203;49868](https://github.com/nodejs/node/pull/49868)
    
  • [`f94a24cb4b`](https://github.com/nodejs/node/commit/f94a24cb4b)] - **fs**: improve error performance for `rmdirSync` (CanadaHonk) [#&#8203;49846](https://github.com/nodejs/node/pull/49846)
    
  • [`cada22e2a4`](https://github.com/nodejs/node/commit/cada22e2a4)] - **fs**: fix to not return for void function (Jungku Lee) [#&#8203;50769](https://github.com/nodejs/node/pull/50769)
    
  • [`ba40b2e33e`](https://github.com/nodejs/node/commit/ba40b2e33e)] - **fs**: replace deprecated `path._makeLong` in copyFile (CanadaHonk) [#&#8203;50844](https://github.com/nodejs/node/pull/50844)
    
  • [`d1b6bd660a`](https://github.com/nodejs/node/commit/d1b6bd660a)] - **fs**: update param in jsdoc for `readdir` (Jungku Lee) [#&#8203;50448](https://github.com/nodejs/node/pull/50448)
    
  • [`11412e863a`](https://github.com/nodejs/node/commit/11412e863a)] - **fs**: do not throw error on cpSync internals (Yagiz Nizipli) [#&#8203;50185](https://github.com/nodejs/node/pull/50185)
    
  • [`868a464c15`](https://github.com/nodejs/node/commit/868a464c15)] - **fs,url**: move `FromNamespacedPath` to `node_url` (Yagiz Nizipli) [#&#8203;50090](https://github.com/nodejs/node/pull/50090)
    
  • [`de7fe08c7b`](https://github.com/nodejs/node/commit/de7fe08c7b)] - **fs,url**: refactor `FileURLToPath` method (Yagiz Nizipli) [#&#8203;50090](https://github.com/nodejs/node/pull/50090)
    
  • [`186e6e0395`](https://github.com/nodejs/node/commit/186e6e0395)] - **fs,url**: move `FileURLToPath` to node_url (Yagiz Nizipli) [#&#8203;50090](https://github.com/nodejs/node/pull/50090)
    
  • [`aea7fe54af`](https://github.com/nodejs/node/commit/aea7fe54af)] - **inspector**: use private fields instead of symbols (Yagiz Nizipli) [#&#8203;50776](https://github.com/nodejs/node/pull/50776)
    
  • [`48dbde71d8`](https://github.com/nodejs/node/commit/48dbde71d8)] - **lib**: use primordials for navigator.userAgent (Aras Abbasi) [#&#8203;50467](https://github.com/nodejs/node/pull/50467)
    
  • [`fa220cac87`](https://github.com/nodejs/node/commit/fa220cac87)] - **lib**: remove deprecated string methods (Jithil P Ponnan) [#&#8203;50592](https://github.com/nodejs/node/pull/50592)
    
  • [`f1cf1c385f`](https://github.com/nodejs/node/commit/f1cf1c385f)] - **lib**: fix assert shows diff messages in ESM and CJS (Jithil P Ponnan) [#&#8203;50634](https://github.com/nodejs/node/pull/50634)
    
  • [`3844af288f`](https://github.com/nodejs/node/commit/3844af288f)] - **lib**: make event static properties non writable and configurable (Muthukumar) [#&#8203;50425](https://github.com/nodejs/node/pull/50425)
    
  • [`0a0b416d6c`](https://github.com/nodejs/node/commit/0a0b416d6c)] - **lib**: avoid memory allocation on nodeprecation flag (Vinicius Lourenço) [#&#8203;50231](https://github.com/nodejs/node/pull/50231)
    
  • [`e7551d5770`](https://github.com/nodejs/node/commit/e7551d5770)] - **lib**: align console.table row to the left (Jithil P Ponnan) [#&#8203;50135](https://github.com/nodejs/node/pull/50135)
    
  • [`0c85cebdf2`](https://github.com/nodejs/node/commit/0c85cebdf2)] - **meta**: clarify nomination process according to Node.js charter (Matteo Collina) [#&#8203;50834](https://github.com/nodejs/node/pull/50834)
    
  • [`f4070dd8d4`](https://github.com/nodejs/node/commit/f4070dd8d4)] - **meta**: clarify recommendation for bug reproductions (Antoine du Hamel) [#&#8203;50882](https://github.com/nodejs/node/pull/50882)
    
  • [`2ddeead436`](https://github.com/nodejs/node/commit/2ddeead436)] - **meta**: move cjihrig to TSC regular member (Colin Ihrig) [#&#8203;50816](https://github.com/nodejs/node/pull/50816)
    
  • [`34a789d9be`](https://github.com/nodejs/node/commit/34a789d9be)] - **meta**: add web-standards as WPTs owner (Filip Skokan) [#&#8203;50636](https://github.com/nodejs/node/pull/50636)
    
  • [`40bbffa266`](https://github.com/nodejs/node/commit/40bbffa266)] - **meta**: bump github/codeql-action from 2.21.9 to 2.22.5 (dependabot\[bot]) [#&#8203;50513](https://github.com/nodejs/node/pull/50513)
    
  • [`c49553631d`](https://github.com/nodejs/node/commit/c49553631d)] - **meta**: bump step-security/harden-runner from 2.5.1 to 2.6.0 (dependabot\[bot]) [#&#8203;50512](https://github.com/nodejs/node/pull/50512)
    
  • [`99df0138b0`](https://github.com/nodejs/node/commit/99df0138b0)] - **meta**: bump ossf/scorecard-action from 2.2.0 to 2.3.1 (dependabot\[bot]) [#&#8203;50509](https://github.com/nodejs/node/pull/50509)
    
  • [`9db6227ac6`](https://github.com/nodejs/node/commit/9db6227ac6)] - **meta**: fix spacing in collaborator list (Antoine du Hamel) [#&#8203;50641](https://github.com/nodejs/node/pull/50641)
    
  • [`2589a5a566`](https://github.com/nodejs/node/commit/2589a5a566)] - **meta**: bump actions/setup-python from 4.7.0 to 4.7.1 (dependabot\[bot]) [#&#8203;50510](https://github.com/nodejs/node/pull/50510)
    
  • [`5a86661a95`](https://github.com/nodejs/node/commit/5a86661a95)] - **meta**: add crypto as crypto and webcrypto docs owner (Filip Skokan) [#&#8203;50579](https://github.com/nodejs/node/pull/50579)
    
  • [`ac8d2b9cc2`](https://github.com/nodejs/node/commit/ac8d2b9cc2)] - **meta**: bump actions/setup-node from 3.8.1 to 4.0.0 (dependabot\[bot]) [#&#8203;50514](https://github.com/nodejs/node/pull/50514)
    
  • [`bee2c0cf11`](https://github.com/nodejs/node/commit/bee2c0cf11)] - **meta**: bump actions/checkout from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;50511](https://github.com/nodejs/node/pull/50511)
    
  • [`91a0944e5f`](https://github.com/nodejs/node/commit/91a0944e5f)] - **meta**: add <ethan.arrowood@vercel.com> to mailmap (Ethan Arrowood) [#&#8203;50491](https://github.com/nodejs/node/pull/50491)
    
  • [`8d3cf8c4ee`](https://github.com/nodejs/node/commit/8d3cf8c4ee)] - **meta**: add web-standards as web api visibility owner (Chengzhong Wu) [#&#8203;50418](https://github.com/nodejs/node/pull/50418)
    
  • [`807c12de36`](https://github.com/nodejs/node/commit/807c12de36)] - **meta**: mention other notable changes section (Rafael Gonzaga) [#&#8203;50309](https://github.com/nodejs/node/pull/50309)
    
  • [`21ab3c0f0b`](https://github.com/nodejs/node/commit/21ab3c0f0b)] - **(SEMVER-MINOR)** **module**: bootstrap module loaders in shadow realm (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`8e886a2fff`](https://github.com/nodejs/node/commit/8e886a2fff)] - **(SEMVER-MINOR)** **module**: remove useCustomLoadersIfPresent flag (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`77e8361213`](https://github.com/nodejs/node/commit/77e8361213)] - **module**: execute `--import` sequentially (Antoine du Hamel) [#&#8203;50474](https://github.com/nodejs/node/pull/50474)
    
  • [`fffc4951ac`](https://github.com/nodejs/node/commit/fffc4951ac)] - **module**: add application/json in accept header when fetching json module (Marco Ippolito) [#&#8203;50119](https://github.com/nodejs/node/pull/50119)
    
  • [`f808e7a650`](https://github.com/nodejs/node/commit/f808e7a650)] - **net**: check pipe mode and path (theanarkh) [#&#8203;50770](https://github.com/nodejs/node/pull/50770)
    
  • [`cf3a4c5b84`](https://github.com/nodejs/node/commit/cf3a4c5b84)] - **node-api**: factor out common code into macros (Gabriel Schulhof) [#&#8203;50664](https://github.com/nodejs/node/pull/50664)
    
  • [`a7d8f6b529`](https://github.com/nodejs/node/commit/a7d8f6b529)] - **perf_hooks**: implement performance.now() with fast API calls (Joyee Cheung) [#&#8203;50492](https://github.com/nodejs/node/pull/50492)
    
  • [`076dc7540b`](https://github.com/nodejs/node/commit/076dc7540b)] - **permission**: do not create symlinks if target is relative (Tobias Nießen) [#&#8203;49156](https://github.com/nodejs/node/pull/49156)
    
  • [`43160dcd2d`](https://github.com/nodejs/node/commit/43160dcd2d)] - **permission**: mark const functions as such (Tobias Nießen) [#&#8203;50705](https://github.com/nodejs/node/pull/50705)
    
  • [`7a661d7ad9`](https://github.com/nodejs/node/commit/7a661d7ad9)] - **permission**: address coverity warning (Michael Dawson) [#&#8203;50215](https://github.com/nodejs/node/pull/50215)
    
  • [`b2b4132c3e`](https://github.com/nodejs/node/commit/b2b4132c3e)] - **src**: iterate on import attributes array correctly (Michaël Zasso) [#&#8203;50703](https://github.com/nodejs/node/pull/50703)
    
  • [`11b3e470db`](https://github.com/nodejs/node/commit/11b3e470db)] - **(SEMVER-MINOR)** **src**: create per isolate proxy env template (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`d00412a083`](https://github.com/nodejs/node/commit/d00412a083)] - **(SEMVER-MINOR)** **src**: create fs_dir per isolate properties (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`14cc3b9b90`](https://github.com/nodejs/node/commit/14cc3b9b90)] - **(SEMVER-MINOR)** **src**: create worker per isolate properties (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`621c4d66c2`](https://github.com/nodejs/node/commit/621c4d66c2)] - **(SEMVER-MINOR)** **src**: make process binding data weak (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655)
    
  • [`07a4e94e84`](https://github.com/nodejs/node/commit/07a4e94e84)] - **src**: assert return value of BN_bn2binpad (Tobias Nießen) [#&#8203;50860](https://github.com/nodejs/node/pull/50860)
    
  • [`158db2d61e`](https://github.com/nodejs/node/commit/158db2d61e)] - **src**: fix coverity warning (Michael Dawson) [#&#8203;50846](https://github.com/nodejs/node/pull/50846)
    
  • [`94363bb3fd`](https://github.com/nodejs/node/commit/94363bb3fd)] - **src**: fix compatility with upcoming V8 12.1 APIs (Cheng Zhao) [#&#8203;50709](https://github.com/nodejs/node/pull/50709)
    
  • [`29d91b13e3`](https://github.com/nodejs/node/commit/29d91b13e3)] - **(SEMVER-MINOR)** **src**: add `--disable-warning` option (Ethan Arrowood) [#&#8203;50661](https://github.com/nodejs/node/pull/50661)
    
  • [`f054c337f8`](https://github.com/nodejs/node/commit/f054c337f8)] - **src**: add IsolateScopes before using isolates (Keyhan Vakil) [#&#8203;50680](https://github.com/nodejs/node/pull/50680)
    
  • [`d08eb382cd`](https://github.com/nodejs/node/commit/d08eb382cd)] - **src**: avoid copying strings in FSPermission::Apply (Tobias Nießen) [#&#8203;50662](https://github.com/nodejs/node/pull/50662)
    
  • [`6620df1c05`](https://github.com/nodejs/node/commit/6620df1c05)] - **src**: remove erroneous default argument in RadixTree (Tobias Nießen) [#&#8203;50736](https://github.com/nodejs/node/pull/50736)
    
  • [`436c3aef15`](https://github.com/nodejs/node/commit/436c3aef15)] - **src**: fix JSONParser leaking internal V8 scopes (Keyhan Vakil) [#&#8203;50688](https://github.com/nodejs/node/pull/50688)
    
  • [`6f46d31018`](https://github.com/nodejs/node/commit/6f46d31018)] - **src**: return error --env-file if file is not found (Ardi Nugraha) [#&#8203;50588](https://github.com/nodejs/node/pull/50588)
    
  • [`3d43fd359c`](https://github.com/nodejs/node/commit/3d43fd359c)] - **src**: avoid silent coercion to signed/unsigned int (Tobias Nießen) [#&#8203;50663](https://github.com/nodejs/node/pull/50663)
    
  • [`c253e39b56`](https://github.com/nodejs/node/commit/c253e39b56)] - **src**: handle errors from uv_pipe_connect2() (Deokjin Kim) [#&#8203;50657](https://github.com/nodejs/node/pull/50657)
    
  • [`3a9713bb5a`](https://github.com/nodejs/node/commit/3a9713bb5a)] - **src**: use v8::Isolate::TryGetCurrent() in DumpJavaScriptBacktrace() (Joyee Cheung) [#&#8203;50518](https://github.com/nodejs/node/pull/50518)
    
  • [`94f8a925a8`](https://github.com/nodejs/node/commit/94f8a925a8)] - **src**: print more information in C++ assertions (Joyee Cheung) [#&#8203;50242](https://github.com/nodejs/node/pull/50242)
    
  • [`23f830616b`](https://github.com/nodejs/node/commit/23f830616b)] - **src**: hide node::credentials::HasOnly outside unit (Tobias Nießen) [#&#8203;50450](https://github.com/nodejs/node/pull/50450)
    
  • [`b7ecb0a390`](https://github.com/nodejs/node/commit/b7ecb0a390)] - **src**: readiterable entries may be empty (Matthew Aitken) [#&#8203;50398](https://github.com/nodejs/node/pull/50398)
    
  • [`4ef1d68715`](https://github.com/nodejs/node/commit/4ef1d68715)] - **src**: implement structuredClone in native (Joyee Cheung) [#&#8203;50330](https://github.com/nodejs/node/pull/50330)
    
  • [`9346f15138`](https://github.com/nodejs/node/commit/9346f15138)] - **src**: use find instead of char-by-char in FromFilePath() (Daniel Lemire) [#&#8203;50288](https://github.com/nodejs/node/pull/50288)
    
  • [`8414fb4d2a`](https://github.com/nodejs/node/commit/8414fb4d2a)] - **src**: add commit hash shorthand in zlib version (Jithil P Ponnan) [#&#8203;50158](https://github.com/nodejs/node/pull/50158)
    
  • [`a878e3abb0`](https://github.com/nodejs/node/commit/a878e3abb0)] - **stream**: fix enumerability of ReadableStream.from (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779)
    
  • [`95ed4ffc1e`](https://github.com/nodejs/node/commit/95ed4ffc1e)] - **stream**: fix enumerability of ReadableStream.prototype.values (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779)
    
  • [`4cf155ca0c`](https://github.com/nodejs/node/commit/4cf155ca0c)] - **stream**: add Symbol.toStringTag to Compression Streams (Filip Skokan) [#&#8203;50712](https://github.com/nodejs/node/pull/50712)
    
  • [`6012e3e781`](https://github.com/nodejs/node/commit/6012e3e781)] - **stream**: fix Writable.destroy performance regression (Robert Nagy) [#&#8203;50478](https://github.com/nodejs/node/pull/50478)
    
  • [`dd5206820c`](https://github.com/nodejs/node/commit/dd5206820c)] - **stream**: pre-allocate \_events (Robert Nagy) [#&#8203;50428](https://github.com/nodejs/node/pull/50428)
    
  • [`829b82ed0f`](https://github.com/nodejs/node/commit/829b82ed0f)] - **stream**: remove no longer relevant comment (Robert Nagy) [#&#8203;50446](https://github.com/nodejs/node/pull/50446)
    
  • [`98ae1b4132`](https://github.com/nodejs/node/commit/98ae1b4132)] - **stream**: use bit fields for construct/destroy (Robert Nagy) [#&#8203;50408](https://github.com/nodejs/node/pull/50408)
    
  • [`08a0c6c56c`](https://github.com/nodejs/node/commit/08a0c6c56c)] - **stream**: improve from perf (Raz Luvaton) [#&#8203;50359](https://github.com/nodejs/node/pull/50359)
    
  • [`59f7316b8f`](https://github.com/nodejs/node/commit/59f7316b8f)] - **stream**: avoid calls to listenerCount (Robert Nagy) [#&#8203;50357](https://github.com/nodejs/node/pull/50357)
    
  • [`9d52430eb9`](https://github.com/nodejs/node/commit/9d52430eb9)] - **stream**: readable use bitmap accessors (Robert Nagy) [#&#8203;50350](https://github.com/nodejs/node/pull/50350)
    
  • [`139d6c8d3b`](https://github.com/nodejs/node/commit/139d6c8d3b)] - **stream**: use Array for Readable buffer (Robert Nagy) [#&#8203;50341](https://github.com/nodejs/node/pull/50341)
    
  • [`6206957e8d`](https://github.com/nodejs/node/commit/6206957e8d)] - **stream**: optimize creation (Robert Nagy) [#&#8203;50337](https://github.com/nodejs/node/pull/50337)
    
  • [`f87921de3b`](https://github.com/nodejs/node/commit/f87921de3b)] - **stream**: refactor writable \_write (Robert Nagy) [#&#8203;50198](https://github.com/nodejs/node/pull/50198)
    
  • [`b338f3d3c2`](https://github.com/nodejs/node/commit/b338f3d3c2)] - **stream**: avoid getter for defaultEncoding (Robert Nagy) [#&#8203;50203](https://github.com/nodejs/node/pull/50203)
    
  • [`1862235a26`](https://github.com/nodejs/node/commit/1862235a26)] - **test**: fix message v8 not normalising alphanumeric paths (Jithil P Ponnan) [#&#8203;50730](https://github.com/nodejs/node/pull/50730)
    
  • [`7c28a4ca8f`](https://github.com/nodejs/node/commit/7c28a4ca8f)] - **test**: fix dns test case failures after c-ares update to 1.21.0+ (Brad House) [#&#8203;50743](https://github.com/nodejs/node/pull/50743)
    
  • [`4544593d31`](https://github.com/nodejs/node/commit/4544593d31)] - **test**: replace forEach with for of (Conor Watson) [#&#8203;50594](https://github.com/nodejs/node/pull/50594)
    
  • [`96143a3293`](https://github.com/nodejs/node/commit/96143a3293)] - **test**: replace forEach to for at test-webcrypto-sign-verify-ecdsa.js (Alessandro Di Nisio) [#&#8203;50795](https://github.com/nodejs/node/pull/50795)
    
  • [`107b5e63c5`](https://github.com/nodejs/node/commit/107b5e63c5)] - **test**: replace foreach with for in test-https-simple.js (Shikha Mehta) [#&#8203;49793](https://github.com/nodejs/node/pull/49793)
    
  • [`9b2e5e9db4`](https://github.com/nodejs/node/commit/9b2e5e9db4)] - **test**: add note about unresolved spec issue (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779)
    
  • [`edce637c1a`](https://github.com/nodejs/node/commit/edce637c1a)] - **test**: add note about readable streams with type owning (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779)
    
  • [`641044670b`](https://github.com/nodejs/node/commit/641044670b)] - **test**: replace forEach with for-of in test-url-relative (vitosorriso) [#&#8203;50788](https://github.com/nodejs/node/pull/50788)
    
  • [`75ee78438c`](https://github.com/nodejs/node/commit/75ee78438c)] - **test**: replace forEach() with for ... of in test-tls-getprotocol.js (Steve Goode) [#&#8203;50600](https://github.com/nodejs/node/pull/50600)
    
  • [`24f9d3fbeb`](https://github.com/nodejs/node/commit/24f9d3fbeb)] - **test**: enable idlharness tests for encoding (Mattias Buelens) [#&#8203;50778](https://github.com/nodejs/node/pull/50778)
    
  • [`a9d290956e`](https://github.com/nodejs/node/commit/a9d290956e)] - **test**: replace forEach in whatwg-encoding-custom-interop (Honza Machala) [#&#8203;50607](https://github.com/nodejs/node/pull/50607)
    
  • [`6584dd80f7`](https://github.com/nodejs/node/commit/6584dd80f7)] - **test**: replace forEach() with for-loop (Jan) [#&#8203;50596](https://github.com/nodejs/node/pull/50596)
    
  • [`be54a22869`](https://github.com/nodejs/node/commit/be54a22869)] - **test**: improve test-bootstrap-modules.js (Joyee Cheung) [#&#8203;50708](https://github.com/nodejs/node/pull/50708)
    
  • [`660e70e73b`](https://github.com/nodejs/node/commit/660e70e73b)] - **test**: skip parallel/test-macos-app-sandbox if disk space < 120MB (Joyee Cheung) [#&#8203;50764](https://github.com/nodejs/node/pull/50764)
    
  • [`5712c41122`](https://github.com/nodejs/node/commit/5712c41122)] - **test**: replace foreach with for (Markus Muschol) [#&#8203;50599](https://github.com/nodejs/node/pull/50599)
    
  • [`49e5f47b1c`](https://github.com/nodejs/node/commit/49e5f47b1c)] - **test**: test streambase has already has a consumer (Jithil P Ponnan) [#&#8203;48059](https://github.com/nodejs/node/pull/48059)
    
  • [`bb7d764c8e`](https://github.com/nodejs/node/commit/bb7d764c8e)] - **test**: change forEach to for...of in path extname (Kyriakos Markakis) [#&#8203;50667](https://github.com/nodejs/node/pull/50667)
    
  • [`4d28ced079`](https://github.com/nodejs/node/commit/4d28ced079)] - **test**: replace forEach with for...of (Ryan Williams) [#&#8203;50611](https://github.com/nodejs/node/pull/50611)
    
  • [`92a153ecde`](https://github.com/nodejs/node/commit/92a153ecde)] - **test**: migrate message v8 tests from Python to JS (Joshua LeMay) [#&#8203;50421](https://github.com/nodejs/node/pull/50421)
    
  • [`a376284d8a`](https://github.com/nodejs/node/commit/a376284d8a)] - **test**: use destructuring for accessing setting values (Honza Jedlička) [#&#8203;50609](https://github.com/nodejs/node/pull/50609)
    
  • [`7b9b1fba27`](https://github.com/nodejs/node/commit/7b9b1fba27)] - **test**: replace forEach() with for .. of (Evgenia Blajer) [#&#8203;50605](https://github.com/nodejs/node/pull/50605)
    
  • [`9397b2da7e`](https://github.com/nodejs/node/commit/9397b2da7e)] - **test**: replace forEach() with for ... of in test-readline-keys.js (William Liang) [#&#8203;50604](https://github.com/nodejs/node/pull/50604)
    
  • [`9043ba4cfb`](https://github.com/nodejs/node/commit/9043ba4cfb)] - **test**: replace forEach() with for ... of in test-http2-single-headers.js (spiritualized) [#&#8203;50606](https://github.com/nodejs/node/pull/50606)
    
  • [`9f911d31f6`](https://github.com/nodejs/node/commit/9f911d31f6)] - **test**: replace forEach with for of (john-mcinall) [#&#8203;50602](https://github.com/nodejs/node/pull/50602)
    
  • [`8a5f36fe74`](https://github.com/nodejs/node/commit/8a5f36fe74)] - **test**: remove unused file (James Sumners) [#&#8203;50528](https://github.com/nodejs/node/pull/50528)
    
  • [`9950203340`](https://github.com/nodejs/node/commit/9950203340)] - **test**: replace forEach with for of (Kevin Kühnemund) [#&#8203;50597](https://github.com/nodejs/node/pull/50597)
    
  • [`03ba28f102`](https://github.com/nodejs/node/commit/03ba28f102)] - **test**: replace forEach with for of (CorrWu) [#&#8203;49785](https://github.com/nodejs/node/pull/49785)
    
  • [`ea61261b54`](https://github.com/nodejs/node/commit/ea61261b54)] - **test**: replace forEach with for \[...] of (Gabriel Bota) [#&#8203;50615](https://github.com/nodejs/node/pull/50615)
    
  • [`4349790913`](https://github.com/nodejs/node/commit/4349790913)] - **test**: add WPT report test duration (Filip Skokan) [#&#8203;50574](https://github.com/nodejs/node/pull/50574)
    
  • [`7cacddfcc1`](https://github.com/nodejs/node/commit/7cacddfcc1)] - **test**: replace forEach() with for ... of loop in test-global.js (Kajol) [#&#8203;49772](https://github.com/nodejs/node/pull/49772)
    
  • [`889f58d07f`](https://github.com/nodejs/node/commit/889f58d07f)] - **test**: skip test-diagnostics-channel-memory-leak.js (Joyee Cheung) [#&#8203;50327](https://github.com/nodejs/node/pull/50327)
    
  • [`41644ee071`](https://github.com/nodejs/node/commit/41644ee071)] - **test**: improve `UV_THREADPOOL_SIZE` tests on `.env` (Yagiz Nizipli) [#&#8203;49213](https://github.com/nodejs/node/pull/49213)
    
  • [`1db44b9a53`](https://github.com/nodejs/node/commit/1db44b9a53)] - **test**: recognize wpt completion error (Chengzhong Wu) [#&#8203;50429](https://github.com/nodejs/node/pull/50429)
    
  • [`ecfc951ddc`](https://github.com/nodejs/node/commit/ecfc951ddc)] - **test**: report error wpt test results (Chengzhong Wu) [#&#8203;50429](https://github.com/nodejs/node/pull/50429)
    
  • [`deb0351d95`](https://github.com/nodejs/node/commit/deb0351d95)] - **test**: replace forEach() with for...of (Ram) [#&#8203;49794](https://github.com/nodejs/node/pull/49794)
    
  • [`f885dfe5e3`](https://github.com/nodejs/node/commit/f885dfe5e3)] - **test**: replace forEach() with for...of in test-trace-events-http (Chand) [#&#8203;49795](https://github.com/nodejs/node/pull/49795)
    
  • [`9dc63c56db`](https://github.com/nodejs/node/commit/9dc63c56db)] - **test**: replace forEach with for...of in test-fs-realpath-buffer-encoding (Niya Shiyas) [#&#8203;49804](https://github.com/nodejs/node/pull/49804)
    
  • [`600d1260da`](https://github.com/nodejs/node/commit/600d1260da)] - **test**: fix timeout of test-cpu-prof-dir-worker.js in LoongArch devices (Shi Pujin) [#&#8203;50363](https://github.com/nodejs/node/pull/50363)
    
  • [`099f5cfa0a`](https://github.com/nodejs/node/commit/099f5cfa0a)] - **test**: fix vm assertion actual and expected order (Chengzhong Wu) [#&#8203;50371](https://github.com/nodejs/node/pull/50371)
    
  • [`a31f9bfe01`](https://github.com/nodejs/node/commit/a31f9bfe01)] - **test**: v8: Add test-linux-perf-logger test suite (Luke Albao) [#&#8203;50352](https://github.com/nodejs/node/pull/50352)
    
  • [`6c59114947`](https://github.com/nodejs/node/commit/6c59114947)] - **test**: ensure never settling promises are detected (Antoine du Hamel) [#&#8203;50318](https://github.com/nodejs/node/pull/50318)
    
  • [`9830ae4bf7`](https://github.com/nodejs/node/commit/9830ae4bf7)] - **test_runner**: add tests for various mock timer issues (Mika Fischer) [#&#8203;50384](https://github.com/nodejs/node/pull/50384)
    
  • [`2c72ed85fb`](https://github.com/nodejs/node/commit/2c72ed85fb)] - **test_runner**: pass abortSignal to test files (Moshe Atlow) [#&#8203;50630](https://github.com/nodejs/node/pull/50630)
    
  • [`c33a84af11`](https://github.com/nodejs/node/commit/c33a84af11)] - **test_runner**: replace forEach with for of (Tom Haddad) [#&#8203;50595](https://github.com/nodejs/node/pull/50595)
    
  • [`29c68a22bb`](https://github.com/nodejs/node/commit/29c68a22bb)] - **test_runner**: output errors of suites (Moshe Atlow) [#&#8203;50361](https://github.com/nodejs/node/pull/50361)
    
  • [`e64378643d`](https://github.com/nodejs/node/commit/e64378643d)] - **(SEMVER-MINOR)** **test_runner**: adds built in lcov reporter (Phil Nash) [#&#8203;50018](https://github.com/nodejs/node/pull/50018)
    
  • [`4aaaff413b`](https://github.com/nodejs/node/commit/4aaaff413b)] - **test_runner**: test return value of mocked promisified timers (Mika Fischer) [#&#8203;50331](https://github.com/nodejs/node/pull/50331)
    
  • [`4a830c2d9d`](https://github.com/nodejs/node/commit/4a830c2d9d)] - **(SEMVER-MINOR)** **test_runner**: add Date to the supported mock APIs (Lucas Santos) [#&#8203;48638](https://github.com/nodejs/node/pull/48638)
    
  • [`842dc01def`](https://github.com/nodejs/node/commit/842dc01def)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-timeout flag (Shubham Pandey) [#&#8203;50443](https://github.com/nodejs/node/pull/50443)
    
  • [`613a9072b7`](https://github.com/nodejs/node/commit/613a9072b7)] - **tls**: fix order of setting cipher before setting cert and key (Kumar Rishav) [#&#8203;50186](https://github.com/nodejs/node/pull/50186)
    
  • [`d905c61e16`](https://github.com/nodejs/node/commit/d905c61e16)] - **tls**: use `validateFunction` for `options.SNICallback` (Deokjin Kim) [#&#8203;50530](https://github.com/nodejs/node/pull/50530)
    
  • [`c8d6dd58e7`](https://github.com/nodejs/node/commit/c8d6dd58e7)] - **tools**: add macOS notarization verification step (Ulises Gascón) [#&#8203;50833](https://github.com/nodejs/node/pull/50833)
    
  • [`c9bd0b0c0f`](https://github.com/nodejs/node/commit/c9bd0b0c0f)] - **tools**: use macOS keychain to notarize the releases (Ulises Gascón) [#&#8203;50715](https://github.com/nodejs/node/pull/50715)
    
  • [`932a5d7b2c`](https://github.com/nodejs/node/commit/932a5d7b2c)] - **tools**: update eslint to 8.54.0 (Node.js GitHub Bot) [#&#8203;50809](https://github.com/nodejs/node/pull/50809)
    
  • [`d7114d97be`](https://github.com/nodejs/node/commit/d7114d97be)] - **tools**: update lint-md-dependencies to rollup@4.5.0 (Node.js GitHub Bot) [#&#8203;50807](https://github.com/nodejs/node/pull/50807)
    
  • [`93085cf844`](https://github.com/nodejs/node/commit/93085cf844)] - **tools**: add workflow to update release links (Michaël Zasso) [#&#8203;50710](https://github.com/nodejs/node/pull/50710)
    
  • [`66764c5d04`](https://github.com/nodejs/node/commit/66764c5d04)] - **tools**: recognize GN files in dep_updaters (Cheng Zhao) [#&#8203;50693](https://github.com/nodejs/node/pull/50693)
    
  • [`2a451e176a`](https://github.com/nodejs/node/commit/2a451e176a)] - **tools**: remove unused file (Ulises Gascon) [#&#8203;50622](https://github.com/nodejs/node/pull/50622)
    
  • [`8ce6403230`](https://github.com/nodejs/node/commit/8ce6403230)] - **tools**: change minimatch install strategy (Marco Ippolito) [#&#8203;50476](https://github.com/nodejs/node/pull/50476)
    
  • [`97778e2e77`](https://github.com/nodejs/node/commit/97778e2e77)] - **tools**: update lint-md-dependencies to rollup@4.3.1 (Node.js GitHub Bot) [#&#8203;50675](https://github.com/nodejs/node/pull/50675)
    
  • [`797f6a9ba8`](https://github.com/nodejs/node/commit/797f6a9ba8)] - **tools**: add macOS notarization stapler (Ulises Gascón) [#&#8203;50625](https://github.com/nodejs/node/pull/50625)
    
  • [`8fa1319352`](https://github.com/nodejs/node/commit/8fa1319352)] - **tools**: update eslint to 8.53.0 (Node.js GitHub Bot) [#&#8203;50559](https://github.com/nodejs/node/pull/50559)
    
  • [`592f57970f`](https://github.com/nodejs/node/commit/592f57970f)] - **tools**: update lint-md-dependencies to rollup@4.3.0 (Node.js GitHub Bot) [#&#8203;50556](https://github.com/nodejs/node/pull/50556)
    
  • [`2fd78fc39e`](https://github.com/nodejs/node/commit/2fd78fc39e)] - **tools**: compare ICU checksums before file changes (Michaël Zasso) [#&#8203;50522](https://github.com/nodejs/node/pull/50522)
    
  • [`631d710fc4`](https://github.com/nodejs/node/commit/631d710fc4)] - **tools**: improve update acorn-walk script (Marco Ippolito) [#&#8203;50473](https://github.com/nodejs/node/pull/50473)
    
  • [`33fd2af2ab`](https://github.com/nodejs/node/commit/33fd2af2ab)] - **tools**: update lint-md-dependencies to rollup@4.2.0 (Node.js GitHub Bot) [#&#8203;50496](https://github.com/nodejs/node/pull/50496)
    
  • [`22b7a74838`](https://github.com/nodejs/node/commit/22b7a74838)] - **tools**: update gyp-next to v0.16.1 (Michaël Zasso) [#&#8203;50380](https://github.com/nodejs/node/pull/50380)
    
  • [`f5ccab5005`](https://github.com/nodejs/node/commit/f5ccab5005)] - **tools**: skip ruff on tools/gyp (Michaël Zasso) [#&#8203;50380](https://github.com/nodejs/node/pull/50380)
    
  • [`408fd90508`](https://github.com/nodejs/node/commit/408fd90508)] - **tools**: update lint-md-dependencies to rollup@4.1.5 unified@11.0.4 (Node.js GitHub Bot) [#&#8203;50461](https://github.com/nodejs/node/pull/50461)
    
  • [`685f936ccd`](https://github.com/nodejs/node/commit/685f936ccd)] - **tools**: avoid npm install in deps installation (Marco Ippolito) [#&#8203;50413](https://github.com/nodejs/node/pull/50413)
    
  • [`7d43c5a094`](https://github.com/nodejs/node/commit/7d43c5a094)] - ***Revert*** "**tools**: update doc dependencies" (Richard Lau) [#&#8203;50414](https://github.com/nodejs/node/pull/50414)
    
  • [`8fd67c2e3e`](https://github.com/nodejs/node/commit/8fd67c2e3e)] - **tools**: update doc dependencies (Node.js GitHub Bot) [#&#8203;49988](https://github.com/nodejs/node/pull/49988)
    
  • [`586becb507`](https://github.com/nodejs/node/commit/586becb507)] - **tools**: run coverage CI only on relevant files (Antoine du Hamel) [#&#8203;50349](https://github.com/nodejs/node/pull/50349)
    
  • [`2d06eea6c5`](https://github.com/nodejs/node/commit/2d06eea6c5)] - **tools**: update eslint to 8.52.0 (Node.js GitHub Bot) [#&#8203;50326](https://github.com/nodejs/node/pull/50326)
    
  • [`6a897baf16`](https://github.com/nodejs/node/commit/6a897baf16)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;50190](https://github.com/nodejs/node/pull/50190)
    
  • [`e6e7f39b9e`](https://github.com/nodejs/node/commit/e6e7f39b9e)] - **util**: improve performance of normalizeEncoding (kylo5aby) [#&#8203;50721](https://github.com/nodejs/node/pull/50721)
    
  • [`3b6b1afa47`](https://github.com/nodejs/node/commit/3b6b1afa47)] - **v8,tools**: expose necessary V8 defines (Cheng Zhao) [#&#8203;50820](https://github.com/nodejs/node/pull/50820)
    
  • [`2664012617`](https://github.com/nodejs/node/commit/2664012617)] - **vm**: allow dynamic import with a referrer realm (Chengzhong Wu) [#&#8203;50360](https://github.com/nodejs/node/pull/50360)
    
  • [`c6c0a74b54`](https://github.com/nodejs/node/commit/c6c0a74b54)] - **wasi**: document security sandboxing status (Guy Bedford) [#&#8203;50396](https://github.com/nodejs/node/pull/50396)
    
  • [`989814093e`](https://github.com/nodejs/node/commit/989814093e)] - **win,tools**: upgrade Windows signing to smctl (Stefan Stojanovic) [#&#8203;50956](https://github.com/nodejs/node/pull/50956)
    
    

v20.10.0: 2023-11-22, Version 20.10.0 'Iron' (LTS), @​targos

Compare Source

Notable Changes
--experimental-default-type flag to flip module defaults

The new flag --experimental-default-type can be used to flip the default
module system used by Node.js. Input that is already explicitly defined as ES
modules or CommonJS, such as by a package.json "type" field or .mjs/.cjs
file extension or the --input-type flag, is unaffected. What is currently
implicitly CommonJS would instead be interpreted as ES modules under
--experimental-default-type=module:

  • String input provided via --eval or STDIN, if --input-type is unspecified.

  • Files ending in .js or with no extension, if there is no package.json file
    present in the same folder or any parent folder.

  • Files ending in .js or with no extension, if the nearest parent
    package.json field lacks a type field; unless the folder is inside a
    node_modules folder.

In addition, extensionless files are interpreted as Wasm if
--experimental-wasm-modules is passed and the file contains the "magic bytes"
Wasm header.

Contributed by Geoffrey Booth in #​49869.

Detect ESM syntax in ambiguous JavaScript

The new flag --experimental-detect-module can be used to automatically run ES
modules when their syntax can be detected. For “ambiguous” files, which are
.js or extensionless files with no package.json with a type field, Node.js
will parse the file to detect ES module syntax; if found, it will run the file
as an ES module, otherwise it will run the file as a CommonJS module. The same
applies to string input via --eval or STDIN.

We hope to make detection enabled by default in a future version of Node.js.
Detection increases startup time, so we encourage everyone—especially package
authors—to add a type field to package.json, even for the default
"type": "commonjs". The presence of a type field, or explicit extensions
such as .mjs or .cjs, will opt out of detection.

Contributed by Geoffrey Booth in #​50096.

New flush option in file system functions

When writing to files, it is possible that data is not immediately flushed to
permanent storage. This allows subsequent read operations to see stale data.
This PR adds a 'flush' option to the fs.writeFile family of functions which
forces the data to be flushed at the end of a successful write operation.

Contributed by Colin Ihrig in #​50009 and #​50095.

Experimental WebSocket client

Adds a --experimental-websocket flag that adds a WebSocket
global, as standardized by WHATWG.

Contributed by Matthew Aitken in #​49830.

vm: fix V8 compilation cache support for vm.Script

Previously repeated compilation of the same source code using vm.Script
stopped hitting the V8 compilation cache after v16.x when support for
importModuleDynamically was added to vm.Script, resulting in a performance
regression that blocked users (in particular Jest users) from upgrading from
v16.x.

The recent fixes allow the compilation cache to be hit again
for vm.Script when --experimental-vm-modules is not used even in the
presence of the importModuleDynamically option, so that users affected by the
performance regression can now upgrade. Ongoing work is also being done to
enable compilation cache support for vm.CompileFunction.

Contributed by Joyee Cheung in #​49950
and #​50137.

Other notable changes
  • [`21453ae555`](https://github.com/nodejs/node/commit/21453ae555)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908)
    
  • [`ee65e44c31`](https://github.com/nodejs/node/commit/ee65e44c31)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140)
    
  • [`ffdc357167`](https://github.com/nodejs/node/commit/ffdc357167)] - **(SEMVER-MINOR)** **stream**: allow passing stream class to `stream.compose` (Alex Yang) [#&#8203;50187](https://github.com/nodejs/node/pull/50187)
    
  • [`4861ad6431`](https://github.com/nodejs/node/commit/4861ad6431)] - **stream**: improve performance of readable stream reads (Raz Luvaton) [#&#8203;50173](https://github.com/nodejs/node/pull/50173)
    
  • [`4b27087b30`](https://github.com/nodejs/node/commit/4b27087b30)] - **stream**: optimize Writable (Robert Nagy) [#&#8203;50012](https://github.com/nodejs/node/pull/50012)
    
  • [`709c6c0cab`](https://github.com/nodejs/node/commit/709c6c0cab)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996)
    
  • [`57efd5292c`](https://github.com/nodejs/node/commit/57efd5292c)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141)
    
    
Commits
  • [`73757a5f42`](https://github.com/nodejs/node/commit/73757a5f42)] - **benchmark**: fix race condition on fs benchs (Vinicius Lourenço) [#&#8203;50035](https://github.com/nodejs/node/pull/50035)
    
  • [`23269717bb`](https://github.com/nodejs/node/commit/23269717bb)] - **benchmark**: add warmup to accessSync bench (Rafael Gonzaga) [#&#8203;50073](https://github.com/nodejs/node/pull/50073)
    
  • [`88611d199a`](https://github.com/nodejs/node/commit/88611d199a)] - **benchmark**: improved config for blob,file benchmark (Vinícius Lourenço) [#&#8203;49730](https://github.com/nodejs/node/pull/49730)
    
  • [`b70757476c`](https://github.com/nodejs/node/commit/b70757476c)] - **benchmark**: added new benchmarks for blob (Vinícius Lourenço) [#&#8203;49730](https://github.com/nodejs/node/pull/49730)
    
  • [`458d9a82e3`](https://github.com/nodejs/node/commit/458d9a82e3)] - **buffer**: remove unnecessary assignment in fromString (Tobias Nießen) [#&#8203;50199](https://github.com/nodejs/node/pull/50199)
    
  • [`878c0b332e`](https://github.com/nodejs/node/commit/878c0b332e)] - **build**: fix IBM i build with Python 3.9 (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056)
    
  • [`773320e1de`](https://github.com/nodejs/node/commit/773320e1de)] - **crypto**: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) [#&#8203;50234](https://github.com/nodejs/node/pull/50234)
    
  • [`edb0ffd7d4`](https://github.com/nodejs/node/commit/edb0ffd7d4)] - **crypto**: use X509\_ALGOR accessors instead of reaching into X509\_ALGOR (David Benjamin) [#&#8203;50057](https://github.com/nodejs/node/pull/50057)
    
  • [`3f98c06dbb`](https://github.com/nodejs/node/commit/3f98c06dbb)] - **crypto**: account for disabled SharedArrayBuffer (Shelley Vohr) [#&#8203;50034](https://github.com/nodejs/node/pull/50034)
    
  • [`55485ff1cc`](https://github.com/nodejs/node/commit/55485ff1cc)] - **crypto**: return clear errors when loading invalid PFX data (Tim Perry) [#&#8203;49566](https://github.com/nodejs/node/pull/49566)
    
  • [`68ec1e5eeb`](https://github.com/nodejs/node/commit/68ec1e5eeb)] - **deps**: upgrade npm to 10.2.3 (npm team) [#&#8203;50531](https://github.com/nodejs/node/pull/50531)
    
  • [`b00c11ad7c`](https://github.com/nodejs/node/commit/b00c11ad7c)] - **deps**: V8: cherry-pick [`d90d453`](https://github.com/nodejs/node/commit/d90d4533b053) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077)
    
  • [`e63aef91b4`](https://github.com/nodejs/node/commit/e63aef91b4)] - **deps**: V8: cherry-pick [`f7d000a`](https://github.com/nodejs/node/commit/f7d000a7ae7b) (Luke Albao) [#&#8203;50077](https://github.com/nodejs/node/pull/50077)
    
  • [`4b243b553a`](https://github.com/nodejs/node/commit/4b243b553a)] - **deps**: V8: cherry-pick [`9721082`](https://github.com/nodejs/node/commit/9721082687c9) (Shi Pujin) [#&#8203;50077](https://github.com/nodejs/node/pull/50077)
    
  • [`9d3cdcbebf`](https://github.com/nodejs/node/commit/9d3cdcbebf)] - **deps**: V8: cherry-pick [`840650f`](https://github.com/nodejs/node/commit/840650f2ff4e) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077)
    
  • [`0c40b513fd`](https://github.com/nodejs/node/commit/0c40b513fd)] - **deps**: V8: cherry-pick [`a1efa53`](https://github.com/nodejs/node/commit/a1efa5343880) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077)
    
  • [`68cddd79f7`](https://github.com/nodejs/node/commit/68cddd79f7)] - **deps**: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411)
    
  • [`3308189180`](https://github.com/nodejs/node/commit/3308189180)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411)
    
  • [`b61707e535`](https://github.com/nodejs/node/commit/b61707e535)] - **deps**: update ada to 2.7.2 (Node.js GitHub Bot) [#&#8203;50338](https://github.com/nodejs/node/pull/50338)
    
  • [`1aecf0c17b`](https://github.com/nodejs/node/commit/1aecf0c17b)] - **deps**: update corepack to 0.22.0 (Node.js GitHub Bot) [#&#8203;50325](https://github.com/nodejs/node/pull/50325)
    
  • [`f5924f174c`](https://github.com/nodejs/node/commit/f5924f174c)] - **deps**: update c-ares to 1.20.1 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082)
    
  • [`b705e19a95`](https://github.com/nodejs/node/commit/b705e19a95)] - **deps**: update c-ares to 1.20.0 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082)
    
  • [`f72cbb7e02`](https://github.com/nodejs/node/commit/f72cbb7e02)] - **deps**: V8: cherry-pick [`2590224`](https://github.com/nodejs/node/commit/25902244ad1a) (Joyee Cheung) [#&#8203;50156](https://github.com/nodejs/node/pull/50156)
    
  • [`6547bd2493`](https://github.com/nodejs/node/commit/6547bd2493)] - **deps**: V8: cherry-pick [`ea996ad`](https://github.com/nodejs/node/commit/ea996ad04a68) (Antoine du Hamel) [#&#8203;50183](https://github.com/nodejs/node/pull/50183)
    
  • [`16fd730e95`](https://github.com/nodejs/node/commit/16fd730e95)] - **deps**: V8: cherry-pick [`a0fd320`](https://github.com/nodejs/node/commit/a0fd3209dda8) (Antoine du Hamel) [#&#8203;50183](https://github.com/nodejs/node/pull/50183)
    
  • [`614c3620c3`](https://github.com/nodejs/node/commit/614c3620c3)] - **deps**: update corepack to 0.21.0 (Node.js GitHub Bot) [#&#8203;50088](https://github.com/nodejs/node/pull/50088)
    
  • [`545aa74ae2`](https://github.com/nodejs/node/commit/545aa74ae2)] - **deps**: update simdutf to 3.2.18 (Node.js GitHub Bot) [#&#8203;50091](https://github.com/nodejs/node/pull/50091)
    
  • [`9302806c0a`](https://github.com/nodejs/node/commit/9302806c0a)] - **deps**: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) [#&#8203;50085](https://github.com/nodejs/node/pull/50085)
    
  • [`03bf5c5d9a`](https://github.com/nodejs/node/commit/03bf5c5d9a)] - **deps**: update googletest to [`2dd1c13`](https://github.com/nodejs/node/commit/2dd1c13) (Node.js GitHub Bot) [#&#8203;50081](https://github.com/nodejs/node/pull/50081)
    
  • [`cd8e90690b`](https://github.com/nodejs/node/commit/cd8e90690b)] - **deps**: update googletest to [`e47544a`](https://github.com/nodejs/node/commit/e47544a) (Node.js GitHub Bot) [#&#8203;49982](https://github.com/nodejs/node/pull/49982)
    
  • [`40672cfe53`](https://github.com/nodejs/node/commit/40672cfe53)] - **deps**: update ada to 2.6.10 (Node.js GitHub Bot) [#&#8203;49984](https://github.com/nodejs/node/pull/49984)
    
  • [`34c7eb0eb2`](https://github.com/nodejs/node/commit/34c7eb0eb2)] - **deps**: fix call to undeclared functions 'ntohl' and 'htons' (MatteoBax) [#&#8203;49979](https://github.com/nodejs/node/pull/49979)
    
  • [`03654b44b6`](https://github.com/nodejs/node/commit/03654b44b6)] - **deps**: update ada to 2.6.9 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`4c740b1dd8`](https://github.com/nodejs/node/commit/4c740b1dd8)] - **deps**: update ada to 2.6.8 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`759cf5a760`](https://github.com/nodejs/node/commit/759cf5a760)] - **deps**: update ada to 2.6.7 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`31a4e9781a`](https://github.com/nodejs/node/commit/31a4e9781a)] - **deps**: update ada to 2.6.5 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`2ca867f2ab`](https://github.com/nodejs/node/commit/2ca867f2ab)] - **deps**: update ada to 2.6.3 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`21453ae555`](https://github.com/nodejs/node/commit/21453ae555)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908)
    
  • [`7ca1228be8`](https://github.com/nodejs/node/commit/7ca1228be8)] - **deps**: V8: cherry-pick [`8ec2651`](https://github.com/nodejs/node/commit/8ec2651fbdd8) (Abdirahim Musse) [#&#8203;49862](https://github.com/nodejs/node/pull/49862)
    
  • [`3cc41d253c`](https://github.com/nodejs/node/commit/3cc41d253c)] - **deps**: upgrade npm to 10.2.0 (npm team) [#&#8203;50027](https://github.com/nodejs/node/pull/50027)
    
  • [`61b4afb7dd`](https://github.com/nodejs/node/commit/61b4afb7dd)] - **deps**: update undici to 5.26.4 (Node.js GitHub Bot) [#&#8203;50274](https://github.com/nodejs/node/pull/50274)
    
  • [`ea28738336`](https://github.com/nodejs/node/commit/ea28738336)] - **doc**: add loong64 info into platform list (Shi Pujin) [#&#8203;50086](https://github.com/nodejs/node/pull/50086)
    
  • [`00c12b7a20`](https://github.com/nodejs/node/commit/00c12b7a20)] - **doc**: update release process LTS step (Richard Lau) [#&#8203;50299](https://github.com/nodejs/node/pull/50299)
    
  • [`a9ba29ba10`](https://github.com/nodejs/node/commit/a9ba29ba10)] - **doc**: fix release process table of contents (Richard Lau) [#&#8203;50216](https://github.com/nodejs/node/pull/50216)
    
  • [`4b5033519e`](https://github.com/nodejs/node/commit/4b5033519e)] - **doc**: update api `stream.compose` (Alex Yang) [#&#8203;50206](https://github.com/nodejs/node/pull/50206)
    
  • [`d4659e2080`](https://github.com/nodejs/node/commit/d4659e2080)] - **doc**: add ReflectConstruct to known perf issues (Vinicius Lourenço) [#&#8203;50111](https://github.com/nodejs/node/pull/50111)
    
  • [`ffa94612fd`](https://github.com/nodejs/node/commit/ffa94612fd)] - **doc**: fix typo in dgram docs (Peter Johnson) [#&#8203;50211](https://github.com/nodejs/node/pull/50211)
    
  • [`f37b577b14`](https://github.com/nodejs/node/commit/f37b577b14)] - **doc**: fix H4ad collaborator sort (Vinicius Lourenço) [#&#8203;50218](https://github.com/nodejs/node/pull/50218)
    
  • [`c75264b1f9`](https://github.com/nodejs/node/commit/c75264b1f9)] - **doc**: add H4ad to collaborators (Vinícius Lourenço) [#&#8203;50217](https://github.com/nodejs/node/pull/50217)
    
  • [`5025e24ac7`](https://github.com/nodejs/node/commit/5025e24ac7)] - **doc**: update release-stewards with last sec-release (Rafael Gonzaga) [#&#8203;50179](https://github.com/nodejs/node/pull/50179)
    
  • [`63379313d5`](https://github.com/nodejs/node/commit/63379313d5)] - **doc**: add command to keep major branch sync (Rafael Gonzaga) [#&#8203;50102](https://github.com/nodejs/node/pull/50102)
    
  • [`85de4b8254`](https://github.com/nodejs/node/commit/85de4b8254)] - **doc**: add loong64 to list of architectures (Shi Pujin) [#&#8203;50172](https://github.com/nodejs/node/pull/50172)
    
  • [`ff8e1b860e`](https://github.com/nodejs/node/commit/ff8e1b860e)] - **doc**: update security release process (Michael Dawson) [#&#8203;50166](https://github.com/nodejs/node/pull/50166)
    
  • [`33470d965c`](https://github.com/nodejs/node/commit/33470d965c)] - **doc**: improve ccache explanation (Chengzhong Wu) [#&#8203;50133](https://github.com/nodejs/node/pull/50133)
    
  • [`7b97c44e2a`](https://github.com/nodejs/node/commit/7b97c44e2a)] - **doc**: move danielleadams to TSC non-voting member (Danielle Adams) [#&#8203;50142](https://github.com/nodejs/node/pull/50142)
    
  • [`3d03ca9f31`](https://github.com/nodejs/node/commit/3d03ca9f31)] - **doc**: fix description of `fs.readdir` `recursive` option (RamdohokarAngha) [#&#8203;48902](https://github.com/nodejs/node/pull/48902)
    
  • [`aab045ec4b`](https://github.com/nodejs/node/commit/aab045ec4b)] - **doc**: mention files read before env setup (Rafael Gonzaga) [#&#8203;50072](https://github.com/nodejs/node/pull/50072)
    
  • [`26a7608a24`](https://github.com/nodejs/node/commit/26a7608a24)] - **doc**: move permission model to Active Development (Rafael Gonzaga) [#&#8203;50068](https://github.com/nodejs/node/pull/50068)
    
  • [`d7bbf7f2c4`](https://github.com/nodejs/node/commit/d7bbf7f2c4)] - **doc**: add command to get patch minors and majors (Rafael Gonzaga) [#&#8203;50067](https://github.com/nodejs/node/pull/50067)
    
  • [`9830165e34`](https://github.com/nodejs/node/commit/9830165e34)] - **doc**: use precise promise terminology in fs (Benjamin Gruenbaum) [#&#8203;50029](https://github.com/nodejs/node/pull/50029)
    
  • [`585cbb211d`](https://github.com/nodejs/node/commit/585cbb211d)] - **doc**: use precise terminology in test runner (Benjamin Gruenbaum) [#&#8203;50028](https://github.com/nodejs/node/pull/50028)
    
  • [`2862f07124`](https://github.com/nodejs/node/commit/2862f07124)] - **doc**: clarify explaination text on how to run the example (Anshul Sinha) [#&#8203;39020](https://github.com/nodejs/node/pull/39020)
    
  • [`fe47c8ad91`](https://github.com/nodejs/node/commit/fe47c8ad91)] - **doc**: reserve 119 for Electron 28 (David Sanders) [#&#8203;50020](https://github.com/nodejs/node/pull/50020)
    
  • [`36ecd2c588`](https://github.com/nodejs/node/commit/36ecd2c588)] - **doc**: update Collaborator pronouns (Tierney Cyren) [#&#8203;50005](https://github.com/nodejs/node/pull/50005)
    
  • [`315d82a73e`](https://github.com/nodejs/node/commit/315d82a73e)] - **doc**: update link to Abstract Modules Records spec (Rich Trott) [#&#8203;49961](https://github.com/nodejs/node/pull/49961)
    
  • [`f63a92bb6c`](https://github.com/nodejs/node/commit/f63a92bb6c)] - **doc**: updated building docs for windows (Claudio W) [#&#8203;49767](https://github.com/nodejs/node/pull/49767)
    
  • [`ad17126501`](https://github.com/nodejs/node/commit/ad17126501)] - **doc**: update CHANGELOG_V20 about vm fixes (Joyee Cheung) [#&#8203;49951](https://github.com/nodejs/node/pull/49951)
    
  • [`24458e2ac3`](https://github.com/nodejs/node/commit/24458e2ac3)] - **doc**: document dangerous symlink behavior (Tobias Nießen) [#&#8203;49154](https://github.com/nodejs/node/pull/49154)
    
  • [`337a676d1f`](https://github.com/nodejs/node/commit/337a676d1f)] - **doc**: add main ARIA landmark to API docs (Rich Trott) [#&#8203;49882](https://github.com/nodejs/node/pull/49882)
    
  • [`959ef7ac6b`](https://github.com/nodejs/node/commit/959ef7ac6b)] - **doc**: add navigation ARIA landmark to doc ToC (Rich Trott) [#&#8203;49882](https://github.com/nodejs/node/pull/49882)
    
  • [`a60fbf2ab3`](https://github.com/nodejs/node/commit/a60fbf2ab3)] - **doc**: mark Node.js 19 as End-of-Life (Richard Lau) [#&#8203;48283](https://github.com/nodejs/node/pull/48283)
    
  • [`c255575699`](https://github.com/nodejs/node/commit/c255575699)] - **errors**: improve performance of determine-specific-type (Aras Abbasi) [#&#8203;49696](https://github.com/nodejs/node/pull/49696)
    
  • [`e66991e6b2`](https://github.com/nodejs/node/commit/e66991e6b2)] - **errors**: improve formatList in errors.js (Aras Abbasi) [#&#8203;49642](https://github.com/nodejs/node/pull/49642)
    
  • [`c71e548b65`](https://github.com/nodejs/node/commit/c71e548b65)] - **errors**: improve performance of instantiation (Aras Abbasi) [#&#8203;49654](https://github.com/nodejs/node/pull/49654)
    
  • [`3b867e4256`](https://github.com/nodejs/node/commit/3b867e4256)] - **esm**: do not give wrong hints when detecting file format (Antoine du Hamel) [#&#8203;50314](https://github.com/nodejs/node/pull/50314)
    
  • [`a589a1a905`](https://github.com/nodejs/node/commit/a589a1a905)] - **(SEMVER-MINOR)** **esm**: detect ESM syntax in ambiguous JavaScript (Geoffrey Booth) [#&#8203;50096](https://github.com/nodejs/node/pull/50096)
    
  • [`c64490e9aa`](https://github.com/nodejs/node/commit/c64490e9aa)] - **esm**: improve check for ESM syntax (Geoffrey Booth) [#&#8203;50127](https://github.com/nodejs/node/pull/50127)
    
  • [`ee65e44c31`](https://github.com/nodejs/node/commit/ee65e44c31)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140)
    
  • [`4de838fdeb`](https://github.com/nodejs/node/commit/4de838fdeb)] - **esm**: bypass CommonJS loader under --default-type (Geoffrey Booth) [#&#8203;49986](https://github.com/nodejs/node/pull/49986)
    
  • [`27e02b633d`](https://github.com/nodejs/node/commit/27e02b633d)] - **esm**: unflag extensionless javascript and wasm in module scope (Geoffrey Booth) [#&#8203;49974](https://github.com/nodejs/node/pull/49974)
    
  • [`1e762ddf63`](https://github.com/nodejs/node/commit/1e762ddf63)] - **esm**: improve `getFormatOfExtensionlessFile` speed (Yagiz Nizipli) [#&#8203;49965](https://github.com/nodejs/node/pull/49965)
    
  • [`112cc7f9f2`](https://github.com/nodejs/node/commit/112cc7f9f2)] - **esm**: improve JSDoc annotation of internal functions (Antoine du Hamel) [#&#8203;49959](https://github.com/nodejs/node/pull/49959)
    
  • [`c48cd84188`](https://github.com/nodejs/node/commit/c48cd84188)] - **esm**: fix cache collision on JSON files using file: URL (Antoine du Hamel) [#&#8203;49887](https://github.com/nodejs/node/pull/49887)
    
  • [`dc80ccef25`](https://github.com/nodejs/node/commit/dc80ccef25)] - **esm**: --experimental-default-type flag to flip module defaults (Geoffrey Booth) [#&#8203;49869](https://github.com/nodejs/node/pull/49869)
    
  • [`01039795a2`](https://github.com/nodejs/node/commit/01039795a2)] - **esm**: require braces for modules code (Geoffrey Booth) [#&#8203;49657](https://github.com/nodejs/node/pull/49657)
    
  • [`e49ebf8f9a`](https://github.com/nodejs/node/commit/e49ebf8f9a)] - **fs**: improve error performance for `readSync` (Jungku Lee) [#&#8203;50033](https://github.com/nodejs/node/pull/50033)
    
  • [`eb33f70260`](https://github.com/nodejs/node/commit/eb33f70260)] - **fs**: improve error performance for `fsyncSync` (Jungku Lee) [#&#8203;49880](https://github.com/nodejs/node/pull/49880)
    
  • [`8d0edc6399`](https://github.com/nodejs/node/commit/8d0edc6399)] - **fs**: improve error performance for `mkdirSync` (CanadaHonk) [#&#8203;49847](https://github.com/nodejs/node/pull/49847)
    
  • [`36df27509e`](https://github.com/nodejs/node/commit/36df27509e)] - **fs**: improve error performance of `realpathSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`4242cb7d7f`](https://github.com/nodejs/node/commit/4242cb7d7f)] - **fs**: improve error performance of `lchownSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`89e7878e44`](https://github.com/nodejs/node/commit/89e7878e44)] - **fs**: improve error performance of `symlinkSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`af6a0611fe`](https://github.com/nodejs/node/commit/af6a0611fe)] - **fs**: improve error performance of `readlinkSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`12cda31c52`](https://github.com/nodejs/node/commit/12cda31c52)] - **fs**: improve error performance of `mkdtempSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`9dba771acb`](https://github.com/nodejs/node/commit/9dba771acb)] - **fs**: improve error performance of `linkSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`ea7902de13`](https://github.com/nodejs/node/commit/ea7902de13)] - **fs**: improve error performance of `chownSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`39f31a38cf`](https://github.com/nodejs/node/commit/39f31a38cf)] - **fs**: improve error performance of `renameSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962)
    
  • [`35164fa466`](https://github.com/nodejs/node/commit/35164fa466)] - **(SEMVER-MINOR)** **fs**: add flush option to appendFile() functions (Colin Ihrig) [#&#8203;50095](https://github.com/nodejs/node/pull/50095)
    
  • [`06aa4b9fe9`](https://github.com/nodejs/node/commit/06aa4b9fe9)] - **fs**: improve error performance of `readdirSync` (Yagiz Nizipli) [#&#8203;50131](https://github.com/nodejs/node/pull/50131)
    
  • [`b5aecebcd6`](https://github.com/nodejs/node/commit/b5aecebcd6)] - **fs**: fix `unlinkSync` typings (Yagiz Nizipli) [#&#8203;49859](https://github.com/nodejs/node/pull/49859)
    
  • [`6ddea07225`](https://github.com/nodejs/node/commit/6ddea07225)] - **fs**: improve error perf of sync `chmod`+`fchmod` (CanadaHonk) [#&#8203;49859](https://github.com/nodejs/node/pull/49859)
    
  • [`841367078e`](https://github.com/nodejs/node/commit/841367078e)] - **fs**: improve error perf of sync `*times` (CanadaHonk) [#&#8203;49864](https://github.com/nodejs/node/pull/49864)
    
  • [`eb52f73e3e`](https://github.com/nodejs/node/commit/eb52f73e3e)] - **fs**: improve error performance of writevSync (IlyasShabi) [#&#8203;50038](https://github.com/nodejs/node/pull/50038)
    
  • [`d1aa62f1f5`](https://github.com/nodejs/node/commit/d1aa62f1f5)] - **fs**: add flush option to createWriteStream() (Colin Ihrig) [#&#8203;50093](https://github.com/nodejs/node/pull/50093)
    
  • [`57eb06edff`](https://github.com/nodejs/node/commit/57eb06edff)] - **fs**: improve error performance for `ftruncateSync` (André Alves) [#&#8203;50032](https://github.com/nodejs/node/pull/50032)
    
  • [`22e3eb659a`](https://github.com/nodejs/node/commit/22e3eb659a)] - **fs**: add flush option to writeFile() functions (Colin Ihrig) [#&#8203;50009](https://github.com/nodejs/node/pull/50009)
    
  • [`d7132d9214`](https://github.com/nodejs/node/commit/d7132d9214)] - **fs**: improve error performance for `fdatasyncSync` (Jungku Lee) [#&#8203;49898](https://github.com/nodejs/node/pull/49898)
    
  • [`bc2c0410d3`](https://github.com/nodejs/node/commit/bc2c0410d3)] - **fs**: throw errors from sync branches instead of separate implementations (Joyee Cheung) [#&#8203;49913](https://github.com/nodejs/node/pull/49913)
    
  • [`f46bcf1749`](https://github.com/nodejs/node/commit/f46bcf1749)] - **http**: refactor to make servername option normalization testable (Rongjian Zhang) [#&#8203;38733](https://github.com/nodejs/node/pull/38733)
    
  • [`1bfcf817af`](https://github.com/nodejs/node/commit/1bfcf817af)] - **http2**: allow streams to complete gracefully after goaway (Michael Lumish) [#&#8203;50202](https://github.com/nodejs/node/pull/50202)
    
  • [`5c66ec9e66`](https://github.com/nodejs/node/commit/5c66ec9e66)] - **inspector**: simplify dispatchProtocolMessage (Daniel Lemire) [#&#8203;49780](https://github.com/nodejs/node/pull/49780)
    
  • [`251ae1dd72`](https://github.com/nodejs/node/commit/251ae1dd72)] - **lib**: improve performance of validateStringArray and validateBooleanArray (Aras Abbasi) [#&#8203;49756](https://github.com/nodejs/node/pull/49756)
    
  • [`d9c791a508`](https://github.com/nodejs/node/commit/d9c791a508)] - **lib**: fix compileFunction throws range error for negative numbers (Jithil P Ponnan) [#&#8203;49855](https://github.com/nodejs/node/pull/49855)
    
  • [`24cbc550c2`](https://github.com/nodejs/node/commit/24cbc550c2)] - **lib**: reduce overhead of validateObject (Vinicius Lourenço) [#&#8203;49928](https://github.com/nodejs/node/pull/49928)
    
  • [`b80e9497f3`](https://github.com/nodejs/node/commit/b80e9497f3)] - **lib**: make fetch sync and return a Promise (Matthew Aitken) [#&#8203;49936](https://github.com/nodejs/node/pull/49936)
    
  • [`d9eda6761b`](https://github.com/nodejs/node/commit/d9eda6761b)] - **lib**: fix `primordials` typings (Sam Verschueren) [#&#8203;49895](https://github.com/nodejs/node/pull/49895)
    
  • [`3e0d47c1f4`](https://github.com/nodejs/node/commit/3e0d47c1f4)] - **lib**: update params in jsdoc for `HTTPRequestOptions` (Jungku Lee) [#&#8203;49872](https://github.com/nodejs/node/pull/49872)
    
  • [`a01050dec4`](https://github.com/nodejs/node/commit/a01050dec4)] - **(SEMVER-MINOR)** **lib**: add WebSocket client (Matthew Aitken) [#&#8203;49830](https://github.com/nodejs/node/pull/49830)
    
  • [`5bca8feed2`](https://github.com/nodejs/node/commit/5bca8feed2)] - **lib,test**: do not hardcode Buffer.kMaxLength (Michaël Zasso) [#&#8203;49876](https://github.com/nodejs/node/pull/49876)
    
  • [`e8ebed7a24`](https://github.com/nodejs/node/commit/e8ebed7a24)] - **meta**: move Trott to TSC regular member (Rich Trott) [#&#8203;50297](https://github.com/nodejs/node/pull/50297)
    
  • [`27e957cea8`](https://github.com/nodejs/node/commit/27e957cea8)] - **meta**: ping TSC for offboarding (Tobias Nießen) [#&#8203;50147](https://github.com/nodejs/node/pull/50147)
    
  • [`fab39062d5`](https://github.com/nodejs/node/commit/fab39062d5)] - **meta**: bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot\[bot]) [#&#8203;50000](https://github.com/nodejs/node/pull/50000)
    
  • [`46ec82496c`](https://github.com/nodejs/node/commit/46ec82496c)] - **meta**: bump actions/cache from 3.3.1 to 3.3.2 (dependabot\[bot]) [#&#8203;50003](https://github.com/nodejs/node/pull/50003)
    
  • [`a634fb431e`](https://github.com/nodejs/node/commit/a634fb431e)] - **meta**: bump github/codeql-action from 2.21.5 to 2.21.9 (dependabot\[bot]) [#&#8203;50002](https://github.com/nodejs/node/pull/50002)
    
  • [`c221f72911`](https://github.com/nodejs/node/commit/c221f72911)] - **meta**: bump actions/checkout from 3.6.0 to 4.1.0 (dependabot\[bot]) [#&#8203;50001](https://github.com/nodejs/node/pull/50001)
    
  • [`d356e5e395`](https://github.com/nodejs/node/commit/d356e5e395)] - **meta**: update website team with new name (Rich Trott) [#&#8203;49883](https://github.com/nodejs/node/pull/49883)
    
  • [`2ff4e71452`](https://github.com/nodejs/node/commit/2ff4e71452)] - **module**: move helpers out of cjs loader (Geoffrey Booth) [#&#8203;49912](https://github.com/nodejs/node/pull/49912)
    
  • [`142ac3f82d`](https://github.com/nodejs/node/commit/142ac3f82d)] - **module, esm**: jsdoc for modules files (Geoffrey Booth) [#&#8203;49523](https://github.com/nodejs/node/pull/49523)
    
  • [`e2f0ef2a60`](https://github.com/nodejs/node/commit/e2f0ef2a60)] - **node-api**: update headers for better wasm support (Toyo Li) [#&#8203;49037](https://github.com/nodejs/node/pull/49037)
    
  • [`db2a07fcd6`](https://github.com/nodejs/node/commit/db2a07fcd6)] - **node-api**: run finalizers directly from GC (Vladimir Morozov) [#&#8203;42651](https://github.com/nodejs/node/pull/42651)
    
  • [`c25716be8b`](https://github.com/nodejs/node/commit/c25716be8b)] - **os**: cache homedir, remove getCheckedFunction (Aras Abbasi) [#&#8203;50037](https://github.com/nodejs/node/pull/50037)
    
  • [`e8f024b4db`](https://github.com/nodejs/node/commit/e8f024b4db)] - **perf_hooks**: reduce overhead of new user timings (Vinicius Lourenço) [#&#8203;49914](https://github.com/nodejs/node/pull/49914)
    
  • [`a517be0a5a`](https://github.com/nodejs/node/commit/a517be0a5a)] - **perf_hooks**: reducing overhead of performance observer entry list (Vinicius Lourenço) [#&#8203;50008](https://github.com/nodejs/node/pull/50008)
    
  • [`42e49ec381`](https://github.com/nodejs/node/commit/42e49ec381)] - **perf_hooks**: reduce overhead of new resource timings (Vinicius Lourenço) [#&#8203;49837](https://github.com/nodejs/node/pull/49837)
    
  • [`c99e51ed1b`](https://github.com/nodejs/node/commit/c99e51ed1b)] - **src**: generate default snapshot with --predictable (Joyee Cheung) [#&#8203;48749](https://github.com/nodejs/node/pull/48749)
    
  • [`47164e238f`](https://github.com/nodejs/node/commit/47164e238f)] - **src**: fix TLSWrap lifetime bug in ALPN callback (Ben Noordhuis) [#&#8203;49635](https://github.com/nodejs/node/pull/49635)
    
  • [`e1df69e73e`](https://github.com/nodejs/node/commit/e1df69e73e)] - **src**: set port in node_options to uint16\_t (Yagiz Nizipli) [#&#8203;49151](https://github.com/nodejs/node/pull/49151)
    
  • [`1eb2af29b4`](https://github.com/nodejs/node/commit/1eb2af29b4)] - **src**: name scoped lock (Mohammed Keyvanzadeh) [#&#8203;50010](https://github.com/nodejs/node/pull/50010)
    
  • [`5131fde655`](https://github.com/nodejs/node/commit/5131fde655)] - **src**: use exact return value for `uv_os_getenv` (Yagiz Nizipli) [#&#8203;49149](https://github.com/nodejs/node/pull/49149)
    
  • [`ba169be5ca`](https://github.com/nodejs/node/commit/ba169be5ca)] - **src**: move const variable in `node_file.h` to `node_file.cc` (Jungku Lee) [#&#8203;49688](https://github.com/nodejs/node/pull/49688)
    
  • [`5a2351d3ab`](https://github.com/nodejs/node/commit/5a2351d3ab)] - **src**: remove unused variable (Michaël Zasso) [#&#8203;49665](https://github.com/nodejs/node/pull/49665)
    
  • [`f2f993a32f`](https://github.com/nodejs/node/commit/f2f993a32f)] - **stream**: simplify prefinish (Robert Nagy) [#&#8203;50204](https://github.com/nodejs/node/pull/50204)
    
  • [`6d7274e3ca`](https://github.com/nodejs/node/commit/6d7274e3ca)] - **stream**: reduce scope of readable bitmap details (Robert Nagy) [#&#8203;49963](https://github.com/nodejs/node/pull/49963)
    
  • [`ffdc357167`](https://github.com/nodejs/node/commit/ffdc357167)] - **(SEMVER-MINOR)** **stream**: allow pass stream class to `stream.compose` (Alex Yang) [#&#8203;50187](https://github.com/nodejs/node/pull/50187)
    
  • [`4861ad6431`](https://github.com/nodejs/node/commit/4861ad6431)] - **stream**: call helper function from push and unshift (Raz Luvaton) [#&#8203;50173](https://github.com/nodejs/node/pull/50173)
    
  • [`e60b3ab31b`](https://github.com/nodejs/node/commit/e60b3ab31b)] - **stream**: use private symbol for bitmap state (Robert Nagy) [#&#8203;49993](https://github.com/nodejs/node/pull/49993)
    
  • [`ecbfb23f6b`](https://github.com/nodejs/node/commit/ecbfb23f6b)] - **stream**: lazy allocate back pressure buffer (Robert Nagy) [#&#8203;50013](https://github.com/nodejs/node/pull/50013)
    
  • [`88c739bef4`](https://github.com/nodejs/node/commit/88c739bef4)] - **stream**: avoid unnecessary drain for sync stream (Robert Nagy) [#&#8203;50014](https://github.com/nodejs/node/pull/50014)
    
  • [`4b27087b30`](https://github.com/nodejs/node/commit/4b27087b30)] - **stream**: optimize Writable (Robert Nagy) [#&#8203;50012](https://github.com/nodejs/node/pull/50012)
    
  • [`def55f80a1`](https://github.com/nodejs/node/commit/def55f80a1)] - **stream**: avoid tick in writable hot path (Robert Nagy) [#&#8203;49966](https://github.com/nodejs/node/pull/49966)
    
  • [`35ec93115d`](https://github.com/nodejs/node/commit/35ec93115d)] - **stream**: writable state bitmap (Robert Nagy) [#&#8203;49899](https://github.com/nodejs/node/pull/49899)
    
  • [`6e0f0fafe4`](https://github.com/nodejs/node/commit/6e0f0fafe4)] - **test**: use ppc and ppc64 to skip SEA tests on PowerPC (Joyee Cheung) [#&#8203;50828](https://github.com/nodejs/node/pull/50828)
    
  • [`a528bbceca`](https://github.com/nodejs/node/commit/a528bbceca)] - **test**: mark SEA tests as flaky on PowerPC (Joyee Cheung) [#&#8203;50750](https://github.com/nodejs/node/pull/50750)
    
  • [`4e34f9a26e`](https://github.com/nodejs/node/commit/4e34f9a26e)] - **test**: relax version check with shared OpenSSL (Luigi Pinca) [#&#8203;50505](https://github.com/nodejs/node/pull/50505)
    
  • [`41ca1132eb`](https://github.com/nodejs/node/commit/41ca1132eb)] - **test**: fix crypto-dh error message for OpenSSL 3.x (Kerem Kat) [#&#8203;50395](https://github.com/nodejs/node/pull/50395)
    
  • [`a6a05e8a88`](https://github.com/nodejs/node/commit/a6a05e8a88)] - **test**: fix testsuite against zlib version 1.3 (Dominique Leuenberger) [#&#8203;50364](https://github.com/nodejs/node/pull/50364)
    
  • [`8dd895e574`](https://github.com/nodejs/node/commit/8dd895e574)] - **test**: replace forEach with for..of in test-process-env (Niya Shiyas) [#&#8203;49825](https://github.com/nodejs/node/pull/49825)
    
  • [`81886c66d1`](https://github.com/nodejs/node/commit/81886c66d1)] - **test**: replace forEach with for..of in test-http-url (Niya Shiyas) [#&#8203;49840](https://github.com/nodejs/node/pull/49840)
    
  • [`7d8a18b257`](https://github.com/nodejs/node/commit/7d8a18b257)] - **test**: improve watch mode test (Moshe Atlow) [#&#8203;50319](https://github.com/nodejs/node/pull/50319)
    
  • [`baa04b79ca`](https://github.com/nodejs/node/commit/baa04b79ca)] - **test**: set `test-watch-mode-inspect` as flaky (Yagiz Nizipli) [#&#8203;50259](https://github.com/nodejs/node/pull/50259)
    
  • [`3d9130bc2e`](https://github.com/nodejs/node/commit/3d9130bc2e)] - ***Revert*** "**test**: set `test-esm-loader-resolve-type` as flaky" (Antoine du Hamel) [#&#8203;50315](https://github.com/nodejs/node/pull/50315)
    
  • [`72626f9a35`](https://github.com/nodejs/node/commit/72626f9a35)] - **test**: replace forEach with for..of in test-http-perf_hooks.js (Niya Shiyas) [#&#8203;49818](https://github.com/nodejs/node/pull/49818)
    
  • [`379a7255e8`](https://github.com/nodejs/node/commit/379a7255e8)] - **test**: replace forEach with for..of in test-net-isipv4.js (Niya Shiyas) [#&#8203;49822](https://github.com/nodejs/node/pull/49822)
    
  • [`b55fcd75da`](https://github.com/nodejs/node/commit/b55fcd75da)] - **test**: deflake `test-esm-loader-resolve-type` (Antoine du Hamel) [#&#8203;50273](https://github.com/nodejs/node/pull/50273)
    
  • [`0134af3eeb`](https://github.com/nodejs/node/commit/0134af3eeb)] - **test**: replace forEach with for..of in test-http2-server (Niya Shiyas) [#&#8203;49819](https://github.com/nodejs/node/pull/49819)
    
  • [`8c15281d06`](https://github.com/nodejs/node/commit/8c15281d06)] - **test**: replace forEach with for..of in test-http2-client-destroy.js (Niya Shiyas) [#&#8203;49820](https://github.com/nodejs/node/pull/49820)
    
  • [`c37a75a898`](https://github.com/nodejs/node/commit/c37a75a898)] - **test**: update `url` web platform tests (Yagiz Nizipli) [#&#8203;50264](https://github.com/nodejs/node/pull/50264)
    
  • [`ab5985d0e9`](https://github.com/nodejs/node/commit/ab5985d0e9)] - **test**: set `test-emit-after-on-destroyed` as flaky (Yagiz Nizipli) [#&#8203;50246](https://github.com/nodejs/node/pull/50246)
    
  • [`50181a19b8`](https://github.com/nodejs/node/commit/50181a19b8)] - **test**: set inspector async stack test as flaky (Yagiz Nizipli) [#&#8203;50244](https://github.com/nodejs/node/pull/50244)
    
  • [`b9e0fed995`](https://github.com/nodejs/node/commit/b9e0fed995)] - **test**: set test-worker-nearheaplimit-deadlock flaky (StefanStojanovic) [#&#8203;50277](https://github.com/nodejs/node/pull/50277)
    
  • [`2cfc4007d1`](https://github.com/nodejs/node/commit/2cfc4007d1)] - **test**: set `test-cli-node-options` as flaky (Yagiz Nizipli) [#&#8203;50296](https://github.com/nodejs/node/pull/50296)
    
  • [`788714b28f`](https://github.com/nodejs/node/commit/788714b28f)] - **test**: reduce the number of requests and parsers (Luigi Pinca) [#&#8203;50240](https://github.com/nodejs/node/pull/50240)
    
  • [`0dce19c8f6`](https://github.com/nodejs/node/commit/0dce19c8f6)] - **test**: set crypto-timing test as flaky (Yagiz Nizipli) [#&#8203;50232](https://github.com/nodejs/node/pull/50232)
    
  • [`5d4b5ff1b8`](https://github.com/nodejs/node/commit/5d4b5ff1b8)] - **test**: set `test-structuredclone-*` as flaky (Yagiz Nizipli) [#&#8203;50261](https://github.com/nodejs/node/pull/50261)
    
  • [`5c56081d67`](https://github.com/nodejs/node/commit/5c56081d67)] - **test**: deflake `test-loaders-workers-spawned` (Antoine du Hamel) [#&#8203;50251](https://github.com/nodejs/node/pull/50251)
    
  • [`3441e1982d`](https://github.com/nodejs/node/commit/3441e1982d)] - **test**: improve code coverage of diagnostics_channel (Jithil P Ponnan) [#&#8203;50053](https://github.com/nodejs/node/pull/50053)
    
  • [`696ba93329`](https://github.com/nodejs/node/commit/696ba93329)] - **test**: set `test-esm-loader-resolve-type` as flaky (Yagiz Nizipli) [#&#8203;50226](https://github.com/nodejs/node/pull/50226)
    
  • [`8b260c5d6b`](https://github.com/nodejs/node/commit/8b260c5d6b)] - **test**: set inspector async hook test as flaky (Yagiz Nizipli) [#&#8203;50252](https://github.com/nodejs/node/pull/50252)
    
  • [`f3296d25e8`](https://github.com/nodejs/node/commit/f3296d25e8)] - **test**: skip test-benchmark-os.js on IBM i (Abdirahim Musse) [#&#8203;50208](https://github.com/nodejs/node/pull/50208)
    
  • [`fefe17b02e`](https://github.com/nodejs/node/commit/fefe17b02e)] - **test**: set parallel http server test as flaky (Yagiz Nizipli) [#&#8203;50227](https://github.com/nodejs/node/pull/50227)
    
  • [`228c87f329`](https://github.com/nodejs/node/commit/228c87f329)] - **test**: set test-worker-nearheaplimit-deadlock flaky (Stefan Stojanovic) [#&#8203;50238](https://github.com/nodejs/node/pull/50238)
    
  • [`c2c2506eab`](https://github.com/nodejs/node/commit/c2c2506eab)] - **test**: set `test-runner-watch-mode` as flaky (Yagiz Nizipli) [#&#8203;50221](https://github.com/nodejs/node/pull/50221)
    
  • [`16a07983d4`](https://github.com/nodejs/node/commit/16a07983d4)] - **test**: set sea snapshot tests as flaky (Yagiz Nizipli) [#&#8203;50223](https://github.com/nodejs/node/pull/50223)
    
  • [`7cd406a0b8`](https://github.com/nodejs/node/commit/7cd406a0b8)] - **test**: fix defect path traversal tests (Tobias Nießen) [#&#8203;50124](https://github.com/nodejs/node/pull/50124)
    
  • [`1cf3f8da32`](https://github.com/nodejs/node/commit/1cf3f8da32)] - **test**: replace forEach with for..of in test-net-isipv6.js (Niya Shiyas) [#&#8203;49823](https://github.com/nodejs/node/pull/49823)
    
  • [`214997a99e`](https://github.com/nodejs/node/commit/214997a99e)] - **test**: reduce number of repetition in test-heapdump-shadowrealm.js (Chengzhong Wu) [#&#8203;50104](https://github.com/nodejs/node/pull/50104)
    
  • [`9d836516e6`](https://github.com/nodejs/node/commit/9d836516e6)] - **test**: replace forEach with for..of in test-parse-args.mjs (Niya Shiyas) [#&#8203;49824](https://github.com/nodejs/node/pull/49824)
    
  • [`fee8b24603`](https://github.com/nodejs/node/commit/fee8b24603)] - **test**: replace forEach() in test-net-perf_hooks with for of (Narcisa Codreanu) [#&#8203;49831](https://github.com/nodejs/node/pull/49831)
    
  • [`4c58b92ba8`](https://github.com/nodejs/node/commit/4c58b92ba8)] - **test**: change forEach to for...of (Tiffany Lastimosa) [#&#8203;49799](https://github.com/nodejs/node/pull/49799)
    
  • [`01b01527d7`](https://github.com/nodejs/node/commit/01b01527d7)] - **test**: update skip for moved `test-wasm-web-api` (Richard Lau) [#&#8203;49958](https://github.com/nodejs/node/pull/49958)
    
  • [`179e293103`](https://github.com/nodejs/node/commit/179e293103)] - ***Revert*** "**test**: mark test-runner-output as flaky" (Luigi Pinca) [#&#8203;49905](https://github.com/nodejs/node/pull/49905)
    
  • [`829eb99afd`](https://github.com/nodejs/node/commit/829eb99afd)] - **test**: disambiguate AIX and IBM i (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056)
    
  • [`126407d438`](https://github.com/nodejs/node/commit/126407d438)] - **test**: deflake test-perf-hooks.js (Joyee Cheung) [#&#8203;49892](https://github.com/nodejs/node/pull/49892)
    
  • [`393fd5b7c9`](https://github.com/nodejs/node/commit/393fd5b7c9)] - **test**: migrate message error tests from Python to JS (Yiyun Lei) [#&#8203;49721](https://github.com/nodejs/node/pull/49721)
    
  • [`5dfe4236f8`](https://github.com/nodejs/node/commit/5dfe4236f8)] - **test**: fix edge snapshot stack traces (Geoffrey Booth) [#&#8203;49659](https://github.com/nodejs/node/pull/49659)
    
  • [`d164e537bf`](https://github.com/nodejs/node/commit/d164e537bf)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;50039](https://github.com/nodejs/node/pull/50039)
    
  • [`55a03fedae`](https://github.com/nodejs/node/commit/55a03fedae)] - **test_runner**: add test location for FileTests (Colin Ihrig) [#&#8203;49999](https://github.com/nodejs/node/pull/49999)
    
  • [`10b35cfb6e`](https://github.com/nodejs/node/commit/10b35cfb6e)] - **test_runner**: replace spurious if with else (Colin Ihrig) [#&#8203;49943](https://github.com/nodejs/node/pull/49943)
    
  • [`27558c4314`](https://github.com/nodejs/node/commit/27558c4314)] - **test_runner**: catch reporter errors (Moshe Atlow) [#&#8203;49646](https://github.com/nodejs/node/pull/49646)
    
  • [`709c6c0cab`](https://github.com/nodejs/node/commit/709c6c0cab)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996)
    
  • [`64ef108dd9`](https://github.com/nodejs/node/commit/64ef108dd9)] - **test_runner,test**: fix flaky test-runner-cli-concurrency.js (Colin Ihrig) [#&#8203;50108](https://github.com/nodejs/node/pull/50108)
    
  • [`d2def152d9`](https://github.com/nodejs/node/commit/d2def152d9)] - **tls**: reduce TLS 'close' event listener warnings (Tim Perry) [#&#8203;50136](https://github.com/nodejs/node/pull/50136)
    
  • [`294b650f5c`](https://github.com/nodejs/node/commit/294b650f5c)] - **tls**: handle cases where the raw socket is destroyed (Luigi Pinca) [#&#8203;49980](https://github.com/nodejs/node/pull/49980)
    
  • [`52b5693949`](https://github.com/nodejs/node/commit/52b5693949)] - **tls**: ciphers allow bang syntax (Chemi Atlow) [#&#8203;49712](https://github.com/nodejs/node/pull/49712)
    
  • [`05ee35028b`](https://github.com/nodejs/node/commit/05ee35028b)] - **tools**: update comment in `update-uncidi.sh` and `acorn_version.h` (Jungku Lee) [#&#8203;50175](https://github.com/nodejs/node/pull/50175)
    
  • [`35b160e6a3`](https://github.com/nodejs/node/commit/35b160e6a3)] - **tools**: refactor checkimports.py (Mohammed Keyvanzadeh) [#&#8203;50011](https://github.com/nodejs/node/pull/50011)
    
  • [`b959d36b77`](https://github.com/nodejs/node/commit/b959d36b77)] - **tools**: fix comments referencing dep_updaters scripts (Keksonoid) [#&#8203;50165](https://github.com/nodejs/node/pull/50165)
    
  • [`bd5d5331b0`](https://github.com/nodejs/node/commit/bd5d5331b0)] - **tools**: remove no-return-await lint rule (翠 / green) [#&#8203;50118](https://github.com/nodejs/node/pull/50118)
    
  • [`b9adf3d66e`](https://github.com/nodejs/node/commit/b9adf3d66e)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;50083](https://github.com/nodejs/node/pull/50083)
    
  • [`4978bdc4ec`](https://github.com/nodejs/node/commit/4978bdc4ec)] - **tools**: update eslint to 8.51.0 (Node.js GitHub Bot) [#&#8203;50084](https://github.com/nodejs/node/pull/50084)
    
  • [`e323a367fd`](https://github.com/nodejs/node/commit/e323a367fd)] - **tools**: remove genv8constants.py (Ben Noordhuis) [#&#8203;50023](https://github.com/nodejs/node/pull/50023)
    
  • [`1cc6cbff26`](https://github.com/nodejs/node/commit/1cc6cbff26)] - **tools**: update eslint to 8.50.0 (Node.js GitHub Bot) [#&#8203;49989](https://github.com/nodejs/node/pull/49989)
    
  • [`924231be2a`](https://github.com/nodejs/node/commit/924231be2a)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49983](https://github.com/nodejs/node/pull/49983)
    
  • [`732b5661ea`](https://github.com/nodejs/node/commit/732b5661ea)] - **tools**: add navigation ARIA landmark to generated API ToC (Rich Trott) [#&#8203;49882](https://github.com/nodejs/node/pull/49882)
    
  • [`353a14278e`](https://github.com/nodejs/node/commit/353a14278e)] - **tools**: update github_reporter to 1.5.3 (Node.js GitHub Bot) [#&#8203;49877](https://github.com/nodejs/node/pull/49877)
    
  • [`0aaab45d7c`](https://github.com/nodejs/node/commit/0aaab45d7c)] - **tools**: improve macOS notarization process output readability (Ulises Gascón) [#&#8203;50389](https://github.com/nodejs/node/pull/50389)
    
  • [`ad326033e2`](https://github.com/nodejs/node/commit/ad326033e2)] - **tools**: remove unused `version` function (Ulises Gascón) [#&#8203;50390](https://github.com/nodejs/node/pull/50390)
    
  • [`2f32472544`](https://github.com/nodejs/node/commit/2f32472544)] - **tools**: drop support for osx notarization with gon (Ulises Gascón) [#&#8203;50291](https://github.com/nodejs/node/pull/50291)
    
  • [`3b1c15aeb0`](https://github.com/nodejs/node/commit/3b1c15aeb0)] - **tools**: use osx notarytool for future releases (Ulises Gascon) [#&#8203;48701](https://github.com/nodejs/node/pull/48701)
    
  • [`0ddb87ede3`](https://github.com/nodejs/node/commit/0ddb87ede3)] - **typings**: use `Symbol.dispose` and `Symbol.asyncDispose` in types (Niklas Mollenhauer) [#&#8203;50123](https://github.com/nodejs/node/pull/50123)
    
  • [`bf5b2115a0`](https://github.com/nodejs/node/commit/bf5b2115a0)] - **util**: remove internal mime fns from benchmarks (Aras Abbasi) [#&#8203;50201](https://github.com/nodejs/node/pull/50201)
    
  • [`ac02cdb0ad`](https://github.com/nodejs/node/commit/ac02cdb0ad)] - **util**: lazy parse mime parameters (Aras Abbasi) [#&#8203;49889](https://github.com/nodejs/node/pull/49889)
    
  • [`9853fd96df`](https://github.com/nodejs/node/commit/9853fd96df)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137)
    
  • [`3697c19c80`](https://github.com/nodejs/node/commit/3697c19c80)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137)
    
  • [`56bbc30a44`](https://github.com/nodejs/node/commit/56bbc30a44)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137)
    
  • [`57efd5292c`](https://github.com/nodejs/node/commit/57efd5292c)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141)
    
  • [`17581c2716`](https://github.com/nodejs/node/commit/17581c2716)] - **vm**: use default HDO when importModuleDynamically is not set (Joyee Cheung) [#&#8203;49950](https://github.com/nodejs/node/pull/49950)
    
  • [`65e18aa8e7`](https://github.com/nodejs/node/commit/65e18aa8e7)] - **wasi**: address coverity warning (Michael Dawson) [#&#8203;49866](https://github.com/nodejs/node/pull/49866)
    
  • [`5b695d6a8d`](https://github.com/nodejs/node/commit/5b695d6a8d)] - **wasi**: fix up wasi tests for ibmi (Michael Dawson) [#&#8203;49953](https://github.com/nodejs/node/pull/49953)
    
  • [`b86e1f5cbd`](https://github.com/nodejs/node/commit/b86e1f5cbd)] - **(SEMVER-MINOR)** **wasi**: updates required for latest uvwasi version (Michael Dawson) [#&#8203;49908](https://github.com/nodejs/node/pull/49908)
    
  • [`b4d149b4d6`](https://github.com/nodejs/node/commit/b4d149b4d6)] - **worker**: handle detached `MessagePort` from a different context (Juan José) [#&#8203;49150](https://github.com/nodejs/node/pull/49150)
    
  • [`f564ed4e05`](https://github.com/nodejs/node/commit/f564ed4e05)] - **zlib**: fix discovery of cpu-features.h for android (MatteoBax) [#&#8203;49828](https://github.com/nodejs/node/pull/49828)
    
    

v20.9.0: 2023-10-24, Version 20.9.0 'Iron' (LTS), @​richardlau

Compare Source

Notable Changes

This release marks the transition of Node.js 20.x into Long Term Support (LTS)
with the codename 'Iron'. The 20.x release line now moves into "Active LTS"
and will remain so until October 2024. After that time, it will move into
"Maintenance" until end of life in April 2026.

Known issue

Collecting code coverage via the NODE_V8_COVERAGE environment variable may
lead to a hang. This is not thought to be a regression in Node.js 20 (some
reports are on Node.js 18). For more information, including some potential
workarounds, see issue #​49344.

v20.8.1: 2023-10-13, Version 20.8.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in October 2023 Security Releases blog post.

Commits
  • [`c86883e844`](https://github.com/nodejs/node/commit/c86883e844)] - **deps**: update nghttp2 to 1.57.0 (James M Snell) [#&#8203;50121](https://github.com/nodejs/node/pull/50121)
    
  • [`2860631359`](https://github.com/nodejs/node/commit/2860631359)] - **deps**: update undici to v5.26.3 (Matteo Collina) [#&#8203;50153](https://github.com/nodejs/node/pull/50153)
    
  • [`cd37838bf8`](https://github.com/nodejs/node/commit/cd37838bf8)] - **lib**: let deps require `node` prefixed modules (Matthew Aitken) [#&#8203;50047](https://github.com/nodejs/node/pull/50047)
    
  • [`f5c90b2951`](https://github.com/nodejs/node/commit/f5c90b2951)] - **module**: fix code injection through export names (Tobias Nießen) [nodejs-private/node-private#461](https://github.com/nodejs-private/node-private/pull/461)
    
  • [`fa5dae1944`](https://github.com/nodejs/node/commit/fa5dae1944)] - **permission**: fix Uint8Array path traversal (Tobias Nießen) [nodejs-private/node-private#456](https://github.com/nodejs-private/node-private/pull/456)
    
  • [`cd35275111`](https://github.com/nodejs/node/commit/cd35275111)] - **permission**: improve path traversal protection (Tobias Nießen) [nodejs-private/node-private#456](https://github.com/nodejs-private/node-private/pull/456)
    
  • [`a4cb7fc7c0`](https://github.com/nodejs/node/commit/a4cb7fc7c0)] - **policy**: use tamper-proof integrity check function (Tobias Nießen) [nodejs-private/node-private#462](https://github.com/nodejs-private/node-private/pull/462)
    
    

v20.8.0: 2023-09-28, Version 20.8.0 (Current), @​ruyadorno

Compare Source

Notable Changes
Stream performance improvements

Performance improvements to writable and readable streams, improving the creation and destruction by ±15% and reducing the memory overhead each stream takes in Node.js

Contributed by Benjamin Gruenbaum in #​49745 and Raz Luvaton in #​49834.

Performance improvements for readable webstream, improving readable stream async iterator consumption by ±140% and improving readable stream pipeTo consumption by ±60%

Contributed by Raz Luvaton in #​49662 and #​49690.

Rework of memory management in vm APIs with the importModuleDynamically option

This rework addressed a series of long-standing memory leaks and use-after-free issues in the following APIs that support importModuleDynamically:

  • vm.Script
  • vm.compileFunction
  • vm.SyntheticModule
  • vm.SourceTextModule

This should enable affected users (in particular Jest users) to upgrade from older versions of Node.js.

Contributed by Joyee Cheung in #​48510.

Other notable changes
  • [`32d4d29d02`](https://github.com/nodejs/node/commit/32d4d29d02)] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#&#8203;49874](https://github.com/nodejs/node/pull/49874)
    
  • [`0e686d096b`](https://github.com/nodejs/node/commit/0e686d096b)] - **doc**: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#&#8203;49683](https://github.com/nodejs/node/pull/49683)
    
  • [`a5dd057540`](https://github.com/nodejs/node/commit/a5dd057540)] - **doc**: deprecate `util.toUSVString` (Yagiz Nizipli) [#&#8203;49725](https://github.com/nodejs/node/pull/49725)
    
  • [`7b6a73172f`](https://github.com/nodejs/node/commit/7b6a73172f)] - **doc**: deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) [#&#8203;49647](https://github.com/nodejs/node/pull/49647)
    
  • [`1beefd5f16`](https://github.com/nodejs/node/commit/1beefd5f16)] - **esm**: set all hooks as release candidate (Geoffrey Booth) [#&#8203;49597](https://github.com/nodejs/node/pull/49597)
    
  • [`b0ce78a75b`](https://github.com/nodejs/node/commit/b0ce78a75b)] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`4e578f8ab1`](https://github.com/nodejs/node/commit/4e578f8ab1)] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`69e4218772`](https://github.com/nodejs/node/commit/69e4218772)] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`14ece0aa76`](https://github.com/nodejs/node/commit/14ece0aa76)] - **(SEMVER-MINOR)** **src**: allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) [#&#8203;49279](https://github.com/nodejs/node/pull/49279)
    
  • [`9fd67fbff0`](https://github.com/nodejs/node/commit/9fd67fbff0)] - **stream**: use bitmap in writable state (Raz Luvaton) [#&#8203;49834](https://github.com/nodejs/node/pull/49834)
    
  • [`0ccd4638ac`](https://github.com/nodejs/node/commit/0ccd4638ac)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745)
    
  • [`7c5e322346`](https://github.com/nodejs/node/commit/7c5e322346)] - **stream**: improve webstream readable async iterator performance (Raz Luvaton) [#&#8203;49662](https://github.com/nodejs/node/pull/49662)
    
  • [`80b342cc38`](https://github.com/nodejs/node/commit/80b342cc38)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753)
    
  • [`17a05b141d`](https://github.com/nodejs/node/commit/17a05b141d)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614)
    
    
Commits
  • [`4879e3fbbe`](https://github.com/nodejs/node/commit/4879e3fbbe)] - **benchmark**: add a benchmark for read() of ReadableStreams (Debadree Chatterjee) [#&#8203;49622](https://github.com/nodejs/node/pull/49622)
    
  • [`78a6c73157`](https://github.com/nodejs/node/commit/78a6c73157)] - **benchmark**: shorten pipe-to by reducing number of chunks (Raz Luvaton) [#&#8203;49577](https://github.com/nodejs/node/pull/49577)
    
  • [`4126a6e4c9`](https://github.com/nodejs/node/commit/4126a6e4c9)] - **benchmark**: fix webstream pipe-to (Raz Luvaton) [#&#8203;49552](https://github.com/nodejs/node/pull/49552)
    
  • [`6010a91825`](https://github.com/nodejs/node/commit/6010a91825)] - **bootstrap**: do not expand argv1 for snapshots (Joyee Cheung) [#&#8203;49506](https://github.com/nodejs/node/pull/49506)
    
  • [`8480280c4b`](https://github.com/nodejs/node/commit/8480280c4b)] - **bootstrap**: only use the isolate snapshot when compiling code cache (Joyee Cheung) [#&#8203;49288](https://github.com/nodejs/node/pull/49288)
    
  • [`b30754aa87`](https://github.com/nodejs/node/commit/b30754aa87)] - **build**: run embedtest using node executable (Joyee Cheung) [#&#8203;49506](https://github.com/nodejs/node/pull/49506)
    
  • [`31db0b8e2b`](https://github.com/nodejs/node/commit/31db0b8e2b)] - **build**: add --write-snapshot-as-array-literals to configure.py (Joyee Cheung) [#&#8203;49312](https://github.com/nodejs/node/pull/49312)
    
  • [`6fcb51d3ba`](https://github.com/nodejs/node/commit/6fcb51d3ba)] - **debugger**: use `internal/url.URL` instead of `url.parse` (LiviaMedeiros) [#&#8203;49590](https://github.com/nodejs/node/pull/49590)
    
  • [`32d4d29d02`](https://github.com/nodejs/node/commit/32d4d29d02)] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#&#8203;49874](https://github.com/nodejs/node/pull/49874)
    
  • [`ad37cadc3f`](https://github.com/nodejs/node/commit/ad37cadc3f)] - **deps**: V8: backport [`de9a5de`](https://github.com/nodejs/node/commit/de9a5de2274f) (Joyee Cheung) [#&#8203;49703](https://github.com/nodejs/node/pull/49703)
    
  • [`cdd1c66222`](https://github.com/nodejs/node/commit/cdd1c66222)] - **deps**: V8: cherry-pick [`b33bf2d`](https://github.com/nodejs/node/commit/b33bf2dfd261) (Joyee Cheung) [#&#8203;49703](https://github.com/nodejs/node/pull/49703)
    
  • [`61d18d6473`](https://github.com/nodejs/node/commit/61d18d6473)] - **deps**: update undici to 5.24.0 (Node.js GitHub Bot) [#&#8203;49559](https://github.com/nodejs/node/pull/49559)
    
  • [`b8a4fef393`](https://github.com/nodejs/node/commit/b8a4fef393)] - **deps**: remove pthread-fixes.c from uv.gyp (Ben Noordhuis) [#&#8203;49744](https://github.com/nodejs/node/pull/49744)
    
  • [`6c86c0683c`](https://github.com/nodejs/node/commit/6c86c0683c)] - **deps**: update googletest to [`d1467f5`](https://github.com/nodejs/node/commit/d1467f5) (Node.js GitHub Bot) [#&#8203;49676](https://github.com/nodejs/node/pull/49676)
    
  • [`1424404742`](https://github.com/nodejs/node/commit/1424404742)] - **deps**: update nghttp2 to 1.56.0 (Node.js GitHub Bot) [#&#8203;49582](https://github.com/nodejs/node/pull/49582)
    
  • [`15b54ff95d`](https://github.com/nodejs/node/commit/15b54ff95d)] - **deps**: update googletest to [`8a6feab`](https://github.com/nodejs/node/commit/8a6feab) (Node.js GitHub Bot) [#&#8203;49463](https://github.com/nodejs/node/pull/49463)
    
  • [`2ceab877c2`](https://github.com/nodejs/node/commit/2ceab877c2)] - **deps**: update corepack to 0.20.0 (Node.js GitHub Bot) [#&#8203;49464](https://github.com/nodejs/node/pull/49464)
    
  • [`4814872ddc`](https://github.com/nodejs/node/commit/4814872ddc)] - **doc**: fix `DEP0176` number (LiviaMedeiros) [#&#8203;49858](https://github.com/nodejs/node/pull/49858)
    
  • [`0e686d096b`](https://github.com/nodejs/node/commit/0e686d096b)] - **doc**: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#&#8203;49683](https://github.com/nodejs/node/pull/49683)
    
  • [`5877c403a2`](https://github.com/nodejs/node/commit/5877c403a2)] - **doc**: add mertcanaltin as a triager (mert.altin) [#&#8203;49826](https://github.com/nodejs/node/pull/49826)
    
  • [`864fe56432`](https://github.com/nodejs/node/commit/864fe56432)] - **doc**: add `git node backport` way to the backporting guide (Raz Luvaton) [#&#8203;49760](https://github.com/nodejs/node/pull/49760)
    
  • [`e0f93492d5`](https://github.com/nodejs/node/commit/e0f93492d5)] - **doc**: improve documentation about ICU data fallback (Joyee Cheung) [#&#8203;49666](https://github.com/nodejs/node/pull/49666)
    
  • [`a5dd057540`](https://github.com/nodejs/node/commit/a5dd057540)] - **doc**: deprecate `util.toUSVString` (Yagiz Nizipli) [#&#8203;49725](https://github.com/nodejs/node/pull/49725)
    
  • [`774c1cfd52`](https://github.com/nodejs/node/commit/774c1cfd52)] - **doc**: add missing function call to example for `util.promisify` (Jungku Lee) [#&#8203;49719](https://github.com/nodejs/node/pull/49719)
    
  • [`fe78a34845`](https://github.com/nodejs/node/commit/fe78a34845)] - **doc**: update output of example in `mimeParams.set()` (Deokjin Kim) [#&#8203;49718](https://github.com/nodejs/node/pull/49718)
    
  • [`4175ea33bd`](https://github.com/nodejs/node/commit/4175ea33bd)] - **doc**: add missed `inspect` with numericSeparator to example (Deokjin Kim) [#&#8203;49717](https://github.com/nodejs/node/pull/49717)
    
  • [`3a88571972`](https://github.com/nodejs/node/commit/3a88571972)] - **doc**: fix history comments (Antoine du Hamel) [#&#8203;49701](https://github.com/nodejs/node/pull/49701)
    
  • [`db4ab1ccbb`](https://github.com/nodejs/node/commit/db4ab1ccbb)] - **doc**: add missing history info for `import.meta.resolve` (Antoine du Hamel) [#&#8203;49700](https://github.com/nodejs/node/pull/49700)
    
  • [`a304d1ee19`](https://github.com/nodejs/node/commit/a304d1ee19)] - **doc**: link maintaining deps to pull-request.md (Marco Ippolito) [#&#8203;49716](https://github.com/nodejs/node/pull/49716)
    
  • [`35294486ad`](https://github.com/nodejs/node/commit/35294486ad)] - **doc**: fix print results in `events` (Jungku Lee) [#&#8203;49548](https://github.com/nodejs/node/pull/49548)
    
  • [`9f0b0e15c9`](https://github.com/nodejs/node/commit/9f0b0e15c9)] - **doc**: alphabetize cli.md sections (Geoffrey Booth) [#&#8203;49668](https://github.com/nodejs/node/pull/49668)
    
  • [`7b6a73172f`](https://github.com/nodejs/node/commit/7b6a73172f)] - **doc**: deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) [#&#8203;49647](https://github.com/nodejs/node/pull/49647)
    
  • [`d316b32fff`](https://github.com/nodejs/node/commit/d316b32fff)] - **doc**: update `corepack.md` to account for 0.20.0 changes (Antoine du Hamel) [#&#8203;49486](https://github.com/nodejs/node/pull/49486)
    
  • [`c2eac7dc7c`](https://github.com/nodejs/node/commit/c2eac7dc7c)] - **doc**: remove `@anonrig` from performance initiative (Yagiz Nizipli) [#&#8203;49641](https://github.com/nodejs/node/pull/49641)
    
  • [`3d839fbf87`](https://github.com/nodejs/node/commit/3d839fbf87)] - **doc**: mark Node.js 16 as End-of-Life (Richard Lau) [#&#8203;49651](https://github.com/nodejs/node/pull/49651)
    
  • [`53fb5aead8`](https://github.com/nodejs/node/commit/53fb5aead8)] - **doc**: save user preference for JS flavor (Vidar Eldøy) [#&#8203;49526](https://github.com/nodejs/node/pull/49526)
    
  • [`e3594d5658`](https://github.com/nodejs/node/commit/e3594d5658)] - **doc**: update documentation for node:process warning (Shubham Pandey) [#&#8203;49517](https://github.com/nodejs/node/pull/49517)
    
  • [`8e033c3963`](https://github.com/nodejs/node/commit/8e033c3963)] - **doc**: rename possibly confusing variable and CSS class (Antoine du Hamel) [#&#8203;49536](https://github.com/nodejs/node/pull/49536)
    
  • [`d0e0eb4bb3`](https://github.com/nodejs/node/commit/d0e0eb4bb3)] - **doc**: update outdated history info (Antoine du Hamel) [#&#8203;49530](https://github.com/nodejs/node/pull/49530)
    
  • [`b4724e2e3a`](https://github.com/nodejs/node/commit/b4724e2e3a)] - **doc**: close a parenthesis (Sébastien Règne) [#&#8203;49525](https://github.com/nodejs/node/pull/49525)
    
  • [`0471c5798e`](https://github.com/nodejs/node/commit/0471c5798e)] - **doc**: cast GetInternalField() return type to v8::Value in addons.md (Joyee Cheung) [#&#8203;49439](https://github.com/nodejs/node/pull/49439)
    
  • [`9f8bea3dda`](https://github.com/nodejs/node/commit/9f8bea3dda)] - **doc**: fix documentation for input option in child_process (Ariel Weiss) [#&#8203;49481](https://github.com/nodejs/node/pull/49481)
    
  • [`f3fea92f8a`](https://github.com/nodejs/node/commit/f3fea92f8a)] - **doc**: fix missing imports in `test.run` code examples (Oshri Asulin) [#&#8203;49489](https://github.com/nodejs/node/pull/49489)
    
  • [`e426b77b67`](https://github.com/nodejs/node/commit/e426b77b67)] - **doc**: fix documentation for fs.createWriteStream highWaterMark option (Mert Can Altın) [#&#8203;49456](https://github.com/nodejs/node/pull/49456)
    
  • [`2b119108ff`](https://github.com/nodejs/node/commit/2b119108ff)] - **doc**: updated releasers instructions for node.js website (Claudio W) [#&#8203;49427](https://github.com/nodejs/node/pull/49427)
    
  • [`b9d4a80183`](https://github.com/nodejs/node/commit/b9d4a80183)] - **doc**: edit `import.meta.resolve` documentation (Antoine du Hamel) [#&#8203;49247](https://github.com/nodejs/node/pull/49247)
    
  • [`f67433f666`](https://github.com/nodejs/node/commit/f67433f666)] - **doc,tools**: switch to `@node-core/utils` (Michaël Zasso) [#&#8203;49851](https://github.com/nodejs/node/pull/49851)
    
  • [`142e256fc5`](https://github.com/nodejs/node/commit/142e256fc5)] - **errors**: improve classRegExp in errors.js (Uzlopak) [#&#8203;49643](https://github.com/nodejs/node/pull/49643)
    
  • [`6377f1bce2`](https://github.com/nodejs/node/commit/6377f1bce2)] - **errors**: use `determineSpecificType` in more error messages (Antoine du Hamel) [#&#8203;49580](https://github.com/nodejs/node/pull/49580)
    
  • [`05f0fcb4c4`](https://github.com/nodejs/node/commit/05f0fcb4c4)] - **esm**: identify parent importing a url with invalid host (Jacob Smith) [#&#8203;49736](https://github.com/nodejs/node/pull/49736)
    
  • [`8a6f5fb8f3`](https://github.com/nodejs/node/commit/8a6f5fb8f3)] - **esm**: fix return type of `import.meta.resolve` (Antoine du Hamel) [#&#8203;49698](https://github.com/nodejs/node/pull/49698)
    
  • [`a6140f1b8c`](https://github.com/nodejs/node/commit/a6140f1b8c)] - **esm**: update loaders warning (Geoffrey Booth) [#&#8203;49633](https://github.com/nodejs/node/pull/49633)
    
  • [`521a9327e0`](https://github.com/nodejs/node/commit/521a9327e0)] - **esm**: fix support for `URL` instances in `register` (Antoine du Hamel) [#&#8203;49655](https://github.com/nodejs/node/pull/49655)
    
  • [`3a9ea0925a`](https://github.com/nodejs/node/commit/3a9ea0925a)] - **esm**: clarify ERR_REQUIRE_ESM errors (Daniel Compton) [#&#8203;49521](https://github.com/nodejs/node/pull/49521)
    
  • [`1beefd5f16`](https://github.com/nodejs/node/commit/1beefd5f16)] - **esm**: set all hooks as release candidate (Geoffrey Booth) [#&#8203;49597](https://github.com/nodejs/node/pull/49597)
    
  • [`be48267888`](https://github.com/nodejs/node/commit/be48267888)] - **esm**: remove return value for `Module.register` (Antoine du Hamel) [#&#8203;49529](https://github.com/nodejs/node/pull/49529)
    
  • [`e74a075124`](https://github.com/nodejs/node/commit/e74a075124)] - **esm**: refactor test-esm-loader-resolve-type (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493)
    
  • [`17823b3533`](https://github.com/nodejs/node/commit/17823b3533)] - **esm**: refactor test-esm-named-exports (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493)
    
  • [`f34bd15ac1`](https://github.com/nodejs/node/commit/f34bd15ac1)] - **esm**: refactor mocking test (Geoffrey Booth) [#&#8203;49465](https://github.com/nodejs/node/pull/49465)
    
  • [`ec323bbd99`](https://github.com/nodejs/node/commit/ec323bbd99)] - **fs**: replace `SetMethodNoSideEffect` in node_file (CanadaHonk) [#&#8203;49857](https://github.com/nodejs/node/pull/49857)
    
  • [`6acf800123`](https://github.com/nodejs/node/commit/6acf800123)] - **fs**: improve error performance for `unlinkSync` (CanadaHonk) [#&#8203;49856](https://github.com/nodejs/node/pull/49856)
    
  • [`31702c9403`](https://github.com/nodejs/node/commit/31702c9403)] - **fs**: improve `readFileSync` with file descriptors (Yagiz Nizipli) [#&#8203;49691](https://github.com/nodejs/node/pull/49691)
    
  • [`835f9fe7b9`](https://github.com/nodejs/node/commit/835f9fe7b9)] - **fs**: fix file descriptor validator (Yagiz Nizipli) [#&#8203;49752](https://github.com/nodejs/node/pull/49752)
    
  • [`b618fe262f`](https://github.com/nodejs/node/commit/b618fe262f)] - **fs**: improve error performance of `opendirSync` (Yagiz Nizipli) [#&#8203;49705](https://github.com/nodejs/node/pull/49705)
    
  • [`938471ef55`](https://github.com/nodejs/node/commit/938471ef55)] - **fs**: improve error performance of sync methods (Yagiz Nizipli) [#&#8203;49593](https://github.com/nodejs/node/pull/49593)
    
  • [`db3fc6d087`](https://github.com/nodejs/node/commit/db3fc6d087)] - **fs**: fix readdir and opendir recursive with unknown file types (William Marlow) [#&#8203;49603](https://github.com/nodejs/node/pull/49603)
    
  • [`0f020ed22d`](https://github.com/nodejs/node/commit/0f020ed22d)] - **gyp**: put cctest filenames in variables (Cheng Zhao) [#&#8203;49178](https://github.com/nodejs/node/pull/49178)
    
  • [`0ce1e94d12`](https://github.com/nodejs/node/commit/0ce1e94d12)] - **lib**: update encoding sets in `WHATWG API` (Jungku Lee) [#&#8203;49610](https://github.com/nodejs/node/pull/49610)
    
  • [`efd6815a7a`](https://github.com/nodejs/node/commit/efd6815a7a)] - **lib**: fix `internalBinding` typings (Yagiz Nizipli) [#&#8203;49742](https://github.com/nodejs/node/pull/49742)
    
  • [`1287d5b74e`](https://github.com/nodejs/node/commit/1287d5b74e)] - **lib**: allow byob reader for 'blob.stream()' (Debadree Chatterjee) [#&#8203;49713](https://github.com/nodejs/node/pull/49713)
    
  • [`bbc710522d`](https://github.com/nodejs/node/commit/bbc710522d)] - **lib**: reset the cwd cache before execution (Maël Nison) [#&#8203;49684](https://github.com/nodejs/node/pull/49684)
    
  • [`f62d649e4d`](https://github.com/nodejs/node/commit/f62d649e4d)] - **lib**: use internal `fileURLToPath` (Deokjin Kim) [#&#8203;49558](https://github.com/nodejs/node/pull/49558)
    
  • [`e515046941`](https://github.com/nodejs/node/commit/e515046941)] - **lib**: use internal `pathToFileURL` (Livia Medeiros) [#&#8203;49553](https://github.com/nodejs/node/pull/49553)
    
  • [`00608e8070`](https://github.com/nodejs/node/commit/00608e8070)] - **lib**: check SharedArrayBuffer availability in freeze_intrinsics.js (Milan Burda) [#&#8203;49482](https://github.com/nodejs/node/pull/49482)
    
  • [`8bfbe7079c`](https://github.com/nodejs/node/commit/8bfbe7079c)] - **meta**: fix linter error (Antoine du Hamel) [#&#8203;49755](https://github.com/nodejs/node/pull/49755)
    
  • [`58f7a9e096`](https://github.com/nodejs/node/commit/58f7a9e096)] - **meta**: add primordials strategic initiative (Benjamin Gruenbaum) [#&#8203;49706](https://github.com/nodejs/node/pull/49706)
    
  • [`5366027756`](https://github.com/nodejs/node/commit/5366027756)] - **meta**: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot\[bot]) [#&#8203;49438](https://github.com/nodejs/node/pull/49438)
    
  • [`fe26b74082`](https://github.com/nodejs/node/commit/fe26b74082)] - **meta**: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot\[bot]) [#&#8203;49437](https://github.com/nodejs/node/pull/49437)
    
  • [`b0ce78a75b`](https://github.com/nodejs/node/commit/b0ce78a75b)] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`4e578f8ab1`](https://github.com/nodejs/node/commit/4e578f8ab1)] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`69e4218772`](https://github.com/nodejs/node/commit/69e4218772)] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`96874e8fbc`](https://github.com/nodejs/node/commit/96874e8fbc)] - **node-api**: enable uncaught exceptions policy by default (Chengzhong Wu) [#&#8203;49313](https://github.com/nodejs/node/pull/49313)
    
  • [`b931aeadfd`](https://github.com/nodejs/node/commit/b931aeadfd)] - **perf_hooks**: reduce overhead of new performance_entries (Vinicius Lourenço) [#&#8203;49803](https://github.com/nodejs/node/pull/49803)
    
  • [`ad043bac31`](https://github.com/nodejs/node/commit/ad043bac31)] - **process**: add custom dir support for heapsnapshot-signal (Jithil P Ponnan) [#&#8203;47854](https://github.com/nodejs/node/pull/47854)
    
  • [`8a7c10194c`](https://github.com/nodejs/node/commit/8a7c10194c)] - **repl**: don't accumulate excess indentation in .load (Daniel X Moore) [#&#8203;49461](https://github.com/nodejs/node/pull/49461)
    
  • [`10a2adeed5`](https://github.com/nodejs/node/commit/10a2adeed5)] - **src**: improve error message when ICU data cannot be initialized (Joyee Cheung) [#&#8203;49666](https://github.com/nodejs/node/pull/49666)
    
  • [`ce37688bac`](https://github.com/nodejs/node/commit/ce37688bac)] - **src**: remove unnecessary todo (Rafael Gonzaga) [#&#8203;49227](https://github.com/nodejs/node/pull/49227)
    
  • [`f611583b71`](https://github.com/nodejs/node/commit/f611583b71)] - **src**: use SNAPSHOT_SERDES to log snapshot ser/deserialization (Joyee Cheung) [#&#8203;49637](https://github.com/nodejs/node/pull/49637)
    
  • [`a597cb8457`](https://github.com/nodejs/node/commit/a597cb8457)] - **src**: port Pipe to uv_pipe_bind2, uv_pipe_connect2 (Geoff Goodman) [#&#8203;49667](https://github.com/nodejs/node/pull/49667)
    
  • [`fb21062338`](https://github.com/nodejs/node/commit/fb21062338)] - **src**: set --rehash-snapshot explicitly (Joyee Cheung) [#&#8203;49556](https://github.com/nodejs/node/pull/49556)
    
  • [`14ece0aa76`](https://github.com/nodejs/node/commit/14ece0aa76)] - **(SEMVER-MINOR)** **src**: allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) [#&#8203;49279](https://github.com/nodejs/node/pull/49279)
    
  • [`4b5e23c71b`](https://github.com/nodejs/node/commit/4b5e23c71b)] - **src**: set ModuleWrap internal fields only once (Joyee Cheung) [#&#8203;49391](https://github.com/nodejs/node/pull/49391)
    
  • [`2d3f5c7cab`](https://github.com/nodejs/node/commit/2d3f5c7cab)] - **src**: fix fs_type_to_name default value (Mustafa Ateş Uzun) [#&#8203;49239](https://github.com/nodejs/node/pull/49239)
    
  • [`cfbcb1059c`](https://github.com/nodejs/node/commit/cfbcb1059c)] - **src**: fix comment on StreamResource (rogertyang) [#&#8203;49193](https://github.com/nodejs/node/pull/49193)
    
  • [`39fb83ad16`](https://github.com/nodejs/node/commit/39fb83ad16)] - **src**: do not rely on the internal field being default to undefined (Joyee Cheung) [#&#8203;49413](https://github.com/nodejs/node/pull/49413)
    
  • [`9fd67fbff0`](https://github.com/nodejs/node/commit/9fd67fbff0)] - **stream**: use bitmap in writable state (Raz Luvaton) [#&#8203;49834](https://github.com/nodejs/node/pull/49834)
    
  • [`0ccd4638ac`](https://github.com/nodejs/node/commit/0ccd4638ac)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745)
    
  • [`b29d927010`](https://github.com/nodejs/node/commit/b29d927010)] - **stream**: improve readable webstream `pipeTo` (Raz Luvaton) [#&#8203;49690](https://github.com/nodejs/node/pull/49690)
    
  • [`7c5e322346`](https://github.com/nodejs/node/commit/7c5e322346)] - **stream**: improve webstream readable async iterator performance (Raz Luvaton) [#&#8203;49662](https://github.com/nodejs/node/pull/49662)
    
  • [`be211ef818`](https://github.com/nodejs/node/commit/be211ef818)] - **test**: deflake test-vm-contextified-script-leak (Joyee Cheung) [#&#8203;49710](https://github.com/nodejs/node/pull/49710)
    
  • [`355f10dab2`](https://github.com/nodejs/node/commit/355f10dab2)] - **test**: use checkIfCollectable in vm leak tests (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671)
    
  • [`17cfc531aa`](https://github.com/nodejs/node/commit/17cfc531aa)] - **test**: add checkIfCollectable to test/common/gc.js (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671)
    
  • [`e49a573752`](https://github.com/nodejs/node/commit/e49a573752)] - **test**: add os setPriority, getPriority test coverage (Wael) [#&#8203;38771](https://github.com/nodejs/node/pull/38771)
    
  • [`5f02711522`](https://github.com/nodejs/node/commit/5f02711522)] - **test**: deflake test-runner-output (Moshe Atlow) [#&#8203;49878](https://github.com/nodejs/node/pull/49878)
    
  • [`cd9754d6a7`](https://github.com/nodejs/node/commit/cd9754d6a7)] - **test**: mark test-runner-output as flaky (Joyee Cheung) [#&#8203;49854](https://github.com/nodejs/node/pull/49854)
    
  • [`5ad00424dd`](https://github.com/nodejs/node/commit/5ad00424dd)] - **test**: use mustSucceed instead of mustCall (SiddharthDevulapalli) [#&#8203;49788](https://github.com/nodejs/node/pull/49788)
    
  • [`3db9b40081`](https://github.com/nodejs/node/commit/3db9b40081)] - **test**: refactor test-readline-async-iterators into a benchmark (Shubham Pandey) [#&#8203;49237](https://github.com/nodejs/node/pull/49237)
    
  • [`2cc5ad7859`](https://github.com/nodejs/node/commit/2cc5ad7859)] - ***Revert*** "**test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky" (Luigi Pinca) [#&#8203;49708](https://github.com/nodejs/node/pull/49708)
    
  • [`e5185b053c`](https://github.com/nodejs/node/commit/e5185b053c)] - **test**: use `fs.constants` for `fs.access` constants (Livia Medeiros) [#&#8203;49685](https://github.com/nodejs/node/pull/49685)
    
  • [`b9e5b43462`](https://github.com/nodejs/node/commit/b9e5b43462)] - **test**: deflake test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) (Luigi Pinca) [#&#8203;49574](https://github.com/nodejs/node/pull/49574)
    
  • [`1fffda504e`](https://github.com/nodejs/node/commit/1fffda504e)] - **test**: fix argument computation in embedtest (Joyee Cheung) [#&#8203;49506](https://github.com/nodejs/node/pull/49506)
    
  • [`6e56f2db52`](https://github.com/nodejs/node/commit/6e56f2db52)] - **test**: skip test-child-process-stdio-reuse-readable-stdio on Windows (Joyee Cheung) [#&#8203;49621](https://github.com/nodejs/node/pull/49621)
    
  • [`ab3afb330d`](https://github.com/nodejs/node/commit/ab3afb330d)] - **test**: mark test-runner-watch-mode as flaky (Joyee Cheung) [#&#8203;49627](https://github.com/nodejs/node/pull/49627)
    
  • [`185d9b50db`](https://github.com/nodejs/node/commit/185d9b50db)] - **test**: deflake test-tls-socket-close (Luigi Pinca) [#&#8203;49575](https://github.com/nodejs/node/pull/49575)
    
  • [`c70c74a9e6`](https://github.com/nodejs/node/commit/c70c74a9e6)] - **test**: show more info on failure in test-cli-syntax-require.js (Joyee Cheung) [#&#8203;49561](https://github.com/nodejs/node/pull/49561)
    
  • [`ed7c6d1114`](https://github.com/nodejs/node/commit/ed7c6d1114)] - **test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky (Joyee Cheung) [#&#8203;49565](https://github.com/nodejs/node/pull/49565)
    
  • [`3599eebab9`](https://github.com/nodejs/node/commit/3599eebab9)] - **test**: use spawnSyncAndExitWithoutError in sea tests (Joyee Cheung) [#&#8203;49543](https://github.com/nodejs/node/pull/49543)
    
  • [`f79b153e89`](https://github.com/nodejs/node/commit/f79b153e89)] - **test**: use spawnSyncAndExitWithoutError in test/common/sea.js (Joyee Cheung) [#&#8203;49543](https://github.com/nodejs/node/pull/49543)
    
  • [`c079c73769`](https://github.com/nodejs/node/commit/c079c73769)] - **test**: use setImmediate() in test-heapdump-shadowrealm.js (Joyee Cheung) [#&#8203;49573](https://github.com/nodejs/node/pull/49573)
    
  • [`667a92493c`](https://github.com/nodejs/node/commit/667a92493c)] - **test**: skip test-child-process-pipe-dataflow.js on Windows (Joyee Cheung) [#&#8203;49563](https://github.com/nodejs/node/pull/49563)
    
  • [`91af0a9a3c`](https://github.com/nodejs/node/commit/91af0a9a3c)] - ***Revert*** "**test**: ignore the copied entry_point.c" (Chengzhong Wu) [#&#8203;49515](https://github.com/nodejs/node/pull/49515)
    
  • [`567afc71b8`](https://github.com/nodejs/node/commit/567afc71b8)] - **test**: avoid copying test source files (Chengzhong Wu) [#&#8203;49515](https://github.com/nodejs/node/pull/49515)
    
  • [`ced25a976d`](https://github.com/nodejs/node/commit/ced25a976d)] - **test**: increase coverage of `Module.register` and `initialize` hook (Antoine du Hamel) [#&#8203;49532](https://github.com/nodejs/node/pull/49532)
    
  • [`be02fbdb8a`](https://github.com/nodejs/node/commit/be02fbdb8a)] - **test**: isolate `globalPreload` tests (Geoffrey Booth) [#&#8203;49545](https://github.com/nodejs/node/pull/49545)
    
  • [`f214428845`](https://github.com/nodejs/node/commit/f214428845)] - **test**: split test-crypto-dh to avoid timeout on slow machines in the CI (Joyee Cheung) [#&#8203;49492](https://github.com/nodejs/node/pull/49492)
    
  • [`3987094569`](https://github.com/nodejs/node/commit/3987094569)] - **test**: make `test-dotenv-node-options` locale-independent (Livia Medeiros) [#&#8203;49470](https://github.com/nodejs/node/pull/49470)
    
  • [`34c1741792`](https://github.com/nodejs/node/commit/34c1741792)] - **test**: add test for urlstrings usage in `node:fs` (Livia Medeiros) [#&#8203;49471](https://github.com/nodejs/node/pull/49471)
    
  • [`c3c6c4f007`](https://github.com/nodejs/node/commit/c3c6c4f007)] - **test**: make test-worker-prof more robust (Joyee Cheung) [#&#8203;49274](https://github.com/nodejs/node/pull/49274)
    
  • [`843df1a4da`](https://github.com/nodejs/node/commit/843df1a4da)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;49714](https://github.com/nodejs/node/pull/49714)
    
  • [`80b342cc38`](https://github.com/nodejs/node/commit/80b342cc38)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753)
    
  • [`76865515b9`](https://github.com/nodejs/node/commit/76865515b9)] - **test_runner**: fix test runner watch mode when no positional arguments (Moshe Atlow) [#&#8203;49578](https://github.com/nodejs/node/pull/49578)
    
  • [`17a05b141d`](https://github.com/nodejs/node/commit/17a05b141d)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614)
    
  • [`5672e38457`](https://github.com/nodejs/node/commit/5672e38457)] - **test_runner**: add jsdocs to mock.js (Caio Borghi) [#&#8203;49555](https://github.com/nodejs/node/pull/49555)
    
  • [`b4d42a8f2b`](https://github.com/nodejs/node/commit/b4d42a8f2b)] - **test_runner**: fix invalid timer call (Erick Wendel) [#&#8203;49477](https://github.com/nodejs/node/pull/49477)
    
  • [`f755e6786b`](https://github.com/nodejs/node/commit/f755e6786b)] - **test_runner**: add jsdocs to MockTimers (Erick Wendel) [#&#8203;49476](https://github.com/nodejs/node/pull/49476)
    
  • [`e7285d4bf0`](https://github.com/nodejs/node/commit/e7285d4bf0)] - **test_runner**: fix typescript coverage (Moshe Atlow) [#&#8203;49406](https://github.com/nodejs/node/pull/49406)
    
  • [`07a2e29bf3`](https://github.com/nodejs/node/commit/07a2e29bf3)] - **tools**: support updating [@&#8203;reporters/github](https://github.com/reporters/github) manually (Moshe Atlow) [#&#8203;49871](https://github.com/nodejs/node/pull/49871)
    
  • [`5ac6722031`](https://github.com/nodejs/node/commit/5ac6722031)] - **tools**: skip ruff on tools/node_modules (Moshe Atlow) [#&#8203;49838](https://github.com/nodejs/node/pull/49838)
    
  • [`462228bd24`](https://github.com/nodejs/node/commit/462228bd24)] - **tools**: fix uvwasi updater (Michael Dawson) [#&#8203;49682](https://github.com/nodejs/node/pull/49682)
    
  • [`ff81bfb958`](https://github.com/nodejs/node/commit/ff81bfb958)] - **tools**: update lint-md-dependencies to rollup@3.29.2 (Node.js GitHub Bot) [#&#8203;49679](https://github.com/nodejs/node/pull/49679)
    
  • [`08ffc6344c`](https://github.com/nodejs/node/commit/08ffc6344c)] - **tools**: restrict internal code from using public `url` module (LiviaMedeiros) [#&#8203;49590](https://github.com/nodejs/node/pull/49590)
    
  • [`728ebf6c97`](https://github.com/nodejs/node/commit/728ebf6c97)] - **tools**: update eslint to 8.49.0 (Node.js GitHub Bot) [#&#8203;49586](https://github.com/nodejs/node/pull/49586)
    
  • [`20d038ffb1`](https://github.com/nodejs/node/commit/20d038ffb1)] - **tools**: update lint-md-dependencies to rollup@3.29.0 unified@11.0.3 (Node.js GitHub Bot) [#&#8203;49584](https://github.com/nodejs/node/pull/49584)
    
  • [`210c15bd12`](https://github.com/nodejs/node/commit/210c15bd12)] - **tools**: allow passing absolute path of config.gypi in js2c (Cheng Zhao) [#&#8203;49162](https://github.com/nodejs/node/pull/49162)
    
  • [`e341efe173`](https://github.com/nodejs/node/commit/e341efe173)] - **tools**: configure never-stale label correctly (Michaël Zasso) [#&#8203;49498](https://github.com/nodejs/node/pull/49498)
    
  • [`a8a8a498ce`](https://github.com/nodejs/node/commit/a8a8a498ce)] - **tools**: update doc dependencies (Node.js GitHub Bot) [#&#8203;49467](https://github.com/nodejs/node/pull/49467)
    
  • [`ac06607f9e`](https://github.com/nodejs/node/commit/ac06607f9e)] - **typings**: fix missing property in `ExportedHooks` (Antoine du Hamel) [#&#8203;49567](https://github.com/nodejs/node/pull/49567)
    
  • [`097b59807a`](https://github.com/nodejs/node/commit/097b59807a)] - **url**: improve invalid url performance (Yagiz Nizipli) [#&#8203;49692](https://github.com/nodejs/node/pull/49692)
    
  • [`7c2060cfac`](https://github.com/nodejs/node/commit/7c2060cfac)] - **util**: add `getCwdSafe` internal util fn (João Lenon) [#&#8203;48434](https://github.com/nodejs/node/pull/48434)
    
  • [`c23c60f545`](https://github.com/nodejs/node/commit/c23c60f545)] - **zlib**: disable CRC32 SIMD optimization (Luigi Pinca) [#&#8203;49511](https://github.com/nodejs/node/pull/49511)
    
    

v20.7.0: 2023-09-18, Version 20.7.0 (Current), @​UlisesGascon

Compare Source

Notable Changes
  • [`022f1b70c1`](https://github.com/nodejs/node/commit/022f1b70c1)] - **src**: support multiple `--env-file` declarations (Yagiz Nizipli) [#&#8203;49542](https://github.com/nodejs/node/pull/49542)
    
  • [`4a1d1cad61`](https://github.com/nodejs/node/commit/4a1d1cad61)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341)
    
  • [`a1a65f593c`](https://github.com/nodejs/node/commit/a1a65f593c)] - **deps**: upgrade npm to 10.1.0 (npm team) [#&#8203;49570](https://github.com/nodejs/node/pull/49570)
    
  • [`6c2480cad9`](https://github.com/nodejs/node/commit/6c2480cad9)] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#&#8203;49423](https://github.com/nodejs/node/pull/49423)
    
  • [`bef900e56b`](https://github.com/nodejs/node/commit/bef900e56b)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261)
    
  • [`db4ce8a593`](https://github.com/nodejs/node/commit/db4ce8a593)] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#&#8203;49196](https://github.com/nodejs/node/pull/49196)
    
  • [`11c85ffa98`](https://github.com/nodejs/node/commit/11c85ffa98)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391)
    
  • [`ec51e25ed7`](https://github.com/nodejs/node/commit/ec51e25ed7)] - **src,permission**: add multiple allow-fs-\* flags (Carlos Espa) [#&#8203;49047](https://github.com/nodejs/node/pull/49047)
    
  • [`efdc95fbc0`](https://github.com/nodejs/node/commit/efdc95fbc0)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975)
    
    
Commits
  • [`e84515594e`](https://github.com/nodejs/node/commit/e84515594e)] - **benchmark**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49137](https://github.com/nodejs/node/pull/49137)
    
  • [`f37444e896`](https://github.com/nodejs/node/commit/f37444e896)] - **bootstrap**: build code cache from deserialized isolate (Joyee Cheung) [#&#8203;49099](https://github.com/nodejs/node/pull/49099)
    
  • [`af6dc1754d`](https://github.com/nodejs/node/commit/af6dc1754d)] - **bootstrap**: do not generate code cache in an unfinalized isolate (Joyee Cheung) [#&#8203;49108](https://github.com/nodejs/node/pull/49108)
    
  • [`cade5716df`](https://github.com/nodejs/node/commit/cade5716df)] - **build**: add symlink to `compile_commands.json` file if needed (Juan José) [#&#8203;49260](https://github.com/nodejs/node/pull/49260)
    
  • [`34a2590b05`](https://github.com/nodejs/node/commit/34a2590b05)] - **build**: expand when we run internet tests (Michael Dawson) [#&#8203;49218](https://github.com/nodejs/node/pull/49218)
    
  • [`f637fd46ab`](https://github.com/nodejs/node/commit/f637fd46ab)] - **build**: fix typo `libray` -> `library` (configure.py) (michalbiesek) [#&#8203;49106](https://github.com/nodejs/node/pull/49106)
    
  • [`ef3d8dd493`](https://github.com/nodejs/node/commit/ef3d8dd493)] - **crypto**: remove webcrypto EdDSA key checks and properties (Filip Skokan) [#&#8203;49408](https://github.com/nodejs/node/pull/49408)
    
  • [`4a1d1cad61`](https://github.com/nodejs/node/commit/4a1d1cad61)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341)
    
  • [`7eb10a38ea`](https://github.com/nodejs/node/commit/7eb10a38ea)] - **crypto**: remove getDefaultEncoding() (Tobias Nießen) [#&#8203;49170](https://github.com/nodejs/node/pull/49170)
    
  • [`772496c030`](https://github.com/nodejs/node/commit/772496c030)] - **crypto**: remove default encoding from DiffieHellman (Tobias Nießen) [#&#8203;49169](https://github.com/nodejs/node/pull/49169)
    
  • [`c795083232`](https://github.com/nodejs/node/commit/c795083232)] - **crypto**: remove default encoding from Hash/Hmac (Tobias Nießen) [#&#8203;49167](https://github.com/nodejs/node/pull/49167)
    
  • [`08197aa010`](https://github.com/nodejs/node/commit/08197aa010)] - **crypto**: remove default encoding from sign/verify (Tobias Nießen) [#&#8203;49145](https://github.com/nodejs/node/pull/49145)
    
  • [`a1a65f593c`](https://github.com/nodejs/node/commit/a1a65f593c)] - **deps**: upgrade npm to 10.1.0 (npm team) [#&#8203;49570](https://github.com/nodejs/node/pull/49570)
    
  • [`6c2480cad9`](https://github.com/nodejs/node/commit/6c2480cad9)] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#&#8203;49423](https://github.com/nodejs/node/pull/49423)
    
  • [`84195d9584`](https://github.com/nodejs/node/commit/84195d9584)] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#&#8203;49410](https://github.com/nodejs/node/pull/49410)
    
  • [`5b70b68b3d`](https://github.com/nodejs/node/commit/5b70b68b3d)] - **deps**: V8: cherry-pick [`eadaef5`](https://github.com/nodejs/node/commit/eadaef581c29) (Adam Majer) [#&#8203;49401](https://github.com/nodejs/node/pull/49401)
    
  • [`fe34d632e8`](https://github.com/nodejs/node/commit/fe34d632e8)] - **deps**: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) [#&#8203;49252](https://github.com/nodejs/node/pull/49252)
    
  • [`db4ce8a593`](https://github.com/nodejs/node/commit/db4ce8a593)] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#&#8203;49196](https://github.com/nodejs/node/pull/49196)
    
  • [`e5f3a694cf`](https://github.com/nodejs/node/commit/e5f3a694cf)] - **doc**: fix node-api call example (Chengzhong Wu) [#&#8203;49395](https://github.com/nodejs/node/pull/49395)
    
  • [`021345a724`](https://github.com/nodejs/node/commit/021345a724)] - **doc**: add news issue for Diagnostics WG (Michael Dawson) [#&#8203;49306](https://github.com/nodejs/node/pull/49306)
    
  • [`f82347266b`](https://github.com/nodejs/node/commit/f82347266b)] - **doc**: clarify policy expectations (Rafael Gonzaga) [#&#8203;48947](https://github.com/nodejs/node/pull/48947)
    
  • [`73cfd9c895`](https://github.com/nodejs/node/commit/73cfd9c895)] - **doc**: add print results for examples in `StringDecoder` (Jungku Lee) [#&#8203;49326](https://github.com/nodejs/node/pull/49326)
    
  • [`63ab591416`](https://github.com/nodejs/node/commit/63ab591416)] - **doc**: update outdated reference to NIST SP 800-131A (Tobias Nießen) [#&#8203;49316](https://github.com/nodejs/node/pull/49316)
    
  • [`935dfe2afd`](https://github.com/nodejs/node/commit/935dfe2afd)] - **doc**: use `cjs` as block code's type in `MockTimers` (Deokjin Kim) [#&#8203;49309](https://github.com/nodejs/node/pull/49309)
    
  • [`7c0cd2fb87`](https://github.com/nodejs/node/commit/7c0cd2fb87)] - **doc**: update `options.filter` description for `fs.cp` (Shubham Pandey) [#&#8203;49289](https://github.com/nodejs/node/pull/49289)
    
  • [`f72e79ea67`](https://github.com/nodejs/node/commit/f72e79ea67)] - **doc**: add riscv64 to list of architectures (Stewart X Addison) [#&#8203;49284](https://github.com/nodejs/node/pull/49284)
    
  • [`d19c710064`](https://github.com/nodejs/node/commit/d19c710064)] - **doc**: avoid "not currently recommended" (Tobias Nießen) [#&#8203;49300](https://github.com/nodejs/node/pull/49300)
    
  • [`ae656101c0`](https://github.com/nodejs/node/commit/ae656101c0)] - **doc**: update module hooks docs (Geoffrey Booth) [#&#8203;49265](https://github.com/nodejs/node/pull/49265)
    
  • [`fefbdb92f2`](https://github.com/nodejs/node/commit/fefbdb92f2)] - **doc**: modify param description for end(),write() in `StringDecoder` (Jungku Lee) [#&#8203;49285](https://github.com/nodejs/node/pull/49285)
    
  • [`59e66a1ebe`](https://github.com/nodejs/node/commit/59e66a1ebe)] - **doc**: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) [#&#8203;49268](https://github.com/nodejs/node/pull/49268)
    
  • [`ac3b88449b`](https://github.com/nodejs/node/commit/ac3b88449b)] - **doc**: fix typo in `stream.finished` documentation (Antoine du Hamel) [#&#8203;49271](https://github.com/nodejs/node/pull/49271)
    
  • [`7428ebf6c3`](https://github.com/nodejs/node/commit/7428ebf6c3)] - **doc**: update description for `percent_encode` sets in `WHATWG API` (Jungku Lee) [#&#8203;49258](https://github.com/nodejs/node/pull/49258)
    
  • [`bef900e56b`](https://github.com/nodejs/node/commit/bef900e56b)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261)
    
  • [`a22e0d9696`](https://github.com/nodejs/node/commit/a22e0d9696)] - **doc**: clarify use of Uint8Array for n-api (Fedor Indutny) [#&#8203;48742](https://github.com/nodejs/node/pull/48742)
    
  • [`1704f24cb9`](https://github.com/nodejs/node/commit/1704f24cb9)] - **doc**: add signature for `module.register` (Geoffrey Booth) [#&#8203;49251](https://github.com/nodejs/node/pull/49251)
    
  • [`5a363bb01b`](https://github.com/nodejs/node/commit/5a363bb01b)] - **doc**: caveat unavailability of `import.meta.resolve` in custom loaders (Jacob Smith) [#&#8203;49242](https://github.com/nodejs/node/pull/49242)
    
  • [`8101f2b259`](https://github.com/nodejs/node/commit/8101f2b259)] - **doc**: use same name in the doc as in the code (Hyunjin Kim) [#&#8203;49216](https://github.com/nodejs/node/pull/49216)
    
  • [`edf278d60d`](https://github.com/nodejs/node/commit/edf278d60d)] - **doc**: add notable-change label mention to PR template (Rafael Gonzaga) [#&#8203;49188](https://github.com/nodejs/node/pull/49188)
    
  • [`3df2251a6a`](https://github.com/nodejs/node/commit/3df2251a6a)] - **doc**: add h1 summary to security release process (Rafael Gonzaga) [#&#8203;49112](https://github.com/nodejs/node/pull/49112)
    
  • [`9fcd99a744`](https://github.com/nodejs/node/commit/9fcd99a744)] - **doc**: update to semver-minor releases by default (Rafael Gonzaga) [#&#8203;49175](https://github.com/nodejs/node/pull/49175)
    
  • [`777931f499`](https://github.com/nodejs/node/commit/777931f499)] - **doc**: fix wording in napi_async_init (Tobias Nießen) [#&#8203;49180](https://github.com/nodejs/node/pull/49180)
    
  • [`f45c8e10c0`](https://github.com/nodejs/node/commit/f45c8e10c0)] - **doc,test**: add known path resolution issue in permission model (Tobias Nießen) [#&#8203;49155](https://github.com/nodejs/node/pull/49155)
    
  • [`a6cfea3f74`](https://github.com/nodejs/node/commit/a6cfea3f74)] - **esm**: align sync and async load implementations (Antoine du Hamel) [#&#8203;49152](https://github.com/nodejs/node/pull/49152)
    
  • [`9fac310b33`](https://github.com/nodejs/node/commit/9fac310b33)] - **fs**: add the options param description in openAsBlob() (Yeseul Lee) [#&#8203;49308](https://github.com/nodejs/node/pull/49308)
    
  • [`92772a8175`](https://github.com/nodejs/node/commit/92772a8175)] - **fs**: remove redundant code in readableWebStream() (Deokjin Kim) [#&#8203;49298](https://github.com/nodejs/node/pull/49298)
    
  • [`88ba79b083`](https://github.com/nodejs/node/commit/88ba79b083)] - **fs**: make sure to write entire buffer (Robert Nagy) [#&#8203;49211](https://github.com/nodejs/node/pull/49211)
    
  • [`11c85ffa98`](https://github.com/nodejs/node/commit/11c85ffa98)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391)
    
  • [`c12711ebfe`](https://github.com/nodejs/node/commit/c12711ebfe)] - **lib**: implement WeakReference on top of JS WeakRef (Joyee Cheung) [#&#8203;49053](https://github.com/nodejs/node/pull/49053)
    
  • [`9a0891f88d`](https://github.com/nodejs/node/commit/9a0891f88d)] - **meta**: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot\[bot]) [#&#8203;49435](https://github.com/nodejs/node/pull/49435)
    
  • [`ae67f41ef1`](https://github.com/nodejs/node/commit/ae67f41ef1)] - **meta**: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot\[bot]) [#&#8203;49436](https://github.com/nodejs/node/pull/49436)
    
  • [`71b4411fb2`](https://github.com/nodejs/node/commit/71b4411fb2)] - **meta**: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot\[bot]) [#&#8203;49434](https://github.com/nodejs/node/pull/49434)
    
  • [`83b7d3a395`](https://github.com/nodejs/node/commit/83b7d3a395)] - **meta**: remove modules team from CODEOWNERS (Benjamin Gruenbaum) [#&#8203;49412](https://github.com/nodejs/node/pull/49412)
    
  • [`81ff68c45c`](https://github.com/nodejs/node/commit/81ff68c45c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;49264](https://github.com/nodejs/node/pull/49264)
    
  • [`ab975233cc`](https://github.com/nodejs/node/commit/ab975233cc)] - **meta**: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) [#&#8203;49189](https://github.com/nodejs/node/pull/49189)
    
  • [`ceaa5494de`](https://github.com/nodejs/node/commit/ceaa5494de)] - **meta**: add test/reporters to codeowners (Chemi Atlow) [#&#8203;49186](https://github.com/nodejs/node/pull/49186)
    
  • [`de0a51b7cf`](https://github.com/nodejs/node/commit/de0a51b7cf)] - **net**: improve performance of isIPv4 and isIPv6 (Uzlopak) [#&#8203;49568](https://github.com/nodejs/node/pull/49568)
    
  • [`8d0913bf95`](https://github.com/nodejs/node/commit/8d0913bf95)] - **net**: use asserts in JS Socket Stream to catch races in future (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400)
    
  • [`2486836a7d`](https://github.com/nodejs/node/commit/2486836a7d)] - **net**: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400)
    
  • [`7a808340cd`](https://github.com/nodejs/node/commit/7a808340cd)] - **node-api**: fix compiler warning in node_api.h (Michael Graeb) [#&#8203;49103](https://github.com/nodejs/node/pull/49103)
    
  • [`30f26a99f4`](https://github.com/nodejs/node/commit/30f26a99f4)] - **permission**: ensure to resolve path when calling mkdtemp (RafaelGSS) [nodejs-private/node-private#440](https://github.com/nodejs-private/node-private/pull/440)
    
  • [`5051c75a5b`](https://github.com/nodejs/node/commit/5051c75a5b)] - **policy**: fix path to URL conversion (Antoine du Hamel) [#&#8203;49133](https://github.com/nodejs/node/pull/49133)
    
  • [`173aed4757`](https://github.com/nodejs/node/commit/173aed4757)] - **report**: fix recent coverity warning (Michael Dawson) [#&#8203;48954](https://github.com/nodejs/node/pull/48954)
    
  • [`d7ff78b442`](https://github.com/nodejs/node/commit/d7ff78b442)] - **sea**: generate code cache with deserialized isolate (Joyee Cheung) [#&#8203;49226](https://github.com/nodejs/node/pull/49226)
    
  • [`022f1b70c1`](https://github.com/nodejs/node/commit/022f1b70c1)] - **src**: support multiple `--env-file` declarations (Yagiz Nizipli) [#&#8203;49542](https://github.com/nodejs/node/pull/49542)
    
  • [`154b1c2115`](https://github.com/nodejs/node/commit/154b1c2115)] - **src**: don't overwrite environment from .env file (Phil Nash) [#&#8203;49424](https://github.com/nodejs/node/pull/49424)
    
  • [`dc4de1c69b`](https://github.com/nodejs/node/commit/dc4de1c69b)] - **src**: modify code for empty string (pluris) [#&#8203;49336](https://github.com/nodejs/node/pull/49336)
    
  • [`701c46f967`](https://github.com/nodejs/node/commit/701c46f967)] - **src**: remove unused PromiseWrap-related code (Joyee Cheung) [#&#8203;49335](https://github.com/nodejs/node/pull/49335)
    
  • [`4a094dc7af`](https://github.com/nodejs/node/commit/4a094dc7af)] - **src**: rename IsAnyByteSource to IsAnyBufferSource (Tobias Nießen) [#&#8203;49346](https://github.com/nodejs/node/pull/49346)
    
  • [`55d6649175`](https://github.com/nodejs/node/commit/55d6649175)] - **src**: support snapshot deserialization in RAIIIsolate (Joyee Cheung) [#&#8203;49226](https://github.com/nodejs/node/pull/49226)
    
  • [`dc092864ef`](https://github.com/nodejs/node/commit/dc092864ef)] - **src**: remove unused function `GetName()` in node_perf (Jungku Lee) [#&#8203;49244](https://github.com/nodejs/node/pull/49244)
    
  • [`f2552a410e`](https://github.com/nodejs/node/commit/f2552a410e)] - **src**: use ARES_SUCCESS instead of 0 (Jungku Lee) [#&#8203;49048](https://github.com/nodejs/node/pull/49048)
    
  • [`4a9ae31519`](https://github.com/nodejs/node/commit/4a9ae31519)] - **src**: add a condition if the argument of `DomainToUnicode` is empty (Jungku Lee) [#&#8203;49097](https://github.com/nodejs/node/pull/49097)
    
  • [`f460362cdf`](https://github.com/nodejs/node/commit/f460362cdf)] - **src**: remove C++ WeakReference implementation (Joyee Cheung) [#&#8203;49053](https://github.com/nodejs/node/pull/49053)
    
  • [`2a35383b3e`](https://github.com/nodejs/node/commit/2a35383b3e)] - **src**: use per-realm GetBindingData() wherever applicable (Joyee Cheung) [#&#8203;49007](https://github.com/nodejs/node/pull/49007)
    
  • [`184bbddcf5`](https://github.com/nodejs/node/commit/184bbddcf5)] - **src**: add per-realm GetBindingData() method (Joyee Cheung) [#&#8203;49007](https://github.com/nodejs/node/pull/49007)
    
  • [`e9946885f9`](https://github.com/nodejs/node/commit/e9946885f9)] - **src**: serialize both BaseObject slots (Joyee Cheung) [#&#8203;48996](https://github.com/nodejs/node/pull/48996)
    
  • [`ec51e25ed7`](https://github.com/nodejs/node/commit/ec51e25ed7)] - **src,permission**: add multiple allow-fs-\* flags (Carlos Espa) [#&#8203;49047](https://github.com/nodejs/node/pull/49047)
    
  • [`8aac95de4b`](https://github.com/nodejs/node/commit/8aac95de4b)] - **stream**: improve tee perf by reduce `ReflectConstruct` usages (Raz Luvaton) [#&#8203;49546](https://github.com/nodejs/node/pull/49546)
    
  • [`0eea7fd8fb`](https://github.com/nodejs/node/commit/0eea7fd8fb)] - **stream**: use Buffer.from when constructor is a Buffer (Matthew Aitken) [#&#8203;49250](https://github.com/nodejs/node/pull/49250)
    
  • [`b961d9bd52`](https://github.com/nodejs/node/commit/b961d9bd52)] - **stream**: add `highWaterMark` for the map operator (Raz Luvaton) [#&#8203;49249](https://github.com/nodejs/node/pull/49249)
    
  • [`ca1384166d`](https://github.com/nodejs/node/commit/ca1384166d)] - **test**: fix warning for comment in embedtest (Jungku Lee) [#&#8203;49416](https://github.com/nodejs/node/pull/49416)
    
  • [`2a35782809`](https://github.com/nodejs/node/commit/2a35782809)] - **test**: simplify test-crypto-dh-group-setters (Tobias Nießen) [#&#8203;49404](https://github.com/nodejs/node/pull/49404)
    
  • [`6740f3c209`](https://github.com/nodejs/node/commit/6740f3c209)] - **test**: verify dynamic import call with absolute path strings (Chengzhong Wu) [#&#8203;49275](https://github.com/nodejs/node/pull/49275)
    
  • [`6ed47bd8fb`](https://github.com/nodejs/node/commit/6ed47bd8fb)] - **test**: reduce length in crypto keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221)
    
  • [`4faa30c553`](https://github.com/nodejs/node/commit/4faa30c553)] - **test**: split JWK async elliptic curve keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221)
    
  • [`e04a2603d8`](https://github.com/nodejs/node/commit/e04a2603d8)] - **test**: split test-crypto-keygen.js (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221)
    
  • [`0d23c1d4ce`](https://github.com/nodejs/node/commit/0d23c1d4ce)] - **test**: rename test-crypto-modp1-error (Tobias Nießen) [#&#8203;49348](https://github.com/nodejs/node/pull/49348)
    
  • [`48e41569e2`](https://github.com/nodejs/node/commit/48e41569e2)] - **test**: migrate message source map tests from Python to JS (Yiyun Lei) [#&#8203;49238](https://github.com/nodejs/node/pull/49238)
    
  • [`a11e64e09c`](https://github.com/nodejs/node/commit/a11e64e09c)] - **test**: fix compiler warning in NodeCryptoEnv (Tobias Nießen) [#&#8203;49206](https://github.com/nodejs/node/pull/49206)
    
  • [`345543938f`](https://github.com/nodejs/node/commit/345543938f)] - **test**: handle EUNATCH (Abdirahim Musse) [#&#8203;48050](https://github.com/nodejs/node/pull/48050)
    
  • [`e391f4b197`](https://github.com/nodejs/node/commit/e391f4b197)] - **test**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49136](https://github.com/nodejs/node/pull/49136)
    
  • [`910378f93f`](https://github.com/nodejs/node/commit/910378f93f)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49248](https://github.com/nodejs/node/pull/49248)
    
  • [`4a85f70462`](https://github.com/nodejs/node/commit/4a85f70462)] - **test**: add spawnSyncAndExit() and spawnSyncAndExitWithoutError() (Joyee Cheung) [#&#8203;49200](https://github.com/nodejs/node/pull/49200)
    
  • [`9610008b79`](https://github.com/nodejs/node/commit/9610008b79)] - **test**: make test-perf-hooks more robust and work with workers (Joyee Cheung) [#&#8203;49197](https://github.com/nodejs/node/pull/49197)
    
  • [`dc8fff9a75`](https://github.com/nodejs/node/commit/dc8fff9a75)] - **test**: use gcUntil() in test-v8-serialize-leak (Joyee Cheung) [#&#8203;49168](https://github.com/nodejs/node/pull/49168)
    
  • [`ca9f801332`](https://github.com/nodejs/node/commit/ca9f801332)] - **test**: make WeakReference tests robust (Joyee Cheung) [#&#8203;49053](https://github.com/nodejs/node/pull/49053)
    
  • [`de103a4686`](https://github.com/nodejs/node/commit/de103a4686)] - **test**: add test for effect of UV_THREADPOOL_SIZE (Tobias Nießen) [#&#8203;49165](https://github.com/nodejs/node/pull/49165)
    
  • [`47d24f144b`](https://github.com/nodejs/node/commit/47d24f144b)] - **test**: use expectSyncExit{WithErrors} in snapshot tests (Joyee Cheung) [#&#8203;49020](https://github.com/nodejs/node/pull/49020)
    
  • [`c441f5a097`](https://github.com/nodejs/node/commit/c441f5a097)] - **test**: add expectSyncExitWithoutError() and expectSyncExit() utils (Joyee Cheung) [#&#8203;49020](https://github.com/nodejs/node/pull/49020)
    
  • [`4d184b5251`](https://github.com/nodejs/node/commit/4d184b5251)] - **test**: remove --no-warnings flag in test_runner fixtures (Raz Luvaton) [#&#8203;48989](https://github.com/nodejs/node/pull/48989)
    
  • [`25e967a90b`](https://github.com/nodejs/node/commit/25e967a90b)] - **test**: reorder test files fixtures for better understanding (Raz Luvaton) [#&#8203;48787](https://github.com/nodejs/node/pull/48787)
    
  • [`fac56dbcc0`](https://github.com/nodejs/node/commit/fac56dbcc0)] - **test,benchmark**: use `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49138](https://github.com/nodejs/node/pull/49138)
    
  • [`36763fa532`](https://github.com/nodejs/node/commit/36763fa532)] - **test_runner**: preserve original property descriptor (Erick Wendel) [#&#8203;49433](https://github.com/nodejs/node/pull/49433)
    
  • [`40e9fcdbea`](https://github.com/nodejs/node/commit/40e9fcdbea)] - **test_runner**: add support for setImmediate (Erick Wendel) [#&#8203;49397](https://github.com/nodejs/node/pull/49397)
    
  • [`23216f1935`](https://github.com/nodejs/node/commit/23216f1935)] - **test_runner**: report covered lines, functions and branches to reporters (Phil Nash) [#&#8203;49320](https://github.com/nodejs/node/pull/49320)
    
  • [`283f2806b1`](https://github.com/nodejs/node/commit/283f2806b1)] - **test_runner**: expose spec reporter as newable function (Chemi Atlow) [#&#8203;49184](https://github.com/nodejs/node/pull/49184)
    
  • [`546ad5f770`](https://github.com/nodejs/node/commit/546ad5f770)] - **test_runner**: reland run global after() hook earlier (Colin Ihrig) [#&#8203;49116](https://github.com/nodejs/node/pull/49116)
    
  • [`efdc95fbc0`](https://github.com/nodejs/node/commit/efdc95fbc0)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975)
    
  • [`4bc0a8fe99`](https://github.com/nodejs/node/commit/4bc0a8fe99)] - **test_runner**: fix global after not failing the tests (Raz Luvaton) [#&#8203;48913](https://github.com/nodejs/node/pull/48913)
    
  • [`08738b2664`](https://github.com/nodejs/node/commit/08738b2664)] - **test_runner**: fix timeout in \*Each hook failing further tests (Raz Luvaton) [#&#8203;48925](https://github.com/nodejs/node/pull/48925)
    
  • [`c2f1830f66`](https://github.com/nodejs/node/commit/c2f1830f66)] - **test_runner**: cleanup test timeout abort listener (Raz Luvaton) [#&#8203;48915](https://github.com/nodejs/node/pull/48915)
    
  • [`75333f38b2`](https://github.com/nodejs/node/commit/75333f38b2)] - **test_runner**: fix global before not called when no global test exists (Raz Luvaton) [#&#8203;48877](https://github.com/nodejs/node/pull/48877)
    
  • [`b28b85adf8`](https://github.com/nodejs/node/commit/b28b85adf8)] - **tls**: remove redundant code in onConnectSecure() (Deokjin Kim) [#&#8203;49457](https://github.com/nodejs/node/pull/49457)
    
  • [`83fc4dccbc`](https://github.com/nodejs/node/commit/83fc4dccbc)] - **tls**: refactor to use validateFunction (Deokjin Kim) [#&#8203;49422](https://github.com/nodejs/node/pull/49422)
    
  • [`8949cc79dd`](https://github.com/nodejs/node/commit/8949cc79dd)] - **tls**: ensure TLS Sockets are closed if the underlying wrap closes (Tim Perry) [#&#8203;49327](https://github.com/nodejs/node/pull/49327)
    
  • [`1df56e6f01`](https://github.com/nodejs/node/commit/1df56e6f01)] - **tools**: update eslint to 8.48.0 (Node.js GitHub Bot) [#&#8203;49343](https://github.com/nodejs/node/pull/49343)
    
  • [`ef50ec5b57`](https://github.com/nodejs/node/commit/ef50ec5b57)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49342](https://github.com/nodejs/node/pull/49342)
    
  • [`9a8fb4fc34`](https://github.com/nodejs/node/commit/9a8fb4fc34)] - **tools**: remove v8\_dump_build_config action (Cheng Zhao) [#&#8203;49301](https://github.com/nodejs/node/pull/49301)
    
  • [`91b2d4314b`](https://github.com/nodejs/node/commit/91b2d4314b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49253](https://github.com/nodejs/node/pull/49253)
    
  • [`b51946ebdd`](https://github.com/nodejs/node/commit/b51946ebdd)] - **tools**: fix github reporter appended multiple times (Moshe Atlow) [#&#8203;49199](https://github.com/nodejs/node/pull/49199)
    
  • [`ae40cb1612`](https://github.com/nodejs/node/commit/ae40cb1612)] - **url**: validate `pathToFileURL(path)` argument as string (LiviaMedeiros) [#&#8203;49161](https://github.com/nodejs/node/pull/49161)
    
  • [`e787673dcf`](https://github.com/nodejs/node/commit/e787673dcf)] - **url**: handle unicode hostname if empty (Yagiz Nizipli) [#&#8203;49396](https://github.com/nodejs/node/pull/49396)
    
  • [`6ee74be87f`](https://github.com/nodejs/node/commit/6ee74be87f)] - **vm**: store MicrotaskQueue in ContextifyContext directly (Joyee Cheung) [#&#8203;48982](https://github.com/nodejs/node/pull/48982)
    
  • [`0179c6dc8f`](https://github.com/nodejs/node/commit/0179c6dc8f)] - **worker**: protect against user mutating well-known prototypes (Antoine du Hamel) [#&#8203;49270](https://github.com/nodejs/node/pull/49270)
    
    

v20.6.1: 2023-09-08, Version 20.6.1 (Current), @​ruyadorno and @​RafaelGSS

Compare Source

Commit
  • [`8acbe6d8e8`](https://github.com/nodejs/node/commit/8acbe6d8e8)] - **esm**: fix loading of CJS modules from ESM (Antoine du Hamel) [#&#8203;49500](https://github.com/nodejs/node/pull/49500)
    
    

v20.6.0: 2023-09-04, Version 20.6.0 (Current), @​juanarbol prepared by @​UlisesGascon

Compare Source

Notable changes
built-in .env file support

Starting from Node.js v20.6.0, Node.js supports .env files for configuring environment variables.

Your configuration file should follow the INI file format, with each line containing a key-value pair for an environment variable.
To initialize your Node.js application with predefined configurations, use the following CLI command: node --env-file=config.env index.js.

For example, you can access the following environment variable using process.env.PASSWORD when your application is initialized:

PASSWORD=nodejs

In addition to environment variables, this change allows you to define your NODE_OPTIONS directly in the .env file, eliminating the need to include it in your package.json.

This feature was contributed by Yagiz Nizipli in #​48890.

import.meta.resolve unflagged

In ES modules, import.meta.resolve(specifier) can be used to get an absolute URL string to which specifier resolves, similar to require.resolve in CommonJS. This aligns Node.js with browsers and other server-side runtimes.

This feature was contributed by Guy Bedford in #​49028

New node:module API register for module customization hooks; new initialize hook

There is a new API register available on node:module to specify a file that exports module customization hooks, and pass data to the hooks, and establish communication channels with them. The “define the file with the hooks” part was previously handled by a flag --experimental-loader, but when the hooks moved into a dedicated thread in 20.0.0 there was a need to provide a way to communicate between the main (application) thread and the hooks thread. This can now be done by calling register from the main thread and passing data, including MessageChannel instances.

We encourage users to migrate to an approach that uses --import with register, such as:

node --import ./file-that-calls-register.js ./app.js

Using --import ensures that the customization hooks are registered before any application code runs, even the entry point.

This feature was contributed by Izaak Schroeder in #​48842 and #​48559

Module customization load hook can now support CommonJS

Authors of module customization hooks can how handle both ES module and CommonJS sources in the load hook. This works for CommonJS modules referenced via either import or require, so long as the main entry point of the application is handled by the ES module loader (such as because the entry point is an ES module file, or if the --import flag is passed). This should simplify the customization of the Node.js module loading process, as package authors can customize more of Node.js without relying on deprecated APIs such as require.extensions.

This feature was contributed by Antoine du Hamel in #​47999

Node.js C++ addons now have experimental support for cppgc (Oilpan), a C++ garbage collection library in V8.

Now when Node.js starts up, it makes sure that there is a v8::CppHeap attached to the V8 isolate. This enables users to allocate in the v8::CppHeap using <cppgc/*> headers from V8, which are now also included into the Node.js headers available to addons. Note that since Node.js only bundles the cppgc library coming from V8, the ABI stability of cppgc is currently not guaranteed in semver-minor and -patch updates, but we do not expect the ABI to break often, as it has been stable and battle-tested in Chromium for years. We may consider including cppgc into the ABI stability guarantees when it gets enough adoption internally and externally.

To help addon authors create JavaScript-to-C++ references of which V8's garbage collector can be aware, a helper function node::SetCppgcReference(isolate, js_object, cppgc_object) has been added to node.h. V8 may provide a native alternative in the future, which could then replace this Node.js-specific helper. In the mean time, users can use this API to avoid having to hard-code the layout of JavaScript wrapper objects. An example of how to create garbage-collected C++ objects in the unified heap and wrap it in a JavaScript object can be found in the Node.js addon tests.

The existing node::ObjectWrap helper would continue to work, while cppgc-based object management serves as an alternative with some advantages mentioned in the V8 blog post about Oilpan.

This feature was contributed by Daryl Haresign and Joyee Cheung in #​48660 and #​45704.

Other notable changes
  • [`d6862b085c`](https://github.com/nodejs/node/commit/d6862b085c)] - **deps**: V8: cherry-pick [`9327503`](https://github.com/nodejs/node/commit/93275031284c) (Joyee Cheung) [#&#8203;48660](https://github.com/nodejs/node/pull/48660)
    
  • [`00fc8bb8b3`](https://github.com/nodejs/node/commit/00fc8bb8b3)] - **doc**: add rluvaton to collaborators (Raz Luvaton) [#&#8203;49215](https://github.com/nodejs/node/pull/49215)
    
  • [`d649339abd`](https://github.com/nodejs/node/commit/d649339abd)] - **doc**: add new TSC members (Michael Dawson) [#&#8203;48841](https://github.com/nodejs/node/pull/48841)
    
  • [`67f9896247`](https://github.com/nodejs/node/commit/67f9896247)] - **(SEMVER-MINOR)** **inspector**: open add `SymbolDispose` (Chemi Atlow) [#&#8203;48765](https://github.com/nodejs/node/pull/48765)
    
  • [`5aef593db3`](https://github.com/nodejs/node/commit/5aef593db3)] - **module**: implement `register` utility (João Lenon) [#&#8203;46826](https://github.com/nodejs/node/pull/46826)
    
    
Commits
  • [`771abcb5da`](https://github.com/nodejs/node/commit/771abcb5da)] - **benchmark**: add benchmarks for the test_runner (Raz Luvaton) [#&#8203;48931](https://github.com/nodejs/node/pull/48931)
    
  • [`6b27bb0dab`](https://github.com/nodejs/node/commit/6b27bb0dab)] - **benchmark**: add pm startup benchmark (Rafael Gonzaga) [#&#8203;48905](https://github.com/nodejs/node/pull/48905)
    
  • [`1f35c0ca55`](https://github.com/nodejs/node/commit/1f35c0ca55)] - **child_process**: harden against prototype pollution (Livia Medeiros) [#&#8203;48726](https://github.com/nodejs/node/pull/48726)
    
  • [`d6862b085c`](https://github.com/nodejs/node/commit/d6862b085c)] - **deps**: V8: cherry-pick [`9327503`](https://github.com/nodejs/node/commit/93275031284c) (Joyee Cheung) [#&#8203;48660](https://github.com/nodejs/node/pull/48660)
    
  • [`f71e383948`](https://github.com/nodejs/node/commit/f71e383948)] - **deps**: update simdutf to 3.2.17 (Node.js GitHub Bot) [#&#8203;49019](https://github.com/nodejs/node/pull/49019)
    
  • [`e14f0456ae`](https://github.com/nodejs/node/commit/e14f0456ae)] - **deps**: update googletest to [`7e33b6a`](https://github.com/nodejs/node/commit/7e33b6a) (Node.js GitHub Bot) [#&#8203;49034](https://github.com/nodejs/node/pull/49034)
    
  • [`bfaa0fb500`](https://github.com/nodejs/node/commit/bfaa0fb500)] - **deps**: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) [#&#8203;49033](https://github.com/nodejs/node/pull/49033)
    
  • [`b79c652c85`](https://github.com/nodejs/node/commit/b79c652c85)] - **deps**: update undici to 5.23.0 (Node.js GitHub Bot) [#&#8203;49021](https://github.com/nodejs/node/pull/49021)
    
  • [`6ead86145c`](https://github.com/nodejs/node/commit/6ead86145c)] - **deps**: update googletest to [`c875c4e`](https://github.com/nodejs/node/commit/c875c4e) (Node.js GitHub Bot) [#&#8203;48964](https://github.com/nodejs/node/pull/48964)
    
  • [`4b0e50501e`](https://github.com/nodejs/node/commit/4b0e50501e)] - **deps**: update ada to 2.6.0 (Node.js GitHub Bot) [#&#8203;48896](https://github.com/nodejs/node/pull/48896)
    
  • [`d960ee0ba3`](https://github.com/nodejs/node/commit/d960ee0ba3)] - **deps**: upgrade npm to 9.8.1 (npm team) [#&#8203;48838](https://github.com/nodejs/node/pull/48838)
    
  • [`d92b0139ca`](https://github.com/nodejs/node/commit/d92b0139ca)] - **deps**: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) [#&#8203;48788](https://github.com/nodejs/node/pull/48788)
    
  • [`2a7835c376`](https://github.com/nodejs/node/commit/2a7835c376)] - **deps**: V8: cherry-pick [`9f4b769`](https://github.com/nodejs/node/commit/9f4b7699f68e) (Joyee Cheung) [#&#8203;48830](https://github.com/nodejs/node/pull/48830)
    
  • [`c8e17829ac`](https://github.com/nodejs/node/commit/c8e17829ac)] - **deps**: V8: cherry-pick [`c1a54d5`](https://github.com/nodejs/node/commit/c1a54d5ffcd1) (Joyee Cheung) [#&#8203;48830](https://github.com/nodejs/node/pull/48830)
    
  • [`318e075b6f`](https://github.com/nodejs/node/commit/318e075b6f)] - **deps**: update googletest to [`cc36671`](https://github.com/nodejs/node/commit/cc36671) (Node.js GitHub Bot) [#&#8203;48789](https://github.com/nodejs/node/pull/48789)
    
  • [`114e088267`](https://github.com/nodejs/node/commit/114e088267)] - **diagnostics_channel**: fix last subscriber removal (Gabriel Schulhof) [#&#8203;48933](https://github.com/nodejs/node/pull/48933)
    
  • [`00fc8bb8b3`](https://github.com/nodejs/node/commit/00fc8bb8b3)] - **doc**: add rluvaton to collaborators (Raz Luvaton) [#&#8203;49215](https://github.com/nodejs/node/pull/49215)
    
  • [`21949c45b6`](https://github.com/nodejs/node/commit/21949c45b6)] - **doc**: add print results for examples in `WebStreams` (Jungku Lee) [#&#8203;49143](https://github.com/nodejs/node/pull/49143)
    
  • [`032107a6fe`](https://github.com/nodejs/node/commit/032107a6fe)] - **doc**: fix `Type` notation in webstreams (Deokjin Kim) [#&#8203;49121](https://github.com/nodejs/node/pull/49121)
    
  • [`91d41e7c5a`](https://github.com/nodejs/node/commit/91d41e7c5a)] - **doc**: fix name of the flag in `initialize()` docs (Antoine du Hamel) [#&#8203;49158](https://github.com/nodejs/node/pull/49158)
    
  • [`aa4caf810e`](https://github.com/nodejs/node/commit/aa4caf810e)] - **doc**: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) [#&#8203;49114](https://github.com/nodejs/node/pull/49114)
    
  • [`f888a1dbe3`](https://github.com/nodejs/node/commit/f888a1dbe3)] - **doc**: update process.binding deprecation text (Tobias Nießen) [#&#8203;49086](https://github.com/nodejs/node/pull/49086)
    
  • [`89fa3faf92`](https://github.com/nodejs/node/commit/89fa3faf92)] - **doc**: update with latest security release (Rafael Gonzaga) [#&#8203;49085](https://github.com/nodejs/node/pull/49085)
    
  • [`3d36e7a941`](https://github.com/nodejs/node/commit/3d36e7a941)] - **doc**: add description for `--port` flag of `node inspect` (Michael Bianco) [#&#8203;48785](https://github.com/nodejs/node/pull/48785)
    
  • [`e9d9ca12a3`](https://github.com/nodejs/node/commit/e9d9ca12a3)] - **doc**: add missing period (Rich Trott) [#&#8203;49094](https://github.com/nodejs/node/pull/49094)
    
  • [`7e7b554de0`](https://github.com/nodejs/node/commit/7e7b554de0)] - **doc**: add ESM examples in http.md (btea) [#&#8203;47763](https://github.com/nodejs/node/pull/47763)
    
  • [`48f8ccfd54`](https://github.com/nodejs/node/commit/48f8ccfd54)] - **doc**: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) [#&#8203;43529](https://github.com/nodejs/node/pull/43529)
    
  • [`195885c8f8`](https://github.com/nodejs/node/commit/195885c8f8)] - **doc**: add "type" to test runner event details (Phil Nash) [#&#8203;49014](https://github.com/nodejs/node/pull/49014)
    
  • [`6ce25f8415`](https://github.com/nodejs/node/commit/6ce25f8415)] - **doc**: reserve 118 for Electron 27 (David Sanders) [#&#8203;49023](https://github.com/nodejs/node/pull/49023)
    
  • [`9c26c0f296`](https://github.com/nodejs/node/commit/9c26c0f296)] - **doc**: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) [#&#8203;49008](https://github.com/nodejs/node/pull/49008)
    
  • [`7186e02aa0`](https://github.com/nodejs/node/commit/7186e02aa0)] - **doc**: remove v14 mention (Rafael Gonzaga) [#&#8203;49005](https://github.com/nodejs/node/pull/49005)
    
  • [`9641ac6c65`](https://github.com/nodejs/node/commit/9641ac6c65)] - **doc**: drop github actions check in sec release process (Rafael Gonzaga) [#&#8203;48978](https://github.com/nodejs/node/pull/48978)
    
  • [`f3d62abb19`](https://github.com/nodejs/node/commit/f3d62abb19)] - **doc**: improved joinDuplicateHeaders definition (Matteo Bianchi) [#&#8203;48859](https://github.com/nodejs/node/pull/48859)
    
  • [`0db104a08b`](https://github.com/nodejs/node/commit/0db104a08b)] - **doc**: fix second parameter name of `events.addAbortListener` (Deokjin Kim) [#&#8203;48922](https://github.com/nodejs/node/pull/48922)
    
  • [`5173c559b7`](https://github.com/nodejs/node/commit/5173c559b7)] - **doc**: add new reporter events to custom reporter examples (Chemi Atlow) [#&#8203;48903](https://github.com/nodejs/node/pull/48903)
    
  • [`660da785e6`](https://github.com/nodejs/node/commit/660da785e6)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48898](https://github.com/nodejs/node/pull/48898)
    
  • [`092f9fe92a`](https://github.com/nodejs/node/commit/092f9fe92a)] - **doc**: change duration to duration_ms on test documentation (Ardi_Nugraha) [#&#8203;48892](https://github.com/nodejs/node/pull/48892)
    
  • [`5e4730858d`](https://github.com/nodejs/node/commit/5e4730858d)] - **doc**: improve requireHostHeader (Guido Penta) [#&#8203;48860](https://github.com/nodejs/node/pull/48860)
    
  • [`045e3c549a`](https://github.com/nodejs/node/commit/045e3c549a)] - **doc**: add ver of 18.x where Node-api 9 is supported (Michael Dawson) [#&#8203;48876](https://github.com/nodejs/node/pull/48876)
    
  • [`c20d35df34`](https://github.com/nodejs/node/commit/c20d35df34)] - **doc**: include experimental features assessment (Rafael Gonzaga) [#&#8203;48824](https://github.com/nodejs/node/pull/48824)
    
  • [`d649339abd`](https://github.com/nodejs/node/commit/d649339abd)] - **doc**: add new TSC members (Michael Dawson) [#&#8203;48841](https://github.com/nodejs/node/pull/48841)
    
  • [`aeac327f2b`](https://github.com/nodejs/node/commit/aeac327f2b)] - **doc**: refactor node-api support matrix (Michael Dawson) [#&#8203;48774](https://github.com/nodejs/node/pull/48774)
    
  • [`388c7d9232`](https://github.com/nodejs/node/commit/388c7d9232)] - **doc**: declare `path` on example of `async_hooks.executionAsyncId()` (Deokjin Kim) [#&#8203;48556](https://github.com/nodejs/node/pull/48556)
    
  • [`fe20528c8e`](https://github.com/nodejs/node/commit/fe20528c8e)] - **doc**: remove the . in the end to reduce confusing (Jason) [#&#8203;48719](https://github.com/nodejs/node/pull/48719)
    
  • [`e69c8e173f`](https://github.com/nodejs/node/commit/e69c8e173f)] - **doc**: nodejs-social over nodejs/tweet (Rafael Gonzaga) [#&#8203;48769](https://github.com/nodejs/node/pull/48769)
    
  • [`ea547849fd`](https://github.com/nodejs/node/commit/ea547849fd)] - **doc**: expand on squashing and rebasing to land a PR (Chengzhong Wu) [#&#8203;48751](https://github.com/nodejs/node/pull/48751)
    
  • [`31442b96a5`](https://github.com/nodejs/node/commit/31442b96a5)] - **esm**: fix `globalPreload` warning (Antoine du Hamel) [#&#8203;49069](https://github.com/nodejs/node/pull/49069)
    
  • [`eb1215878b`](https://github.com/nodejs/node/commit/eb1215878b)] - **esm**: unflag import.meta.resolve (Guy Bedford) [#&#8203;49028](https://github.com/nodejs/node/pull/49028)
    
  • [`57b24a34e6`](https://github.com/nodejs/node/commit/57b24a34e6)] - **esm**: import.meta.resolve exact module not found errors should return (Guy Bedford) [#&#8203;49038](https://github.com/nodejs/node/pull/49038)
    
  • [`f23b2a3066`](https://github.com/nodejs/node/commit/f23b2a3066)] - **esm**: protect `ERR_UNSUPPORTED_DIR_IMPORT` against prototype pollution (Antoine du Hamel) [#&#8203;49060](https://github.com/nodejs/node/pull/49060)
    
  • [`386e826a56`](https://github.com/nodejs/node/commit/386e826a56)] - **esm**: add `initialize` hook, integrate with `register` (Izaak Schroeder) [#&#8203;48842](https://github.com/nodejs/node/pull/48842)
    
  • [`74a2e1e0ab`](https://github.com/nodejs/node/commit/74a2e1e0ab)] - **esm**: fix typo `parentUrl` -> `parentURL` (Antoine du Hamel) [#&#8203;48999](https://github.com/nodejs/node/pull/48999)
    
  • [`0a4f7c669a`](https://github.com/nodejs/node/commit/0a4f7c669a)] - **esm**: unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) [#&#8203;48559](https://github.com/nodejs/node/pull/48559)
    
  • [`a5597470ce`](https://github.com/nodejs/node/commit/a5597470ce)] - **esm**: add back `globalPreload` tests and fix failing ones (Antoine du Hamel) [#&#8203;48779](https://github.com/nodejs/node/pull/48779)
    
  • [`d568600b42`](https://github.com/nodejs/node/commit/d568600b42)] - **events**: remove weak listener for event target (Raz Luvaton) [#&#8203;48952](https://github.com/nodejs/node/pull/48952)
    
  • [`3d942d9842`](https://github.com/nodejs/node/commit/3d942d9842)] - **fs**: fix readdir recursive sync & callback (Ethan Arrowood) [#&#8203;48698](https://github.com/nodejs/node/pull/48698)
    
  • [`c14ff69d69`](https://github.com/nodejs/node/commit/c14ff69d69)] - **fs**: mention `URL` in NUL character error message (LiviaMedeiros) [#&#8203;48828](https://github.com/nodejs/node/pull/48828)
    
  • [`d634d781d7`](https://github.com/nodejs/node/commit/d634d781d7)] - **fs**: make `mkdtemp` accept buffers and URL (LiviaMedeiros) [#&#8203;48828](https://github.com/nodejs/node/pull/48828)
    
  • [`4515a285a4`](https://github.com/nodejs/node/commit/4515a285a4)] - **fs**: remove redundant `nullCheck` (Livia Medeiros) [#&#8203;48826](https://github.com/nodejs/node/pull/48826)
    
  • [`742597b14a`](https://github.com/nodejs/node/commit/742597b14a)] - **http**: start connections checking interval on listen (Paolo Insogna) [#&#8203;48611](https://github.com/nodejs/node/pull/48611)
    
  • [`67f9896247`](https://github.com/nodejs/node/commit/67f9896247)] - **(SEMVER-MINOR)** **inspector**: open add `SymbolDispose` (Chemi Atlow) [#&#8203;48765](https://github.com/nodejs/node/pull/48765)
    
  • [`b66a3c1c96`](https://github.com/nodejs/node/commit/b66a3c1c96)] - **lib**: fix MIME overmatch in data URLs (André Alves) [#&#8203;49104](https://github.com/nodejs/node/pull/49104)
    
  • [`dca8678a22`](https://github.com/nodejs/node/commit/dca8678a22)] - **lib**: fix to add resolve() before return at Blob.stream()'s source.pull() (bellbind) [#&#8203;48935](https://github.com/nodejs/node/pull/48935)
    
  • [`420b85c00f`](https://github.com/nodejs/node/commit/420b85c00f)] - **lib**: remove invalid parameter to toASCII (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878)
    
  • [`a12ce11b09`](https://github.com/nodejs/node/commit/a12ce11b09)] - **lib,permission**: drop repl autocomplete when pm enabled (Rafael Gonzaga) [#&#8203;48920](https://github.com/nodejs/node/pull/48920)
    
  • [`458eaf5e75`](https://github.com/nodejs/node/commit/458eaf5e75)] - **meta**: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot\[bot]) [#&#8203;48986](https://github.com/nodejs/node/pull/48986)
    
  • [`4f88cb10e0`](https://github.com/nodejs/node/commit/4f88cb10e0)] - **meta**: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot\[bot]) [#&#8203;48985](https://github.com/nodejs/node/pull/48985)
    
  • [`22fc2a6ec6`](https://github.com/nodejs/node/commit/22fc2a6ec6)] - **meta**: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot\[bot]) [#&#8203;48984](https://github.com/nodejs/node/pull/48984)
    
  • [`40103adabd`](https://github.com/nodejs/node/commit/40103adabd)] - **meta**: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot\[bot]) [#&#8203;48983](https://github.com/nodejs/node/pull/48983)
    
  • [`84c0c6848c`](https://github.com/nodejs/node/commit/84c0c6848c)] - **meta**: add mailmap entry for atlowChemi (Chemi Atlow) [#&#8203;48810](https://github.com/nodejs/node/pull/48810)
    
  • [`1a6e9450b8`](https://github.com/nodejs/node/commit/1a6e9450b8)] - **module**: make CJS load from ESM loader (Antoine du Hamel) [#&#8203;47999](https://github.com/nodejs/node/pull/47999)
    
  • [`a5322c4b4a`](https://github.com/nodejs/node/commit/a5322c4b4a)] - **module**: ensure successful import returns the same result (Antoine du Hamel) [#&#8203;46662](https://github.com/nodejs/node/pull/46662)
    
  • [`5aef593db3`](https://github.com/nodejs/node/commit/5aef593db3)] - **module**: implement `register` utility (João Lenon) [#&#8203;46826](https://github.com/nodejs/node/pull/46826)
    
  • [`015c4f788d`](https://github.com/nodejs/node/commit/015c4f788d)] - **node-api**: avoid macro redefinition (Tobias Nießen) [#&#8203;48879](https://github.com/nodejs/node/pull/48879)
    
  • [`53ee98566b`](https://github.com/nodejs/node/commit/53ee98566b)] - **permission**: move PrintTree into unnamed namespace (Tobias Nießen) [#&#8203;48874](https://github.com/nodejs/node/pull/48874)
    
  • [`30ea480135`](https://github.com/nodejs/node/commit/30ea480135)] - **permission**: fix data types in PrintTree (Tobias Nießen) [#&#8203;48770](https://github.com/nodejs/node/pull/48770)
    
  • [`8380800375`](https://github.com/nodejs/node/commit/8380800375)] - **readline**: add paste bracket mode (Jakub Jankiewicz) [#&#8203;47150](https://github.com/nodejs/node/pull/47150)
    
  • [`bc009d0c10`](https://github.com/nodejs/node/commit/bc009d0c10)] - **sea**: add support for V8 bytecode-only caching (Darshan Sen) [#&#8203;48191](https://github.com/nodejs/node/pull/48191)
    
  • [`f2f4ce9e29`](https://github.com/nodejs/node/commit/f2f4ce9e29)] - **src**: use effective cppgc wrapper id to deduce non-cppgc id (Joyee Cheung) [#&#8203;48660](https://github.com/nodejs/node/pull/48660)
    
  • [`bf7ff369f6`](https://github.com/nodejs/node/commit/bf7ff369f6)] - **src**: add built-in `.env` file support (Yagiz Nizipli) [#&#8203;48890](https://github.com/nodejs/node/pull/48890)
    
  • [`8d6948f8e2`](https://github.com/nodejs/node/commit/8d6948f8e2)] - **src**: remove duplicated code in `GenerateSingleExecutableBlob()` (Jungku Lee) [#&#8203;49119](https://github.com/nodejs/node/pull/49119)
    
  • [`b030004cee`](https://github.com/nodejs/node/commit/b030004cee)] - **src**: refactor vector writing in snapshot builder (Joyee Cheung) [#&#8203;48851](https://github.com/nodejs/node/pull/48851)
    
  • [`497df8288d`](https://github.com/nodejs/node/commit/497df8288d)] - **src**: add ability to overload fast api functions (Yagiz Nizipli) [#&#8203;48993](https://github.com/nodejs/node/pull/48993)
    
  • [`e5b0dfa359`](https://github.com/nodejs/node/commit/e5b0dfa359)] - **src**: remove redundant code for uv_handle_type (Jungku Lee) [#&#8203;49061](https://github.com/nodejs/node/pull/49061)
    
  • [`f126b9e3d1`](https://github.com/nodejs/node/commit/f126b9e3d1)] - **src**: modernize use-equals-default (Jason) [#&#8203;48735](https://github.com/nodejs/node/pull/48735)
    
  • [`db4370fc3e`](https://github.com/nodejs/node/commit/db4370fc3e)] - **src**: avoid string copy in BuiltinLoader::GetBuiltinIds (Yagiz Nizipli) [#&#8203;48721](https://github.com/nodejs/node/pull/48721)
    
  • [`9d13503c4e`](https://github.com/nodejs/node/commit/9d13503c4e)] - **src**: fix callback_queue.h missing header (Jason) [#&#8203;48733](https://github.com/nodejs/node/pull/48733)
    
  • [`6c389df3aa`](https://github.com/nodejs/node/commit/6c389df3aa)] - **src**: cast v8::Object::GetInternalField() return value to v8::Value (Joyee Cheung) [#&#8203;48943](https://github.com/nodejs/node/pull/48943)
    
  • [`7b9adff0be`](https://github.com/nodejs/node/commit/7b9adff0be)] - **src**: do not pass user input to format string (Antoine du Hamel) [#&#8203;48973](https://github.com/nodejs/node/pull/48973)
    
  • [`e0fdb7b092`](https://github.com/nodejs/node/commit/e0fdb7b092)] - **src**: remove ContextEmbedderIndex::kBindingDataStoreIndex (Joyee Cheung) [#&#8203;48836](https://github.com/nodejs/node/pull/48836)
    
  • [`578c3d1e14`](https://github.com/nodejs/node/commit/578c3d1e14)] - **src**: use ARES_SUCCESS instead of 0 (Hyunjin Kim) [#&#8203;48834](https://github.com/nodejs/node/pull/48834)
    
  • [`ed23426aac`](https://github.com/nodejs/node/commit/ed23426aac)] - **src**: save the performance milestone time origin in the AliasedArray (Joyee Cheung) [#&#8203;48708](https://github.com/nodejs/node/pull/48708)
    
  • [`5dec186663`](https://github.com/nodejs/node/commit/5dec186663)] - **src**: support snapshot in single executable applications (Joyee Cheung) [#&#8203;46824](https://github.com/nodejs/node/pull/46824)
    
  • [`d759d4f631`](https://github.com/nodejs/node/commit/d759d4f631)] - **src**: remove unnecessary temporary creation (Jason) [#&#8203;48734](https://github.com/nodejs/node/pull/48734)
    
  • [`409cc692db`](https://github.com/nodejs/node/commit/409cc692db)] - **src**: fix nullptr access on realm (Jan Olaf Krems) [#&#8203;48802](https://github.com/nodejs/node/pull/48802)
    
  • [`07d0fd61b1`](https://github.com/nodejs/node/commit/07d0fd61b1)] - **src**: remove OnScopeLeaveImpl's move assignment overload (Jason) [#&#8203;48732](https://github.com/nodejs/node/pull/48732)
    
  • [`41cc3efa23`](https://github.com/nodejs/node/commit/41cc3efa23)] - **src**: use string_view for utf-8 string creation (Yagiz Nizipli) [#&#8203;48722](https://github.com/nodejs/node/pull/48722)
    
  • [`62a46d9335`](https://github.com/nodejs/node/commit/62a46d9335)] - **src,permission**: restrict by default when pm enabled (Rafael Gonzaga) [#&#8203;48907](https://github.com/nodejs/node/pull/48907)
    
  • [`099159ce04`](https://github.com/nodejs/node/commit/099159ce04)] - **src,tools**: initialize cppgc (Daryl Haresign) [#&#8203;48660](https://github.com/nodejs/node/pull/48660)
    
  • [`600c08d197`](https://github.com/nodejs/node/commit/600c08d197)] - **stream**: improve WebStreams performance (Raz Luvaton) [#&#8203;49089](https://github.com/nodejs/node/pull/49089)
    
  • [`609b25fa99`](https://github.com/nodejs/node/commit/609b25fa99)] - **stream**: implement ReadableStream.from (Debadree Chatterjee) [#&#8203;48395](https://github.com/nodejs/node/pull/48395)
    
  • [`750cca2738`](https://github.com/nodejs/node/commit/750cca2738)] - **test**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49128](https://github.com/nodejs/node/pull/49128)
    
  • [`6595367649`](https://github.com/nodejs/node/commit/6595367649)] - **test**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49127](https://github.com/nodejs/node/pull/49127)
    
  • [`661b055e75`](https://github.com/nodejs/node/commit/661b055e75)] - **test**: use `tmpdir.resolve()` in fs tests (Livia Medeiros) [#&#8203;49126](https://github.com/nodejs/node/pull/49126)
    
  • [`b3c56d206f`](https://github.com/nodejs/node/commit/b3c56d206f)] - **test**: use `tmpdir.resolve()` in fs tests (Livia Medeiros) [#&#8203;49125](https://github.com/nodejs/node/pull/49125)
    
  • [`3ddb155d16`](https://github.com/nodejs/node/commit/3ddb155d16)] - **test**: fix assertion message in test_async.c (Tobias Nießen) [#&#8203;49146](https://github.com/nodejs/node/pull/49146)
    
  • [`1d17c1032d`](https://github.com/nodejs/node/commit/1d17c1032d)] - **test**: refactor `test-esm-loader-hooks` for easier debugging (Antoine du Hamel) [#&#8203;49131](https://github.com/nodejs/node/pull/49131)
    
  • [`13bd7a0293`](https://github.com/nodejs/node/commit/13bd7a0293)] - **test**: add `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49079](https://github.com/nodejs/node/pull/49079)
    
  • [`89b1bce56d`](https://github.com/nodejs/node/commit/89b1bce56d)] - **test**: document `fixtures.fileURL()` (Livia Medeiros) [#&#8203;49083](https://github.com/nodejs/node/pull/49083)
    
  • [`2fcb855c76`](https://github.com/nodejs/node/commit/2fcb855c76)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49105](https://github.com/nodejs/node/pull/49105)
    
  • [`7816e040df`](https://github.com/nodejs/node/commit/7816e040df)] - **test**: stabilize the inspector-open-dispose test (Chemi Atlow) [#&#8203;49000](https://github.com/nodejs/node/pull/49000)
    
  • [`e70e9747e4`](https://github.com/nodejs/node/commit/e70e9747e4)] - **test**: print instruction for creating missing snapshot in assertSnapshot (Raz Luvaton) [#&#8203;48914](https://github.com/nodejs/node/pull/48914)
    
  • [`669ac03520`](https://github.com/nodejs/node/commit/669ac03520)] - **test**: add `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49040](https://github.com/nodejs/node/pull/49040)
    
  • [`b945d7be35`](https://github.com/nodejs/node/commit/b945d7be35)] - **test**: use `spawn` and `spawnPromisified` instead of `exec` (Antoine du Hamel) [#&#8203;48991](https://github.com/nodejs/node/pull/48991)
    
  • [`b3a7427583`](https://github.com/nodejs/node/commit/b3a7427583)] - **test**: refactor `test-node-output-errors` (Antoine du Hamel) [#&#8203;48992](https://github.com/nodejs/node/pull/48992)
    
  • [`6c3e5c4d69`](https://github.com/nodejs/node/commit/6c3e5c4d69)] - **test**: use `fixtures.fileURL` when appropriate (Antoine du Hamel) [#&#8203;48990](https://github.com/nodejs/node/pull/48990)
    
  • [`9138b78bcb`](https://github.com/nodejs/node/commit/9138b78bcb)] - **test**: validate error code rather than message (Antoine du Hamel) [#&#8203;48972](https://github.com/nodejs/node/pull/48972)
    
  • [`b4ca4a6f80`](https://github.com/nodejs/node/commit/b4ca4a6f80)] - **test**: fix snapshot tests when cwd contains spaces or backslashes (Antoine du Hamel) [#&#8203;48959](https://github.com/nodejs/node/pull/48959)
    
  • [`d4398d458c`](https://github.com/nodejs/node/commit/d4398d458c)] - **test**: order `common.mjs` in ASCII order (Antoine du Hamel) [#&#8203;48960](https://github.com/nodejs/node/pull/48960)
    
  • [`b5991f5250`](https://github.com/nodejs/node/commit/b5991f5250)] - **test**: fix some assumptions in tests (Antoine du Hamel) [#&#8203;48958](https://github.com/nodejs/node/pull/48958)
    
  • [`62e23f83f9`](https://github.com/nodejs/node/commit/62e23f83f9)] - **test**: improve internal/worker/io.js coverage (Yoshiki Kurihara) [#&#8203;42387](https://github.com/nodejs/node/pull/42387)
    
  • [`314bd6095c`](https://github.com/nodejs/node/commit/314bd6095c)] - **test**: fix `es-module/test-esm-initialization` (Antoine du Hamel) [#&#8203;48880](https://github.com/nodejs/node/pull/48880)
    
  • [`3680a66df4`](https://github.com/nodejs/node/commit/3680a66df4)] - **test**: validate host with commas on url.parse (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878)
    
  • [`24c3742372`](https://github.com/nodejs/node/commit/24c3742372)] - **test**: delete test-net-bytes-per-incoming-chunk-overhead (Michaël Zasso) [#&#8203;48811](https://github.com/nodejs/node/pull/48811)
    
  • [`e01cce50f5`](https://github.com/nodejs/node/commit/e01cce50f5)] - **test**: skip experimental test with pointer compression (Colin Ihrig) [#&#8203;48738](https://github.com/nodejs/node/pull/48738)
    
  • [`d5e93b1074`](https://github.com/nodejs/node/commit/d5e93b1074)] - **test**: fix flaky test-string-decode.js on x86 (Stefan Stojanovic) [#&#8203;48750](https://github.com/nodejs/node/pull/48750)
    
  • [`9136667d7d`](https://github.com/nodejs/node/commit/9136667d7d)] - **test_runner**: dont set exit code on todo tests (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929)
    
  • [`52c94908c0`](https://github.com/nodejs/node/commit/52c94908c0)] - **test_runner**: fix todo and only in spec reporter (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929)
    
  • [`5ccfb8d515`](https://github.com/nodejs/node/commit/5ccfb8d515)] - **test_runner**: unwrap error message in TAP reporter (Colin Ihrig) [#&#8203;48942](https://github.com/nodejs/node/pull/48942)
    
  • [`fa19b0ed05`](https://github.com/nodejs/node/commit/fa19b0ed05)] - **test_runner**: add `__proto__` null (Raz Luvaton) [#&#8203;48663](https://github.com/nodejs/node/pull/48663)
    
  • [`65d23940bf`](https://github.com/nodejs/node/commit/65d23940bf)] - **test_runner**: fix async callback in describe not awaited (Raz Luvaton) [#&#8203;48856](https://github.com/nodejs/node/pull/48856)
    
  • [`4bd5e55b43`](https://github.com/nodejs/node/commit/4bd5e55b43)] - **test_runner**: fix test_runner `test:fail` event type (Ethan Arrowood) [#&#8203;48854](https://github.com/nodejs/node/pull/48854)
    
  • [`41058beed8`](https://github.com/nodejs/node/commit/41058beed8)] - **test_runner**: call abort on test finish (Raz Luvaton) [#&#8203;48827](https://github.com/nodejs/node/pull/48827)
    
  • [`821b11a59f`](https://github.com/nodejs/node/commit/821b11a59f)] - **tls**: fix bugs of double TLS (rogertyang) [#&#8203;48969](https://github.com/nodejs/node/pull/48969)
    
  • [`4439327e73`](https://github.com/nodejs/node/commit/4439327e73)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49122](https://github.com/nodejs/node/pull/49122)
    
  • [`21dc844309`](https://github.com/nodejs/node/commit/21dc844309)] - **tools**: use spec reporter in actions (Moshe Atlow) [#&#8203;49129](https://github.com/nodejs/node/pull/49129)
    
  • [`3471758696`](https://github.com/nodejs/node/commit/3471758696)] - **tools**: use [@&#8203;reporters/github](https://github.com/reporters/github) when running in github actions (Moshe Atlow) [#&#8203;49129](https://github.com/nodejs/node/pull/49129)
    
  • [`95a6e7661e`](https://github.com/nodejs/node/commit/95a6e7661e)] - **tools**: add [@&#8203;reporters/github](https://github.com/reporters/github) to tools (Moshe Atlow) [#&#8203;49129](https://github.com/nodejs/node/pull/49129)
    
  • [`995cbf93eb`](https://github.com/nodejs/node/commit/995cbf93eb)] - **tools**: update eslint to 8.47.0 (Node.js GitHub Bot) [#&#8203;49124](https://github.com/nodejs/node/pull/49124)
    
  • [`ed065bc56e`](https://github.com/nodejs/node/commit/ed065bc56e)] - **tools**: update lint-md-dependencies to rollup@3.27.2 (Node.js GitHub Bot) [#&#8203;49035](https://github.com/nodejs/node/pull/49035)
    
  • [`a5f37178ad`](https://github.com/nodejs/node/commit/a5f37178ad)] - **tools**: limit the number of auto start CIs (Antoine du Hamel) [#&#8203;49067](https://github.com/nodejs/node/pull/49067)
    
  • [`c1bd680f89`](https://github.com/nodejs/node/commit/c1bd680f89)] - **tools**: update eslint to 8.46.0 (Node.js GitHub Bot) [#&#8203;48966](https://github.com/nodejs/node/pull/48966)
    
  • [`e09a6b4821`](https://github.com/nodejs/node/commit/e09a6b4821)] - **tools**: update lint-md-dependencies to rollup@3.27.0 (Node.js GitHub Bot) [#&#8203;48965](https://github.com/nodejs/node/pull/48965)
    
  • [`0cd2393bd9`](https://github.com/nodejs/node/commit/0cd2393bd9)] - **tools**: update lint-md-dependencies to rollup@3.26.3 (Node.js GitHub Bot) [#&#8203;48888](https://github.com/nodejs/node/pull/48888)
    
  • [`41929a2906`](https://github.com/nodejs/node/commit/41929a2906)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;25](https://github.com/25).0.3 (Node.js GitHub Bot) [#&#8203;48791](https://github.com/nodejs/node/pull/48791)
    
  • [`1761bdfbd9`](https://github.com/nodejs/node/commit/1761bdfbd9)] - **tools**: update eslint to 8.45.0 (Node.js GitHub Bot) [#&#8203;48793](https://github.com/nodejs/node/pull/48793)
    
  • [`b82f05cc4b`](https://github.com/nodejs/node/commit/b82f05cc4b)] - **typings**: update JSDoc for `cwd` in `child_process` (LiviaMedeiros) [#&#8203;49029](https://github.com/nodejs/node/pull/49029)
    
  • [`be7b511255`](https://github.com/nodejs/node/commit/be7b511255)] - **typings**: sync JSDoc with the actual implementation (Hyunjin Kim) [#&#8203;48853](https://github.com/nodejs/node/pull/48853)
    
  • [`45c860035d`](https://github.com/nodejs/node/commit/45c860035d)] - **url**: overload `canParse` V8 fast api method (Yagiz Nizipli) [#&#8203;48993](https://github.com/nodejs/node/pull/48993)
    
  • [`60d614157b`](https://github.com/nodejs/node/commit/60d614157b)] - **url**: fix `isURL` detection by checking `path` (Zhuo Zhang) [#&#8203;48928](https://github.com/nodejs/node/pull/48928)
    
  • [`b12c3b5240`](https://github.com/nodejs/node/commit/b12c3b5240)] - **url**: ensure getter access do not mutate observable symbols (Antoine du Hamel) [#&#8203;48897](https://github.com/nodejs/node/pull/48897)
    
  • [`30fb7b7535`](https://github.com/nodejs/node/commit/30fb7b7535)] - **url**: reduce `pathToFileURL` cpp calls (Yagiz Nizipli) [#&#8203;48709](https://github.com/nodejs/node/pull/48709)
    
  • [`c3dbd0c1e4`](https://github.com/nodejs/node/commit/c3dbd0c1e4)] - **util**: use `primordials.ArrayPrototypeIndexOf` instead of mutable method (DaisyDogs07) [#&#8203;48586](https://github.com/nodejs/node/pull/48586)
    
  • [`b79b2927ca`](https://github.com/nodejs/node/commit/b79b2927ca)] - **watch**: decrease debounce rate (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926)
    
  • [`a12996298e`](https://github.com/nodejs/node/commit/a12996298e)] - **watch**: use debounce instead of throttle (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926)
    
    

v20.5.1: 2023-08-09, Version 20.5.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in August 2023 Security Releases blog post.

Commits
  • [`92300b51b4`](https://github.com/nodejs/node/commit/92300b51b4)] - **deps**: update archs files for openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036)
    
  • [`559698abf2`](https://github.com/nodejs/node/commit/559698abf2)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036)
    
  • [`1bf3429e8e`](https://github.com/nodejs/node/commit/1bf3429e8e)] - **lib,permission**: restrict process.binding when pm is enabled (RafaelGSS) [nodejs-private/node-private#438](https://github.com/nodejs-private/node-private/pull/438)
    
  • [`98a83a67e6`](https://github.com/nodejs/node/commit/98a83a67e6)] - **permission**: ensure to resolve path when calling mkdtemp (RafaelGSS) [nodejs-private/node-private#464](https://github.com/nodejs-private/node-private/pull/464)
    
  • [`1f0cde466b`](https://github.com/nodejs/node/commit/1f0cde466b)] - **permission**: handle buffer path on fs calls (RafaelGSS) [nodejs-private/node-private#439](https://github.com/nodejs-private/node-private/pull/439)
    
  • [`bd094d60ea`](https://github.com/nodejs/node/commit/bd094d60ea)] - **permission**: handle fstatfs and add pm supported list (RafaelGSS) [nodejs-private/node-private#441](https://github.com/nodejs-private/node-private/pull/441)
    
  • [`7337d21484`](https://github.com/nodejs/node/commit/7337d21484)] - **policy**: handle Module.constructor and main.extensions bypass (RafaelGSS) [nodejs-private/node-private#417](https://github.com/nodejs-private/node-private/pull/417)
    
  • [`cf348ec640`](https://github.com/nodejs/node/commit/cf348ec640)] - **policy**: disable process.binding() when enabled (Tobias Nießen) [nodejs-private/node-private#397](https://github.com/nodejs-private/node-private/pull/397)
    
    

v20.5.0: 2023-07-18, Version 20.5.0 (Current), @​juanarbol

Compare Source

Notable Changes
  • [`45be29d89f`](https://github.com/nodejs/node/commit/45be29d89f)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757)
    
  • [`a316808136`](https://github.com/nodejs/node/commit/a316808136)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596)
    
  • [`986b46a567`](https://github.com/nodejs/node/commit/986b46a567)] - **fs**: add a fast-path for readFileSync utf-8 (Yagiz Nizipli) [#&#8203;48658](https://github.com/nodejs/node/pull/48658)
    
  • [`0ef73ff6f0`](https://github.com/nodejs/node/commit/0ef73ff6f0)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639)
    
    
Commits
  • [`eb0aba59b8`](https://github.com/nodejs/node/commit/eb0aba59b8)] - **bootstrap**: use correct descriptor for Symbol.{dispose,asyncDispose} (Jordan Harband) [#&#8203;48703](https://github.com/nodejs/node/pull/48703)
    
  • [`e2d0195dcf`](https://github.com/nodejs/node/commit/e2d0195dcf)] - **bootstrap**: hide experimental web globals with flag kNoBrowserGlobals (Chengzhong Wu) [#&#8203;48545](https://github.com/nodejs/node/pull/48545)
    
  • [`67a1018389`](https://github.com/nodejs/node/commit/67a1018389)] - **build**: do not pass target toolchain flags to host toolchain (Ivan Trubach) [#&#8203;48597](https://github.com/nodejs/node/pull/48597)
    
  • [`7d843bb942`](https://github.com/nodejs/node/commit/7d843bb942)] - **child_process**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`4e08160f8c`](https://github.com/nodejs/node/commit/4e08160f8c)] - **child_process**: support `Symbol.dispose` (Moshe Atlow) [#&#8203;48551](https://github.com/nodejs/node/pull/48551)
    
  • [`ef7728bf36`](https://github.com/nodejs/node/commit/ef7728bf36)] - **deps**: update nghttp2 to 1.55.1 (Node.js GitHub Bot) [#&#8203;48790](https://github.com/nodejs/node/pull/48790)
    
  • [`1454f02499`](https://github.com/nodejs/node/commit/1454f02499)] - **deps**: update nghttp2 to 1.55.0 (Node.js GitHub Bot) [#&#8203;48746](https://github.com/nodejs/node/pull/48746)
    
  • [`fa94debf46`](https://github.com/nodejs/node/commit/fa94debf46)] - **deps**: update minimatch to 9.0.3 (Node.js GitHub Bot) [#&#8203;48704](https://github.com/nodejs/node/pull/48704)
    
  • [`c73cfcc144`](https://github.com/nodejs/node/commit/c73cfcc144)] - **deps**: update acorn to 8.10.0 (Node.js GitHub Bot) [#&#8203;48713](https://github.com/nodejs/node/pull/48713)
    
  • [`b7a076a052`](https://github.com/nodejs/node/commit/b7a076a052)] - **deps**: V8: cherry-pick [`cb00db4`](https://github.com/nodejs/node/commit/cb00db4dba6c) (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671)
    
  • [`150e15536b`](https://github.com/nodejs/node/commit/150e15536b)] - **deps**: upgrade npm to 9.8.0 (npm team) [#&#8203;48665](https://github.com/nodejs/node/pull/48665)
    
  • [`c47b2cbd35`](https://github.com/nodejs/node/commit/c47b2cbd35)] - **dgram**: socket add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717)
    
  • [`002ce31cca`](https://github.com/nodejs/node/commit/002ce31cca)] - **dgram**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`45be29d89f`](https://github.com/nodejs/node/commit/45be29d89f)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757)
    
  • [`69b55d2261`](https://github.com/nodejs/node/commit/69b55d2261)] - **doc**: fix ambiguity in http.md and https.md (an5er) [#&#8203;48692](https://github.com/nodejs/node/pull/48692)
    
  • [`caccb051c7`](https://github.com/nodejs/node/commit/caccb051c7)] - **doc**: clarify transform.\_transform() callback argument logic (Rafael Sofi-zada) [#&#8203;48680](https://github.com/nodejs/node/pull/48680)
    
  • [`999ae0c8c3`](https://github.com/nodejs/node/commit/999ae0c8c3)] - **doc**: fix copy node executable in Windows (Yoav Vainrich) [#&#8203;48624](https://github.com/nodejs/node/pull/48624)
    
  • [`7daefaeb44`](https://github.com/nodejs/node/commit/7daefaeb44)] - **doc**: drop \<b> of v20 changelog (Rafael Gonzaga) [#&#8203;48649](https://github.com/nodejs/node/pull/48649)
    
  • [`dd7ea3e1df`](https://github.com/nodejs/node/commit/dd7ea3e1df)] - **doc**: mention git node release prepare (Rafael Gonzaga) [#&#8203;48644](https://github.com/nodejs/node/pull/48644)
    
  • [`cc7809df21`](https://github.com/nodejs/node/commit/cc7809df21)] - **esm**: fix emit deprecation on legacy main resolve (Antoine du Hamel) [#&#8203;48664](https://github.com/nodejs/node/pull/48664)
    
  • [`67b13d1dba`](https://github.com/nodejs/node/commit/67b13d1dba)] - **events**: fix bug listenerCount don't compare wrapped listener (yuzheng14) [#&#8203;48592](https://github.com/nodejs/node/pull/48592)
    
  • [`a316808136`](https://github.com/nodejs/node/commit/a316808136)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596)
    
  • [`986b46a567`](https://github.com/nodejs/node/commit/986b46a567)] - **fs**: add a fast-path for readFileSync utf-8 (Yagiz Nizipli) [#&#8203;48658](https://github.com/nodejs/node/pull/48658)
    
  • [`e4333ac41f`](https://github.com/nodejs/node/commit/e4333ac41f)] - **http2**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`4a0b66e4f9`](https://github.com/nodejs/node/commit/4a0b66e4f9)] - **http2**: send RST code 8 on AbortController signal (Devraj Mehta) [#&#8203;48573](https://github.com/nodejs/node/pull/48573)
    
  • [`1295c76fce`](https://github.com/nodejs/node/commit/1295c76fce)] - **lib**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`dff6c25a36`](https://github.com/nodejs/node/commit/dff6c25a36)] - **meta**: bump actions/checkout from 3.5.2 to 3.5.3 (dependabot\[bot]) [#&#8203;48625](https://github.com/nodejs/node/pull/48625)
    
  • [`b5cb69ceaa`](https://github.com/nodejs/node/commit/b5cb69ceaa)] - **meta**: bump step-security/harden-runner from 2.4.0 to 2.4.1 (dependabot\[bot]) [#&#8203;48626](https://github.com/nodejs/node/pull/48626)
    
  • [`332e480b46`](https://github.com/nodejs/node/commit/332e480b46)] - **meta**: bump ossf/scorecard-action from 2.1.3 to 2.2.0 (dependabot\[bot]) [#&#8203;48628](https://github.com/nodejs/node/pull/48628)
    
  • [`25c5a0aaee`](https://github.com/nodejs/node/commit/25c5a0aaee)] - **meta**: bump github/codeql-action from 2.3.6 to 2.20.1 (dependabot\[bot]) [#&#8203;48627](https://github.com/nodejs/node/pull/48627)
    
  • [`6406f50ab1`](https://github.com/nodejs/node/commit/6406f50ab1)] - **module**: add SourceMap.lineLengths (Isaac Z. Schlueter) [#&#8203;48461](https://github.com/nodejs/node/pull/48461)
    
  • [`cfa69bd48c`](https://github.com/nodejs/node/commit/cfa69bd48c)] - **net**: server add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717)
    
  • [`ac11264cc5`](https://github.com/nodejs/node/commit/ac11264cc5)] - **net**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`82d6b13bf6`](https://github.com/nodejs/node/commit/82d6b13bf6)] - **permission**: add debug log when inserting fs nodes (Rafael Gonzaga) [#&#8203;48677](https://github.com/nodejs/node/pull/48677)
    
  • [`f4333b1cdd`](https://github.com/nodejs/node/commit/f4333b1cdd)] - **permission**: v8.writeHeapSnapshot and process.report (Rafael Gonzaga) [#&#8203;48564](https://github.com/nodejs/node/pull/48564)
    
  • [`f691dca6c9`](https://github.com/nodejs/node/commit/f691dca6c9)] - **readline**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`227e6bd898`](https://github.com/nodejs/node/commit/227e6bd898)] - **src**: pass syscall on `fs.readFileSync` fail operation (Yagiz Nizipli) [#&#8203;48815](https://github.com/nodejs/node/pull/48815)
    
  • [`a9a4b73653`](https://github.com/nodejs/node/commit/a9a4b73653)] - **src**: make BaseObject iteration order deterministic (Joyee Cheung) [#&#8203;48702](https://github.com/nodejs/node/pull/48702)
    
  • [`d99ea4845a`](https://github.com/nodejs/node/commit/d99ea4845a)] - **src**: remove kEagerCompile for CompileFunction (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671)
    
  • [`df363d0010`](https://github.com/nodejs/node/commit/df363d0010)] - **src**: deduplicate X509 getter implementations (Tobias Nießen) [#&#8203;48563](https://github.com/nodejs/node/pull/48563)
    
  • [`9cf2e1f55b`](https://github.com/nodejs/node/commit/9cf2e1f55b)] - **src,lib**: reducing C++ calls of esm legacy main resolve (Vinicius Lourenço) [#&#8203;48325](https://github.com/nodejs/node/pull/48325)
    
  • [`daeb21dde9`](https://github.com/nodejs/node/commit/daeb21dde9)] - **stream**: fix deadlock when pipeing to full sink (Robert Nagy) [#&#8203;48691](https://github.com/nodejs/node/pull/48691)
    
  • [`5a382d02d6`](https://github.com/nodejs/node/commit/5a382d02d6)] - **stream**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`6e82077dd4`](https://github.com/nodejs/node/commit/6e82077dd4)] - **test**: deflake test-net-throttle (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599)
    
  • [`d378b2c822`](https://github.com/nodejs/node/commit/d378b2c822)] - **test**: move test-net-throttle to parallel (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599)
    
  • [`dfa0aee5bf`](https://github.com/nodejs/node/commit/dfa0aee5bf)] - ***Revert*** "**test**: remove test-crypto-keygen flaky designation" (Luigi Pinca) [#&#8203;48652](https://github.com/nodejs/node/pull/48652)
    
  • [`0ef73ff6f0`](https://github.com/nodejs/node/commit/0ef73ff6f0)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639)
    
  • [`e2442bb7ef`](https://github.com/nodejs/node/commit/e2442bb7ef)] - **timers**: support Symbol.dispose (Moshe Atlow) [#&#8203;48633](https://github.com/nodejs/node/pull/48633)
    
  • [`4398ade426`](https://github.com/nodejs/node/commit/4398ade426)] - **tools**: run fetch_deps.py with Python 3 (Richard Lau) [#&#8203;48729](https://github.com/nodejs/node/pull/48729)
    
  • [`38ce95d054`](https://github.com/nodejs/node/commit/38ce95d054)] - **tools**: update doc to unist-util-select@5.0.0 unist-util-visit@5.0.0 (Node.js GitHub Bot) [#&#8203;48714](https://github.com/nodejs/node/pull/48714)
    
  • [`b25e78a998`](https://github.com/nodejs/node/commit/b25e78a998)] - **tools**: update lint-md-dependencies to rollup@3.26.2 (Node.js GitHub Bot) [#&#8203;48705](https://github.com/nodejs/node/pull/48705)
    
  • [`a1f4ff7c59`](https://github.com/nodejs/node/commit/a1f4ff7c59)] - **tools**: update eslint to 8.44.0 (Node.js GitHub Bot) [#&#8203;48632](https://github.com/nodejs/node/pull/48632)
    
  • [`42dc6eb698`](https://github.com/nodejs/node/commit/42dc6eb698)] - **tools**: update lint-md-dependencies to rollup@3.26.0 (Node.js GitHub Bot) [#&#8203;48631](https://github.com/nodejs/node/pull/48631)
    
  • [`07bfcc45ab`](https://github.com/nodejs/node/commit/07bfcc45ab)] - **url**: fix `canParse` false value when v8 optimizes (Yagiz Nizipli) [#&#8203;48817](https://github.com/nodejs/node/pull/48817)
    
    

v20.4.0: 2023-07-05, Version 20.4.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
Mock Timers

The new feature allows developers to write more reliable and predictable tests for time-dependent functionality.
It includes MockTimers with the ability to mock setTimeout, setInterval from globals, node:timers, and node:timers/promises.

The feature provides a simple API to advance time, enable specific timers, and release all timers.

import assert from 'node:assert';
import { test } from 'node:test';

test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
  const fn = context.mock.fn();
  // Optionally choose what to mock
  context.mock.timers.enable(['setTimeout']);
  const nineSecs = 9000;
  setTimeout(fn, nineSecs);

  const threeSeconds = 3000;
  context.mock.timers.tick(threeSeconds);
  context.mock.timers.tick(threeSeconds);
  context.mock.timers.tick(threeSeconds);

  assert.strictEqual(fn.mock.callCount(), 1);
});

This feature was contributed by Erick Wendel in #​47775.

Support to the explicit resource management proposal

Node is adding support to the explicit resource management
proposal to its resources allowing users of TypeScript/babel to use using/await using with
V8 support for everyone else on the way.

This feature was contributed by Moshe Atlow and Benjamin Gruenbaum in #​48518.

Other notable changes
  • [`fe333d2584`](https://github.com/nodejs/node/commit/fe333d2584)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416)
    
  • [`60c2ea4e79`](https://github.com/nodejs/node/commit/60c2ea4e79)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527)
    
  • [`5cacdf9e6b`](https://github.com/nodejs/node/commit/5cacdf9e6b)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449)
    
  • [`504d1d7bdc`](https://github.com/nodejs/node/commit/504d1d7bdc)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190)
    
    
Commits
  • [`8a611a387f`](https://github.com/nodejs/node/commit/8a611a387f)] - **benchmark**: add bar.R (Rafael Gonzaga) [#&#8203;47729](https://github.com/nodejs/node/pull/47729)
    
  • [`12fa716cf9`](https://github.com/nodejs/node/commit/12fa716cf9)] - **benchmark**: refactor crypto oneshot (Filip Skokan) [#&#8203;48267](https://github.com/nodejs/node/pull/48267)
    
  • [`d6ecbde592`](https://github.com/nodejs/node/commit/d6ecbde592)] - **benchmark**: add crypto.create\*Key (Filip Skokan) [#&#8203;48284](https://github.com/nodejs/node/pull/48284)
    
  • [`e60b6dedd8`](https://github.com/nodejs/node/commit/e60b6dedd8)] - **bootstrap**: unify snapshot builder and embedder entry points (Joyee Cheung) [#&#8203;48242](https://github.com/nodejs/node/pull/48242)
    
  • [`40662957b1`](https://github.com/nodejs/node/commit/40662957b1)] - **bootstrap**: simplify initialization of source map handlers (Joyee Cheung) [#&#8203;48304](https://github.com/nodejs/node/pull/48304)
    
  • [`6551538079`](https://github.com/nodejs/node/commit/6551538079)] - **build**: fix `configure --link-module` (Richard Lau) [#&#8203;48522](https://github.com/nodejs/node/pull/48522)
    
  • [`f7f32089e7`](https://github.com/nodejs/node/commit/f7f32089e7)] - **build**: sync libuv header change (Jiawen Geng) [#&#8203;48429](https://github.com/nodejs/node/pull/48429)
    
  • [`f60205c915`](https://github.com/nodejs/node/commit/f60205c915)] - **build**: update action to close stale PRs (Michael Dawson) [#&#8203;48196](https://github.com/nodejs/node/pull/48196)
    
  • [`4f4d0b802e`](https://github.com/nodejs/node/commit/4f4d0b802e)] - **child_process**: improve spawn performance on Linux (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523)
    
  • [`fe333d2584`](https://github.com/nodejs/node/commit/fe333d2584)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416)
    
  • [`89aaf16237`](https://github.com/nodejs/node/commit/89aaf16237)] - **crypto**: remove OPENSSL_FIPS guard for OpenSSL 3 (Richard Lau) [#&#8203;48392](https://github.com/nodejs/node/pull/48392)
    
  • [`6199e1946c`](https://github.com/nodejs/node/commit/6199e1946c)] - **deps**: upgrade to libuv 1.46.0 (Santiago Gimeno) [#&#8203;48618](https://github.com/nodejs/node/pull/48618)
    
  • [`1b2b930fda`](https://github.com/nodejs/node/commit/1b2b930fda)] - **deps**: add loong64 config into openssl gypi (Shi Pujin) [#&#8203;48043](https://github.com/nodejs/node/pull/48043)
    
  • [`ba8d048929`](https://github.com/nodejs/node/commit/ba8d048929)] - **deps**: update acorn to 8.9.0 (Node.js GitHub Bot) [#&#8203;48484](https://github.com/nodejs/node/pull/48484)
    
  • [`d96f921d06`](https://github.com/nodejs/node/commit/d96f921d06)] - **deps**: update zlib to 1.2.13.1-motley-f81f385 (Node.js GitHub Bot) [#&#8203;48541](https://github.com/nodejs/node/pull/48541)
    
  • [`ed1d047e8f`](https://github.com/nodejs/node/commit/ed1d047e8f)] - **deps**: update googletest to [`ec4fed9`](https://github.com/nodejs/node/commit/ec4fed9) (Node.js GitHub Bot) [#&#8203;48538](https://github.com/nodejs/node/pull/48538)
    
  • [`f43d718c67`](https://github.com/nodejs/node/commit/f43d718c67)] - **deps**: update minimatch to 9.0.2 (Node.js GitHub Bot) [#&#8203;48542](https://github.com/nodejs/node/pull/48542)
    
  • [`2f66147cbf`](https://github.com/nodejs/node/commit/2f66147cbf)] - **deps**: update corepack to 0.19.0 (Node.js GitHub Bot) [#&#8203;48540](https://github.com/nodejs/node/pull/48540)
    
  • [`d91b0fde73`](https://github.com/nodejs/node/commit/d91b0fde73)] - **deps**: V8: cherry-pick [`1a782f6`](https://github.com/nodejs/node/commit/1a782f6543ae) (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523)
    
  • [`112335e342`](https://github.com/nodejs/node/commit/112335e342)] - **deps**: update corepack to 0.18.1 (Node.js GitHub Bot) [#&#8203;48483](https://github.com/nodejs/node/pull/48483)
    
  • [`2b141c413f`](https://github.com/nodejs/node/commit/2b141c413f)] - **deps**: update icu to 73.2 (Node.js GitHub Bot) [#&#8203;48502](https://github.com/nodejs/node/pull/48502)
    
  • [`188b34d4a1`](https://github.com/nodejs/node/commit/188b34d4a1)] - **deps**: upgrade npm to 9.7.2 (npm team) [#&#8203;48514](https://github.com/nodejs/node/pull/48514)
    
  • [`bf0444b5d9`](https://github.com/nodejs/node/commit/bf0444b5d9)] - **deps**: update zlib to 1.2.13.1-motley-3ca9f16 (Node.js GitHub Bot) [#&#8203;48413](https://github.com/nodejs/node/pull/48413)
    
  • [`b339d80a56`](https://github.com/nodejs/node/commit/b339d80a56)] - **deps**: upgrade npm to 9.7.1 (npm team) [#&#8203;48378](https://github.com/nodejs/node/pull/48378)
    
  • [`4132931b87`](https://github.com/nodejs/node/commit/4132931b87)] - **deps**: update simdutf to 3.2.14 (Node.js GitHub Bot) [#&#8203;48344](https://github.com/nodejs/node/pull/48344)
    
  • [`8cd56c1e85`](https://github.com/nodejs/node/commit/8cd56c1e85)] - **deps**: update ada to 2.5.1 (Node.js GitHub Bot) [#&#8203;48319](https://github.com/nodejs/node/pull/48319)
    
  • [`78cffcd645`](https://github.com/nodejs/node/commit/78cffcd645)] - **deps**: update zlib to [`982b036`](https://github.com/nodejs/node/commit/982b036) (Node.js GitHub Bot) [#&#8203;48327](https://github.com/nodejs/node/pull/48327)
    
  • [`6d00c2e33b`](https://github.com/nodejs/node/commit/6d00c2e33b)] - **doc**: fix options order (Luigi Pinca) [#&#8203;48617](https://github.com/nodejs/node/pull/48617)
    
  • [`7ad2d3a5d1`](https://github.com/nodejs/node/commit/7ad2d3a5d1)] - **doc**: update security release stewards (Rafael Gonzaga) [#&#8203;48569](https://github.com/nodejs/node/pull/48569)
    
  • [`cc3a056fdd`](https://github.com/nodejs/node/commit/cc3a056fdd)] - **doc**: update return type for describe (Shrujal Shah) [#&#8203;48572](https://github.com/nodejs/node/pull/48572)
    
  • [`99ae0b98af`](https://github.com/nodejs/node/commit/99ae0b98af)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48552](https://github.com/nodejs/node/pull/48552)
    
  • [`9750d8205c`](https://github.com/nodejs/node/commit/9750d8205c)] - **doc**: add description of autoAllocateChunkSize in ReadableStream (Debadree Chatterjee) [#&#8203;48004](https://github.com/nodejs/node/pull/48004)
    
  • [`417927bb41`](https://github.com/nodejs/node/commit/417927bb41)] - **doc**: fix `filename` type in `watch` result (Dmitry Semigradsky) [#&#8203;48032](https://github.com/nodejs/node/pull/48032)
    
  • [`ca2ae86bd7`](https://github.com/nodejs/node/commit/ca2ae86bd7)] - **doc**: unnest `mime` and `MIMEParams` from MIMEType constructor (Dmitry Semigradsky) [#&#8203;47950](https://github.com/nodejs/node/pull/47950)
    
  • [`bda1228135`](https://github.com/nodejs/node/commit/bda1228135)] - **doc**: update security-release-process.md (Rafael Gonzaga) [#&#8203;48504](https://github.com/nodejs/node/pull/48504)
    
  • [`60c2ea4e79`](https://github.com/nodejs/node/commit/60c2ea4e79)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527)
    
  • [`37bc0eac4a`](https://github.com/nodejs/node/commit/37bc0eac4a)] - **doc**: improve inspector.close() description (mary marchini) [#&#8203;48494](https://github.com/nodejs/node/pull/48494)
    
  • [`2a403cdad5`](https://github.com/nodejs/node/commit/2a403cdad5)] - **doc**: link to Runtime Keys in export conditions (Jacob Hummer) [#&#8203;48408](https://github.com/nodejs/node/pull/48408)
    
  • [`e2d579e644`](https://github.com/nodejs/node/commit/e2d579e644)] - **doc**: update fs flags documentation (sinkhaha) [#&#8203;48463](https://github.com/nodejs/node/pull/48463)
    
  • [`38bf290115`](https://github.com/nodejs/node/commit/38bf290115)] - **doc**: revise `error.md` introduction (Antoine du Hamel) [#&#8203;48423](https://github.com/nodejs/node/pull/48423)
    
  • [`641a2e9c6d`](https://github.com/nodejs/node/commit/641a2e9c6d)] - **doc**: add preveen-stack to triagers (Preveen P) [#&#8203;48387](https://github.com/nodejs/node/pull/48387)
    
  • [`4ab5e8d2e3`](https://github.com/nodejs/node/commit/4ab5e8d2e3)] - **doc**: refine when file is undefined in test events (Moshe Atlow) [#&#8203;48451](https://github.com/nodejs/node/pull/48451)
    
  • [`5cacdf9e6b`](https://github.com/nodejs/node/commit/5cacdf9e6b)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449)
    
  • [`b9c643e3ef`](https://github.com/nodejs/node/commit/b9c643e3ef)] - **doc**: add additional info on TSFN dispatch (Michael Dawson) [#&#8203;48367](https://github.com/nodejs/node/pull/48367)
    
  • [`17a0e1d1bf`](https://github.com/nodejs/node/commit/17a0e1d1bf)] - **doc**: add link for news from security wg (Michael Dawson) [#&#8203;48396](https://github.com/nodejs/node/pull/48396)
    
  • [`3a62994a4f`](https://github.com/nodejs/node/commit/3a62994a4f)] - **doc**: fix typo in events.md (Darshan Sen) [#&#8203;48436](https://github.com/nodejs/node/pull/48436)
    
  • [`e10a4cdf68`](https://github.com/nodejs/node/commit/e10a4cdf68)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48336](https://github.com/nodejs/node/pull/48336)
    
  • [`19fde638fd`](https://github.com/nodejs/node/commit/19fde638fd)] - **fs**: call the callback with an error if writeSync fails (killa) [#&#8203;47949](https://github.com/nodejs/node/pull/47949)
    
  • [`4cad9fd8bd`](https://github.com/nodejs/node/commit/4cad9fd8bd)] - **fs**: remove unneeded return statement (Luigi Pinca) [#&#8203;48526](https://github.com/nodejs/node/pull/48526)
    
  • [`d367b73f43`](https://github.com/nodejs/node/commit/d367b73f43)] - **fs**: use kResistStopPropagation (Chemi Atlow) [#&#8203;48521](https://github.com/nodejs/node/pull/48521)
    
  • [`e50c3169af`](https://github.com/nodejs/node/commit/e50c3169af)] - **fs, stream**: initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) [#&#8203;48518](https://github.com/nodejs/node/pull/48518)
    
  • [`7d8a0b6eb7`](https://github.com/nodejs/node/commit/7d8a0b6eb7)] - **http**: null the joinDuplicateHeaders property on cleanup (Luigi Pinca) [#&#8203;48608](https://github.com/nodejs/node/pull/48608)
    
  • [`94ebb02f59`](https://github.com/nodejs/node/commit/94ebb02f59)] - **http**: server add async dispose (atlowChemi) [#&#8203;48548](https://github.com/nodejs/node/pull/48548)
    
  • [`c6a69e31a3`](https://github.com/nodejs/node/commit/c6a69e31a3)] - **http**: remove useless ternary in test (geekreal) [#&#8203;48481](https://github.com/nodejs/node/pull/48481)
    
  • [`2f0f40328f`](https://github.com/nodejs/node/commit/2f0f40328f)] - **http**: fix for handling on boot timers headers and request (Franciszek Koltuniuk) [#&#8203;48291](https://github.com/nodejs/node/pull/48291)
    
  • [`5378ad8ab1`](https://github.com/nodejs/node/commit/5378ad8ab1)] - **http2**: server add `asyncDispose` (atlowChemi) [#&#8203;48548](https://github.com/nodejs/node/pull/48548)
    
  • [`97a58c5970`](https://github.com/nodejs/node/commit/97a58c5970)] - **https**: server add `asyncDispose` (atlowChemi) [#&#8203;48548](https://github.com/nodejs/node/pull/48548)
    
  • [`40ae6eb6aa`](https://github.com/nodejs/node/commit/40ae6eb6aa)] - **https**: fix connection checking interval not clearing on server close (Nitzan Uziely) [#&#8203;48383](https://github.com/nodejs/node/pull/48383)
    
  • [`15530fea4c`](https://github.com/nodejs/node/commit/15530fea4c)] - **lib**: merge cjs and esm package json reader caches (Yagiz Nizipli) [#&#8203;48477](https://github.com/nodejs/node/pull/48477)
    
  • [`32bda81c31`](https://github.com/nodejs/node/commit/32bda81c31)] - **lib**: reduce url getters on `makeRequireFunction` (Yagiz Nizipli) [#&#8203;48492](https://github.com/nodejs/node/pull/48492)
    
  • [`0da03f01ba`](https://github.com/nodejs/node/commit/0da03f01ba)] - **lib**: remove duplicated requires in check_syntax (Yagiz Nizipli) [#&#8203;48508](https://github.com/nodejs/node/pull/48508)
    
  • [`97b00c347d`](https://github.com/nodejs/node/commit/97b00c347d)] - **lib**: add option to force handling stopped events (Chemi Atlow) [#&#8203;48301](https://github.com/nodejs/node/pull/48301)
    
  • [`fe16749649`](https://github.com/nodejs/node/commit/fe16749649)] - **lib**: fix output message when repl is used with pm (Rafael Gonzaga) [#&#8203;48438](https://github.com/nodejs/node/pull/48438)
    
  • [`8c2c02d28a`](https://github.com/nodejs/node/commit/8c2c02d28a)] - **lib**: create weakRef only if any signals provided (Chemi Atlow) [#&#8203;48448](https://github.com/nodejs/node/pull/48448)
    
  • [`b6ae411ea9`](https://github.com/nodejs/node/commit/b6ae411ea9)] - **lib**: remove obsolete deletion of bufferBinding.zeroFill (Chengzhong Wu) [#&#8203;47881](https://github.com/nodejs/node/pull/47881)
    
  • [`562b3d4856`](https://github.com/nodejs/node/commit/562b3d4856)] - **lib**: move web global bootstrapping to the expected file (Chengzhong Wu) [#&#8203;47881](https://github.com/nodejs/node/pull/47881)
    
  • [`f9c0d5acac`](https://github.com/nodejs/node/commit/f9c0d5acac)] - **lib**: fix blob.stream() causing hanging promises (Debadree Chatterjee) [#&#8203;48232](https://github.com/nodejs/node/pull/48232)
    
  • [`0162a0f5bf`](https://github.com/nodejs/node/commit/0162a0f5bf)] - **lib**: add support for inherited custom inspection methods (Antoine du Hamel) [#&#8203;48306](https://github.com/nodejs/node/pull/48306)
    
  • [`159ab6627a`](https://github.com/nodejs/node/commit/159ab6627a)] - **lib**: reduce URL invocations on http2 origins (Yagiz Nizipli) [#&#8203;48338](https://github.com/nodejs/node/pull/48338)
    
  • [`f0709fdc59`](https://github.com/nodejs/node/commit/f0709fdc59)] - **module**: add SourceMap.findOrigin (Isaac Z. Schlueter) [#&#8203;47790](https://github.com/nodejs/node/pull/47790)
    
  • [`4ec2d925b1`](https://github.com/nodejs/node/commit/4ec2d925b1)] - **module**: reduce url invocations in esm/load.js (Yagiz Nizipli) [#&#8203;48337](https://github.com/nodejs/node/pull/48337)
    
  • [`2c363971cc`](https://github.com/nodejs/node/commit/2c363971cc)] - **net**: improve network family autoselection handle handling (Paolo Insogna) [#&#8203;48464](https://github.com/nodejs/node/pull/48464)
    
  • [`dbf9e9ffc8`](https://github.com/nodejs/node/commit/dbf9e9ffc8)] - **node-api**: provide napi_define_properties fast path (Gabriel Schulhof) [#&#8203;48440](https://github.com/nodejs/node/pull/48440)
    
  • [`87ad657777`](https://github.com/nodejs/node/commit/87ad657777)] - **node-api**: implement external strings (Gabriel Schulhof) [#&#8203;48339](https://github.com/nodejs/node/pull/48339)
    
  • [`4efa6807ea`](https://github.com/nodejs/node/commit/4efa6807ea)] - **permission**: handle end nodes with children cases (Rafael Gonzaga) [#&#8203;48531](https://github.com/nodejs/node/pull/48531)
    
  • [`84fe811108`](https://github.com/nodejs/node/commit/84fe811108)] - **repl**: display dynamic import variant in static import error messages (Hemanth HM) [#&#8203;48129](https://github.com/nodejs/node/pull/48129)
    
  • [`bdcc037470`](https://github.com/nodejs/node/commit/bdcc037470)] - **report**: disable js stack when no context is entered (Chengzhong Wu) [#&#8203;48495](https://github.com/nodejs/node/pull/48495)
    
  • [`97bd9ccd04`](https://github.com/nodejs/node/commit/97bd9ccd04)] - **src**: fix uninitialized field access in AsyncHooks (Jan Olaf Krems) [#&#8203;48566](https://github.com/nodejs/node/pull/48566)
    
  • [`404958fc96`](https://github.com/nodejs/node/commit/404958fc96)] - **src**: fix Coverity issue regarding unnecessary copy (Yagiz Nizipli) [#&#8203;48565](https://github.com/nodejs/node/pull/48565)
    
  • [`c4b8edea24`](https://github.com/nodejs/node/commit/c4b8edea24)] - **src**: refactor `SplitString` in util (Yagiz Nizipli) [#&#8203;48491](https://github.com/nodejs/node/pull/48491)
    
  • [`5bc13a4772`](https://github.com/nodejs/node/commit/5bc13a4772)] - **src**: revert IS_RELEASE (Rafael Gonzaga) [#&#8203;48505](https://github.com/nodejs/node/pull/48505)
    
  • [`4971e46051`](https://github.com/nodejs/node/commit/4971e46051)] - **src**: add V8 fast api to `guessHandleType` (Yagiz Nizipli) [#&#8203;48349](https://github.com/nodejs/node/pull/48349)
    
  • [`954e46e792`](https://github.com/nodejs/node/commit/954e46e792)] - **src**: return uint32 for `guessHandleType` (Yagiz Nizipli) [#&#8203;48349](https://github.com/nodejs/node/pull/48349)
    
  • [`05009675da`](https://github.com/nodejs/node/commit/05009675da)] - **src**: make realm binding data store weak (Chengzhong Wu) [#&#8203;47688](https://github.com/nodejs/node/pull/47688)
    
  • [`120ac74352`](https://github.com/nodejs/node/commit/120ac74352)] - **src**: remove aliased buffer weak callback (Chengzhong Wu) [#&#8203;47688](https://github.com/nodejs/node/pull/47688)
    
  • [`6591826e99`](https://github.com/nodejs/node/commit/6591826e99)] - **src**: handle wasm out of bound in osx will raise SIGBUS correctly (Congcong Cai) [#&#8203;46561](https://github.com/nodejs/node/pull/46561)
    
  • [`1b84ddeec2`](https://github.com/nodejs/node/commit/1b84ddeec2)] - **src**: implement constants binding directly (Joyee Cheung) [#&#8203;48186](https://github.com/nodejs/node/pull/48186)
    
  • [`06d49c1f10`](https://github.com/nodejs/node/commit/06d49c1f10)] - **src**: implement natives binding without special casing (Joyee Cheung) [#&#8203;48186](https://github.com/nodejs/node/pull/48186)
    
  • [`325441abf5`](https://github.com/nodejs/node/commit/325441abf5)] - **src**: add missing to_ascii method in dns queries (Daniel Lemire) [#&#8203;48354](https://github.com/nodejs/node/pull/48354)
    
  • [`84d0eb74b8`](https://github.com/nodejs/node/commit/84d0eb74b8)] - **stream**: fix premature pipeline end (Robert Nagy) [#&#8203;48435](https://github.com/nodejs/node/pull/48435)
    
  • [`3df7368735`](https://github.com/nodejs/node/commit/3df7368735)] - **test**: add missing assertions to test-runner-cli (Moshe Atlow) [#&#8203;48593](https://github.com/nodejs/node/pull/48593)
    
  • [`07eb310b0d`](https://github.com/nodejs/node/commit/07eb310b0d)] - **test**: remove test-crypto-keygen flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575)
    
  • [`75aa0a7682`](https://github.com/nodejs/node/commit/75aa0a7682)] - **test**: remove test-timers-immediate-queue flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575)
    
  • [`a9756f3126`](https://github.com/nodejs/node/commit/a9756f3126)] - **test**: add Symbol.dispose support to mock timers (Benjamin Gruenbaum) [#&#8203;48549](https://github.com/nodejs/node/pull/48549)
    
  • [`0f912a7248`](https://github.com/nodejs/node/commit/0f912a7248)] - **test**: mark test-child-process-stdio-reuse-readable-stdio flaky (Luigi Pinca) [#&#8203;48537](https://github.com/nodejs/node/pull/48537)
    
  • [`30f4bc4985`](https://github.com/nodejs/node/commit/30f4bc4985)] - **test**: make IsolateData per-isolate in cctest (Joyee Cheung) [#&#8203;48450](https://github.com/nodejs/node/pull/48450)
    
  • [`407ce3fdcb`](https://github.com/nodejs/node/commit/407ce3fdcb)] - **test**: define NAPI_VERSION before including node_api.h (Chengzhong Wu) [#&#8203;48376](https://github.com/nodejs/node/pull/48376)
    
  • [`24a8fa95f0`](https://github.com/nodejs/node/commit/24a8fa95f0)] - **test**: remove unnecessary noop function args to `mustNotCall()` (Antoine du Hamel) [#&#8203;48513](https://github.com/nodejs/node/pull/48513)
    
  • [`09af579775`](https://github.com/nodejs/node/commit/09af579775)] - **test**: skip test-runner-watch-mode on IBMi (Moshe Atlow) [#&#8203;48473](https://github.com/nodejs/node/pull/48473)
    
  • [`77cb1ee0b2`](https://github.com/nodejs/node/commit/77cb1ee0b2)] - **test**: add missing \<algorithm> include for std::find (Sam James) [#&#8203;48380](https://github.com/nodejs/node/pull/48380)
    
  • [`7c790ca03c`](https://github.com/nodejs/node/commit/7c790ca03c)] - **test**: fix flaky test-watch-mode (Moshe Atlow) [#&#8203;48147](https://github.com/nodejs/node/pull/48147)
    
  • [`1398829746`](https://github.com/nodejs/node/commit/1398829746)] - **test**: fix `test-net-autoselectfamily` for kernel without IPv6 support (Livia Medeiros) [#&#8203;48265](https://github.com/nodejs/node/pull/48265)
    
  • [`764119ba4b`](https://github.com/nodejs/node/commit/764119ba4b)] - **test**: update url web-platform tests (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319)
    
  • [`f1ead59629`](https://github.com/nodejs/node/commit/f1ead59629)] - **test**: ignore the copied entry_point.c (Luigi Pinca) [#&#8203;48297](https://github.com/nodejs/node/pull/48297)
    
  • [`fc5d1bddcb`](https://github.com/nodejs/node/commit/fc5d1bddcb)] - **test**: refactor test-gc-http-client-timeout (Luigi Pinca) [#&#8203;48292](https://github.com/nodejs/node/pull/48292)
    
  • [`46a3d068a0`](https://github.com/nodejs/node/commit/46a3d068a0)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;48320](https://github.com/nodejs/node/pull/48320)
    
  • [`141e5aad83`](https://github.com/nodejs/node/commit/141e5aad83)] - **test**: update FileAPI web-platform tests (Yagiz Nizipli) [#&#8203;48322](https://github.com/nodejs/node/pull/48322)
    
  • [`83cfc67099`](https://github.com/nodejs/node/commit/83cfc67099)] - **test**: update user-timing web-platform tests (Yagiz Nizipli) [#&#8203;48321](https://github.com/nodejs/node/pull/48321)
    
  • [`2c56835a33`](https://github.com/nodejs/node/commit/2c56835a33)] - **test_runner**: fixed `test` shorthands return type (Shocker) [#&#8203;48555](https://github.com/nodejs/node/pull/48555)
    
  • [`7d01c8894a`](https://github.com/nodejs/node/commit/7d01c8894a)] - **(SEMVER-MINOR)** **test_runner**: add initial draft for fakeTimers (Erick Wendel) [#&#8203;47775](https://github.com/nodejs/node/pull/47775)
    
  • [`de4f14c249`](https://github.com/nodejs/node/commit/de4f14c249)] - **test_runner**: add enqueue and dequeue events (Moshe Atlow) [#&#8203;48428](https://github.com/nodejs/node/pull/48428)
    
  • [`5ebe3a4ea7`](https://github.com/nodejs/node/commit/5ebe3a4ea7)] - **test_runner**: make `--test-name-pattern` recursive (Moshe Atlow) [#&#8203;48382](https://github.com/nodejs/node/pull/48382)
    
  • [`93bf447308`](https://github.com/nodejs/node/commit/93bf447308)] - **test_runner**: refactor coverage report output for readability (Damien Seguin) [#&#8203;47791](https://github.com/nodejs/node/pull/47791)
    
  • [`504d1d7bdc`](https://github.com/nodejs/node/commit/504d1d7bdc)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190)
    
  • [`203c3cf4ca`](https://github.com/nodejs/node/commit/203c3cf4ca)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48544](https://github.com/nodejs/node/pull/48544)
    
  • [`333907b19d`](https://github.com/nodejs/node/commit/333907b19d)] - **tools**: speedup compilation of js2c output (Keyhan Vakil) [#&#8203;48160](https://github.com/nodejs/node/pull/48160)
    
  • [`10bd5f4d97`](https://github.com/nodejs/node/commit/10bd5f4d97)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48486](https://github.com/nodejs/node/pull/48486)
    
  • [`52de27b9fe`](https://github.com/nodejs/node/commit/52de27b9fe)] - **tools**: pin ruff version number (Rich Trott) [#&#8203;48505](https://github.com/nodejs/node/pull/48505)
    
  • [`4345526644`](https://github.com/nodejs/node/commit/4345526644)] - **tools**: replace sed with perl (Luigi Pinca) [#&#8203;48499](https://github.com/nodejs/node/pull/48499)
    
  • [`6c590835f3`](https://github.com/nodejs/node/commit/6c590835f3)] - **tools**: automate update openssl v16 (Marco Ippolito) [#&#8203;48377](https://github.com/nodejs/node/pull/48377)
    
  • [`90b5335338`](https://github.com/nodejs/node/commit/90b5335338)] - **tools**: update eslint to 8.43.0 (Node.js GitHub Bot) [#&#8203;48487](https://github.com/nodejs/node/pull/48487)
    
  • [`cd83530a11`](https://github.com/nodejs/node/commit/cd83530a11)] - **tools**: update doc to to-vfile@8.0.0 (Node.js GitHub Bot) [#&#8203;48485](https://github.com/nodejs/node/pull/48485)
    
  • [`e500b439bd`](https://github.com/nodejs/node/commit/e500b439bd)] - **tools**: prepare tools/doc for to-vfile 8.0.0 (Rich Trott) [#&#8203;48485](https://github.com/nodejs/node/pull/48485)
    
  • [`d623616813`](https://github.com/nodejs/node/commit/d623616813)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48417](https://github.com/nodejs/node/pull/48417)
    
  • [`a2e107dde4`](https://github.com/nodejs/node/commit/a2e107dde4)] - **tools**: update create-or-update-pull-request-action (Richard Lau) [#&#8203;48398](https://github.com/nodejs/node/pull/48398)
    
  • [`8009e2c3be`](https://github.com/nodejs/node/commit/8009e2c3be)] - **tools**: update eslint-plugin-jsdoc (Richard Lau) [#&#8203;48393](https://github.com/nodejs/node/pull/48393)
    
  • [`10385c8565`](https://github.com/nodejs/node/commit/10385c8565)] - **tools**: add version update to external dependencies (Andrea Fassina) [#&#8203;48081](https://github.com/nodejs/node/pull/48081)
    
  • [`b1cef81b18`](https://github.com/nodejs/node/commit/b1cef81b18)] - **tools**: update eslint to 8.42.0 (Node.js GitHub Bot) [#&#8203;48328](https://github.com/nodejs/node/pull/48328)
    
  • [`0923dc0b8e`](https://github.com/nodejs/node/commit/0923dc0b8e)] - **tools**: disable jsdoc/no-defaults rule (Luigi Pinca) [#&#8203;48328](https://github.com/nodejs/node/pull/48328)
    
  • [`b03146da85`](https://github.com/nodejs/node/commit/b03146da85)] - **typings**: remove unused primordials (Yagiz Nizipli) [#&#8203;48509](https://github.com/nodejs/node/pull/48509)
    
  • [`e9c9d187b9`](https://github.com/nodejs/node/commit/e9c9d187b9)] - **typings**: fix JSDoc in ESM loader modules (Antoine du Hamel) [#&#8203;48424](https://github.com/nodejs/node/pull/48424)
    
  • [`fafe651d23`](https://github.com/nodejs/node/commit/fafe651d23)] - **url**: conform to origin getter spec changes (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319)
    
    

v20.3.1: 2023-06-20, Version 20.3.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in June 2023 Security Releases blog post.

Commits
  • [`dac08dafc9`](https://github.com/nodejs/node/commit/dac08dafc9)] - **crypto**: handle cert with invalid SPKI gracefully (Tobias Nießen) [nodejs-private/node-private#393](https://github.com/nodejs-private/node-private/pull/393)
    
  • [`d274c3babc`](https://github.com/nodejs/node/commit/d274c3babc)] - **crypto,https,tls**: disable engines if perms enabled (Tobias Nießen) [nodejs-private/node-private#409](https://github.com/nodejs-private/node-private/pull/409)
    
  • [`5621c1de38`](https://github.com/nodejs/node/commit/5621c1de38)] - **deps**: update archs files for openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402)
    
  • [`771caa9f1c`](https://github.com/nodejs/node/commit/771caa9f1c)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402)
    
  • [`0459bf9c99`](https://github.com/nodejs/node/commit/0459bf9c99)] - **doc,test**: clarify behavior of DH generateKeys (Tobias Nießen) [nodejs-private/node-private#426](https://github.com/nodejs-private/node-private/pull/426)
    
  • [`27e20501aa`](https://github.com/nodejs/node/commit/27e20501aa)] - **http**: disable request smuggling via empty headers (Paolo Insogna) [nodejs-private/node-private#427](https://github.com/nodejs-private/node-private/pull/427)
    
  • [`9c17e335f1`](https://github.com/nodejs/node/commit/9c17e335f1)] - **msi**: do not create AppData\Roaming\npm (Tobias Nießen) [nodejs-private/node-private#408](https://github.com/nodejs-private/node-private/pull/408)
    
  • [`b51124c637`](https://github.com/nodejs/node/commit/b51124c637)] - **permission**: handle fs path traversal (RafaelGSS) [nodejs-private/node-private#403](https://github.com/nodejs-private/node-private/pull/403)
    
  • [`ebc5927adc`](https://github.com/nodejs/node/commit/ebc5927adc)] - **permission**: handle fs.openAsBlob (RafaelGSS) [nodejs-private/node-private#405](https://github.com/nodejs-private/node-private/pull/405)
    
  • [`c39a43bff5`](https://github.com/nodejs/node/commit/c39a43bff5)] - **permission**: handle fs.watchFile (RafaelGSS) [nodejs-private/node-private#404](https://github.com/nodejs-private/node-private/pull/404)
    
  • [`d0a8264ec9`](https://github.com/nodejs/node/commit/d0a8264ec9)] - **policy**: handle mainModule.\__proto\_\_ bypass (RafaelGSS) [nodejs-private/node-private#416](https://github.com/nodejs-private/node-private/pull/416)
    
  • [`3df13d5a79`](https://github.com/nodejs/node/commit/3df13d5a79)] - **src,permission**: restrict inspector when pm enabled (RafaelGSS) [nodejs-private/node-private#410](https://github.com/nodejs-private/node-private/pull/410)
    
    

v20.3.0: 2023-06-08, Version 20.3.0 (Current), @​targos

Compare Source

Notable Changes
  • [`bfcb3d1d9a`](https://github.com/nodejs/node/commit/bfcb3d1d9a)] - **deps**: upgrade to libuv 1.45.0, including significant performance improvements to file system operations on Linux (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`5094d1b292`](https://github.com/nodejs/node/commit/5094d1b292)] - **doc**: add Ruy Adorno to list of TSC members (Michael Dawson) [#&#8203;48172](https://github.com/nodejs/node/pull/48172)
    
  • [`2f5dbca690`](https://github.com/nodejs/node/commit/2f5dbca690)] - **doc**: mark Node.js 14 as End-of-Life (Richard Lau) [#&#8203;48023](https://github.com/nodejs/node/pull/48023)
    
  • [`b1828b325e`](https://github.com/nodejs/node/commit/b1828b325e)] - **(SEMVER-MINOR)** **lib**: implement `AbortSignal.any()` (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821)
    
  • [`f380953103`](https://github.com/nodejs/node/commit/f380953103)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824)
    
  • [`a94f87ed99`](https://github.com/nodejs/node/commit/a94f87ed99)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151)
    
  • [`9e2b13dfa7`](https://github.com/nodejs/node/commit/9e2b13dfa7)] - **stream**: deprecate `asIndexedPairs` (Chemi Atlow) [#&#8203;48102](https://github.com/nodejs/node/pull/48102)
    
    
Commits
  • [`35c96156d1`](https://github.com/nodejs/node/commit/35c96156d1)] - **benchmark**: use `cluster.isPrimary` instead of `cluster.isMaster` (Deokjin Kim) [#&#8203;48002](https://github.com/nodejs/node/pull/48002)
    
  • [`3e6e3abf32`](https://github.com/nodejs/node/commit/3e6e3abf32)] - **bootstrap**: throw ERR_NOT_SUPPORTED_IN_SNAPSHOT in unsupported operation (Joyee Cheung) [#&#8203;47887](https://github.com/nodejs/node/pull/47887)
    
  • [`c480559347`](https://github.com/nodejs/node/commit/c480559347)] - **bootstrap**: put is_building_snapshot state in IsolateData (Joyee Cheung) [#&#8203;47887](https://github.com/nodejs/node/pull/47887)
    
  • [`50c0a15535`](https://github.com/nodejs/node/commit/50c0a15535)] - **build**: set v8\_enable_webassembly=false when lite mode is enabled (Cheng Shao) [#&#8203;48248](https://github.com/nodejs/node/pull/48248)
    
  • [`4562805cf6`](https://github.com/nodejs/node/commit/4562805cf6)] - **build**: speed up compilation of mksnapshot output (Keyhan Vakil) [#&#8203;48162](https://github.com/nodejs/node/pull/48162)
    
  • [`8b89f13933`](https://github.com/nodejs/node/commit/8b89f13933)] - **build**: add action to close stale PRs (Michael Dawson) [#&#8203;48051](https://github.com/nodejs/node/pull/48051)
    
  • [`5d92202220`](https://github.com/nodejs/node/commit/5d92202220)] - **build**: replace js2c.py with js2c.cc (Joyee Cheung) [#&#8203;46997](https://github.com/nodejs/node/pull/46997)
    
  • [`6cf2adc36e`](https://github.com/nodejs/node/commit/6cf2adc36e)] - **cluster**: use ObjectPrototypeHasOwnProperty (Daeyeon Jeong) [#&#8203;48141](https://github.com/nodejs/node/pull/48141)
    
  • [`f564b03c38`](https://github.com/nodejs/node/commit/f564b03c38)] - **crypto**: use openssl's own memory BIOs in crypto_context.cc (GauriSpears) [#&#8203;47160](https://github.com/nodejs/node/pull/47160)
    
  • [`ac8dd61fc3`](https://github.com/nodejs/node/commit/ac8dd61fc3)] - **crypto**: remove default encoding from cipher (Tobias Nießen) [#&#8203;47998](https://github.com/nodejs/node/pull/47998)
    
  • [`15c2de4407`](https://github.com/nodejs/node/commit/15c2de4407)] - **crypto**: fix setEngine() when OPENSSL_NO_ENGINE set (Tobias Nießen) [#&#8203;47977](https://github.com/nodejs/node/pull/47977)
    
  • [`9e2dd5b5e2`](https://github.com/nodejs/node/commit/9e2dd5b5e2)] - **deps**: update zlib to [`337322d`](https://github.com/nodejs/node/commit/337322d) (Node.js GitHub Bot) [#&#8203;48218](https://github.com/nodejs/node/pull/48218)
    
  • [`bfcb3d1d9a`](https://github.com/nodejs/node/commit/bfcb3d1d9a)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`13930f092f`](https://github.com/nodejs/node/commit/13930f092f)] - **deps**: update ada to 2.5.0 (Node.js GitHub Bot) [#&#8203;48223](https://github.com/nodejs/node/pull/48223)
    
  • [`3047caebec`](https://github.com/nodejs/node/commit/3047caebec)] - **deps**: set `CARES_RANDOM_FILE` for c-ares (Richard Lau) [#&#8203;48156](https://github.com/nodejs/node/pull/48156)
    
  • [`0db79a0872`](https://github.com/nodejs/node/commit/0db79a0872)] - **deps**: update histogram 0.11.8 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742)
    
  • [`99af6716f5`](https://github.com/nodejs/node/commit/99af6716f5)] - **deps**: update histogram to 0.11.7 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742)
    
  • [`d4922bc985`](https://github.com/nodejs/node/commit/d4922bc985)] - **deps**: update c-ares to 1.19.1 (Node.js GitHub Bot) [#&#8203;48115](https://github.com/nodejs/node/pull/48115)
    
  • [`f6ccdb289f`](https://github.com/nodejs/node/commit/f6ccdb289f)] - **deps**: update simdutf to 3.2.12 (Node.js GitHub Bot) [#&#8203;48118](https://github.com/nodejs/node/pull/48118)
    
  • [`3ed0afc778`](https://github.com/nodejs/node/commit/3ed0afc778)] - **deps**: update minimatch to 9.0.1 (Node.js GitHub Bot) [#&#8203;48094](https://github.com/nodejs/node/pull/48094)
    
  • [`df7540fb73`](https://github.com/nodejs/node/commit/df7540fb73)] - **deps**: update ada to 2.4.2 (Node.js GitHub Bot) [#&#8203;48092](https://github.com/nodejs/node/pull/48092)
    
  • [`07df5c48e8`](https://github.com/nodejs/node/commit/07df5c48e8)] - **deps**: update corepack to 0.18.0 (Node.js GitHub Bot) [#&#8203;48091](https://github.com/nodejs/node/pull/48091)
    
  • [`d95a5bb559`](https://github.com/nodejs/node/commit/d95a5bb559)] - **deps**: update uvwasi to 0.0.18 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866)
    
  • [`443477e041`](https://github.com/nodejs/node/commit/443477e041)] - **deps**: update uvwasi to 0.0.17 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866)
    
  • [`03f67d6d6d`](https://github.com/nodejs/node/commit/03f67d6d6d)] - **deps**: upgrade npm to 9.6.7 (npm team) [#&#8203;48062](https://github.com/nodejs/node/pull/48062)
    
  • [`d3e3a911fd`](https://github.com/nodejs/node/commit/d3e3a911fd)] - **deps**: update nghttp2 to 1.53.0 (Node.js GitHub Bot) [#&#8203;47997](https://github.com/nodejs/node/pull/47997)
    
  • [`f7c4daaf67`](https://github.com/nodejs/node/commit/f7c4daaf67)] - **deps**: update ada to 2.4.1 (Node.js GitHub Bot) [#&#8203;48036](https://github.com/nodejs/node/pull/48036)
    
  • [`c6a752560d`](https://github.com/nodejs/node/commit/c6a752560d)] - **deps**: add loongarch64 into openssl Makefile and gen openssl-loongarch64 (Shi Pujin) [#&#8203;46401](https://github.com/nodejs/node/pull/46401)
    
  • [`d194241716`](https://github.com/nodejs/node/commit/d194241716)] - **deps**: update undici to 5.22.1 (Node.js GitHub Bot) [#&#8203;47994](https://github.com/nodejs/node/pull/47994)
    
  • [`02e919f4a2`](https://github.com/nodejs/node/commit/02e919f4a2)] - **deps,test**: update postject to 1.0.0-alpha.6 (Node.js GitHub Bot) [#&#8203;48072](https://github.com/nodejs/node/pull/48072)
    
  • [`2c19f596ad`](https://github.com/nodejs/node/commit/2c19f596ad)] - **doc**: clarify array args to Buffer.from() (Bryan English) [#&#8203;48274](https://github.com/nodejs/node/pull/48274)
    
  • [`d681e5f456`](https://github.com/nodejs/node/commit/d681e5f456)] - **doc**: document watch option for node:test run() (Moshe Atlow) [#&#8203;48256](https://github.com/nodejs/node/pull/48256)
    
  • [`96e54ddbca`](https://github.com/nodejs/node/commit/96e54ddbca)] - **doc**: reserve 117 for Electron 26 (Calvin) [#&#8203;48245](https://github.com/nodejs/node/pull/48245)
    
  • [`9aff8c7818`](https://github.com/nodejs/node/commit/9aff8c7818)] - **doc**: update documentation for FIPS support (Richard Lau) [#&#8203;48194](https://github.com/nodejs/node/pull/48194)
    
  • [`8c5338648f`](https://github.com/nodejs/node/commit/8c5338648f)] - **doc**: improve the documentation of the stdio option (Kumar Arnav) [#&#8203;48110](https://github.com/nodejs/node/pull/48110)
    
  • [`11918d705f`](https://github.com/nodejs/node/commit/11918d705f)] - **doc**: update Buffer.allocUnsafe description (sinkhaha) [#&#8203;48183](https://github.com/nodejs/node/pull/48183)
    
  • [`2b51ee5e22`](https://github.com/nodejs/node/commit/2b51ee5e22)] - **doc**: update codeowners with website team (Claudio Wunder) [#&#8203;48197](https://github.com/nodejs/node/pull/48197)
    
  • [`360df25d04`](https://github.com/nodejs/node/commit/360df25d04)] - **doc**: fix broken link to new folder doc/contributing/maintaining (Andrea Fassina) [#&#8203;48205](https://github.com/nodejs/node/pull/48205)
    
  • [`13e95e21a4`](https://github.com/nodejs/node/commit/13e95e21a4)] - **doc**: add atlowChemi to triagers (Chemi Atlow) [#&#8203;48104](https://github.com/nodejs/node/pull/48104)
    
  • [`5f83ce530f`](https://github.com/nodejs/node/commit/5f83ce530f)] - **doc**: fix typo in readline completer function section (Vadym) [#&#8203;48188](https://github.com/nodejs/node/pull/48188)
    
  • [`3c82165d27`](https://github.com/nodejs/node/commit/3c82165d27)] - **doc**: remove broken link for keygen (Rich Trott) [#&#8203;48176](https://github.com/nodejs/node/pull/48176)
    
  • [`0ca90a1e6d`](https://github.com/nodejs/node/commit/0ca90a1e6d)] - **doc**: add `auto` intrinsic height to prevent jitter/flicker (Daniel Holbert) [#&#8203;48195](https://github.com/nodejs/node/pull/48195)
    
  • [`f117855092`](https://github.com/nodejs/node/commit/f117855092)] - **doc**: add version info on the SEA docs (Antoine du Hamel) [#&#8203;48173](https://github.com/nodejs/node/pull/48173)
    
  • [`5094d1b292`](https://github.com/nodejs/node/commit/5094d1b292)] - **doc**: add Ruy to list of TSC members (Michael Dawson) [#&#8203;48172](https://github.com/nodejs/node/pull/48172)
    
  • [`39d8140227`](https://github.com/nodejs/node/commit/39d8140227)] - **doc**: update socket.remote\* properties documentation (Saba Kharanauli) [#&#8203;48139](https://github.com/nodejs/node/pull/48139)
    
  • [`5497c13efe`](https://github.com/nodejs/node/commit/5497c13efe)] - **doc**: update outdated section on TLSv1.3-PSK (Tobias Nießen) [#&#8203;48123](https://github.com/nodejs/node/pull/48123)
    
  • [`281dfaf727`](https://github.com/nodejs/node/commit/281dfaf727)] - **doc**: improve HMAC key recommendations (Tobias Nießen) [#&#8203;48121](https://github.com/nodejs/node/pull/48121)
    
  • [`bd311b6c70`](https://github.com/nodejs/node/commit/bd311b6c70)] - **doc**: clarify mkdir() recursive behavior (Stephen Odogwu) [#&#8203;48109](https://github.com/nodejs/node/pull/48109)
    
  • [`5b061c8922`](https://github.com/nodejs/node/commit/5b061c8922)] - **doc**: fix typo in crypto legacy streams API section (Tobias Nießen) [#&#8203;48122](https://github.com/nodejs/node/pull/48122)
    
  • [`10ccb2bd81`](https://github.com/nodejs/node/commit/10ccb2bd81)] - **doc**: update SEA source link (Rich Trott) [#&#8203;48080](https://github.com/nodejs/node/pull/48080)
    
  • [`415bf7f532`](https://github.com/nodejs/node/commit/415bf7f532)] - **doc**: clarify tty.isRaw (Roberto Vidal) [#&#8203;48055](https://github.com/nodejs/node/pull/48055)
    
  • [`0ac4b33c76`](https://github.com/nodejs/node/commit/0ac4b33c76)] - **doc**: correct line break for Windows terminals (Alex Schwartz) [#&#8203;48083](https://github.com/nodejs/node/pull/48083)
    
  • [`f30ba5c320`](https://github.com/nodejs/node/commit/f30ba5c320)] - **doc**: fix Windows code snippet tags (Antoine du Hamel) [#&#8203;48100](https://github.com/nodejs/node/pull/48100)
    
  • [`12fef9b68c`](https://github.com/nodejs/node/commit/12fef9b68c)] - **doc**: harmonize fenced code snippet flags (Antoine du Hamel) [#&#8203;48082](https://github.com/nodejs/node/pull/48082)
    
  • [`13f163eace`](https://github.com/nodejs/node/commit/13f163eace)] - **doc**: use secure key length for HMAC generateKey (Tobias Nießen) [#&#8203;48052](https://github.com/nodejs/node/pull/48052)
    
  • [`1e3e7c9f33`](https://github.com/nodejs/node/commit/1e3e7c9f33)] - **doc**: update broken EVP_BytesToKey link (Rich Trott) [#&#8203;48064](https://github.com/nodejs/node/pull/48064)
    
  • [`5917ba1838`](https://github.com/nodejs/node/commit/5917ba1838)] - **doc**: update broken spkac link (Rich Trott) [#&#8203;48063](https://github.com/nodejs/node/pull/48063)
    
  • [`0e4a3b7db1`](https://github.com/nodejs/node/commit/0e4a3b7db1)] - **doc**: document node-api version process (Chengzhong Wu) [#&#8203;47972](https://github.com/nodejs/node/pull/47972)
    
  • [`85bbaa94ea`](https://github.com/nodejs/node/commit/85bbaa94ea)] - **doc**: update process.versions properties (Saba Kharanauli) [#&#8203;48019](https://github.com/nodejs/node/pull/48019)
    
  • [`7660eb591a`](https://github.com/nodejs/node/commit/7660eb591a)] - **doc**: fix typo in binding functions (Deokjin Kim) [#&#8203;48003](https://github.com/nodejs/node/pull/48003)
    
  • [`2f5dbca690`](https://github.com/nodejs/node/commit/2f5dbca690)] - **doc**: mark Node.js 14 as End-of-Life (Richard Lau) [#&#8203;48023](https://github.com/nodejs/node/pull/48023)
    
  • [`3b94a739f2`](https://github.com/nodejs/node/commit/3b94a739f2)] - **doc**: clarify CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED (Tobias Nießen) [#&#8203;47976](https://github.com/nodejs/node/pull/47976)
    
  • [`9e381cfa89`](https://github.com/nodejs/node/commit/9e381cfa89)] - **doc**: add heading for permission model limitations (Tobias Nießen) [#&#8203;47989](https://github.com/nodejs/node/pull/47989)
    
  • [`802db923e0`](https://github.com/nodejs/node/commit/802db923e0)] - **doc,vm**: clarify usage of cachedData in vm.compileFunction() (Darshan Sen) [#&#8203;48193](https://github.com/nodejs/node/pull/48193)
    
  • [`11a3434810`](https://github.com/nodejs/node/commit/11a3434810)] - **esm**: remove support for arrays in `import` internal method (Antoine du Hamel) [#&#8203;48296](https://github.com/nodejs/node/pull/48296)
    
  • [`3b00f3afef`](https://github.com/nodejs/node/commit/3b00f3afef)] - **esm**: handle `globalPreload` hook returning a nullish value (Antoine du Hamel) [#&#8203;48249](https://github.com/nodejs/node/pull/48249)
    
  • [`3c7846d7e1`](https://github.com/nodejs/node/commit/3c7846d7e1)] - **esm**: handle more error types thrown from the loader thread (Antoine du Hamel) [#&#8203;48247](https://github.com/nodejs/node/pull/48247)
    
  • [`60ce2bcabc`](https://github.com/nodejs/node/commit/60ce2bcabc)] - **http**: send implicit headers on HEAD with no body (Matteo Collina) [#&#8203;48108](https://github.com/nodejs/node/pull/48108)
    
  • [`72de4e7170`](https://github.com/nodejs/node/commit/72de4e7170)] - **lib**: do not disable linter for entire files (Antoine du Hamel) [#&#8203;48299](https://github.com/nodejs/node/pull/48299)
    
  • [`10cc60fc91`](https://github.com/nodejs/node/commit/10cc60fc91)] - **lib**: use existing `isWindows` variable (sinkhaha) [#&#8203;48134](https://github.com/nodejs/node/pull/48134)
    
  • [`a90010aae9`](https://github.com/nodejs/node/commit/a90010aae9)] - **lib**: support FORCE_COLOR for non TTY streams (Moshe Atlow) [#&#8203;48034](https://github.com/nodejs/node/pull/48034)
    
  • [`b1828b325e`](https://github.com/nodejs/node/commit/b1828b325e)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.any() (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821)
    
  • [`8f1b86961f`](https://github.com/nodejs/node/commit/8f1b86961f)] - **meta**: bump github/codeql-action from 2.3.3 to 2.3.6 (dependabot\[bot]) [#&#8203;48287](https://github.com/nodejs/node/pull/48287)
    
  • [`1b87ccdf70`](https://github.com/nodejs/node/commit/1b87ccdf70)] - **meta**: bump actions/setup-python from 4.6.0 to 4.6.1 (dependabot\[bot]) [#&#8203;48286](https://github.com/nodejs/node/pull/48286)
    
  • [`10715aea26`](https://github.com/nodejs/node/commit/10715aea26)] - **meta**: bump codecov/codecov-action from 3.1.3 to 3.1.4 (dependabot\[bot]) [#&#8203;48285](https://github.com/nodejs/node/pull/48285)
    
  • [`79f73778ab`](https://github.com/nodejs/node/commit/79f73778ab)] - **meta**: remove dont-land-on-v14 auto labeling (Shrujal Shah) [#&#8203;48031](https://github.com/nodejs/node/pull/48031)
    
  • [`9c5711f3ea`](https://github.com/nodejs/node/commit/9c5711f3ea)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;48010](https://github.com/nodejs/node/pull/48010)
    
  • [`6d6bf3ee52`](https://github.com/nodejs/node/commit/6d6bf3ee52)] - **module**: reduce the number of URL initializations (Yagiz Nizipli) [#&#8203;48272](https://github.com/nodejs/node/pull/48272)
    
  • [`f380953103`](https://github.com/nodejs/node/commit/f380953103)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824)
    
  • [`950185b0c0`](https://github.com/nodejs/node/commit/950185b0c0)] - **net**: fix address iteration with autoSelectFamily (Fedor Indutny) [#&#8203;48258](https://github.com/nodejs/node/pull/48258)
    
  • [`5ddca72e62`](https://github.com/nodejs/node/commit/5ddca72e62)] - **net**: fix family autoselection SSL connection handling (Paolo Insogna) [#&#8203;48189](https://github.com/nodejs/node/pull/48189)
    
  • [`750e53ca3c`](https://github.com/nodejs/node/commit/750e53ca3c)] - **net**: fix family autoselection timeout handling (Paolo Insogna) [#&#8203;47860](https://github.com/nodejs/node/pull/47860)
    
  • [`a94f87ed99`](https://github.com/nodejs/node/commit/a94f87ed99)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151)
    
  • [`e834979818`](https://github.com/nodejs/node/commit/e834979818)] - **node-api**: add status napi_cannot_run_js (Gabriel Schulhof) [#&#8203;47986](https://github.com/nodejs/node/pull/47986)
    
  • [`eafe0c3ec6`](https://github.com/nodejs/node/commit/eafe0c3ec6)] - **node-api**: napi_ref on all types is experimental (Vladimir Morozov) [#&#8203;47975](https://github.com/nodejs/node/pull/47975)
    
  • [`9a034746f5`](https://github.com/nodejs/node/commit/9a034746f5)] - **src**: add Realm document in the src README.md (Chengzhong Wu) [#&#8203;47932](https://github.com/nodejs/node/pull/47932)
    
  • [`b8f4070f71`](https://github.com/nodejs/node/commit/b8f4070f71)] - **src**: check node_extra_ca_certs after openssl cfg (Raghu Saxena) [#&#8203;48159](https://github.com/nodejs/node/pull/48159)
    
  • [`0347a18056`](https://github.com/nodejs/node/commit/0347a18056)] - **src**: include missing header in node_sea.h (Joyee Cheung) [#&#8203;48152](https://github.com/nodejs/node/pull/48152)
    
  • [`45c3782c20`](https://github.com/nodejs/node/commit/45c3782c20)] - **src**: remove INT_MAX asserts in SecretKeyGenTraits (Tobias Nießen) [#&#8203;48053](https://github.com/nodejs/node/pull/48053)
    
  • [`b25e7045ad`](https://github.com/nodejs/node/commit/b25e7045ad)] - **src**: avoid prototype access in binding templates (Joyee Cheung) [#&#8203;47913](https://github.com/nodejs/node/pull/47913)
    
  • [`33aa373eec`](https://github.com/nodejs/node/commit/33aa373eec)] - **src**: use Blob{Des|S}erializer for SEA blobs (Joyee Cheung) [#&#8203;47962](https://github.com/nodejs/node/pull/47962)
    
  • [`9e2b13dfa7`](https://github.com/nodejs/node/commit/9e2b13dfa7)] - **stream**: deprecate asIndexedPairs (Chemi Atlow) [#&#8203;48102](https://github.com/nodejs/node/pull/48102)
    
  • [`96c323dee2`](https://github.com/nodejs/node/commit/96c323dee2)] - **test**: mark test-child-process-pipe-dataflow as flaky (Moshe Atlow) [#&#8203;48334](https://github.com/nodejs/node/pull/48334)
    
  • [`9875885357`](https://github.com/nodejs/node/commit/9875885357)] - **test**: adapt tests for OpenSSL 3.1 (OttoHollmann) [#&#8203;47859](https://github.com/nodejs/node/pull/47859)
    
  • [`3440d7c6bf`](https://github.com/nodejs/node/commit/3440d7c6bf)] - **test**: unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`215b2bc72c`](https://github.com/nodejs/node/commit/215b2bc72c)] - **test**: fix zlib version regex (Luigi Pinca) [#&#8203;48227](https://github.com/nodejs/node/pull/48227)
    
  • [`e12ee59d26`](https://github.com/nodejs/node/commit/e12ee59d26)] - **test**: use lower security level in s_client (Luigi Pinca) [#&#8203;48192](https://github.com/nodejs/node/pull/48192)
    
  • [`1dabc7390c`](https://github.com/nodejs/node/commit/1dabc7390c)] - ***Revert*** "**test**: unskip negative-settimeout.any.js WPT" (Filip Skokan) [#&#8203;48182](https://github.com/nodejs/node/pull/48182)
    
  • [`c1c4796a86`](https://github.com/nodejs/node/commit/c1c4796a86)] - **test**: mark test_cannot_run_js as flaky (Keyhan Vakil) [#&#8203;48181](https://github.com/nodejs/node/pull/48181)
    
  • [`8c49d74002`](https://github.com/nodejs/node/commit/8c49d74002)] - **test**: fix flaky test-runner-watch-mode (Moshe Atlow) [#&#8203;48144](https://github.com/nodejs/node/pull/48144)
    
  • [`6388766862`](https://github.com/nodejs/node/commit/6388766862)] - **test**: skip test-http-pipeline-flood on IBM i (Abdirahim Musse) [#&#8203;48048](https://github.com/nodejs/node/pull/48048)
    
  • [`8d2a3b1952`](https://github.com/nodejs/node/commit/8d2a3b1952)] - **test**: ignore helper files in WPTs (Filip Skokan) [#&#8203;48079](https://github.com/nodejs/node/pull/48079)
    
  • [`7a96d825fd`](https://github.com/nodejs/node/commit/7a96d825fd)] - **test**: move `test-cluster-primary-error` flaky test (Yagiz Nizipli) [#&#8203;48039](https://github.com/nodejs/node/pull/48039)
    
  • [`a80dd3a8b3`](https://github.com/nodejs/node/commit/a80dd3a8b3)] - **test**: fix suite signal (Benjamin Gruenbaum) [#&#8203;47800](https://github.com/nodejs/node/pull/47800)
    
  • [`a41cfd183f`](https://github.com/nodejs/node/commit/a41cfd183f)] - **test**: fix parsing test flags (Daeyeon Jeong) [#&#8203;48012](https://github.com/nodejs/node/pull/48012)
    
  • [`4d4e506f2b`](https://github.com/nodejs/node/commit/4d4e506f2b)] - **test,doc,sea**: run SEA tests on ppc64 (Darshan Sen) [#&#8203;48111](https://github.com/nodejs/node/pull/48111)
    
  • [`44411fc40c`](https://github.com/nodejs/node/commit/44411fc40c)] - **test_runner**: apply `runOnly` on suites (Moshe Atlow) [#&#8203;48279](https://github.com/nodejs/node/pull/48279)
    
  • [`3f259b7a30`](https://github.com/nodejs/node/commit/3f259b7a30)] - **test_runner**: emit `test:watch:drained` event (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259)
    
  • [`c9f8e8c562`](https://github.com/nodejs/node/commit/c9f8e8c562)] - **test_runner**: stop watch mode when abortSignal aborted (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259)
    
  • [`f3268d64cb`](https://github.com/nodejs/node/commit/f3268d64cb)] - **test_runner**: fix global after hook (Moshe Atlow) [#&#8203;48231](https://github.com/nodejs/node/pull/48231)
    
  • [`15336c3139`](https://github.com/nodejs/node/commit/15336c3139)] - **test_runner**: remove redundant check from coverage (Colin Ihrig) [#&#8203;48070](https://github.com/nodejs/node/pull/48070)
    
  • [`750d3e8606`](https://github.com/nodejs/node/commit/750d3e8606)] - **test_runner**: pass FORCE_COLOR to child process (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057)
    
  • [`3278542243`](https://github.com/nodejs/node/commit/3278542243)] - **test_runner**: dont split lines on `test:stdout` (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057)
    
  • [`027c531766`](https://github.com/nodejs/node/commit/027c531766)] - **test_runner**: fix test deserialize edge cases (Moshe Atlow) [#&#8203;48106](https://github.com/nodejs/node/pull/48106)
    
  • [`2b797a6d39`](https://github.com/nodejs/node/commit/2b797a6d39)] - **test_runner**: delegate stderr and stdout formatting to reporter (Shiba) [#&#8203;48045](https://github.com/nodejs/node/pull/48045)
    
  • [`23d310bee8`](https://github.com/nodejs/node/commit/23d310bee8)] - **test_runner**: display dot report as wide as the terminal width (Raz Luvaton) [#&#8203;48038](https://github.com/nodejs/node/pull/48038)
    
  • [`fd2620dcf1`](https://github.com/nodejs/node/commit/fd2620dcf1)] - **tls**: reapply servername on happy eyeballs connect (Fedor Indutny) [#&#8203;48255](https://github.com/nodejs/node/pull/48255)
    
  • [`62f847d0b3`](https://github.com/nodejs/node/commit/62f847d0b3)] - **tools**: update rollup lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48329](https://github.com/nodejs/node/pull/48329)
    
  • [`3e97826a66`](https://github.com/nodejs/node/commit/3e97826a66)] - ***Revert*** "**tools**: open issue when update workflow fails" (Marco Ippolito) [#&#8203;48312](https://github.com/nodejs/node/pull/48312)
    
  • [`5f08bfe35f`](https://github.com/nodejs/node/commit/5f08bfe35f)] - **tools**: don't gitignore base64 config.h (Ben Noordhuis) [#&#8203;48174](https://github.com/nodejs/node/pull/48174)
    
  • [`ded0e2d755`](https://github.com/nodejs/node/commit/ded0e2d755)] - **tools**: update LICENSE and license-builder.sh (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`07aa264366`](https://github.com/nodejs/node/commit/07aa264366)] - **tools**: automate histogram update (Marco Ippolito) [#&#8203;48171](https://github.com/nodejs/node/pull/48171)
    
  • [`1416b75eaa`](https://github.com/nodejs/node/commit/1416b75eaa)] - **tools**: use shasum instead of sha256sum (Luigi Pinca) [#&#8203;48229](https://github.com/nodejs/node/pull/48229)
    
  • [`b81e9d9b7b`](https://github.com/nodejs/node/commit/b81e9d9b7b)] - **tools**: harmonize `dep_updaters` scripts (Antoine du Hamel) [#&#8203;48201](https://github.com/nodejs/node/pull/48201)
    
  • [`a60bc41e53`](https://github.com/nodejs/node/commit/a60bc41e53)] - **tools**: deps update authenticate github api request (Andrea Fassina) [#&#8203;48200](https://github.com/nodejs/node/pull/48200)
    
  • [`7478ed014e`](https://github.com/nodejs/node/commit/7478ed014e)] - **tools**: order dependency jobs alphabetically (Luca) [#&#8203;48184](https://github.com/nodejs/node/pull/48184)
    
  • [`568a705799`](https://github.com/nodejs/node/commit/568a705799)] - **tools**: refactor v8\_pch config (Michaël Zasso) [#&#8203;47364](https://github.com/nodejs/node/pull/47364)
    
  • [`801573ba46`](https://github.com/nodejs/node/commit/801573ba46)] - **tools**: log and verify sha256sum (Andrea Fassina) [#&#8203;48088](https://github.com/nodejs/node/pull/48088)
    
  • [`db62325e18`](https://github.com/nodejs/node/commit/db62325e18)] - **tools**: open issue when update workflow fails (Marco Ippolito) [#&#8203;48018](https://github.com/nodejs/node/pull/48018)
    
  • [`ad8a68856d`](https://github.com/nodejs/node/commit/ad8a68856d)] - **tools**: alphabetize CODEOWNERS (Rich Trott) [#&#8203;48124](https://github.com/nodejs/node/pull/48124)
    
  • [`4cf5a9edaf`](https://github.com/nodejs/node/commit/4cf5a9edaf)] - **tools**: use latest upstream commit for zlib updates (Andrea Fassina) [#&#8203;48054](https://github.com/nodejs/node/pull/48054)
    
  • [`8d93af381b`](https://github.com/nodejs/node/commit/8d93af381b)] - **tools**: add security-wg as dep updaters owner (Marco Ippolito) [#&#8203;48113](https://github.com/nodejs/node/pull/48113)
    
  • [`5325be1d99`](https://github.com/nodejs/node/commit/5325be1d99)] - **tools**: port js2c.py to C++ (Joyee Cheung) [#&#8203;46997](https://github.com/nodejs/node/pull/46997)
    
  • [`6c60d90277`](https://github.com/nodejs/node/commit/6c60d90277)] - **tools**: fix race condition when npm installing (Tobias Nießen) [#&#8203;48101](https://github.com/nodejs/node/pull/48101)
    
  • [`0ab840a58f`](https://github.com/nodejs/node/commit/0ab840a58f)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;48098](https://github.com/nodejs/node/pull/48098)
    
  • [`a298193378`](https://github.com/nodejs/node/commit/a298193378)] - **tools**: update cpplint to 1.6.1 (Yagiz Nizipli) [#&#8203;48098](https://github.com/nodejs/node/pull/48098)
    
  • [`f6725751b7`](https://github.com/nodejs/node/commit/f6725751b7)] - **tools**: update eslint to 8.41.0 (Node.js GitHub Bot) [#&#8203;48097](https://github.com/nodejs/node/pull/48097)
    
  • [`6539361f4e`](https://github.com/nodejs/node/commit/6539361f4e)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48096](https://github.com/nodejs/node/pull/48096)
    
  • [`5d94dbb951`](https://github.com/nodejs/node/commit/5d94dbb951)] - **tools**: update doc to remark-parse@10.0.2 (Node.js GitHub Bot) [#&#8203;48095](https://github.com/nodejs/node/pull/48095)
    
  • [`2226088048`](https://github.com/nodejs/node/commit/2226088048)] - **tools**: add debug logs (Marco Ippolito) [#&#8203;48060](https://github.com/nodejs/node/pull/48060)
    
  • [`0c8c383583`](https://github.com/nodejs/node/commit/0c8c383583)] - **tools**: fix zconf.h path (Luigi Pinca) [#&#8203;48089](https://github.com/nodejs/node/pull/48089)
    
  • [`6adaf4c648`](https://github.com/nodejs/node/commit/6adaf4c648)] - **tools**: update remark-preset-lint-node to 4.0.0 (Node.js GitHub Bot) [#&#8203;47995](https://github.com/nodejs/node/pull/47995)
    
  • [`92b3334231`](https://github.com/nodejs/node/commit/92b3334231)] - **url**: clean vertical alignment of docs (Robin Ury) [#&#8203;48037](https://github.com/nodejs/node/pull/48037)
    
  • [`ebb6536775`](https://github.com/nodejs/node/commit/ebb6536775)] - **url**: call `ada::can_parse` directly (Yagiz Nizipli) [#&#8203;47919](https://github.com/nodejs/node/pull/47919)
    
  • [`ed4514294a`](https://github.com/nodejs/node/commit/ed4514294a)] - **vm**: properly handle defining symbol props (Nicolas DUBIEN) [#&#8203;47572](https://github.com/nodejs/node/pull/47572)
    
    

v20.2.0: 2023-05-16, Version 20.2.0 (Current), @​targos

Compare Source

Notable Changes
  • [`c092df9094`](https://github.com/nodejs/node/commit/c092df9094)] - **doc**: add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844)
    
  • [`4197a9a5a0`](https://github.com/nodejs/node/commit/4197a9a5a0)] - **(SEMVER-MINOR)** **http**: prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732)
    
  • [`c4596b9ce7`](https://github.com/nodejs/node/commit/c4596b9ce7)] - **(SEMVER-MINOR)** **sea**: add option to disable the experimental SEA warning (Darshan Sen) [#&#8203;47588](https://github.com/nodejs/node/pull/47588)
    
  • [`17befe008c`](https://github.com/nodejs/node/commit/17befe008c)] - **(SEMVER-MINOR)** **test_runner**: add `skip`, `todo`, and `only` shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909)
    
  • [`a0634d7f89`](https://github.com/nodejs/node/commit/a0634d7f89)] - **(SEMVER-MINOR)** **url**: add value argument to `URLSearchParams` `has` and `delete` methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885)
    
    
Commits
  • [`456fca0d9c`](https://github.com/nodejs/node/commit/456fca0d9c)] - **bootstrap**: initialize per-isolate properties of bindings separately (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768)
    
  • [`d6d12bf978`](https://github.com/nodejs/node/commit/d6d12bf978)] - **bootstrap**: log isolate data info in mksnapshot debug logs (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768)
    
  • [`e457d89a1b`](https://github.com/nodejs/node/commit/e457d89a1b)] - **buffer**: combine checking range of sourceStart in `buf.copy` (Deokjin Kim) [#&#8203;47758](https://github.com/nodejs/node/pull/47758)
    
  • [`00668fcfb4`](https://github.com/nodejs/node/commit/00668fcfb4)] - **child_process**: use signal.reason in child process abort (Debadree Chatterjee) [#&#8203;47817](https://github.com/nodejs/node/pull/47817)
    
  • [`d7993474ea`](https://github.com/nodejs/node/commit/d7993474ea)] - **crypto**: remove default encoding from scrypt (Tobias Nießen) [#&#8203;47943](https://github.com/nodejs/node/pull/47943)
    
  • [`09fb74a7cc`](https://github.com/nodejs/node/commit/09fb74a7cc)] - **crypto**: fix webcrypto private/secret import with empty usages (Filip Skokan) [#&#8203;47877](https://github.com/nodejs/node/pull/47877)
    
  • [`e9c6ee74f3`](https://github.com/nodejs/node/commit/e9c6ee74f3)] - **crypto**: remove default encoding from pbkdf2 (Tobias Nießen) [#&#8203;47869](https://github.com/nodejs/node/pull/47869)
    
  • [`b7f13a8679`](https://github.com/nodejs/node/commit/b7f13a8679)] - **deps**: update simdutf to 3.2.9 (Node.js GitHub Bot) [#&#8203;47983](https://github.com/nodejs/node/pull/47983)
    
  • [`b16f6da153`](https://github.com/nodejs/node/commit/b16f6da153)] - **deps**: V8: cherry-pick [`5f025d1`](https://github.com/nodejs/node/commit/5f025d1ca2ca) (Michaël Zasso) [#&#8203;47610](https://github.com/nodejs/node/pull/47610)
    
  • [`99f8fcab45`](https://github.com/nodejs/node/commit/99f8fcab45)] - **deps**: V8: cherry-pick [`a8a11a8`](https://github.com/nodejs/node/commit/a8a11a87cb72) (Michaël Zasso) [#&#8203;47610](https://github.com/nodejs/node/pull/47610)
    
  • [`c2b14b4c78`](https://github.com/nodejs/node/commit/c2b14b4c78)] - **deps**: update ada to 2.4.0 (Node.js GitHub Bot) [#&#8203;47922](https://github.com/nodejs/node/pull/47922)
    
  • [`cad42e7a56`](https://github.com/nodejs/node/commit/cad42e7a56)] - **deps**: V8: cherry-pick [`1b471b7`](https://github.com/nodejs/node/commit/1b471b796022) (Lu Yahan) [#&#8203;47399](https://github.com/nodejs/node/pull/47399)
    
  • [`7b2f17ca59`](https://github.com/nodejs/node/commit/7b2f17ca59)] - **deps**: upgrade npm to 9.6.6 (npm team) [#&#8203;47862](https://github.com/nodejs/node/pull/47862)
    
  • [`d23b1af562`](https://github.com/nodejs/node/commit/d23b1af562)] - **deps**: update ada to 2.3.1 (Node.js GitHub Bot) [#&#8203;47893](https://github.com/nodejs/node/pull/47893)
    
  • [`72340c98fb`](https://github.com/nodejs/node/commit/72340c98fb)] - **dgram**: convert macro to template (Tobias Nießen) [#&#8203;47891](https://github.com/nodejs/node/pull/47891)
    
  • [`9be922892f`](https://github.com/nodejs/node/commit/9be922892f)] - **dns**: call `ada::idna::to_ascii` directly from c++ (Yagiz Nizipli) [#&#8203;47920](https://github.com/nodejs/node/pull/47920)
    
  • [`4a1e97156a`](https://github.com/nodejs/node/commit/4a1e97156a)] - **doc**: add missing deprecated blocks to cluster (Tobias Nießen) [#&#8203;47981](https://github.com/nodejs/node/pull/47981)
    
  • [`13118a19ee`](https://github.com/nodejs/node/commit/13118a19ee)] - **doc**: update description of global (Tobias Nießen) [#&#8203;47969](https://github.com/nodejs/node/pull/47969)
    
  • [`372796440b`](https://github.com/nodejs/node/commit/372796440b)] - **doc**: update measure memory rejection information (Yash Ladha) [#&#8203;41639](https://github.com/nodejs/node/pull/41639)
    
  • [`7ecc6740e4`](https://github.com/nodejs/node/commit/7ecc6740e4)] - **doc**: fix broken link to TC39 import attributes proposal (Rich Trott) [#&#8203;47954](https://github.com/nodejs/node/pull/47954)
    
  • [`b9771c95c7`](https://github.com/nodejs/node/commit/b9771c95c7)] - **doc**: fix broken link (Rich Trott) [#&#8203;47953](https://github.com/nodejs/node/pull/47953)
    
  • [`6f5ba92e61`](https://github.com/nodejs/node/commit/6f5ba92e61)] - **doc**: remove broken link (Rich Trott) [#&#8203;47942](https://github.com/nodejs/node/pull/47942)
    
  • [`c9ffc555f1`](https://github.com/nodejs/node/commit/c9ffc555f1)] - **doc**: document make lint-md-clean (Matteo Collina) [#&#8203;47926](https://github.com/nodejs/node/pull/47926)
    
  • [`7ed99e8ba5`](https://github.com/nodejs/node/commit/7ed99e8ba5)] - **doc**: mark global object as legacy (Mert Can Altın) [#&#8203;47819](https://github.com/nodejs/node/pull/47819)
    
  • [`bf39f2d252`](https://github.com/nodejs/node/commit/bf39f2d252)] - **doc**: ntfs junction points must link to directories (Ben Noordhuis) [#&#8203;47907](https://github.com/nodejs/node/pull/47907)
    
  • [`4dfc3890d8`](https://github.com/nodejs/node/commit/4dfc3890d8)] - **doc**: improve `permission.has` description (Daeyeon Jeong) [#&#8203;47875](https://github.com/nodejs/node/pull/47875)
    
  • [`93f1aa2856`](https://github.com/nodejs/node/commit/93f1aa2856)] - **doc**: fix params names (Dmitry Semigradsky) [#&#8203;47853](https://github.com/nodejs/node/pull/47853)
    
  • [`9a362aa2fb`](https://github.com/nodejs/node/commit/9a362aa2fb)] - **doc**: update supported version of FreeBSD to 12.4 (Michaël Zasso) [#&#8203;47838](https://github.com/nodejs/node/pull/47838)
    
  • [`89c70dc6e6`](https://github.com/nodejs/node/commit/89c70dc6e6)] - **doc**: add stability experimental to pm (Rafael Gonzaga) [#&#8203;47890](https://github.com/nodejs/node/pull/47890)
    
  • [`f96fb2eee7`](https://github.com/nodejs/node/commit/f96fb2eee7)] - **doc**: swap Matteo with Rafael in the stewards (Rafael Gonzaga) [#&#8203;47841](https://github.com/nodejs/node/pull/47841)
    
  • [`1666a146e3`](https://github.com/nodejs/node/commit/1666a146e3)] - **doc**: add valgrind suppression details (Kevin Eady) [#&#8203;47760](https://github.com/nodejs/node/pull/47760)
    
  • [`e53e8231ff`](https://github.com/nodejs/node/commit/e53e8231ff)] - **doc**: replace EOL versions in README (Tobias Nießen) [#&#8203;47833](https://github.com/nodejs/node/pull/47833)
    
  • [`c092df9094`](https://github.com/nodejs/node/commit/c092df9094)] - **doc**: add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844)
    
  • [`f7106765b3`](https://github.com/nodejs/node/commit/f7106765b3)] - **doc**: update BUILDING.md previous versions links (Tobias Nießen) [#&#8203;47835](https://github.com/nodejs/node/pull/47835)
    
  • [`811b43c215`](https://github.com/nodejs/node/commit/811b43c215)] - **doc,test**: update the v8.startupSnapshot doc and test the example (Joyee Cheung) [#&#8203;47468](https://github.com/nodejs/node/pull/47468)
    
  • [`1ec640ac70`](https://github.com/nodejs/node/commit/1ec640ac70)] - **esm**: do not use `'beforeExit'` on the main thread (Antoine du Hamel) [#&#8203;47964](https://github.com/nodejs/node/pull/47964)
    
  • [`106dc612d6`](https://github.com/nodejs/node/commit/106dc612d6)] - **fs**: make readdir recursive algorithm iterative (Ethan Arrowood) [#&#8203;47650](https://github.com/nodejs/node/pull/47650)
    
  • [`a0da2348a8`](https://github.com/nodejs/node/commit/a0da2348a8)] - **fs**: move fs_use_promises_symbol to per-isolate symbols (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768)
    
  • [`4197a9a5a0`](https://github.com/nodejs/node/commit/4197a9a5a0)] - **(SEMVER-MINOR)** **http**: prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732)
    
  • [`a4d6543598`](https://github.com/nodejs/node/commit/a4d6543598)] - **http2**: improve nghttp2 error callback (Tobias Nießen) [#&#8203;47840](https://github.com/nodejs/node/pull/47840)
    
  • [`a4fed6c580`](https://github.com/nodejs/node/commit/a4fed6c580)] - **lib**: update comment (sinkhaha) [#&#8203;47884](https://github.com/nodejs/node/pull/47884)
    
  • [`fd8bec7b2b`](https://github.com/nodejs/node/commit/fd8bec7b2b)] - **meta**: bump step-security/harden-runner from 2.3.1 to 2.4.0 (Rich Trott) [#&#8203;47980](https://github.com/nodejs/node/pull/47980)
    
  • [`f5b4b6d5dc`](https://github.com/nodejs/node/commit/f5b4b6d5dc)] - **meta**: bump github/codeql-action from 2.3.2 to 2.3.3 (Rich Trott) [#&#8203;47979](https://github.com/nodejs/node/pull/47979)
    
  • [`c05c0a2359`](https://github.com/nodejs/node/commit/c05c0a2359)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (Rich Trott) [#&#8203;47968](https://github.com/nodejs/node/pull/47968)
    
  • [`2a3d6d97cb`](https://github.com/nodejs/node/commit/2a3d6d97cb)] - **meta**: add security-wg ping to permission.js (Rafael Gonzaga) [#&#8203;47941](https://github.com/nodejs/node/pull/47941)
    
  • [`6c158e8dd1`](https://github.com/nodejs/node/commit/6c158e8dd1)] - **meta**: bump step-security/harden-runner from 2.2.1 to 2.3.1 (dependabot\[bot]) [#&#8203;47808](https://github.com/nodejs/node/pull/47808)
    
  • [`f7a8094d37`](https://github.com/nodejs/node/commit/f7a8094d37)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (dependabot\[bot]) [#&#8203;47806](https://github.com/nodejs/node/pull/47806)
    
  • [`0f58e48792`](https://github.com/nodejs/node/commit/0f58e48792)] - **meta**: bump actions/checkout from 3.3.0 to 3.5.2 (dependabot\[bot]) [#&#8203;47805](https://github.com/nodejs/node/pull/47805)
    
  • [`652b06dd82`](https://github.com/nodejs/node/commit/652b06dd82)] - **meta**: remove extra space in scorecard workflow (Mestery) [#&#8203;47805](https://github.com/nodejs/node/pull/47805)
    
  • [`9f06eaccaf`](https://github.com/nodejs/node/commit/9f06eaccaf)] - **meta**: bump github/codeql-action from 2.2.9 to 2.3.2 (dependabot\[bot]) [#&#8203;47809](https://github.com/nodejs/node/pull/47809)
    
  • [`977fd7cf35`](https://github.com/nodejs/node/commit/977fd7cf35)] - **meta**: bump codecov/codecov-action from 3.1.1 to 3.1.3 (dependabot\[bot]) [#&#8203;47807](https://github.com/nodejs/node/pull/47807)
    
  • [`c19385c154`](https://github.com/nodejs/node/commit/c19385c154)] - **module**: refactor to use `normalizeRequirableId` in the CJS module loader (Darshan Sen) [#&#8203;47896](https://github.com/nodejs/node/pull/47896)
    
  • [`739113f2fc`](https://github.com/nodejs/node/commit/739113f2fc)] - **module**: block requiring `test/reporters` without scheme (Moshe Atlow) [#&#8203;47831](https://github.com/nodejs/node/pull/47831)
    
  • [`f489c6710c`](https://github.com/nodejs/node/commit/f489c6710c)] - **(NODE-API-SEMVER-MAJOR)** **node-api**: get Node API version used by addon (Vladimir Morozov) [#&#8203;45715](https://github.com/nodejs/node/pull/45715)
    
  • [`7222f9d74b`](https://github.com/nodejs/node/commit/7222f9d74b)] - **path**: indicate index of wrong resolve() parameter (sosoba) [#&#8203;47660](https://github.com/nodejs/node/pull/47660)
    
  • [`7dd32f1536`](https://github.com/nodejs/node/commit/7dd32f1536)] - **permission**: remove unused function declaration (Deokjin Kim) [#&#8203;47957](https://github.com/nodejs/node/pull/47957)
    
  • [`af86625a05`](https://github.com/nodejs/node/commit/af86625a05)] - **permission**: resolve reference to absolute path only for fs permission (Daeyeon Jeong) [#&#8203;47930](https://github.com/nodejs/node/pull/47930)
    
  • [`1625ae11fe`](https://github.com/nodejs/node/commit/1625ae11fe)] - **quic**: address recent coverity warning (Michael Dawson) [#&#8203;47753](https://github.com/nodejs/node/pull/47753)
    
  • [`c4596b9ce7`](https://github.com/nodejs/node/commit/c4596b9ce7)] - **(SEMVER-MINOR)** **sea**: add option to disable the experimental SEA warning (Darshan Sen) [#&#8203;47588](https://github.com/nodejs/node/pull/47588)
    
  • [`1a7fc186bc`](https://github.com/nodejs/node/commit/1a7fc186bc)] - **sea**: allow requiring core modules with the "node:" prefix (Darshan Sen) [#&#8203;47779](https://github.com/nodejs/node/pull/47779)
    
  • [`786a1c5398`](https://github.com/nodejs/node/commit/786a1c5398)] - **src**: deduplicate X509Certificate::Fingerprint\* (Tobias Nießen) [#&#8203;47978](https://github.com/nodejs/node/pull/47978)
    
  • [`060c1d502b`](https://github.com/nodejs/node/commit/060c1d502b)] - **src**: stop copying code cache, part 2 (Keyhan Vakil) [#&#8203;47958](https://github.com/nodejs/node/pull/47958)
    
  • [`1aec718619`](https://github.com/nodejs/node/commit/1aec718619)] - **(SEMVER-MINOR)** **src**: add cjs_module_lexer_version base64\_version (Jithil P Ponnan) [#&#8203;45629](https://github.com/nodejs/node/pull/45629)
    
  • [`0c06bfd8dc`](https://github.com/nodejs/node/commit/0c06bfd8dc)] - **src**: move BlobSerializerDeserializer to a separate header file (Darshan Sen) [#&#8203;47933](https://github.com/nodejs/node/pull/47933)
    
  • [`bd553e7521`](https://github.com/nodejs/node/commit/bd553e7521)] - **src**: rename SKIP_CHECK_SIZE to SKIP_CHECK_STRLEN (Tobias Nießen) [#&#8203;47845](https://github.com/nodejs/node/pull/47845)
    
  • [`190596c189`](https://github.com/nodejs/node/commit/190596c189)] - **src**: register external references for source code (Keyhan Vakil) [#&#8203;47055](https://github.com/nodejs/node/pull/47055)
    
  • [`4293cc47f4`](https://github.com/nodejs/node/commit/4293cc47f4)] - **src**: support V8 experimental shared values in messaging (Shu-yu Guo) [#&#8203;47706](https://github.com/nodejs/node/pull/47706)
    
  • [`9bc5d78f0c`](https://github.com/nodejs/node/commit/9bc5d78f0c)] - **src**: register ext reference for Fingerprint512 (Tobias Nießen) [#&#8203;47892](https://github.com/nodejs/node/pull/47892)
    
  • [`a11507e23b`](https://github.com/nodejs/node/commit/a11507e23b)] - **src**: stop copying code cache (Keyhan Vakil) [#&#8203;47144](https://github.com/nodejs/node/pull/47144)
    
  • [`515c9b8de6`](https://github.com/nodejs/node/commit/515c9b8de6)] - **src**: clarify the parameter name in `Permission::Apply` (Daeyeon Jeong) [#&#8203;47874](https://github.com/nodejs/node/pull/47874)
    
  • [`c4217613f5`](https://github.com/nodejs/node/commit/c4217613f5)] - **src**: fix creating an ArrayBuffer from a Blob created with `openAsBlob` (Daeyeon Jeong) [#&#8203;47691](https://github.com/nodejs/node/pull/47691)
    
  • [`4bc17fd67b`](https://github.com/nodejs/node/commit/4bc17fd67b)] - **src**: avoid strcmp() with Utf8Value (Tobias Nießen) [#&#8203;47827](https://github.com/nodejs/node/pull/47827)
    
  • [`d358317f70`](https://github.com/nodejs/node/commit/d358317f70)] - **src**: get binding data store directly from the realm (Joyee Cheung) [#&#8203;47437](https://github.com/nodejs/node/pull/47437)
    
  • [`b04d51a0b5`](https://github.com/nodejs/node/commit/b04d51a0b5)] - **src**: prefer data accessor of string and vector (Mohammed Keyvanzadeh) [#&#8203;47750](https://github.com/nodejs/node/pull/47750)
    
  • [`2952cc576c`](https://github.com/nodejs/node/commit/2952cc576c)] - **src**: add per-isolate SetFastMethod and Set\[Fast]MethodNoSideEffect (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768)
    
  • [`010d2ecf94`](https://github.com/nodejs/node/commit/010d2ecf94)] - **test**: mark test-esm-loader-http-imports as flaky (Tobias Nießen) [#&#8203;47987](https://github.com/nodejs/node/pull/47987)
    
  • [`bb33c74c07`](https://github.com/nodejs/node/commit/bb33c74c07)] - **test**: add getRandomValues return length (Jithil P Ponnan) [#&#8203;46357](https://github.com/nodejs/node/pull/46357)
    
  • [`6e019586f7`](https://github.com/nodejs/node/commit/6e019586f7)] - **test**: unskip negative-settimeout.any.js WPT (Filip Skokan) [#&#8203;47946](https://github.com/nodejs/node/pull/47946)
    
  • [`8f547afe5f`](https://github.com/nodejs/node/commit/8f547afe5f)] - **test**: use appropriate usages for a negative import test (Filip Skokan) [#&#8203;47878](https://github.com/nodejs/node/pull/47878)
    
  • [`7e34f77518`](https://github.com/nodejs/node/commit/7e34f77518)] - **test**: fix webcrypto wrap unwrap tests (Filip Skokan) [#&#8203;47876](https://github.com/nodejs/node/pull/47876)
    
  • [`30f4f35244`](https://github.com/nodejs/node/commit/30f4f35244)] - **test**: fix output tests when path includes node version (Moshe Atlow) [#&#8203;47843](https://github.com/nodejs/node/pull/47843)
    
  • [`54607bfd68`](https://github.com/nodejs/node/commit/54607bfd68)] - **test**: reduce WPT concurrency (Filip Skokan) [#&#8203;47834](https://github.com/nodejs/node/pull/47834)
    
  • [`17945a2495`](https://github.com/nodejs/node/commit/17945a2495)] - **test**: migrate a pseudo_tty test to use assertSnapshot (Moshe Atlow) [#&#8203;47803](https://github.com/nodejs/node/pull/47803)
    
  • [`c9233679e8`](https://github.com/nodejs/node/commit/c9233679e8)] - **test**: fix WPT state when process exits but workers are still running (Filip Skokan) [#&#8203;47826](https://github.com/nodejs/node/pull/47826)
    
  • [`34bfb69b5b`](https://github.com/nodejs/node/commit/34bfb69b5b)] - **test**: migrate message tests to use assertSnapshot (Moshe Atlow) [#&#8203;47498](https://github.com/nodejs/node/pull/47498)
    
  • [`d25c785c2a`](https://github.com/nodejs/node/commit/d25c785c2a)] - **test**: allow SIGBUS in signal-handler abort test (Michaël Zasso) [#&#8203;47851](https://github.com/nodejs/node/pull/47851)
    
  • [`aa2c7e00d7`](https://github.com/nodejs/node/commit/aa2c7e00d7)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47921](https://github.com/nodejs/node/pull/47921)
    
  • [`da27542058`](https://github.com/nodejs/node/commit/da27542058)] - **test_runner**: use v8.serialize instead of TAP (Moshe Atlow) [#&#8203;47867](https://github.com/nodejs/node/pull/47867)
    
  • [`17befe008c`](https://github.com/nodejs/node/commit/17befe008c)] - **(SEMVER-MINOR)** **test_runner**: add shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909)
    
  • [`42db1d50a0`](https://github.com/nodejs/node/commit/42db1d50a0)] - **test_runner**: fix ordering of test hooks (Phil Nash) [#&#8203;47931](https://github.com/nodejs/node/pull/47931)
    
  • [`d81c54e3a8`](https://github.com/nodejs/node/commit/d81c54e3a8)] - **test_runner**: omit inaccessible files from coverage (Colin Ihrig) [#&#8203;47850](https://github.com/nodejs/node/pull/47850)
    
  • [`a4e261e910`](https://github.com/nodejs/node/commit/a4e261e910)] - **tools**: debug log for nghttp3 (Marco Ippolito) [#&#8203;47992](https://github.com/nodejs/node/pull/47992)
    
  • [`f6ff318d4c`](https://github.com/nodejs/node/commit/f6ff318d4c)] - **tools**: automate icu-small update (Marco Ippolito) [#&#8203;47727](https://github.com/nodejs/node/pull/47727)
    
  • [`706c305381`](https://github.com/nodejs/node/commit/706c305381)] - **tools**: update lint-md-dependencies to rollup@3.21.5 (Node.js GitHub Bot) [#&#8203;47903](https://github.com/nodejs/node/pull/47903)
    
  • [`e22c686ca9`](https://github.com/nodejs/node/commit/e22c686ca9)] - **tools**: update eslint to 8.40.0 (Node.js GitHub Bot) [#&#8203;47906](https://github.com/nodejs/node/pull/47906)
    
  • [`36f7cfac93`](https://github.com/nodejs/node/commit/36f7cfac93)] - **tools**: update eslint to 8.39.0 (Node.js GitHub Bot) [#&#8203;47789](https://github.com/nodejs/node/pull/47789)
    
  • [`7323902a40`](https://github.com/nodejs/node/commit/7323902a40)] - **tools**: fix jsdoc lint (Moshe Atlow) [#&#8203;47789](https://github.com/nodejs/node/pull/47789)
    
  • [`a0634d7f89`](https://github.com/nodejs/node/commit/a0634d7f89)] - **(SEMVER-MINOR)** **url**: add value argument to has and delete methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885)
    
  • [`1b06c1e003`](https://github.com/nodejs/node/commit/1b06c1e003)] - **url**: improve `isURL` detection (Yagiz Nizipli) [#&#8203;47886](https://github.com/nodejs/node/pull/47886)
    
  • [`2bd869d20c`](https://github.com/nodejs/node/commit/2bd869d20c)] - **vm**: fix crash when setting \__proto\_\_ on context's globalThis (Feng Yu) [#&#8203;47939](https://github.com/nodejs/node/pull/47939)
    
  • [`e6685f9e82`](https://github.com/nodejs/node/commit/e6685f9e82)] - **vm,lib**: refactor microtaskQueue assignment logic (Khaidi Chu) [#&#8203;47765](https://github.com/nodejs/node/pull/47765)
    
  • [`47fea13dac`](https://github.com/nodejs/node/commit/47fea13dac)] - **worker**: support more cases when (de)serializing errors (Moshe Atlow) [#&#8203;47925](https://github.com/nodejs/node/pull/47925)
    
  • [`6f3876c035`](https://github.com/nodejs/node/commit/6f3876c035)] - **worker**: use snapshot in workers spawned by workers (Joyee Cheung) [#&#8203;47731](https://github.com/nodejs/node/pull/47731)
    
    

v20.1.0: 2023-05-03, Version 20.1.0 (Current), @​targos

Compare Source

Notable Changes
  • [`5e99598639`](https://github.com/nodejs/node/commit/5e99598639)] - **assert**: deprecate `CallTracker` (Moshe Atlow) [#&#8203;47740](https://github.com/nodejs/node/pull/47740)
    
  • [`2d97c89c6f`](https://github.com/nodejs/node/commit/2d97c89c6f)] - **crypto**: update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659)
    
  • [`ce8820e292`](https://github.com/nodejs/node/commit/ce8820e292)] - **(SEMVER-MINOR)** **dns**: expose `getDefaultResultOrder` (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973)
    
  • [`9d30f469aa`](https://github.com/nodejs/node/commit/9d30f469aa)] - **doc**: add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510)
    
  • [`439ea47a77`](https://github.com/nodejs/node/commit/439ea47a77)] - **(SEMVER-MINOR)** **fs**: add `recursive` option to `readdir` and `opendir` (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439)
    
  • [`a54e898dc8`](https://github.com/nodejs/node/commit/a54e898dc8)] - **(SEMVER-MINOR)** **fs**: add support for `mode` flag to specify the copy behavior of the `cp` methods (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084)
    
  • [`4fa773964b`](https://github.com/nodejs/node/commit/4fa773964b)] - **(SEMVER-MINOR)** **http**: add `highWaterMark` option `http.createServer` (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405)
    
  • [`2b411f4b42`](https://github.com/nodejs/node/commit/2b411f4b42)] - **(SEMVER-MINOR)** **stream**: preserve object mode in `compose` (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413)
    
  • [`5327483f31`](https://github.com/nodejs/node/commit/5327483f31)] - **(SEMVER-MINOR)** **test_runner**: add `testNamePatterns` to `run` API (Chemi Atlow) [#&#8203;47628](https://github.com/nodejs/node/pull/47628)
    
  • [`bdd02a467d`](https://github.com/nodejs/node/commit/bdd02a467d)] - **(SEMVER-MINOR)** **test_runner**: execute `before` hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586)
    
  • [`0e70c187bc`](https://github.com/nodejs/node/commit/0e70c187bc)] - **(SEMVER-MINOR)** **test_runner**: support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686)
    
  • [`75c1d1b66e`](https://github.com/nodejs/node/commit/75c1d1b66e)] - **(SEMVER-MINOR)** **wasi**: make `returnOnExit` true by default (Michael Dawson) [#&#8203;47390](https://github.com/nodejs/node/pull/47390)
    
    
Commits
  • [`33d1bd3e02`](https://github.com/nodejs/node/commit/33d1bd3e02)] - **assert**: deprecate callTracker (Moshe Atlow) [#&#8203;47740](https://github.com/nodejs/node/pull/47740)
    
  • [`6d87355e83`](https://github.com/nodejs/node/commit/6d87355e83)] - **benchmark**: add eventtarget creation bench (Rafael Gonzaga) [#&#8203;47774](https://github.com/nodejs/node/pull/47774)
    
  • [`40324a1dea`](https://github.com/nodejs/node/commit/40324a1dea)] - **benchmark**: differentiate whatwg and legacy url (Yagiz Nizipli) [#&#8203;47377](https://github.com/nodejs/node/pull/47377)
    
  • [`936d7cb069`](https://github.com/nodejs/node/commit/936d7cb069)] - **benchmark**: add a benchmark for `defaultResolve` (Antoine du Hamel) [#&#8203;47543](https://github.com/nodejs/node/pull/47543)
    
  • [`202042ee93`](https://github.com/nodejs/node/commit/202042ee93)] - **bootstrap**: support namespaced builtins in snapshot scripts (Joyee Cheung) [#&#8203;47467](https://github.com/nodejs/node/pull/47467)
    
  • [`30af5cee55`](https://github.com/nodejs/node/commit/30af5cee55)] - **build**: use pathlib for paths (Mohammed Keyvanzadeh) [#&#8203;47581](https://github.com/nodejs/node/pull/47581)
    
  • [`089c9c51e9`](https://github.com/nodejs/node/commit/089c9c51e9)] - **build**: refactor configure.py (Mohammed Keyvanzadeh) [#&#8203;47667](https://github.com/nodejs/node/pull/47667)
    
  • [`5b851c8074`](https://github.com/nodejs/node/commit/5b851c8074)] - **build**: add devcontainer configuration (Tierney Cyren) [#&#8203;40825](https://github.com/nodejs/node/pull/40825)
    
  • [`35e8b3b467`](https://github.com/nodejs/node/commit/35e8b3b467)] - **build**: bump ossf/scorecard-action from 2.1.2 to 2.1.3 (dependabot\[bot]) [#&#8203;47367](https://github.com/nodejs/node/pull/47367)
    
  • [`78c08243df`](https://github.com/nodejs/node/commit/78c08243df)] - **build**: replace Python linter flake8 with ruff (Christian Clauss) [#&#8203;47519](https://github.com/nodejs/node/pull/47519)
    
  • [`2d97c89c6f`](https://github.com/nodejs/node/commit/2d97c89c6f)] - **crypto**: update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659)
    
  • [`420feb41cf`](https://github.com/nodejs/node/commit/420feb41cf)] - **crypto**: remove INT_MAX restriction in randomBytes (Tobias Nießen) [#&#8203;47559](https://github.com/nodejs/node/pull/47559)
    
  • [`6046779dd9`](https://github.com/nodejs/node/commit/6046779dd9)] - **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;47450](https://github.com/nodejs/node/pull/47450)
    
  • [`00d461e93f`](https://github.com/nodejs/node/commit/00d461e93f)] - **deps**: V8: cherry-pick [`c5ab3e4`](https://github.com/nodejs/node/commit/c5ab3e4f0c5a) (Richard Lau) [#&#8203;47736](https://github.com/nodejs/node/pull/47736)
    
  • [`d08dd8069f`](https://github.com/nodejs/node/commit/d08dd8069f)] - **deps**: update ada to 2.3.0 (Node.js GitHub Bot) [#&#8203;47737](https://github.com/nodejs/node/pull/47737)
    
  • [`996245976b`](https://github.com/nodejs/node/commit/996245976b)] - **deps**: update undici to 5.22.0 (Node.js GitHub Bot) [#&#8203;47679](https://github.com/nodejs/node/pull/47679)
    
  • [`f3ee3126df`](https://github.com/nodejs/node/commit/f3ee3126df)] - **deps**: update ada to 2.2.0 (Node.js GitHub Bot) [#&#8203;47678](https://github.com/nodejs/node/pull/47678)
    
  • [`1391d3b9ff`](https://github.com/nodejs/node/commit/1391d3b9ff)] - **deps**: add minimatch as a dependency (Moshe Atlow) [#&#8203;47499](https://github.com/nodejs/node/pull/47499)
    
  • [`315454350d`](https://github.com/nodejs/node/commit/315454350d)] - **deps**: update ada to 2.1.0 (Node.js GitHub Bot) [#&#8203;47598](https://github.com/nodejs/node/pull/47598)
    
  • [`7f7735cad9`](https://github.com/nodejs/node/commit/7f7735cad9)] - **deps**: update ICU to 73.1 release (Steven R. Loomis) [#&#8203;47456](https://github.com/nodejs/node/pull/47456)
    
  • [`13105c12b7`](https://github.com/nodejs/node/commit/13105c12b7)] - **deps**: patch V8 to 11.3.244.8 (Michaël Zasso) [#&#8203;47536](https://github.com/nodejs/node/pull/47536)
    
  • [`ede69d272a`](https://github.com/nodejs/node/commit/ede69d272a)] - **deps**: update undici to 5.21.2 (Node.js GitHub Bot) [#&#8203;47508](https://github.com/nodejs/node/pull/47508)
    
  • [`64b5a5f872`](https://github.com/nodejs/node/commit/64b5a5f872)] - **deps**: update simdutf to 3.2.8 (Node.js GitHub Bot) [#&#8203;47507](https://github.com/nodejs/node/pull/47507)
    
  • [`2664536796`](https://github.com/nodejs/node/commit/2664536796)] - **deps**: V8: cherry-pick [`8e10685`](https://github.com/nodejs/node/commit/8e10685ff918) (Jiawen Geng) [#&#8203;47440](https://github.com/nodejs/node/pull/47440)
    
  • [`ba9ec91f0e`](https://github.com/nodejs/node/commit/ba9ec91f0e)] - **deps**: update undici to 5.21.1 (Node.js GitHub Bot) [#&#8203;47488](https://github.com/nodejs/node/pull/47488)
    
  • [`ce8820e292`](https://github.com/nodejs/node/commit/ce8820e292)] - **(SEMVER-MINOR)** **dns**: expose getDefaultResultOrder (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973)
    
  • [`4c26e28c33`](https://github.com/nodejs/node/commit/4c26e28c33)] - **doc**: create maintaining folder for deps (Marco Ippolito) [#&#8203;47589](https://github.com/nodejs/node/pull/47589)
    
  • [`aa0ef3eabd`](https://github.com/nodejs/node/commit/aa0ef3eabd)] - **doc**: fix --allow-\* CLI flag references (Tobias Nießen) [#&#8203;47804](https://github.com/nodejs/node/pull/47804)
    
  • [`98603b6fd3`](https://github.com/nodejs/node/commit/98603b6fd3)] - **doc**: clarify fs permissions only affect fs module (Tobias Nießen) [#&#8203;47782](https://github.com/nodejs/node/pull/47782)
    
  • [`3befe5dac9`](https://github.com/nodejs/node/commit/3befe5dac9)] - **doc**: add copy node executable guide on windows (XLor) [#&#8203;47781](https://github.com/nodejs/node/pull/47781)
    
  • [`98450d9892`](https://github.com/nodejs/node/commit/98450d9892)] - **doc**: remove MoLow from Triagers (Moshe Atlow) [#&#8203;47792](https://github.com/nodejs/node/pull/47792)
    
  • [`d75036410d`](https://github.com/nodejs/node/commit/d75036410d)] - **doc**: fix typo in webstreams.md (Christian Takle) [#&#8203;47766](https://github.com/nodejs/node/pull/47766)
    
  • [`ceba37a74f`](https://github.com/nodejs/node/commit/ceba37a74f)] - **doc**: move BethGriggs to regular member (Rich Trott) [#&#8203;47776](https://github.com/nodejs/node/pull/47776)
    
  • [`b954ea9781`](https://github.com/nodejs/node/commit/b954ea9781)] - **doc**: mark signing the binary is macOS and Windows only in SEA (Xuguang Mei) [#&#8203;47722](https://github.com/nodejs/node/pull/47722)
    
  • [`26bccbcd10`](https://github.com/nodejs/node/commit/26bccbcd10)] - **doc**: move addaleax to TSC emeriti (Anna Henningsen) [#&#8203;47752](https://github.com/nodejs/node/pull/47752)
    
  • [`20b0de242f`](https://github.com/nodejs/node/commit/20b0de242f)] - **doc**: add link to news for Node.js core (Michael Dawson) [#&#8203;47704](https://github.com/nodejs/node/pull/47704)
    
  • [`5709133dc7`](https://github.com/nodejs/node/commit/5709133dc7)] - **doc**: fix a typo in `permissions.md` (Daeyeon Jeong) [#&#8203;47730](https://github.com/nodejs/node/pull/47730)
    
  • [`c5c40a89f2`](https://github.com/nodejs/node/commit/c5c40a89f2)] - **doc**: async_hooks asynchronous content example add mjs code (btea) [#&#8203;47401](https://github.com/nodejs/node/pull/47401)
    
  • [`a1403a8df2`](https://github.com/nodejs/node/commit/a1403a8df2)] - **doc**: clarify concurrency model of test runner (Tobias Nießen) [#&#8203;47642](https://github.com/nodejs/node/pull/47642)
    
  • [`c0c23fbe42`](https://github.com/nodejs/node/commit/c0c23fbe42)] - **doc**: fix a typo in `fs.openAsBlob` (Daeyeon Jeong) [#&#8203;47693](https://github.com/nodejs/node/pull/47693)
    
  • [`4cef98812d`](https://github.com/nodejs/node/commit/4cef98812d)] - **doc**: fix typos (Mohammed Keyvanzadeh) [#&#8203;47685](https://github.com/nodejs/node/pull/47685)
    
  • [`f30ef242ef`](https://github.com/nodejs/node/commit/f30ef242ef)] - **doc**: fix capitalization of ASan (Mohammed Keyvanzadeh) [#&#8203;47676](https://github.com/nodejs/node/pull/47676)
    
  • [`78a3503406`](https://github.com/nodejs/node/commit/78a3503406)] - **doc**: fix typos in SECURITY.md (Mohammed Keyvanzadeh) [#&#8203;47677](https://github.com/nodejs/node/pull/47677)
    
  • [`9101630e05`](https://github.com/nodejs/node/commit/9101630e05)] - **doc**: update error code of buffer (Deokjin Kim) [#&#8203;47617](https://github.com/nodejs/node/pull/47617)
    
  • [`183f0c3e79`](https://github.com/nodejs/node/commit/183f0c3e79)] - **doc**: change offset of example in `Buffer.copyBytesFrom` (Deokjin Kim) [#&#8203;47606](https://github.com/nodejs/node/pull/47606)
    
  • [`d11ff4bc53`](https://github.com/nodejs/node/commit/d11ff4bc53)] - **doc**: improve fs permissions description (Tobias Nießen) [#&#8203;47596](https://github.com/nodejs/node/pull/47596)
    
  • [`b58920c3a9`](https://github.com/nodejs/node/commit/b58920c3a9)] - **doc**: remove markdown link from heading (Tobias Nießen) [#&#8203;47585](https://github.com/nodejs/node/pull/47585)
    
  • [`c36634e880`](https://github.com/nodejs/node/commit/c36634e880)] - **doc**: fix history ordering of `WASI` constructor (Antoine du Hamel) [#&#8203;47611](https://github.com/nodejs/node/pull/47611)
    
  • [`d3fadd889d`](https://github.com/nodejs/node/commit/d3fadd889d)] - **doc**: fix release-post script location (Rafael Gonzaga) [#&#8203;47517](https://github.com/nodejs/node/pull/47517)
    
  • [`2a0bbe7883`](https://github.com/nodejs/node/commit/2a0bbe7883)] - **doc**: fix typo in webcrypto metadata (Tobias Nießen) [#&#8203;47595](https://github.com/nodejs/node/pull/47595)
    
  • [`b0b16ee9f6`](https://github.com/nodejs/node/commit/b0b16ee9f6)] - **doc**: add link for news from uvwasi team (Michael Dawson) [#&#8203;47531](https://github.com/nodejs/node/pull/47531)
    
  • [`7ca416af15`](https://github.com/nodejs/node/commit/7ca416af15)] - **doc**: add missing setEncoding call in ESM example (Anna Henningsen) [#&#8203;47558](https://github.com/nodejs/node/pull/47558)
    
  • [`f9abd59b41`](https://github.com/nodejs/node/commit/f9abd59b41)] - **doc**: update darwin-x64 toolchain used for Node.js 20 releases (Michaël Zasso) [#&#8203;47546](https://github.com/nodejs/node/pull/47546)
    
  • [`0dc508070f`](https://github.com/nodejs/node/commit/0dc508070f)] - **doc**: fix split infinitive in Hooks caveat (Jacob Smith) [#&#8203;47550](https://github.com/nodejs/node/pull/47550)
    
  • [`4046280475`](https://github.com/nodejs/node/commit/4046280475)] - **doc**: fix typo in util.types.isNativeError() (Julian Dax) [#&#8203;47532](https://github.com/nodejs/node/pull/47532)
    
  • [`9d30f469aa`](https://github.com/nodejs/node/commit/9d30f469aa)] - **doc**: add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510)
    
  • [`537c17ec48`](https://github.com/nodejs/node/commit/537c17ec48)] - **doc**: create maintaining-brotli.md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380)
    
  • [`09ff9eafd9`](https://github.com/nodejs/node/commit/09ff9eafd9)] - **doc,fs**: update description of fs.stat() method (Mert Can Altın) [#&#8203;47654](https://github.com/nodejs/node/pull/47654)
    
  • [`185d6090cd`](https://github.com/nodejs/node/commit/185d6090cd)] - **doc,test**: fix concurrency option of test() (Tobias Nießen) [#&#8203;47734](https://github.com/nodejs/node/pull/47734)
    
  • [`a793cf401d`](https://github.com/nodejs/node/commit/a793cf401d)] - **esm**: rename `URLCanParse` to be consistent (Antoine du Hamel) [#&#8203;47668](https://github.com/nodejs/node/pull/47668)
    
  • [`fbb6b72f87`](https://github.com/nodejs/node/commit/fbb6b72f87)] - **esm**: remove support for deprecated hooks (Antoine du Hamel) [#&#8203;47580](https://github.com/nodejs/node/pull/47580)
    
  • [`c150976c4f`](https://github.com/nodejs/node/commit/c150976c4f)] - **esm**: initialize `import.meta` on eval (Antoine du Hamel) [#&#8203;47551](https://github.com/nodejs/node/pull/47551)
    
  • [`55f70f6395`](https://github.com/nodejs/node/commit/55f70f6395)] - **esm**: propagate `process.exit` from the loader thread to the main thread (Antoine du Hamel) [#&#8203;47548](https://github.com/nodejs/node/pull/47548)
    
  • [`269482f61f`](https://github.com/nodejs/node/commit/269482f61f)] - **esm**: avoid accessing lazy getters for urls (Yagiz Nizipli) [#&#8203;47542](https://github.com/nodejs/node/pull/47542)
    
  • [`889add68e5`](https://github.com/nodejs/node/commit/889add68e5)] - **esm**: avoid try/catch when validating urls (Yagiz Nizipli) [#&#8203;47541](https://github.com/nodejs/node/pull/47541)
    
  • [`439ea47a77`](https://github.com/nodejs/node/commit/439ea47a77)] - **(SEMVER-MINOR)** **fs**: add recursive option to readdir and opendir (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439)
    
  • [`a54e898dc8`](https://github.com/nodejs/node/commit/a54e898dc8)] - **(SEMVER-MINOR)** **fs**: add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084)
    
  • [`96f93cc500`](https://github.com/nodejs/node/commit/96f93cc500)] - **(SEMVER-MINOR)** **http**: remove internal error in assignSocket (Matteo Collina) [#&#8203;47723](https://github.com/nodejs/node/pull/47723)
    
  • [`4fa773964b`](https://github.com/nodejs/node/commit/4fa773964b)] - **(SEMVER-MINOR)** **http**: add highWaterMark opt in http.createServer (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405)
    
  • [`94a5abb1e0`](https://github.com/nodejs/node/commit/94a5abb1e0)] - **inspector**: add tips for Session (theanarkh) [#&#8203;47195](https://github.com/nodejs/node/pull/47195)
    
  • [`21ff33127a`](https://github.com/nodejs/node/commit/21ff33127a)] - **lib**: improve esm resolve performance (Yagiz Nizipli) [#&#8203;46652](https://github.com/nodejs/node/pull/46652)
    
  • [`b8bdaf86c4`](https://github.com/nodejs/node/commit/b8bdaf86c4)] - **lib**: disallow file-backed blob cloning (James M Snell) [#&#8203;47574](https://github.com/nodejs/node/pull/47574)
    
  • [`e8bc03b372`](https://github.com/nodejs/node/commit/e8bc03b372)] - **lib**: use webidl DOMString converter in EventTarget (Matthew Aitken) [#&#8203;47514](https://github.com/nodejs/node/pull/47514)
    
  • [`91e4a7cdee`](https://github.com/nodejs/node/commit/91e4a7cdee)] - **loader**: use default loader as cascaded loader in the in loader worker (Joyee Cheung) [#&#8203;47620](https://github.com/nodejs/node/pull/47620)
    
  • [`d5089fe00a`](https://github.com/nodejs/node/commit/d5089fe00a)] - **meta**: fix dependabot commit message (Mestery) [#&#8203;47810](https://github.com/nodejs/node/pull/47810)
    
  • [`92794400ce`](https://github.com/nodejs/node/commit/92794400ce)] - **meta**: ping nodejs/startup for startup test changes (Joyee Cheung) [#&#8203;47771](https://github.com/nodejs/node/pull/47771)
    
  • [`8d43689077`](https://github.com/nodejs/node/commit/8d43689077)] - **meta**: add mailmap entry for KhafraDev (Rich Trott) [#&#8203;47512](https://github.com/nodejs/node/pull/47512)
    
  • [`4d02901935`](https://github.com/nodejs/node/commit/4d02901935)] - **node-api**: test passing NULL to napi_define_class (Gabriel Schulhof) [#&#8203;47567](https://github.com/nodejs/node/pull/47567)
    
  • [`568256dca0`](https://github.com/nodejs/node/commit/568256dca0)] - **node-api**: test passing NULL to number APIs (Gabriel Schulhof) [#&#8203;47549](https://github.com/nodejs/node/pull/47549)
    
  • [`12f0fa386d`](https://github.com/nodejs/node/commit/12f0fa386d)] - **node-api**: remove unused mark_arraybuffer_as_untransferable (Chengzhong Wu) [#&#8203;47557](https://github.com/nodejs/node/pull/47557)
    
  • [`e8ea83416a`](https://github.com/nodejs/node/commit/e8ea83416a)] - **quic**: add more QUIC implementation (James M Snell) [#&#8203;47494](https://github.com/nodejs/node/pull/47494)
    
  • [`af227b159d`](https://github.com/nodejs/node/commit/af227b159d)] - **readline**: fix issue with newline-less last line (Ian Harris) [#&#8203;47317](https://github.com/nodejs/node/pull/47317)
    
  • [`e948bec969`](https://github.com/nodejs/node/commit/e948bec969)] - **src**: avoid copying string in fs_permission (Yagiz Nizipli) [#&#8203;47746](https://github.com/nodejs/node/pull/47746)
    
  • [`dc43ce7706`](https://github.com/nodejs/node/commit/dc43ce7706)] - **src**: replace idna functions with ada::idna (Yagiz Nizipli) [#&#8203;47735](https://github.com/nodejs/node/pull/47735)
    
  • [`1f9e7ce7e8`](https://github.com/nodejs/node/commit/1f9e7ce7e8)] - **src**: fix typo in comment in quic/sessionticket.cc (Tobias Nießen) [#&#8203;47754](https://github.com/nodejs/node/pull/47754)
    
  • [`2acb57b777`](https://github.com/nodejs/node/commit/2acb57b777)] - **src**: mark fatal error functions as noreturn (Chengzhong Wu) [#&#8203;47695](https://github.com/nodejs/node/pull/47695)
    
  • [`4431df7481`](https://github.com/nodejs/node/commit/4431df7481)] - **src**: split BlobSerializer/BlobDeserializer (Joyee Cheung) [#&#8203;47458](https://github.com/nodejs/node/pull/47458)
    
  • [`bf9a52cb3d`](https://github.com/nodejs/node/commit/bf9a52cb3d)] - **src**: prevent changing FunctionTemplateInfo after publish (Shelley Vohr) [#&#8203;46979](https://github.com/nodejs/node/pull/46979)
    
  • [`872e6706ca`](https://github.com/nodejs/node/commit/872e6706ca)] - **src**: add v8 fast api for url canParse (Matthew Aitken) [#&#8203;47552](https://github.com/nodejs/node/pull/47552)
    
  • [`cfafe431f2`](https://github.com/nodejs/node/commit/cfafe431f2)] - **src**: make AliasedBuffers in the binding data weak (Joyee Cheung) [#&#8203;47354](https://github.com/nodejs/node/pull/47354)
    
  • [`cf48db0034`](https://github.com/nodejs/node/commit/cf48db0034)] - **src**: use v8::Boolean(b) over b ? True() : False() (Tobias Nießen) [#&#8203;47554](https://github.com/nodejs/node/pull/47554)
    
  • [`ba255eda37`](https://github.com/nodejs/node/commit/ba255eda37)] - **src**: fix typo in process.env accessor error message (Moritz Raho) [#&#8203;47014](https://github.com/nodejs/node/pull/47014)
    
  • [`daf0c78232`](https://github.com/nodejs/node/commit/daf0c78232)] - **src**: replace static const string_view by static constexpr (Daniel Lemire) [#&#8203;47524](https://github.com/nodejs/node/pull/47524)
    
  • [`57e7ed7f47`](https://github.com/nodejs/node/commit/57e7ed7f47)] - **src**: fix CSPRNG when length exceeds INT_MAX (Tobias Nießen) [#&#8203;47515](https://github.com/nodejs/node/pull/47515)
    
  • [`cda36bfd8f`](https://github.com/nodejs/node/commit/cda36bfd8f)] - **src**: use correct variable in node_builtins.cc (Michaël Zasso) [#&#8203;47343](https://github.com/nodejs/node/pull/47343)
    
  • [`adc1601ccd`](https://github.com/nodejs/node/commit/adc1601ccd)] - **src**: slim down stream_base-inl.h (lilsweetcaligula) [#&#8203;46972](https://github.com/nodejs/node/pull/46972)
    
  • [`f88132f1b8`](https://github.com/nodejs/node/commit/f88132f1b8)] - **stream**: prevent pipeline hang with generator functions (Debadree Chatterjee) [#&#8203;47712](https://github.com/nodejs/node/pull/47712)
    
  • [`2b411f4b42`](https://github.com/nodejs/node/commit/2b411f4b42)] - **(SEMVER-MINOR)** **stream**: preserve object mode in compose (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413)
    
  • [`159cf02920`](https://github.com/nodejs/node/commit/159cf02920)] - **test**: refactor to use `getEventListeners` in timers (Deokjin Kim) [#&#8203;47759](https://github.com/nodejs/node/pull/47759)
    
  • [`97a3d39b8f`](https://github.com/nodejs/node/commit/97a3d39b8f)] - **test**: add and use tmpdir.hasEnoughSpace() (Tobias Nießen) [#&#8203;47767](https://github.com/nodejs/node/pull/47767)
    
  • [`5bb7b26bb5`](https://github.com/nodejs/node/commit/5bb7b26bb5)] - **test**: remove spaces from test runner test names (Tobias Nießen) [#&#8203;47733](https://github.com/nodejs/node/pull/47733)
    
  • [`84fa9fd725`](https://github.com/nodejs/node/commit/84fa9fd725)] - **test**: refactor WPTRunner and enable parallel WPT execution (Filip Skokan) [#&#8203;47635](https://github.com/nodejs/node/pull/47635)
    
  • [`9d3768eb01`](https://github.com/nodejs/node/commit/9d3768eb01)] - ***Revert*** "**test**: run WPT files in parallel again" (Filip Skokan) [#&#8203;47627](https://github.com/nodejs/node/pull/47627)
    
  • [`826f4041d1`](https://github.com/nodejs/node/commit/826f4041d1)] - **test**: mark test-cluster-primary-error flaky on asan (Yagiz Nizipli) [#&#8203;47422](https://github.com/nodejs/node/pull/47422)
    
  • [`e5251e31eb`](https://github.com/nodejs/node/commit/e5251e31eb)] - **test_runner**: fix --require with --experimental-loader (Moshe Atlow) [#&#8203;47751](https://github.com/nodejs/node/pull/47751)
    
  • [`6ee5e42c73`](https://github.com/nodejs/node/commit/6ee5e42c73)] - **(SEMVER-MINOR)** **test_runner**: support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686)
    
  • [`f8581e7629`](https://github.com/nodejs/node/commit/f8581e7629)] - **test_runner**: remove no-op validation (Colin Ihrig) [#&#8203;47687](https://github.com/nodejs/node/pull/47687)
    
  • [`40b38797c5`](https://github.com/nodejs/node/commit/40b38797c5)] - **test_runner**: fix test runner concurrency (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675)
    
  • [`2d7cac0c5b`](https://github.com/nodejs/node/commit/2d7cac0c5b)] - **test_runner**: fix test counting (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675)
    
  • [`5a9b71a52e`](https://github.com/nodejs/node/commit/5a9b71a52e)] - **test_runner**: fix nested hooks (Moshe Atlow) [#&#8203;47648](https://github.com/nodejs/node/pull/47648)
    
  • [`5327483f31`](https://github.com/nodejs/node/commit/5327483f31)] - **(SEMVER-MINOR)** **test_runner**: add testNamePatterns to run api (Chemi Atlow) [#&#8203;47628](https://github.com/nodejs/node/pull/47628)
    
  • [`b6fb7914ca`](https://github.com/nodejs/node/commit/b6fb7914ca)] - **test_runner**: support coverage of unnamed functions (Colin Ihrig) [#&#8203;47652](https://github.com/nodejs/node/pull/47652)
    
  • [`1f120a396f`](https://github.com/nodejs/node/commit/1f120a396f)] - **test_runner**: move coverage collection to root.postRun() (Colin Ihrig) [#&#8203;47651](https://github.com/nodejs/node/pull/47651)
    
  • [`bdd02a467d`](https://github.com/nodejs/node/commit/bdd02a467d)] - **(SEMVER-MINOR)** **test_runner**: execute before hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586)
    
  • [`ec24abaa03`](https://github.com/nodejs/node/commit/ec24abaa03)] - **test_runner**: avoid reporting parents of failing tests in summary (Moshe Atlow) [#&#8203;47579](https://github.com/nodejs/node/pull/47579)
    
  • [`4203057740`](https://github.com/nodejs/node/commit/4203057740)] - **test_runner**: fix spec skip detection (Moshe Atlow) [#&#8203;47537](https://github.com/nodejs/node/pull/47537)
    
  • [`57c69987ba`](https://github.com/nodejs/node/commit/57c69987ba)] - **tls**: accept SecureContext object in server.addContext() (HinataKah0) [#&#8203;47570](https://github.com/nodejs/node/pull/47570)
    
  • [`c620eb80a0`](https://github.com/nodejs/node/commit/c620eb80a0)] - **tools**: update doc to highlight.js@11.8.0 (Node.js GitHub Bot) [#&#8203;47786](https://github.com/nodejs/node/pull/47786)
    
  • [`326c3f1593`](https://github.com/nodejs/node/commit/326c3f1593)] - **tools**: add the missing LoongArch64 definition in the v8.gyp file (Sun Haiyong) [#&#8203;47641](https://github.com/nodejs/node/pull/47641)
    
  • [`8d1588acdc`](https://github.com/nodejs/node/commit/8d1588acdc)] - **tools**: update lint-md-dependencies to rollup@3.21.1 (Node.js GitHub Bot) [#&#8203;47787](https://github.com/nodejs/node/pull/47787)
    
  • [`226e5b83ee`](https://github.com/nodejs/node/commit/226e5b83ee)] - **tools**: move update-npm to dep updaters (Marco Ippolito) [#&#8203;47619](https://github.com/nodejs/node/pull/47619)
    
  • [`9d0bef6c0a`](https://github.com/nodejs/node/commit/9d0bef6c0a)] - **tools**: fix update-v8-patch cache (Marco Ippolito) [#&#8203;47725](https://github.com/nodejs/node/pull/47725)
    
  • [`63e8c95a66`](https://github.com/nodejs/node/commit/63e8c95a66)] - **tools**: automate v8 patch update (Marco Ippolito) [#&#8203;47594](https://github.com/nodejs/node/pull/47594)
    
  • [`d2994e52d3`](https://github.com/nodejs/node/commit/d2994e52d3)] - **tools**: fix skip message in update-cjs-module-lexer (Tobias Nießen) [#&#8203;47701](https://github.com/nodejs/node/pull/47701)
    
  • [`ccf9c37b43`](https://github.com/nodejs/node/commit/ccf9c37b43)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;24](https://github.com/24).1.0 (Node.js GitHub Bot) [#&#8203;47577](https://github.com/nodejs/node/pull/47577)
    
  • [`0887fa0464`](https://github.com/nodejs/node/commit/0887fa0464)] - **tools**: keep PR titles/description up-to-date (Tobias Nießen) [#&#8203;47621](https://github.com/nodejs/node/pull/47621)
    
  • [`b8927ddf16`](https://github.com/nodejs/node/commit/b8927ddf16)] - **tools**: fix updating root certificates (Richard Lau) [#&#8203;47607](https://github.com/nodejs/node/pull/47607)
    
  • [`87cae0cb59`](https://github.com/nodejs/node/commit/87cae0cb59)] - **tools**: update PR label config (Mohammed Keyvanzadeh) [#&#8203;47593](https://github.com/nodejs/node/pull/47593)
    
  • [`c17f2688b8`](https://github.com/nodejs/node/commit/c17f2688b8)] - ***Revert*** "**tools**: ensure failed daily wpt run still generates a report" (Filip Skokan) [#&#8203;47627](https://github.com/nodejs/node/pull/47627)
    
  • [`fbe7d73234`](https://github.com/nodejs/node/commit/fbe7d73234)] - **tools**: add execution permission to uvwasi script (Mert Can Altın) [#&#8203;47600](https://github.com/nodejs/node/pull/47600)
    
  • [`e3f4ff439e`](https://github.com/nodejs/node/commit/e3f4ff439e)] - **tools**: add update script for googletest (Tobias Nießen) [#&#8203;47482](https://github.com/nodejs/node/pull/47482)
    
  • [`7c552e650a`](https://github.com/nodejs/node/commit/7c552e650a)] - **tools**: add option to run workflow with specific tool id (Michaël Zasso) [#&#8203;47591](https://github.com/nodejs/node/pull/47591)
    
  • [`1509312170`](https://github.com/nodejs/node/commit/1509312170)] - **tools**: automate zlib update (Marco Ippolito) [#&#8203;47417](https://github.com/nodejs/node/pull/47417)
    
  • [`6af7f1ee03`](https://github.com/nodejs/node/commit/6af7f1ee03)] - **tools**: add url and whatwg-url labels automatically (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545)
    
  • [`ff73c05d54`](https://github.com/nodejs/node/commit/ff73c05d54)] - **tools**: add performance label to benchmark changes (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545)
    
  • [`9e3e0b0a84`](https://github.com/nodejs/node/commit/9e3e0b0a84)] - **tools**: automate uvwasi dependency update (Ranieri Innocenti Spada) [#&#8203;47509](https://github.com/nodejs/node/pull/47509)
    
  • [`233b628f22`](https://github.com/nodejs/node/commit/233b628f22)] - **tools**: add missing pinned dependencies (Mateo Nunez) [#&#8203;47346](https://github.com/nodejs/node/pull/47346)
    
  • [`e4d95859f5`](https://github.com/nodejs/node/commit/e4d95859f5)] - **tools**: automate ngtcp2 and nghttp3 update (Marco Ippolito) [#&#8203;47402](https://github.com/nodejs/node/pull/47402)
    
  • [`2e8338126b`](https://github.com/nodejs/node/commit/2e8338126b)] - **tools**: move update-undici.sh to dep_updaters and create maintain md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380)
    
  • [`8712eafc87`](https://github.com/nodejs/node/commit/8712eafc87)] - **typings**: fix syntax error in tsconfig (Mohammed Keyvanzadeh) [#&#8203;47584](https://github.com/nodejs/node/pull/47584)
    
  • [`e4b6b79f18`](https://github.com/nodejs/node/commit/e4b6b79f18)] - **url**: reduce revokeObjectURL cpp calls (Yagiz Nizipli) [#&#8203;47728](https://github.com/nodejs/node/pull/47728)
    
  • [`9aae76727f`](https://github.com/nodejs/node/commit/9aae76727f)] - **url**: handle URL.canParse without base parameter (Yagiz Nizipli) [#&#8203;47547](https://github.com/nodejs/node/pull/47547)
    
  • [`180d365439`](https://github.com/nodejs/node/commit/180d365439)] - **url**: validate URL constructor arg length (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513)
    
  • [`4839fc4369`](https://github.com/nodejs/node/commit/4839fc4369)] - **url**: validate argument length in canParse (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513)
    
  • [`606523d37e`](https://github.com/nodejs/node/commit/606523d37e)] - **v8**: fix ERR_NOT_BUILDING_SNAPSHOT is not a constructor (Chengzhong Wu) [#&#8203;47721](https://github.com/nodejs/node/pull/47721)
    
  • [`75c1d1b66e`](https://github.com/nodejs/node/commit/75c1d1b66e)] - **(SEMVER-MINOR)** **wasi**: make returnOnExit true by default (Michael Dawson) [#&#8203;47390](https://github.com/nodejs/node/pull/47390)
    
    

v20.0.0: 2023-04-18, Version 20.0.0 (Current), @​RafaelGSS

Compare Source

We're excited to announce the release of Node.js 20! Highlights include the new Node.js Permission Model,
a synchronous import.meta.resolve, a stable test_runner, updates of the V8 JavaScript engine to 11.3, Ada to 2.0,
and more!

As a reminder, Node.js 20 will enter long-term support (LTS) in October, but until then, it will be the "Current" release for the next six months.
We encourage you to explore the new features and benefits offered by this latest release and evaluate their potential impact on your applications.

Notable Changes
Permission Model

Node.js now has an experimental feature called the Permission Model.
It allows developers to restrict access to specific resources during program execution, such as file system operations,
child process spawning, and worker thread creation.
The API exists behind a flag --experimental-permission which when enabled will restrict access to all available permissions.
By using this feature, developers can prevent their applications from accessing or modifying sensitive data or running potentially harmful code.
More information about the Permission Model can be found in the Node.js documentation.

The Permission Model was a contribution by Rafael Gonzaga in #​44004.

Custom ESM loader hooks run on dedicated thread

ESM hooks supplied via loaders (--experimental-loader=foo.mjs) now run in a dedicated thread, isolated from the main thread.
This provides a separate scope for loaders and ensures no cross-contamination between loaders and application code.

Synchronous import.meta.resolve()

In alignment with browser behavior, this function now returns synchronously.
Despite this, user loader resolve hooks can still be defined as async functions (or as sync functions, if the author prefers).
Even when there are async resolve hooks loaded, import.meta.resolve will still return synchronously for application code.

Contributed by Anna Henningsen, Antoine du Hamel, Geoffrey Booth, Guy Bedford, Jacob Smith, and Michaël Zasso in #​44710

V8 11.3

The V8 engine is updated to version 11.3, which is part of Chromium 113.
This version includes three new features to the JavaScript API:

The V8 update was a contribution by Michaël Zasso in #​47251.

Stable Test Runner

The recent update to Node.js, version 20, includes an important change to the test_runner module. The module has been marked as stable after a recent update.
Previously, the test_runner module was experimental, but this change marks it as a stable module that is ready for production use.

Contributed by Colin Ihrig in #​46983

Ada 2.0

Node.js v20 comes with the latest version of the URL parser, Ada. This update brings significant performance improvements
to URL parsing, including enhancements to the url.domainToASCII and url.domainToUnicode functions in node:url.

Ada 2.0 has been integrated into the Node.js codebase, ensuring that all parts of the application can benefit from the
improved performance. Additionally, Ada 2.0 features a significant performance boost over its predecessor, Ada 1.0.4,
while also eliminating the need for the ICU requirement for URL hostname parsing.

Contributed by Yagiz Nizipli and Daniel Lemire in #​47339

Preparing single executable apps now requires injecting a Blob

Building a single executable app now requires injecting a blob prepared by
Node.js from a JSON config instead of injecting the raw JS file.
This opens up the possibility of embedding multiple co-existing resources into the SEA (Single Executable Apps).

Contributed by Joyee Cheung in #​47125

Web Crypto API

Web Crypto API functions' arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations.
This further improves interoperability with other implementations of Web Crypto API.

This change was made by Filip Skokan in #​46067.

Official support for ARM64 Windows

Node.js now includes binaries for ARM64 Windows, allowing for native execution on the platform.
The MSI, zip/7z packages, and executable are available from the Node.js download site along with all other platforms.
The CI system was updated and all changes are now fully tested on ARM64 Windows, to prevent regressions and ensure compatibility.

ARM64 Windows was upgraded to tier 2 support by Stefan Stojanovic in #​47233.

WASI version must now be specified

When new WASI() is called, the version option is now required and has no default value.
Any code that relied on the default for the version will need to be updated to request a specific version.

This change was made by Michael Dawson in #​47391.

Deprecations and Removals
  • [`3bed5f11e0`](https://github.com/nodejs/node/commit/3bed5f11e0)] - **(SEMVER-MAJOR)** **url**: runtime-deprecate url.parse() with invalid ports (Rich Trott) [#&#8203;45526](https://github.com/nodejs/node/pull/45526)
    
    

url.parse() accepts URLs with ports that are not numbers. This behavior might result in host name spoofing with unexpected input.
These URLs will throw an error in future versions of Node.js, as the WHATWG URL API does already.
Starting with Node.js 20, these URLS cause url.parse() to emit a warning.

Semver-Major Commits
  • [`9fafb0a090`](https://github.com/nodejs/node/commit/9fafb0a090)] - **(SEMVER-MAJOR)** **async_hooks**: deprecate the AsyncResource.bind asyncResource property (James M Snell) [#&#8203;46432](https://github.com/nodejs/node/pull/46432)
    
  • [`1948d37595`](https://github.com/nodejs/node/commit/1948d37595)] - **(SEMVER-MAJOR)** **buffer**: check INSPECT_MAX_BYTES with validateNumber (Umuoy) [#&#8203;46599](https://github.com/nodejs/node/pull/46599)
    
  • [`7bc0e6a4e7`](https://github.com/nodejs/node/commit/7bc0e6a4e7)] - **(SEMVER-MAJOR)** **buffer**: graduate File from experimental and expose as global (Khafra) [#&#8203;47153](https://github.com/nodejs/node/pull/47153)
    
  • [`671ffd7825`](https://github.com/nodejs/node/commit/671ffd7825)] - **(SEMVER-MAJOR)** **buffer**: use min/max of `validateNumber` (Deokjin Kim) [#&#8203;45796](https://github.com/nodejs/node/pull/45796)
    
  • [`ab1614d280`](https://github.com/nodejs/node/commit/ab1614d280)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`c1bcdbcf79`](https://github.com/nodejs/node/commit/c1bcdbcf79)] - **(SEMVER-MAJOR)** **build**: warn for gcc versions earlier than 10.1 (Richard Lau) [#&#8203;46806](https://github.com/nodejs/node/pull/46806)
    
  • [`649f68fc1e`](https://github.com/nodejs/node/commit/649f68fc1e)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`9374700d7a`](https://github.com/nodejs/node/commit/9374700d7a)] - **(SEMVER-MAJOR)** **crypto**: remove DEFAULT_ENCODING (Tobias Nießen) [#&#8203;47182](https://github.com/nodejs/node/pull/47182)
    
  • [`1640aeb680`](https://github.com/nodejs/node/commit/1640aeb680)] - **(SEMVER-MAJOR)** **crypto**: remove obsolete SSL_OP_\* constants (Tobias Nießen) [#&#8203;47073](https://github.com/nodejs/node/pull/47073)
    
  • [`c2e4b1fa9a`](https://github.com/nodejs/node/commit/c2e4b1fa9a)] - **(SEMVER-MAJOR)** **crypto**: remove ALPN_ENABLED (Tobias Nießen) [#&#8203;47028](https://github.com/nodejs/node/pull/47028)
    
  • [`3ef38c4bd7`](https://github.com/nodejs/node/commit/3ef38c4bd7)] - **(SEMVER-MAJOR)** **crypto**: use WebIDL converters in WebCryptoAPI (Filip Skokan) [#&#8203;46067](https://github.com/nodejs/node/pull/46067)
    
  • [`08af023b1f`](https://github.com/nodejs/node/commit/08af023b1f)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate replaced rsa-pss keygen parameters (Filip Skokan) [#&#8203;45653](https://github.com/nodejs/node/pull/45653)
    
  • [`7eb0ac3cb6`](https://github.com/nodejs/node/commit/7eb0ac3cb6)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation on win-arm64 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`a7c129f286`](https://github.com/nodejs/node/commit/a7c129f286)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`6f5655a18e`](https://github.com/nodejs/node/commit/6f5655a18e)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`f226350fcb`](https://github.com/nodejs/node/commit/f226350fcb)] - **(SEMVER-MAJOR)** **deps**: update V8 to 11.3.244.4 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`d6dae7420e`](https://github.com/nodejs/node/commit/d6dae7420e)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`f1c888e`](https://github.com/nodejs/node/commit/f1c888e7093e) (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`56c436533e`](https://github.com/nodejs/node/commit/56c436533e)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`51ab98c71b`](https://github.com/nodejs/node/commit/51ab98c71b)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`9f84d3eea8`](https://github.com/nodejs/node/commit/9f84d3eea8)] - **(SEMVER-MAJOR)** **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`f2318cd4b5`](https://github.com/nodejs/node/commit/f2318cd4b5)] - **(SEMVER-MAJOR)** **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`16e03e7968`](https://github.com/nodejs/node/commit/16e03e7968)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.9.194.4 (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`6473f5e7f7`](https://github.com/nodejs/node/commit/6473f5e7f7)] - **(SEMVER-MAJOR)** **doc**: update toolchains used for Node.js 20 releases (Richard Lau) [#&#8203;47352](https://github.com/nodejs/node/pull/47352)
    
  • [`cc18fd9608`](https://github.com/nodejs/node/commit/cc18fd9608)] - **(SEMVER-MAJOR)** **events**: refactor to use `validateNumber` (Deokjin Kim) [#&#8203;45770](https://github.com/nodejs/node/pull/45770)
    
  • [`ff92b40ffc`](https://github.com/nodejs/node/commit/ff92b40ffc)] - **(SEMVER-MAJOR)** **http**: close the connection after sending a body without declared length (Tim Perry) [#&#8203;46333](https://github.com/nodejs/node/pull/46333)
    
  • [`2a29df6464`](https://github.com/nodejs/node/commit/2a29df6464)] - **(SEMVER-MAJOR)** **http**: keep HTTP/1.1 conns alive even if the Connection header is removed (Tim Perry) [#&#8203;46331](https://github.com/nodejs/node/pull/46331)
    
  • [`391dc74a10`](https://github.com/nodejs/node/commit/391dc74a10)] - **(SEMVER-MAJOR)** **http**: throw error if options of http.Server is array (Deokjin Kim) [#&#8203;46283](https://github.com/nodejs/node/pull/46283)
    
  • [`ed3604cd64`](https://github.com/nodejs/node/commit/ed3604cd64)] - **(SEMVER-MAJOR)** **http**: server check Host header, to meet RFC 7230 5.4 requirement (wwwzbwcom) [#&#8203;45597](https://github.com/nodejs/node/pull/45597)
    
  • [`88d71dc301`](https://github.com/nodejs/node/commit/88d71dc301)] - **(SEMVER-MAJOR)** **lib**: refactor to use min/max of `validateNumber` (Deokjin Kim) [#&#8203;45772](https://github.com/nodejs/node/pull/45772)
    
  • [`e4d641f02a`](https://github.com/nodejs/node/commit/e4d641f02a)] - **(SEMVER-MAJOR)** **lib**: refactor to use validators in http2 (Debadree Chatterjee) [#&#8203;46174](https://github.com/nodejs/node/pull/46174)
    
  • [`0f3e531096`](https://github.com/nodejs/node/commit/0f3e531096)] - **(SEMVER-MAJOR)** **lib**: performance improvement on readline async iterator (Thiago Oliveira Santos) [#&#8203;41276](https://github.com/nodejs/node/pull/41276)
    
  • [`5b5898ac86`](https://github.com/nodejs/node/commit/5b5898ac86)] - **(SEMVER-MAJOR)** **lib,src**: update exit codes as per todos (Debadree Chatterjee) [#&#8203;45841](https://github.com/nodejs/node/pull/45841)
    
  • [`55321bafd1`](https://github.com/nodejs/node/commit/55321bafd1)] - **(SEMVER-MAJOR)** **net**: enable autoSelectFamily by default (Paolo Insogna) [#&#8203;46790](https://github.com/nodejs/node/pull/46790)
    
  • [`2d0d99733b`](https://github.com/nodejs/node/commit/2d0d99733b)] - **(SEMVER-MAJOR)** **process**: remove `process.exit()`, `process.exitCode` coercion to integer (Daeyeon Jeong) [#&#8203;43716](https://github.com/nodejs/node/pull/43716)
    
  • [`dc06df31b6`](https://github.com/nodejs/node/commit/dc06df31b6)] - **(SEMVER-MAJOR)** **readline**: refactor to use `validateNumber` (Deokjin Kim) [#&#8203;45801](https://github.com/nodejs/node/pull/45801)
    
  • [`295b2f3ff4`](https://github.com/nodejs/node/commit/295b2f3ff4)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 115 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`3803b028dd`](https://github.com/nodejs/node/commit/3803b028dd)] - **(SEMVER-MAJOR)** **src**: share common code paths for SEA and embedder script (Anna Henningsen) [#&#8203;46825](https://github.com/nodejs/node/pull/46825)
    
  • [`e8bddac3e9`](https://github.com/nodejs/node/commit/e8bddac3e9)] - **(SEMVER-MAJOR)** **src**: apply ABI-breaking API simplifications (Anna Henningsen) [#&#8203;46705](https://github.com/nodejs/node/pull/46705)
    
  • [`f84de0ad4c`](https://github.com/nodejs/node/commit/f84de0ad4c)] - **(SEMVER-MAJOR)** **src**: use uint32\_t for process initialization flags enum (Anna Henningsen) [#&#8203;46427](https://github.com/nodejs/node/pull/46427)
    
  • [`a6242772ec`](https://github.com/nodejs/node/commit/a6242772ec)] - **(SEMVER-MAJOR)** **src**: fix ArrayBuffer::Detach deprecation (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`dd5c39a808`](https://github.com/nodejs/node/commit/dd5c39a808)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 112 (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`63eca7fec0`](https://github.com/nodejs/node/commit/63eca7fec0)] - **(SEMVER-MAJOR)** **stream**: validate readable defaultEncoding (Marco Ippolito) [#&#8203;46430](https://github.com/nodejs/node/pull/46430)
    
  • [`9e7093f416`](https://github.com/nodejs/node/commit/9e7093f416)] - **(SEMVER-MAJOR)** **stream**: validate writable defaultEncoding (Marco Ippolito) [#&#8203;46322](https://github.com/nodejs/node/pull/46322)
    
  • [`fb91ee4f26`](https://github.com/nodejs/node/commit/fb91ee4f26)] - **(SEMVER-MAJOR)** **test**: make trace-gc-flag tests less strict (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`eca618071e`](https://github.com/nodejs/node/commit/eca618071e)] - **(SEMVER-MAJOR)** **test**: adapt test-v8-stats for V8 update (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`c03354d3e0`](https://github.com/nodejs/node/commit/c03354d3e0)] - **(SEMVER-MAJOR)** **test**: test case for multiple res.writeHead and res.getHeader (Marco Ippolito) [#&#8203;45508](https://github.com/nodejs/node/pull/45508)
    
  • [`c733cc0c7f`](https://github.com/nodejs/node/commit/c733cc0c7f)] - **(SEMVER-MAJOR)** **test_runner**: mark module as stable (Colin Ihrig) [#&#8203;46983](https://github.com/nodejs/node/pull/46983)
    
  • [`7ce223273d`](https://github.com/nodejs/node/commit/7ce223273d)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 11.1 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`ca4bd3023e`](https://github.com/nodejs/node/commit/ca4bd3023e)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 11.0 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251)
    
  • [`58b06a269a`](https://github.com/nodejs/node/commit/58b06a269a)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579)
    
  • [`027841c964`](https://github.com/nodejs/node/commit/027841c964)] - **(SEMVER-MAJOR)** **url**: use private properties for brand check (Yagiz Nizipli) [#&#8203;46904](https://github.com/nodejs/node/pull/46904)
    
  • [`3bed5f11e0`](https://github.com/nodejs/node/commit/3bed5f11e0)] - **(SEMVER-MAJOR)** **url**: runtime-deprecate url.parse() with invalid ports (Rich Trott) [#&#8203;45526](https://github.com/nodejs/node/pull/45526)
    
  • [`7c76fddf25`](https://github.com/nodejs/node/commit/7c76fddf25)] - **(SEMVER-MAJOR)** **util,doc**: mark parseArgs() as stable (Colin Ihrig) [#&#8203;46718](https://github.com/nodejs/node/pull/46718)
    
  • [`4b52727976`](https://github.com/nodejs/node/commit/4b52727976)] - **(SEMVER-MAJOR)** **wasi**: make version non-optional (Michael Dawson) [#&#8203;47391](https://github.com/nodejs/node/pull/47391)
    
    
Semver-Minor Commits
  • [`d4b440bfac`](https://github.com/nodejs/node/commit/d4b440bfac)] - **(SEMVER-MINOR)** **fs**: implement byob mode for readableWebStream() (Debadree Chatterjee) [#&#8203;46933](https://github.com/nodejs/node/pull/46933)
    
  • [`00c222593e`](https://github.com/nodejs/node/commit/00c222593e)] - **(SEMVER-MINOR)** **src,process**: add permission model (Rafael Gonzaga) [#&#8203;44004](https://github.com/nodejs/node/pull/44004)
    
  • [`978b57d750`](https://github.com/nodejs/node/commit/978b57d750)] - **(SEMVER-MINOR)** **wasi**: no longer require flag to enable wasi (Michael Dawson) [#&#8203;47286](https://github.com/nodejs/node/pull/47286)
    
    
Semver-Patch Commits
  • [`e50c6b9a22`](https://github.com/nodejs/node/commit/e50c6b9a22)] - **bootstrap**: do not expand process.argv\[1] for snapshot entry points (Joyee Cheung) [#&#8203;47466](https://github.com/nodejs/node/pull/47466)
    
  • [`c81e1143e4`](https://github.com/nodejs/node/commit/c81e1143e4)] - **bootstrap**: store internal loaders in C++ via a binding (Joyee Cheung) [#&#8203;47215](https://github.com/nodejs/node/pull/47215)
    
  • [`8e673bdb84`](https://github.com/nodejs/node/commit/8e673bdb84)] - **build**: add node-core-utils to setup (Jiawen Geng) [#&#8203;47442](https://github.com/nodejs/node/pull/47442)
    
  • [`5b561d72a6`](https://github.com/nodejs/node/commit/5b561d72a6)] - **build**: sync cares source change (Jiawen Geng) [#&#8203;47359](https://github.com/nodejs/node/pull/47359)
    
  • [`8e6ee53e4e`](https://github.com/nodejs/node/commit/8e6ee53e4e)] - **build**: remove non-exist build file (Jiawen Geng) [#&#8203;47361](https://github.com/nodejs/node/pull/47361)
    
  • [`9a4d21d1d9`](https://github.com/nodejs/node/commit/9a4d21d1d9)] - **build, deps, tools**: avoid excessive LTO (Konstantin Demin) [#&#8203;47313](https://github.com/nodejs/node/pull/47313)
    
  • [`48c01485cd`](https://github.com/nodejs/node/commit/48c01485cd)] - **crypto**: replace THROW with CHECK for scrypt keylen (Tobias Nießen) [#&#8203;47407](https://github.com/nodejs/node/pull/47407)
    
  • [`4c1a27716b`](https://github.com/nodejs/node/commit/4c1a27716b)] - **crypto**: re-add padding for AES-KW wrapped JWKs (Filip Skokan) [#&#8203;46563](https://github.com/nodejs/node/pull/46563)
    
  • [`b66eb15d12`](https://github.com/nodejs/node/commit/b66eb15d12)] - **deps**: update simdutf to 3.2.7 (Node.js GitHub Bot) [#&#8203;47473](https://github.com/nodejs/node/pull/47473)
    
  • [`3fc11477ba`](https://github.com/nodejs/node/commit/3fc11477ba)] - **deps**: update corepack to 0.17.2 (Node.js GitHub Bot) [#&#8203;47474](https://github.com/nodejs/node/pull/47474)
    
  • [`c1776531ab`](https://github.com/nodejs/node/commit/c1776531ab)] - **deps**: upgrade npm to 9.6.4 (npm team) [#&#8203;47432](https://github.com/nodejs/node/pull/47432)
    
  • [`e7ca09f310`](https://github.com/nodejs/node/commit/e7ca09f310)] - **deps**: update zlib to upstream [`5edb52d`](https://github.com/nodejs/node/commit/5edb52d4) (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151)
    
  • [`88387ccd12`](https://github.com/nodejs/node/commit/88387ccd12)] - **deps**: update ada to 2.0.0 (Node.js GitHub Bot) [#&#8203;47339](https://github.com/nodejs/node/pull/47339)
    
  • [`9f468cc37e`](https://github.com/nodejs/node/commit/9f468cc37e)] - **deps**: cherry-pick Windows ARM64 fix for openssl (Richard Lau) [#&#8203;46570](https://github.com/nodejs/node/pull/46570)
    
  • [`eeab210b1b`](https://github.com/nodejs/node/commit/eeab210b1b)] - **deps**: update archs files for quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46570](https://github.com/nodejs/node/pull/46570)
    
  • [`d93d7716c7`](https://github.com/nodejs/node/commit/d93d7716c7)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46571](https://github.com/nodejs/node/pull/46571)
    
  • [`0f69ec4dd7`](https://github.com/nodejs/node/commit/0f69ec4dd7)] - **deps**: patch V8 to 10.9.194.9 (Michaël Zasso) [#&#8203;45995](https://github.com/nodejs/node/pull/45995)
    
  • [`5890d09644`](https://github.com/nodejs/node/commit/5890d09644)] - **deps**: patch V8 to 10.9.194.6 (Michaël Zasso) [#&#8203;45748](https://github.com/nodejs/node/pull/45748)
    
  • [`c02a7e7e93`](https://github.com/nodejs/node/commit/c02a7e7e93)] - **diagnostics_channel**: fix ref counting bug when reaching zero subscribers (Stephen Belanger) [#&#8203;47520](https://github.com/nodejs/node/pull/47520)
    
  • [`c7ad5bb37d`](https://github.com/nodejs/node/commit/c7ad5bb37d)] - **doc**: info on handling unintended breaking changes (Michael Dawson) [#&#8203;47426](https://github.com/nodejs/node/pull/47426)
    
  • [`7d2d40ed0d`](https://github.com/nodejs/node/commit/7d2d40ed0d)] - **doc**: add performance initiative (Yagiz Nizipli) [#&#8203;47424](https://github.com/nodejs/node/pull/47424)
    
  • [`d56c0f7318`](https://github.com/nodejs/node/commit/d56c0f7318)] - **doc**: do not create a backup file (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151)
    
  • [`412d27b65b`](https://github.com/nodejs/node/commit/412d27b65b)] - **doc**: add MoLow to the TSC (Colin Ihrig) [#&#8203;47436](https://github.com/nodejs/node/pull/47436)
    
  • [`f131cca0c0`](https://github.com/nodejs/node/commit/f131cca0c0)] - **doc**: reserve 116 for Electron 25 (Keeley Hammond) [#&#8203;47375](https://github.com/nodejs/node/pull/47375)
    
  • [`1022c6f424`](https://github.com/nodejs/node/commit/1022c6f424)] - **doc**: add experimental stages (Geoffrey Booth) [#&#8203;46100](https://github.com/nodejs/node/pull/46100)
    
  • [`42d3d74717`](https://github.com/nodejs/node/commit/42d3d74717)] - **doc**: clarify release notes for Node.js 16.19.0 (Richard Lau) [#&#8203;45846](https://github.com/nodejs/node/pull/45846)
    
  • [`533c6512da`](https://github.com/nodejs/node/commit/533c6512da)] - **doc**: clarify release notes for Node.js 14.21.2 (Richard Lau) [#&#8203;45846](https://github.com/nodejs/node/pull/45846)
    
  • [`97165fc1a6`](https://github.com/nodejs/node/commit/97165fc1a6)] - **doc**: fix doc metadata for Node.js 16.19.0 (Richard Lau) [#&#8203;45863](https://github.com/nodejs/node/pull/45863)
    
  • [`a266b8b702`](https://github.com/nodejs/node/commit/a266b8b702)] - **doc**: add registry number for Electron 23 & 24 (Keeley Hammond) [#&#8203;45661](https://github.com/nodejs/node/pull/45661)
    
  • [`2613a9ced9`](https://github.com/nodejs/node/commit/2613a9ced9)] - **esm**: move hook execution to separate thread (Jacob Smith) [#&#8203;44710](https://github.com/nodejs/node/pull/44710)
    
  • [`841f6b3abf`](https://github.com/nodejs/node/commit/841f6b3abf)] - **esm**: increase test coverage of edge cases (Antoine du Hamel) [#&#8203;47033](https://github.com/nodejs/node/pull/47033)
    
  • [`0d575fe61a`](https://github.com/nodejs/node/commit/0d575fe61a)] - **gyp**: put filenames in variables (Cheng Zhao) [#&#8203;46965](https://github.com/nodejs/node/pull/46965)
    
  • [`41b186722c`](https://github.com/nodejs/node/commit/41b186722c)] - **lib**: distinguish webidl interfaces with the extended property "Exposed" (Chengzhong Wu) [#&#8203;46809](https://github.com/nodejs/node/pull/46809)
    
  • [`9b7db62276`](https://github.com/nodejs/node/commit/9b7db62276)] - **lib**: makeRequireFunction patch when experimental policy (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358)
    
  • [`d43b532789`](https://github.com/nodejs/node/commit/d43b532789)] - **lib**: refactor to use `validateBuffer` (Deokjin Kim) [#&#8203;46489](https://github.com/nodejs/node/pull/46489)
    
  • [`9a76a2521b`](https://github.com/nodejs/node/commit/9a76a2521b)] - **meta**: ping security-wg team on permission model changes (Rafael Gonzaga) [#&#8203;47483](https://github.com/nodejs/node/pull/47483)
    
  • [`a4dadde1ba`](https://github.com/nodejs/node/commit/a4dadde1ba)] - **meta**: ping startup and realm team on src/node_realm\* changes (Joyee Cheung) [#&#8203;47448](https://github.com/nodejs/node/pull/47448)
    
  • [`631c3ef3de`](https://github.com/nodejs/node/commit/631c3ef3de)] - **module**: do less CJS module loader initialization at run time (Joyee Cheung) [#&#8203;47194](https://github.com/nodejs/node/pull/47194)
    
  • [`8bcf0a42f7`](https://github.com/nodejs/node/commit/8bcf0a42f7)] - **permission**: fix chmod,chown improve fs coverage (Rafael Gonzaga) [#&#8203;47529](https://github.com/nodejs/node/pull/47529)
    
  • [`54d17ff4b5`](https://github.com/nodejs/node/commit/54d17ff4b5)] - **permission**: support fs.mkdtemp (Rafael Gonzaga) [#&#8203;47470](https://github.com/nodejs/node/pull/47470)
    
  • [`b441b5dc65`](https://github.com/nodejs/node/commit/b441b5dc65)] - **permission**: drop process.permission.deny (Rafael Gonzaga) [#&#8203;47335](https://github.com/nodejs/node/pull/47335)
    
  • [`aa30e16716`](https://github.com/nodejs/node/commit/aa30e16716)] - **permission**: fix some vulnerabilities in fs (Tobias Nießen) [#&#8203;47091](https://github.com/nodejs/node/pull/47091)
    
  • [`1726da9300`](https://github.com/nodejs/node/commit/1726da9300)] - **permission**: add path separator to loader check (Rafael Gonzaga) [#&#8203;47030](https://github.com/nodejs/node/pull/47030)
    
  • [`b164038c86`](https://github.com/nodejs/node/commit/b164038c86)] - **permission**: fix spawnSync permission check (RafaelGSS) [#&#8203;46975](https://github.com/nodejs/node/pull/46975)
    
  • [`af91400886`](https://github.com/nodejs/node/commit/af91400886)] - **policy**: makeRequireFunction on mainModule.require (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358)
    
  • [`f8b4e26aee`](https://github.com/nodejs/node/commit/f8b4e26aee)] - **quic**: add more QUIC impl (James M Snell) [#&#8203;47348](https://github.com/nodejs/node/pull/47348)
    
  • [`d65ae9f678`](https://github.com/nodejs/node/commit/d65ae9f678)] - **quic**: add additional quic implementation utilities (James M Snell) [#&#8203;47289](https://github.com/nodejs/node/pull/47289)
    
  • [`9b104be502`](https://github.com/nodejs/node/commit/9b104be502)] - **quic**: do not dereference shared_ptr after move (Tobias Nießen) [#&#8203;47294](https://github.com/nodejs/node/pull/47294)
    
  • [`09a4bb152f`](https://github.com/nodejs/node/commit/09a4bb152f)] - **quic**: add multiple internal utilities (James M Snell) [#&#8203;47263](https://github.com/nodejs/node/pull/47263)
    
  • [`2bde0059ca`](https://github.com/nodejs/node/commit/2bde0059ca)] - **sea**: use JSON configuration and blob content for SEA (Joyee Cheung) [#&#8203;47125](https://github.com/nodejs/node/pull/47125)
    
  • [`78c7475493`](https://github.com/nodejs/node/commit/78c7475493)] - **src**: allow simdutf::convert_\* functions to return zero (Daniel Lemire) [#&#8203;47471](https://github.com/nodejs/node/pull/47471)
    
  • [`5250947a53`](https://github.com/nodejs/node/commit/5250947a53)] - **src**: track ShadowRealm native objects correctly in the heap snapshot (Joyee Cheung) [#&#8203;47389](https://github.com/nodejs/node/pull/47389)
    
  • [`8059764621`](https://github.com/nodejs/node/commit/8059764621)] - **src**: use the internal field to determine if an object is a BaseObject (Joyee Cheung) [#&#8203;47217](https://github.com/nodejs/node/pull/47217)
    
  • [`698508afa8`](https://github.com/nodejs/node/commit/698508afa8)] - **src**: bootstrap prepare stack trace callback in shadow realm (Chengzhong Wu) [#&#8203;47107](https://github.com/nodejs/node/pull/47107)
    
  • [`e6b4d30a2f`](https://github.com/nodejs/node/commit/e6b4d30a2f)] - **src**: bootstrap Web \[Exposed=\*] APIs in the shadow realm (Chengzhong Wu) [#&#8203;46809](https://github.com/nodejs/node/pull/46809)
    
  • [`3646a66044`](https://github.com/nodejs/node/commit/3646a66044)] - **src**: fix AliasedBuffer memory attribution in heap snapshots (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817)
    
  • [`8b2126f63f`](https://github.com/nodejs/node/commit/8b2126f63f)] - **src**: move AliasedBuffer implementation to -inl.h (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817)
    
  • [`3abbc3829a`](https://github.com/nodejs/node/commit/3abbc3829a)] - **src**: fix useless call in permission.cc (Tobias Nießen) [#&#8203;46833](https://github.com/nodejs/node/pull/46833)
    
  • [`7b1e153530`](https://github.com/nodejs/node/commit/7b1e153530)] - **src**: simplify exit code accesses (Daeyeon Jeong) [#&#8203;45125](https://github.com/nodejs/node/pull/45125)
    
  • [`7359b92a41`](https://github.com/nodejs/node/commit/7359b92a41)] - **test**: remove unnecessary status check on test-release-npm (RafaelGSS) [#&#8203;47516](https://github.com/nodejs/node/pull/47516)
    
  • [`a5a5d2fb7e`](https://github.com/nodejs/node/commit/a5a5d2fb7e)] - **test**: mark test/parallel/test-file-write-stream4 as flaky (Yagiz Nizipli) [#&#8203;47423](https://github.com/nodejs/node/pull/47423)
    
  • [`81ad73a205`](https://github.com/nodejs/node/commit/81ad73a205)] - **test**: remove unused callback variables (angellovc) [#&#8203;47167](https://github.com/nodejs/node/pull/47167)
    
  • [`757a586ead`](https://github.com/nodejs/node/commit/757a586ead)] - **test**: migrate test runner message tests to snapshot (Moshe Atlow) [#&#8203;47392](https://github.com/nodejs/node/pull/47392)
    
  • [`86f890539f`](https://github.com/nodejs/node/commit/86f890539f)] - **test**: remove stale entry from known_issues.status (Richard Lau) [#&#8203;47454](https://github.com/nodejs/node/pull/47454)
    
  • [`1f3773d0c1`](https://github.com/nodejs/node/commit/1f3773d0c1)] - **test**: move more inspector sequential tests to parallel (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`617b8d44c6`](https://github.com/nodejs/node/commit/617b8d44c6)] - **test**: use random port in test-inspector-enabled (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`ade0170c4f`](https://github.com/nodejs/node/commit/ade0170c4f)] - **test**: use random port in test-inspector-debug-brk-flag (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`1a78632cd3`](https://github.com/nodejs/node/commit/1a78632cd3)] - **test**: use random port in NodeInstance.startViaSignal() (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`23f66b137e`](https://github.com/nodejs/node/commit/23f66b137e)] - **test**: move test-shadow-realm-gc.js to known_issues (Joyee Cheung) [#&#8203;47355](https://github.com/nodejs/node/pull/47355)
    
  • [`9dfd0394c5`](https://github.com/nodejs/node/commit/9dfd0394c5)] - **test**: remove useless WPT init scripts (Khafra) [#&#8203;47221](https://github.com/nodejs/node/pull/47221)
    
  • [`1cfe058778`](https://github.com/nodejs/node/commit/1cfe058778)] - **test**: fix test-permission-deny-fs-wildcard (win32) (Tobias Nießen) [#&#8203;47095](https://github.com/nodejs/node/pull/47095)
    
  • [`b8ef1b476e`](https://github.com/nodejs/node/commit/b8ef1b476e)] - **test**: add coverage for custom loader hooks with permission model (Antoine du Hamel) [#&#8203;46977](https://github.com/nodejs/node/pull/46977)
    
  • [`4a7c3e9c50`](https://github.com/nodejs/node/commit/4a7c3e9c50)] - **test**: fix file path in permission symlink test (Livia Medeiros) [#&#8203;46859](https://github.com/nodejs/node/pull/46859)
    
  • [`10005de6a8`](https://github.com/nodejs/node/commit/10005de6a8)] - **tools**: make `js2c.py` usable for other build systems (Cheng Zhao) [#&#8203;46930](https://github.com/nodejs/node/pull/46930)
    
  • [`1e2f9aca72`](https://github.com/nodejs/node/commit/1e2f9aca72)] - **tools**: move update-acorn.sh to dep_updaters and create maintaining md (Marco Ippolito) [#&#8203;47382](https://github.com/nodejs/node/pull/47382)
    
  • [`174662a463`](https://github.com/nodejs/node/commit/174662a463)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475)
    
  • [`a58ca61f35`](https://github.com/nodejs/node/commit/a58ca61f35)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475)
    
  • [`37d12730ab`](https://github.com/nodejs/node/commit/37d12730ab)] - **tools**: automate cjs-module-lexer dependency update (Marco Ippolito) [#&#8203;47446](https://github.com/nodejs/node/pull/47446)
    
  • [`4fbfa3c9f2`](https://github.com/nodejs/node/commit/4fbfa3c9f2)] - **tools**: fix notify-on-push Slack messages (Antoine du Hamel) [#&#8203;47453](https://github.com/nodejs/node/pull/47453)
    
  • [`b1f2ff1242`](https://github.com/nodejs/node/commit/b1f2ff1242)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;15](https://github.com/15).0.2 (Node.js GitHub Bot) [#&#8203;47431](https://github.com/nodejs/node/pull/47431)
    
  • [`26b2584b84`](https://github.com/nodejs/node/commit/26b2584b84)] - **tools**: add root certificate update script (Richard Lau) [#&#8203;47425](https://github.com/nodejs/node/pull/47425)
    
  • [`553b052648`](https://github.com/nodejs/node/commit/553b052648)] - **tools**: remove targets for individual test suites in `Makefile` (Antoine du Hamel) [#&#8203;46892](https://github.com/nodejs/node/pull/46892)
    
  • [`747ff43e5b`](https://github.com/nodejs/node/commit/747ff43e5b)] - **url**: more sophisticated brand check for URLSearchParams (Timothy Gu) [#&#8203;47414](https://github.com/nodejs/node/pull/47414)
    
  • [`e727eb066f`](https://github.com/nodejs/node/commit/e727eb066f)] - **url**: do not use object as hashmap (Timothy Gu) [#&#8203;47415](https://github.com/nodejs/node/pull/47415)
    
  • [`81c7875eb7`](https://github.com/nodejs/node/commit/81c7875eb7)] - **url**: drop ICU requirement for parsing hostnames (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339)
    
  • [`a4895df94a`](https://github.com/nodejs/node/commit/a4895df94a)] - **url**: use ada::url_aggregator for parsing urls (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339)
    
    

v19.9.0: 2023-04-10, Version 19.9.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
Tracing Channel in diagnostic_channel

TracingChannel adds a new, high-performance channel to publish tracing data about the timing and purpose of function executions.

Contributed by Stephen Belanger in #​44943

New URL.canParse API

A new API was added to the URL. URL.canParse checks if an input with an optional base value can be parsed correctly
according to WHATWG URL specification.

const isValid = URL.canParse('/foo', 'https://example.org/'); // true
const isNotValid = URL.canParse('/foo'); // false

Contributed by Khafra in #​47179

Other notable changes

events:

  • (SEMVER-MINOR) add getMaxListeners method (Khafra) #​47039
    msi:
  • (SEMVER-MINOR) migrate to WiX4 (Stefan Stojanovic) #​45943
    node-api:
  • (SEMVER-MINOR) deprecate napi_module_register (Vladimir Morozov) #​46319
    stream:
  • (SEMVER-MINOR) add setter & getter for default highWaterMark (Robert Nagy) #​46929
    test_runner:
  • (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) #​47238
Commits
  • [`2cea7d8141`](https://github.com/nodejs/node/commit/2cea7d8141)] - **benchmark**: fix invalid requirementsURL (Deokjin Kim) [#&#8203;47378](https://github.com/nodejs/node/pull/47378)
    
  • [`6a4076a188`](https://github.com/nodejs/node/commit/6a4076a188)] - **benchmark**: lower URL.canParse runs (Khafra) [#&#8203;47351](https://github.com/nodejs/node/pull/47351)
    
  • [`23a69d9279`](https://github.com/nodejs/node/commit/23a69d9279)] - **buffer**: fix blob range error with many chunks (Khafra) [#&#8203;47320](https://github.com/nodejs/node/pull/47320)
    
  • [`e3d98c3e7a`](https://github.com/nodejs/node/commit/e3d98c3e7a)] - **buffer**: use private properties for brand checks in File (Khafra) [#&#8203;47154](https://github.com/nodejs/node/pull/47154)
    
  • [`9dc6aef98d`](https://github.com/nodejs/node/commit/9dc6aef98d)] - **build**: bump github/codeql-action from 2.2.6 to 2.2.9 (dependabot\[bot]) [#&#8203;47366](https://github.com/nodejs/node/pull/47366)
    
  • [`910d2967f1`](https://github.com/nodejs/node/commit/910d2967f1)] - **build**: update stale action from v7 to v8 (Rich Trott) [#&#8203;47357](https://github.com/nodejs/node/pull/47357)
    
  • [`666df20ad9`](https://github.com/nodejs/node/commit/666df20ad9)] - **build**: remove Python pip `--no-user` option (Christian Clauss) [#&#8203;47372](https://github.com/nodejs/node/pull/47372)
    
  • [`3970537bb4`](https://github.com/nodejs/node/commit/3970537bb4)] - **build**: avoid usage of pipes library (Mohammed Keyvanzadeh) [#&#8203;47271](https://github.com/nodejs/node/pull/47271)
    
  • [`254a03b2eb`](https://github.com/nodejs/node/commit/254a03b2eb)] - **crypto**: unify validation of checkPrime checks (Tobias Nießen) [#&#8203;47165](https://github.com/nodejs/node/pull/47165)
    
  • [`8e1e9edc57`](https://github.com/nodejs/node/commit/8e1e9edc57)] - **deps**: update timezone to 2023c (Node.js GitHub Bot) [#&#8203;47302](https://github.com/nodejs/node/pull/47302)
    
  • [`30c043c2b9`](https://github.com/nodejs/node/commit/30c043c2b9)] - **deps**: update timezone to 2023b (Node.js GitHub Bot) [#&#8203;47256](https://github.com/nodejs/node/pull/47256)
    
  • [`40be01bc9c`](https://github.com/nodejs/node/commit/40be01bc9c)] - **deps**: update simdutf to 3.2.3 (Node.js GitHub Bot) [#&#8203;47331](https://github.com/nodejs/node/pull/47331)
    
  • [`4b09222569`](https://github.com/nodejs/node/commit/4b09222569)] - **deps**: upgrade npm to 9.6.3 (npm team) [#&#8203;47325](https://github.com/nodejs/node/pull/47325)
    
  • [`2a6c23ea5e`](https://github.com/nodejs/node/commit/2a6c23ea5e)] - **deps**: update corepack to 0.17.1 (Node.js GitHub Bot) [#&#8203;47156](https://github.com/nodejs/node/pull/47156)
    
  • [`06b718363d`](https://github.com/nodejs/node/commit/06b718363d)] - **deps**: V8: cherry-pick [`3e4952c`](https://github.com/nodejs/node/commit/3e4952cb2a59) (Richard Lau) [#&#8203;47236](https://github.com/nodejs/node/pull/47236)
    
  • [`7e24498d81`](https://github.com/nodejs/node/commit/7e24498d81)] - **deps**: upgrade npm to 9.6.2 (npm team) [#&#8203;47108](https://github.com/nodejs/node/pull/47108)
    
  • [`7a4beaa182`](https://github.com/nodejs/node/commit/7a4beaa182)] - **deps**: V8: cherry-pick [`215ccd5`](https://github.com/nodejs/node/commit/215ccd593edb) (Joyee Cheung) [#&#8203;47212](https://github.com/nodejs/node/pull/47212)
    
  • [`8a69929f23`](https://github.com/nodejs/node/commit/8a69929f23)] - **deps**: V8: cherry-pick [`975ff4d`](https://github.com/nodejs/node/commit/975ff4dbfd1b) (Debadree Chatterjee) [#&#8203;47209](https://github.com/nodejs/node/pull/47209)
    
  • [`10569de53f`](https://github.com/nodejs/node/commit/10569de53f)] - **deps**: cherry-pick win/arm64/clang fixes (Cheng Zhao) [#&#8203;47011](https://github.com/nodejs/node/pull/47011)
    
  • [`ff6070eb1d`](https://github.com/nodejs/node/commit/ff6070eb1d)] - **deps**: V8: cherry-pick [`cb30b8e`](https://github.com/nodejs/node/commit/cb30b8e17429) (Darshan Sen) [#&#8203;47307](https://github.com/nodejs/node/pull/47307)
    
  • [`0bbce034f9`](https://github.com/nodejs/node/commit/0bbce034f9)] - **doc**: add a note about os.cpus() returning an empty list (codedokode) [#&#8203;47363](https://github.com/nodejs/node/pull/47363)
    
  • [`f8511e0b27`](https://github.com/nodejs/node/commit/f8511e0b27)] - **doc**: clarify reports are only evaluated on active versions (Rafael Gonzaga) [#&#8203;47341](https://github.com/nodejs/node/pull/47341)
    
  • [`863b4d9c5b`](https://github.com/nodejs/node/commit/863b4d9c5b)] - **doc**: remove Vladimir de Turckheim from Security release stewards (Vladimir de Turckheim) [#&#8203;47318](https://github.com/nodejs/node/pull/47318)
    
  • [`2192b5b163`](https://github.com/nodejs/node/commit/2192b5b163)] - **doc**: add importing util to example of \`process.report.getReport' (Deokjin Kim) [#&#8203;47298](https://github.com/nodejs/node/pull/47298)
    
  • [`1c21fbfa9a`](https://github.com/nodejs/node/commit/1c21fbfa9a)] - **doc**: vm.SourceTextModule() without context option (Axel Kittenberger) [#&#8203;47295](https://github.com/nodejs/node/pull/47295)
    
  • [`89445fbea9`](https://github.com/nodejs/node/commit/89445fbea9)] - **doc**: make win arm64 tier 2 platform (Stefan Stojanovic) [#&#8203;47233](https://github.com/nodejs/node/pull/47233)
    
  • [`296577a549`](https://github.com/nodejs/node/commit/296577a549)] - **doc**: document process for sharing project news (Michael Dawson) [#&#8203;47189](https://github.com/nodejs/node/pull/47189)
    
  • [`e29a1462c7`](https://github.com/nodejs/node/commit/e29a1462c7)] - **doc**: revise example of assert.CallTracker (Deokjin Kim) [#&#8203;47252](https://github.com/nodejs/node/pull/47252)
    
  • [`bac893adbe`](https://github.com/nodejs/node/commit/bac893adbe)] - **doc**: fix typo in SECURITY.md (Rich Trott) [#&#8203;47282](https://github.com/nodejs/node/pull/47282)
    
  • [`0949f238d1`](https://github.com/nodejs/node/commit/0949f238d1)] - **doc**: use serial comma in cli docs (Tobias Nießen) [#&#8203;47262](https://github.com/nodejs/node/pull/47262)
    
  • [`71246247a9`](https://github.com/nodejs/node/commit/71246247a9)] - **doc**: improve example for Error.captureStackTrace() (Julian Dax) [#&#8203;46886](https://github.com/nodejs/node/pull/46886)
    
  • [`0b2ba441b2`](https://github.com/nodejs/node/commit/0b2ba441b2)] - **doc**: clarify http error events after calling destroy() (Zach Bjornson) [#&#8203;46903](https://github.com/nodejs/node/pull/46903)
    
  • [`a21459e0d5`](https://github.com/nodejs/node/commit/a21459e0d5)] - **doc**: update output of example in AbortController (Deokjin Kim) [#&#8203;47227](https://github.com/nodejs/node/pull/47227)
    
  • [`7a2090c14c`](https://github.com/nodejs/node/commit/7a2090c14c)] - **doc**: drop one-week branch sync on major releases (Rafael Gonzaga) [#&#8203;47149](https://github.com/nodejs/node/pull/47149)
    
  • [`eb4de0043d`](https://github.com/nodejs/node/commit/eb4de0043d)] - **doc**: fix grammar in the collaborator guide (Mohammed Keyvanzadeh) [#&#8203;47245](https://github.com/nodejs/node/pull/47245)
    
  • [`908798ae19`](https://github.com/nodejs/node/commit/908798ae19)] - **doc**: update stream.reduce concurrency note (Raz Luvaton) [#&#8203;47166](https://github.com/nodejs/node/pull/47166)
    
  • [`36c118bc92`](https://github.com/nodejs/node/commit/36c118bc92)] - **doc**: remove use of DEFAULT_ENCODING in PBKDF2 docs (Tobias Nießen) [#&#8203;47181](https://github.com/nodejs/node/pull/47181)
    
  • [`7ec87fd5ce`](https://github.com/nodejs/node/commit/7ec87fd5ce)] - **doc**: fix typos in async_context.md (Shubham Sharma) [#&#8203;47155](https://github.com/nodejs/node/pull/47155)
    
  • [`a03aaba996`](https://github.com/nodejs/node/commit/a03aaba996)] - **doc**: update collaborator guide to reflect TSC changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126)
    
  • [`c45a6977ec`](https://github.com/nodejs/node/commit/c45a6977ec)] - **doc**: clarify that `fs.create{Read,Write}Stream` support `AbortSignal` (Antoine du Hamel) [#&#8203;47122](https://github.com/nodejs/node/pull/47122)
    
  • [`82c7757177`](https://github.com/nodejs/node/commit/82c7757177)] - **doc**: improve documentation for util.types.isNativeError() (Julian Dax) [#&#8203;46840](https://github.com/nodejs/node/pull/46840)
    
  • [`8f9b9c17d5`](https://github.com/nodejs/node/commit/8f9b9c17d5)] - **doc**: rename the startup performance initiative to startup snapshot ([#&#8203;47111](https://github.com/nodejs/node/issues/47111)) (Joyee Cheung)
    
  • [`c08995e897`](https://github.com/nodejs/node/commit/c08995e897)] - **doc**: indicate that `name` is no longer an optional argument (Daniel Roe) [#&#8203;47102](https://github.com/nodejs/node/pull/47102)
    
  • [`316d626e61`](https://github.com/nodejs/node/commit/316d626e61)] - **doc**: fix "maintaining dependencies" heading typos (Keyhan Vakil) [#&#8203;47082](https://github.com/nodejs/node/pull/47082)
    
  • [`a4b1a7761f`](https://github.com/nodejs/node/commit/a4b1a7761f)] - **esm**: skip file: URL conversion to path when possible (Antoine du Hamel) [#&#8203;46305](https://github.com/nodejs/node/pull/46305)
    
  • [`c5cd6b7f3b`](https://github.com/nodejs/node/commit/c5cd6b7f3b)] - **(SEMVER-MINOR)** **events**: add getMaxListeners method (Khafra) [#&#8203;47039](https://github.com/nodejs/node/pull/47039)
    
  • [`2c2b07ce5f`](https://github.com/nodejs/node/commit/2c2b07ce5f)] - **fs**: invalidate blob created from empty file when written to (Debadree Chatterjee) [#&#8203;47199](https://github.com/nodejs/node/pull/47199)
    
  • [`e33dfce401`](https://github.com/nodejs/node/commit/e33dfce401)] - **inspector**: log response and requests in the inspector for debugging (Joyee Cheung) [#&#8203;46941](https://github.com/nodejs/node/pull/46941)
    
  • [`f6ec81dc05`](https://github.com/nodejs/node/commit/f6ec81dc05)] - **inspector**: fix session.disconnect crash (theanarkh) [#&#8203;46942](https://github.com/nodejs/node/pull/46942)
    
  • [`a738164fed`](https://github.com/nodejs/node/commit/a738164fed)] - **lib**: define Event.isTrusted in the prototype (Santiago Gimeno) [#&#8203;46974](https://github.com/nodejs/node/pull/46974)
    
  • [`7d37dcdd9a`](https://github.com/nodejs/node/commit/7d37dcdd9a)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics_channel (Stephen Belanger) [#&#8203;44943](https://github.com/nodejs/node/pull/44943)
    
  • [`16d3dfa0aa`](https://github.com/nodejs/node/commit/16d3dfa0aa)] - **meta**: fix notable-change comment label url (Filip Skokan) [#&#8203;47300](https://github.com/nodejs/node/pull/47300)
    
  • [`2c95f6e18b`](https://github.com/nodejs/node/commit/2c95f6e18b)] - **meta**: clarify the threat model to explain the JSON.parse case (Matteo Collina) [#&#8203;47276](https://github.com/nodejs/node/pull/47276)
    
  • [`22b9acdbf8`](https://github.com/nodejs/node/commit/22b9acdbf8)] - **meta**: update link to collaborators discussion page (Michaël Zasso) [#&#8203;47211](https://github.com/nodejs/node/pull/47211)
    
  • [`dc024d930a`](https://github.com/nodejs/node/commit/dc024d930a)] - **meta**: automate description requests when notable change label is added (Danielle Adams) [#&#8203;47078](https://github.com/nodejs/node/pull/47078)
    
  • [`54195357f3`](https://github.com/nodejs/node/commit/54195357f3)] - **meta**: move TSC voting member(s) to regular member(s) (Node.js GitHub Bot) [#&#8203;47180](https://github.com/nodejs/node/pull/47180)
    
  • [`a3bffbaa11`](https://github.com/nodejs/node/commit/a3bffbaa11)] - **meta**: move TSC voting member to regular membership (Node.js GitHub Bot) [#&#8203;46985](https://github.com/nodejs/node/pull/46985)
    
  • [`d2a6aa6ecd`](https://github.com/nodejs/node/commit/d2a6aa6ecd)] - **meta**: update GOVERNANCE.md to reflect TSC charter changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126)
    
  • [`b0aad345bf`](https://github.com/nodejs/node/commit/b0aad345bf)] - **meta**: ask expected behavior reason in bug template (Ben Noordhuis) [#&#8203;47049](https://github.com/nodejs/node/pull/47049)
    
  • [`c03e79b141`](https://github.com/nodejs/node/commit/c03e79b141)] - **(SEMVER-MINOR)** **msi**: migrate to WiX4 (Stefan Stojanovic) [#&#8203;45943](https://github.com/nodejs/node/pull/45943)
    
  • [`ca981be2b9`](https://github.com/nodejs/node/commit/ca981be2b9)] - **(SEMVER-MINOR)** **node-api**: deprecate napi_module_register (Vladimir Morozov) [#&#8203;46319](https://github.com/nodejs/node/pull/46319)
    
  • [`77f7200cce`](https://github.com/nodejs/node/commit/77f7200cce)] - **node-api**: extend type-tagging to externals (Gabriel Schulhof) [#&#8203;47141](https://github.com/nodejs/node/pull/47141)
    
  • [`55f3d215b8`](https://github.com/nodejs/node/commit/55f3d215b8)] - **node-api**: document node-api shutdown finalization (Chengzhong Wu) [#&#8203;45903](https://github.com/nodejs/node/pull/45903)
    
  • [`b3fe2ba59b`](https://github.com/nodejs/node/commit/b3fe2ba59b)] - **node-api**: verify cleanup hooks order (Chengzhong Wu) [#&#8203;46692](https://github.com/nodejs/node/pull/46692)
    
  • [`d6a12328a6`](https://github.com/nodejs/node/commit/d6a12328a6)] - **repl**: preserve preview on ESCAPE key press (Xuguang Mei) [#&#8203;46878](https://github.com/nodejs/node/pull/46878)
    
  • [`33b0906640`](https://github.com/nodejs/node/commit/33b0906640)] - **sea**: fix memory leak detected by asan (Darshan Sen) [#&#8203;47309](https://github.com/nodejs/node/pull/47309)
    
  • [`069515153f`](https://github.com/nodejs/node/commit/069515153f)] - **src**: remove usage of `std::shared_ptr<T>::unique()` (Darshan Sen) [#&#8203;47315](https://github.com/nodejs/node/pull/47315)
    
  • [`4405fc879a`](https://github.com/nodejs/node/commit/4405fc879a)] - **src**: use stricter compile-time guidance (Tobias Nießen) [#&#8203;46509](https://github.com/nodejs/node/pull/46509)
    
  • [`bbde68e5de`](https://github.com/nodejs/node/commit/bbde68e5de)] - **src**: remove unused variable in crypto_x509.cc (Michaël Zasso) [#&#8203;47344](https://github.com/nodejs/node/pull/47344)
    
  • [`7a80312e19`](https://github.com/nodejs/node/commit/7a80312e19)] - **src**: don't reset embeder signal handlers (Dmitry Vyukov) [#&#8203;47188](https://github.com/nodejs/node/pull/47188)
    
  • [`d0a5e7e342`](https://github.com/nodejs/node/commit/d0a5e7e342)] - **src**: fix some recently introduced coverity issues (Michael Dawson) [#&#8203;47240](https://github.com/nodejs/node/pull/47240)
    
  • [`0a4ff2f9a0`](https://github.com/nodejs/node/commit/0a4ff2f9a0)] - **src**: replace impossible THROW with CHECK (Tobias Nießen) [#&#8203;47168](https://github.com/nodejs/node/pull/47168)
    
  • [`2fd0f79963`](https://github.com/nodejs/node/commit/2fd0f79963)] - **src**: fix duplication of externalized builtin code (Keyhan Vakil) [#&#8203;47079](https://github.com/nodejs/node/pull/47079)
    
  • [`36a026bf44`](https://github.com/nodejs/node/commit/36a026bf44)] - **src**: remove dead comments about return_code_cache (Keyhan Vakil) [#&#8203;47083](https://github.com/nodejs/node/pull/47083)
    
  • [`aefe26692c`](https://github.com/nodejs/node/commit/aefe26692c)] - **src**: remove SSL_CTX_get_tlsext_ticket_keys guards (Tobias Nießen) [#&#8203;47068](https://github.com/nodejs/node/pull/47068)
    
  • [`90f4e16350`](https://github.com/nodejs/node/commit/90f4e16350)] - **src**: fix clang 14 linker error (Keyhan Vakil) [#&#8203;47057](https://github.com/nodejs/node/pull/47057)
    
  • [`b0809a73da`](https://github.com/nodejs/node/commit/b0809a73da)] - **src,http2**: ensure cleanup if a frame is not sent (ywave620) [#&#8203;47244](https://github.com/nodejs/node/pull/47244)
    
  • [`1fc62c7b35`](https://github.com/nodejs/node/commit/1fc62c7b35)] - **(SEMVER-MINOR)** **stream**: add setter & getter for default highWaterMark ([#&#8203;46929](https://github.com/nodejs/node/issues/46929)) (Robert Nagy) [#&#8203;46929](https://github.com/nodejs/node/pull/46929)
    
  • [`b8c6ceddd5`](https://github.com/nodejs/node/commit/b8c6ceddd5)] - **stream**: expose stream symbols (Robert Nagy) [#&#8203;45671](https://github.com/nodejs/node/pull/45671)
    
  • [`f37825660c`](https://github.com/nodejs/node/commit/f37825660c)] - **stream**: dont wait for next item in take when finished (Raz Luvaton) [#&#8203;47132](https://github.com/nodejs/node/pull/47132)
    
  • [`8eceaaeb4d`](https://github.com/nodejs/node/commit/8eceaaeb4d)] - **test**: fix flaky test-watch-mode-inspect (Moshe Atlow) [#&#8203;47403](https://github.com/nodejs/node/pull/47403)
    
  • [`db95ed0b1b`](https://github.com/nodejs/node/commit/db95ed0b1b)] - **test**: move debugger tests with --port=0 to parallel (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274)
    
  • [`041885ebd0`](https://github.com/nodejs/node/commit/041885ebd0)] - **test**: use --port=0 in debugger tests that do not have to work on 9229 (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274)
    
  • [`130420b9e1`](https://github.com/nodejs/node/commit/130420b9e1)] - **test**: run doctool tests in parallel (Joyee Cheung) [#&#8203;47273](https://github.com/nodejs/node/pull/47273)
    
  • [`4b4336c34e`](https://github.com/nodejs/node/commit/4b4336c34e)] - **test**: verify tracePromise does not do runStores (Stephen Belanger) [#&#8203;47349](https://github.com/nodejs/node/pull/47349)
    
  • [`54261f3294`](https://github.com/nodejs/node/commit/54261f3294)] - **test**: run WPT files in parallel again (Filip Skokan) [#&#8203;47283](https://github.com/nodejs/node/pull/47283)
    
  • [`e2eb0543be`](https://github.com/nodejs/node/commit/e2eb0543be)] - **test**: update wasm/jsapi WPT (Michaël Zasso) [#&#8203;47210](https://github.com/nodejs/node/pull/47210)
    
  • [`d341d0389f`](https://github.com/nodejs/node/commit/d341d0389f)] - **test**: skip test-wasm-web-api on ARM (Michaël Zasso) [#&#8203;47299](https://github.com/nodejs/node/pull/47299)
    
  • [`567573b16a`](https://github.com/nodejs/node/commit/567573b16a)] - **test**: skip instantiateStreaming-bad-imports WPT (Michaël Zasso) [#&#8203;47292](https://github.com/nodejs/node/pull/47292)
    
  • [`45e7b10287`](https://github.com/nodejs/node/commit/45e7b10287)] - **test**: fix 'checks' validation test for checkPrime (Tobias Nießen) [#&#8203;47139](https://github.com/nodejs/node/pull/47139)
    
  • [`5749dfae70`](https://github.com/nodejs/node/commit/5749dfae70)] - **test**: update URL web-platform-tests (Yagiz Nizipli) [#&#8203;47135](https://github.com/nodejs/node/pull/47135)
    
  • [`49981b93d2`](https://github.com/nodejs/node/commit/49981b93d2)] - **test**: reduce flakiness of test-http-remove-header-stays-removed.js (Debadree Chatterjee) [#&#8203;46855](https://github.com/nodejs/node/pull/46855)
    
  • [`6772aa652a`](https://github.com/nodejs/node/commit/6772aa652a)] - **test**: fix test-child-process-exec-cwd (Stefan Stojanovic) [#&#8203;47235](https://github.com/nodejs/node/pull/47235)
    
  • [`41a69e772b`](https://github.com/nodejs/node/commit/41a69e772b)] - **test**: skip broken tests win arm64 (Stefan Stojanovic) [#&#8203;47020](https://github.com/nodejs/node/pull/47020)
    
  • [`7bcfd18f2c`](https://github.com/nodejs/node/commit/7bcfd18f2c)] - **test**: mark test-http-max-sockets as flaky on win32 (Tobias Nießen) [#&#8203;47134](https://github.com/nodejs/node/pull/47134)
    
  • [`b96808b3e2`](https://github.com/nodejs/node/commit/b96808b3e2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47222](https://github.com/nodejs/node/pull/47222)
    
  • [`65955f1e46`](https://github.com/nodejs/node/commit/65955f1e46)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47131](https://github.com/nodejs/node/pull/47131)
    
  • [`bc6511a243`](https://github.com/nodejs/node/commit/bc6511a243)] - **test_runner**: color errors only when colors are available (Moshe Atlow) [#&#8203;47394](https://github.com/nodejs/node/pull/47394)
    
  • [`463361e625`](https://github.com/nodejs/node/commit/463361e625)] - **test_runner**: hide failing tests title when all tests pass (Moshe Atlow) [#&#8203;47370](https://github.com/nodejs/node/pull/47370)
    
  • [`eb837ce80d`](https://github.com/nodejs/node/commit/eb837ce80d)] - **test_runner**: stringify AssertError expected and actual (Moshe Atlow) [#&#8203;47088](https://github.com/nodejs/node/pull/47088)
    
  • [`6b87f29000`](https://github.com/nodejs/node/commit/6b87f29000)] - **test_runner**: add code coverage support to spec reporter (Pulkit Gupta) [#&#8203;46674](https://github.com/nodejs/node/pull/46674)
    
  • [`bd4697a2a3`](https://github.com/nodejs/node/commit/bd4697a2a3)] - **test_runner**: expose reporter for use in run api (Chemi Atlow) [#&#8203;47238](https://github.com/nodejs/node/pull/47238)
    
  • [`3e7f8e8482`](https://github.com/nodejs/node/commit/3e7f8e8482)] - **test_runner**: report failing tests after summary (HinataKah0) [#&#8203;47164](https://github.com/nodejs/node/pull/47164)
    
  • [`4530582767`](https://github.com/nodejs/node/commit/4530582767)] - **test_runner**: count nested tests (Moshe Atlow) [#&#8203;47094](https://github.com/nodejs/node/pull/47094)
    
  • [`5a43586554`](https://github.com/nodejs/node/commit/5a43586554)] - **test_runner**: accept \x1b as a escape symbol (Debadree Chatterjee) [#&#8203;47050](https://github.com/nodejs/node/pull/47050)
    
  • [`a5ebc896f1`](https://github.com/nodejs/node/commit/a5ebc896f1)] - **test_runner**: support defining test reporter in NODE_OPTIONS (Steve Herzog) [#&#8203;46688](https://github.com/nodejs/node/pull/46688)
    
  • [`a65fe5c29a`](https://github.com/nodejs/node/commit/a65fe5c29a)] - **tools**: fix update-openssl.yml compare version (Marco Ippolito) [#&#8203;47384](https://github.com/nodejs/node/pull/47384)
    
  • [`760e13c58d`](https://github.com/nodejs/node/commit/760e13c58d)] - **tools**: ensure failed daily wpt run still generates a report (Filip Skokan) [#&#8203;47376](https://github.com/nodejs/node/pull/47376)
    
  • [`9c975f79f0`](https://github.com/nodejs/node/commit/9c975f79f0)] - **tools**: use ref_name to get branch pushed on (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358)
    
  • [`b1d6a15028`](https://github.com/nodejs/node/commit/b1d6a15028)] - **tools**: add a at here tag for slack messages (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358)
    
  • [`c340de6d51`](https://github.com/nodejs/node/commit/c340de6d51)] - **tools**: disable Codecov commit statuses (Michaël Zasso) [#&#8203;47306](https://github.com/nodejs/node/pull/47306)
    
  • [`034082f0e5`](https://github.com/nodejs/node/commit/034082f0e5)] - **tools**: update eslint to 8.37.0 (Node.js GitHub Bot) [#&#8203;47333](https://github.com/nodejs/node/pull/47333)
    
  • [`03b6650c81`](https://github.com/nodejs/node/commit/03b6650c81)] - **tools**: fix duration_ms to be milliseconds (Moshe Atlow) [#&#8203;44490](https://github.com/nodejs/node/pull/44490)
    
  • [`30c667ec3a`](https://github.com/nodejs/node/commit/30c667ec3a)] - **tools**: automate brotli update (Marco Ippolito) [#&#8203;47205](https://github.com/nodejs/node/pull/47205)
    
  • [`83791e5459`](https://github.com/nodejs/node/commit/83791e5459)] - **tools**: fix typo in nghttp2 path (Marco Ippolito) [#&#8203;47330](https://github.com/nodejs/node/pull/47330)
    
  • [`53e8dad64a`](https://github.com/nodejs/node/commit/53e8dad64a)] - **tools**: add scorecard workflow (Mateo Nunez) [#&#8203;47254](https://github.com/nodejs/node/pull/47254)
    
  • [`2499677d0b`](https://github.com/nodejs/node/commit/2499677d0b)] - **tools**: pin actions by hash for auto-start-ci.yml (Gabriela Gutierrez) [#&#8203;46820](https://github.com/nodejs/node/pull/46820)
    
  • [`98f64ee724`](https://github.com/nodejs/node/commit/98f64ee724)] - **tools**: standardize base64 update (Marco Ippolito) [#&#8203;47201](https://github.com/nodejs/node/pull/47201)
    
  • [`c1ef1fde8f`](https://github.com/nodejs/node/commit/c1ef1fde8f)] - **tools**: update codecov branch (Rich Trott) [#&#8203;47285](https://github.com/nodejs/node/pull/47285)
    
  • [`9ecf2a4144`](https://github.com/nodejs/node/commit/9ecf2a4144)] - **tools**: update lint-md-dependencies to rollup@3.20.2 (Node.js GitHub Bot) [#&#8203;47255](https://github.com/nodejs/node/pull/47255)
    
  • [`def7e3d908`](https://github.com/nodejs/node/commit/def7e3d908)] - **tools**: upgrade Windows digital signature to SHA256 (Tobias Nießen) [#&#8203;47206](https://github.com/nodejs/node/pull/47206)
    
  • [`0b78ac53ad`](https://github.com/nodejs/node/commit/0b78ac53ad)] - **tools**: standardize update-llhttp.sh (Marco Ippolito) [#&#8203;47198](https://github.com/nodejs/node/pull/47198)
    
  • [`deb80b1c46`](https://github.com/nodejs/node/commit/deb80b1c46)] - **tools**: add button to copy code example to clipboard (jakecastelli) [#&#8203;46928](https://github.com/nodejs/node/pull/46928)
    
  • [`6dca79f1ce`](https://github.com/nodejs/node/commit/6dca79f1ce)] - **tools**: standardize update-nghttp2.sh (Marco Ippolito) [#&#8203;47197](https://github.com/nodejs/node/pull/47197)
    
  • [`0c613c9347`](https://github.com/nodejs/node/commit/0c613c9347)] - **tools**: fix Slack notification action (Antoine du Hamel) [#&#8203;47237](https://github.com/nodejs/node/pull/47237)
    
  • [`3f49da5113`](https://github.com/nodejs/node/commit/3f49da5113)] - **tools**: notify on Slack when invalid commit lands (Antoine du Hamel) [#&#8203;47178](https://github.com/nodejs/node/pull/47178)
    
  • [`337123d657`](https://github.com/nodejs/node/commit/337123d657)] - **tools**: update daily wpt actions summary (Filip Skokan) [#&#8203;47138](https://github.com/nodejs/node/pull/47138)
    
  • [`78ce8d3469`](https://github.com/nodejs/node/commit/78ce8d3469)] - **tools**: allow test tap output to include unicode characters (Moshe Atlow) [#&#8203;47175](https://github.com/nodejs/node/pull/47175)
    
  • [`8850dacc88`](https://github.com/nodejs/node/commit/8850dacc88)] - **tools**: update lint-md-dependencies to rollup@3.19.1 (Node.js GitHub Bot) [#&#8203;47045](https://github.com/nodejs/node/pull/47045)
    
  • [`d1ca5b6d47`](https://github.com/nodejs/node/commit/d1ca5b6d47)] - **tools**: align update-ada.sh with other scripts (Tony Gorez) [#&#8203;47044](https://github.com/nodejs/node/pull/47044)
    
  • [`b58d52301e`](https://github.com/nodejs/node/commit/b58d52301e)] - **tools**: update eslint to 8.36.0 (Node.js GitHub Bot) [#&#8203;47046](https://github.com/nodejs/node/pull/47046)
    
  • [`d78bef8a1f`](https://github.com/nodejs/node/commit/d78bef8a1f)] - **tools,meta**: update README and tools to reflect changes in TSC charter (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126)
    
  • [`d243115f41`](https://github.com/nodejs/node/commit/d243115f41)] - **url**: improve URLSearchParams creation performance (Yagiz Nizipli) [#&#8203;47190](https://github.com/nodejs/node/pull/47190)
    
  • [`461ef04f87`](https://github.com/nodejs/node/commit/461ef04f87)] - **url**: add pending-deprecation to `url.parse()` (Yagiz Nizipli) [#&#8203;47203](https://github.com/nodejs/node/pull/47203)
    
  • [`ef62e5a59e`](https://github.com/nodejs/node/commit/ef62e5a59e)] - **(SEMVER-MINOR)** **url**: implement URL.canParse (Khafra) [#&#8203;47179](https://github.com/nodejs/node/pull/47179)
    
  • [`0b565e8f62`](https://github.com/nodejs/node/commit/0b565e8f62)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#&#8203;46989](https://github.com/nodejs/node/pull/46989)
    
  • [`cbb362736b`](https://github.com/nodejs/node/commit/cbb362736b)] - **util**: fix inspecting error with a throwing getter for `cause` (Antoine du Hamel) [#&#8203;47163](https://github.com/nodejs/node/pull/47163)
    
  • [`9537672511`](https://github.com/nodejs/node/commit/9537672511)] - **vm**: properly handle defining props on any value (Nicolas DUBIEN) [#&#8203;46615](https://github.com/nodejs/node/pull/46615)
    
  • [`75669e98bf`](https://github.com/nodejs/node/commit/75669e98bf)] - **watch**: fix watch path with equals (Moshe Atlow) [#&#8203;47369](https://github.com/nodejs/node/pull/47369)
    
    

v19.8.1: 2023-03-15, Version 19.8.1 (Current), @​targos

Compare Source

Notable Changes

This release contains a single revert of a change that was introduced in v19.8.0
and introduced application crashes.

Fixes: #​47096

Commits
  • [`f7c8aa4cf1`](https://github.com/nodejs/node/commit/f7c8aa4cf1)] - ***Revert*** "**vm**: fix leak in vm.compileFunction when importModuleDynamically is used" (Michaël Zasso) [#&#8203;47101](https://github.com/nodejs/node/pull/47101)
    
    

v19.7.0: 2023-02-21, Version 19.7.0 (Current), @​MylesBorins

Compare Source

Notable Changes
  • [`60a612607e`](https://github.com/nodejs/node/commit/60a612607e)] - **deps**: upgrade npm to 9.5.0 (npm team) [#&#8203;46673](https://github.com/nodejs/node/pull/46673)
    
  • [`7d6c27eab1`](https://github.com/nodejs/node/commit/7d6c27eab1)] - **deps**: add ada as a dependency (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410)
    
  • [`a79a8bf85a`](https://github.com/nodejs/node/commit/a79a8bf85a)] - **doc**: add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716)
    
  • [`0c2c322ee6`](https://github.com/nodejs/node/commit/0c2c322ee6)] - **doc**: add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444)
    
  • [`9b23309f53`](https://github.com/nodejs/node/commit/9b23309f53)] - **doc,lib,src,test**: rename --test-coverage (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017)
    
  • [`8590eb4830`](https://github.com/nodejs/node/commit/8590eb4830)] - **(SEMVER-MINOR)** **lib**: add aborted() utility function (Debadree Chatterjee) [#&#8203;46494](https://github.com/nodejs/node/pull/46494)
    
  • [`164bfe82cc`](https://github.com/nodejs/node/commit/164bfe82cc)] - **(SEMVER-MINOR)** **src**: add initial support for single executable applications (Darshan Sen) [#&#8203;45038](https://github.com/nodejs/node/pull/45038)
    
  • [`f3908411fd`](https://github.com/nodejs/node/commit/f3908411fd)] - **(SEMVER-MINOR)** **src**: allow optional Isolate termination in node::Stop() (Shelley Vohr) [#&#8203;46583](https://github.com/nodejs/node/pull/46583)
    
  • [`c34bac2fed`](https://github.com/nodejs/node/commit/c34bac2fed)] - **(SEMVER-MINOR)** **src**: allow blobs in addition to `FILE*`s in embedder snapshot API (Anna Henningsen) [#&#8203;46491](https://github.com/nodejs/node/pull/46491)
    
  • [`683a1f8f3e`](https://github.com/nodejs/node/commit/683a1f8f3e)] - **(SEMVER-MINOR)** **src**: allow snapshotting from the embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888)
    
  • [`658d2f4710`](https://github.com/nodejs/node/commit/658d2f4710)] - **(SEMVER-MINOR)** **src**: make build_snapshot a per-Isolate option, rather than a global one (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888)
    
  • [`6801d3753c`](https://github.com/nodejs/node/commit/6801d3753c)] - **(SEMVER-MINOR)** **src**: add snapshot support for embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888)
    
  • [`e77d538d32`](https://github.com/nodejs/node/commit/e77d538d32)] - **(SEMVER-MINOR)** **src**: allow embedder control of code generation policy (Shelley Vohr) [#&#8203;46368](https://github.com/nodejs/node/pull/46368)
    
  • [`633d3f292d`](https://github.com/nodejs/node/commit/633d3f292d)] - **(SEMVER-MINOR)** **stream**: add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46273](https://github.com/nodejs/node/pull/46273)
    
  • [`6119289251`](https://github.com/nodejs/node/commit/6119289251)] - **test_runner**: add initial code coverage support (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017)
    
  • [`a51fe3c663`](https://github.com/nodejs/node/commit/a51fe3c663)] - **url**: replace url-parser with ada (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410)
    
    
Commits
  • [`731a7ae9da`](https://github.com/nodejs/node/commit/731a7ae9da)] - **async_hooks**: add async local storage propagation benchmarks (Chengzhong Wu) [#&#8203;46414](https://github.com/nodejs/node/pull/46414)
    
  • [`05ad792a07`](https://github.com/nodejs/node/commit/05ad792a07)] - **async_hooks**: remove experimental onPropagate option (James M Snell) [#&#8203;46386](https://github.com/nodejs/node/pull/46386)
    
  • [`6b21170b10`](https://github.com/nodejs/node/commit/6b21170b10)] - **benchmark**: add trailing commas in `benchmark/path` (Antoine du Hamel) [#&#8203;46628](https://github.com/nodejs/node/pull/46628)
    
  • [`4b89ec409f`](https://github.com/nodejs/node/commit/4b89ec409f)] - **benchmark**: add trailing commas in `benchmark/http` (Antoine du Hamel) [#&#8203;46609](https://github.com/nodejs/node/pull/46609)
    
  • [`ff95eb7386`](https://github.com/nodejs/node/commit/ff95eb7386)] - **benchmark**: add trailing commas in `benchmark/crypto` (Antoine du Hamel) [#&#8203;46553](https://github.com/nodejs/node/pull/46553)
    
  • [`638d9b8d4b`](https://github.com/nodejs/node/commit/638d9b8d4b)] - **benchmark**: add trailing commas in `benchmark/url` (Antoine du Hamel) [#&#8203;46551](https://github.com/nodejs/node/pull/46551)
    
  • [`7524871a9b`](https://github.com/nodejs/node/commit/7524871a9b)] - **benchmark**: add trailing commas in `benchmark/http2` (Antoine du Hamel) [#&#8203;46552](https://github.com/nodejs/node/pull/46552)
    
  • [`9d9b3f856f`](https://github.com/nodejs/node/commit/9d9b3f856f)] - **benchmark**: add trailing commas in `benchmark/process` (Antoine du Hamel) [#&#8203;46481](https://github.com/nodejs/node/pull/46481)
    
  • [`6c69ad6d43`](https://github.com/nodejs/node/commit/6c69ad6d43)] - **benchmark**: add trailing commas in `benchmark/misc` (Antoine du Hamel) [#&#8203;46474](https://github.com/nodejs/node/pull/46474)
    
  • [`7f8b292bee`](https://github.com/nodejs/node/commit/7f8b292bee)] - **benchmark**: add trailing commas in `benchmark/buffers` (Antoine du Hamel) [#&#8203;46473](https://github.com/nodejs/node/pull/46473)
    
  • [`897e3c2782`](https://github.com/nodejs/node/commit/897e3c2782)] - **benchmark**: add trailing commas in `benchmark/module` (Antoine du Hamel) [#&#8203;46461](https://github.com/nodejs/node/pull/46461)
    
  • [`7760d40c04`](https://github.com/nodejs/node/commit/7760d40c04)] - **benchmark**: add trailing commas in `benchmark/net` (Antoine du Hamel) [#&#8203;46439](https://github.com/nodejs/node/pull/46439)
    
  • [`8b88d605ca`](https://github.com/nodejs/node/commit/8b88d605ca)] - **benchmark**: add trailing commas in `benchmark/util` (Antoine du Hamel) [#&#8203;46438](https://github.com/nodejs/node/pull/46438)
    
  • [`2c8c9f978d`](https://github.com/nodejs/node/commit/2c8c9f978d)] - **benchmark**: add trailing commas in `benchmark/async_hooks` (Antoine du Hamel) [#&#8203;46424](https://github.com/nodejs/node/pull/46424)
    
  • [`b364b9bd60`](https://github.com/nodejs/node/commit/b364b9bd60)] - **benchmark**: add trailing commas in `benchmark/fs` (Antoine du Hamel) [#&#8203;46426](https://github.com/nodejs/node/pull/46426)
    
  • [`e15ddba7e7`](https://github.com/nodejs/node/commit/e15ddba7e7)] - **build**: add GitHub Action for coverage with --without-intl (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954)
    
  • [`c781a48097`](https://github.com/nodejs/node/commit/c781a48097)] - **build**: do not disable inspector when intl is disabled (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954)
    
  • [`b4deb2fcd5`](https://github.com/nodejs/node/commit/b4deb2fcd5)] - **crypto**: don't assume FIPS is disabled by default (Michael Dawson) [#&#8203;46532](https://github.com/nodejs/node/pull/46532)
    
  • [`60a612607e`](https://github.com/nodejs/node/commit/60a612607e)] - **deps**: upgrade npm to 9.5.0 (npm team) [#&#8203;46673](https://github.com/nodejs/node/pull/46673)
    
  • [`6c997035fc`](https://github.com/nodejs/node/commit/6c997035fc)] - **deps**: update corepack to 0.16.0 (Node.js GitHub Bot) [#&#8203;46710](https://github.com/nodejs/node/pull/46710)
    
  • [`2ed3875eee`](https://github.com/nodejs/node/commit/2ed3875eee)] - **deps**: update undici to 5.20.0 (Node.js GitHub Bot) [#&#8203;46711](https://github.com/nodejs/node/pull/46711)
    
  • [`20cb13bf7f`](https://github.com/nodejs/node/commit/20cb13bf7f)] - **deps**: update ada to v1.0.1 (Yagiz Nizipli) [#&#8203;46550](https://github.com/nodejs/node/pull/46550)
    
  • [`c0983cfc06`](https://github.com/nodejs/node/commit/c0983cfc06)] - **deps**: copy `postject-api.h` and `LICENSE` to the `deps` folder (Darshan Sen) [#&#8203;46582](https://github.com/nodejs/node/pull/46582)
    
  • [`7d6c27eab1`](https://github.com/nodejs/node/commit/7d6c27eab1)] - **deps**: add ada as a dependency (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410)
    
  • [`7e7e2d037b`](https://github.com/nodejs/node/commit/7e7e2d037b)] - **deps**: update c-ares to 1.19.0 (Michaël Zasso) [#&#8203;46415](https://github.com/nodejs/node/pull/46415)
    
  • [`a79a8bf85a`](https://github.com/nodejs/node/commit/a79a8bf85a)] - **doc**: add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716)
    
  • [`6a8b04d709`](https://github.com/nodejs/node/commit/6a8b04d709)] - **doc**: move bcoe to emeriti (Benjamin Coe) [#&#8203;46703](https://github.com/nodejs/node/pull/46703)
    
  • [`a0a6ee0f54`](https://github.com/nodejs/node/commit/a0a6ee0f54)] - **doc**: add response.strictContentLength to documentation (Marco Ippolito) [#&#8203;46627](https://github.com/nodejs/node/pull/46627)
    
  • [`ffdd64dce3`](https://github.com/nodejs/node/commit/ffdd64dce3)] - **doc**: remove unused functions from example of `streamConsumers.text` (Deokjin Kim) [#&#8203;46581](https://github.com/nodejs/node/pull/46581)
    
  • [`c771d66864`](https://github.com/nodejs/node/commit/c771d66864)] - **doc**: fix test runner examples (Richie McColl) [#&#8203;46565](https://github.com/nodejs/node/pull/46565)
    
  • [`375bb22df9`](https://github.com/nodejs/node/commit/375bb22df9)] - **doc**: update test concurrency description / default values (richiemccoll) [#&#8203;46457](https://github.com/nodejs/node/pull/46457)
    
  • [`a7beac04ba`](https://github.com/nodejs/node/commit/a7beac04ba)] - **doc**: enrich test command with executable (Tony Gorez) [#&#8203;44347](https://github.com/nodejs/node/pull/44347)
    
  • [`aef57cd290`](https://github.com/nodejs/node/commit/aef57cd290)] - **doc**: fix wrong location of `requestTimeout`'s default value (Deokjin Kim) [#&#8203;46423](https://github.com/nodejs/node/pull/46423)
    
  • [`0c2c322ee6`](https://github.com/nodejs/node/commit/0c2c322ee6)] - **doc**: add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444)
    
  • [`31d3e3c486`](https://github.com/nodejs/node/commit/31d3e3c486)] - **doc**: fix -C flag usage (三咲智子 Kevin Deng) [#&#8203;46388](https://github.com/nodejs/node/pull/46388)
    
  • [`905a6756a3`](https://github.com/nodejs/node/commit/905a6756a3)] - **doc**: add note about major release rotation (Rafael Gonzaga) [#&#8203;46436](https://github.com/nodejs/node/pull/46436)
    
  • [`33a98c42fa`](https://github.com/nodejs/node/commit/33a98c42fa)] - **doc**: update threat model based on discussions (Michael Dawson) [#&#8203;46373](https://github.com/nodejs/node/pull/46373)
    
  • [`9b23309f53`](https://github.com/nodejs/node/commit/9b23309f53)] - **doc,lib,src,test**: rename --test-coverage (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017)
    
  • [`f192b83800`](https://github.com/nodejs/node/commit/f192b83800)] - **esm**: misc test refactors (Geoffrey Booth) [#&#8203;46631](https://github.com/nodejs/node/pull/46631)
    
  • [`7f2cdd36cf`](https://github.com/nodejs/node/commit/7f2cdd36cf)] - **http**: add note about clientError event (Paolo Insogna) [#&#8203;46584](https://github.com/nodejs/node/pull/46584)
    
  • [`d8c527f24f`](https://github.com/nodejs/node/commit/d8c527f24f)] - **http**: use v8::Array::New() with a prebuilt vector (Joyee Cheung) [#&#8203;46447](https://github.com/nodejs/node/pull/46447)
    
  • [`fa600fe003`](https://github.com/nodejs/node/commit/fa600fe003)] - **lib**: add trailing commas in `internal/process` (Antoine du Hamel) [#&#8203;46687](https://github.com/nodejs/node/pull/46687)
    
  • [`4aebee63f0`](https://github.com/nodejs/node/commit/4aebee63f0)] - **lib**: do not crash using workers with disabled shared array buffers (Ruben Bridgewater) [#&#8203;41023](https://github.com/nodejs/node/pull/41023)
    
  • [`a740908588`](https://github.com/nodejs/node/commit/a740908588)] - **lib**: delete module findPath unused params (sinkhaha) [#&#8203;45371](https://github.com/nodejs/node/pull/45371)
    
  • [`8b46c763d9`](https://github.com/nodejs/node/commit/8b46c763d9)] - **lib**: enforce use of trailing commas in more files (Antoine du Hamel) [#&#8203;46655](https://github.com/nodejs/node/pull/46655)
    
  • [`aae0020e27`](https://github.com/nodejs/node/commit/aae0020e27)] - **lib**: enforce use of trailing commas for functions (Antoine du Hamel) [#&#8203;46629](https://github.com/nodejs/node/pull/46629)
    
  • [`da9ebaf138`](https://github.com/nodejs/node/commit/da9ebaf138)] - **lib**: predeclare Event.isTrusted prop descriptor (Santiago Gimeno) [#&#8203;46527](https://github.com/nodejs/node/pull/46527)
    
  • [`35570e970e`](https://github.com/nodejs/node/commit/35570e970e)] - **lib**: tighten `AbortSignal.prototype.throwIfAborted` implementation (Antoine du Hamel) [#&#8203;46521](https://github.com/nodejs/node/pull/46521)
    
  • [`8590eb4830`](https://github.com/nodejs/node/commit/8590eb4830)] - **(SEMVER-MINOR)** **lib**: add aborted() utility function (Debadree Chatterjee) [#&#8203;46494](https://github.com/nodejs/node/pull/46494)
    
  • [`5d1a729f76`](https://github.com/nodejs/node/commit/5d1a729f76)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46624](https://github.com/nodejs/node/pull/46624)
    
  • [`cb9b9ad879`](https://github.com/nodejs/node/commit/cb9b9ad879)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;46513](https://github.com/nodejs/node/pull/46513)
    
  • [`17b82c85d9`](https://github.com/nodejs/node/commit/17b82c85d9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46504](https://github.com/nodejs/node/pull/46504)
    
  • [`bb14a2b098`](https://github.com/nodejs/node/commit/bb14a2b098)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;46411](https://github.com/nodejs/node/pull/46411)
    
  • [`152a3c7d1d`](https://github.com/nodejs/node/commit/152a3c7d1d)] - **process**: print versions by sort (Himself65) [#&#8203;46428](https://github.com/nodejs/node/pull/46428)
    
  • [`164bfe82cc`](https://github.com/nodejs/node/commit/164bfe82cc)] - **(SEMVER-MINOR)** **src**: add initial support for single executable applications (Darshan Sen) [#&#8203;45038](https://github.com/nodejs/node/pull/45038)
    
  • [`f3908411fd`](https://github.com/nodejs/node/commit/f3908411fd)] - **(SEMVER-MINOR)** **src**: allow optional Isolate termination in node::Stop() (Shelley Vohr) [#&#8203;46583](https://github.com/nodejs/node/pull/46583)
    
  • [`bdba600d32`](https://github.com/nodejs/node/commit/bdba600d32)] - **src**: remove icu usage from node_string.cc (Yagiz Nizipli) [#&#8203;46548](https://github.com/nodejs/node/pull/46548)
    
  • [`31fb2e22a0`](https://github.com/nodejs/node/commit/31fb2e22a0)] - **src**: add fflush() to SnapshotData::ToFile() (Anna Henningsen) [#&#8203;46531](https://github.com/nodejs/node/pull/46531)
    
  • [`c34bac2fed`](https://github.com/nodejs/node/commit/c34bac2fed)] - **(SEMVER-MINOR)** **src**: allow blobs in addition to `FILE*`s in embedder snapshot API (Anna Henningsen) [#&#8203;46491](https://github.com/nodejs/node/pull/46491)
    
  • [`c3325bfc0d`](https://github.com/nodejs/node/commit/c3325bfc0d)] - **src**: make edge names in BaseObjects more descriptive in heap snapshots (Joyee Cheung) [#&#8203;46492](https://github.com/nodejs/node/pull/46492)
    
  • [`3c5db8f419`](https://github.com/nodejs/node/commit/3c5db8f419)] - **src**: avoid leaking snapshot fp on error (Tobias Nießen) [#&#8203;46497](https://github.com/nodejs/node/pull/46497)
    
  • [`1a808a4aad`](https://github.com/nodejs/node/commit/1a808a4aad)] - **src**: check return value of ftell() (Tobias Nießen) [#&#8203;46495](https://github.com/nodejs/node/pull/46495)
    
  • [`f72f643549`](https://github.com/nodejs/node/commit/f72f643549)] - **src**: remove unused includes from main thread (Yagiz Nizipli) [#&#8203;46471](https://github.com/nodejs/node/pull/46471)
    
  • [`60c2a863da`](https://github.com/nodejs/node/commit/60c2a863da)] - **src**: use string_view instead of std::string& (Yagiz Nizipli) [#&#8203;46471](https://github.com/nodejs/node/pull/46471)
    
  • [`f35f6d2218`](https://github.com/nodejs/node/commit/f35f6d2218)] - **src**: use simdutf utf8 to utf16 instead of icu (Yagiz Nizipli) [#&#8203;46471](https://github.com/nodejs/node/pull/46471)
    
  • [`00b81c7afe`](https://github.com/nodejs/node/commit/00b81c7afe)] - **src**: replace icu with simdutf for char counts (Yagiz Nizipli) [#&#8203;46472](https://github.com/nodejs/node/pull/46472)
    
  • [`683a1f8f3e`](https://github.com/nodejs/node/commit/683a1f8f3e)] - **(SEMVER-MINOR)** **src**: allow snapshotting from the embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888)
    
  • [`658d2f4710`](https://github.com/nodejs/node/commit/658d2f4710)] - **(SEMVER-MINOR)** **src**: make build_snapshot a per-Isolate option, rather than a global one (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888)
    
  • [`6801d3753c`](https://github.com/nodejs/node/commit/6801d3753c)] - **(SEMVER-MINOR)** **src**: add snapshot support for embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888)
    
  • [`95065c3185`](https://github.com/nodejs/node/commit/95065c3185)] - **src**: add additional utilities to crypto::SecureContext (James M Snell) [#&#8203;45912](https://github.com/nodejs/node/pull/45912)
    
  • [`efc59d0843`](https://github.com/nodejs/node/commit/efc59d0843)] - **src**: add KeyObjectHandle::HasInstance (James M Snell) [#&#8203;45912](https://github.com/nodejs/node/pull/45912)
    
  • [`a8a2d0e2b1`](https://github.com/nodejs/node/commit/a8a2d0e2b1)] - **src**: add GetCurrentCipherName/Version to crypto_common (James M Snell) [#&#8203;45912](https://github.com/nodejs/node/pull/45912)
    
  • [`6cf860d3d6`](https://github.com/nodejs/node/commit/6cf860d3d6)] - **src**: back snapshot I/O with a std::vector sink (Joyee Cheung) [#&#8203;46463](https://github.com/nodejs/node/pull/46463)
    
  • [`e77d538d32`](https://github.com/nodejs/node/commit/e77d538d32)] - **(SEMVER-MINOR)** **src**: allow embedder control of code generation policy (Shelley Vohr) [#&#8203;46368](https://github.com/nodejs/node/pull/46368)
    
  • [`7756438c81`](https://github.com/nodejs/node/commit/7756438c81)] - **stream**: add trailing commas in webstream source files (Antoine du Hamel) [#&#8203;46685](https://github.com/nodejs/node/pull/46685)
    
  • [`6b64a945c6`](https://github.com/nodejs/node/commit/6b64a945c6)] - **stream**: add trailing commas in stream source files (Antoine du Hamel) [#&#8203;46686](https://github.com/nodejs/node/pull/46686)
    
  • [`633d3f292d`](https://github.com/nodejs/node/commit/633d3f292d)] - **(SEMVER-MINOR)** **stream**: add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46273](https://github.com/nodejs/node/pull/46273)
    
  • [`f91260b32a`](https://github.com/nodejs/node/commit/f91260b32a)] - **stream**: refactor to use `validateAbortSignal` (Antoine du Hamel) [#&#8203;46520](https://github.com/nodejs/node/pull/46520)
    
  • [`6bf7388b62`](https://github.com/nodejs/node/commit/6bf7388b62)] - **stream**: allow transfer of readable byte streams (MrBBot) [#&#8203;45955](https://github.com/nodejs/node/pull/45955)
    
  • [`c2068537fa`](https://github.com/nodejs/node/commit/c2068537fa)] - **stream**: add pipeline() for webstreams (Debadree Chatterjee) [#&#8203;46307](https://github.com/nodejs/node/pull/46307)
    
  • [`4cf4b41c56`](https://github.com/nodejs/node/commit/4cf4b41c56)] - **stream**: add suport for abort signal in finished() for webstreams (Debadree Chatterjee) [#&#8203;46403](https://github.com/nodejs/node/pull/46403)
    
  • [`b844a09fa5`](https://github.com/nodejs/node/commit/b844a09fa5)] - **stream**: dont access Object.prototype.type during TransformStream init (Debadree Chatterjee) [#&#8203;46389](https://github.com/nodejs/node/pull/46389)
    
  • [`6ad01fd7b5`](https://github.com/nodejs/node/commit/6ad01fd7b5)] - **test**: fix `test-net-autoselectfamily` for kernel without IPv6 support (Livia Medeiros) [#&#8203;45856](https://github.com/nodejs/node/pull/45856)
    
  • [`2239e24306`](https://github.com/nodejs/node/commit/2239e24306)] - **test**: fix assertions in test-snapshot-dns-lookup\* (Tobias Nießen) [#&#8203;46618](https://github.com/nodejs/node/pull/46618)
    
  • [`c4ca98e786`](https://github.com/nodejs/node/commit/c4ca98e786)] - **test**: cover publicExponent validation in OpenSSL (Tobias Nießen) [#&#8203;46632](https://github.com/nodejs/node/pull/46632)
    
  • [`e60d3f2b1d`](https://github.com/nodejs/node/commit/e60d3f2b1d)] - **test**: add WPTRunner support for variants and generating WPT reports (Filip Skokan) [#&#8203;46498](https://github.com/nodejs/node/pull/46498)
    
  • [`217f2f6e2a`](https://github.com/nodejs/node/commit/217f2f6e2a)] - **test**: add trailing commas in `test/pummel` (Antoine du Hamel) [#&#8203;46610](https://github.com/nodejs/node/pull/46610)
    
  • [`641e1771c8`](https://github.com/nodejs/node/commit/641e1771c8)] - **test**: enable api-invalid-label.any.js in encoding WPTs (Filip Skokan) [#&#8203;46506](https://github.com/nodejs/node/pull/46506)
    
  • [`89aa161173`](https://github.com/nodejs/node/commit/89aa161173)] - **test**: fix tap parser fails if a test logs a number (Pulkit Gupta) [#&#8203;46056](https://github.com/nodejs/node/pull/46056)
    
  • [`faba8d4a30`](https://github.com/nodejs/node/commit/faba8d4a30)] - **test**: add trailing commas in `test/js-native-api` (Antoine du Hamel) [#&#8203;46385](https://github.com/nodejs/node/pull/46385)
    
  • [`d556ccdd26`](https://github.com/nodejs/node/commit/d556ccdd26)] - **test**: make more crypto tests work with BoringSSL (Shelley Vohr) [#&#8203;46429](https://github.com/nodejs/node/pull/46429)
    
  • [`c7f29b24a6`](https://github.com/nodejs/node/commit/c7f29b24a6)] - **test**: add trailing commas in `test/known_issues` (Antoine du Hamel) [#&#8203;46408](https://github.com/nodejs/node/pull/46408)
    
  • [`a66e7ca6c5`](https://github.com/nodejs/node/commit/a66e7ca6c5)] - **test**: add trailing commas in `test/internet` (Antoine du Hamel) [#&#8203;46407](https://github.com/nodejs/node/pull/46407)
    
  • [`0f75633086`](https://github.com/nodejs/node/commit/0f75633086)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;46575](https://github.com/nodejs/node/pull/46575)
    
  • [`ddf5002782`](https://github.com/nodejs/node/commit/ddf5002782)] - **test_runner**: parse non-ascii character correctly (Mert Can Altın) [#&#8203;45736](https://github.com/nodejs/node/pull/45736)
    
  • [`5b748114d2`](https://github.com/nodejs/node/commit/5b748114d2)] - **test_runner**: allow nesting test within describe (Moshe Atlow) [#&#8203;46544](https://github.com/nodejs/node/pull/46544)
    
  • [`c526f9f70a`](https://github.com/nodejs/node/commit/c526f9f70a)] - **test_runner**: fix missing test diagnostics (Moshe Atlow) [#&#8203;46450](https://github.com/nodejs/node/pull/46450)
    
  • [`b31aabb101`](https://github.com/nodejs/node/commit/b31aabb101)] - **test_runner**: top-level diagnostics not ommited when running with --test (Pulkit Gupta) [#&#8203;46441](https://github.com/nodejs/node/pull/46441)
    
  • [`6119289251`](https://github.com/nodejs/node/commit/6119289251)] - **test_runner**: add initial code coverage support (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017)
    
  • [`6f24f0621e`](https://github.com/nodejs/node/commit/6f24f0621e)] - **timers**: cleanup no-longer relevant TODOs in timers/promises (James M Snell) [#&#8203;46499](https://github.com/nodejs/node/pull/46499)
    
  • [`1cd22e7d19`](https://github.com/nodejs/node/commit/1cd22e7d19)] - **tools**: fix bug in `prefer-primordials` lint rule (Antoine du Hamel) [#&#8203;46659](https://github.com/nodejs/node/pull/46659)
    
  • [`87df34ac28`](https://github.com/nodejs/node/commit/87df34ac28)] - **tools**: fix update-ada script (Yagiz Nizipli) [#&#8203;46550](https://github.com/nodejs/node/pull/46550)
    
  • [`f62b58a623`](https://github.com/nodejs/node/commit/f62b58a623)] - **tools**: add a daily wpt.fyi synchronized report upload (Filip Skokan) [#&#8203;46498](https://github.com/nodejs/node/pull/46498)
    
  • [`803f00aa32`](https://github.com/nodejs/node/commit/803f00aa32)] - **tools**: update eslint to 8.34.0 (Node.js GitHub Bot) [#&#8203;46625](https://github.com/nodejs/node/pull/46625)
    
  • [`f87216bdb2`](https://github.com/nodejs/node/commit/f87216bdb2)] - **tools**: update lint-md-dependencies to rollup@3.15.0 to-vfile@7.2.4 (Node.js GitHub Bot) [#&#8203;46623](https://github.com/nodejs/node/pull/46623)
    
  • [`8ee9e48560`](https://github.com/nodejs/node/commit/8ee9e48560)] - **tools**: update doc to remark-html@15.0.2 to-vfile@7.2.4 (Node.js GitHub Bot) [#&#8203;46622](https://github.com/nodejs/node/pull/46622)
    
  • [`148c5d9239`](https://github.com/nodejs/node/commit/148c5d9239)] - **tools**: update lint-md-dependencies to rollup@3.13.0 vfile-reporter@7.0.5 (Node.js GitHub Bot) [#&#8203;46503](https://github.com/nodejs/node/pull/46503)
    
  • [`51c6c61a58`](https://github.com/nodejs/node/commit/51c6c61a58)] - **tools**: update ESLint custom rules to not use the deprecated format (Antoine du Hamel) [#&#8203;46460](https://github.com/nodejs/node/pull/46460)
    
  • [`a51fe3c663`](https://github.com/nodejs/node/commit/a51fe3c663)] - **url**: replace url-parser with ada (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410)
    
  • [`129c9e7180`](https://github.com/nodejs/node/commit/129c9e7180)] - **url**: remove unused `URL::ToFilePath()` (Yagiz Nizipli) [#&#8203;46487](https://github.com/nodejs/node/pull/46487)
    
  • [`9a604d67c3`](https://github.com/nodejs/node/commit/9a604d67c3)] - **url**: remove unused `URL::toObject` (Yagiz Nizipli) [#&#8203;46486](https://github.com/nodejs/node/pull/46486)
    
  • [`d6fbebda54`](https://github.com/nodejs/node/commit/d6fbebda54)] - **url**: remove unused `setURLConstructor` function (Yagiz Nizipli) [#&#8203;46485](https://github.com/nodejs/node/pull/46485)
    
  • [`17b3ee33c2`](https://github.com/nodejs/node/commit/17b3ee33c2)] - **vm**: properly support symbols on globals (Nicolas DUBIEN) [#&#8203;46458](https://github.com/nodejs/node/pull/46458)
    
    

v19.6.1: 2023-02-16, Version 19.6.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

  • CVE-2023-23919: OpenSSL errors not cleared in error stack (Medium)
  • CVE-2023-23918: Experimental Policies bypass via process.mainModule.require(High)
  • CVE-2023-23920: Insecure loading of ICU data through ICU_DATA environment variable (Low)

More detailed information on each of the vulnerabilities can be found in February 2023 Security Releases blog post.

This security release includes OpenSSL security updates as outlined in the recent
OpenSSL security advisory and undici security update.

Commits
  • [`97d9d55d2f`](https://github.com/nodejs/node/commit/97d9d55d2f)] - **build**: build ICU with ICU_NO_USER_DATA_OVERRIDE (RafaelGSS) [nodejs-private/node-private#374](https://github.com/nodejs-private/node-private/pull/374)
    
  • [`8ac90e6372`](https://github.com/nodejs/node/commit/8ac90e6372)] - **crypto**: clear OpenSSL error on invalid ca cert (RafaelGSS) [nodejs-private/node-private#368](https://github.com/nodejs-private/node-private/pull/368)
    
  • [`10a4c47e3a`](https://github.com/nodejs/node/commit/10a4c47e3a)] - **deps**: update undici to 5.19.1 (Node.js GitHub Bot) [#&#8203;46634](https://github.com/nodejs/node/pull/46634)
    
  • [`b10fc75e4a`](https://github.com/nodejs/node/commit/b10fc75e4a)] - **deps**: update undici to 5.18.0 (Node.js GitHub Bot) [#&#8203;46502](https://github.com/nodejs/node/pull/46502)
    
  • [`e9b64ea8b9`](https://github.com/nodejs/node/commit/e9b64ea8b9)] - **deps**: update undici to 5.17.1 (Node.js GitHub Bot) [#&#8203;46502](https://github.com/nodejs/node/pull/46502)
    
  • [`66a24cec47`](https://github.com/nodejs/node/commit/66a24cec47)] - **deps**: cherry-pick Windows ARM64 fix for openssl (Richard Lau) [#&#8203;46573](https://github.com/nodejs/node/pull/46573)
    
  • [`d8559aa6f5`](https://github.com/nodejs/node/commit/d8559aa6f5)] - **deps**: update archs files for quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46573](https://github.com/nodejs/node/pull/46573)
    
  • [`dc477f547d`](https://github.com/nodejs/node/commit/dc477f547d)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46573](https://github.com/nodejs/node/pull/46573)
    
  • [`2aae197670`](https://github.com/nodejs/node/commit/2aae197670)] - **lib**: makeRequireFunction patch when experimental policy (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358)
    
  • [`6d17b693ec`](https://github.com/nodejs/node/commit/6d17b693ec)] - **policy**: makeRequireFunction on mainModule.require (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358)
    
    

v19.6.0: 2023-02-02, Version 19.6.0 (Current), @​ruyadorno

Compare Source

Notable changes
ESM: Leverage loaders when resolving subsequent loaders

Loaders now apply to subsequent loaders, for example: --experimental-loader ts-node --experimental-loader loader-written-in-typescript.

Upgrade npm to 9.4.0

Added --install-strategy=linked option for installations similar to pnpm.

Other notable changes
  • [`a7c9daa497`](https://github.com/nodejs/node/commit/a7c9daa497)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#&#8203;46358](https://github.com/nodejs/node/pull/46358)
    
  • [`34d70ce615`](https://github.com/nodejs/node/commit/34d70ce615)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#&#8203;46320](https://github.com/nodejs/node/pull/46320)
    
  • [`b4ac794923`](https://github.com/nodejs/node/commit/b4ac794923)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#&#8203;46255](https://github.com/nodejs/node/pull/46255)
    
  • [`d52f60009a`](https://github.com/nodejs/node/commit/d52f60009a)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#&#8203;46218](https://github.com/nodejs/node/pull/46218)
    
  • [`5ad6c2088e`](https://github.com/nodejs/node/commit/5ad6c2088e)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#&#8203;46046](https://github.com/nodejs/node/pull/46046)
    
  • [`fbdc3f7316`](https://github.com/nodejs/node/commit/fbdc3f7316)] - **(SEMVER-MINOR)** **test_runner**: add reporters (Moshe Atlow) [#&#8203;45712](https://github.com/nodejs/node/pull/45712)
    
    
Commits
  • [`524eec70e2`](https://github.com/nodejs/node/commit/524eec70e2)] - **benchmark**: add trailing commas (Antoine du Hamel) [#&#8203;46370](https://github.com/nodejs/node/pull/46370)
    
  • [`f318a85408`](https://github.com/nodejs/node/commit/f318a85408)] - **benchmark**: remove buffer benchmarks redundancy (Brian White) [#&#8203;45735](https://github.com/nodejs/node/pull/45735)
    
  • [`6186b3ea14`](https://github.com/nodejs/node/commit/6186b3ea14)] - **benchmark**: introduce benchmark combination filtering (Brian White) [#&#8203;45735](https://github.com/nodejs/node/pull/45735)
    
  • [`5ad6c2088e`](https://github.com/nodejs/node/commit/5ad6c2088e)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#&#8203;46046](https://github.com/nodejs/node/pull/46046)
    
  • [`8c6c4338a6`](https://github.com/nodejs/node/commit/8c6c4338a6)] - **build**: export more OpenSSL symbols on Windows (Mohamed Akram) [#&#8203;45486](https://github.com/nodejs/node/pull/45486)
    
  • [`d795d93901`](https://github.com/nodejs/node/commit/d795d93901)] - **build**: fix MSVC 2022 Release compilation (Vladimir Morozov (REDMOND)) [#&#8203;46228](https://github.com/nodejs/node/pull/46228)
    
  • [`8e363cf8e8`](https://github.com/nodejs/node/commit/8e363cf8e8)] - **crypto**: include `hmac.h` in `crypto_util.h` (Adam Langley) [#&#8203;46279](https://github.com/nodejs/node/pull/46279)
    
  • [`c1f3e13c65`](https://github.com/nodejs/node/commit/c1f3e13c65)] - **deps**: update acorn to 8.8.2 (Node.js GitHub Bot) [#&#8203;46363](https://github.com/nodejs/node/pull/46363)
    
  • [`813b160bd7`](https://github.com/nodejs/node/commit/813b160bd7)] - **deps**: upgrade npm to 9.4.0 (npm team) [#&#8203;46353](https://github.com/nodejs/node/pull/46353)
    
  • [`9c2f3cea70`](https://github.com/nodejs/node/commit/9c2f3cea70)] - **deps**: update undici to 5.15.0 (Node.js GitHub Bot) [#&#8203;46213](https://github.com/nodejs/node/pull/46213)
    
  • [`312e10c1e3`](https://github.com/nodejs/node/commit/312e10c1e3)] - **deps**: update to uvwasi 0.0.15 (Colin Ihrig) [#&#8203;46253](https://github.com/nodejs/node/pull/46253)
    
  • [`c7024eec16`](https://github.com/nodejs/node/commit/c7024eec16)] - **doc**: correct the `sed` command for macOS in release process docs (Juan José) [#&#8203;46397](https://github.com/nodejs/node/pull/46397)
    
  • [`996bac044b`](https://github.com/nodejs/node/commit/996bac044b)] - **doc**: include webstreams in finished() and Duplex.from() parameters (Debadree Chatterjee) [#&#8203;46312](https://github.com/nodejs/node/pull/46312)
    
  • [`891d18d55c`](https://github.com/nodejs/node/commit/891d18d55c)] - **doc**: pass string to `textEncoder.encode` as input (Deokjin Kim) [#&#8203;46421](https://github.com/nodejs/node/pull/46421)
    
  • [`968db213f8`](https://github.com/nodejs/node/commit/968db213f8)] - **doc**: add tip for session.post function (theanarkh) [#&#8203;46354](https://github.com/nodejs/node/pull/46354)
    
  • [`a64d7f4e31`](https://github.com/nodejs/node/commit/a64d7f4e31)] - **doc**: add documentation for socket.destroySoon() (Luigi Pinca) [#&#8203;46337](https://github.com/nodejs/node/pull/46337)
    
  • [`975788899f`](https://github.com/nodejs/node/commit/975788899f)] - **doc**: fix commit message using test instead of deps (Tony Gorez) [#&#8203;46313](https://github.com/nodejs/node/pull/46313)
    
  • [`1d44017f52`](https://github.com/nodejs/node/commit/1d44017f52)] - **doc**: add v8 fast api contribution guidelines (Yagiz Nizipli) [#&#8203;46199](https://github.com/nodejs/node/pull/46199)
    
  • [`e2698c05fb`](https://github.com/nodejs/node/commit/e2698c05fb)] - **doc**: fix small typo error (0xflotus) [#&#8203;46186](https://github.com/nodejs/node/pull/46186)
    
  • [`f39fb8c001`](https://github.com/nodejs/node/commit/f39fb8c001)] - **doc**: mark some parameters as optional in webstreams (Deokjin Kim) [#&#8203;46269](https://github.com/nodejs/node/pull/46269)
    
  • [`7a9af38128`](https://github.com/nodejs/node/commit/7a9af38128)] - **doc**: update output of example in `events.getEventListeners` (Deokjin Kim) [#&#8203;46268](https://github.com/nodejs/node/pull/46268)
    
  • [`729642f30b`](https://github.com/nodejs/node/commit/729642f30b)] - **esm**: delete preload mock test (Geoffrey Booth) [#&#8203;46402](https://github.com/nodejs/node/pull/46402)
    
  • [`7aac21e90a`](https://github.com/nodejs/node/commit/7aac21e90a)] - **esm**: leverage loaders when resolving subsequent loaders (Maël Nison) [#&#8203;43772](https://github.com/nodejs/node/pull/43772)
    
  • [`a7c9daa497`](https://github.com/nodejs/node/commit/a7c9daa497)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#&#8203;46358](https://github.com/nodejs/node/pull/46358)
    
  • [`1ec6270efa`](https://github.com/nodejs/node/commit/1ec6270efa)] - **http**: res.setHeaders first implementation (Marco Ippolito) [#&#8203;46109](https://github.com/nodejs/node/pull/46109)
    
  • [`d4370259e9`](https://github.com/nodejs/node/commit/d4370259e9)] - **inspector**: allow opening inspector when `NODE_V8_COVERAGE` is set (Moshe Atlow) [#&#8203;46113](https://github.com/nodejs/node/pull/46113)
    
  • [`b966ef9a42`](https://github.com/nodejs/node/commit/b966ef9a42)] - **lib**: remove unnecessary ObjectGetValueSafe (Chengzhong Wu) [#&#8203;46335](https://github.com/nodejs/node/pull/46335)
    
  • [`2b06d66289`](https://github.com/nodejs/node/commit/2b06d66289)] - **lib**: cache parsed source maps to reduce memory footprint (Chengzhong Wu) [#&#8203;46225](https://github.com/nodejs/node/pull/46225)
    
  • [`c38673df91`](https://github.com/nodejs/node/commit/c38673df91)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46399](https://github.com/nodejs/node/pull/46399)
    
  • [`c10e602547`](https://github.com/nodejs/node/commit/c10e602547)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46303](https://github.com/nodejs/node/pull/46303)
    
  • [`9dc026b14a`](https://github.com/nodejs/node/commit/9dc026b14a)] - **meta**: add .mailmap entry (Rich Trott) [#&#8203;46303](https://github.com/nodejs/node/pull/46303)
    
  • [`7c514574f7`](https://github.com/nodejs/node/commit/7c514574f7)] - **meta**: move evanlucas to emeritus (Evan Lucas) [#&#8203;46274](https://github.com/nodejs/node/pull/46274)
    
  • [`3a3a6d87f1`](https://github.com/nodejs/node/commit/3a3a6d87f1)] - **module**: move test reporter loading (Geoffrey Booth) [#&#8203;45923](https://github.com/nodejs/node/pull/45923)
    
  • [`4ae2492a33`](https://github.com/nodejs/node/commit/4ae2492a33)] - **readline**: fix detection of carriage return (Antoine du Hamel) [#&#8203;46306](https://github.com/nodejs/node/pull/46306)
    
  • [`43cad78b7a`](https://github.com/nodejs/node/commit/43cad78b7a)] - **src**: stop tracing agent before shutting down libuv (Santiago Gimeno) [#&#8203;46380](https://github.com/nodejs/node/pull/46380)
    
  • [`360a3f3094`](https://github.com/nodejs/node/commit/360a3f3094)] - **src**: get rid of fp arithmetic in ParseIPv4Host (Tobias Nießen) [#&#8203;46326](https://github.com/nodejs/node/pull/46326)
    
  • [`e7b507a8cf`](https://github.com/nodejs/node/commit/e7b507a8cf)] - **src**: use UNREACHABLE instead of CHECK(falsy) (Tobias Nießen) [#&#8203;46317](https://github.com/nodejs/node/pull/46317)
    
  • [`4c59b60ee8`](https://github.com/nodejs/node/commit/4c59b60ee8)] - **src**: add support for ETW stack walking (José Dapena Paz) [#&#8203;46203](https://github.com/nodejs/node/pull/46203)
    
  • [`640d111f95`](https://github.com/nodejs/node/commit/640d111f95)] - **src**: refactor EndsInANumber in node_url.cc and adds IsIPv4NumberValid (Miguel Teixeira) [#&#8203;46227](https://github.com/nodejs/node/pull/46227)
    
  • [`fb7bee2b6e`](https://github.com/nodejs/node/commit/fb7bee2b6e)] - **src**: fix c++ exception on bad command line arg (Ben Noordhuis) [#&#8203;46290](https://github.com/nodejs/node/pull/46290)
    
  • [`18c95ec4bd`](https://github.com/nodejs/node/commit/18c95ec4bd)] - **src**: remove unreachable UNREACHABLE (Tobias Nießen) [#&#8203;46281](https://github.com/nodejs/node/pull/46281)
    
  • [`35bf93b01a`](https://github.com/nodejs/node/commit/35bf93b01a)] - **src**: replace custom ASCII validation with simdutf one (Anna Henningsen) [#&#8203;46271](https://github.com/nodejs/node/pull/46271)
    
  • [`8307a4bbcd`](https://github.com/nodejs/node/commit/8307a4bbcd)] - **src**: replace unreachable code with static_assert (Tobias Nießen) [#&#8203;46250](https://github.com/nodejs/node/pull/46250)
    
  • [`7cf0da020a`](https://github.com/nodejs/node/commit/7cf0da020a)] - **src**: use explicit C++17 fallthrough (Tobias Nießen) [#&#8203;46251](https://github.com/nodejs/node/pull/46251)
    
  • [`d52f60009a`](https://github.com/nodejs/node/commit/d52f60009a)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#&#8203;46218](https://github.com/nodejs/node/pull/46218)
    
  • [`2e5e7a9261`](https://github.com/nodejs/node/commit/2e5e7a9261)] - **stream**: remove brandchecks from stream duplexify (Debadree Chatterjee) [#&#8203;46315](https://github.com/nodejs/node/pull/46315)
    
  • [`9675863461`](https://github.com/nodejs/node/commit/9675863461)] - **stream**: fix readable stream as async iterator function (Erick Wendel) [#&#8203;46147](https://github.com/nodejs/node/pull/46147)
    
  • [`232bdd5d16`](https://github.com/nodejs/node/commit/232bdd5d16)] - **test**: add trailing commas in `test/node-api` (Antoine du Hamel) [#&#8203;46384](https://github.com/nodejs/node/pull/46384)
    
  • [`4cc081815d`](https://github.com/nodejs/node/commit/4cc081815d)] - **test**: add trailing commas in `test/message` (Antoine du Hamel) [#&#8203;46372](https://github.com/nodejs/node/pull/46372)
    
  • [`b83c5d9deb`](https://github.com/nodejs/node/commit/b83c5d9deb)] - **test**: add trailing commas in `test/pseudo-tty` (Antoine du Hamel) [#&#8203;46371](https://github.com/nodejs/node/pull/46371)
    
  • [`8a45c9d231`](https://github.com/nodejs/node/commit/8a45c9d231)] - **test**: fix tap escaping with and without --test (Pulkit Gupta) [#&#8203;46311](https://github.com/nodejs/node/pull/46311)
    
  • [`367dc41299`](https://github.com/nodejs/node/commit/367dc41299)] - **test**: set common.bits to 64 for loong64 (Shi Pujin) [#&#8203;45383](https://github.com/nodejs/node/pull/45383)
    
  • [`7385edc7d0`](https://github.com/nodejs/node/commit/7385edc7d0)] - **test**: s390x zlib test case fixes (Adam Majer) [#&#8203;46367](https://github.com/nodejs/node/pull/46367)
    
  • [`d5d837bdee`](https://github.com/nodejs/node/commit/d5d837bdee)] - **test**: fix logInTimeout is not function (theanarkh) [#&#8203;46348](https://github.com/nodejs/node/pull/46348)
    
  • [`a1d79546ac`](https://github.com/nodejs/node/commit/a1d79546ac)] - **test**: avoid trying to call sysctl directly (Adam Majer) [#&#8203;46366](https://github.com/nodejs/node/pull/46366)
    
  • [`747f3689e0`](https://github.com/nodejs/node/commit/747f3689e0)] - **test**: avoid left behind child processes (Richard Lau) [#&#8203;46276](https://github.com/nodejs/node/pull/46276)
    
  • [`940484b7aa`](https://github.com/nodejs/node/commit/940484b7aa)] - **test**: add failing test for readline with carriage return (Alec Mev) [#&#8203;46075](https://github.com/nodejs/node/pull/46075)
    
  • [`d13116a719`](https://github.com/nodejs/node/commit/d13116a719)] - **test,crypto**: add CFRG curve vectors to wrap/unwrap tests (Filip Skokan) [#&#8203;46406](https://github.com/nodejs/node/pull/46406)
    
  • [`398a7477b3`](https://github.com/nodejs/node/commit/398a7477b3)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;46267](https://github.com/nodejs/node/pull/46267)
    
  • [`8b473affe8`](https://github.com/nodejs/node/commit/8b473affe8)] - **test_runner**: make built in reporters internal (Colin Ihrig) [#&#8203;46092](https://github.com/nodejs/node/pull/46092)
    
  • [`a49e17e22b`](https://github.com/nodejs/node/commit/a49e17e22b)] - **test_runner**: report `file` in test runner events (Moshe Atlow) [#&#8203;46030](https://github.com/nodejs/node/pull/46030)
    
  • [`fbdc3f7316`](https://github.com/nodejs/node/commit/fbdc3f7316)] - **test_runner**: add reporters (Moshe Atlow) [#&#8203;45712](https://github.com/nodejs/node/pull/45712)
    
  • [`6579de8c47`](https://github.com/nodejs/node/commit/6579de8c47)] - **tools**: update eslint to 8.33.0 (Node.js GitHub Bot) [#&#8203;46400](https://github.com/nodejs/node/pull/46400)
    
  • [`bf62da55ad`](https://github.com/nodejs/node/commit/bf62da55ad)] - **tools**: update doc to unist-util-select@4.0.3 unist-util-visit@4.1.2 (Node.js GitHub Bot) [#&#8203;46364](https://github.com/nodejs/node/pull/46364)
    
  • [`b0acf55197`](https://github.com/nodejs/node/commit/b0acf55197)] - **tools**: update lint-md-dependencies to rollup@3.12.0 (Node.js GitHub Bot) [#&#8203;46398](https://github.com/nodejs/node/pull/46398)
    
  • [`88b904cf24`](https://github.com/nodejs/node/commit/88b904cf24)] - **tools**: require more trailing commas (Antoine du Hamel) [#&#8203;46346](https://github.com/nodejs/node/pull/46346)
    
  • [`4440b3ef87`](https://github.com/nodejs/node/commit/4440b3ef87)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;46302](https://github.com/nodejs/node/pull/46302)
    
  • [`e75faff4bd`](https://github.com/nodejs/node/commit/e75faff4bd)] - **tools**: allow icutrim.py to run on python2 (Michael Dawson) [#&#8203;46263](https://github.com/nodejs/node/pull/46263)
    
  • [`e460d16d73`](https://github.com/nodejs/node/commit/e460d16d73)] - **url**: refactor to use more primordials (Antoine du Hamel) [#&#8203;45966](https://github.com/nodejs/node/pull/45966)
    
  • [`b4ac794923`](https://github.com/nodejs/node/commit/b4ac794923)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#&#8203;46255](https://github.com/nodejs/node/pull/46255)
    
  • [`34d70ce615`](https://github.com/nodejs/node/commit/34d70ce615)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#&#8203;46320](https://github.com/nodejs/node/pull/46320)
    
    

v19.5.0: 2023-01-24, Version 19.5.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
  • http:
    • (SEMVER-MINOR) join authorization headers (Marco Ippolito) #​45982
  • lib::
    • add webstreams to Duplex.from() (Debadree Chatterjee) #​46190
  • stream:
    • implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) #​46205
Commits
  • [`def36946da`](https://github.com/nodejs/node/commit/def36946da)] - **assert**: remove `assert.snapshot` (Moshe Atlow) [#&#8203;46112](https://github.com/nodejs/node/pull/46112)
    
  • [`e1c56ec3fd`](https://github.com/nodejs/node/commit/e1c56ec3fd)] - **benchmark,tools**: use os.availableParallelism() (Deokjin Kim) [#&#8203;46003](https://github.com/nodejs/node/pull/46003)
    
  • [`370f621d4d`](https://github.com/nodejs/node/commit/370f621d4d)] - **build**: add extra semi check (Jiawen Geng) [#&#8203;46194](https://github.com/nodejs/node/pull/46194)
    
  • [`476c6f892d`](https://github.com/nodejs/node/commit/476c6f892d)] - **crypto**: avoid hang when no algorithm available (Richard Lau) [#&#8203;46237](https://github.com/nodejs/node/pull/46237)
    
  • [`8b22310940`](https://github.com/nodejs/node/commit/8b22310940)] - **(SEMVER-MINOR)** **crypto**: add CryptoKey Symbol.toStringTag (Filip Skokan) [#&#8203;46042](https://github.com/nodejs/node/pull/46042)
    
  • [`78be87b9f9`](https://github.com/nodejs/node/commit/78be87b9f9)] - **crypto**: add cipher update/final methods encoding validation (vitpavlenko) [#&#8203;45990](https://github.com/nodejs/node/pull/45990)
    
  • [`dc0cdaa101`](https://github.com/nodejs/node/commit/dc0cdaa101)] - **crypto**: ensure auth tag set for chacha20-poly1305 (Ben Noordhuis) [#&#8203;46185](https://github.com/nodejs/node/pull/46185)
    
  • [`1146f02dc5`](https://github.com/nodejs/node/commit/1146f02dc5)] - **crypto**: return correct bit length in KeyObject's asymmetricKeyDetails (Filip Skokan) [#&#8203;46106](https://github.com/nodejs/node/pull/46106)
    
  • [`961710bb72`](https://github.com/nodejs/node/commit/961710bb72)] - **(SEMVER-MINOR)** **crypto**: add KeyObject Symbol.toStringTag (Filip Skokan) [#&#8203;46043](https://github.com/nodejs/node/pull/46043)
    
  • [`9cfdac6c82`](https://github.com/nodejs/node/commit/9cfdac6c82)] - **deps**: V8: cherry-pick [`e39af94`](https://github.com/nodejs/node/commit/e39af94dd18e) (Lu Yahan) [#&#8203;46142](https://github.com/nodejs/node/pull/46142)
    
  • [`26cde8efb7`](https://github.com/nodejs/node/commit/26cde8efb7)] - **deps**: update simdutf to 3.1.0 (Node.js GitHub Bot) [#&#8203;46257](https://github.com/nodejs/node/pull/46257)
    
  • [`3f9fb37130`](https://github.com/nodejs/node/commit/3f9fb37130)] - **deps**: cherrypick simdutf patch (Jiawen Geng) [#&#8203;46194](https://github.com/nodejs/node/pull/46194)
    
  • [`4ff2822836`](https://github.com/nodejs/node/commit/4ff2822836)] - **deps**: bump googletest to 2023.01.13 (Jiawen Geng) [#&#8203;46198](https://github.com/nodejs/node/pull/46198)
    
  • [`49556247d2`](https://github.com/nodejs/node/commit/49556247d2)] - **deps**: add /deps/\*\*/.github/ to .gitignore (Luigi Pinca) [#&#8203;46091](https://github.com/nodejs/node/pull/46091)
    
  • [`0c4df83e0d`](https://github.com/nodejs/node/commit/0c4df83e0d)] - **deps**: add simdutf version to metadata (Mike Roth) [#&#8203;46145](https://github.com/nodejs/node/pull/46145)
    
  • [`69aafc3ddd`](https://github.com/nodejs/node/commit/69aafc3ddd)] - **deps**: update simdutf to 2.1.0 (Node.js GitHub Bot) [#&#8203;46128](https://github.com/nodejs/node/pull/46128)
    
  • [`a266daccb5`](https://github.com/nodejs/node/commit/a266daccb5)] - **deps**: update corepack to 0.15.3 (Node.js GitHub Bot) [#&#8203;46037](https://github.com/nodejs/node/pull/46037)
    
  • [`6cd70573eb`](https://github.com/nodejs/node/commit/6cd70573eb)] - **deps**: upgrade npm to 9.3.1 (npm team) [#&#8203;46242](https://github.com/nodejs/node/pull/46242)
    
  • [`679aae2da8`](https://github.com/nodejs/node/commit/679aae2da8)] - **deps**: upgrade npm to 9.3.0 (npm team) [#&#8203;46193](https://github.com/nodejs/node/pull/46193)
    
  • [`38dd5061f2`](https://github.com/nodejs/node/commit/38dd5061f2)] - **dgram**: sync the old handle state to new handle (theanarkh) [#&#8203;46041](https://github.com/nodejs/node/pull/46041)
    
  • [`e36af49b35`](https://github.com/nodejs/node/commit/e36af49b35)] - **doc**: fix mismatched arguments of `NodeEventTarget` (Deokjin Kim) [#&#8203;45678](https://github.com/nodejs/node/pull/45678)
    
  • [`58b836f7c4`](https://github.com/nodejs/node/commit/58b836f7c4)] - **doc**: update events API example to have runnable code (Deokjin Kim) [#&#8203;45760](https://github.com/nodejs/node/pull/45760)
    
  • [`5c350298b4`](https://github.com/nodejs/node/commit/5c350298b4)] - **doc**: add note to tls docs about secureContext availability (Tim Gerk) [#&#8203;46224](https://github.com/nodejs/node/pull/46224)
    
  • [`90924ce198`](https://github.com/nodejs/node/commit/90924ce198)] - **doc**: add text around collaborative expectations (Michael Dawson) [#&#8203;46121](https://github.com/nodejs/node/pull/46121)
    
  • [`2d328355d4`](https://github.com/nodejs/node/commit/2d328355d4)] - **doc**: update to match changed `--dns-result-order` default (Mordy Tikotzky) [#&#8203;46148](https://github.com/nodejs/node/pull/46148)
    
  • [`1015a606b7`](https://github.com/nodejs/node/commit/1015a606b7)] - **doc**: add Node-API media link (Kevin Eady) [#&#8203;46189](https://github.com/nodejs/node/pull/46189)
    
  • [`6e355efcff`](https://github.com/nodejs/node/commit/6e355efcff)] - **doc**: update http.setMaxIdleHTTPParsers arguments (Debadree Chatterjee) [#&#8203;46168](https://github.com/nodejs/node/pull/46168)
    
  • [`f18ab9405a`](https://github.com/nodejs/node/commit/f18ab9405a)] - **doc**: use "file system" instead of "filesystem" (Rich Trott) [#&#8203;46178](https://github.com/nodejs/node/pull/46178)
    
  • [`1b45713b00`](https://github.com/nodejs/node/commit/1b45713b00)] - **doc**: https update default request timeout (Marco Ippolito) [#&#8203;46184](https://github.com/nodejs/node/pull/46184)
    
  • [`4c88721e2f`](https://github.com/nodejs/node/commit/4c88721e2f)] - **doc**: make options of readableStream.pipeTo as optional (Deokjin Kim) [#&#8203;46180](https://github.com/nodejs/node/pull/46180)
    
  • [`538c53f010`](https://github.com/nodejs/node/commit/538c53f010)] - **doc**: add PerformanceObserver.supportedEntryTypes to doc (theanarkh) [#&#8203;45962](https://github.com/nodejs/node/pull/45962)
    
  • [`eef7489d24`](https://github.com/nodejs/node/commit/eef7489d24)] - **doc**: duplex and readable from uncaught execption warning (Marco Ippolito) [#&#8203;46135](https://github.com/nodejs/node/pull/46135)
    
  • [`686fe585b5`](https://github.com/nodejs/node/commit/686fe585b5)] - **doc**: remove outdated sections from `maintaining-v8` (Antoine du Hamel) [#&#8203;46137](https://github.com/nodejs/node/pull/46137)
    
  • [`2e826ad528`](https://github.com/nodejs/node/commit/2e826ad528)] - **doc**: fix (EC)DHE remark in TLS docs (Tobias Nießen) [#&#8203;46114](https://github.com/nodejs/node/pull/46114)
    
  • [`2e22b29add`](https://github.com/nodejs/node/commit/2e22b29add)] - **doc**: fix ERR_TLS_RENEGOTIATION_DISABLED text (Tobias Nießen) [#&#8203;46122](https://github.com/nodejs/node/pull/46122)
    
  • [`e222a2f1d1`](https://github.com/nodejs/node/commit/e222a2f1d1)] - **doc**: fix spelling in SECURITY.md (Vaishno Chaitanya) [#&#8203;46124](https://github.com/nodejs/node/pull/46124)
    
  • [`7718e82f0d`](https://github.com/nodejs/node/commit/7718e82f0d)] - **doc**: abort controller emits error in child process (Debadree Chatterjee) [#&#8203;46072](https://github.com/nodejs/node/pull/46072)
    
  • [`76408bc1ed`](https://github.com/nodejs/node/commit/76408bc1ed)] - **doc**: fix `event.cancelBubble` documentation (Deokjin Kim) [#&#8203;45986](https://github.com/nodejs/node/pull/45986)
    
  • [`82023f2570`](https://github.com/nodejs/node/commit/82023f2570)] - **doc**: update output of example in inspector (Deokjin Kim) [#&#8203;46073](https://github.com/nodejs/node/pull/46073)
    
  • [`a42fc512b6`](https://github.com/nodejs/node/commit/a42fc512b6)] - **doc**: add personal pronouns option (Filip Skokan) [#&#8203;46118](https://github.com/nodejs/node/pull/46118)
    
  • [`fafae5955d`](https://github.com/nodejs/node/commit/fafae5955d)] - **doc**: mention how to run ncu-ci citgm (Rafael Gonzaga) [#&#8203;46090](https://github.com/nodejs/node/pull/46090)
    
  • [`e1fd2f24d9`](https://github.com/nodejs/node/commit/e1fd2f24d9)] - **doc**: include updating release optional step (Rafael Gonzaga) [#&#8203;46089](https://github.com/nodejs/node/pull/46089)
    
  • [`1996e610fd`](https://github.com/nodejs/node/commit/1996e610fd)] - **doc**: describe argument of `Symbol.for` (Deokjin Kim) [#&#8203;46019](https://github.com/nodejs/node/pull/46019)
    
  • [`b002330216`](https://github.com/nodejs/node/commit/b002330216)] - **doc,crypto**: fix WebCryptoAPI import keyData and export return (Filip Skokan) [#&#8203;46076](https://github.com/nodejs/node/pull/46076)
    
  • [`fa3e0c86c7`](https://github.com/nodejs/node/commit/fa3e0c86c7)] - **esm**: mark `importAssertions` as required (Antoine du Hamel) [#&#8203;46164](https://github.com/nodejs/node/pull/46164)
    
  • [`f85a8e4c59`](https://github.com/nodejs/node/commit/f85a8e4c59)] - **events**: add `initEvent` to Event (Deokjin Kim) [#&#8203;46069](https://github.com/nodejs/node/pull/46069)
    
  • [`5bdfaae680`](https://github.com/nodejs/node/commit/5bdfaae680)] - **events**: change status of `event.returnvalue` to legacy (Deokjin Kim) [#&#8203;46175](https://github.com/nodejs/node/pull/46175)
    
  • [`ad7846fe97`](https://github.com/nodejs/node/commit/ad7846fe97)] - **events**: change status of `event.cancelBubble` to legacy (Deokjin Kim) [#&#8203;46146](https://github.com/nodejs/node/pull/46146)
    
  • [`5304c89682`](https://github.com/nodejs/node/commit/5304c89682)] - **events**: change status of `event.srcElement` to legacy (Deokjin Kim) [#&#8203;46085](https://github.com/nodejs/node/pull/46085)
    
  • [`3dcdab3f16`](https://github.com/nodejs/node/commit/3dcdab3f16)] - **events**: check signal before listener (Deokjin Kim) [#&#8203;46054](https://github.com/nodejs/node/pull/46054)
    
  • [`907d67de76`](https://github.com/nodejs/node/commit/907d67de76)] - **http**: refactor to use `validateHeaderName` (Deokjin Kim) [#&#8203;46143](https://github.com/nodejs/node/pull/46143)
    
  • [`ae5141cb8a`](https://github.com/nodejs/node/commit/ae5141cb8a)] - **http**: writeHead if statusmessage is undefined dont override headers (Marco Ippolito) [#&#8203;46173](https://github.com/nodejs/node/pull/46173)
    
  • [`6e7f9fbc1d`](https://github.com/nodejs/node/commit/6e7f9fbc1d)] - **http**: refactor to use min of validateNumber for maxTotalSockets (Deokjin Kim) [#&#8203;46115](https://github.com/nodejs/node/pull/46115)
    
  • [`069a30bc4e`](https://github.com/nodejs/node/commit/069a30bc4e)] - **(SEMVER-MINOR)** **http**: join authorization headers (Marco Ippolito) [#&#8203;45982](https://github.com/nodejs/node/pull/45982)
    
  • [`68cde4cbcc`](https://github.com/nodejs/node/commit/68cde4cbcc)] - **lib**: add webstreams to Duplex.from() (Debadree Chatterjee) [#&#8203;46190](https://github.com/nodejs/node/pull/46190)
    
  • [`4d73ea708b`](https://github.com/nodejs/node/commit/4d73ea708b)] - **lib**: use kEmptyObject and update JSDoc in webstreams (Deokjin Kim) [#&#8203;46183](https://github.com/nodejs/node/pull/46183)
    
  • [`1cfa2e6762`](https://github.com/nodejs/node/commit/1cfa2e6762)] - **lib**: refactor to use validate function (Deokjin Kim) [#&#8203;46101](https://github.com/nodejs/node/pull/46101)
    
  • [`2eb87f23c9`](https://github.com/nodejs/node/commit/2eb87f23c9)] - **lib**: reuse invalid state errors on webstreams (Rafael Gonzaga) [#&#8203;46086](https://github.com/nodejs/node/pull/46086)
    
  • [`8684dae8d9`](https://github.com/nodejs/node/commit/8684dae8d9)] - **lib**: fix incorrect use of console intrinsic (Colin Ihrig) [#&#8203;46044](https://github.com/nodejs/node/pull/46044)
    
  • [`d044ed1d3e`](https://github.com/nodejs/node/commit/d044ed1d3e)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46215](https://github.com/nodejs/node/pull/46215)
    
  • [`5261560757`](https://github.com/nodejs/node/commit/5261560757)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46130](https://github.com/nodejs/node/pull/46130)
    
  • [`1b557bbee8`](https://github.com/nodejs/node/commit/1b557bbee8)] - **meta**: update comment in `CODEOWNERS` to better reflect current policy (Antoine du Hamel) [#&#8203;45944](https://github.com/nodejs/node/pull/45944)
    
  • [`54896ab011`](https://github.com/nodejs/node/commit/54896ab011)] - **module**: fix unintended mutation (Antoine du Hamel) [#&#8203;46108](https://github.com/nodejs/node/pull/46108)
    
  • [`bd98e5baba`](https://github.com/nodejs/node/commit/bd98e5baba)] - **node-api**: disambiguate napi_add_finalizer (Chengzhong Wu) [#&#8203;45401](https://github.com/nodejs/node/pull/45401)
    
  • [`f0508894d6`](https://github.com/nodejs/node/commit/f0508894d6)] - **perf_hooks**: fix checking range of `options.figures` in createHistogram (Deokjin Kim) [#&#8203;45999](https://github.com/nodejs/node/pull/45999)
    
  • [`e482d5e42d`](https://github.com/nodejs/node/commit/e482d5e42d)] - **src**: fix endianness of simdutf (Yagiz Nizipli) [#&#8203;46257](https://github.com/nodejs/node/pull/46257)
    
  • [`e2c47cdfad`](https://github.com/nodejs/node/commit/e2c47cdfad)] - **src**: make BuiltinLoader threadsafe and non-global (Anna Henningsen) [#&#8203;45942](https://github.com/nodejs/node/pull/45942)
    
  • [`36ae3ccff3`](https://github.com/nodejs/node/commit/36ae3ccff3)] - **src**: replace unreachable code with static_assert (Tobias Nießen) [#&#8203;46209](https://github.com/nodejs/node/pull/46209)
    
  • [`9d55a1f9a1`](https://github.com/nodejs/node/commit/9d55a1f9a1)] - **src**: hide kMaxDigestMultiplier outside HKDF impl (Tobias Nießen) [#&#8203;46206](https://github.com/nodejs/node/pull/46206)
    
  • [`d3d62ed82c`](https://github.com/nodejs/node/commit/d3d62ed82c)] - **src**: distinguish env stopping flags (Chengzhong Wu) [#&#8203;45907](https://github.com/nodejs/node/pull/45907)
    
  • [`e85f76686c`](https://github.com/nodejs/node/commit/e85f76686c)] - **src**: remove return after abort (Shelley Vohr) [#&#8203;46172](https://github.com/nodejs/node/pull/46172)
    
  • [`7dc9a53b18`](https://github.com/nodejs/node/commit/7dc9a53b18)] - **src**: remove unnecessary semicolons (Shelley Vohr) [#&#8203;46171](https://github.com/nodejs/node/pull/46171)
    
  • [`28af831d5a`](https://github.com/nodejs/node/commit/28af831d5a)] - **src**: use simdutf for converting externalized builtins to UTF-16 (Anna Henningsen) [#&#8203;46119](https://github.com/nodejs/node/pull/46119)
    
  • [`e8eaa490af`](https://github.com/nodejs/node/commit/e8eaa490af)] - **src**: use constant strings for memory info names (Chengzhong Wu) [#&#8203;46087](https://github.com/nodejs/node/pull/46087)
    
  • [`f4559a1354`](https://github.com/nodejs/node/commit/f4559a1354)] - **src**: fix typo in node_snapshotable.cc (Vadim) [#&#8203;46103](https://github.com/nodejs/node/pull/46103)
    
  • [`ca8ff08a5c`](https://github.com/nodejs/node/commit/ca8ff08a5c)] - **src**: keep PipeWrap::Open function consistent with TCPWrap (theanarkh) [#&#8203;46064](https://github.com/nodejs/node/pull/46064)
    
  • [`a936eaeb34`](https://github.com/nodejs/node/commit/a936eaeb34)] - **src**: speed up process.getActiveResourcesInfo() (Darshan Sen) [#&#8203;46014](https://github.com/nodejs/node/pull/46014)
    
  • [`5cf595659f`](https://github.com/nodejs/node/commit/5cf595659f)] - **src,lib**: the handle keeps loop alive in cluster rr mode (theanarkh) [#&#8203;46161](https://github.com/nodejs/node/pull/46161)
    
  • [`18695595e1`](https://github.com/nodejs/node/commit/18695595e1)] - **stream**: fix pipeline calling end on destination more than once (Debadree Chatterjee) [#&#8203;46226](https://github.com/nodejs/node/pull/46226)
    
  • [`e5f53b51f0`](https://github.com/nodejs/node/commit/e5f53b51f0)] - **stream**: implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46205](https://github.com/nodejs/node/pull/46205)
    
  • [`2f23f17f93`](https://github.com/nodejs/node/commit/2f23f17f93)] - **test**: reduce `fs-write-optional-params` flakiness (LiviaMedeiros) [#&#8203;46238](https://github.com/nodejs/node/pull/46238)
    
  • [`255f177108`](https://github.com/nodejs/node/commit/255f177108)] - **test**: enable more case of bad buffer in `fs.write` (Deokjin Kim) [#&#8203;46236](https://github.com/nodejs/node/pull/46236)
    
  • [`c09b2036c7`](https://github.com/nodejs/node/commit/c09b2036c7)] - **test**: update postject to 1.0.0-alpha.4 (Node.js GitHub Bot) [#&#8203;46212](https://github.com/nodejs/node/pull/46212)
    
  • [`4ac5c7180f`](https://github.com/nodejs/node/commit/4ac5c7180f)] - **test**: refactor to avoid mutation of global by a loader (Michaël Zasso) [#&#8203;46220](https://github.com/nodejs/node/pull/46220)
    
  • [`bbf9da8e2c`](https://github.com/nodejs/node/commit/bbf9da8e2c)] - **test**: improve test coverage for WHATWG `TextDecoder` (Juan José) [#&#8203;45241](https://github.com/nodejs/node/pull/45241)
    
  • [`4f491d368c`](https://github.com/nodejs/node/commit/4f491d368c)] - **test**: add fix so that test exits if port 42 is unprivileged (Suyash Nayan) [#&#8203;45904](https://github.com/nodejs/node/pull/45904)
    
  • [`6e2f7228f3`](https://github.com/nodejs/node/commit/6e2f7228f3)] - **test**: use `os.availableParallelism()` (Deokjin Kim) [#&#8203;46003](https://github.com/nodejs/node/pull/46003)
    
  • [`c77b0da512`](https://github.com/nodejs/node/commit/c77b0da512)] - **test**: fix flaky test-runner-exit-code.js (Colin Ihrig) [#&#8203;46138](https://github.com/nodejs/node/pull/46138)
    
  • [`f309e2acb6`](https://github.com/nodejs/node/commit/f309e2acb6)] - **test**: update Web Events WPT (Deokjin Kim) [#&#8203;46051](https://github.com/nodejs/node/pull/46051)
    
  • [`0f60bc9bbc`](https://github.com/nodejs/node/commit/0f60bc9bbc)] - **test**: add test to once() in event lib (Jonathan Diaz) [#&#8203;46126](https://github.com/nodejs/node/pull/46126)
    
  • [`8a8b18678a`](https://github.com/nodejs/node/commit/8a8b18678a)] - **test,esm**: validate more edge cases for dynamic imports (Antoine du Hamel) [#&#8203;46059](https://github.com/nodejs/node/pull/46059)
    
  • [`4d3743938f`](https://github.com/nodejs/node/commit/4d3743938f)] - **test_runner**: update comment to comply with eslint no-fallthrough rule (Antoine du Hamel) [#&#8203;46258](https://github.com/nodejs/node/pull/46258)
    
  • [`653b108fdc`](https://github.com/nodejs/node/commit/653b108fdc)] - **tools**: update eslint to 8.32.0 (Node.js GitHub Bot) [#&#8203;46258](https://github.com/nodejs/node/pull/46258)
    
  • [`a4b0c916e0`](https://github.com/nodejs/node/commit/a4b0c916e0)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;46214](https://github.com/nodejs/node/pull/46214)
    
  • [`f4465e656d`](https://github.com/nodejs/node/commit/f4465e656d)] - **tools**: fix macro name in update-undici (Almeida) [#&#8203;46217](https://github.com/nodejs/node/pull/46217)
    
  • [`1aa4534c6f`](https://github.com/nodejs/node/commit/1aa4534c6f)] - **tools**: add automation for updating postject dependency (Darshan Sen) [#&#8203;46157](https://github.com/nodejs/node/pull/46157)
    
  • [`c150b312cd`](https://github.com/nodejs/node/commit/c150b312cd)] - **tools**: update create-or-update-pull-request-action (Michaël Zasso) [#&#8203;46169](https://github.com/nodejs/node/pull/46169)
    
  • [`c68a043400`](https://github.com/nodejs/node/commit/c68a043400)] - **tools**: update eslint to 8.31.0 (Node.js GitHub Bot) [#&#8203;46131](https://github.com/nodejs/node/pull/46131)
    
  • [`ac90e419d1`](https://github.com/nodejs/node/commit/ac90e419d1)] - **tools**: update lint-md-dependencies to rollup@3.9.1 (Node.js GitHub Bot) [#&#8203;46129](https://github.com/nodejs/node/pull/46129)
    
  • [`750fcf84eb`](https://github.com/nodejs/node/commit/750fcf84eb)] - **tools**: move update-eslint.sh to dep_updaters/ (Luigi Pinca) [#&#8203;46088](https://github.com/nodejs/node/pull/46088)
    
  • [`2e8750a18c`](https://github.com/nodejs/node/commit/2e8750a18c)] - **tools**: make update-eslint.sh work with npm@9 (Luigi Pinca) [#&#8203;46088](https://github.com/nodejs/node/pull/46088)
    
  • [`e90a3a6eff`](https://github.com/nodejs/node/commit/e90a3a6eff)] - **tools**: fix lint rule recommendation (Colin Ihrig) [#&#8203;46044](https://github.com/nodejs/node/pull/46044)
    
  • [`0985ef8bfb`](https://github.com/nodejs/node/commit/0985ef8bfb)] - **tools**: add `ArrayPrototypeConcat` to the list of primordials to avoid (Antoine du Hamel) [#&#8203;44445](https://github.com/nodejs/node/pull/44445)
    
  • [`ed69a3af92`](https://github.com/nodejs/node/commit/ed69a3af92)] - **tools**: add `prefer-proto` rule (Jordan Harband) [#&#8203;46083](https://github.com/nodejs/node/pull/46083)
    
  • [`4c1c20fae2`](https://github.com/nodejs/node/commit/4c1c20fae2)] - **trace_events**: refactor to use `validateStringArray` (Deokjin Kim) [#&#8203;46012](https://github.com/nodejs/node/pull/46012)
    
  • [`6c8a81d2dc`](https://github.com/nodejs/node/commit/6c8a81d2dc)] - **vm**: refactor to use validate function (Deokjin Kim) [#&#8203;46176](https://github.com/nodejs/node/pull/46176)
    
    

v19.4.0: 2023-01-06, Version 19.4.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
  • buffer:
    • (SEMVER-MINOR) add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) #​45947
  • http:
    • (SEMVER-MINOR) improved timeout defaults handling (Paolo Insogna) #​45778
  • net:
    • add autoSelectFamily global getter and setter (Paolo Insogna) #​45777
  • os:
    • (SEMVER-MINOR) add availableParallelism() (Colin Ihrig) #​45895
  • util:
    • add fast path for text-decoder fatal flag (Yagiz Nizipli) #​45803
Commits
  • [`54b748acc0`](https://github.com/nodejs/node/commit/54b748acc0)] - **async_hooks**: refactor to use `validateObject` (Deokjin Kim) [#&#8203;46004](https://github.com/nodejs/node/pull/46004)
    
  • [`cf2ff81f26`](https://github.com/nodejs/node/commit/cf2ff81f26)] - **benchmark**: include webstreams benchmark (Rafael Gonzaga) [#&#8203;45876](https://github.com/nodejs/node/pull/45876)
    
  • [`6e3d7f8c2d`](https://github.com/nodejs/node/commit/6e3d7f8c2d)] - **bootstrap**: optimize modules loaded in the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`d181b76374`](https://github.com/nodejs/node/commit/d181b76374)] - **bootstrap**: make CJS loader snapshotable (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`508e830765`](https://github.com/nodejs/node/commit/508e830765)] - **bootstrap**: include event_target into the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`dd77c05480`](https://github.com/nodejs/node/commit/dd77c05480)] - **bootstrap**: support module_wrap binding in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`fbe399c75c`](https://github.com/nodejs/node/commit/fbe399c75c)] - **(SEMVER-MINOR)** **buffer**: add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) [#&#8203;45947](https://github.com/nodejs/node/pull/45947)
    
  • [`233a66f937`](https://github.com/nodejs/node/commit/233a66f937)] - **build**: fix arm64 cross-compile from powershell (Stefan Stojanovic) [#&#8203;45890](https://github.com/nodejs/node/pull/45890)
    
  • [`e7b98a3da2`](https://github.com/nodejs/node/commit/e7b98a3da2)] - **build**: add option to disable shared readonly heap (Anna Henningsen) [#&#8203;45887](https://github.com/nodejs/node/pull/45887)
    
  • [`777c551edf`](https://github.com/nodejs/node/commit/777c551edf)] - **crypto**: ensure exported webcrypto EC keys use uncompressed point format (Ben Noordhuis) [#&#8203;46021](https://github.com/nodejs/node/pull/46021)
    
  • [`f7dba5bef7`](https://github.com/nodejs/node/commit/f7dba5bef7)] - **crypto**: fix globalThis.crypto this check (Filip Skokan) [#&#8203;45857](https://github.com/nodejs/node/pull/45857)
    
  • [`56f3ad101b`](https://github.com/nodejs/node/commit/56f3ad101b)] - **crypto**: fix CryptoKey prototype WPT (Filip Skokan) [#&#8203;45857](https://github.com/nodejs/node/pull/45857)
    
  • [`c9747f1140`](https://github.com/nodejs/node/commit/c9747f1140)] - **crypto**: use globalThis.crypto over require('crypto').webcrypto (Filip Skokan) [#&#8203;45817](https://github.com/nodejs/node/pull/45817)
    
  • [`6eede72241`](https://github.com/nodejs/node/commit/6eede72241)] - **crypto**: fix CryptoKey WebIDL conformance (Filip Skokan) [#&#8203;45855](https://github.com/nodejs/node/pull/45855)
    
  • [`c9802862b7`](https://github.com/nodejs/node/commit/c9802862b7)] - **crypto**: fix error when getRandomValues is called without arguments (Filip Skokan) [#&#8203;45854](https://github.com/nodejs/node/pull/45854)
    
  • [`3d09754186`](https://github.com/nodejs/node/commit/3d09754186)] - **debugger**: refactor console in lib/internal/debugger/inspect.js (Debadree Chatterjee) [#&#8203;45847](https://github.com/nodejs/node/pull/45847)
    
  • [`fdda2ff53b`](https://github.com/nodejs/node/commit/fdda2ff53b)] - **deps**: V8: cherry-pick [`30861a3`](https://github.com/nodejs/node/commit/30861a39323d) (Aaron Friel) [#&#8203;45851](https://github.com/nodejs/node/pull/45851)
    
  • [`71bf513062`](https://github.com/nodejs/node/commit/71bf513062)] - **deps**: patch V8 to 10.8.168.25 (Michaël Zasso) [#&#8203;45996](https://github.com/nodejs/node/pull/45996)
    
  • [`0552b13232`](https://github.com/nodejs/node/commit/0552b13232)] - **deps**: update simdutf to 2.0.9 (Node.js GitHub Bot) [#&#8203;45975](https://github.com/nodejs/node/pull/45975)
    
  • [`e73be1b3b9`](https://github.com/nodejs/node/commit/e73be1b3b9)] - **deps**: update to uvwasi 0.0.14 (Colin Ihrig) [#&#8203;45970](https://github.com/nodejs/node/pull/45970)
    
  • [`e4323f01c1`](https://github.com/nodejs/node/commit/e4323f01c1)] - **deps**: fix updater github workflow job (Yagiz Nizipli) [#&#8203;45972](https://github.com/nodejs/node/pull/45972)
    
  • [`05fee67238`](https://github.com/nodejs/node/commit/05fee67238)] - ***Revert*** "**deps**: disable avx512 for simutf on benchmark ci" (Yagiz Nizipli) [#&#8203;45948](https://github.com/nodejs/node/pull/45948)
    
  • [`98fc94a444`](https://github.com/nodejs/node/commit/98fc94a444)] - **deps**: disable avx512 for simutf on benchmark ci (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803)
    
  • [`344c5ec0ea`](https://github.com/nodejs/node/commit/344c5ec0ea)] - **deps**: add simdutf dependency (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803)
    
  • [`7bdad948c8`](https://github.com/nodejs/node/commit/7bdad948c8)] - **deps**: V8: backport [`8ca9f77`](https://github.com/nodejs/node/commit/8ca9f77d0f7c) (Anna Henningsen) [#&#8203;45871](https://github.com/nodejs/node/pull/45871)
    
  • [`29f90cf5af`](https://github.com/nodejs/node/commit/29f90cf5af)] - **deps**: update timezone to 2022g (Node.js GitHub Bot) [#&#8203;45731](https://github.com/nodejs/node/pull/45731)
    
  • [`99fec0bf64`](https://github.com/nodejs/node/commit/99fec0bf64)] - **deps**: update undici to 5.14.0 (Node.js GitHub Bot) [#&#8203;45812](https://github.com/nodejs/node/pull/45812)
    
  • [`faee973fa7`](https://github.com/nodejs/node/commit/faee973fa7)] - **deps**: V8: cherry-pick [`bc831f8`](https://github.com/nodejs/node/commit/bc831f8ba33b) (Yagiz Nizipli) [#&#8203;45788](https://github.com/nodejs/node/pull/45788)
    
  • [`e2944109c6`](https://github.com/nodejs/node/commit/e2944109c6)] - **deps**: V8: cherry-pick [`bf0bd48`](https://github.com/nodejs/node/commit/bf0bd4868dde) (Michaël Zasso) [#&#8203;45908](https://github.com/nodejs/node/pull/45908)
    
  • [`e113d169ee`](https://github.com/nodejs/node/commit/e113d169ee)] - **doc**: update isUtf8 description (Yagiz Nizipli) [#&#8203;45973](https://github.com/nodejs/node/pull/45973)
    
  • [`9e16406066`](https://github.com/nodejs/node/commit/9e16406066)] - **doc**: sort http.createServer() options alphabetically (Luigi Pinca) [#&#8203;45680](https://github.com/nodejs/node/pull/45680)
    
  • [`49253e1a8f`](https://github.com/nodejs/node/commit/49253e1a8f)] - **doc**: use console.error for error case in timers and tls (Deokjin Kim) [#&#8203;46002](https://github.com/nodejs/node/pull/46002)
    
  • [`8be1b666a7`](https://github.com/nodejs/node/commit/8be1b666a7)] - **doc**: fix wrong output of example in `url.protocol` (Deokjin Kim) [#&#8203;45954](https://github.com/nodejs/node/pull/45954)
    
  • [`9251dce8b2`](https://github.com/nodejs/node/commit/9251dce8b2)] - **doc**: use `os.availableParallelism()` in async_context and cluster (Deokjin Kim) [#&#8203;45979](https://github.com/nodejs/node/pull/45979)
    
  • [`952e03ae66`](https://github.com/nodejs/node/commit/952e03ae66)] - **doc**: make EventEmitterAsyncResource's `options` as optional (Deokjin Kim) [#&#8203;45985](https://github.com/nodejs/node/pull/45985)
    
  • [`71cc3b3712`](https://github.com/nodejs/node/commit/71cc3b3712)] - **doc**: replace single executable champion in strategic initiatives doc (Darshan Sen) [#&#8203;45956](https://github.com/nodejs/node/pull/45956)
    
  • [`eaf6b63637`](https://github.com/nodejs/node/commit/eaf6b63637)] - **doc**: update error message of example in repl (Deokjin Kim) [#&#8203;45920](https://github.com/nodejs/node/pull/45920)
    
  • [`d8b5b7da75`](https://github.com/nodejs/node/commit/d8b5b7da75)] - **doc**: fix typos in packages.md (Eric Mutta) [#&#8203;45957](https://github.com/nodejs/node/pull/45957)
    
  • [`4457e051c9`](https://github.com/nodejs/node/commit/4457e051c9)] - **doc**: remove port from example in `url.hostname` (Deokjin Kim) [#&#8203;45927](https://github.com/nodejs/node/pull/45927)
    
  • [`908f4fab52`](https://github.com/nodejs/node/commit/908f4fab52)] - **doc**: show output of example in http (Deokjin Kim) [#&#8203;45915](https://github.com/nodejs/node/pull/45915)
    
  • [`faf5c23084`](https://github.com/nodejs/node/commit/faf5c23084)] - **(SEMVER-MINOR)** **doc**: add parallelism note to os.cpus() (Colin Ihrig) [#&#8203;45895](https://github.com/nodejs/node/pull/45895)
    
  • [`9ed547b73c`](https://github.com/nodejs/node/commit/9ed547b73c)] - **doc**: fix wrong output of example in `url.password` (Deokjin Kim) [#&#8203;45928](https://github.com/nodejs/node/pull/45928)
    
  • [`a89f8c1337`](https://github.com/nodejs/node/commit/a89f8c1337)] - **doc**: fix some history entries in `deprecations.md` (Antoine du Hamel) [#&#8203;45891](https://github.com/nodejs/node/pull/45891)
    
  • [`cf30fca23f`](https://github.com/nodejs/node/commit/cf30fca23f)] - **doc**: add tip for NODE_MODULE (theanarkh) [#&#8203;45797](https://github.com/nodejs/node/pull/45797)
    
  • [`d500445aec`](https://github.com/nodejs/node/commit/d500445aec)] - **doc**: reduce likelihood of mismerges during release (Richard Lau) [#&#8203;45864](https://github.com/nodejs/node/pull/45864)
    
  • [`e229f060e3`](https://github.com/nodejs/node/commit/e229f060e3)] - **doc**: add backticks to webcrypto rsaOaepParams (Filip Skokan) [#&#8203;45883](https://github.com/nodejs/node/pull/45883)
    
  • [`dfa58c1947`](https://github.com/nodejs/node/commit/dfa58c1947)] - **doc**: remove release cleanup step (Michaël Zasso) [#&#8203;45858](https://github.com/nodejs/node/pull/45858)
    
  • [`b93a9670a8`](https://github.com/nodejs/node/commit/b93a9670a8)] - **doc**: add stream/promises pipeline and finished to doc (Marco Ippolito) [#&#8203;45832](https://github.com/nodejs/node/pull/45832)
    
  • [`c86f4a17d6`](https://github.com/nodejs/node/commit/c86f4a17d6)] - **doc**: remove Juan Jose keys (Rafael Gonzaga) [#&#8203;45827](https://github.com/nodejs/node/pull/45827)
    
  • [`c37a119f90`](https://github.com/nodejs/node/commit/c37a119f90)] - **doc**: remove last example use of require('crypto').webcrypto (Filip Skokan) [#&#8203;45819](https://github.com/nodejs/node/pull/45819)
    
  • [`7e047dfcbb`](https://github.com/nodejs/node/commit/7e047dfcbb)] - **doc**: fix wrong output of example in util (Deokjin Kim) [#&#8203;45825](https://github.com/nodejs/node/pull/45825)
    
  • [`8046e0ef53`](https://github.com/nodejs/node/commit/8046e0ef53)] - **errors**: refactor to use a method that formats a list string (Daeyeon Jeong) [#&#8203;45793](https://github.com/nodejs/node/pull/45793)
    
  • [`2d49e0e635`](https://github.com/nodejs/node/commit/2d49e0e635)] - **esm**: rewrite loader hooks test (Geoffrey Booth) [#&#8203;46016](https://github.com/nodejs/node/pull/46016)
    
  • [`47cc0e4bdb`](https://github.com/nodejs/node/commit/47cc0e4bdb)] - **events**: fix violation of symbol naming convention (Deokjin Kim) [#&#8203;45978](https://github.com/nodejs/node/pull/45978)
    
  • [`22a66cff66`](https://github.com/nodejs/node/commit/22a66cff66)] - **fs**: refactor to use `validateInteger` (Deokjin Kim) [#&#8203;46008](https://github.com/nodejs/node/pull/46008)
    
  • [`bc43922949`](https://github.com/nodejs/node/commit/bc43922949)] - **http**: replace `var` with `const` on code of comment (Deokjin Kim) [#&#8203;45951](https://github.com/nodejs/node/pull/45951)
    
  • [`7ea72ee421`](https://github.com/nodejs/node/commit/7ea72ee421)] - **(SEMVER-MINOR)** **http**: improved timeout defaults handling (Paolo Insogna) [#&#8203;45778](https://github.com/nodejs/node/pull/45778)
    
  • [`7f1daedf4c`](https://github.com/nodejs/node/commit/7f1daedf4c)] - **lib**: update JSDoc of `getOwnPropertyValueOrDefault` (Deokjin Kim) [#&#8203;46010](https://github.com/nodejs/node/pull/46010)
    
  • [`28f9089b83`](https://github.com/nodejs/node/commit/28f9089b83)] - **lib**: use `kEmptyObject` as default value for options (Deokjin Kim) [#&#8203;46011](https://github.com/nodejs/node/pull/46011)
    
  • [`f6c6673ec4`](https://github.com/nodejs/node/commit/f6c6673ec4)] - **lib**: lazy-load deps in modules/run_main.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`e529ea4144`](https://github.com/nodejs/node/commit/e529ea4144)] - **lib**: lazy-load deps in source_map_cache.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`943852ab83`](https://github.com/nodejs/node/commit/943852ab83)] - **lib**: add getLazy() method to internal/util (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`25d0a94453`](https://github.com/nodejs/node/commit/25d0a94453)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46040](https://github.com/nodejs/node/pull/46040)
    
  • [`0a70316ecc`](https://github.com/nodejs/node/commit/0a70316ecc)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45968](https://github.com/nodejs/node/pull/45968)
    
  • [`86e30fcb4d`](https://github.com/nodejs/node/commit/86e30fcb4d)] - **meta**: add `nodejs/loaders` to CODEOWNERS (Geoffrey Booth) [#&#8203;45940](https://github.com/nodejs/node/pull/45940)
    
  • [`e95695654d`](https://github.com/nodejs/node/commit/e95695654d)] - **meta**: add `nodejs/test_runner` to CODEOWNERS (Antoine du Hamel) [#&#8203;45935](https://github.com/nodejs/node/pull/45935)
    
  • [`353dab5bdf`](https://github.com/nodejs/node/commit/353dab5bdf)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45899](https://github.com/nodejs/node/pull/45899)
    
  • [`0b3512f690`](https://github.com/nodejs/node/commit/0b3512f690)] - **modules**: move callbacks and conditions into modules/esm/utils.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`c6ab449d1b`](https://github.com/nodejs/node/commit/c6ab449d1b)] - **modules**: move modules/cjs/helpers.js to modules/helpers.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`4d62b099b4`](https://github.com/nodejs/node/commit/4d62b099b4)] - **net**: handle socket.write(cb) edge case (Santiago Gimeno) [#&#8203;45922](https://github.com/nodejs/node/pull/45922)
    
  • [`8e6b8dbb41`](https://github.com/nodejs/node/commit/8e6b8dbb41)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777)
    
  • [`f3bb6a38ae`](https://github.com/nodejs/node/commit/f3bb6a38ae)] - **node-api**: generalize finalizer second pass callback (Chengzhong Wu) [#&#8203;44141](https://github.com/nodejs/node/pull/44141)
    
  • [`d71883e271`](https://github.com/nodejs/node/commit/d71883e271)] - **(SEMVER-MINOR)** **os**: add availableParallelism() (Colin Ihrig) [#&#8203;45895](https://github.com/nodejs/node/pull/45895)
    
  • [`4c0850539a`](https://github.com/nodejs/node/commit/4c0850539a)] - **process,worker**: ensure code after exit() effectless (ywave620) [#&#8203;45620](https://github.com/nodejs/node/pull/45620)
    
  • [`24cae6b4a3`](https://github.com/nodejs/node/commit/24cae6b4a3)] - **repl**: improve robustness wrt to prototype pollution (Antoine du Hamel) [#&#8203;45604](https://github.com/nodejs/node/pull/45604)
    
  • [`af25c95b22`](https://github.com/nodejs/node/commit/af25c95b22)] - **src**: fix typo in `node_file.cc` (Vadim) [#&#8203;45998](https://github.com/nodejs/node/pull/45998)
    
  • [`261d6d0726`](https://github.com/nodejs/node/commit/261d6d0726)] - **src**: fix crash on OnStreamRead on Windows (Santiago Gimeno) [#&#8203;45878](https://github.com/nodejs/node/pull/45878)
    
  • [`6c5b7e660b`](https://github.com/nodejs/node/commit/6c5b7e660b)] - **src**: add worker per-isolate binding initialization (Chengzhong Wu) [#&#8203;45547](https://github.com/nodejs/node/pull/45547)
    
  • [`db535b6caa`](https://github.com/nodejs/node/commit/db535b6caa)] - **src**: define per-isolate internal bindings registration callback (Chengzhong Wu) [#&#8203;45547](https://github.com/nodejs/node/pull/45547)
    
  • [`ded87f6dc4`](https://github.com/nodejs/node/commit/ded87f6dc4)] - **src**: fix creating `Isolate`s from addons (Anna Henningsen) [#&#8203;45885](https://github.com/nodejs/node/pull/45885)
    
  • [`c2ed0ccb28`](https://github.com/nodejs/node/commit/c2ed0ccb28)] - **src**: use string_view for FastStringKey implementation (Anna Henningsen) [#&#8203;45914](https://github.com/nodejs/node/pull/45914)
    
  • [`b995138b96`](https://github.com/nodejs/node/commit/b995138b96)] - **src**: use CreateEnvironment instead of inlining its code where possible (Anna Henningsen) [#&#8203;45886](https://github.com/nodejs/node/pull/45886)
    
  • [`4454f5fd71`](https://github.com/nodejs/node/commit/4454f5fd71)] - **src**: fix UB in overflow checks (Ben Noordhuis) [#&#8203;45882](https://github.com/nodejs/node/pull/45882)
    
  • [`27d3201502`](https://github.com/nodejs/node/commit/27d3201502)] - **src**: check size of args before using for exec_path (A. Wilcox) [#&#8203;45902](https://github.com/nodejs/node/pull/45902)
    
  • [`2f898f2983`](https://github.com/nodejs/node/commit/2f898f2983)] - **src**: fix tls certificate root store data race (Ben Noordhuis) [#&#8203;45767](https://github.com/nodejs/node/pull/45767)
    
  • [`eff92a61b9`](https://github.com/nodejs/node/commit/eff92a61b9)] - **src**: add undici and acorn to `process.versions` (Debadree Chatterjee) [#&#8203;45621](https://github.com/nodejs/node/pull/45621)
    
  • [`ab22a8ff4b`](https://github.com/nodejs/node/commit/ab22a8ff4b)] - **stream**: refactor to use `validateFunction` (Deokjin Kim) [#&#8203;46007](https://github.com/nodejs/node/pull/46007)
    
  • [`0858956f5f`](https://github.com/nodejs/node/commit/0858956f5f)] - **stream**: fix typo in JSDoc (Deokjin Kim) [#&#8203;45991](https://github.com/nodejs/node/pull/45991)
    
  • [`2807efaea6`](https://github.com/nodejs/node/commit/2807efaea6)] - **test**: use `process.hrtime.bigint` instead of `process.hrtime` (Deokjin Kim) [#&#8203;45877](https://github.com/nodejs/node/pull/45877)
    
  • [`0f5a145973`](https://github.com/nodejs/node/commit/0f5a145973)] - **test**: print failed JS/parallel tests (Geoffrey Booth) [#&#8203;45960](https://github.com/nodejs/node/pull/45960)
    
  • [`c6c094702b`](https://github.com/nodejs/node/commit/c6c094702b)] - **test**: split parallel fs-watch-recursive tests (Yagiz Nizipli) [#&#8203;45865](https://github.com/nodejs/node/pull/45865)
    
  • [`97a8e055be`](https://github.com/nodejs/node/commit/97a8e055be)] - **test**: add all WebCryptoAPI globals to WPTRunner's loadLazyGlobals (Filip Skokan) [#&#8203;45857](https://github.com/nodejs/node/pull/45857)
    
  • [`95ce16d8d9`](https://github.com/nodejs/node/commit/95ce16d8d9)] - **test**: fix test broken under --node-builtin-modules-path (Geoffrey Booth) [#&#8203;45894](https://github.com/nodejs/node/pull/45894)
    
  • [`97868befe7`](https://github.com/nodejs/node/commit/97868befe7)] - **test**: fix mock.method to support class instances (Erick Wendel) [#&#8203;45608](https://github.com/nodejs/node/pull/45608)
    
  • [`71056daf76`](https://github.com/nodejs/node/commit/71056daf76)] - **test**: update encoding wpt to latest (Yagiz Nizipli) [#&#8203;45850](https://github.com/nodejs/node/pull/45850)
    
  • [`10367c4cae`](https://github.com/nodejs/node/commit/10367c4cae)] - **test**: update url wpt to latest (Yagiz Nizipli) [#&#8203;45852](https://github.com/nodejs/node/pull/45852)
    
  • [`53f02cf631`](https://github.com/nodejs/node/commit/53f02cf631)] - **test**: add CryptoKey transferring tests (Filip Skokan) [#&#8203;45811](https://github.com/nodejs/node/pull/45811)
    
  • [`5de08ef275`](https://github.com/nodejs/node/commit/5de08ef275)] - **test**: add postject to fixtures (Darshan Sen) [#&#8203;45298](https://github.com/nodejs/node/pull/45298)
    
  • [`fea122d51e`](https://github.com/nodejs/node/commit/fea122d51e)] - **test**: enable idlharness WebCryptoAPI WPTs (Filip Skokan) [#&#8203;45822](https://github.com/nodejs/node/pull/45822)
    
  • [`3c2ce5635e`](https://github.com/nodejs/node/commit/3c2ce5635e)] - **test**: remove use of --experimental-global-webcrypto flag (Filip Skokan) [#&#8203;45816](https://github.com/nodejs/node/pull/45816)
    
  • [`b5e124537e`](https://github.com/nodejs/node/commit/b5e124537e)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;45860](https://github.com/nodejs/node/pull/45860)
    
  • [`7ae24abd7b`](https://github.com/nodejs/node/commit/7ae24abd7b)] - **test_runner**: use os.availableParallelism() (Colin Ihrig) [#&#8203;45969](https://github.com/nodejs/node/pull/45969)
    
  • [`c5004d42af`](https://github.com/nodejs/node/commit/c5004d42af)] - **test_runner**: run t.after() if test body throws (Colin Ihrig) [#&#8203;45870](https://github.com/nodejs/node/pull/45870)
    
  • [`bdbb676bee`](https://github.com/nodejs/node/commit/bdbb676bee)] - **test_runner**: parse yaml (Moshe Atlow) [#&#8203;45815](https://github.com/nodejs/node/pull/45815)
    
  • [`ca9b9b9ce6`](https://github.com/nodejs/node/commit/ca9b9b9ce6)] - **tls**: don't treat fatal TLS alerts as EOF (David Benjamin) [#&#8203;44563](https://github.com/nodejs/node/pull/44563)
    
  • [`d08a574ecf`](https://github.com/nodejs/node/commit/d08a574ecf)] - **tls**: fix re-entrancy issue with TLS close_notify (David Benjamin) [#&#8203;44563](https://github.com/nodejs/node/pull/44563)
    
  • [`0f0d22a63e`](https://github.com/nodejs/node/commit/0f0d22a63e)] - **tools**: update lint-md-dependencies to rollup@3.9.0 (Node.js GitHub Bot) [#&#8203;46039](https://github.com/nodejs/node/pull/46039)
    
  • [`5a8d125fc4`](https://github.com/nodejs/node/commit/5a8d125fc4)] - **tools**: update doc to unist-util-select@4.0.2 (Node.js GitHub Bot) [#&#8203;46038](https://github.com/nodejs/node/pull/46038)
    
  • [`54776ffe80`](https://github.com/nodejs/node/commit/54776ffe80)] - **tools**: add release host var to promotion script (Ruy Adorno) [#&#8203;45913](https://github.com/nodejs/node/pull/45913)
    
  • [`f968fdb78a`](https://github.com/nodejs/node/commit/f968fdb78a)] - **tools**: add url to `AUTHORS` update automation (Antoine du Hamel) [#&#8203;45971](https://github.com/nodejs/node/pull/45971)
    
  • [`7c518cbac1`](https://github.com/nodejs/node/commit/7c518cbac1)] - **tools**: update lint-md-dependencies to rollup@3.8.1 (Node.js GitHub Bot) [#&#8203;45967](https://github.com/nodejs/node/pull/45967)
    
  • [`1282f7f656`](https://github.com/nodejs/node/commit/1282f7f656)] - **tools**: update GitHub workflow action (Mohammed Keyvanzadeh) [#&#8203;45937](https://github.com/nodejs/node/pull/45937)
    
  • [`f446af78e9`](https://github.com/nodejs/node/commit/f446af78e9)] - **tools**: update lint-md dependencies (Node.js GitHub Bot) [#&#8203;45813](https://github.com/nodejs/node/pull/45813)
    
  • [`794611ade9`](https://github.com/nodejs/node/commit/794611ade9)] - **tools**: enforce use of trailing commas in `tools/` (Antoine du Hamel) [#&#8203;45889](https://github.com/nodejs/node/pull/45889)
    
  • [`124c2b32d9`](https://github.com/nodejs/node/commit/124c2b32d9)] - **tools**: fix incorrect version history order (Fabien Michel) [#&#8203;45728](https://github.com/nodejs/node/pull/45728)
    
  • [`27cf389c22`](https://github.com/nodejs/node/commit/27cf389c22)] - **tools**: update eslint to 8.29.0 (Node.js GitHub Bot) [#&#8203;45733](https://github.com/nodejs/node/pull/45733)
    
  • [`ae842a40b5`](https://github.com/nodejs/node/commit/ae842a40b5)] - **util**: add fast path for text-decoder fatal flag (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803)
    
  • [`389cc3e1d6`](https://github.com/nodejs/node/commit/389cc3e1d6)] - **vm**: refactor to use `validateStringArray` (Deokjin Kim) [#&#8203;46020](https://github.com/nodejs/node/pull/46020)
    
  • [`7bd6a2c258`](https://github.com/nodejs/node/commit/7bd6a2c258)] - **wasi**: fast calls (snek) [#&#8203;43697](https://github.com/nodejs/node/pull/43697)
    
    

v19.3.0: 2022-12-14, Version 19.3.0 (Current), @​targos

Compare Source

Notable Changes
Updated npm to 9.2.0

Based on the list of guidelines we've established on integrating npm and node,
here is a grouped list of the breaking changes with the reasoning as to why they
fit within the guidelines linked above. Note that all the breaking changes were
made in 9.0.0.
All subsequent minor and patch releases after npm@9.0.0 do not contain any
breaking changes.

Engines

Explanation: the node engines supported by npm@9 make it safe to allow npm@9 as the default in any LTS version of 14 or 16, as well as anything later than or including 18.0.0

  • npm is now compatible with the following semver range for node: ^14.17.0 || ^16.13.0 || >=18.0.0
Filesystem

Explanation: when run as root previous versions of npm attempted to manage file ownership automatically on the user's behalf. this behavior was problematic in many cases and has been removed in favor of allowing users to manage their own filesystem permissions

  • npm will no longer attempt to modify ownership of files it creates.
Auth

Explanation: any errors thrown from users having unsupported auth configurations will show npm config fix in the remediation instructions, which will allow the user to automatically have their auth config fixed.

  • The presence of auth related settings that are not scoped to a specific
    registry found in a config file is no longer supported and will throw errors.
Login

Explanation: the default auth-type has changed and users can opt back into the old behavior with npm config set auth-type=legacy. login and adduser have also been seperated making each command more closely match it's name instead of being aliases for each other.

  • Legacy auth types sso, saml & legacy have been consolidated into "legacy".
  • auth-type defaults to "web"
  • login and adduser are now separate commands that send different data to the registry.
  • auth-type config values web and legacy only try their respective methods,
    npm no longer tries them all and waits to see which one doesn't fail.
Tarball Packing

Explanation: previously using multiple ignore/allow lists when packing was an undefined behavior, and now the order of operations is strictly defined when packing a tarball making it easier to follow and should only affect users relying on the previously undefined behavior.

  • npm pack now follows a strict order of operations when applying ignore rules.
    If a files array is present in the package.json, then rules in .gitignore
    and .npmignore files from the root will be ignored.
Display/Debug/Timing Info

Explanation: these changes center around the display of information to the terminal including timing and debug log info. We do not anticipate these changes breaking any existing workflows.

  • Links generated from git urls will now use HEAD instead of master as the default ref.
  • timing has been removed as a value for --loglevel.
  • --timing will show timing information regardless of --loglevel, except when --silent.
  • When run with the --timing flag, npm now writes timing data to a file
    alongside the debug log data, respecting the logs-dir option and falling
    back to <CACHE>/_logs/ dir, instead of directly inside the cache directory.
  • The timing file data is no longer newline delimited JSON, and instead each run
    will create a uniquely named <ID>-timing.json file, with the <ID> portion
    being the same as the debug log.
  • npm now outputs some json errors on stdout. Previously npm would output
    all json formatted errors on stderr, making it difficult to parse as the
    stderr stream usually has logs already written to it.
Config/Command Deprecations or Removals

Explanation: install-links is the only config or command in the list that has an effect on package installs. We fixed a number of issues that came up during prereleases with this change. It will also only be applied to new package trees created without a package-lock.json file. Any install with an existing lock file will not be changed.

  • Deprecate boolean install flags in favor of --install-strategy.
  • npm config set will no longer accept deprecated or invalid config options.
  • install-links config defaults to "true".
  • node-version config has been removed.
  • npm-version config has been removed.
  • npm access subcommands have been renamed.
  • npm birthday has been removed.
  • npm set-script has been removed.
  • npm bin has been removed (use npx or npm exec to execute binaries).
Other notable changes
  • [`03db415540`](https://github.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#&#8203;45716](https://github.com/nodejs/node/pull/45716)
    
  • [`9f51b9e50d`](https://github.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#&#8203;45697](https://github.com/nodejs/node/pull/45697)
    
  • [`b010820c4e`](https://github.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael Gonzaga to the TSC (Michael Dawson) [#&#8203;45691](https://github.com/nodejs/node/pull/45691)
    
  • [`b8b13dccd9`](https://github.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#&#8203;44731](https://github.com/nodejs/node/pull/44731)
    
  • [`5d7cd363ab`](https://github.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#&#8203;45639](https://github.com/nodejs/node/pull/45639)
    
  • [`4165dcddf0`](https://github.com/nodejs/node/commit/95af851a25)] - **(SEMVER-MINOR)** **test_runner**: add t.after() hook (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792)
    
  • [`d1bd7796ad`](https://github.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test_runner**: don't use a symbol for runHook() (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792)
    
  • [`691f58e76c`](https://github.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#&#8203;45776](https://github.com/nodejs/node/pull/45776)
    
    
Commits
  • [`382efdf460`](https://github.com/nodejs/node/commit/382efdf460)] - **benchmark**: add variety of inputs to text-encoder (Yagiz Nizipli) [#&#8203;45787](https://github.com/nodejs/node/pull/45787)
    
  • [`102c2dc071`](https://github.com/nodejs/node/commit/102c2dc071)] - **benchmark**: make benchmarks runnable in older versions of Node.js (Joyee Cheung) [#&#8203;45746](https://github.com/nodejs/node/pull/45746)
    
  • [`e2caf7ced9`](https://github.com/nodejs/node/commit/e2caf7ced9)] - **bootstrap**: lazy load non-essential modules (Joyee Cheung) [#&#8203;45659](https://github.com/nodejs/node/pull/45659)
    
  • [`49840d443c`](https://github.com/nodejs/node/commit/49840d443c)] - **buffer**: remove unnecessary lazy loading (Antoine du Hamel) [#&#8203;45807](https://github.com/nodejs/node/pull/45807)
    
  • [`17847683dc`](https://github.com/nodejs/node/commit/17847683dc)] - **buffer**: make decodeUTF8 params loose (Yagiz Nizipli) [#&#8203;45610](https://github.com/nodejs/node/pull/45610)
    
  • [`03db415540`](https://github.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#&#8203;45716](https://github.com/nodejs/node/pull/45716)
    
  • [`95a23e24f3`](https://github.com/nodejs/node/commit/95a23e24f3)] - **build**: add python 3.11 support for android (Mohammed Keyvanzadeh) [#&#8203;45765](https://github.com/nodejs/node/pull/45765)
    
  • [`09bc89daba`](https://github.com/nodejs/node/commit/09bc89daba)] - **build**: rework gyp files for zlib (Richard Lau) [#&#8203;45589](https://github.com/nodejs/node/pull/45589)
    
  • [`b5b56b6b45`](https://github.com/nodejs/node/commit/b5b56b6b45)] - **crypto**: simplify lazy loading of internal modules (Antoine du Hamel) [#&#8203;45809](https://github.com/nodejs/node/pull/45809)
    
  • [`2e4d37e3f0`](https://github.com/nodejs/node/commit/2e4d37e3f0)] - **crypto**: fix CipherBase Update int32 overflow (Marco Ippolito) [#&#8203;45769](https://github.com/nodejs/node/pull/45769)
    
  • [`573eab9235`](https://github.com/nodejs/node/commit/573eab9235)] - **crypto**: refactor ArrayBuffer to bigint conversion utils (Antoine du Hamel) [#&#8203;45567](https://github.com/nodejs/node/pull/45567)
    
  • [`845f805490`](https://github.com/nodejs/node/commit/845f805490)] - **crypto**: refactor verify acceptable key usage functions (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`7cc9998737`](https://github.com/nodejs/node/commit/7cc9998737)] - **crypto**: fix ECDH webcrypto public CryptoKey usages (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`d030963f37`](https://github.com/nodejs/node/commit/d030963f37)] - **crypto**: validate CFRG webcrypto JWK import "d" and "x" are a pair (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`9cd106efdc`](https://github.com/nodejs/node/commit/9cd106efdc)] - **crypto**: use DataError for CFRG webcrypto raw and jwk import key checks (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`9e2e3de6ce`](https://github.com/nodejs/node/commit/9e2e3de6ce)] - **crypto**: use DataError for webcrypto keyData import failures (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`40037b4e79`](https://github.com/nodejs/node/commit/40037b4e79)] - **crypto**: fix X25519 and X448 webcrypto public CryptoKey usages (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`de2b6b97b9`](https://github.com/nodejs/node/commit/de2b6b97b9)] - **crypto**: ensure "x" is present when importing private CFRG webcrypto keys (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`75dbce9a07`](https://github.com/nodejs/node/commit/75dbce9a07)] - **deps**: upgrade npm to 9.2.0 (npm team) [#&#8203;45780](https://github.com/nodejs/node/pull/45780)
    
  • [`677eb62bf2`](https://github.com/nodejs/node/commit/677eb62bf2)] - **deps**: upgrade npm to 9.1.3 (npm team) [#&#8203;45693](https://github.com/nodejs/node/pull/45693)
    
  • [`1d823a6d30`](https://github.com/nodejs/node/commit/1d823a6d30)] - ***Revert*** "**deps**: fix zlib compilation for CPUs without SIMD features" (Luigi Pinca) [#&#8203;45589](https://github.com/nodejs/node/pull/45589)
    
  • [`6b15994597`](https://github.com/nodejs/node/commit/6b15994597)] - **deps**: update undici to 5.13.0 (Node.js GitHub Bot) [#&#8203;45634](https://github.com/nodejs/node/pull/45634)
    
  • [`fbd2d27789`](https://github.com/nodejs/node/commit/fbd2d27789)] - **deps**: update corepack to 0.15.2 (Node.js GitHub Bot) [#&#8203;45635](https://github.com/nodejs/node/pull/45635)
    
  • [`60c9ac5178`](https://github.com/nodejs/node/commit/60c9ac5178)] - **deps**: update nghttp2 to 1.51.0 (Yagiz Nizipli) [#&#8203;45537](https://github.com/nodejs/node/pull/45537)
    
  • [`c8421204b0`](https://github.com/nodejs/node/commit/c8421204b0)] - **deps**: patch V8 to 10.8.168.21 (Michaël Zasso) [#&#8203;45749](https://github.com/nodejs/node/pull/45749)
    
  • [`c5277417c9`](https://github.com/nodejs/node/commit/c5277417c9)] - **diagnostics_channel**: fix diagnostics channel memory leak (theanarkh) [#&#8203;45633](https://github.com/nodejs/node/pull/45633)
    
  • [`8a90f5c784`](https://github.com/nodejs/node/commit/8a90f5c784)] - **doc**: buffer.fill empty value (Marco Ippolito) [#&#8203;45794](https://github.com/nodejs/node/pull/45794)
    
  • [`9d6af617ea`](https://github.com/nodejs/node/commit/9d6af617ea)] - **doc**: add args of filter option of fs.cp (MURAKAMI Masahiko) [#&#8203;45739](https://github.com/nodejs/node/pull/45739)
    
  • [`8c728d2f02`](https://github.com/nodejs/node/commit/8c728d2f02)] - **doc**: disambiguate `native module` to `addon` (Daeyeon Jeong) [#&#8203;45673](https://github.com/nodejs/node/pull/45673)
    
  • [`7718ff82a4`](https://github.com/nodejs/node/commit/7718ff82a4)] - **doc**: using console.error for error cases in crypto and events (emirgoren) [#&#8203;45640](https://github.com/nodejs/node/pull/45640)
    
  • [`029060e6e4`](https://github.com/nodejs/node/commit/029060e6e4)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#&#8203;45656](https://github.com/nodejs/node/pull/45656)
    
  • [`9f51b9e50d`](https://github.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#&#8203;45697](https://github.com/nodejs/node/pull/45697)
    
  • [`801fe30488`](https://github.com/nodejs/node/commit/801fe30488)] - **doc**: add detail on how api docs are published (Michael Dawson) [#&#8203;45626](https://github.com/nodejs/node/pull/45626)
    
  • [`e124e2a6ee`](https://github.com/nodejs/node/commit/e124e2a6ee)] - **doc**: use console.error for error case in child_process and dgram (Deokjin Kim) [#&#8203;45690](https://github.com/nodejs/node/pull/45690)
    
  • [`1b920287b6`](https://github.com/nodejs/node/commit/1b920287b6)] - **doc**: move streaming instruc to doc/contributing (Michael Dawson) [#&#8203;45582](https://github.com/nodejs/node/pull/45582)
    
  • [`b010820c4e`](https://github.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael to the tsc (Michael Dawson) [#&#8203;45691](https://github.com/nodejs/node/pull/45691)
    
  • [`4fb7cf88e2`](https://github.com/nodejs/node/commit/4fb7cf88e2)] - **doc**: add missing line in debugger (Deokjin Kim) [#&#8203;45632](https://github.com/nodejs/node/pull/45632)
    
  • [`c0df265fea`](https://github.com/nodejs/node/commit/c0df265fea)] - **doc**: fix actual result of example is different in stream (Deokjin Kim) [#&#8203;45619](https://github.com/nodejs/node/pull/45619)
    
  • [`027e738064`](https://github.com/nodejs/node/commit/027e738064)] - **doc**: add `options` parameter to eventTarget.removeEventListener (Deokjin Kim) [#&#8203;45667](https://github.com/nodejs/node/pull/45667)
    
  • [`23ff5057b2`](https://github.com/nodejs/node/commit/23ff5057b2)] - **doc**: define "react-native" community condition (Alex Hunt) [#&#8203;45367](https://github.com/nodejs/node/pull/45367)
    
  • [`2e767bf18b`](https://github.com/nodejs/node/commit/2e767bf18b)] - **doc**: move os.machine() docs to sorted position (Colin Ihrig) [#&#8203;45647](https://github.com/nodejs/node/pull/45647)
    
  • [`aabfdef861`](https://github.com/nodejs/node/commit/aabfdef861)] - **doc**: use console.error for error case in fs, https, net and process (Deokjin Kim) [#&#8203;45606](https://github.com/nodejs/node/pull/45606)
    
  • [`3a02d50d35`](https://github.com/nodejs/node/commit/3a02d50d35)] - **doc**: add link to doc with social processes (Michael Dawson) [#&#8203;45584](https://github.com/nodejs/node/pull/45584)
    
  • [`e4316124fa`](https://github.com/nodejs/node/commit/e4316124fa)] - **fs**: fix `nonNativeWatcher` watching folder with existing files (Moshe Atlow) [#&#8203;45500](https://github.com/nodejs/node/pull/45500)
    
  • [`d272faa54d`](https://github.com/nodejs/node/commit/d272faa54d)] - **fs**: fix `nonNativeWatcher` leak of `StatWatchers` (Moshe Atlow) [#&#8203;45501](https://github.com/nodejs/node/pull/45501)
    
  • [`d64e773168`](https://github.com/nodejs/node/commit/d64e773168)] - **http**: make `OutgoingMessage` more streamlike (Robert Nagy) [#&#8203;45672](https://github.com/nodejs/node/pull/45672)
    
  • [`ed8ae88f30`](https://github.com/nodejs/node/commit/ed8ae88f30)] - **lib**: remove unnecessary lazy loading in `internal/encoding` (Antoine du Hamel) [#&#8203;45810](https://github.com/nodejs/node/pull/45810)
    
  • [`302c5240c5`](https://github.com/nodejs/node/commit/302c5240c5)] - **lib**: allow Writeable.toWeb() to work on http.Outgoing message (Debadree Chatterjee) [#&#8203;45642](https://github.com/nodejs/node/pull/45642)
    
  • [`e8745083b9`](https://github.com/nodejs/node/commit/e8745083b9)] - **lib**: check number of arguments in `EventTarget`'s function (Deokjin Kim) [#&#8203;45668](https://github.com/nodejs/node/pull/45668)
    
  • [`9f7bb5ce0e`](https://github.com/nodejs/node/commit/9f7bb5ce0e)] - **lib**: disambiguate `native module` to `binding` (Daeyeon Jeong) [#&#8203;45673](https://github.com/nodejs/node/pull/45673)
    
  • [`353339a552`](https://github.com/nodejs/node/commit/353339a552)] - **lib**: disambiguate `native module` to `builtin module` (Daeyeon Jeong) [#&#8203;45673](https://github.com/nodejs/node/pull/45673)
    
  • [`99410efd19`](https://github.com/nodejs/node/commit/99410efd19)] - **lib**: added SuiteContext class (Debadree Chatterjee) [#&#8203;45687](https://github.com/nodejs/node/pull/45687)
    
  • [`a79f37a0a7`](https://github.com/nodejs/node/commit/a79f37a0a7)] - **lib**: add missing type of removeEventListener in question (Deokjin Kim) [#&#8203;45676](https://github.com/nodejs/node/pull/45676)
    
  • [`e0750467e8`](https://github.com/nodejs/node/commit/e0750467e8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45814](https://github.com/nodejs/node/pull/45814)
    
  • [`376f3468b9`](https://github.com/nodejs/node/commit/376f3468b9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45732](https://github.com/nodejs/node/pull/45732)
    
  • [`a6e2cf2d6f`](https://github.com/nodejs/node/commit/a6e2cf2d6f)] - **meta**: add .mailmap entry for Stefan Stojanovic (Rich Trott) [#&#8203;45703](https://github.com/nodejs/node/pull/45703)
    
  • [`eb9a383d2a`](https://github.com/nodejs/node/commit/eb9a383d2a)] - **meta**: update AUTHORS info for nstepien (Nicolas Stepien) [#&#8203;45692](https://github.com/nodejs/node/pull/45692)
    
  • [`049ef342c6`](https://github.com/nodejs/node/commit/049ef342c6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45637](https://github.com/nodejs/node/pull/45637)
    
  • [`b9c2fc7623`](https://github.com/nodejs/node/commit/b9c2fc7623)] - **net**: check `autoSelectFamilyAttemptTimeout` is positive (Deokjin Kim) [#&#8203;45740](https://github.com/nodejs/node/pull/45740)
    
  • [`b8b13dccd9`](https://github.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#&#8203;44731](https://github.com/nodejs/node/pull/44731)
    
  • [`6962ef0df1`](https://github.com/nodejs/node/commit/6962ef0df1)] - **readline**: improve robustness against prototype mutation (Antoine du Hamel) [#&#8203;45614](https://github.com/nodejs/node/pull/45614)
    
  • [`7892e23e68`](https://github.com/nodejs/node/commit/7892e23e68)] - **repl**: do not define `wasi` on global with no flag (Kohei Ueno) [#&#8203;45595](https://github.com/nodejs/node/pull/45595)
    
  • [`349b4f8817`](https://github.com/nodejs/node/commit/349b4f8817)] - **src**: add internal isArrayBufferDetached (Yagiz Nizipli) [#&#8203;45568](https://github.com/nodejs/node/pull/45568)
    
  • [`5d7cd363ab`](https://github.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#&#8203;45639](https://github.com/nodejs/node/pull/45639)
    
  • [`8a03684018`](https://github.com/nodejs/node/commit/8a03684018)] - **src**: simplify NodeBIO::GetMethod initialization (Anna Henningsen) [#&#8203;45799](https://github.com/nodejs/node/pull/45799)
    
  • [`b35ebebc0e`](https://github.com/nodejs/node/commit/b35ebebc0e)] - **src**: make structuredClone work for process.env (Ben Noordhuis) [#&#8203;45698](https://github.com/nodejs/node/pull/45698)
    
  • [`81ab54035f`](https://github.com/nodejs/node/commit/81ab54035f)] - **src**: mark generated `snapshot_data` as `const` (Anna Henningsen) [#&#8203;45786](https://github.com/nodejs/node/pull/45786)
    
  • [`79edf257bb`](https://github.com/nodejs/node/commit/79edf257bb)] - **src**: cleanup on disambiguating native modules (Michael Dawson) [#&#8203;45665](https://github.com/nodejs/node/pull/45665)
    
  • [`c9cba2e873`](https://github.com/nodejs/node/commit/c9cba2e873)] - **src**: use `enum class` instead of `enum` in node_i18n (Deokjin Kim) [#&#8203;45646](https://github.com/nodejs/node/pull/45646)
    
  • [`818028caba`](https://github.com/nodejs/node/commit/818028caba)] - **src**: rename internal module declaration as internal bindings (Chengzhong Wu) [#&#8203;45551](https://github.com/nodejs/node/pull/45551)
    
  • [`2fbe2f9f0a`](https://github.com/nodejs/node/commit/2fbe2f9f0a)] - **src,lib**: group properties used as constants from `util` binding (Daeyeon Jeong) [#&#8203;45539](https://github.com/nodejs/node/pull/45539)
    
  • [`56eee72abb`](https://github.com/nodejs/node/commit/56eee72abb)] - **stream**: use structuredClone instead of v8 (Yagiz Nizipli) [#&#8203;45611](https://github.com/nodejs/node/pull/45611)
    
  • [`b297dd5393`](https://github.com/nodejs/node/commit/b297dd5393)] - **test**: remove flaky parallel/test-process-wrap test (Ben Noordhuis) [#&#8203;45806](https://github.com/nodejs/node/pull/45806)
    
  • [`924f6ab3a1`](https://github.com/nodejs/node/commit/924f6ab3a1)] - **test**: order list alphabetically in `test-bootstrap-modules` (Antoine du Hamel) [#&#8203;45808](https://github.com/nodejs/node/pull/45808)
    
  • [`5c4475dab9`](https://github.com/nodejs/node/commit/5c4475dab9)] - **test**: fix invalid output TAP if there newline in test name (Pulkit Gupta) [#&#8203;45742](https://github.com/nodejs/node/pull/45742)
    
  • [`4c51c5c97a`](https://github.com/nodejs/node/commit/4c51c5c97a)] - **test**: fix -Wunused-variable on report-fatalerror (Santiago Gimeno) [#&#8203;45747](https://github.com/nodejs/node/pull/45747)
    
  • [`764725040c`](https://github.com/nodejs/node/commit/764725040c)] - **test**: fix test-watch-mode (Stefan Stojanovic) [#&#8203;45585](https://github.com/nodejs/node/pull/45585)
    
  • [`cd36250fcb`](https://github.com/nodejs/node/commit/cd36250fcb)] - **test**: fix test-watch-mode-inspect (Stefan Stojanovic) [#&#8203;45586](https://github.com/nodejs/node/pull/45586)
    
  • [`b55bd6e8c1`](https://github.com/nodejs/node/commit/b55bd6e8c1)] - **test**: fix typos in test/parallel (Deokjin Kim) [#&#8203;45583](https://github.com/nodejs/node/pull/45583)
    
  • [`358e2fe217`](https://github.com/nodejs/node/commit/358e2fe217)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569)
    
  • [`424419c2b4`](https://github.com/nodejs/node/commit/424419c2b4)] - **test_runner**: refactor `tap_lexer` to use more primordials (Antoine du Hamel) [#&#8203;45744](https://github.com/nodejs/node/pull/45744)
    
  • [`ffc0f3d7be`](https://github.com/nodejs/node/commit/ffc0f3d7be)] - **test_runner**: refactor `tap_parser` to use more primordials (Antoine du Hamel) [#&#8203;45745](https://github.com/nodejs/node/pull/45745)
    
  • [`4165dcddf0`](https://github.com/nodejs/node/commit/4165dcddf0)] - **(SEMVER-MINOR)** **test_runner**: add t.after() hook (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792)
    
  • [`d1bd7796ad`](https://github.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test_runner**: don't use a symbol for runHook() (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792)
    
  • [`6bc7b7e6f4`](https://github.com/nodejs/node/commit/6bc7b7e6f4)] - **test_runner**: add resetCalls to MockFunctionContext (MURAKAMI Masahiko) [#&#8203;45710](https://github.com/nodejs/node/pull/45710)
    
  • [`3e485365ec`](https://github.com/nodejs/node/commit/3e485365ec)] - **test_runner**: don't parse TAP from stderr (Colin Ihrig) [#&#8203;45618](https://github.com/nodejs/node/pull/45618)
    
  • [`efc44567c9`](https://github.com/nodejs/node/commit/efc44567c9)] - **test_runner**: add getter and setter to MockTracker (MURAKAMI Masahiko) [#&#8203;45506](https://github.com/nodejs/node/pull/45506)
    
  • [`c9cbd1d396`](https://github.com/nodejs/node/commit/c9cbd1d396)] - **test_runner**: remove stdout and stderr from error (Colin Ihrig) [#&#8203;45592](https://github.com/nodejs/node/pull/45592)
    
  • [`691f58e76c`](https://github.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#&#8203;45776](https://github.com/nodejs/node/pull/45776)
    
  • [`d384b73f76`](https://github.com/nodejs/node/commit/d384b73f76)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;45730](https://github.com/nodejs/node/pull/45730)
    
  • [`324ae3d5dd`](https://github.com/nodejs/node/commit/324ae3d5dd)] - **tools**: add GitHub token permissions to label flaky-test issues (Gabriela Gutierrez) [#&#8203;45308](https://github.com/nodejs/node/pull/45308)
    
  • [`418ae9be56`](https://github.com/nodejs/node/commit/418ae9be56)] - **tools**: remove dependency vulnerability checker (Facundo Tuesca) [#&#8203;45675](https://github.com/nodejs/node/pull/45675)
    
  • [`238fc64c38`](https://github.com/nodejs/node/commit/238fc64c38)] - **tools**: update lint-md-dependencies to rollup@3.4.0 (Node.js GitHub Bot) [#&#8203;45638](https://github.com/nodejs/node/pull/45638)
    
  • [`1b98f17876`](https://github.com/nodejs/node/commit/1b98f17876)] - **tools**: update doc to highlight.js@11.7.0 (Node.js GitHub Bot) [#&#8203;45636](https://github.com/nodejs/node/pull/45636)
    
  • [`470384e7be`](https://github.com/nodejs/node/commit/470384e7be)] - **util**: use private symbols in JS land directly (Joyee Cheung) [#&#8203;45379](https://github.com/nodejs/node/pull/45379)
    
  • [`cee6f382d8`](https://github.com/nodejs/node/commit/cee6f382d8)] - **watch**: add CLI flag to preserve output (Debadree Chatterjee) [#&#8203;45717](https://github.com/nodejs/node/pull/45717)
    
    

v19.2.0: 2022-11-29, Version 19.2.0 (Current), @​ruyadorno

Compare Source

Notable changes
Time zone update

Time zone data has been updated to 2022f. This includes changes to Daylight Savings Time (DST) for Fiji and Mexico. For more information, see https://mm.icann.org/pipermail/tz-announce/2022-October/000075.html.

Other notable changes
  • buffer
    • (SEMVER-MINOR) introduce File class (Khafra) #​45139
  • deps
    • update V8 to 10.8.168.20 (Michaël Zasso) #​45230
  • doc
    • deprecate use of invalid ports in url.parse (Antoine du Hamel) #​45576
  • util
    • add fast path for utf8 encoding (Yagiz Nizipli) #​45412
Commits
  • [`7cff1e14ba`](https://github.com/nodejs/node/commit/7cff1e14ba)] - **(SEMVER-MINOR)** **async_hooks**: add hook to stop propagation (Gerhard Stöbich) [#&#8203;45386](https://github.com/nodejs/node/pull/45386)
    
  • [`f08f6a64a3`](https://github.com/nodejs/node/commit/f08f6a64a3)] - **benchmark**: add v8 serialize benchmark (Yagiz Nizipli) [#&#8203;45476](https://github.com/nodejs/node/pull/45476)
    
  • [`26ad54c1a2`](https://github.com/nodejs/node/commit/26ad54c1a2)] - **benchmark**: add text-encoder benchmark (Yagiz Nizipli) [#&#8203;45450](https://github.com/nodejs/node/pull/45450)
    
  • [`6c56c9722b`](https://github.com/nodejs/node/commit/6c56c9722b)] - **(SEMVER-MINOR)** **buffer**: introduce File (Khafra) [#&#8203;45139](https://github.com/nodejs/node/pull/45139)
    
  • [`6e1e25d6dd`](https://github.com/nodejs/node/commit/6e1e25d6dd)] - **build**: avoid redefined macro (Michaël Zasso) [#&#8203;45544](https://github.com/nodejs/node/pull/45544)
    
  • [`5c9b2a7c82`](https://github.com/nodejs/node/commit/5c9b2a7c82)] - **build**: fix env.h for cpp20 (Jiawen Geng) [#&#8203;45516](https://github.com/nodejs/node/pull/45516)
    
  • [`54fd8a1966`](https://github.com/nodejs/node/commit/54fd8a1966)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`0f3cf7e5ce`](https://github.com/nodejs/node/commit/0f3cf7e5ce)] - ***Revert*** "**build**: remove precompiled header and debug information for host builds" (Stefan Stojanovic) [#&#8203;45432](https://github.com/nodejs/node/pull/45432)
    
  • [`62ef1eb4ff`](https://github.com/nodejs/node/commit/62ef1eb4ff)] - **build**: add --v8-disable-object-print flag (MURAKAMI Masahiko) [#&#8203;45458](https://github.com/nodejs/node/pull/45458)
    
  • [`1ce2f56cf6`](https://github.com/nodejs/node/commit/1ce2f56cf6)] - **build**: make scripts in gyp run with right python (Jiawen Geng) [#&#8203;45435](https://github.com/nodejs/node/pull/45435)
    
  • [`9ffe3c051a`](https://github.com/nodejs/node/commit/9ffe3c051a)] - **build,deps,src**: fix Intel VTune profiling support (Shi Lei) [#&#8203;45248](https://github.com/nodejs/node/pull/45248)
    
  • [`bd3accc7b2`](https://github.com/nodejs/node/commit/bd3accc7b2)] - **crypto**: clear OpenSSL error queue after calling X509\_check_private_key() (Filip Skokan) [#&#8203;45495](https://github.com/nodejs/node/pull/45495)
    
  • [`724addb293`](https://github.com/nodejs/node/commit/724addb293)] - **crypto**: update root certificates (Luigi Pinca) [#&#8203;45490](https://github.com/nodejs/node/pull/45490)
    
  • [`efe19eb7f5`](https://github.com/nodejs/node/commit/efe19eb7f5)] - **crypto**: clear OpenSSL error queue after calling X509\_verify() (Takuro Sato) [#&#8203;45377](https://github.com/nodejs/node/pull/45377)
    
  • [`f63ae525fa`](https://github.com/nodejs/node/commit/f63ae525fa)] - **deps**: V8: cherry-pick [`2ada52c`](https://github.com/nodejs/node/commit/2ada52cffbff) (Michaël Zasso) [#&#8203;45573](https://github.com/nodejs/node/pull/45573)
    
  • [`43e002e3d4`](https://github.com/nodejs/node/commit/43e002e3d4)] - **deps**: update base64 to 0.5.0 (Facundo Tuesca) [#&#8203;45509](https://github.com/nodejs/node/pull/45509)
    
  • [`aaa4ac7735`](https://github.com/nodejs/node/commit/aaa4ac7735)] - **deps**: V8: cherry-pick [`9df5ef7`](https://github.com/nodejs/node/commit/9df5ef70ff18) (Yagiz Nizipli) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`e70c3090ff`](https://github.com/nodejs/node/commit/e70c3090ff)] - **deps**: V8: cherry-pick [`f1c888e`](https://github.com/nodejs/node/commit/f1c888e7093e) (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`51eb323c50`](https://github.com/nodejs/node/commit/51eb323c50)] - **deps**: V8: cherry-pick [`92a7385`](https://github.com/nodejs/node/commit/92a7385171bb) (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`1370b1a769`](https://github.com/nodejs/node/commit/1370b1a769)] - **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`3cd6367e6a`](https://github.com/nodejs/node/commit/3cd6367e6a)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`9348bdd28d`](https://github.com/nodejs/node/commit/9348bdd28d)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`e9292544b0`](https://github.com/nodejs/node/commit/e9292544b0)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`a3b9967553`](https://github.com/nodejs/node/commit/a3b9967553)] - **deps**: update V8 to 10.8.168.20 (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`117efe98b0`](https://github.com/nodejs/node/commit/117efe98b0)] - **deps**: V8: cherry-pick [`9df5ef7`](https://github.com/nodejs/node/commit/9df5ef70ff18) (Yagiz Nizipli) [#&#8203;45474](https://github.com/nodejs/node/pull/45474)
    
  • [`628891d4dd`](https://github.com/nodejs/node/commit/628891d4dd)] - **deps**: update timezone to 2022f (Node.js GitHub Bot) [#&#8203;45289](https://github.com/nodejs/node/pull/45289)
    
  • [`45ba14b3be`](https://github.com/nodejs/node/commit/45ba14b3be)] - **deps**: fix zlib compilation for CPUs without SIMD features (Anna Henningsen) [#&#8203;45387](https://github.com/nodejs/node/pull/45387)
    
  • [`c41e67fe1d`](https://github.com/nodejs/node/commit/c41e67fe1d)] - **deps**: update zlib to upstream [`8bbd6c3`](https://github.com/nodejs/node/commit/8bbd6c31) (Luigi Pinca) [#&#8203;45387](https://github.com/nodejs/node/pull/45387)
    
  • [`413bf9ad39`](https://github.com/nodejs/node/commit/413bf9ad39)] - **deps**: patch V8 to 10.7.193.22 (Michaël Zasso) [#&#8203;45460](https://github.com/nodejs/node/pull/45460)
    
  • [`ad8da86b3f`](https://github.com/nodejs/node/commit/ad8da86b3f)] - **deps**: update acorn to 8.8.1 (Node.js GitHub Bot) [#&#8203;45441](https://github.com/nodejs/node/pull/45441)
    
  • [`17e6031bf0`](https://github.com/nodejs/node/commit/17e6031bf0)] - **deps**: V8: cherry-pick [`031b98b`](https://github.com/nodejs/node/commit/031b98b25cba) (Michaël Zasso) [#&#8203;45375](https://github.com/nodejs/node/pull/45375)
    
  • [`9e0e97c121`](https://github.com/nodejs/node/commit/9e0e97c121)] - **diagnostics_channel**: built-in channels should remain experimental (Stephen Belanger) [#&#8203;45423](https://github.com/nodejs/node/pull/45423)
    
  • [`44886e55e1`](https://github.com/nodejs/node/commit/44886e55e1)] - **diagnostics_channel**: mark as stable (Stephen Belanger) [#&#8203;45290](https://github.com/nodejs/node/pull/45290)
    
  • [`b6b5b51687`](https://github.com/nodejs/node/commit/b6b5b51687)] - **doc**: deprecate use of invalid ports in `url.parse` (Antoine du Hamel) [#&#8203;45576](https://github.com/nodejs/node/pull/45576)
    
  • [`d805d5a894`](https://github.com/nodejs/node/commit/d805d5a894)] - **doc**: clarify changes in readableFlowing (Kohei Ueno) [#&#8203;45554](https://github.com/nodejs/node/pull/45554)
    
  • [`015842f3d2`](https://github.com/nodejs/node/commit/015842f3d2)] - **doc**: use console.error for error case in http2 (Deokjin Kim) [#&#8203;45577](https://github.com/nodejs/node/pull/45577)
    
  • [`4345732900`](https://github.com/nodejs/node/commit/4345732900)] - **doc**: add version description about fsPromise.constants (chlorine) [#&#8203;45556](https://github.com/nodejs/node/pull/45556)
    
  • [`16643dbb19`](https://github.com/nodejs/node/commit/16643dbb19)] - **doc**: add missing documentation for paramEncoding (Tobias Nießen) [#&#8203;45523](https://github.com/nodejs/node/pull/45523)
    
  • [`246cd358b5`](https://github.com/nodejs/node/commit/246cd358b5)] - **doc**: fix typo in threat model (Tobias Nießen) [#&#8203;45558](https://github.com/nodejs/node/pull/45558)
    
  • [`5b1df22db0`](https://github.com/nodejs/node/commit/5b1df22db0)] - **doc**: add Node.js Threat Model (Rafael Gonzaga) [#&#8203;45223](https://github.com/nodejs/node/pull/45223)
    
  • [`19d8493c92`](https://github.com/nodejs/node/commit/19d8493c92)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;45553](https://github.com/nodejs/node/pull/45553)
    
  • [`6f0bc097ea`](https://github.com/nodejs/node/commit/6f0bc097ea)] - **doc**: add async_hooks migration note (Geoffrey Booth) [#&#8203;45335](https://github.com/nodejs/node/pull/45335)
    
  • [`118de4b44c`](https://github.com/nodejs/node/commit/118de4b44c)] - **doc**: fix RESOLVE_ESM_MATCH in modules.md (翠 / green) [#&#8203;45280](https://github.com/nodejs/node/pull/45280)
    
  • [`4de67d1ef4`](https://github.com/nodejs/node/commit/4de67d1ef4)] - **doc**: add arm64 to os.machine() (Carter Snook) [#&#8203;45374](https://github.com/nodejs/node/pull/45374)
    
  • [`1812a89c00`](https://github.com/nodejs/node/commit/1812a89c00)] - **doc**: add lint rule to enforce trailing commas (Antoine du Hamel) [#&#8203;45471](https://github.com/nodejs/node/pull/45471)
    
  • [`4128c27f66`](https://github.com/nodejs/node/commit/4128c27f66)] - **doc**: include v19.1.0 in `CHANGELOG.md` (Rafael Gonzaga) [#&#8203;45462](https://github.com/nodejs/node/pull/45462)
    
  • [`94a6a97ec6`](https://github.com/nodejs/node/commit/94a6a97ec6)] - **doc**: adjust wording to eliminate awkward typography (Konv) [#&#8203;45398](https://github.com/nodejs/node/pull/45398)
    
  • [`a6fe707b62`](https://github.com/nodejs/node/commit/a6fe707b62)] - **doc**: fix typo in maintaining-dependencies.md (Tobias Nießen) [#&#8203;45428](https://github.com/nodejs/node/pull/45428)
    
  • [`8906a4e58e`](https://github.com/nodejs/node/commit/8906a4e58e)] - **esm**: add JSDoc property descriptions for loader (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370)
    
  • [`4e5ad9df50`](https://github.com/nodejs/node/commit/4e5ad9df50)] - **esm**: add JSDoc property descriptions for fetch (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370)
    
  • [`2b760c339e`](https://github.com/nodejs/node/commit/2b760c339e)] - **fs**: fix fs.rm support for loop symlinks (Nathanael Ruf) [#&#8203;45439](https://github.com/nodejs/node/pull/45439)
    
  • [`e0a271e41b`](https://github.com/nodejs/node/commit/e0a271e41b)] - **gyp**: fix v8 canary build on aix (Vasili Skurydzin) [#&#8203;45496](https://github.com/nodejs/node/pull/45496)
    
  • [`eac26c0793`](https://github.com/nodejs/node/commit/eac26c0793)] - ***Revert*** "**http**: headers(Distinct), trailers(Distinct) setters to be no-op" (Rich Trott) [#&#8203;45527](https://github.com/nodejs/node/pull/45527)
    
  • [`f208db70a0`](https://github.com/nodejs/node/commit/f208db70a0)] - **http**: add debug log for ERR_UNESCAPED_CHARACTERS (Aidan Temple) [#&#8203;45420](https://github.com/nodejs/node/pull/45420)
    
  • [`b72b2bab72`](https://github.com/nodejs/node/commit/b72b2bab72)] - **http**: add JSDoc property descriptions (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370)
    
  • [`4c9159a830`](https://github.com/nodejs/node/commit/4c9159a830)] - **lib**: improve transferable abort controller exec (Yagiz Nizipli) [#&#8203;45525](https://github.com/nodejs/node/pull/45525)
    
  • [`5745bcbb41`](https://github.com/nodejs/node/commit/5745bcbb41)] - **lib**: improve AbortController creation duration (Yagiz Nizipli) [#&#8203;45525](https://github.com/nodejs/node/pull/45525)
    
  • [`38767b42fb`](https://github.com/nodejs/node/commit/38767b42fb)] - **lib**: do not throw if global property is no longer configurable (Antoine du Hamel) [#&#8203;45344](https://github.com/nodejs/node/pull/45344)
    
  • [`0d1b1c5df0`](https://github.com/nodejs/node/commit/0d1b1c5df0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45531](https://github.com/nodejs/node/pull/45531)
    
  • [`208ea1a58c`](https://github.com/nodejs/node/commit/208ea1a58c)] - **meta**: update VoltrexMaster's username (Mohammed Keyvanzadeh) [#&#8203;45503](https://github.com/nodejs/node/pull/45503)
    
  • [`d13ea68ef6`](https://github.com/nodejs/node/commit/d13ea68ef6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45443](https://github.com/nodejs/node/pull/45443)
    
  • [`6704e7814f`](https://github.com/nodejs/node/commit/6704e7814f)] - **meta**: be more proactive about removing from teams (Rich Trott) [#&#8203;45352](https://github.com/nodejs/node/pull/45352)
    
  • [`6fdd202c57`](https://github.com/nodejs/node/commit/6fdd202c57)] - **module**: require.resolve.paths returns null with node schema (MURAKAMI Masahiko) [#&#8203;45147](https://github.com/nodejs/node/pull/45147)
    
  • [`38f1ede379`](https://github.com/nodejs/node/commit/38f1ede379)] - **node-api**: address coverity warning (Michael Dawson) [#&#8203;45563](https://github.com/nodejs/node/pull/45563)
    
  • [`4a4f2802ec`](https://github.com/nodejs/node/commit/4a4f2802ec)] - **node-api**: declare type napi_cleanup_hook (Chengzhong Wu) [#&#8203;45391](https://github.com/nodejs/node/pull/45391)
    
  • [`8ff16fd8c0`](https://github.com/nodejs/node/commit/8ff16fd8c0)] - **node-api**: fix immediate napi_remove_wrap test (Chengzhong Wu) [#&#8203;45406](https://github.com/nodejs/node/pull/45406)
    
  • [`e7a5b3347b`](https://github.com/nodejs/node/commit/e7a5b3347b)] - **src**: address coverity warning in node_file.cc (Michael Dawson) [#&#8203;45565](https://github.com/nodejs/node/pull/45565)
    
  • [`128c9f6fac`](https://github.com/nodejs/node/commit/128c9f6fac)] - **src**: use qualified `std::move` call in node_http2 (Michaël Zasso) [#&#8203;45555](https://github.com/nodejs/node/pull/45555)
    
  • [`57bca94cb1`](https://github.com/nodejs/node/commit/57bca94cb1)] - **src**: avoid unused variables and functions (Michaël Zasso) [#&#8203;45542](https://github.com/nodejs/node/pull/45542)
    
  • [`649b31f5e5`](https://github.com/nodejs/node/commit/649b31f5e5)] - **src**: add missing include for `std::all_of` (Michaël Zasso) [#&#8203;45541](https://github.com/nodejs/node/pull/45541)
    
  • [`56f22ea47c`](https://github.com/nodejs/node/commit/56f22ea47c)] - **src**: set an appropriate thread pool size if given `--v8-pool-size=0` (Daeyeon Jeong) [#&#8203;45513](https://github.com/nodejs/node/pull/45513)
    
  • [`cce9e11d2d`](https://github.com/nodejs/node/commit/cce9e11d2d)] - **src**: move FsStatsOffset and kFsStatsBufferLength to node_file.h (Joyee Cheung) [#&#8203;45498](https://github.com/nodejs/node/pull/45498)
    
  • [`5e5bf0c236`](https://github.com/nodejs/node/commit/5e5bf0c236)] - **src**: don't run tasks on isolate termination (Santiago Gimeno) [#&#8203;45444](https://github.com/nodejs/node/pull/45444)
    
  • [`10e7c2a62c`](https://github.com/nodejs/node/commit/10e7c2a62c)] - **src**: remove the unused PackageConfig class (Joyee Cheung) [#&#8203;45478](https://github.com/nodejs/node/pull/45478)
    
  • [`459d4481d4`](https://github.com/nodejs/node/commit/459d4481d4)] - **src**: add --max-semi-space-size to the options allowed in NODE_OPTIONS (Emanuel Hoogeveen) [#&#8203;44436](https://github.com/nodejs/node/pull/44436)
    
  • [`a483d1291e`](https://github.com/nodejs/node/commit/a483d1291e)] - **src**: condense experimental warning message (Rich Trott) [#&#8203;45424](https://github.com/nodejs/node/pull/45424)
    
  • [`42507e68ab`](https://github.com/nodejs/node/commit/42507e68ab)] - **src,node-api**: update `napi_is_detached_arraybuffer` (Daeyeon Jeong) [#&#8203;45538](https://github.com/nodejs/node/pull/45538)
    
  • [`f720c5880e`](https://github.com/nodejs/node/commit/f720c5880e)] - **stream**: use ArrayBufferPrototypeGetByteLength (Yagiz Nizipli) [#&#8203;45528](https://github.com/nodejs/node/pull/45528)
    
  • [`c00258e24b`](https://github.com/nodejs/node/commit/c00258e24b)] - **stream**: add primordials to adapters (Yagiz Nizipli) [#&#8203;45511](https://github.com/nodejs/node/pull/45511)
    
  • [`5274a8f7db`](https://github.com/nodejs/node/commit/5274a8f7db)] - **stream**: avoid premature close when will not emit close (Robert Nagy) [#&#8203;45301](https://github.com/nodejs/node/pull/45301)
    
  • [`496912d722`](https://github.com/nodejs/node/commit/496912d722)] - **stream**: fix typo in `adapters.js` ([#&#8203;45515](https://github.com/nodejs/node/issues/45515)) (Kohei Ueno) [#&#8203;45515](https://github.com/nodejs/node/pull/45515)
    
  • [`8d96e2c723`](https://github.com/nodejs/node/commit/8d96e2c723)] - **stream**: add fast path for utf8 (Yagiz Nizipli) [#&#8203;45483](https://github.com/nodejs/node/pull/45483)
    
  • [`c3fe9072c6`](https://github.com/nodejs/node/commit/c3fe9072c6)] - **test**: add trailing commas in event tests (Rich Trott) [#&#8203;45466](https://github.com/nodejs/node/pull/45466)
    
  • [`bb4c293873`](https://github.com/nodejs/node/commit/bb4c293873)] - **test**: add trailing commas in async-hooks tests ([#&#8203;45549](https://github.com/nodejs/node/issues/45549)) (Antoine du Hamel) [#&#8203;45549](https://github.com/nodejs/node/pull/45549)
    
  • [`731e8741b2`](https://github.com/nodejs/node/commit/731e8741b2)] - **test**: add trailing commas in addons test ([#&#8203;45548](https://github.com/nodejs/node/issues/45548)) (Antoine du Hamel) [#&#8203;45548](https://github.com/nodejs/node/pull/45548)
    
  • [`d6c68ce346`](https://github.com/nodejs/node/commit/d6c68ce346)] - **test**: add trailing commas in `test/common` ([#&#8203;45550](https://github.com/nodejs/node/issues/45550)) (Antoine du Hamel) [#&#8203;45550](https://github.com/nodejs/node/pull/45550)
    
  • [`c9ba0b738d`](https://github.com/nodejs/node/commit/c9ba0b738d)] - **test**: revise pull request guide text about code (Rich Trott) [#&#8203;45519](https://github.com/nodejs/node/pull/45519)
    
  • [`076e9eeaeb`](https://github.com/nodejs/node/commit/076e9eeaeb)] - **test**: fix test-trace-gc-flag (Tony Gorez) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`72f2df2802`](https://github.com/nodejs/node/commit/72f2df2802)] - **test**: adapt test-v8-stats for V8 update (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230)
    
  • [`b491504d77`](https://github.com/nodejs/node/commit/b491504d77)] - **test**: enable the WPT for `structuredClone` (Daeyeon Jeong) [#&#8203;45482](https://github.com/nodejs/node/pull/45482)
    
  • [`1277ffcb55`](https://github.com/nodejs/node/commit/1277ffcb55)] - **test**: add lint rule to enforce trailing commas (Antoine du Hamel) [#&#8203;45468](https://github.com/nodejs/node/pull/45468)
    
  • [`45b54eec55`](https://github.com/nodejs/node/commit/45b54eec55)] - **test**: update uses of \_jabber.\_tcp.google.com (Colin Ihrig) [#&#8203;45451](https://github.com/nodejs/node/pull/45451)
    
  • [`51213c24bd`](https://github.com/nodejs/node/commit/51213c24bd)] - **test**: add test to validate changelogs for releases (Richard Lau) [#&#8203;45325](https://github.com/nodejs/node/pull/45325)
    
  • [`00a3b5f7d5`](https://github.com/nodejs/node/commit/00a3b5f7d5)] - **test**: remove flaky designation for test-worker-http2-stream-terminate (Rich Trott) [#&#8203;45438](https://github.com/nodejs/node/pull/45438)
    
  • [`4fe5c4e167`](https://github.com/nodejs/node/commit/4fe5c4e167)] - **test**: fix flaky test-repl-sigint-nested-eval (Rich Trott) [#&#8203;45354](https://github.com/nodejs/node/pull/45354)
    
  • [`f79dd65333`](https://github.com/nodejs/node/commit/f79dd65333)] - **test**: add a test to ensure the correctness of timezone upgrades (Darshan Sen) [#&#8203;45299](https://github.com/nodejs/node/pull/45299)
    
  • [`016749ba5d`](https://github.com/nodejs/node/commit/016749ba5d)] - **test_runner**: add initial TAP parser (Wassim Chegham) [#&#8203;43525](https://github.com/nodejs/node/pull/43525)
    
  • [`e9760b4ae8`](https://github.com/nodejs/node/commit/e9760b4ae8)] - **test_runner**: support watch mode (Moshe Atlow) [#&#8203;45214](https://github.com/nodejs/node/pull/45214)
    
  • [`160c88ec77`](https://github.com/nodejs/node/commit/160c88ec77)] - **tools**: have test-asan use ubuntu-20.04 (Filip Skokan) [#&#8203;45581](https://github.com/nodejs/node/pull/45581)
    
  • [`81f63c2b28`](https://github.com/nodejs/node/commit/81f63c2b28)] - **tools**: update eslint to 8.28.0 (Node.js GitHub Bot) [#&#8203;45532](https://github.com/nodejs/node/pull/45532)
    
  • [`f3f1aed01a`](https://github.com/nodejs/node/commit/f3f1aed01a)] - **tools**: add automation for updating libuv dependency (Facundo Tuesca) [#&#8203;45362](https://github.com/nodejs/node/pull/45362)
    
  • [`d4f30f07b3`](https://github.com/nodejs/node/commit/d4f30f07b3)] - **tools**: add missing step in update-base64.sh script (Facundo Tuesca) [#&#8203;45509](https://github.com/nodejs/node/pull/45509)
    
  • [`cca20330cf`](https://github.com/nodejs/node/commit/cca20330cf)] - **tools**: update certdata.txt (Luigi Pinca) [#&#8203;45490](https://github.com/nodejs/node/pull/45490)
    
  • [`39e873139b`](https://github.com/nodejs/node/commit/39e873139b)] - **tools**: include current release in the list of released versions (Antoine du Hamel) [#&#8203;45463](https://github.com/nodejs/node/pull/45463)
    
  • [`8a34ef4897`](https://github.com/nodejs/node/commit/8a34ef4897)] - **tools**: update lint-md-dependencies to rollup@3.3.0 (Node.js GitHub Bot) [#&#8203;45442](https://github.com/nodejs/node/pull/45442)
    
  • [`bb36acff42`](https://github.com/nodejs/node/commit/bb36acff42)] - **tools**: do not run CQ on non-fast-tracked PRs open for less than 2 days (Moshe Atlow) [#&#8203;45407](https://github.com/nodejs/node/pull/45407)
    
  • [`93bc2ba509`](https://github.com/nodejs/node/commit/93bc2ba509)] - **tools**: simplify .eslintrc.js (Rich Trott) [#&#8203;45397](https://github.com/nodejs/node/pull/45397)
    
  • [`b7f8a44c64`](https://github.com/nodejs/node/commit/b7f8a44c64)] - **tools**: simplify regex in ESLint config (Rich Trott) [#&#8203;45399](https://github.com/nodejs/node/pull/45399)
    
  • [`36bf87fabf`](https://github.com/nodejs/node/commit/36bf87fabf)] - **tools**: enable jsdoc/require-property-description rule (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370)
    
  • [`7c6281a7d2`](https://github.com/nodejs/node/commit/7c6281a7d2)] - **tools**: dynamically determine parallelism on GitHub Actions macOS (Rich Trott) [#&#8203;45350](https://github.com/nodejs/node/pull/45350)
    
  • [`f441b04c11`](https://github.com/nodejs/node/commit/f441b04c11)] - **trace_events**: add new categories (theanarkh) [#&#8203;45266](https://github.com/nodejs/node/pull/45266)
    
  • [`6bdd2c3884`](https://github.com/nodejs/node/commit/6bdd2c3884)] - ***Revert*** "**url**: improve port validation" (Rich Trott) [#&#8203;45517](https://github.com/nodejs/node/pull/45517)
    
  • [`bbba42fcb2`](https://github.com/nodejs/node/commit/bbba42fcb2)] - **url**: remove unnecessary object call to kFormat (Yagiz Nizipli) [#&#8203;45492](https://github.com/nodejs/node/pull/45492)
    
  • [`7c79ba7b27`](https://github.com/nodejs/node/commit/7c79ba7b27)] - **util**: add fast path for utf8 encoding (Yagiz Nizipli) [#&#8203;45412](https://github.com/nodejs/node/pull/45412)
    
  • [`f86f90f839`](https://github.com/nodejs/node/commit/f86f90f839)] - **util**: improve text decoder performance (Yagiz Nizipli) [#&#8203;45388](https://github.com/nodejs/node/pull/45388)
    
  • [`3263ceb21a`](https://github.com/nodejs/node/commit/3263ceb21a)] - **watch**: watch for missing dependencies (Moshe Atlow) [#&#8203;45348](https://github.com/nodejs/node/pull/45348)
    
    

v19.1.0: 2022-11-14, Version 19.1.0 (Current), @​RafaelGSS

Compare Source

Notable changes
Support function mocking on Node.js test runner

The node:test module supports mocking during testing via a top-level mock
object.

test('spies on an object method', (t) => {
  const number = {
    value: 5,
    add(a) {
      return this.value + a;
    },
  };
  t.mock.method(number, 'add');

  assert.strictEqual(number.add(3), 8);
  assert.strictEqual(number.add.mock.calls.length, 1);
});

Contributed by Colin Ihrig in #​45326

fs.watch recursive support on Linux

fs.watch supports recursive watch using the recursive: true option.

const watcher = fs.watch(testDirectory, { recursive: true });
watcher.on('change', function(event, filename) {
});

Contributed by Yagiz Nizipli in #​45098

Other notable changes
  • deps
    • update ICU to 72.1 (Michaël Zasso) #​45068
  • doc
    • add lukekarrys to collaborators (Luke Karrys) #​45180
    • add anonrig to collaborators (Yagiz Nizipli) #​45002
  • lib
    • drop fetch experimental warning (Matteo Collina) #​45287
  • util
    • (SEMVER-MINOR) add MIME utilities (Bradley Farias) #​21128
    • improve textdecoder decode performance (Yagiz Nizipli) #​45294
Commits
  • [`c9cf399ec7`](https://github.com/nodejs/node/commit/c9cf399ec7)] - **benchmark**: add parameters to text-decoder benchmark (Yagiz Nizipli) [#&#8203;45363](https://github.com/nodejs/node/pull/45363)
    
  • [`79f6bb061d`](https://github.com/nodejs/node/commit/79f6bb061d)] - **benchmark**: fix text-decoder benchmark (Yagiz Nizipli) [#&#8203;45363](https://github.com/nodejs/node/pull/45363)
    
  • [`a27c994ced`](https://github.com/nodejs/node/commit/a27c994ced)] - **benchmark**: add blob benchmark (Yagiz Nizipli) [#&#8203;44990](https://github.com/nodejs/node/pull/44990)
    
  • [`c45b6aee78`](https://github.com/nodejs/node/commit/c45b6aee78)] - **bootstrap**: merge main thread and worker thread initializations (Joyee Cheung) [#&#8203;44869](https://github.com/nodejs/node/pull/44869)
    
  • [`33691208df`](https://github.com/nodejs/node/commit/33691208df)] - **buffer**: fix validation of options in `Blob` constructor (Antoine du Hamel) [#&#8203;45156](https://github.com/nodejs/node/pull/45156)
    
  • [`7b938df296`](https://github.com/nodejs/node/commit/7b938df296)] - **build**: support Python 3.11 (Luigi Pinca) [#&#8203;45191](https://github.com/nodejs/node/pull/45191)
    
  • [`75e0a2d109`](https://github.com/nodejs/node/commit/75e0a2d109)] - **build**: workaround for node-core-utils (Jiawen Geng) [#&#8203;45199](https://github.com/nodejs/node/pull/45199)
    
  • [`f598edbdf4`](https://github.com/nodejs/node/commit/f598edbdf4)] - **build**: fix icu-small build with ICU 72.1 (Steven R. Loomis) [#&#8203;45195](https://github.com/nodejs/node/pull/45195)
    
  • [`29b9f4f90c`](https://github.com/nodejs/node/commit/29b9f4f90c)] - **build**: remove unused language files (Ben Noordhuis) [#&#8203;45138](https://github.com/nodejs/node/pull/45138)
    
  • [`3a1ee940d1`](https://github.com/nodejs/node/commit/3a1ee940d1)] - **build**: add GitHub token to auto-start-ci workflow (Richard Lau) [#&#8203;45185](https://github.com/nodejs/node/pull/45185)
    
  • [`17349a2f42`](https://github.com/nodejs/node/commit/17349a2f42)] - **build**: restore Windows resource file (Richard Lau) [#&#8203;45042](https://github.com/nodejs/node/pull/45042)
    
  • [`24e24bd063`](https://github.com/nodejs/node/commit/24e24bd063)] - **build**: add version info to timezone update PR (Darshan Sen) [#&#8203;45021](https://github.com/nodejs/node/pull/45021)
    
  • [`8d7aa53e6b`](https://github.com/nodejs/node/commit/8d7aa53e6b)] - **build,win**: pass --debug-nghttp2 to configure (Santiago Gimeno) [#&#8203;45209](https://github.com/nodejs/node/pull/45209)
    
  • [`b2e60480f3`](https://github.com/nodejs/node/commit/b2e60480f3)] - **child_process**: validate arguments for null bytes (Darshan Sen) [#&#8203;44782](https://github.com/nodejs/node/pull/44782)
    
  • [`1f0edde412`](https://github.com/nodejs/node/commit/1f0edde412)] - **crypto**: handle more webcrypto errors with OperationError (Filip Skokan) [#&#8203;45320](https://github.com/nodejs/node/pull/45320)
    
  • [`13fb05e12b`](https://github.com/nodejs/node/commit/13fb05e12b)] - **crypto**: handle unsupported AES ciphers in webcrypto (Filip Skokan) [#&#8203;45321](https://github.com/nodejs/node/pull/45321)
    
  • [`c168cbfbb3`](https://github.com/nodejs/node/commit/c168cbfbb3)] - **deps**: V8: cherry-pick [`56816d7`](https://github.com/nodejs/node/commit/56816d76c121) (Shi Pujin) [#&#8203;45353](https://github.com/nodejs/node/pull/45353)
    
  • [`1432474abf`](https://github.com/nodejs/node/commit/1432474abf)] - **deps**: upgrade npm to 8.19.3 (npm team) [#&#8203;45322](https://github.com/nodejs/node/pull/45322)
    
  • [`f35d56200d`](https://github.com/nodejs/node/commit/f35d56200d)] - **deps**: update corepack to 0.15.1 (Node.js GitHub Bot) [#&#8203;45331](https://github.com/nodejs/node/pull/45331)
    
  • [`44de2321aa`](https://github.com/nodejs/node/commit/44de2321aa)] - **deps**: patch V8 to 10.7.193.20 (Michaël Zasso) [#&#8203;45228](https://github.com/nodejs/node/pull/45228)
    
  • [`bfe3819f08`](https://github.com/nodejs/node/commit/bfe3819f08)] - **deps**: upgrade to libuv 1.44.2 (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340)
    
  • [`0d41df96b3`](https://github.com/nodejs/node/commit/0d41df96b3)] - **deps**: update corepack to 0.15.0 (Node.js GitHub Bot) [#&#8203;45235](https://github.com/nodejs/node/pull/45235)
    
  • [`0d241638ca`](https://github.com/nodejs/node/commit/0d241638ca)] - **deps**: update undici to 5.12.0 (Node.js GitHub Bot) [#&#8203;45236](https://github.com/nodejs/node/pull/45236)
    
  • [`f58996188a`](https://github.com/nodejs/node/commit/f58996188a)] - ***Revert*** "**deps**: make V8 compilable with older glibc" (Michaël Zasso) [#&#8203;45162](https://github.com/nodejs/node/pull/45162)
    
  • [`8cda730e58`](https://github.com/nodejs/node/commit/8cda730e58)] - **deps**: update ICU to 72.1 (Michaël Zasso) [#&#8203;45068](https://github.com/nodejs/node/pull/45068)
    
  • [`0a6ed6f710`](https://github.com/nodejs/node/commit/0a6ed6f710)] - ***Revert*** "**deps**: V8: forward declaration of `Rtl*FunctionTable`" (Michaël Zasso) [#&#8203;45119](https://github.com/nodejs/node/pull/45119)
    
  • [`2f7518ada2`](https://github.com/nodejs/node/commit/2f7518ada2)] - **deps**: update timezone (Node.js GitHub Bot) [#&#8203;44950](https://github.com/nodejs/node/pull/44950)
    
  • [`3bfba6df79`](https://github.com/nodejs/node/commit/3bfba6df79)] - **deps**: patch V8 to 10.7.193.16 (Michaël Zasso) [#&#8203;45023](https://github.com/nodejs/node/pull/45023)
    
  • [`b5baaa61b3`](https://github.com/nodejs/node/commit/b5baaa61b3)] - **dns**: fix port validation (Antoine du Hamel) [#&#8203;45135](https://github.com/nodejs/node/pull/45135)
    
  • [`0e9bad97cc`](https://github.com/nodejs/node/commit/0e9bad97cc)] - **doc**: allow for holidays in triage response (Michael Dawson) [#&#8203;45267](https://github.com/nodejs/node/pull/45267)
    
  • [`d4aabb9d3d`](https://github.com/nodejs/node/commit/d4aabb9d3d)] - **doc**: include last security release date (Juan José Arboleda) [#&#8203;45368](https://github.com/nodejs/node/pull/45368)
    
  • [`ba45373164`](https://github.com/nodejs/node/commit/ba45373164)] - **doc**: fix email for Ashley (Michael Dawson) [#&#8203;45364](https://github.com/nodejs/node/pull/45364)
    
  • [`d5e5c75b13`](https://github.com/nodejs/node/commit/d5e5c75b13)] - **doc**: fix test runner's only tests section header (Colin Ihrig) [#&#8203;45343](https://github.com/nodejs/node/pull/45343)
    
  • [`a7c5f31c47`](https://github.com/nodejs/node/commit/a7c5f31c47)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;45349](https://github.com/nodejs/node/pull/45349)
    
  • [`3de125743e`](https://github.com/nodejs/node/commit/3de125743e)] - **doc**: add more info for timer.setInterval (theanarkh) [#&#8203;45232](https://github.com/nodejs/node/pull/45232)
    
  • [`5a1252d9b4`](https://github.com/nodejs/node/commit/5a1252d9b4)] - **doc**: use module names in stability overview table (Filip Skokan) [#&#8203;45312](https://github.com/nodejs/node/pull/45312)
    
  • [`4d38bf2c5f`](https://github.com/nodejs/node/commit/4d38bf2c5f)] - **doc**: add `node:` prefix for examples (Daeyeon Jeong) [#&#8203;45328](https://github.com/nodejs/node/pull/45328)
    
  • [`b4b6b95f48`](https://github.com/nodejs/node/commit/b4b6b95f48)] - **doc**: update name of Node.js core Slack channel (Rich Trott) [#&#8203;45293](https://github.com/nodejs/node/pull/45293)
    
  • [`7d7e7c316b`](https://github.com/nodejs/node/commit/7d7e7c316b)] - **doc**: fix "task_processor.js" typo (andreysoktoev) [#&#8203;45257](https://github.com/nodejs/node/pull/45257)
    
  • [`b9039a54af`](https://github.com/nodejs/node/commit/b9039a54af)] - **doc**: add history section to `fetch`-related globals (Antoine du Hamel) [#&#8203;45198](https://github.com/nodejs/node/pull/45198)
    
  • [`d9163f1632`](https://github.com/nodejs/node/commit/d9163f1632)] - **doc**: clarify moderation in `onboarding.md` (Benjamin Gruenbaum) [#&#8203;41930](https://github.com/nodejs/node/pull/41930)
    
  • [`c179c1478b`](https://github.com/nodejs/node/commit/c179c1478b)] - **doc**: change make lint to make lint-md (RafaelGSS) [#&#8203;45197](https://github.com/nodejs/node/pull/45197)
    
  • [`58bec56fab`](https://github.com/nodejs/node/commit/58bec56fab)] - **doc**: add more lts update steps to release guide (Ruy Adorno) [#&#8203;45177](https://github.com/nodejs/node/pull/45177)
    
  • [`8f8d7e76ac`](https://github.com/nodejs/node/commit/8f8d7e76ac)] - **doc**: add bmuenzenmeyer to triagers (Brian Muenzenmeyer) [#&#8203;45155](https://github.com/nodejs/node/pull/45155)
    
  • [`de2df550f6`](https://github.com/nodejs/node/commit/de2df550f6)] - **doc**: update process.release (Filip Skokan) [#&#8203;45170](https://github.com/nodejs/node/pull/45170)
    
  • [`916e8760ba`](https://github.com/nodejs/node/commit/916e8760ba)] - **doc**: add link to triage guide (Brian Muenzenmeyer) [#&#8203;45154](https://github.com/nodejs/node/pull/45154)
    
  • [`54d806853e`](https://github.com/nodejs/node/commit/54d806853e)] - **doc**: mark Node.js 12 as End-of-Life (Rafael Gonzaga) [#&#8203;45186](https://github.com/nodejs/node/pull/45186)
    
  • [`3a26347649`](https://github.com/nodejs/node/commit/3a26347649)] - **doc**: add lukekarrys to collaborators (Luke Karrys) [#&#8203;45180](https://github.com/nodejs/node/pull/45180)
    
  • [`85cb4d795c`](https://github.com/nodejs/node/commit/85cb4d795c)] - **doc**: update mark release line lts on release guide (Ruy Adorno) [#&#8203;45101](https://github.com/nodejs/node/pull/45101)
    
  • [`c23e023a2d`](https://github.com/nodejs/node/commit/c23e023a2d)] - **doc**: be more definite and present tense-y (Ben Noordhuis) [#&#8203;45120](https://github.com/nodejs/node/pull/45120)
    
  • [`519002152b`](https://github.com/nodejs/node/commit/519002152b)] - **doc**: add major version note to release guide (Ruy Adorno) [#&#8203;45054](https://github.com/nodejs/node/pull/45054)
    
  • [`809e8dcbd2`](https://github.com/nodejs/node/commit/809e8dcbd2)] - **doc**: fix v14.x link maintaining openssl guide (RafaelGSS) [#&#8203;45071](https://github.com/nodejs/node/pull/45071)
    
  • [`9d449d389d`](https://github.com/nodejs/node/commit/9d449d389d)] - **doc**: add note about latest GitHub release (Michaël Zasso) [#&#8203;45111](https://github.com/nodejs/node/pull/45111)
    
  • [`ee34a3a1bc`](https://github.com/nodejs/node/commit/ee34a3a1bc)] - **doc**: mention v18.x openssl maintaining guide (Rafael Gonzaga) [#&#8203;45070](https://github.com/nodejs/node/pull/45070)
    
  • [`3e4033a90d`](https://github.com/nodejs/node/commit/3e4033a90d)] - **doc**: fix display of "problematic" ASCII characters (John Gardner) [#&#8203;44373](https://github.com/nodejs/node/pull/44373)
    
  • [`533e38b0b8`](https://github.com/nodejs/node/commit/533e38b0b8)] - **doc**: mark Node.js v17.x as EOL (KaKa) [#&#8203;45110](https://github.com/nodejs/node/pull/45110)
    
  • [`93a34faa39`](https://github.com/nodejs/node/commit/93a34faa39)] - **doc**: update Node.js 16 End-of-Life date (Richard Lau) [#&#8203;45103](https://github.com/nodejs/node/pull/45103)
    
  • [`b4beddef79`](https://github.com/nodejs/node/commit/b4beddef79)] - **doc**: fix typo in parseArgs default value (Tobias Nießen) [#&#8203;45083](https://github.com/nodejs/node/pull/45083)
    
  • [`e8103fd33b`](https://github.com/nodejs/node/commit/e8103fd33b)] - **doc**: updated security stewards (Michael Dawson) [#&#8203;45005](https://github.com/nodejs/node/pull/45005)
    
  • [`5fbccae4f0`](https://github.com/nodejs/node/commit/5fbccae4f0)] - **doc**: fix http and http2 writeEarlyHints() parameter (Fabian Meyer) [#&#8203;45000](https://github.com/nodejs/node/pull/45000)
    
  • [`d47f83251a`](https://github.com/nodejs/node/commit/d47f83251a)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;45034](https://github.com/nodejs/node/pull/45034)
    
  • [`e6bbc5033d`](https://github.com/nodejs/node/commit/e6bbc5033d)] - **doc**: improve the workflow to test release binaries (Rafael Gonzaga) [#&#8203;45004](https://github.com/nodejs/node/pull/45004)
    
  • [`f0c18f04f0`](https://github.com/nodejs/node/commit/f0c18f04f0)] - **doc**: fix undici version in changelog (Michael Dawson) [#&#8203;44982](https://github.com/nodejs/node/pull/44982)
    
  • [`ffba3218ec`](https://github.com/nodejs/node/commit/ffba3218ec)] - **doc**: add info on fixup to security release process (Michael Dawson) [#&#8203;44807](https://github.com/nodejs/node/pull/44807)
    
  • [`edb92f4510`](https://github.com/nodejs/node/commit/edb92f4510)] - **doc**: add anonrig to collaborators (Yagiz Nizipli) [#&#8203;45002](https://github.com/nodejs/node/pull/45002)
    
  • [`58334a38e8`](https://github.com/nodejs/node/commit/58334a38e8)] - **doc, async_hooks**: improve and add migration hints (Gerhard Stöbich) [#&#8203;45369](https://github.com/nodejs/node/pull/45369)
    
  • [`7225a7d46b`](https://github.com/nodejs/node/commit/7225a7d46b)] - **doc, http**: add Uint8Array as allowed type (Gerhard Stöbich) [#&#8203;45167](https://github.com/nodejs/node/pull/45167)
    
  • [`40a5e22328`](https://github.com/nodejs/node/commit/40a5e22328)] - **esm**: protect ESM loader from prototype pollution (Antoine du Hamel) [#&#8203;45175](https://github.com/nodejs/node/pull/45175)
    
  • [`2e5d8e7239`](https://github.com/nodejs/node/commit/2e5d8e7239)] - **esm**: protect ESM loader from prototype pollution (Antoine du Hamel) [#&#8203;45044](https://github.com/nodejs/node/pull/45044)
    
  • [`c3dd696081`](https://github.com/nodejs/node/commit/c3dd696081)] - **events**: add unique events benchmark (Yagiz Nizipli) [#&#8203;44657](https://github.com/nodejs/node/pull/44657)
    
  • [`daff3b8b09`](https://github.com/nodejs/node/commit/daff3b8b09)] - **fs**: update todo message (Yagiz Nizipli) [#&#8203;45265](https://github.com/nodejs/node/pull/45265)
    
  • [`670def3d6f`](https://github.com/nodejs/node/commit/670def3d6f)] - **fs**: fix opts.filter issue in cpSync (Tho) [#&#8203;45143](https://github.com/nodejs/node/pull/45143)
    
  • [`34bfef91a9`](https://github.com/nodejs/node/commit/34bfef91a9)] - **(SEMVER-MINOR)** **fs**: add recursive watch to linux (Yagiz Nizipli) [#&#8203;45098](https://github.com/nodejs/node/pull/45098)
    
  • [`d89ca1b443`](https://github.com/nodejs/node/commit/d89ca1b443)] - **fs**: trace more fs api (theanarkh) [#&#8203;45095](https://github.com/nodejs/node/pull/45095)
    
  • [`1a04881494`](https://github.com/nodejs/node/commit/1a04881494)] - **http**: headers(Distinct), trailers(Distinct) setters to be no-op (Madhuri) [#&#8203;45176](https://github.com/nodejs/node/pull/45176)
    
  • [`8abc3f732a`](https://github.com/nodejs/node/commit/8abc3f732a)] - **http**: add priority to common http headers (James M Snell) [#&#8203;45045](https://github.com/nodejs/node/pull/45045)
    
  • [`316354e3d3`](https://github.com/nodejs/node/commit/316354e3d3)] - **http2**: improve session close/destroy procedures (Santiago Gimeno) [#&#8203;45115](https://github.com/nodejs/node/pull/45115)
    
  • [`1635140952`](https://github.com/nodejs/node/commit/1635140952)] - **http2**: fix crash on Http2Stream::diagnostic_name() (Santiago Gimeno) [#&#8203;45123](https://github.com/nodejs/node/pull/45123)
    
  • [`94b7f5338c`](https://github.com/nodejs/node/commit/94b7f5338c)] - **http2**: fix debugStream method (Santiago Gimeno) [#&#8203;45129](https://github.com/nodejs/node/pull/45129)
    
  • [`3db37e7d1b`](https://github.com/nodejs/node/commit/3db37e7d1b)] - **inspector**: refactor `inspector/promises` to be more robust (Antoine du Hamel) [#&#8203;45041](https://github.com/nodejs/node/pull/45041)
    
  • [`0478e4063f`](https://github.com/nodejs/node/commit/0478e4063f)] - **lib**: add options to the heap snapshot APIs (Joyee Cheung) [#&#8203;44989](https://github.com/nodejs/node/pull/44989)
    
  • [`a8e901555a`](https://github.com/nodejs/node/commit/a8e901555a)] - **lib**: fix JSDoc issues (Rich Trott) [#&#8203;45243](https://github.com/nodejs/node/pull/45243)
    
  • [`74352842bc`](https://github.com/nodejs/node/commit/74352842bc)] - **lib**: use process.nextTick() instead of setImmediate() (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340)
    
  • [`9f3d2f6879`](https://github.com/nodejs/node/commit/9f3d2f6879)] - **lib**: drop fetch experimental warning (Matteo Collina) [#&#8203;45287](https://github.com/nodejs/node/pull/45287)
    
  • [`e2181e057b`](https://github.com/nodejs/node/commit/e2181e057b)] - **lib**: fix eslint early return (RafaelGSS) [#&#8203;45409](https://github.com/nodejs/node/pull/45409)
    
  • [`d1726692ee`](https://github.com/nodejs/node/commit/d1726692ee)] - **lib**: fix TypeError when converting a detached buffer source (Kohei Ueno) [#&#8203;44020](https://github.com/nodejs/node/pull/44020)
    
  • [`d7470ad986`](https://github.com/nodejs/node/commit/d7470ad986)] - **lib**: fix `AbortSignal.timeout` parameter validation (dnalborczyk) [#&#8203;42856](https://github.com/nodejs/node/pull/42856)
    
  • [`c7b7f2bec2`](https://github.com/nodejs/node/commit/c7b7f2bec2)] - **lib**: add lint rule to protect against `Object.prototype.then` pollution (Antoine du Hamel) [#&#8203;45061](https://github.com/nodejs/node/pull/45061)
    
  • [`9ed9aa8233`](https://github.com/nodejs/node/commit/9ed9aa8233)] - **lib**: add ability to add separate event name to defineEventHandler (James M Snell) [#&#8203;45032](https://github.com/nodejs/node/pull/45032)
    
  • [`8b4a41e23d`](https://github.com/nodejs/node/commit/8b4a41e23d)] - **lib**: fix typo in `pre_execution.js` (Antoine du Hamel) [#&#8203;45039](https://github.com/nodejs/node/pull/45039)
    
  • [`cc2393c9fe`](https://github.com/nodejs/node/commit/cc2393c9fe)] - **lib**: promise version of streams.finished call clean up (Naor Tedgi (Abu Emma)) [#&#8203;44862](https://github.com/nodejs/node/pull/44862)
    
  • [`17ef1bbc8e`](https://github.com/nodejs/node/commit/17ef1bbc8e)] - **lib**: make properties on Blob and URL enumerable (Khafra) [#&#8203;44918](https://github.com/nodejs/node/pull/44918)
    
  • [`8199841e9c`](https://github.com/nodejs/node/commit/8199841e9c)] - **lib**: support more attributes for early hint link (Yagiz Nizipli) [#&#8203;44874](https://github.com/nodejs/node/pull/44874)
    
  • [`88c3bb609b`](https://github.com/nodejs/node/commit/88c3bb609b)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45333](https://github.com/nodejs/node/pull/45333)
    
  • [`a866e8c163`](https://github.com/nodejs/node/commit/a866e8c163)] - **meta**: update collaborator email address in README (Rich Trott) [#&#8203;45251](https://github.com/nodejs/node/pull/45251)
    
  • [`bfbfacad79`](https://github.com/nodejs/node/commit/bfbfacad79)] - **meta**: fix email address typo in README (Rich Trott) [#&#8203;45250](https://github.com/nodejs/node/pull/45250)
    
  • [`0d58bb9531`](https://github.com/nodejs/node/commit/0d58bb9531)] - **meta**: remove dont-land-on-v12 auto labeling (Moshe Atlow) [#&#8203;45233](https://github.com/nodejs/node/pull/45233)
    
  • [`b41b5ba658`](https://github.com/nodejs/node/commit/b41b5ba658)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45238](https://github.com/nodejs/node/pull/45238)
    
  • [`ad9a5bb61f`](https://github.com/nodejs/node/commit/ad9a5bb61f)] - **meta**: move a collaborator to emeritus (Rich Trott) [#&#8203;45160](https://github.com/nodejs/node/pull/45160)
    
  • [`ec8683052b`](https://github.com/nodejs/node/commit/ec8683052b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;45036](https://github.com/nodejs/node/pull/45036)
    
  • [`7900810fb3`](https://github.com/nodejs/node/commit/7900810fb3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45020](https://github.com/nodejs/node/pull/45020)
    
  • [`738144c311`](https://github.com/nodejs/node/commit/738144c311)] - **module**: ensure relative requires work from deleted directories (Bradley Farias) [#&#8203;42384](https://github.com/nodejs/node/pull/42384)
    
  • [`36acf8a13e`](https://github.com/nodejs/node/commit/36acf8a13e)] - **net**: remove \_readableState from debug statement (Rich Trott) [#&#8203;45063](https://github.com/nodejs/node/pull/45063)
    
  • [`aaca54c5c0`](https://github.com/nodejs/node/commit/aaca54c5c0)] - **node-api**: handle no support for external buffers (Michael Dawson) [#&#8203;45181](https://github.com/nodejs/node/pull/45181)
    
  • [`2105f099ea`](https://github.com/nodejs/node/commit/2105f099ea)] - **node-api,test**: fix test_reference_double_free crash (Vladimir Morozov) [#&#8203;44927](https://github.com/nodejs/node/pull/44927)
    
  • [`2fcf851a91`](https://github.com/nodejs/node/commit/2fcf851a91)] - **os**: convert uid and gid to 32-bit signed integers (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340)
    
  • [`dfe4237d77`](https://github.com/nodejs/node/commit/dfe4237d77)] - **perf_hooks**: align toStringTag with other Web Performance implementations (Daeyeon Jeong) [#&#8203;45157](https://github.com/nodejs/node/pull/45157)
    
  • [`9d15da3341`](https://github.com/nodejs/node/commit/9d15da3341)] - **report**: add more memory info (theanarkh) [#&#8203;45254](https://github.com/nodejs/node/pull/45254)
    
  • [`a2620acad7`](https://github.com/nodejs/node/commit/a2620acad7)] - **report**: add rss and use/kernel cpu usage fields (theanarkh) [#&#8203;45043](https://github.com/nodejs/node/pull/45043)
    
  • [`66e1dc4979`](https://github.com/nodejs/node/commit/66e1dc4979)] - **report,doc**: define report version semantics (Gireesh Punathil) [#&#8203;45050](https://github.com/nodejs/node/pull/45050)
    
  • [`86e22b4e19`](https://github.com/nodejs/node/commit/86e22b4e19)] - **src**: track contexts in the Environment instead of AsyncHooks (Joyee Cheung) [#&#8203;45282](https://github.com/nodejs/node/pull/45282)
    
  • [`326d19af3d`](https://github.com/nodejs/node/commit/326d19af3d)] - **src**: resolve TODO related to inspector CVEs (Tobias Nießen) [#&#8203;45341](https://github.com/nodejs/node/pull/45341)
    
  • [`4e45585ca2`](https://github.com/nodejs/node/commit/4e45585ca2)] - **src**: revert is_release to 0 (RafaelGSS) [#&#8203;45315](https://github.com/nodejs/node/pull/45315)
    
  • [`5d480118fb`](https://github.com/nodejs/node/commit/5d480118fb)] - **src**: print nghttp2 logs when using --debug-nghttp2 (Santiago Gimeno) [#&#8203;45209](https://github.com/nodejs/node/pull/45209)
    
  • [`3e46ebda3c`](https://github.com/nodejs/node/commit/3e46ebda3c)] - **src**: trace threadpool event (theanarkh) [#&#8203;44458](https://github.com/nodejs/node/pull/44458)
    
  • [`97547bcd14`](https://github.com/nodejs/node/commit/97547bcd14)] - **src**: lock-free init_process_flags (Jérémy Lal) [#&#8203;45221](https://github.com/nodejs/node/pull/45221)
    
  • [`42db84913b`](https://github.com/nodejs/node/commit/42db84913b)] - **src**: call uv_library_shutdown before DisposePlatform (theanarkh) [#&#8203;45226](https://github.com/nodejs/node/pull/45226)
    
  • [`aa4152a1b6`](https://github.com/nodejs/node/commit/aa4152a1b6)] - **src**: fix `crypto.privateEncrypt` fails first time (liuxingbaoyu) [#&#8203;42793](https://github.com/nodejs/node/pull/42793)
    
  • [`243c141b69`](https://github.com/nodejs/node/commit/243c141b69)] - **src**: clarify OptionEnvvarSettings member names (Chengzhong Wu) [#&#8203;45057](https://github.com/nodejs/node/pull/45057)
    
  • [`5335e29ce7`](https://github.com/nodejs/node/commit/5335e29ce7)] - **src**: let http2 streams end after session close (Santiago Gimeno) [#&#8203;45153](https://github.com/nodejs/node/pull/45153)
    
  • [`8d5682266e`](https://github.com/nodejs/node/commit/8d5682266e)] - **src**: remap invalid file descriptors using `dup2` (Obiwac) [#&#8203;44461](https://github.com/nodejs/node/pull/44461)
    
  • [`4e14ed8878`](https://github.com/nodejs/node/commit/4e14ed8878)] - **src**: remove unused `contextify_global_private_symbol` (Daeyeon Jeong) [#&#8203;45128](https://github.com/nodejs/node/pull/45128)
    
  • [`a8412f5677`](https://github.com/nodejs/node/commit/a8412f5677)] - **src**: forbid running watch mode in REPL (Moshe Atlow) [#&#8203;45058](https://github.com/nodejs/node/pull/45058)
    
  • [`162bf0ddff`](https://github.com/nodejs/node/commit/162bf0ddff)] - **src**: fix test runner coverage (Moshe Atlow) [#&#8203;45055](https://github.com/nodejs/node/pull/45055)
    
  • [`e5b1179630`](https://github.com/nodejs/node/commit/e5b1179630)] - **src**: optimize ALPN callback (Ben Noordhuis) [#&#8203;44875](https://github.com/nodejs/node/pull/44875)
    
  • [`9dc21a1f86`](https://github.com/nodejs/node/commit/9dc21a1f86)] - **src**: simplify ALPN code, remove indirection (Ben Noordhuis) [#&#8203;44875](https://github.com/nodejs/node/pull/44875)
    
  • [`5fce8e3495`](https://github.com/nodejs/node/commit/5fce8e3495)] - **src**: iwyu in cleanup_queue.cc (Shelley Vohr) [#&#8203;44983](https://github.com/nodejs/node/pull/44983)
    
  • [`824dcfc422`](https://github.com/nodejs/node/commit/824dcfc422)] - **src**: return void in InitializeInspector() (Joyee Cheung) [#&#8203;44903](https://github.com/nodejs/node/pull/44903)
    
  • [`7a31ae8ab1`](https://github.com/nodejs/node/commit/7a31ae8ab1)] - **src,lib**: retrieve parsed source map url from v8 (Chengzhong Wu) [#&#8203;44798](https://github.com/nodejs/node/pull/44798)
    
  • [`ccb1c1e9a2`](https://github.com/nodejs/node/commit/ccb1c1e9a2)] - **stream**: add compose operator (Raz Luvaton) [#&#8203;44937](https://github.com/nodejs/node/pull/44937)
    
  • [`e60d9053bc`](https://github.com/nodejs/node/commit/e60d9053bc)] - **stream**: fix duplexify premature destroy (Robert Nagy) [#&#8203;45133](https://github.com/nodejs/node/pull/45133)
    
  • [`bc0ae3e74e`](https://github.com/nodejs/node/commit/bc0ae3e74e)] - **stream**: fix web streams have no Symbol.toStringTag (Jithil P Ponnan) [#&#8203;45117](https://github.com/nodejs/node/pull/45117)
    
  • [`1655532fd2`](https://github.com/nodejs/node/commit/1655532fd2)] - **stream**: don't push null from closed promise [#&#8203;42694](https://github.com/nodejs/node/issues/42694) (David Halls) [#&#8203;45026](https://github.com/nodejs/node/pull/45026)
    
  • [`717db1d46a`](https://github.com/nodejs/node/commit/717db1d46a)] - **test**: skip test-fs-largefile if not enough disk space (Rich Trott) [#&#8203;45339](https://github.com/nodejs/node/pull/45339)
    
  • [`4a80aff16e`](https://github.com/nodejs/node/commit/4a80aff16e)] - **test**: fix catching failed assertion (Pavel Horal) [#&#8203;45222](https://github.com/nodejs/node/pull/45222)
    
  • [`66e7821506`](https://github.com/nodejs/node/commit/66e7821506)] - **test**: defer invocation checks (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340)
    
  • [`43db0fbd49`](https://github.com/nodejs/node/commit/43db0fbd49)] - **test**: fix test-socket-write-after-fin-error (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340)
    
  • [`d5f4d98847`](https://github.com/nodejs/node/commit/d5f4d98847)] - **test**: make `test-eventemitter-asyncresource.js` shorter (Juan José) [#&#8203;45146](https://github.com/nodejs/node/pull/45146)
    
  • [`7428651100`](https://github.com/nodejs/node/commit/7428651100)] - **test**: convert test-debugger-pid to async/await (Luke Karrys) [#&#8203;45179](https://github.com/nodejs/node/pull/45179)
    
  • [`f10f2c1121`](https://github.com/nodejs/node/commit/f10f2c1121)] - **test**: fix textdecoder test for small-icu builds (Richard Lau) [#&#8203;45225](https://github.com/nodejs/node/pull/45225)
    
  • [`eed799bd31`](https://github.com/nodejs/node/commit/eed799bd31)] - **test**: improve test coverage in `test-event-capture-rejections.js` (Juan José) [#&#8203;45148](https://github.com/nodejs/node/pull/45148)
    
  • [`069747bfdd`](https://github.com/nodejs/node/commit/069747bfdd)] - **test**: fix timeout of test-heap-prof.js in riscv devices (Yu Gu) [#&#8203;42674](https://github.com/nodejs/node/pull/42674)
    
  • [`ddb7df76de`](https://github.com/nodejs/node/commit/ddb7df76de)] - **test**: deflake test-http2-empty-frame-without-eof (Santiago Gimeno) [#&#8203;45212](https://github.com/nodejs/node/pull/45212)
    
  • [`02ebde39d3`](https://github.com/nodejs/node/commit/02ebde39d3)] - **test**: use common/tmpdir in watch-mode ipc test (Richard Lau) [#&#8203;45211](https://github.com/nodejs/node/pull/45211)
    
  • [`f9bc40a1fc`](https://github.com/nodejs/node/commit/f9bc40a1fc)] - **test**: use uv_sleep() where possible (Santiago Gimeno) [#&#8203;45124](https://github.com/nodejs/node/pull/45124)
    
  • [`3c7ea23b8f`](https://github.com/nodejs/node/commit/3c7ea23b8f)] - **test**: fix typo in `test/parallel/test-fs-rm.js` (Tim Shilov) [#&#8203;44882](https://github.com/nodejs/node/pull/44882)
    
  • [`b39dcde056`](https://github.com/nodejs/node/commit/b39dcde056)] - **test**: remove a snapshot blob from test-inspect-address-in-use.js (Daeyeon Jeong) [#&#8203;45132](https://github.com/nodejs/node/pull/45132)
    
  • [`fabed9bdc8`](https://github.com/nodejs/node/commit/fabed9bdc8)] - **test**: add test for Module.\_stat (Darshan Sen) [#&#8203;44713](https://github.com/nodejs/node/pull/44713)
    
  • [`2b3b291c97`](https://github.com/nodejs/node/commit/2b3b291c97)] - **test**: watch mode inspect restart repeatedly (Moshe Atlow) [#&#8203;45060](https://github.com/nodejs/node/pull/45060)
    
  • [`17e86e4188`](https://github.com/nodejs/node/commit/17e86e4188)] - **test**: remove experimental-wasm-threads flag (Michaël Zasso) [#&#8203;45074](https://github.com/nodejs/node/pull/45074)
    
  • [`f0480d68e9`](https://github.com/nodejs/node/commit/f0480d68e9)] - **test**: remove unnecessary noop function args to `mustCall()` (Antoine du Hamel) [#&#8203;45047](https://github.com/nodejs/node/pull/45047)
    
  • [`82e6043118`](https://github.com/nodejs/node/commit/82e6043118)] - **test**: mark test-watch-mode\* as flaky on all platforms (Pierrick Bouvier) [#&#8203;45049](https://github.com/nodejs/node/pull/45049)
    
  • [`26a2ae2489`](https://github.com/nodejs/node/commit/26a2ae2489)] - **test**: wrap missing `common.mustCall` (Moshe Atlow) [#&#8203;45064](https://github.com/nodejs/node/pull/45064)
    
  • [`8662399cda`](https://github.com/nodejs/node/commit/8662399cda)] - **test**: remove mentions of `--experimental-async-stack-tagging-api` flag (Simon) [#&#8203;45051](https://github.com/nodejs/node/pull/45051)
    
  • [`71b8d506ed`](https://github.com/nodejs/node/commit/71b8d506ed)] - **test**: improve assertions in `test-repl-unsupported-option.js` (Juan José) [#&#8203;44953](https://github.com/nodejs/node/pull/44953)
    
  • [`dbc696d363`](https://github.com/nodejs/node/commit/dbc696d363)] - **test**: remove unnecessary noop function args to mustCall() (Rich Trott) [#&#8203;45027](https://github.com/nodejs/node/pull/45027)
    
  • [`c1ca19fb06`](https://github.com/nodejs/node/commit/c1ca19fb06)] - **test**: update WPT resources (Khaidi Chu) [#&#8203;44948](https://github.com/nodejs/node/pull/44948)
    
  • [`43677e5a34`](https://github.com/nodejs/node/commit/43677e5a34)] - **test**: skip test depending on `overlapped-checker` when not available (Antoine du Hamel) [#&#8203;45015](https://github.com/nodejs/node/pull/45015)
    
  • [`3519d74e87`](https://github.com/nodejs/node/commit/3519d74e87)] - **test**: improve test coverage for `os` package (Juan José) [#&#8203;44959](https://github.com/nodejs/node/pull/44959)
    
  • [`ea0cfc9a83`](https://github.com/nodejs/node/commit/ea0cfc9a83)] - **test**: add test to improve coverage in http2-compat-serverresponse (Cesar Mario Diaz) [#&#8203;44970](https://github.com/nodejs/node/pull/44970)
    
  • [`482578682c`](https://github.com/nodejs/node/commit/482578682c)] - **test**: improve test coverage in `test-child-process-spawn-argv0.js` (Juan José) [#&#8203;44955](https://github.com/nodejs/node/pull/44955)
    
  • [`a618dc3c3e`](https://github.com/nodejs/node/commit/a618dc3c3e)] - **test**: use CHECK instead of EXPECT where necessary (Tobias Nießen) [#&#8203;44795](https://github.com/nodejs/node/pull/44795)
    
  • [`c59d3b76e6`](https://github.com/nodejs/node/commit/c59d3b76e6)] - **test**: refactor promises to async/await (Madhuri) [#&#8203;44980](https://github.com/nodejs/node/pull/44980)
    
  • [`36c5927c60`](https://github.com/nodejs/node/commit/36c5927c60)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;45165](https://github.com/nodejs/node/pull/45165)
    
  • [`6158d740f3`](https://github.com/nodejs/node/commit/6158d740f3)] - **test_runner**: support function mocking (Colin Ihrig) [#&#8203;45326](https://github.com/nodejs/node/pull/45326)
    
  • [`920804dc46`](https://github.com/nodejs/node/commit/920804dc46)] - **test_runner**: avoid swallowing of asynchronously thrown errors (MURAKAMI Masahiko) [#&#8203;45264](https://github.com/nodejs/node/pull/45264)
    
  • [`8e7f9de45e`](https://github.com/nodejs/node/commit/8e7f9de45e)] - **test_runner**: fix afterEach not running on test failures (Jithil P Ponnan) [#&#8203;45204](https://github.com/nodejs/node/pull/45204)
    
  • [`0040030443`](https://github.com/nodejs/node/commit/0040030443)] - **test_runner**: report tap subtest in order (Moshe Atlow) [#&#8203;45220](https://github.com/nodejs/node/pull/45220)
    
  • [`afa8291c7c`](https://github.com/nodejs/node/commit/afa8291c7c)] - **test_runner**: call {before,after}Each() on suites (Colin Ihrig) [#&#8203;45161](https://github.com/nodejs/node/pull/45161)
    
  • [`ff174b0937`](https://github.com/nodejs/node/commit/ff174b0937)] - **test_runner**: add extra fields in AssertionError YAML (Bryan English) [#&#8203;44952](https://github.com/nodejs/node/pull/44952)
    
  • [`bf868fdfab`](https://github.com/nodejs/node/commit/bf868fdfab)] - **(SEMVER-MINOR)** **tls**: add "ca" property to certificate object (Ben Noordhuis) [#&#8203;44935](https://github.com/nodejs/node/pull/44935)
    
  • [`e8075fd1f8`](https://github.com/nodejs/node/commit/e8075fd1f8)] - **tools**: add automation for updating acorn dependency (Facundo Tuesca) [#&#8203;45357](https://github.com/nodejs/node/pull/45357)
    
  • [`9aa305ff3e`](https://github.com/nodejs/node/commit/9aa305ff3e)] - **tools**: add documentation regarding our api tooling (Claudio Wunder) [#&#8203;45270](https://github.com/nodejs/node/pull/45270)
    
  • [`76cbc07f9b`](https://github.com/nodejs/node/commit/76cbc07f9b)] - **tools**: allow scripts to run from anywhere (Luigi Pinca) [#&#8203;45361](https://github.com/nodejs/node/pull/45361)
    
  • [`aa875a4d6a`](https://github.com/nodejs/node/commit/aa875a4d6a)] - **tools**: update eslint to 8.27.0 (Node.js GitHub Bot) [#&#8203;45358](https://github.com/nodejs/node/pull/45358)
    
  • [`4b71db13ae`](https://github.com/nodejs/node/commit/4b71db13ae)] - **tools**: update eslint to 8.26.0 (Node.js GitHub Bot) [#&#8203;45243](https://github.com/nodejs/node/pull/45243)
    
  • [`63267dfefb`](https://github.com/nodejs/node/commit/63267dfefb)] - **tools**: update lint-md-dependencies to rollup@3.2.5 (Node.js GitHub Bot) [#&#8203;45332](https://github.com/nodejs/node/pull/45332)
    
  • [`e275859138`](https://github.com/nodejs/node/commit/e275859138)] - **tools**: fix stability index generation (Antoine du Hamel) [#&#8203;45346](https://github.com/nodejs/node/pull/45346)
    
  • [`97fe8bacb1`](https://github.com/nodejs/node/commit/97fe8bacb1)] - **tools**: increase macOS cores to 3 on GitHub CI (Rich Trott) [#&#8203;45340](https://github.com/nodejs/node/pull/45340)
    
  • [`eda4ae51ca`](https://github.com/nodejs/node/commit/eda4ae51ca)] - **tools**: add automation for updating base64 dependency (Facundo Tuesca) [#&#8203;45300](https://github.com/nodejs/node/pull/45300)
    
  • [`2ee052f794`](https://github.com/nodejs/node/commit/2ee052f794)] - **tools**: fix `request-ci-failed` comment (Antoine du Hamel) [#&#8203;45291](https://github.com/nodejs/node/pull/45291)
    
  • [`e118dd88fd`](https://github.com/nodejs/node/commit/e118dd88fd)] - **tools**: refactor dynamic strings creation in shell scripts (Antoine du Hamel) [#&#8203;45240](https://github.com/nodejs/node/pull/45240)
    
  • [`ba89cea683`](https://github.com/nodejs/node/commit/ba89cea683)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;45237](https://github.com/nodejs/node/pull/45237)
    
  • [`786f086800`](https://github.com/nodejs/node/commit/786f086800)] - **tools**: use Python 3.11 in GitHub Actions workflows (Luigi Pinca) [#&#8203;45191](https://github.com/nodejs/node/pull/45191)
    
  • [`0738d14fa4`](https://github.com/nodejs/node/commit/0738d14fa4)] - **tools**: fix `request-ci-failed` comment (Antoine du Hamel) [#&#8203;45218](https://github.com/nodejs/node/pull/45218)
    
  • [`49be13ccd8`](https://github.com/nodejs/node/commit/49be13ccd8)] - **tools**: keep Emeriti lists case-insensitive alphabetic (Rich Trott) [#&#8203;45159](https://github.com/nodejs/node/pull/45159)
    
  • [`6e30d2231b`](https://github.com/nodejs/node/commit/6e30d2231b)] - **tools**: update actions/setup-python to v4 (Yagiz Nizipli) [#&#8203;45178](https://github.com/nodejs/node/pull/45178)
    
  • [`a4158692d7`](https://github.com/nodejs/node/commit/a4158692d7)] - **tools**: update V8 gypfiles for RISC-V (Andreas Schwab) [#&#8203;45149](https://github.com/nodejs/node/pull/45149)
    
  • [`c43bc2169f`](https://github.com/nodejs/node/commit/c43bc2169f)] - **tools**: fix `create-or-update-pull-request-action` hash on GHA (Antoine du Hamel) [#&#8203;45166](https://github.com/nodejs/node/pull/45166)
    
  • [`2ccc03ec32`](https://github.com/nodejs/node/commit/2ccc03ec32)] - **tools**: update gr2m/create-or-update-pull-request-action (Luigi Pinca) [#&#8203;45022](https://github.com/nodejs/node/pull/45022)
    
  • [`a70b27629f`](https://github.com/nodejs/node/commit/a70b27629f)] - **tools**: do not use the set-output command in workflows (Luigi Pinca) [#&#8203;45024](https://github.com/nodejs/node/pull/45024)
    
  • [`025e616662`](https://github.com/nodejs/node/commit/025e616662)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;45019](https://github.com/nodejs/node/pull/45019)
    
  • [`732f9a78d3`](https://github.com/nodejs/node/commit/732f9a78d3)] - **trace_events**: fix getCategories (theanarkh) [#&#8203;45092](https://github.com/nodejs/node/pull/45092)
    
  • [`1bc84ce52c`](https://github.com/nodejs/node/commit/1bc84ce52c)] - **url**: remove \t \n \r in url.parse() similar to WHATWG (Rich Trott) [#&#8203;45116](https://github.com/nodejs/node/pull/45116)
    
  • [`84e7388160`](https://github.com/nodejs/node/commit/84e7388160)] - **url**: improve port validation (Rich Trott) [#&#8203;45012](https://github.com/nodejs/node/pull/45012)
    
  • [`02cff4a3d3`](https://github.com/nodejs/node/commit/02cff4a3d3)] - **url**: improve url.parse() compliance with WHATWG URL (Rich Trott) [#&#8203;45011](https://github.com/nodejs/node/pull/45011)
    
  • [`89390a6be2`](https://github.com/nodejs/node/commit/89390a6be2)] - **util**: improve text-decoder performance (Yagiz Nizipli) [#&#8203;45363](https://github.com/nodejs/node/pull/45363)
    
  • [`0deed8daeb`](https://github.com/nodejs/node/commit/0deed8daeb)] - **util**: improve textdecoder decode performance (Yagiz Nizipli) [#&#8203;45294](https://github.com/nodejs/node/pull/45294)
    
  • [`d41f8ffc36`](https://github.com/nodejs/node/commit/d41f8ffc36)] - **(SEMVER-MINOR)** **util**: add MIME utilities ([#&#8203;21128](https://github.com/nodejs/node/issues/21128)) (Bradley Farias) [#&#8203;21128](https://github.com/nodejs/node/pull/21128)
    
    

v19.0.1: 2022-11-04, Version 19.0.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable changes

The following CVEs are fixed in this release:

  • CVE-2022-3602: X.509 Email Address 4-byte Buffer Overflow (High)
  • CVE-2022-3786: X.509 Email Address Variable Length Buffer Overflow (High)
  • CVE-2022-43548: DNS rebinding in --inspect via invalid octal IP address (Medium)

More detailed information on each of the vulnerabilities can be found in November 2022 Security Releases blog post.

Commits
  • [`e58e8d70a8`](https://github.com/nodejs/node/commit/e58e8d70a8)] - **deps**: update archs files for quictls/openssl-3.0.7+quic (RafaelGSS) [#&#8203;45286](https://github.com/nodejs/node/pull/45286)
    
  • [`85f4548d57`](https://github.com/nodejs/node/commit/85f4548d57)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.7+quic (RafaelGSS) [#&#8203;45286](https://github.com/nodejs/node/pull/45286)
    
  • [`43403f56f7`](https://github.com/nodejs/node/commit/43403f56f7)] - **inspector**: harden IP address validation again (Tobias Nießen) [nodejs-private/node-private#354](https://github.com/nodejs-private/node-private/pull/354)
    
    

v19.0.0: 2022-10-18, Version 19.0.0 (Current), @​RafaelGSS and @​ruyadorno

Compare Source

Node.js 19 is here! Highlights include the update of the V8 JavaScript engine to 10.7, HTTP(s)/1.1 KeepAlive enabled by default, and ESM Resolution adjustments.

Node.js 19 will replace Node.js 18 as our ‘Current’ release line when Node.js 18 enters long-term support (LTS) later this month.
As per the release schedule, Node.js 19 will be ‘Current' release for the next 6 months, until April 2023.

Notable Changes
Deprecations and Removals
  • [`7dd2f41c73`](https://github.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#&#8203;44495](https://github.com/nodejs/node/pull/44495)
    
  • [`ada2d053ae`](https://github.com/nodejs/node/commit/ada2d053ae)] - **(SEMVER-MAJOR)** **process**: runtime deprecate coercion to integer in `process.exit()` (Daeyeon Jeong) [#&#8203;44711](https://github.com/nodejs/node/pull/44711)
    
    
HTTP(S)/1.1 KeepAlive by default

Starting with this release, Node.js sets keepAlive to true by default. This means that any outgoing HTTP(s) connection will automatically use HTTP 1.1 Keep-Alive. The default waiting window is 5 seconds.
Enable keep-alive will deliver better throughput as connections are reused by default.

Additionally, the agent is now able to parse the response Keep-Alive which the servers might send. This header instructs the client on how much to stay connected.
On the other side, the Node.js HTTP server will now automatically disconnect idle clients (which are using HTTP Keep-Alive to reuse the connection) when close() is invoked).

Node.js HTTP(S)/1.1 requests may experience a better throughput/performance by default.

Contributed by Paolo Insogna in #​43522

DTrace/SystemTap/ETW Support were removed

The main reason is the lack of resources from the Node.js team. The complexity to keep the support up-to-date has proved not worth it without a clear plan to support those tools. Hence, an issue was raised in the Node.js repository to assess better support, for DTrace in specific.

Contributed by Ben Noordhuis in #​43651 and #​43652

V8 10.7

The V8 engine is updated to version 10.7, which is part of Chromium 107.
This version include a new feature to the JavaScript API: Intl.NumberFormat.

Intl.NumberFormat v3 API is a new TC39 ECMA402 stage 3 proposal
extend the pre-existing Intl.NumberFormat.

The V8 update was a contribution by Michaël Zasso in #​44741.

llhttp 8.1.0

llhttp has been updated to version 8.1.0. Collectively, this version brings many updates to the llhttp API, introducing new callbacks and allow all callback to be pausable.

Contributed by Paolo Insogna in #​44967

Other Notable Changes
  • [`46a3afb579`](https://github.com/nodejs/node/commit/46a3afb579)] - **doc**: graduate webcrypto to stable (Filip Skokan) [#&#8203;44897](https://github.com/nodejs/node/pull/44897)
    
  • [`f594cc85b7`](https://github.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#&#8203;44859](https://github.com/nodejs/node/pull/44859)
    
    
Semver-Major Commits
  • [`53f73d1cfe`](https://github.com/nodejs/node/commit/53f73d1cfe)] - **(SEMVER-MAJOR)** **build**: enable V8's trap handler on Windows (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`06aaf8a1c4`](https://github.com/nodejs/node/commit/06aaf8a1c4)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`aa3a572e6b`](https://github.com/nodejs/node/commit/aa3a572e6b)] - **(SEMVER-MAJOR)** **build**: remove dtrace & etw support (Ben Noordhuis) [#&#8203;43652](https://github.com/nodejs/node/pull/43652)
    
  • [`38f1e2793c`](https://github.com/nodejs/node/commit/38f1e2793c)] - **(SEMVER-MAJOR)** **build**: remove systemtap support (Ben Noordhuis) [#&#8203;43651](https://github.com/nodejs/node/pull/43651)
    
  • [`2849283c4c`](https://github.com/nodejs/node/commit/2849283c4c)] - **(SEMVER-MAJOR)** **crypto**: remove non-standard `webcrypto.Crypto.prototype.CryptoKey` (Antoine du Hamel) [#&#8203;42083](https://github.com/nodejs/node/pull/42083)
    
  • [`a1653ac715`](https://github.com/nodejs/node/commit/a1653ac715)] - **(SEMVER-MAJOR)** **crypto**: do not allow to call setFips from the worker thread (Sergey Petushkov) [#&#8203;43624](https://github.com/nodejs/node/pull/43624)
    
  • [`fd36a8dadb`](https://github.com/nodejs/node/commit/fd36a8dadb)] - **(SEMVER-MAJOR)** **deps**: update llhttp to 8.1.0 (Paolo Insogna) [#&#8203;44967](https://github.com/nodejs/node/pull/44967)
    
  • [`89ecdddaab`](https://github.com/nodejs/node/commit/89ecdddaab)] - **(SEMVER-MAJOR)** **deps**: bump minimum ICU version to 71 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`66fe446efd`](https://github.com/nodejs/node/commit/66fe446efd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0cccb6f`](https://github.com/nodejs/node/commit/0cccb6f27d78) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`88ed027d57`](https://github.com/nodejs/node/commit/88ed027d57)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`7ddb839`](https://github.com/nodejs/node/commit/7ddb8399f9f1) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`26c651c34e`](https://github.com/nodejs/node/commit/26c651c34e)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`1b3a4f0`](https://github.com/nodejs/node/commit/1b3a4f0c34a1) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`c8ff2dfd11`](https://github.com/nodejs/node/commit/c8ff2dfd11)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`b161a08`](https://github.com/nodejs/node/commit/b161a0823165) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`7a8fa2d517`](https://github.com/nodejs/node/commit/7a8fa2d517)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`83b0aaa800`](https://github.com/nodejs/node/commit/83b0aaa800)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on SmartOS (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`7a952e8ea5`](https://github.com/nodejs/node/commit/7a952e8ea5)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`6bd756d7c6`](https://github.com/nodejs/node/commit/6bd756d7c6)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.7.193.13 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`03fb789fb9`](https://github.com/nodejs/node/commit/03fb789fb9)] - **(SEMVER-MAJOR)** **events**: add null check for the signal of EventTarget (Masashi Hirano) [#&#8203;43153](https://github.com/nodejs/node/pull/43153)
    
  • [`a4fa526ddc`](https://github.com/nodejs/node/commit/a4fa526ddc)] - **(SEMVER-MAJOR)** **fs**: add directory autodetection to fsPromises.symlink() (Livia Medeiros) [#&#8203;42894](https://github.com/nodejs/node/pull/42894)
    
  • [`bb4891d8d4`](https://github.com/nodejs/node/commit/bb4891d8d4)] - **(SEMVER-MAJOR)** **fs**: add validateBuffer to improve error (Hirotaka Tagawa / wafuwafu13) [#&#8203;44769](https://github.com/nodejs/node/pull/44769)
    
  • [`950a4411fa`](https://github.com/nodejs/node/commit/950a4411fa)] - **(SEMVER-MAJOR)** **fs**: remove coercion to string in writing methods (Livia Medeiros) [#&#8203;42796](https://github.com/nodejs/node/pull/42796)
    
  • [`41a6d82968`](https://github.com/nodejs/node/commit/41a6d82968)] - **(SEMVER-MAJOR)** **fs**: harden fs.readSync(buffer, options) typecheck (LiviaMedeiros) [#&#8203;42772](https://github.com/nodejs/node/pull/42772)
    
  • [`2275faac2b`](https://github.com/nodejs/node/commit/2275faac2b)] - **(SEMVER-MAJOR)** **fs**: harden fs.read(params, callback) typecheck (LiviaMedeiros) [#&#8203;42772](https://github.com/nodejs/node/pull/42772)
    
  • [`29953a0b88`](https://github.com/nodejs/node/commit/29953a0b88)] - **(SEMVER-MAJOR)** **fs**: harden filehandle.read(params) typecheck (LiviaMedeiros) [#&#8203;42772](https://github.com/nodejs/node/pull/42772)
    
  • [`4267b92604`](https://github.com/nodejs/node/commit/4267b92604)] - **(SEMVER-MAJOR)** **http**: use Keep-Alive by default in global agents (Paolo Insogna) [#&#8203;43522](https://github.com/nodejs/node/pull/43522)
    
  • [`0324529e0f`](https://github.com/nodejs/node/commit/0324529e0f)] - **(SEMVER-MAJOR)** **inspector**: introduce inspector/promises API (Erick Wendel) [#&#8203;44250](https://github.com/nodejs/node/pull/44250)
    
  • [`80270994d6`](https://github.com/nodejs/node/commit/80270994d6)] - **(SEMVER-MAJOR)** **lib**: enable global CustomEvent by default (Daeyeon Jeong) [#&#8203;44860](https://github.com/nodejs/node/pull/44860)
    
  • [`f529f73bd7`](https://github.com/nodejs/node/commit/f529f73bd7)] - **(SEMVER-MAJOR)** **lib**: brand check event handler property receivers (Chengzhong Wu) [#&#8203;44483](https://github.com/nodejs/node/pull/44483)
    
  • [`6de2673a9f`](https://github.com/nodejs/node/commit/6de2673a9f)] - **(SEMVER-MAJOR)** **lib**: enable global WebCrypto by default (Antoine du Hamel) [#&#8203;42083](https://github.com/nodejs/node/pull/42083)
    
  • [`73ba8830d5`](https://github.com/nodejs/node/commit/73ba8830d5)] - **(SEMVER-MAJOR)** **lib**: use private field in AbortController (Joyee Cheung) [#&#8203;43820](https://github.com/nodejs/node/pull/43820)
    
  • [`7dd2f41c73`](https://github.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#&#8203;44495](https://github.com/nodejs/node/pull/44495)
    
  • [`22c39b1ddd`](https://github.com/nodejs/node/commit/22c39b1ddd)] - **(SEMVER-MAJOR)** **path**: the dot will be added(path.format) if it is not specified in `ext` (theanarkh) [#&#8203;44349](https://github.com/nodejs/node/pull/44349)
    
  • [`587367d107`](https://github.com/nodejs/node/commit/587367d107)] - **(SEMVER-MAJOR)** **perf_hooks**: expose webperf global scope interfaces (Chengzhong Wu) [#&#8203;44483](https://github.com/nodejs/node/pull/44483)
    
  • [`364c0e196c`](https://github.com/nodejs/node/commit/364c0e196c)] - **(SEMVER-MAJOR)** **perf_hooks**: fix webperf idlharness (Chengzhong Wu) [#&#8203;44483](https://github.com/nodejs/node/pull/44483)
    
  • [`ada2d053ae`](https://github.com/nodejs/node/commit/ada2d053ae)] - **(SEMVER-MAJOR)** **process**: runtime deprecate coercion to integer in `process.exit()` (Daeyeon Jeong) [#&#8203;44711](https://github.com/nodejs/node/pull/44711)
    
  • [`e0ab8dd637`](https://github.com/nodejs/node/commit/e0ab8dd637)] - **(SEMVER-MAJOR)** **process**: make process.config read only (Sergey Petushkov) [#&#8203;43627](https://github.com/nodejs/node/pull/43627)
    
  • [`481a959adb`](https://github.com/nodejs/node/commit/481a959adb)] - **(SEMVER-MAJOR)** **readline**: remove `question` method from `InterfaceConstructor` (Antoine du Hamel) [#&#8203;44606](https://github.com/nodejs/node/pull/44606)
    
  • [`c9602ce212`](https://github.com/nodejs/node/commit/c9602ce212)] - **(SEMVER-MAJOR)** **src**: use new v8::OOMErrorCallback API (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`19a70c11e4`](https://github.com/nodejs/node/commit/19a70c11e4)] - **(SEMVER-MAJOR)** **src**: override CreateJob instead of PostJob (Clemens Backes) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`fd52c62bee`](https://github.com/nodejs/node/commit/fd52c62bee)] - **(SEMVER-MAJOR)** **src**: use V8\_ENABLE_SANDBOX macro (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`c10988db44`](https://github.com/nodejs/node/commit/c10988db44)] - **(SEMVER-MAJOR)** **src**: use non-deprecated V8 inspector API (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`3efe901dd6`](https://github.com/nodejs/node/commit/3efe901dd6)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 111 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`77e585657f`](https://github.com/nodejs/node/commit/77e585657f)] - **(SEMVER-MAJOR)** **src**: turn embedder api overload into default argument (Alena Khineika) [#&#8203;43629](https://github.com/nodejs/node/pull/43629)
    
  • [`dabda03ea9`](https://github.com/nodejs/node/commit/dabda03ea9)] - **(SEMVER-MAJOR)** **src**: per-environment time origin value (Chengzhong Wu) [#&#8203;43781](https://github.com/nodejs/node/pull/43781)
    
  • [`2e49b99cc2`](https://github.com/nodejs/node/commit/2e49b99cc2)] - **(SEMVER-MAJOR)** **src,test**: disable freezing V8 flags on initialization (Clemens Backes) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`2b32985c62`](https://github.com/nodejs/node/commit/2b32985c62)] - **(SEMVER-MAJOR)** **stream**: use null for the error argument (Luigi Pinca) [#&#8203;44312](https://github.com/nodejs/node/pull/44312)
    
  • [`36805e8524`](https://github.com/nodejs/node/commit/36805e8524)] - **(SEMVER-MAJOR)** **test**: adapt test-repl for V8 update (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`96ef25793d`](https://github.com/nodejs/node/commit/96ef25793d)] - **(SEMVER-MAJOR)** **test**: adapt test-repl-pretty-\*stack to V8 changes (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`71c193e581`](https://github.com/nodejs/node/commit/71c193e581)] - **(SEMVER-MAJOR)** **test**: adapt to new JSON SyntaxError messages (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`b5f1564880`](https://github.com/nodejs/node/commit/b5f1564880)] - **(SEMVER-MAJOR)** **test**: rename always-opt flag to always-turbofan (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`1acf0339dd`](https://github.com/nodejs/node/commit/1acf0339dd)] - **(SEMVER-MAJOR)** **test**: fix test-hash-seed for new V8 versions (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
  • [`57ff476c33`](https://github.com/nodejs/node/commit/57ff476c33)] - **(SEMVER-MAJOR)** **test**: remove duplicate test (Luigi Pinca) [#&#8203;44051](https://github.com/nodejs/node/pull/44051)
    
  • [`77def91bf9`](https://github.com/nodejs/node/commit/77def91bf9)] - **(SEMVER-MAJOR)** **tls,http2**: send fatal alert on ALPN mismatch (Tobias Nießen) [#&#8203;44031](https://github.com/nodejs/node/pull/44031)
    
  • [`4860ad99b9`](https://github.com/nodejs/node/commit/4860ad99b9)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 10.7 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741)
    
    
Semver-Minor Commits
  • [`af0921d877`](https://github.com/nodejs/node/commit/af0921d877)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#&#8203;43942](https://github.com/nodejs/node/pull/43942)
    
  • [`0633e9a0b5`](https://github.com/nodejs/node/commit/0633e9a0b5)] - **(SEMVER-MINOR)** **lib**: add diagnostics channel for process and worker (theanarkh) [#&#8203;44045](https://github.com/nodejs/node/pull/44045)
    
  • [`ca5be26b31`](https://github.com/nodejs/node/commit/ca5be26b31)] - **(SEMVER-MINOR)** **src**: add support for externally shared js builtins (Michael Dawson) [#&#8203;44376](https://github.com/nodejs/node/pull/44376)
    
  • [`e86a638305`](https://github.com/nodejs/node/commit/e86a638305)] - **(SEMVER-MINOR)** **src**: add initial shadow realm support (Chengzhong Wu) [#&#8203;42869](https://github.com/nodejs/node/pull/42869)
    
  • [`71ca6d7d6a`](https://github.com/nodejs/node/commit/71ca6d7d6a)] - **(SEMVER-MINOR)** **util**: add `maxArrayLength` option to Set and Map (Kohei Ueno) [#&#8203;43576](https://github.com/nodejs/node/pull/43576)
    
    
Semver-Patch Commits
  • [`78508028e3`](https://github.com/nodejs/node/commit/78508028e3)] - **bootstrap**: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) [#&#8203;44488](https://github.com/nodejs/node/pull/44488)
    
  • [`5291096ca2`](https://github.com/nodejs/node/commit/5291096ca2)] - **bootstrap**: check more metadata when loading the snapshot (Joyee Cheung) [#&#8203;44132](https://github.com/nodejs/node/pull/44132)
    
  • [`d0f73d383d`](https://github.com/nodejs/node/commit/d0f73d383d)] - **build**: go faster, drop -fno-omit-frame-pointer (Ben Noordhuis) [#&#8203;44452](https://github.com/nodejs/node/pull/44452)
    
  • [`214354fc9f`](https://github.com/nodejs/node/commit/214354fc9f)] - **crypto**: fix webcrypto HMAC "get key length" in deriveKey and generateKey (Filip Skokan) [#&#8203;44917](https://github.com/nodejs/node/pull/44917)
    
  • [`40a0757b21`](https://github.com/nodejs/node/commit/40a0757b21)] - **crypto**: remove webcrypto HKDF and PBKDF2 default-applied lengths (Filip Skokan) [#&#8203;44945](https://github.com/nodejs/node/pull/44945)
    
  • [`eeec3eb16a`](https://github.com/nodejs/node/commit/eeec3eb16a)] - **crypto**: simplify webcrypto ECDH deriveBits (Filip Skokan) [#&#8203;44946](https://github.com/nodejs/node/pull/44946)
    
  • [`0be1c57281`](https://github.com/nodejs/node/commit/0be1c57281)] - **deps**: V8: cherry-pick [`c2792e5`](https://github.com/nodejs/node/commit/c2792e58035f) (Jiawen Geng) [#&#8203;44961](https://github.com/nodejs/node/pull/44961)
    
  • [`488474618c`](https://github.com/nodejs/node/commit/488474618c)] - **deps**: V8: cherry-pick [`c3dffe6`](https://github.com/nodejs/node/commit/c3dffe6e2bda) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958)
    
  • [`34ba631a0b`](https://github.com/nodejs/node/commit/34ba631a0b)] - **deps**: V8: cherry-pick [`e7f0f26`](https://github.com/nodejs/node/commit/e7f0f26f5ef3) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958)
    
  • [`690a837f4f`](https://github.com/nodejs/node/commit/690a837f4f)] - **deps**: V8: cherry-pick [`3d59a3c`](https://github.com/nodejs/node/commit/3d59a3c2c164) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958)
    
  • [`bab8b3aad6`](https://github.com/nodejs/node/commit/bab8b3aad6)] - **deps**: V8: cherry-pick [`8b87039`](https://github.com/nodejs/node/commit/8b8703953616) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958)
    
  • [`37e5152245`](https://github.com/nodejs/node/commit/37e5152245)] - **doc**: add notable changes to latest v18.x release changelog (Danielle Adams) [#&#8203;44996](https://github.com/nodejs/node/pull/44996)
    
  • [`19a909902a`](https://github.com/nodejs/node/commit/19a909902a)] - **doc**: deprecate url.parse() (Rich Trott) [#&#8203;44919](https://github.com/nodejs/node/pull/44919)
    
  • [`6686d9000b`](https://github.com/nodejs/node/commit/6686d9000b)] - **doc**: fix backticks in fs API docs (Livia Medeiros) [#&#8203;44962](https://github.com/nodejs/node/pull/44962)
    
  • [`46a3afb579`](https://github.com/nodejs/node/commit/46a3afb579)] - **doc**: graduate webcrypto to stable (Filip Skokan) [#&#8203;44897](https://github.com/nodejs/node/pull/44897)
    
  • [`6e3c55cc35`](https://github.com/nodejs/node/commit/6e3c55cc35)] - **doc**: fix v16.17.1 security release changelog (Ruy Adorno) [#&#8203;44759](https://github.com/nodejs/node/pull/44759)
    
  • [`77cb88b91c`](https://github.com/nodejs/node/commit/77cb88b91c)] - **doc**: mark `--import` as experimental (Moshe Atlow) [#&#8203;44067](https://github.com/nodejs/node/pull/44067)
    
  • [`46dcfb3c7b`](https://github.com/nodejs/node/commit/46dcfb3c7b)] - **doc,crypto**: update webcrypto docs for global access (Filip Skokan) [#&#8203;44723](https://github.com/nodejs/node/pull/44723)
    
  • [`f594cc85b7`](https://github.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#&#8203;44859](https://github.com/nodejs/node/pull/44859)
    
  • [`3c040348fe`](https://github.com/nodejs/node/commit/3c040348fe)] - ***Revert*** "**esm**: convert `resolve` hook to synchronous" (Jacob Smith) [#&#8203;43526](https://github.com/nodejs/node/pull/43526)
    
  • [`90b634a5a5`](https://github.com/nodejs/node/commit/90b634a5a5)] - **esm**: convert `resolve` hook to synchronous (Jacob Smith) [#&#8203;43363](https://github.com/nodejs/node/pull/43363)
    
  • [`7c06eab1dc`](https://github.com/nodejs/node/commit/7c06eab1dc)] - ***Revert*** "**http**: do not leak error listeners" (Luigi Pinca) [#&#8203;44921](https://github.com/nodejs/node/pull/44921)
    
  • [`464d1c1558`](https://github.com/nodejs/node/commit/464d1c1558)] - **lib**: reset `RegExp` statics before running user code (Antoine du Hamel) [#&#8203;43741](https://github.com/nodejs/node/pull/43741)
    
  • [`15f10515e3`](https://github.com/nodejs/node/commit/15f10515e3)] - **module**: fix segment deprecation for imports field (Guy Bedford) [#&#8203;44883](https://github.com/nodejs/node/pull/44883)
    
  • [`7cdf745fdd`](https://github.com/nodejs/node/commit/7cdf745fdd)] - **perf_hooks**: convert maxSize to IDL value in setResourceTimingBufferSize (Chengzhong Wu) [#&#8203;44902](https://github.com/nodejs/node/pull/44902)
    
  • [`be525d7d04`](https://github.com/nodejs/node/commit/be525d7d04)] - **src**: consolidate exit codes in the code base (Joyee Cheung) [#&#8203;44746](https://github.com/nodejs/node/pull/44746)
    
  • [`d5ce285c8b`](https://github.com/nodejs/node/commit/d5ce285c8b)] - **src**: refactor BaseObject methods (Joyee Cheung) [#&#8203;44796](https://github.com/nodejs/node/pull/44796)
    
  • [`717465433c`](https://github.com/nodejs/node/commit/717465433c)] - **src**: create BaseObject with node::Realm (Chengzhong Wu) [#&#8203;44348](https://github.com/nodejs/node/pull/44348)
    
  • [`45f2258f74`](https://github.com/nodejs/node/commit/45f2258f74)] - **src**: restore IS_RELEASE to 0 (Bryan English) [#&#8203;44758](https://github.com/nodejs/node/pull/44758)
    
  • [`1f54fc25cb`](https://github.com/nodejs/node/commit/1f54fc25cb)] - **src**: use automatic memory mgmt in SecretKeyGen (Tobias Nießen) [#&#8203;44479](https://github.com/nodejs/node/pull/44479)
    
  • [`7371d335ac`](https://github.com/nodejs/node/commit/7371d335ac)] - **src**: use V8 entropy source if RAND_bytes() != 1 (Tobias Nießen) [#&#8203;44493](https://github.com/nodejs/node/pull/44493)
    
  • [`81d9cdb8cd`](https://github.com/nodejs/node/commit/81d9cdb8cd)] - **src**: introduce node::Realm (Chengzhong Wu) [#&#8203;44179](https://github.com/nodejs/node/pull/44179)
    
  • [`ad41c919df`](https://github.com/nodejs/node/commit/ad41c919df)] - **src**: remove v8abbr.h (Tobias Nießen) [#&#8203;44402](https://github.com/nodejs/node/pull/44402)
    
  • [`fddc701d3c`](https://github.com/nodejs/node/commit/fddc701d3c)] - **src**: support diagnostics channel in the snapshot (Joyee Cheung) [#&#8203;44193](https://github.com/nodejs/node/pull/44193)
    
  • [`d70aab663c`](https://github.com/nodejs/node/commit/d70aab663c)] - **src**: support WeakReference in snapshot (Joyee Cheung) [#&#8203;44193](https://github.com/nodejs/node/pull/44193)
    
  • [`4ca398a617`](https://github.com/nodejs/node/commit/4ca398a617)] - **src**: iterate over base objects to prepare for snapshot (Joyee Cheung) [#&#8203;44192](https://github.com/nodejs/node/pull/44192)
    
  • [`8b0e5b19bd`](https://github.com/nodejs/node/commit/8b0e5b19bd)] - **src**: fix cppgc incompatibility in v8 (Shelley Vohr) [#&#8203;43521](https://github.com/nodejs/node/pull/43521)
    
  • [`3fdf6cfad9`](https://github.com/nodejs/node/commit/3fdf6cfad9)] - **stream**: fix `size` function returned from QueuingStrategies (Daeyeon Jeong) [#&#8203;44867](https://github.com/nodejs/node/pull/44867)
    
  • [`331088f4a4`](https://github.com/nodejs/node/commit/331088f4a4)] - ***Revert*** "**tools**: refactor `tools/license2rtf` to ESM" (Richard Lau) [#&#8203;43214](https://github.com/nodejs/node/pull/43214)
    
  • [`30cb1bf8b8`](https://github.com/nodejs/node/commit/30cb1bf8b8)] - **tools**: refactor `tools/license2rtf` to ESM (Feng Yu) [#&#8203;43101](https://github.com/nodejs/node/pull/43101)
    
  • [`a3ff4bfc66`](https://github.com/nodejs/node/commit/a3ff4bfc66)] - **url**: revert "validate ipv4 part length" (Antoine du Hamel) [#&#8203;42940](https://github.com/nodejs/node/pull/42940)
    
  • [`87d0d7a069`](https://github.com/nodejs/node/commit/87d0d7a069)] - **url**: validate ipv4 part length (Yagiz Nizipli) [#&#8203;42915](https://github.com/nodejs/node/pull/42915)
    
  • [`5b1bcf82f1`](https://github.com/nodejs/node/commit/5b1bcf82f1)] - **vm**: make ContextifyContext a BaseObject (Joyee Cheung) [#&#8203;44796](https://github.com/nodejs/node/pull/44796)
    
    

v18.20.2: 2024-04-10, Version 18.20.2 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27980 - Command injection via args parameter of child_process.spawn without shell option enabled on Windows
Commits
  • [`6627222409`](https://github.com/nodejs/node/commit/6627222409)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#564](https://github.com/nodejs-private/node-private/pull/564)
    
    

v18.20.1: 2024-04-03, Version 18.20.1 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27983 - Assertion failed in node::http2::Http2Session::~Http2Session() leads to HTTP/2 server crash- (High)
  • CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium)
  • llhttp version 9.2.1
  • undici version 5.28.4
Commits
  • [`60d24938de`](https://github.com/nodejs/node/commit/60d24938de)] - **deps**: update undici to v5.28.4 (Matteo Collina) [nodejs-private/node-private#577](https://github.com/nodejs-private/node-private/pull/577)
    
  • [`5d4d5848cf`](https://github.com/nodejs/node/commit/5d4d5848cf)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-private#558](https://github.com/nodejs-private/node-private/pull/558)
    
  • [`0fb816dbcc`](https://github.com/nodejs/node/commit/0fb816dbcc)] - **src**: ensure to close stream when destroying session (Anna Henningsen) [nodejs-private/node-private#561](https://github.com/nodejs-private/node-private/pull/561)
    
    

v18.20.0: 2024-03-26, Version 18.20.0 'Hydrogen' (LTS), @​richardlau

Compare Source

Notable Changes
Added support for import attributes

Support has been added for import attributes, to replace the old import
assertions syntax. This will aid migration by making the new syntax available
across all currently supported Node.js release lines.

This adds the with keyword which should be used in place of the previous
assert keyword, which will be removed in a future semver-major Node.js
release.

For example,

import "foo" assert { ... }

should be replaced with

import "foo" with { ... }

For more details, see

Contributed by Nicolò Ribaudo in #​51136
and Antoine du Hamel in #​50140.

Doc deprecation for dirent.path

Please use newly added dirent.parentPath instead.

Contributed by Antoine du Hamel in #​50976
and #​51020.

Experimental node-api feature flags

Introduces an experimental feature to segregate finalizers that affect GC state.
A new type called node_api_nogc_env has been introduced as the const version
of napi_env and node_api_nogc_finalize as a variant of napi_finalize that
accepts a node_api_nogc_env as its first argument.

This feature can be turned off by defining
NODE_API_EXPERIMENTAL_NOGC_ENV_OPT_OUT.

Contributed by Gabriel Schulhof in #​50060.

Root certificates updated to NSS 3.98

Certificates added:

  • Telekom Security TLS ECC Root 2020
  • Telekom Security TLS RSA Root 2023

Certificates removed:

  • Security Communication Root CA
Updated dependencies
  • ada updated to 2.7.6.
  • base64 updated to 0.5.2.
  • c-ares updated to 1.27.0.
  • corepack updated to 0.25.2.
  • ICU updated to 74.2. Includes CLDR 44.1 and Unicode 15.1.
  • npm updated to 10.5.0. Fixes a regression in signals not being passed onto child processes.
  • simdutf8 updated to 4.0.8.
  • Timezone updated to 2024a.
  • zlib updated to 1.3.0.1-motley-40e35a7.
vm: fix V8 compilation cache support for vm.Script

Previously repeated compilation of the same source code using vm.Script
stopped hitting the V8 compilation cache after v16.x when support for
importModuleDynamically was added to vm.Script, resulting in a performance
regression that blocked users (in particular Jest users) from upgrading from
v16.x.

The recent fixes allow the compilation cache to be hit again
for vm.Script when --experimental-vm-modules is not used even in the
presence of the importModuleDynamically option, so that users affected by the
performance regression can now upgrade. Ongoing work is also being done to
enable compilation cache support for vm.CompileFunction.

Contributed by Joyee Cheung in #​49950
and #​50137.

Commits
  • [`c70383b8d4`](https://github.com/nodejs/node/commit/c70383b8d4)] - **build**: support Python 3.12 (Shi Pujin) [#&#8203;50209](https://github.com/nodejs/node/pull/50209)
    
  • [`4b960c3a4a`](https://github.com/nodejs/node/commit/4b960c3a4a)] - **build**: fix incorrect g++ warning message (Richard Lau) [#&#8203;51695](https://github.com/nodejs/node/pull/51695)
    
  • [`8fdea67694`](https://github.com/nodejs/node/commit/8fdea67694)] - **crypto**: update root certificates to NSS 3.98 (Node.js GitHub Bot) [#&#8203;51794](https://github.com/nodejs/node/pull/51794)
    
  • [`812b126dd9`](https://github.com/nodejs/node/commit/812b126dd9)] - **deps**: V8: cherry-pick [`d90d453`](https://github.com/nodejs/node/commit/d90d4533b053) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077)
    
  • [`9ab8c3db87`](https://github.com/nodejs/node/commit/9ab8c3db87)] - **deps**: update c-ares to 1.27.0 (Node.js GitHub Bot) [#&#8203;51846](https://github.com/nodejs/node/pull/51846)
    
  • [`c688680387`](https://github.com/nodejs/node/commit/c688680387)] - **deps**: update c-ares to 1.26.0 (Node.js GitHub Bot) [#&#8203;51582](https://github.com/nodejs/node/pull/51582)
    
  • [`9498ac8a47`](https://github.com/nodejs/node/commit/9498ac8a47)] - **deps**: compile c-ares with C11 support (Michaël Zasso) [#&#8203;51410](https://github.com/nodejs/node/pull/51410)
    
  • [`8fb743642f`](https://github.com/nodejs/node/commit/8fb743642f)] - **deps**: update c-ares to 1.25.0 (Node.js GitHub Bot) [#&#8203;51385](https://github.com/nodejs/node/pull/51385)
    
  • [`7bea2d7c12`](https://github.com/nodejs/node/commit/7bea2d7c12)] - **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) [#&#8203;51274](https://github.com/nodejs/node/pull/51274)
    
  • [`57a38c8f75`](https://github.com/nodejs/node/commit/57a38c8f75)] - **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) [#&#8203;51105](https://github.com/nodejs/node/pull/51105)
    
  • [`b0ca084a6b`](https://github.com/nodejs/node/commit/b0ca084a6b)] - **deps**: update zlib to 1.3-22124f5 (Node.js GitHub Bot) [#&#8203;50910](https://github.com/nodejs/node/pull/50910)
    
  • [`4b43823f37`](https://github.com/nodejs/node/commit/4b43823f37)] - **deps**: update zlib to 1.2.13.1-motley-5daffc7 (Node.js GitHub Bot) [#&#8203;50803](https://github.com/nodejs/node/pull/50803)
    
  • [`f0da591812`](https://github.com/nodejs/node/commit/f0da591812)] - **deps**: update zlib to 1.2.13.1-motley-dfc48fc (Node.js GitHub Bot) [#&#8203;50456](https://github.com/nodejs/node/pull/50456)
    
  • [`16d28a883a`](https://github.com/nodejs/node/commit/16d28a883a)] - **deps**: update base64 to 0.5.2 (Node.js GitHub Bot) [#&#8203;51455](https://github.com/nodejs/node/pull/51455)
    
  • [`13a9e81cb6`](https://github.com/nodejs/node/commit/13a9e81cb6)] - **deps**: update base64 to 0.5.1 (Node.js GitHub Bot) [#&#8203;50629](https://github.com/nodejs/node/pull/50629)
    
  • [`b4502d3ac5`](https://github.com/nodejs/node/commit/b4502d3ac5)] - **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot) [#&#8203;51000](https://github.com/nodejs/node/pull/51000)
    
  • [`183cf8a74a`](https://github.com/nodejs/node/commit/183cf8a74a)] - **deps**: update simdutf to 4.0.4 (Node.js GitHub Bot) [#&#8203;50772](https://github.com/nodejs/node/pull/50772)
    
  • [`11ba8593ea`](https://github.com/nodejs/node/commit/11ba8593ea)] - **deps**: update ada to 2.7.6 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542)
    
  • [`73a946d55c`](https://github.com/nodejs/node/commit/73a946d55c)] - **deps**: update ada to 2.7.5 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542)
    
  • [`cc434c1a39`](https://github.com/nodejs/node/commit/cc434c1a39)] - **deps**: update ada to 2.7.4 (Node.js GitHub Bot) [#&#8203;50815](https://github.com/nodejs/node/pull/50815)
    
  • [`3a3808a6ae`](https://github.com/nodejs/node/commit/3a3808a6ae)] - **deps**: upgrade npm to 10.5.0 (npm team) [#&#8203;51913](https://github.com/nodejs/node/pull/51913)
    
  • [`c8876d765c`](https://github.com/nodejs/node/commit/c8876d765c)] - **deps**: upgrade npm to 10.3.0 (npm team) [#&#8203;51431](https://github.com/nodejs/node/pull/51431)
    
  • [`5aec3af460`](https://github.com/nodejs/node/commit/5aec3af460)] - **deps**: update corepack to 0.25.2 (Node.js GitHub Bot) [#&#8203;51810](https://github.com/nodejs/node/pull/51810)
    
  • [`a593985326`](https://github.com/nodejs/node/commit/a593985326)] - **deps**: update corepack to 0.24.1 (Node.js GitHub Bot) [#&#8203;51459](https://github.com/nodejs/node/pull/51459)
    
  • [`d1a9237bf5`](https://github.com/nodejs/node/commit/d1a9237bf5)] - **deps**: update corepack to 0.24.0 (Node.js GitHub Bot) [#&#8203;51318](https://github.com/nodejs/node/pull/51318)
    
  • [`adac0c7a63`](https://github.com/nodejs/node/commit/adac0c7a63)] - **deps**: update corepack to 0.23.0 (Node.js GitHub Bot) [#&#8203;50563](https://github.com/nodejs/node/pull/50563)
    
  • [`4a6f83e32a`](https://github.com/nodejs/node/commit/4a6f83e32a)] - **deps**: escape Python strings correctly (Michaël Zasso) [#&#8203;50695](https://github.com/nodejs/node/pull/50695)
    
  • [`c13969e52a`](https://github.com/nodejs/node/commit/c13969e52a)] - **deps**: V8: cherry-pick [`ea996ad`](https://github.com/nodejs/node/commit/ea996ad04a68) (Nicolò Ribaudo) [#&#8203;51136](https://github.com/nodejs/node/pull/51136)
    
  • [`6fbf0ba5c3`](https://github.com/nodejs/node/commit/6fbf0ba5c3)] - **deps**: V8: cherry-pick [`a0fd320`](https://github.com/nodejs/node/commit/a0fd3209dda8) (Nicolò Ribaudo) [#&#8203;51136](https://github.com/nodejs/node/pull/51136)
    
  • [`68fd7516e1`](https://github.com/nodejs/node/commit/68fd7516e1)] - **deps**: update timezone to 2024a (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723)
    
  • [`f9b229ebe1`](https://github.com/nodejs/node/commit/f9b229ebe1)] - **deps**: update icu to 74.2 (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723)
    
  • [`90c73d2eb4`](https://github.com/nodejs/node/commit/90c73d2eb4)] - **deps**: update timezone to 2023d (Node.js GitHub Bot) [#&#8203;51461](https://github.com/nodejs/node/pull/51461)
    
  • [`2a2bf57028`](https://github.com/nodejs/node/commit/2a2bf57028)] - **deps**: update icu to 74.1 (Node.js GitHub Bot) [#&#8203;50515](https://github.com/nodejs/node/pull/50515)
    
  • [`425e011e52`](https://github.com/nodejs/node/commit/425e011e52)] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#&#8203;49874](https://github.com/nodejs/node/pull/49874)
    
  • [`58c70344a2`](https://github.com/nodejs/node/commit/58c70344a2)] - **deps**: V8: cherry-pick [`705e374`](https://github.com/nodejs/node/commit/705e374124ae) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`b0e88899e1`](https://github.com/nodejs/node/commit/b0e88899e1)] - **deps**: V8: cherry-pick [`1fada6b`](https://github.com/nodejs/node/commit/1fada6b36f8d) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`d87a810b81`](https://github.com/nodejs/node/commit/d87a810b81)] - **deps**: V8: cherry-pick [`3dd9576`](https://github.com/nodejs/node/commit/3dd9576ce336) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`6d50966876`](https://github.com/nodejs/node/commit/6d50966876)] - **deps**: V8: cherry-pick [`94e8282`](https://github.com/nodejs/node/commit/94e8282325a1) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`fafbacdfec`](https://github.com/nodejs/node/commit/fafbacdfec)] - **deps**: V8: cherry-pick [`9a98f96`](https://github.com/nodejs/node/commit/9a98f96b6d68) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`d4a530ed8d`](https://github.com/nodejs/node/commit/d4a530ed8d)] - **deps**: V8: cherry-pick [`7f5daed`](https://github.com/nodejs/node/commit/7f5daed62d47) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`1ce901b164`](https://github.com/nodejs/node/commit/1ce901b164)] - **deps**: V8: cherry-pick [`c400af4`](https://github.com/nodejs/node/commit/c400af48b5ef) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004)
    
  • [`f232064f35`](https://github.com/nodejs/node/commit/f232064f35)] - **doc**: fix historical experimental fetch flag (Kenrick) [#&#8203;51506](https://github.com/nodejs/node/pull/51506)
    
  • [`194ff6a40f`](https://github.com/nodejs/node/commit/194ff6a40f)] - **(SEMVER-MINOR)** **doc**: add deprecation notice to `dirent.path` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976)
    
  • [`0f09267dc6`](https://github.com/nodejs/node/commit/0f09267dc6)] - **(SEMVER-MINOR)** **doc**: deprecate `dirent.path` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976)
    
  • [`8bfb8f5b2f`](https://github.com/nodejs/node/commit/8bfb8f5b2f)] - **doc,crypto**: further clarify RSA_PKCS1\_PADDING support (Tobias Nießen) [#&#8203;51799](https://github.com/nodejs/node/pull/51799)
    
  • [`c7baf7b274`](https://github.com/nodejs/node/commit/c7baf7b274)] - **doc,crypto**: add changelog and note about disabled RSA_PKCS1\_PADDING (Filip Skokan) [#&#8203;51782](https://github.com/nodejs/node/pull/51782)
    
  • [`a193be3dc2`](https://github.com/nodejs/node/commit/a193be3dc2)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140)
    
  • [`26e8f7793e`](https://github.com/nodejs/node/commit/26e8f7793e)] - **(SEMVER-MINOR)** **fs**: introduce `dirent.parentPath` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976)
    
  • [`5b5e5192f7`](https://github.com/nodejs/node/commit/5b5e5192f7)] - **lib**: fix compileFunction throws range error for negative numbers (Jithil P Ponnan) [#&#8203;49855](https://github.com/nodejs/node/pull/49855)
    
  • [`7552de6806`](https://github.com/nodejs/node/commit/7552de6806)] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`2e05cf1c60`](https://github.com/nodejs/node/commit/2e05cf1c60)] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`a86a2e14a3`](https://github.com/nodejs/node/commit/a86a2e14a3)] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510)
    
  • [`32906ddcac`](https://github.com/nodejs/node/commit/32906ddcac)] - **node-api**: segregate nogc APIs from rest via type system (Gabriel Schulhof) [#&#8203;50060](https://github.com/nodejs/node/pull/50060)
    
  • [`1aa71c26ff`](https://github.com/nodejs/node/commit/1aa71c26ff)] - **node-api**: factor out common code into macros (Gabriel Schulhof) [#&#8203;50664](https://github.com/nodejs/node/pull/50664)
    
  • [`3d0b233f52`](https://github.com/nodejs/node/commit/3d0b233f52)] - **node-api**: introduce experimental feature flags (Gabriel Schulhof) [#&#8203;50991](https://github.com/nodejs/node/pull/50991)
    
  • [`96514a8b9f`](https://github.com/nodejs/node/commit/96514a8b9f)] - **src**: iterate on import attributes array correctly (Michaël Zasso) [#&#8203;50703](https://github.com/nodejs/node/pull/50703)
    
  • [`2c2892bf88`](https://github.com/nodejs/node/commit/2c2892bf88)] - **src**: set ModuleWrap internal fields only once (Joyee Cheung) [#&#8203;49391](https://github.com/nodejs/node/pull/49391)
    
  • [`ff334cb774`](https://github.com/nodejs/node/commit/ff334cb774)] - **src**: cast v8::Object::GetInternalField() return value to v8::Value (Joyee Cheung) [#&#8203;48943](https://github.com/nodejs/node/pull/48943)
    
  • [`270b519971`](https://github.com/nodejs/node/commit/270b519971)] - **stream**: do not defer construction by one microtick (Matteo Collina) [#&#8203;52005](https://github.com/nodejs/node/pull/52005)
    
  • [`95d7a75084`](https://github.com/nodejs/node/commit/95d7a75084)] - **test**: fix dns test case failures after c-ares update to 1.21.0+ (Brad House) [#&#8203;50743](https://github.com/nodejs/node/pull/50743)
    
  • [`cd613e5167`](https://github.com/nodejs/node/commit/cd613e5167)] - **test**: handle relative https redirect (Richard Lau) [#&#8203;51121](https://github.com/nodejs/node/pull/51121)
    
  • [`40f10eafcf`](https://github.com/nodejs/node/commit/40f10eafcf)] - **test**: fix `internet/test-inspector-help-page` (Richard Lau) [#&#8203;51693](https://github.com/nodejs/node/pull/51693)
    
  • [`5e426511b1`](https://github.com/nodejs/node/commit/5e426511b1)] - **test**: deflake test-vm-contextified-script-leak (Joyee Cheung) [#&#8203;49710](https://github.com/nodejs/node/pull/49710)
    
  • [`0b156c6d28`](https://github.com/nodejs/node/commit/0b156c6d28)] - **test**: use checkIfCollectable in vm leak tests (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671)
    
  • [`1586c11b3c`](https://github.com/nodejs/node/commit/1586c11b3c)] - **test**: add checkIfCollectable to test/common/gc.js (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671)
    
  • [`902d8b3d4b`](https://github.com/nodejs/node/commit/902d8b3d4b)] - **test**: fix flaky http-chunk-extensions-limit test (Ethan Arrowood) [#&#8203;51943](https://github.com/nodejs/node/pull/51943)
    
  • [`1743d2bdc1`](https://github.com/nodejs/node/commit/1743d2bdc1)] - **test**: test surrogate pair filenames on windows (Mert Can Altın) [#&#8203;51800](https://github.com/nodejs/node/pull/51800)
    
  • [`1c1a7ec22d`](https://github.com/nodejs/node/commit/1c1a7ec22d)] - **test**: increase platform timeout zlib-brotli-16gb (Rafael Gonzaga) [#&#8203;51792](https://github.com/nodejs/node/pull/51792)
    
  • [`931d02fe3e`](https://github.com/nodejs/node/commit/931d02fe3e)] - **test, v8**: fix wrong import attributes test (Nicolò Ribaudo) [#&#8203;52184](https://github.com/nodejs/node/pull/52184)
    
  • [`d9ea6c1f8d`](https://github.com/nodejs/node/commit/d9ea6c1f8d)] - **tls**: fix order of setting cipher before setting cert and key (Kumar Rishav) [#&#8203;50186](https://github.com/nodejs/node/pull/50186)
    
  • [`3184befa2e`](https://github.com/nodejs/node/commit/3184befa2e)] - **tools**: fix update-icu.sh (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723)
    
  • [`06646e11be`](https://github.com/nodejs/node/commit/06646e11be)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141)
    
  • [`fe66e9d06e`](https://github.com/nodejs/node/commit/fe66e9d06e)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137)
    
  • [`052e095c6b`](https://github.com/nodejs/node/commit/052e095c6b)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137)
    
  • [`9f7899ed0a`](https://github.com/nodejs/node/commit/9f7899ed0a)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137)
    
  • [`6291c107d0`](https://github.com/nodejs/node/commit/6291c107d0)] - **vm**: use default HDO when importModuleDynamically is not set (Joyee Cheung) [#&#8203;49950](https://github.com/nodejs/node/pull/49950)
    
    

v18.19.1: 2024-02-14, Version 18.19.1 'Hydrogen' (LTS), @​RafaelGSS prepared by @​marco-ippolito

Compare Source

Notable changes

This is a security release.

Notable changes
  • CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High)
  • CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High)
  • CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against PKCS#1 v1.5 padding) - (Medium)
  • CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium)
  • undici version 5.28.3
  • npm version 10.2.4
Commits
  • [`69e0a1dba8`](https://github.com/nodejs/node/commit/69e0a1dba8)] - **crypto**: update root certificates to NSS 3.95 (Node.js GitHub Bot) [#&#8203;50805](https://github.com/nodejs/node/pull/50805)
    
  • [`d3d357ab09`](https://github.com/nodejs/node/commit/d3d357ab09)] - **crypto**: disable [PKCS#1](https://github.com/PKCS/node/issues/1) padding for privateDecrypt (Michael Dawson) [nodejs-private/node-private#525](https://github.com/nodejs-private/node-private/pull/525)
    
  • [`3d27175c42`](https://github.com/nodejs/node/commit/3d27175c42)] - **deps**: fix GHSA-f74f-cvh7-c6q6/CVE-2024-24806 (Santiago Gimeno) [#&#8203;51614](https://github.com/nodejs/node/pull/51614)
    
  • [`331558b8ab`](https://github.com/nodejs/node/commit/331558b8ab)] - **deps**: update archs files for openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614)
    
  • [`99b77dfb9c`](https://github.com/nodejs/node/commit/99b77dfb9c)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614)
    
  • [`6cdc71bff1`](https://github.com/nodejs/node/commit/6cdc71bff1)] - **deps**: upgrade npm to 10.2.4 (npm team) [#&#8203;50751](https://github.com/nodejs/node/pull/50751)
    
  • [`911cb33cda`](https://github.com/nodejs/node/commit/911cb33cda)] - **http**: add maximum chunk extension size (Paolo Insogna) [nodejs-private/node-private#520](https://github.com/nodejs-private/node-private/pull/520)
    
  • [`f48b89689d`](https://github.com/nodejs/node/commit/f48b89689d)] - **lib**: update undici to v5.28.3 (Matteo Collina) [nodejs-private/node-private#536](https://github.com/nodejs-private/node-private/pull/536)
    
  • [`e6b4c105e0`](https://github.com/nodejs/node/commit/e6b4c105e0)] - **src**: fix HasOnly(capability) in node::credentials (Tobias Nießen) [nodejs-private/node-private#505](https://github.com/nodejs-private/node-private/pull/505)
    
  • [`97c49076cd`](https://github.com/nodejs/node/commit/97c49076cd)] - **test**: skip test-child-process-stdio-reuse-readable-stdio on Windows (Joyee Cheung) [#&#8203;49621](https://github.com/nodejs/node/pull/49621)
    
  • [`60affdde8e`](https://github.com/nodejs/node/commit/60affdde8e)] - **tools**: add macOS notarization verification step (Ulises Gascón) [#&#8203;50833](https://github.com/nodejs/node/pull/50833)
    
  • [`ccc676a327`](https://github.com/nodejs/node/commit/ccc676a327)] - **tools**: use macOS keychain to notarize the releases (Ulises Gascón) [#&#8203;50715](https://github.com/nodejs/node/pull/50715)
    
  • [`31f1ceb380`](https://github.com/nodejs/node/commit/31f1ceb380)] - **tools**: remove unused file (Ulises Gascon) [#&#8203;50622](https://github.com/nodejs/node/pull/50622)
    
  • [`bd5f6fb92a`](https://github.com/nodejs/node/commit/bd5f6fb92a)] - **tools**: add macOS notarization stapler (Ulises Gascón) [#&#8203;50625](https://github.com/nodejs/node/pull/50625)
    
  • [`4168c4f71b`](https://github.com/nodejs/node/commit/4168c4f71b)] - **tools**: improve macOS notarization process output readability (Ulises Gascón) [#&#8203;50389](https://github.com/nodejs/node/pull/50389)
    
  • [`4622f775aa`](https://github.com/nodejs/node/commit/4622f775aa)] - **tools**: remove unused `version` function (Ulises Gascón) [#&#8203;50390](https://github.com/nodejs/node/pull/50390)
    
  • [`b90804b1e7`](https://github.com/nodejs/node/commit/b90804b1e7)] - **win,tools**: upgrade Windows signing to smctl (Stefan Stojanovic) [#&#8203;50956](https://github.com/nodejs/node/pull/50956)
    
  • [`f31d47e135`](https://github.com/nodejs/node/commit/f31d47e135)] - **zlib**: pause stream if outgoing buffer is full (Matteo Collina) [nodejs-private/node-private#542](https://github.com/nodejs-private/node-private/pull/542)
    
    

v18.19.0: 2023-11-29, Version 18.19.0 'Hydrogen' (LTS), @​targos

Compare Source

Notable Changes
npm updated to v10

After two months of baking time in Node.js 20, npm 10 is backported, so that all
release lines include a supported version of npm. This release includes npm v10.2.3.

Refer to nodejs/Release#884 for the plan to land npm 10.

ESM and customization hook changes
Leverage loaders when resolving subsequent loaders

Loaders now apply to subsequent loaders, for example: --experimental-loader ts-node --experimental-loader loader-written-in-typescript.

Contributed by Maël Nison in #​43772.

New node:module API register for module customization hooks; new initialize hook

There is a new API register available on node:module to specify a file that exports module customization hooks, and pass data to the hooks, and establish communication channels with them. The “define the file with the hooks” part was previously handled by a flag --experimental-loader, but when the hooks moved into a dedicated thread in 20.0.0 there was a need to provide a way to communicate between the main (application) thread and the hooks thread. This can now be done by calling register from the main thread and passing data, including MessageChannel instances.

We encourage users to migrate to an approach that uses --import with register, such as:

node --import ./file-that-calls-register.js ./app.js

Using --import ensures that the customization hooks are registered before any application code runs, even the entry point.

Contributed by João Lenon and Jacob Smith in #​46826, Izaak Schroeder and Jacob Smith in #​48842 and #​48559.

import.meta.resolve unflagged

In ES modules, import.meta.resolve(specifier)
can be used to get an absolute URL string to which specifier resolves, similar
to require.resolve in CommonJS. This aligns Node.js with browsers and other server-side runtimes.

Contributed by Guy Bedford in #​49028.

--experimental-default-type flag to flip module defaults

The new flag --experimental-default-type can be used to flip the default
module system used by Node.js. Input that is already explicitly defined as ES
modules or CommonJS, such as by a package.json "type" field or .mjs/.cjs
file extension or the --input-type flag, is unaffected. What is currently
implicitly CommonJS would instead be interpreted as ES modules under
--experimental-default-type=module:

  • String input provided via --eval or STDIN, if --input-type is unspecified.

  • Files ending in .js or with no extension, if there is no package.json file
    present in the same folder or any parent folder.

  • Files ending in .js or with no extension, if the nearest parent
    package.json field lacks a type field; unless the folder is inside a
    node_modules folder.

In addition, extensionless files are interpreted as Wasm if
--experimental-wasm-modules is passed and the file contains the "magic bytes"
Wasm header.

Contributed by Geoffrey Booth in #​49869.

  • [`ed2d46f4cc`](https://github.com/nodejs/node/commit/ed2d46f4cc)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261)
    
  • [`92734d4480`](https://github.com/nodejs/node/commit/92734d4480)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140)
    
  • [`e96f7ef881`](https://github.com/nodejs/node/commit/e96f7ef881)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141)
    
    
Test runner changes

Many changes to the built-in test runner have been backported. This includes
the following additions:

  • [`b283ae4238`](https://github.com/nodejs/node/commit/b283ae4238)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753)
    
  • [`059b1945d8`](https://github.com/nodejs/node/commit/059b1945d8)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614)
    
  • [`d61a505546`](https://github.com/nodejs/node/commit/d61a505546)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975)
    
  • [`b55eb2a8d1`](https://github.com/nodejs/node/commit/b55eb2a8d1)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639)
    
  • [`05e7f28b40`](https://github.com/nodejs/node/commit/05e7f28b40)] - **(SEMVER-MINOR)** **test_runner**: add initial draft for fakeTimers (Erick Wendel) [#&#8203;47775](https://github.com/nodejs/node/pull/47775)
    
  • [`428301ad27`](https://github.com/nodejs/node/commit/428301ad27)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996)
    
    
Other notable changes
  • [`0c4a84e8e9`](https://github.com/nodejs/node/commit/0c4a84e8e9)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908)
    
  • [`fae60c5841`](https://github.com/nodejs/node/commit/fae60c5841)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745)
    
  • [`17246be158`](https://github.com/nodejs/node/commit/17246be158)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391)
    
  • [`2e9f7284a1`](https://github.com/nodejs/node/commit/2e9f7284a1)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics_channel (Stephen Belanger) [#&#8203;44943](https://github.com/nodejs/node/pull/44943)
    
  • [`cc7bf1f641`](https://github.com/nodejs/node/commit/cc7bf1f641)] - **(SEMVER-MINOR)** **src**: add cjs_module_lexer_version base64\_version (Jithil P Ponnan) [#&#8203;45629](https://github.com/nodejs/node/pull/45629)
    
  • [`b5d16cd8f0`](https://github.com/nodejs/node/commit/b5d16cd8f0)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190)
    
    
Commits
  • [`0d0eb47e2a`](https://github.com/nodejs/node/commit/0d0eb47e2a)] - **benchmark**: add benchmarks for the test_runner (Raz Luvaton) [#&#8203;48931](https://github.com/nodejs/node/pull/48931)
    
  • [`8bb03d10f4`](https://github.com/nodejs/node/commit/8bb03d10f4)] - **benchmark**: differentiate whatwg and legacy url (Yagiz Nizipli) [#&#8203;47377](https://github.com/nodejs/node/pull/47377)
    
  • [`3d7734cbe3`](https://github.com/nodejs/node/commit/3d7734cbe3)] - **benchmark**: lower URL.canParse runs (Khafra) [#&#8203;47351](https://github.com/nodejs/node/pull/47351)
    
  • [`24d3fcf415`](https://github.com/nodejs/node/commit/24d3fcf415)] - **benchmark**: stablize encode benchmark (Joyee Cheung) [#&#8203;46658](https://github.com/nodejs/node/pull/46658)
    
  • [`e08fd98bcc`](https://github.com/nodejs/node/commit/e08fd98bcc)] - **bootstrap**: use correct descriptor for Symbol.{dispose,asyncDispose} (Jordan Harband) [#&#8203;48703](https://github.com/nodejs/node/pull/48703)
    
  • [`cf9ddcd6c8`](https://github.com/nodejs/node/commit/cf9ddcd6c8)] - **bootstrap**: simplify initialization of source map handlers (Joyee Cheung) [#&#8203;48304](https://github.com/nodejs/node/pull/48304)
    
  • [`12d731e431`](https://github.com/nodejs/node/commit/12d731e431)] - **bootstrap**: log isolate data info in mksnapshot debug logs (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768)
    
  • [`d66873871a`](https://github.com/nodejs/node/commit/d66873871a)] - **bootstrap**: store internal loaders in C++ via a binding (Joyee Cheung) [#&#8203;47215](https://github.com/nodejs/node/pull/47215)
    
  • [`1a499c5082`](https://github.com/nodejs/node/commit/1a499c5082)] - **bootstrap**: optimize modules loaded in the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`e0e09caafe`](https://github.com/nodejs/node/commit/e0e09caafe)] - **bootstrap**: make CJS loader snapshotable (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`5f37decd56`](https://github.com/nodejs/node/commit/5f37decd56)] - **bootstrap**: include event_target into the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`c3f56a3dee`](https://github.com/nodejs/node/commit/c3f56a3dee)] - **bootstrap**: support module_wrap binding in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`6466acbc89`](https://github.com/nodejs/node/commit/6466acbc89)] - **bootstrap**: lazy load non-essential modules (Joyee Cheung) [#&#8203;45659](https://github.com/nodejs/node/pull/45659)
    
  • [`a0d4b69df4`](https://github.com/nodejs/node/commit/a0d4b69df4)] - **bootstrap**: lazy-load Performance.prototype.timeOrigin (Joyee Cheung) [#&#8203;46425](https://github.com/nodejs/node/pull/46425)
    
  • [`c1bc8118e3`](https://github.com/nodejs/node/commit/c1bc8118e3)] - **bootstrap**: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) [#&#8203;44488](https://github.com/nodejs/node/pull/44488)
    
  • [`075c57e88b`](https://github.com/nodejs/node/commit/075c57e88b)] - **build**: add symlink to `compile_commands.json` file if needed (Juan José) [#&#8203;49260](https://github.com/nodejs/node/pull/49260)
    
  • [`9e1c531b8d`](https://github.com/nodejs/node/commit/9e1c531b8d)] - **build**: expand when we run internet tests (Michael Dawson) [#&#8203;49218](https://github.com/nodejs/node/pull/49218)
    
  • [`a781d24624`](https://github.com/nodejs/node/commit/a781d24624)] - **build**: fix typo `libray` -> `library` (configure.py) (michalbiesek) [#&#8203;49106](https://github.com/nodejs/node/pull/49106)
    
  • [`f2eccb7a04`](https://github.com/nodejs/node/commit/f2eccb7a04)] - **build**: fix `configure --link-module` (Richard Lau) [#&#8203;48522](https://github.com/nodejs/node/pull/48522)
    
  • [`a44d555494`](https://github.com/nodejs/node/commit/a44d555494)] - **build**: fix IBM i build with Python 3.9 (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056)
    
  • [`7f68e14ea2`](https://github.com/nodejs/node/commit/7f68e14ea2)] - **child_process**: improve spawn performance on Linux (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523)
    
  • [`76e4d4117c`](https://github.com/nodejs/node/commit/76e4d4117c)] - **crypto**: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) [#&#8203;50234](https://github.com/nodejs/node/pull/50234)
    
  • [`7af54279b5`](https://github.com/nodejs/node/commit/7af54279b5)] - **deps**: V8: cherry-pick [`70caf33`](https://github.com/nodejs/node/commit/70caf337c3f6) (kxxt) [#&#8203;50506](https://github.com/nodejs/node/pull/50506)
    
  • [`49c5495339`](https://github.com/nodejs/node/commit/49c5495339)] - **deps**: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) [#&#8203;50085](https://github.com/nodejs/node/pull/50085)
    
  • [`e0fd52bf07`](https://github.com/nodejs/node/commit/e0fd52bf07)] - **deps**: update googletest to [`2dd1c13`](https://github.com/nodejs/node/commit/2dd1c13) (Node.js GitHub Bot) [#&#8203;50081](https://github.com/nodejs/node/pull/50081)
    
  • [`1b103cc567`](https://github.com/nodejs/node/commit/1b103cc567)] - **deps**: update googletest to [`e47544a`](https://github.com/nodejs/node/commit/e47544a) (Node.js GitHub Bot) [#&#8203;49982](https://github.com/nodejs/node/pull/49982)
    
  • [`736c869eeb`](https://github.com/nodejs/node/commit/736c869eeb)] - **deps**: update googletest to [`d1467f5`](https://github.com/nodejs/node/commit/d1467f5) (Node.js GitHub Bot) [#&#8203;49676](https://github.com/nodejs/node/pull/49676)
    
  • [`cd99ee1f35`](https://github.com/nodejs/node/commit/cd99ee1f35)] - **deps**: update googletest to [`8a6feab`](https://github.com/nodejs/node/commit/8a6feab) (Node.js GitHub Bot) [#&#8203;49463](https://github.com/nodejs/node/pull/49463)
    
  • [`5c338573ff`](https://github.com/nodejs/node/commit/5c338573ff)] - **deps**: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) [#&#8203;49252](https://github.com/nodejs/node/pull/49252)
    
  • [`374ec3d623`](https://github.com/nodejs/node/commit/374ec3d623)] - **deps**: update googletest to [`7e33b6a`](https://github.com/nodejs/node/commit/7e33b6a) (Node.js GitHub Bot) [#&#8203;49034](https://github.com/nodejs/node/pull/49034)
    
  • [`c15dd6679b`](https://github.com/nodejs/node/commit/c15dd6679b)] - **deps**: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) [#&#8203;49033](https://github.com/nodejs/node/pull/49033)
    
  • [`588bd5e524`](https://github.com/nodejs/node/commit/588bd5e524)] - **deps**: update googletest to [`c875c4e`](https://github.com/nodejs/node/commit/c875c4e) (Node.js GitHub Bot) [#&#8203;48964](https://github.com/nodejs/node/pull/48964)
    
  • [`6059b59018`](https://github.com/nodejs/node/commit/6059b59018)] - **deps**: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) [#&#8203;48788](https://github.com/nodejs/node/pull/48788)
    
  • [`e455dd4003`](https://github.com/nodejs/node/commit/e455dd4003)] - **deps**: update googletest to [`cc36671`](https://github.com/nodejs/node/commit/cc36671) (Node.js GitHub Bot) [#&#8203;48789](https://github.com/nodejs/node/pull/48789)
    
  • [`747fbb49ca`](https://github.com/nodejs/node/commit/747fbb49ca)] - **deps**: V8: cherry-pick [`1a782f6`](https://github.com/nodejs/node/commit/1a782f6543ae) (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523)
    
  • [`272e55c66f`](https://github.com/nodejs/node/commit/272e55c66f)] - **deps**: upgrade npm to 10.2.3 (npm team) [#&#8203;50531](https://github.com/nodejs/node/pull/50531)
    
  • [`3f6dcc62e5`](https://github.com/nodejs/node/commit/3f6dcc62e5)] - **deps**: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411)
    
  • [`da26cdbe84`](https://github.com/nodejs/node/commit/da26cdbe84)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411)
    
  • [`23069c34b2`](https://github.com/nodejs/node/commit/23069c34b2)] - **deps**: V8: cherry-pick [`d69c793`](https://github.com/nodejs/node/commit/d69c7937c99d) (Michaël Zasso) [#&#8203;46425](https://github.com/nodejs/node/pull/46425)
    
  • [`5f852cc9fe`](https://github.com/nodejs/node/commit/5f852cc9fe)] - **deps**: V8: cherry-pick [`f7d000a`](https://github.com/nodejs/node/commit/f7d000a7ae7b) (Luke Albao) [#&#8203;50344](https://github.com/nodejs/node/pull/50344)
    
  • [`0c4a84e8e9`](https://github.com/nodejs/node/commit/0c4a84e8e9)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908)
    
  • [`8682b90d02`](https://github.com/nodejs/node/commit/8682b90d02)] - **deps**: update simdutf to 3.2.18 (Node.js GitHub Bot) [#&#8203;50091](https://github.com/nodejs/node/pull/50091)
    
  • [`11ecd06aeb`](https://github.com/nodejs/node/commit/11ecd06aeb)] - **deps**: update simdutf to 3.2.17 (Node.js GitHub Bot) [#&#8203;49019](https://github.com/nodejs/node/pull/49019)
    
  • [`43bfe5f020`](https://github.com/nodejs/node/commit/43bfe5f020)] - **deps**: upgrade npm to 10.2.0 (npm team) [#&#8203;50027](https://github.com/nodejs/node/pull/50027)
    
  • [`a140bc284b`](https://github.com/nodejs/node/commit/a140bc284b)] - **deps**: upgrade npm to 10.1.0 (npm team) [#&#8203;49570](https://github.com/nodejs/node/pull/49570)
    
  • [`65ca41c276`](https://github.com/nodejs/node/commit/65ca41c276)] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#&#8203;49423](https://github.com/nodejs/node/pull/49423)
    
  • [`df1ff8e3da`](https://github.com/nodejs/node/commit/df1ff8e3da)] - **deps**: fix call to undeclared functions 'ntohl' and 'htons' (MatteoBax) [#&#8203;49979](https://github.com/nodejs/node/pull/49979)
    
  • [`f228dc7955`](https://github.com/nodejs/node/commit/f228dc7955)] - **deps**: update corepack to 0.22.0 (Node.js GitHub Bot) [#&#8203;50325](https://github.com/nodejs/node/pull/50325)
    
  • [`4324ebab67`](https://github.com/nodejs/node/commit/4324ebab67)] - **deps**: update corepack to 0.21.0 (Node.js GitHub Bot) [#&#8203;50088](https://github.com/nodejs/node/pull/50088)
    
  • [`1cabb77659`](https://github.com/nodejs/node/commit/1cabb77659)] - **deps**: update corepack to 0.20.0 (Node.js GitHub Bot) [#&#8203;49464](https://github.com/nodejs/node/pull/49464)
    
  • [`04227b287e`](https://github.com/nodejs/node/commit/04227b287e)] - **deps**: update c-ares to 1.20.1 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082)
    
  • [`13e69ee11c`](https://github.com/nodejs/node/commit/13e69ee11c)] - **deps**: update c-ares to 1.20.0 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082)
    
  • [`ac717df17e`](https://github.com/nodejs/node/commit/ac717df17e)] - **deps**: update ada to 2.7.2 (Node.js GitHub Bot) [#&#8203;50338](https://github.com/nodejs/node/pull/50338)
    
  • [`6885fc9386`](https://github.com/nodejs/node/commit/6885fc9386)] - **deps**: update ada to 2.6.10 (Node.js GitHub Bot) [#&#8203;49984](https://github.com/nodejs/node/pull/49984)
    
  • [`76c5f4039f`](https://github.com/nodejs/node/commit/76c5f4039f)] - **deps**: update ada to 2.6.9 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`597ea77422`](https://github.com/nodejs/node/commit/597ea77422)] - **deps**: update ada to 2.6.8 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`8e7dcba553`](https://github.com/nodejs/node/commit/8e7dcba553)] - **deps**: update ada to 2.6.7 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`9f2037e8ee`](https://github.com/nodejs/node/commit/9f2037e8ee)] - **deps**: update ada to 2.6.5 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`4723976703`](https://github.com/nodejs/node/commit/4723976703)] - **deps**: update ada to 2.6.3 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340)
    
  • [`7ccb478664`](https://github.com/nodejs/node/commit/7ccb478664)] - **deps**: update undici to 5.26.4 (Node.js GitHub Bot) [#&#8203;50274](https://github.com/nodejs/node/pull/50274)
    
  • [`88f9ebb770`](https://github.com/nodejs/node/commit/88f9ebb770)] - **diagnostics_channel**: fix ref counting bug when reaching zero subscribers (Stephen Belanger) [#&#8203;47520](https://github.com/nodejs/node/pull/47520)
    
  • [`284a869540`](https://github.com/nodejs/node/commit/284a869540)] - **dns**: call `ada::idna::to_ascii` directly from c++ (Yagiz Nizipli) [#&#8203;47920](https://github.com/nodejs/node/pull/47920)
    
  • [`10968370b5`](https://github.com/nodejs/node/commit/10968370b5)] - **doc**: drop github actions check in sec release process (Rafael Gonzaga) [#&#8203;48978](https://github.com/nodejs/node/pull/48978)
    
  • [`07c3b88c74`](https://github.com/nodejs/node/commit/07c3b88c74)] - **doc**: remove `@anonrig` from performance initiative (Yagiz Nizipli) [#&#8203;49641](https://github.com/nodejs/node/pull/49641)
    
  • [`e26b89e8be`](https://github.com/nodejs/node/commit/e26b89e8be)] - **doc**: fix node-api call example (Chengzhong Wu) [#&#8203;49395](https://github.com/nodejs/node/pull/49395)
    
  • [`4c93905f6c`](https://github.com/nodejs/node/commit/4c93905f6c)] - **doc**: add news issue for Diagnostics WG (Michael Dawson) [#&#8203;49306](https://github.com/nodejs/node/pull/49306)
    
  • [`3f1a237a8f`](https://github.com/nodejs/node/commit/3f1a237a8f)] - **doc**: add print results for examples in `StringDecoder` (Jungku Lee) [#&#8203;49326](https://github.com/nodejs/node/pull/49326)
    
  • [`45caad82bb`](https://github.com/nodejs/node/commit/45caad82bb)] - **doc**: update outdated reference to NIST SP 800-131A (Tobias Nießen) [#&#8203;49316](https://github.com/nodejs/node/pull/49316)
    
  • [`62f823d5a2`](https://github.com/nodejs/node/commit/62f823d5a2)] - **doc**: use `cjs` as block code's type in `MockTimers` (Deokjin Kim) [#&#8203;49309](https://github.com/nodejs/node/pull/49309)
    
  • [`0dda724d3f`](https://github.com/nodejs/node/commit/0dda724d3f)] - **doc**: update `options.filter` description for `fs.cp` (Shubham Pandey) [#&#8203;49289](https://github.com/nodejs/node/pull/49289)
    
  • [`4ba11e352b`](https://github.com/nodejs/node/commit/4ba11e352b)] - **doc**: avoid "not currently recommended" (Tobias Nießen) [#&#8203;49300](https://github.com/nodejs/node/pull/49300)
    
  • [`9ca85b58b3`](https://github.com/nodejs/node/commit/9ca85b58b3)] - **doc**: modify param description for end(),write() in `StringDecoder` (Jungku Lee) [#&#8203;49285](https://github.com/nodejs/node/pull/49285)
    
  • [`3f771cab67`](https://github.com/nodejs/node/commit/3f771cab67)] - **doc**: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) [#&#8203;49268](https://github.com/nodejs/node/pull/49268)
    
  • [`f181c37e75`](https://github.com/nodejs/node/commit/f181c37e75)] - **doc**: fix typo in `stream.finished` documentation (Antoine du Hamel) [#&#8203;49271](https://github.com/nodejs/node/pull/49271)
    
  • [`c70945ddc2`](https://github.com/nodejs/node/commit/c70945ddc2)] - **doc**: update description for `percent_encode` sets in `WHATWG API` (Jungku Lee) [#&#8203;49258](https://github.com/nodejs/node/pull/49258)
    
  • [`f9c2a3fb3e`](https://github.com/nodejs/node/commit/f9c2a3fb3e)] - **doc**: clarify use of Uint8Array for n-api (Fedor Indutny) [#&#8203;48742](https://github.com/nodejs/node/pull/48742)
    
  • [`bf22a5f66e`](https://github.com/nodejs/node/commit/bf22a5f66e)] - **doc**: use same name in the doc as in the code (Hyunjin Kim) [#&#8203;49216](https://github.com/nodejs/node/pull/49216)
    
  • [`72bd527fb6`](https://github.com/nodejs/node/commit/72bd527fb6)] - **doc**: add notable-change label mention to PR template (Rafael Gonzaga) [#&#8203;49188](https://github.com/nodejs/node/pull/49188)
    
  • [`2247e52fe0`](https://github.com/nodejs/node/commit/2247e52fe0)] - **doc**: add h1 summary to security release process (Rafael Gonzaga) [#&#8203;49112](https://github.com/nodejs/node/pull/49112)
    
  • [`3b82e9aed1`](https://github.com/nodejs/node/commit/3b82e9aed1)] - **doc**: fix wording in napi_async_init (Tobias Nießen) [#&#8203;49180](https://github.com/nodejs/node/pull/49180)
    
  • [`55171d88a0`](https://github.com/nodejs/node/commit/55171d88a0)] - **doc**: fix `Type` notation in webstreams (Deokjin Kim) [#&#8203;49121](https://github.com/nodejs/node/pull/49121)
    
  • [`79c0497398`](https://github.com/nodejs/node/commit/79c0497398)] - **doc**: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) [#&#8203;49114](https://github.com/nodejs/node/pull/49114)
    
  • [`7ee26fb8df`](https://github.com/nodejs/node/commit/7ee26fb8df)] - **doc**: update with latest security release (Rafael Gonzaga) [#&#8203;49085](https://github.com/nodejs/node/pull/49085)
    
  • [`9ce73964be`](https://github.com/nodejs/node/commit/9ce73964be)] - **doc**: add description for `--port` flag of `node inspect` (Michael Bianco) [#&#8203;48785](https://github.com/nodejs/node/pull/48785)
    
  • [`633b8cd181`](https://github.com/nodejs/node/commit/633b8cd181)] - **doc**: add missing period (Rich Trott) [#&#8203;49094](https://github.com/nodejs/node/pull/49094)
    
  • [`6daa9ec2a4`](https://github.com/nodejs/node/commit/6daa9ec2a4)] - **doc**: add ESM examples in http.md (btea) [#&#8203;47763](https://github.com/nodejs/node/pull/47763)
    
  • [`12b83e81b9`](https://github.com/nodejs/node/commit/12b83e81b9)] - **doc**: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) [#&#8203;43529](https://github.com/nodejs/node/pull/43529)
    
  • [`ead654f976`](https://github.com/nodejs/node/commit/ead654f976)] - **doc**: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) [#&#8203;49008](https://github.com/nodejs/node/pull/49008)
    
  • [`4047947838`](https://github.com/nodejs/node/commit/4047947838)] - **doc**: remove v14 mention (Rafael Gonzaga) [#&#8203;49005](https://github.com/nodejs/node/pull/49005)
    
  • [`833c643eb4`](https://github.com/nodejs/node/commit/833c643eb4)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48898](https://github.com/nodejs/node/pull/48898)
    
  • [`cb43717c97`](https://github.com/nodejs/node/commit/cb43717c97)] - **doc**: add ver of 18.x where Node-api 9 is supported (Michael Dawson) [#&#8203;48876](https://github.com/nodejs/node/pull/48876)
    
  • [`a8d5c16a2a`](https://github.com/nodejs/node/commit/a8d5c16a2a)] - **doc**: include experimental features assessment (Rafael Gonzaga) [#&#8203;48824](https://github.com/nodejs/node/pull/48824)
    
  • [`e6d8735e2b`](https://github.com/nodejs/node/commit/e6d8735e2b)] - **doc**: add new TSC members (Michael Dawson) [#&#8203;48841](https://github.com/nodejs/node/pull/48841)
    
  • [`d4fe00d0c7`](https://github.com/nodejs/node/commit/d4fe00d0c7)] - **doc**: refactor node-api support matrix (Michael Dawson) [#&#8203;48774](https://github.com/nodejs/node/pull/48774)
    
  • [`629132d84c`](https://github.com/nodejs/node/commit/629132d84c)] - **doc**: declare `path` on example of `async_hooks.executionAsyncId()` (Deokjin Kim) [#&#8203;48556](https://github.com/nodejs/node/pull/48556)
    
  • [`dfd368ac9f`](https://github.com/nodejs/node/commit/dfd368ac9f)] - **doc**: remove the . in the end to reduce confusing (Jason) [#&#8203;48719](https://github.com/nodejs/node/pull/48719)
    
  • [`74d8f96413`](https://github.com/nodejs/node/commit/74d8f96413)] - **doc**: nodejs-social over nodejs/tweet (Rafael Gonzaga) [#&#8203;48769](https://github.com/nodejs/node/pull/48769)
    
  • [`73a7e00d06`](https://github.com/nodejs/node/commit/73a7e00d06)] - **doc**: add missing history info for `import.meta.resolve` (Antoine du Hamel) [#&#8203;49700](https://github.com/nodejs/node/pull/49700)
    
  • [`c20fdb4e52`](https://github.com/nodejs/node/commit/c20fdb4e52)] - **doc**: edit `import.meta.resolve` documentation (Antoine du Hamel) [#&#8203;49247](https://github.com/nodejs/node/pull/49247)
    
  • [`1ac389ecef`](https://github.com/nodejs/node/commit/1ac389ecef)] - **doc**: update module hooks docs (Geoffrey Booth) [#&#8203;49265](https://github.com/nodejs/node/pull/49265)
    
  • [`ed2d46f4cc`](https://github.com/nodejs/node/commit/ed2d46f4cc)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261)
    
  • [`258df0e72d`](https://github.com/nodejs/node/commit/258df0e72d)] - **doc**: add signature for `module.register` (Geoffrey Booth) [#&#8203;49251](https://github.com/nodejs/node/pull/49251)
    
  • [`58eaf3f6ae`](https://github.com/nodejs/node/commit/58eaf3f6ae)] - **doc**: caveat unavailability of `import.meta.resolve` in custom loaders (Jacob Smith) [#&#8203;49242](https://github.com/nodejs/node/pull/49242)
    
  • [`2fef28b2b9`](https://github.com/nodejs/node/commit/2fef28b2b9)] - **doc**: fix name of the flag in `initialize()` docs (Antoine du Hamel) [#&#8203;49158](https://github.com/nodejs/node/pull/49158)
    
  • [`15280fb42c`](https://github.com/nodejs/node/commit/15280fb42c)] - **doc**: add steps about signing the binary in single-executable docs (Darshan Sen) [#&#8203;46764](https://github.com/nodejs/node/pull/46764)
    
  • [`e374ba296c`](https://github.com/nodejs/node/commit/e374ba296c)] - **doc**: add "type" to test runner event details (Phil Nash) [#&#8203;49014](https://github.com/nodejs/node/pull/49014)
    
  • [`ec0a6c1f1b`](https://github.com/nodejs/node/commit/ec0a6c1f1b)] - **doc**: add new reporter events to custom reporter examples (Chemi Atlow) [#&#8203;48903](https://github.com/nodejs/node/pull/48903)
    
  • [`e8a32fb49b`](https://github.com/nodejs/node/commit/e8a32fb49b)] - **doc**: change duration to duration_ms on test documentation (Ardi_Nugraha) [#&#8203;48892](https://github.com/nodejs/node/pull/48892)
    
  • [`2b30c8b8a3`](https://github.com/nodejs/node/commit/2b30c8b8a3)] - **doc**: fix `globalPreload` example (bmacnaughton) [#&#8203;50300](https://github.com/nodejs/node/pull/50300)
    
  • [`8a57182769`](https://github.com/nodejs/node/commit/8a57182769)] - **doc,test**: extend the list of platforms supported by single-executables (Darshan Sen) [#&#8203;47026](https://github.com/nodejs/node/pull/47026)
    
  • [`92734d4480`](https://github.com/nodejs/node/commit/92734d4480)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140)
    
  • [`c3c945e654`](https://github.com/nodejs/node/commit/c3c945e654)] - **esm**: bypass CommonJS loader under --default-type (Geoffrey Booth) [#&#8203;49986](https://github.com/nodejs/node/pull/49986)
    
  • [`fe691984b2`](https://github.com/nodejs/node/commit/fe691984b2)] - **esm**: unflag extensionless javascript and wasm in module scope (Geoffrey Booth) [#&#8203;49974](https://github.com/nodejs/node/pull/49974)
    
  • [`56bd9a88ac`](https://github.com/nodejs/node/commit/56bd9a88ac)] - **esm**: --experimental-default-type flag to flip module defaults (Geoffrey Booth) [#&#8203;49869](https://github.com/nodejs/node/pull/49869)
    
  • [`72644d62e7`](https://github.com/nodejs/node/commit/72644d62e7)] - **esm**: improve JSDoc annotation of internal functions (Antoine du Hamel) [#&#8203;49959](https://github.com/nodejs/node/pull/49959)
    
  • [`957725f601`](https://github.com/nodejs/node/commit/957725f601)] - **esm**: require braces for modules code (Geoffrey Booth) [#&#8203;49657](https://github.com/nodejs/node/pull/49657)
    
  • [`c12685f82d`](https://github.com/nodejs/node/commit/c12685f82d)] - **esm**: fix cache collision on JSON files using file: URL (Antoine du Hamel) [#&#8203;49887](https://github.com/nodejs/node/pull/49887)
    
  • [`ed8dd33493`](https://github.com/nodejs/node/commit/ed8dd33493)] - **esm**: identify parent importing a url with invalid host (Jacob Smith) [#&#8203;49736](https://github.com/nodejs/node/pull/49736)
    
  • [`46d730ab75`](https://github.com/nodejs/node/commit/46d730ab75)] - **esm**: fix return type of `import.meta.resolve` (Antoine du Hamel) [#&#8203;49698](https://github.com/nodejs/node/pull/49698)
    
  • [`12cb700478`](https://github.com/nodejs/node/commit/12cb700478)] - **esm**: update loaders warning (Geoffrey Booth) [#&#8203;49633](https://github.com/nodejs/node/pull/49633)
    
  • [`47193a347e`](https://github.com/nodejs/node/commit/47193a347e)] - **esm**: fix support for `URL` instances in `register` (Antoine du Hamel) [#&#8203;49655](https://github.com/nodejs/node/pull/49655)
    
  • [`51ced0f1a1`](https://github.com/nodejs/node/commit/51ced0f1a1)] - **esm**: clarify ERR_REQUIRE_ESM errors (Daniel Compton) [#&#8203;49521](https://github.com/nodejs/node/pull/49521)
    
  • [`4be5612bae`](https://github.com/nodejs/node/commit/4be5612bae)] - **esm**: remove return value for `Module.register` (Antoine du Hamel) [#&#8203;49529](https://github.com/nodejs/node/pull/49529)
    
  • [`0875867e27`](https://github.com/nodejs/node/commit/0875867e27)] - **esm**: refactor test-esm-loader-resolve-type (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493)
    
  • [`9b7c9d93e9`](https://github.com/nodejs/node/commit/9b7c9d93e9)] - **esm**: refactor test-esm-named-exports (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493)
    
  • [`d1f5514917`](https://github.com/nodejs/node/commit/d1f5514917)] - **esm**: refactor mocking test (Geoffrey Booth) [#&#8203;49465](https://github.com/nodejs/node/pull/49465)
    
  • [`01ca6d277d`](https://github.com/nodejs/node/commit/01ca6d277d)] - **esm**: fix `globalPreload` warning (Antoine du Hamel) [#&#8203;49069](https://github.com/nodejs/node/pull/49069)
    
  • [`c1a84398b4`](https://github.com/nodejs/node/commit/c1a84398b4)] - **esm**: unflag import.meta.resolve (Guy Bedford) [#&#8203;49028](https://github.com/nodejs/node/pull/49028)
    
  • [`ef43f084e9`](https://github.com/nodejs/node/commit/ef43f084e9)] - **esm**: import.meta.resolve exact module not found errors should return (Guy Bedford) [#&#8203;49038](https://github.com/nodejs/node/pull/49038)
    
  • [`385f24c9cc`](https://github.com/nodejs/node/commit/385f24c9cc)] - **esm**: protect `ERR_UNSUPPORTED_DIR_IMPORT` against prototype pollution (Antoine du Hamel) [#&#8203;49060](https://github.com/nodejs/node/pull/49060)
    
  • [`10e7c3a376`](https://github.com/nodejs/node/commit/10e7c3a376)] - **esm**: add `initialize` hook, integrate with `register` (Izaak Schroeder) [#&#8203;48842](https://github.com/nodejs/node/pull/48842)
    
  • [`f96b610268`](https://github.com/nodejs/node/commit/f96b610268)] - **esm**: fix typo `parentUrl` -> `parentURL` (Antoine du Hamel) [#&#8203;48999](https://github.com/nodejs/node/pull/48999)
    
  • [`03c1b5e647`](https://github.com/nodejs/node/commit/03c1b5e647)] - **esm**: unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) [#&#8203;48559](https://github.com/nodejs/node/pull/48559)
    
  • [`63aa5d7270`](https://github.com/nodejs/node/commit/63aa5d7270)] - **esm**: add back `globalPreload` tests and fix failing ones (Antoine du Hamel) [#&#8203;48779](https://github.com/nodejs/node/pull/48779)
    
  • [`1c7be606f1`](https://github.com/nodejs/node/commit/1c7be606f1)] - **esm**: remove support for arrays in `import` internal method (Antoine du Hamel) [#&#8203;48296](https://github.com/nodejs/node/pull/48296)
    
  • [`655111fa00`](https://github.com/nodejs/node/commit/655111fa00)] - **esm**: handle `globalPreload` hook returning a nullish value (Antoine du Hamel) [#&#8203;48249](https://github.com/nodejs/node/pull/48249)
    
  • [`9938a8bf13`](https://github.com/nodejs/node/commit/9938a8bf13)] - **esm**: handle more error types thrown from the loader thread (Antoine du Hamel) [#&#8203;48247](https://github.com/nodejs/node/pull/48247)
    
  • [`8cab32a5d1`](https://github.com/nodejs/node/commit/8cab32a5d1)] - **esm**: do not use `'beforeExit'` on the main thread (Antoine du Hamel) [#&#8203;47964](https://github.com/nodejs/node/pull/47964)
    
  • [`b61efcce95`](https://github.com/nodejs/node/commit/b61efcce95)] - **esm**: rename `URLCanParse` to be consistent (Antoine du Hamel) [#&#8203;47668](https://github.com/nodejs/node/pull/47668)
    
  • [`ca20f5931d`](https://github.com/nodejs/node/commit/ca20f5931d)] - **esm**: remove support for deprecated hooks (Antoine du Hamel) [#&#8203;47580](https://github.com/nodejs/node/pull/47580)
    
  • [`5de37a1e37`](https://github.com/nodejs/node/commit/5de37a1e37)] - **esm**: initialize `import.meta` on eval (Antoine du Hamel) [#&#8203;47551](https://github.com/nodejs/node/pull/47551)
    
  • [`39fbce7313`](https://github.com/nodejs/node/commit/39fbce7313)] - **esm**: propagate `process.exit` from the loader thread to the main thread (Antoine du Hamel) [#&#8203;47548](https://github.com/nodejs/node/pull/47548)
    
  • [`2a528b76e6`](https://github.com/nodejs/node/commit/2a528b76e6)] - **esm**: avoid try/catch when validating urls (Yagiz Nizipli) [#&#8203;47541](https://github.com/nodejs/node/pull/47541)
    
  • [`bac9b1758f`](https://github.com/nodejs/node/commit/bac9b1758f)] - **esm**: move hook execution to separate thread (Jacob Smith) [#&#8203;44710](https://github.com/nodejs/node/pull/44710)
    
  • [`dfa444477a`](https://github.com/nodejs/node/commit/dfa444477a)] - **esm**: skip file: URL conversion to path when possible (Antoine du Hamel) [#&#8203;46305](https://github.com/nodejs/node/pull/46305)
    
  • [`45de8d1bd7`](https://github.com/nodejs/node/commit/45de8d1bd7)] - **esm**: allow resolve to return import assertions (Geoffrey Booth) [#&#8203;46153](https://github.com/nodejs/node/pull/46153)
    
  • [`5ffc90a06b`](https://github.com/nodejs/node/commit/5ffc90a06b)] - **esm**: move hooks handling into separate class (Geoffrey Booth) [#&#8203;45869](https://github.com/nodejs/node/pull/45869)
    
  • [`490b598dbf`](https://github.com/nodejs/node/commit/490b598dbf)] - **esm**: leverage loaders when resolving subsequent loaders (Maël Nison) [#&#8203;43772](https://github.com/nodejs/node/pull/43772)
    
  • [`acd987287c`](https://github.com/nodejs/node/commit/acd987287c)] - **events**: remove weak listener for event target (Raz Luvaton) [#&#8203;48952](https://github.com/nodejs/node/pull/48952)
    
  • [`69b7f91a92`](https://github.com/nodejs/node/commit/69b7f91a92)] - **fs**: remove redundant code in readableWebStream() (Deokjin Kim) [#&#8203;49298](https://github.com/nodejs/node/pull/49298)
    
  • [`ae8bb162b4`](https://github.com/nodejs/node/commit/ae8bb162b4)] - **fs**: remove redundant `nullCheck` (Livia Medeiros) [#&#8203;48826](https://github.com/nodejs/node/pull/48826)
    
  • [`48c25b154b`](https://github.com/nodejs/node/commit/48c25b154b)] - **fs**: make `mkdtemp` accept buffers and URL (LiviaMedeiros) [#&#8203;48828](https://github.com/nodejs/node/pull/48828)
    
  • [`edf46c1b59`](https://github.com/nodejs/node/commit/edf46c1b59)] - **fs**: move fs_use_promises_symbol to per-isolate symbols (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768)
    
  • [`fe41d22afc`](https://github.com/nodejs/node/commit/fe41d22afc)] - **fs**: use kResistStopPropagation (Chemi Atlow) [#&#8203;48521](https://github.com/nodejs/node/pull/48521)
    
  • [`7c758f60ab`](https://github.com/nodejs/node/commit/7c758f60ab)] - **fs**: fix readdir recursive sync & callback (Ethan Arrowood) [#&#8203;48698](https://github.com/nodejs/node/pull/48698)
    
  • [`8874b2e11d`](https://github.com/nodejs/node/commit/8874b2e11d)] - **http**: start connections checking interval on listen (Paolo Insogna) [#&#8203;48611](https://github.com/nodejs/node/pull/48611)
    
  • [`29697229b6`](https://github.com/nodejs/node/commit/29697229b6)] - **https**: fix connection checking interval not clearing on server close (Nitzan Uziely) [#&#8203;48383](https://github.com/nodejs/node/pull/48383)
    
  • [`981aa7866d`](https://github.com/nodejs/node/commit/981aa7866d)] - **lib**: fix MIME overmatch in data URLs (André Alves) [#&#8203;49104](https://github.com/nodejs/node/pull/49104)
    
  • [`fe26f8a860`](https://github.com/nodejs/node/commit/fe26f8a860)] - **lib**: merge cjs and esm package json reader caches (Yagiz Nizipli) [#&#8203;48477](https://github.com/nodejs/node/pull/48477)
    
  • [`17246be158`](https://github.com/nodejs/node/commit/17246be158)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391)
    
  • [`2e9f7284a1`](https://github.com/nodejs/node/commit/2e9f7284a1)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics_channel (Stephen Belanger) [#&#8203;44943](https://github.com/nodejs/node/pull/44943)
    
  • [`04dad9c2f6`](https://github.com/nodejs/node/commit/04dad9c2f6)] - **lib**: fix BroadcastChannel initialization location (Shelley Vohr) [#&#8203;46864](https://github.com/nodejs/node/pull/46864)
    
  • [`671d2c0067`](https://github.com/nodejs/node/commit/671d2c0067)] - **lib**: fix DOMException property descriptors after being lazy loaded (Filip Skokan) [#&#8203;46799](https://github.com/nodejs/node/pull/46799)
    
  • [`9a4b57d6d4`](https://github.com/nodejs/node/commit/9a4b57d6d4)] - **lib**: improve esm resolve performance (Yagiz Nizipli) [#&#8203;46652](https://github.com/nodejs/node/pull/46652)
    
  • [`c6b2f56723`](https://github.com/nodejs/node/commit/c6b2f56723)] - **lib**: lazy-load deps in modules/run_main.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`baa280a4f6`](https://github.com/nodejs/node/commit/baa280a4f6)] - **lib**: lazy-load deps in source_map_cache.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`00bdb72b6e`](https://github.com/nodejs/node/commit/00bdb72b6e)] - **lib**: add getLazy() method to internal/util (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`b77a6b2376`](https://github.com/nodejs/node/commit/b77a6b2376)] - **loader**: use default loader as cascaded loader in the in loader worker (Joyee Cheung) [#&#8203;47620](https://github.com/nodejs/node/pull/47620)
    
  • [`7778e190b0`](https://github.com/nodejs/node/commit/7778e190b0)] - **meta**: move Trott to TSC regular member (Rich Trott) [#&#8203;50297](https://github.com/nodejs/node/pull/50297)
    
  • [`5b9575dd30`](https://github.com/nodejs/node/commit/5b9575dd30)] - **meta**: ping TSC for offboarding (Tobias Nießen) [#&#8203;50147](https://github.com/nodejs/node/pull/50147)
    
  • [`d24c3a0692`](https://github.com/nodejs/node/commit/d24c3a0692)] - **meta**: update website team with new name (Rich Trott) [#&#8203;49883](https://github.com/nodejs/node/pull/49883)
    
  • [`332d2aedb4`](https://github.com/nodejs/node/commit/332d2aedb4)] - **meta**: fix linter error (Antoine du Hamel) [#&#8203;49755](https://github.com/nodejs/node/pull/49755)
    
  • [`dc70c444f4`](https://github.com/nodejs/node/commit/dc70c444f4)] - **meta**: add primordials strategic initiative (Benjamin Gruenbaum) [#&#8203;49706](https://github.com/nodejs/node/pull/49706)
    
  • [`213a9f8a4b`](https://github.com/nodejs/node/commit/213a9f8a4b)] - **meta**: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot\[bot]) [#&#8203;49437](https://github.com/nodejs/node/pull/49437)
    
  • [`2827779faa`](https://github.com/nodejs/node/commit/2827779faa)] - **meta**: remove modules team from CODEOWNERS (Benjamin Gruenbaum) [#&#8203;49412](https://github.com/nodejs/node/pull/49412)
    
  • [`5d6daf0d01`](https://github.com/nodejs/node/commit/5d6daf0d01)] - **meta**: add test/reporters to codeowners (Chemi Atlow) [#&#8203;49186](https://github.com/nodejs/node/pull/49186)
    
  • [`dee7dc5d54`](https://github.com/nodejs/node/commit/dee7dc5d54)] - **meta**: bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot\[bot]) [#&#8203;50000](https://github.com/nodejs/node/pull/50000)
    
  • [`98294fdeee`](https://github.com/nodejs/node/commit/98294fdeee)] - **meta**: bump actions/cache from 3.3.1 to 3.3.2 (dependabot\[bot]) [#&#8203;50003](https://github.com/nodejs/node/pull/50003)
    
  • [`79270327d0`](https://github.com/nodejs/node/commit/79270327d0)] - **meta**: bump github/codeql-action from 2.21.5 to 2.21.9 (dependabot\[bot]) [#&#8203;50002](https://github.com/nodejs/node/pull/50002)
    
  • [`6591a03c89`](https://github.com/nodejs/node/commit/6591a03c89)] - **meta**: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot\[bot]) [#&#8203;49438](https://github.com/nodejs/node/pull/49438)
    
  • [`3a107f80bc`](https://github.com/nodejs/node/commit/3a107f80bc)] - **meta**: bump actions/checkout from 3.6.0 to 4.1.0 (dependabot\[bot]) [#&#8203;50001](https://github.com/nodejs/node/pull/50001)
    
  • [`26c5c3c4a2`](https://github.com/nodejs/node/commit/26c5c3c4a2)] - **meta**: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot\[bot]) [#&#8203;49436](https://github.com/nodejs/node/pull/49436)
    
  • [`0fc0b88d97`](https://github.com/nodejs/node/commit/0fc0b88d97)] - **meta**: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot\[bot]) [#&#8203;49435](https://github.com/nodejs/node/pull/49435)
    
  • [`dad5785d5d`](https://github.com/nodejs/node/commit/dad5785d5d)] - **meta**: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot\[bot]) [#&#8203;49434](https://github.com/nodejs/node/pull/49434)
    
  • [`155a275acb`](https://github.com/nodejs/node/commit/155a275acb)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;49264](https://github.com/nodejs/node/pull/49264)
    
  • [`bd17f0b992`](https://github.com/nodejs/node/commit/bd17f0b992)] - **meta**: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) [#&#8203;49189](https://github.com/nodejs/node/pull/49189)
    
  • [`f6e68a0238`](https://github.com/nodejs/node/commit/f6e68a0238)] - **meta**: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot\[bot]) [#&#8203;48986](https://github.com/nodejs/node/pull/48986)
    
  • [`5c352eeecb`](https://github.com/nodejs/node/commit/5c352eeecb)] - **meta**: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot\[bot]) [#&#8203;48985](https://github.com/nodejs/node/pull/48985)
    
  • [`42ac5a6e5f`](https://github.com/nodejs/node/commit/42ac5a6e5f)] - **meta**: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot\[bot]) [#&#8203;48984](https://github.com/nodejs/node/pull/48984)
    
  • [`b0d769fe7c`](https://github.com/nodejs/node/commit/b0d769fe7c)] - **meta**: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot\[bot]) [#&#8203;48983](https://github.com/nodejs/node/pull/48983)
    
  • [`f62b24276c`](https://github.com/nodejs/node/commit/f62b24276c)] - **meta**: add mailmap entry for atlowChemi (Chemi Atlow) [#&#8203;48810](https://github.com/nodejs/node/pull/48810)
    
  • [`8c55f317a3`](https://github.com/nodejs/node/commit/8c55f317a3)] - **module**: move helpers out of cjs loader (Geoffrey Booth) [#&#8203;49912](https://github.com/nodejs/node/pull/49912)
    
  • [`14e148ee6c`](https://github.com/nodejs/node/commit/14e148ee6c)] - **module**: ensure successful import returns the same result (Antoine du Hamel) [#&#8203;46662](https://github.com/nodejs/node/pull/46662)
    
  • [`65dfe85f03`](https://github.com/nodejs/node/commit/65dfe85f03)] - **module**: implement `register` utility (João Lenon) [#&#8203;46826](https://github.com/nodejs/node/pull/46826)
    
  • [`6f0458d0a6`](https://github.com/nodejs/node/commit/6f0458d0a6)] - **module**: refactor to use `normalizeRequirableId` in the CJS module loader (Darshan Sen) [#&#8203;47896](https://github.com/nodejs/node/pull/47896)
    
  • [`89ed24b94a`](https://github.com/nodejs/node/commit/89ed24b94a)] - **module**: do less CJS module loader initialization at run time (Joyee Cheung) [#&#8203;47194](https://github.com/nodejs/node/pull/47194)
    
  • [`939c8764b8`](https://github.com/nodejs/node/commit/939c8764b8)] - **module**: move callbacks and conditions into modules/esm/utils.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`a3b0f4cf55`](https://github.com/nodejs/node/commit/a3b0f4cf55)] - **module**: move modules/cjs/helpers.js to modules/helpers.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849)
    
  • [`97579895f2`](https://github.com/nodejs/node/commit/97579895f2)] - **module, esm**: jsdoc for modules files (Geoffrey Booth) [#&#8203;49523](https://github.com/nodejs/node/pull/49523)
    
  • [`daca87bbef`](https://github.com/nodejs/node/commit/daca87bbef)] - **net**: use asserts in JS Socket Stream to catch races in future (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400)
    
  • [`03063bd022`](https://github.com/nodejs/node/commit/03063bd022)] - **net**: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400)
    
  • [`67fe7d8822`](https://github.com/nodejs/node/commit/67fe7d8822)] - **net**: fix setting of value in 'setDefaultAutoSelectFamilyAttemptTimeout' (Deokjin Kim) [#&#8203;47012](https://github.com/nodejs/node/pull/47012)
    
  • [`f449b222fd`](https://github.com/nodejs/node/commit/f449b222fd)] - **node-api**: update headers for better wasm support (Toyo Li) [#&#8203;49037](https://github.com/nodejs/node/pull/49037)
    
  • [`5148f030b8`](https://github.com/nodejs/node/commit/5148f030b8)] - **node-api**: run finalizers directly from GC (Vladimir Morozov) [#&#8203;42651](https://github.com/nodejs/node/pull/42651)
    
  • [`edef4fa668`](https://github.com/nodejs/node/commit/edef4fa668)] - **node-api**: enable uncaught exceptions policy by default (Chengzhong Wu) [#&#8203;49313](https://github.com/nodejs/node/pull/49313)
    
  • [`48a1b9336b`](https://github.com/nodejs/node/commit/48a1b9336b)] - **node-api**: fix compiler warning in node_api.h (Michael Graeb) [#&#8203;49103](https://github.com/nodejs/node/pull/49103)
    
  • [`57966318fe`](https://github.com/nodejs/node/commit/57966318fe)] - **node-api**: avoid macro redefinition (Tobias Nießen) [#&#8203;48879](https://github.com/nodejs/node/pull/48879)
    
  • [`d4f26f4651`](https://github.com/nodejs/node/commit/d4f26f4651)] - **policy**: fix path to URL conversion (Antoine du Hamel) [#&#8203;49133](https://github.com/nodejs/node/pull/49133)
    
  • [`a625f22acb`](https://github.com/nodejs/node/commit/a625f22acb)] - **readline**: add paste bracket mode (Jakub Jankiewicz) [#&#8203;47150](https://github.com/nodejs/node/pull/47150)
    
  • [`bbafd42d75`](https://github.com/nodejs/node/commit/bbafd42d75)] - **repl**: display dynamic import variant in static import error messages (Hemanth HM) [#&#8203;48129](https://github.com/nodejs/node/pull/48129)
    
  • [`b8634eeb16`](https://github.com/nodejs/node/commit/b8634eeb16)] - **sea**: allow requiring core modules with the "node:" prefix (Darshan Sen) [#&#8203;47779](https://github.com/nodejs/node/pull/47779)
    
  • [`066d9d4492`](https://github.com/nodejs/node/commit/066d9d4492)] - **src**: remove unused function `GetName()` in node_perf (Jungku Lee) [#&#8203;49244](https://github.com/nodejs/node/pull/49244)
    
  • [`158c91a38a`](https://github.com/nodejs/node/commit/158c91a38a)] - **src**: use ARES_SUCCESS instead of 0 (Jungku Lee) [#&#8203;49048](https://github.com/nodejs/node/pull/49048)
    
  • [`8c33731ac6`](https://github.com/nodejs/node/commit/8c33731ac6)] - **src**: add a condition if the argument of `DomainToUnicode` is empty (Jungku Lee) [#&#8203;49097](https://github.com/nodejs/node/pull/49097)
    
  • [`67dba57d77`](https://github.com/nodejs/node/commit/67dba57d77)] - **src**: use ARES_SUCCESS instead of 0 (Hyunjin Kim) [#&#8203;48834](https://github.com/nodejs/node/pull/48834)
    
  • [`97d87495c7`](https://github.com/nodejs/node/commit/97d87495c7)] - **src**: remove unnecessary temporary creation (Jason) [#&#8203;48734](https://github.com/nodejs/node/pull/48734)
    
  • [`f5384c3262`](https://github.com/nodejs/node/commit/f5384c3262)] - **src**: fix nullptr access on realm (Jan Olaf Krems) [#&#8203;48802](https://github.com/nodejs/node/pull/48802)
    
  • [`358273d77f`](https://github.com/nodejs/node/commit/358273d77f)] - **src**: remove OnScopeLeaveImpl's move assignment overload (Jason) [#&#8203;48732](https://github.com/nodejs/node/pull/48732)
    
  • [`cc7bf1f641`](https://github.com/nodejs/node/commit/cc7bf1f641)] - **(SEMVER-MINOR)** **src**: add cjs_module_lexer_version base64\_version (Jithil P Ponnan) [#&#8203;45629](https://github.com/nodejs/node/pull/45629)
    
  • [`0a950c3752`](https://github.com/nodejs/node/commit/0a950c3752)] - **src**: add missing to_ascii method in dns queries (Daniel Lemire) [#&#8203;48354](https://github.com/nodejs/node/pull/48354)
    
  • [`3552afb904`](https://github.com/nodejs/node/commit/3552afb904)] - **src**: fix duplication of externalized builtin code (Keyhan Vakil) [#&#8203;47079](https://github.com/nodejs/node/pull/47079)
    
  • [`66e4ba5062`](https://github.com/nodejs/node/commit/66e4ba5062)] - **src**: fix AliasedBuffer memory attribution in heap snapshots (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817)
    
  • [`946f19b5e3`](https://github.com/nodejs/node/commit/946f19b5e3)] - **src**: move AliasedBuffer implementation to -inl.h (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817)
    
  • [`d35f8702c9`](https://github.com/nodejs/node/commit/d35f8702c9)] - **src**: bootstrap prepare stack trace callback in shadow realm (Chengzhong Wu) [#&#8203;47107](https://github.com/nodejs/node/pull/47107)
    
  • [`3551a19205`](https://github.com/nodejs/node/commit/3551a19205)] - **src**: make BuiltinLoader threadsafe and non-global (Anna Henningsen) [#&#8203;45942](https://github.com/nodejs/node/pull/45942)
    
  • [`92311a0801`](https://github.com/nodejs/node/commit/92311a0801)] - **src**: define per-isolate internal bindings registration callback (Chengzhong Wu) [#&#8203;45547](https://github.com/nodejs/node/pull/45547)
    
  • [`629fc774ca`](https://github.com/nodejs/node/commit/629fc774ca)] - **src**: use an array for faster binding data lookup (Joyee Cheung) [#&#8203;46620](https://github.com/nodejs/node/pull/46620)
    
  • [`62e2e590fc`](https://github.com/nodejs/node/commit/62e2e590fc)] - **src**: fix TLSWrap lifetime bug in ALPN callback (Ben Noordhuis) [#&#8203;49635](https://github.com/nodejs/node/pull/49635)
    
  • [`fae60c5841`](https://github.com/nodejs/node/commit/fae60c5841)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745)
    
  • [`ee4fc7d78c`](https://github.com/nodejs/node/commit/ee4fc7d78c)] - **stream**: use Buffer.from when constructor is a Buffer (Matthew Aitken) [#&#8203;49250](https://github.com/nodejs/node/pull/49250)
    
  • [`651e4504ce`](https://github.com/nodejs/node/commit/651e4504ce)] - **stream**: add `highWaterMark` for the map operator (Raz Luvaton) [#&#8203;49249](https://github.com/nodejs/node/pull/49249)
    
  • [`d585d13127`](https://github.com/nodejs/node/commit/d585d13127)] - **stream**: improve WebStreams performance (Raz Luvaton) [#&#8203;49089](https://github.com/nodejs/node/pull/49089)
    
  • [`7f39f8e805`](https://github.com/nodejs/node/commit/7f39f8e805)] - **test**: replace forEach with for..of in test-http-perf_hooks.js (Niya Shiyas) [#&#8203;49818](https://github.com/nodejs/node/pull/49818)
    
  • [`2f0ffde842`](https://github.com/nodejs/node/commit/2f0ffde842)] - **test**: replace forEach with for..of in test-net-isipv4.js (Niya Shiyas) [#&#8203;49822](https://github.com/nodejs/node/pull/49822)
    
  • [`bbd302b5ab`](https://github.com/nodejs/node/commit/bbd302b5ab)] - **test**: replace forEach with for..of in test-http2-server (Niya Shiyas) [#&#8203;49819](https://github.com/nodejs/node/pull/49819)
    
  • [`128ca3e213`](https://github.com/nodejs/node/commit/128ca3e213)] - **test**: replace forEach with for..of in test-http2-client-destroy.js (Niya Shiyas) [#&#8203;49820](https://github.com/nodejs/node/pull/49820)
    
  • [`a2ca1a605f`](https://github.com/nodejs/node/commit/a2ca1a605f)] - **test**: print instruction for creating missing snapshot in assertSnapshot (Raz Luvaton) [#&#8203;48914](https://github.com/nodejs/node/pull/48914)
    
  • [`a0bb30cdca`](https://github.com/nodejs/node/commit/a0bb30cdca)] - **test**: set `test-watch-mode-inspect` as flaky (Yagiz Nizipli) [#&#8203;50259](https://github.com/nodejs/node/pull/50259)
    
  • [`1047d95698`](https://github.com/nodejs/node/commit/1047d95698)] - **test**: set `test-emit-after-on-destroyed` as flaky (Yagiz Nizipli) [#&#8203;50246](https://github.com/nodejs/node/pull/50246)
    
  • [`91a3b57962`](https://github.com/nodejs/node/commit/91a3b57962)] - **test**: set inspector async stack test as flaky (Yagiz Nizipli) [#&#8203;50244](https://github.com/nodejs/node/pull/50244)
    
  • [`b41aa7b82a`](https://github.com/nodejs/node/commit/b41aa7b82a)] - **test**: set test-worker-nearheaplimit-deadlock flaky (StefanStojanovic) [#&#8203;50277](https://github.com/nodejs/node/pull/50277)
    
  • [`e81b066fb1`](https://github.com/nodejs/node/commit/e81b066fb1)] - **test**: set `test-cli-node-options` as flaky (Yagiz Nizipli) [#&#8203;50296](https://github.com/nodejs/node/pull/50296)
    
  • [`0c05c25c4e`](https://github.com/nodejs/node/commit/0c05c25c4e)] - **test**: set crypto-timing test as flaky (Yagiz Nizipli) [#&#8203;50232](https://github.com/nodejs/node/pull/50232)
    
  • [`83e339dbba`](https://github.com/nodejs/node/commit/83e339dbba)] - **test**: set `test-structuredclone-*` as flaky (Yagiz Nizipli) [#&#8203;50261](https://github.com/nodejs/node/pull/50261)
    
  • [`866a399488`](https://github.com/nodejs/node/commit/866a399488)] - **test**: set inspector async hook test as flaky (Yagiz Nizipli) [#&#8203;50252](https://github.com/nodejs/node/pull/50252)
    
  • [`cb0bd2116b`](https://github.com/nodejs/node/commit/cb0bd2116b)] - **test**: set parallel http server test as flaky (Yagiz Nizipli) [#&#8203;50227](https://github.com/nodejs/node/pull/50227)
    
  • [`54f3d877ae`](https://github.com/nodejs/node/commit/54f3d877ae)] - **test**: set test-worker-nearheaplimit-deadlock flaky (Stefan Stojanovic) [#&#8203;50238](https://github.com/nodejs/node/pull/50238)
    
  • [`5953a255b6`](https://github.com/nodejs/node/commit/5953a255b6)] - **test**: set `test-runner-watch-mode` as flaky (Yagiz Nizipli) [#&#8203;50221](https://github.com/nodejs/node/pull/50221)
    
  • [`5820d7e14d`](https://github.com/nodejs/node/commit/5820d7e14d)] - **test**: deflake test-runner-output (Moshe Atlow) [#&#8203;49878](https://github.com/nodejs/node/pull/49878)
    
  • [`1d75da43f2`](https://github.com/nodejs/node/commit/1d75da43f2)] - ***Revert*** "**test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky" (Luigi Pinca) [#&#8203;49708](https://github.com/nodejs/node/pull/49708)
    
  • [`5df23520e7`](https://github.com/nodejs/node/commit/5df23520e7)] - **test**: mark test-runner-watch-mode as flaky (Joyee Cheung) [#&#8203;49627](https://github.com/nodejs/node/pull/49627)
    
  • [`7e714e6497`](https://github.com/nodejs/node/commit/7e714e6497)] - **test**: remove --no-warnings flag in test_runner fixtures (Raz Luvaton) [#&#8203;48989](https://github.com/nodejs/node/pull/48989)
    
  • [`0fea550641`](https://github.com/nodejs/node/commit/0fea550641)] - **test**: reorder test files fixtures for better understanding (Raz Luvaton) [#&#8203;48787](https://github.com/nodejs/node/pull/48787)
    
  • [`c5857bde42`](https://github.com/nodejs/node/commit/c5857bde42)] - **test**: avoid copying test source files (Chengzhong Wu) [#&#8203;49515](https://github.com/nodejs/node/pull/49515)
    
  • [`67cb6f9a34`](https://github.com/nodejs/node/commit/67cb6f9a34)] - **test**: reduce length in crypto keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221)
    
  • [`958e114655`](https://github.com/nodejs/node/commit/958e114655)] - **test**: split JWK async elliptic curve keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221)
    
  • [`344592dc00`](https://github.com/nodejs/node/commit/344592dc00)] - **test**: split test-crypto-keygen.js (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221)
    
  • [`5f1a1aeeed`](https://github.com/nodejs/node/commit/5f1a1aeeed)] - **test**: rename test-crypto-modp1-error (Tobias Nießen) [#&#8203;49348](https://github.com/nodejs/node/pull/49348)
    
  • [`107015b45d`](https://github.com/nodejs/node/commit/107015b45d)] - **test**: migrate message source map tests from Python to JS (Yiyun Lei) [#&#8203;49238](https://github.com/nodejs/node/pull/49238)
    
  • [`ddebd29515`](https://github.com/nodejs/node/commit/ddebd29515)] - **test**: fix compiler warning in NodeCryptoEnv (Tobias Nießen) [#&#8203;49206](https://github.com/nodejs/node/pull/49206)
    
  • [`0261c5de56`](https://github.com/nodejs/node/commit/0261c5de56)] - **test**: make test-perf-hooks more robust and work with workers (Joyee Cheung) [#&#8203;49197](https://github.com/nodejs/node/pull/49197)
    
  • [`e18de802c8`](https://github.com/nodejs/node/commit/e18de802c8)] - **test**: use gcUntil() in test-v8-serialize-leak (Joyee Cheung) [#&#8203;49168](https://github.com/nodejs/node/pull/49168)
    
  • [`52d5dd8dba`](https://github.com/nodejs/node/commit/52d5dd8dba)] - **test**: add expectSyncExitWithoutError() and expectSyncExit() utils (Joyee Cheung) [#&#8203;49020](https://github.com/nodejs/node/pull/49020)
    
  • [`67925bb914`](https://github.com/nodejs/node/commit/67925bb914)] - **test**: add Symbol.dispose support to mock timers (Benjamin Gruenbaum) [#&#8203;48549](https://github.com/nodejs/node/pull/48549)
    
  • [`00c08539b6`](https://github.com/nodejs/node/commit/00c08539b6)] - **test**: fix edge snapshot stack traces (Geoffrey Booth) [#&#8203;49659](https://github.com/nodejs/node/pull/49659)
    
  • [`48f6d9a975`](https://github.com/nodejs/node/commit/48f6d9a975)] - **test**: refactor `test-node-output-errors` (Antoine du Hamel) [#&#8203;48992](https://github.com/nodejs/node/pull/48992)
    
  • [`c1a8ae38c0`](https://github.com/nodejs/node/commit/c1a8ae38c0)] - **test**: deflake `test-loaders-workers-spawned` (Antoine du Hamel) [#&#8203;50251](https://github.com/nodejs/node/pull/50251)
    
  • [`d5cc5d7956`](https://github.com/nodejs/node/commit/d5cc5d7956)] - **test**: deflake `test-esm-loader-resolve-type` (Antoine du Hamel) [#&#8203;50273](https://github.com/nodejs/node/pull/50273)
    
  • [`866d646b0e`](https://github.com/nodejs/node/commit/866d646b0e)] - **test**: increase coverage of `Module.register` and `initialize` hook (Antoine du Hamel) [#&#8203;49532](https://github.com/nodejs/node/pull/49532)
    
  • [`65201ab36b`](https://github.com/nodejs/node/commit/65201ab36b)] - **test**: isolate `globalPreload` tests (Geoffrey Booth) [#&#8203;49545](https://github.com/nodejs/node/pull/49545)
    
  • [`65058d9a35`](https://github.com/nodejs/node/commit/65058d9a35)] - **test**: add `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49040](https://github.com/nodejs/node/pull/49040)
    
  • [`e1c6f46926`](https://github.com/nodejs/node/commit/e1c6f46926)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49248](https://github.com/nodejs/node/pull/49248)
    
  • [`e8d475ffc4`](https://github.com/nodejs/node/commit/e8d475ffc4)] - **test**: refactor `test-esm-loader-hooks` for easier debugging (Antoine du Hamel) [#&#8203;49131](https://github.com/nodejs/node/pull/49131)
    
  • [`26f01669fc`](https://github.com/nodejs/node/commit/26f01669fc)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49105](https://github.com/nodejs/node/pull/49105)
    
  • [`d5a1153970`](https://github.com/nodejs/node/commit/d5a1153970)] - **test**: use `fixtures.fileURL` when appropriate (Antoine du Hamel) [#&#8203;48990](https://github.com/nodejs/node/pull/48990)
    
  • [`3424793013`](https://github.com/nodejs/node/commit/3424793013)] - **test**: fix snapshot tests when cwd contains spaces or backslashes (Antoine du Hamel) [#&#8203;48959](https://github.com/nodejs/node/pull/48959)
    
  • [`a9347a4635`](https://github.com/nodejs/node/commit/a9347a4635)] - **test**: order `common.mjs` in ASCII order (Antoine du Hamel) [#&#8203;48960](https://github.com/nodejs/node/pull/48960)
    
  • [`adb9280d8e`](https://github.com/nodejs/node/commit/adb9280d8e)] - **test**: fix some assumptions in tests (Antoine du Hamel) [#&#8203;48958](https://github.com/nodejs/node/pull/48958)
    
  • [`f02637e805`](https://github.com/nodejs/node/commit/f02637e805)] - **test**: fix `es-module/test-esm-initialization` (Antoine du Hamel) [#&#8203;48880](https://github.com/nodejs/node/pull/48880)
    
  • [`8c918e5e59`](https://github.com/nodejs/node/commit/8c918e5e59)] - **test**: relax version check with shared OpenSSL (Luigi Pinca) [#&#8203;50505](https://github.com/nodejs/node/pull/50505)
    
  • [`c6caf13ad5`](https://github.com/nodejs/node/commit/c6caf13ad5)] - **test**: fix crypto-dh error message for OpenSSL 3.x (Kerem Kat) [#&#8203;50395](https://github.com/nodejs/node/pull/50395)
    
  • [`65b41ebd1f`](https://github.com/nodejs/node/commit/65b41ebd1f)] - **test**: split test-crypto-dh to avoid timeout on slow machines in the CI (Joyee Cheung) [#&#8203;49492](https://github.com/nodejs/node/pull/49492)
    
  • [`7606921e1d`](https://github.com/nodejs/node/commit/7606921e1d)] - **test**: fix testsuite against zlib version 1.3 (Dominique Leuenberger) [#&#8203;50364](https://github.com/nodejs/node/pull/50364)
    
  • [`4f78233254`](https://github.com/nodejs/node/commit/4f78233254)] - **test**: verify tracePromise does not do runStores (Stephen Belanger) [#&#8203;47349](https://github.com/nodejs/node/pull/47349)
    
  • [`cb6ef74cf2`](https://github.com/nodejs/node/commit/cb6ef74cf2)] - **test**: fix IPv6 checks on IBM i (Abdirahim Musse) [#&#8203;46546](https://github.com/nodejs/node/pull/46546)
    
  • [`bcf97ab1b2`](https://github.com/nodejs/node/commit/bcf97ab1b2)] - **test**: fix flaky test-runner-exit-code.js (Colin Ihrig) [#&#8203;46138](https://github.com/nodejs/node/pull/46138)
    
  • [`f0e8ff90eb`](https://github.com/nodejs/node/commit/f0e8ff90eb)] - **test**: use an array for WPT gloablThis initialization scripts (Joyee Cheung) [#&#8203;46425](https://github.com/nodejs/node/pull/46425)
    
  • [`0e0dd1fe90`](https://github.com/nodejs/node/commit/0e0dd1fe90)] - **test**: adapt tests for OpenSSL 3.1 (OttoHollmann) [#&#8203;47859](https://github.com/nodejs/node/pull/47859)
    
  • [`e3ea906988`](https://github.com/nodejs/node/commit/e3ea906988)] - **test**: disambiguate AIX and IBM i (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056)
    
  • [`088460d80c`](https://github.com/nodejs/node/commit/088460d80c)] - **test**: add os setPriority, getPriority test coverage (Wael) [#&#8203;38771](https://github.com/nodejs/node/pull/38771)
    
  • [`b011a498c5`](https://github.com/nodejs/node/commit/b011a498c5)] - **test,benchmark**: use `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49138](https://github.com/nodejs/node/pull/49138)
    
  • [`54168b7364`](https://github.com/nodejs/node/commit/54168b7364)] - **test_runner**: add test location for FileTests (Colin Ihrig) [#&#8203;49999](https://github.com/nodejs/node/pull/49999)
    
  • [`1d9c37161d`](https://github.com/nodejs/node/commit/1d9c37161d)] - **test_runner**: replace spurious if with else (Colin Ihrig) [#&#8203;49943](https://github.com/nodejs/node/pull/49943)
    
  • [`b283ae4238`](https://github.com/nodejs/node/commit/b283ae4238)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753)
    
  • [`103c4a088a`](https://github.com/nodejs/node/commit/103c4a088a)] - **test_runner**: catch reporter errors (Moshe Atlow) [#&#8203;49646](https://github.com/nodejs/node/pull/49646)
    
  • [`e459598cf2`](https://github.com/nodejs/node/commit/e459598cf2)] - **test_runner**: fix test runner watch mode when no positional arguments (Moshe Atlow) [#&#8203;49578](https://github.com/nodejs/node/pull/49578)
    
  • [`059b1945d8`](https://github.com/nodejs/node/commit/059b1945d8)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614)
    
  • [`76a35632d3`](https://github.com/nodejs/node/commit/76a35632d3)] - **test_runner**: add jsdocs to mock.js (Caio Borghi) [#&#8203;49555](https://github.com/nodejs/node/pull/49555)
    
  • [`ba57c24fde`](https://github.com/nodejs/node/commit/ba57c24fde)] - **test_runner**: fix invalid timer call (Erick Wendel) [#&#8203;49477](https://github.com/nodejs/node/pull/49477)
    
  • [`5949ae016f`](https://github.com/nodejs/node/commit/5949ae016f)] - **test_runner**: add jsdocs to MockTimers (Erick Wendel) [#&#8203;49476](https://github.com/nodejs/node/pull/49476)
    
  • [`429846f258`](https://github.com/nodejs/node/commit/429846f258)] - **test_runner**: fix typescript coverage (Moshe Atlow) [#&#8203;49406](https://github.com/nodejs/node/pull/49406)
    
  • [`760c98280e`](https://github.com/nodejs/node/commit/760c98280e)] - **test_runner**: preserve original property descriptor (Erick Wendel) [#&#8203;49433](https://github.com/nodejs/node/pull/49433)
    
  • [`95cc98e14b`](https://github.com/nodejs/node/commit/95cc98e14b)] - **test_runner**: expose spec reporter as newable function (Chemi Atlow) [#&#8203;49184](https://github.com/nodejs/node/pull/49184)
    
  • [`d83964031b`](https://github.com/nodejs/node/commit/d83964031b)] - **test_runner**: reland run global after() hook earlier (Colin Ihrig) [#&#8203;49116](https://github.com/nodejs/node/pull/49116)
    
  • [`d61a505546`](https://github.com/nodejs/node/commit/d61a505546)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975)
    
  • [`00c70e12f7`](https://github.com/nodejs/node/commit/00c70e12f7)] - **test_runner**: dont set exit code on todo tests (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929)
    
  • [`71f7ed728d`](https://github.com/nodejs/node/commit/71f7ed728d)] - **test_runner**: fix global after not failing the tests (Raz Luvaton) [#&#8203;48913](https://github.com/nodejs/node/pull/48913)
    
  • [`11fbd924ed`](https://github.com/nodejs/node/commit/11fbd924ed)] - **test_runner**: add support for setImmediate (Erick Wendel) [#&#8203;49397](https://github.com/nodejs/node/pull/49397)
    
  • [`fb64d415be`](https://github.com/nodejs/node/commit/fb64d415be)] - **test_runner**: fix timeout in \*Each hook failing further tests (Raz Luvaton) [#&#8203;48925](https://github.com/nodejs/node/pull/48925)
    
  • [`67d7faddb2`](https://github.com/nodejs/node/commit/67d7faddb2)] - **test_runner**: cleanup test timeout abort listener (Raz Luvaton) [#&#8203;48915](https://github.com/nodejs/node/pull/48915)
    
  • [`d217435cd3`](https://github.com/nodejs/node/commit/d217435cd3)] - **test_runner**: fix todo and only in spec reporter (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929)
    
  • [`9f122be15a`](https://github.com/nodejs/node/commit/9f122be15a)] - **test_runner**: unwrap error message in TAP reporter (Colin Ihrig) [#&#8203;48942](https://github.com/nodejs/node/pull/48942)
    
  • [`3a74316624`](https://github.com/nodejs/node/commit/3a74316624)] - **test_runner**: add `__proto__` null (Raz Luvaton) [#&#8203;48663](https://github.com/nodejs/node/pull/48663)
    
  • [`66ea9bdb4d`](https://github.com/nodejs/node/commit/66ea9bdb4d)] - **test_runner**: fix global before not called when no global test exists (Raz Luvaton) [#&#8203;48877](https://github.com/nodejs/node/pull/48877)
    
  • [`0bd9704018`](https://github.com/nodejs/node/commit/0bd9704018)] - **test_runner**: use os.availableParallelism() (Colin Ihrig) [#&#8203;45969](https://github.com/nodejs/node/pull/45969)
    
  • [`b55eb2a8d1`](https://github.com/nodejs/node/commit/b55eb2a8d1)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639)
    
  • [`c2575c8db0`](https://github.com/nodejs/node/commit/c2575c8db0)] - **test_runner**: fix test_runner `test:fail` event type (Ethan Arrowood) [#&#8203;48854](https://github.com/nodejs/node/pull/48854)
    
  • [`6b186d41cd`](https://github.com/nodejs/node/commit/6b186d41cd)] - **test_runner**: fix async callback in describe not awaited (Raz Luvaton) [#&#8203;48856](https://github.com/nodejs/node/pull/48856)
    
  • [`2d4511baab`](https://github.com/nodejs/node/commit/2d4511baab)] - **test_runner**: call abort on test finish (Raz Luvaton) [#&#8203;48827](https://github.com/nodejs/node/pull/48827)
    
  • [`05e7f28b40`](https://github.com/nodejs/node/commit/05e7f28b40)] - **(SEMVER-MINOR)** **test_runner**: add initial draft for fakeTimers (Erick Wendel) [#&#8203;47775](https://github.com/nodejs/node/pull/47775)
    
  • [`428301ad27`](https://github.com/nodejs/node/commit/428301ad27)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996)
    
  • [`4b2e258c76`](https://github.com/nodejs/node/commit/4b2e258c76)] - **test_runner,test**: fix flaky test-runner-cli-concurrency.js (Colin Ihrig) [#&#8203;50108](https://github.com/nodejs/node/pull/50108)
    
  • [`b5d16cd8f0`](https://github.com/nodejs/node/commit/b5d16cd8f0)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190)
    
  • [`a1c94037ab`](https://github.com/nodejs/node/commit/a1c94037ab)] - **tools**: fix --v8-non-optimized-debug for v18.x (Joyee Cheung) [#&#8203;50612](https://github.com/nodejs/node/pull/50612)
    
  • [`3b65c61f5c`](https://github.com/nodejs/node/commit/3b65c61f5c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;50083](https://github.com/nodejs/node/pull/50083)
    
  • [`07941a3609`](https://github.com/nodejs/node/commit/07941a3609)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49983](https://github.com/nodejs/node/pull/49983)
    
  • [`ad6e7a6270`](https://github.com/nodejs/node/commit/ad6e7a6270)] - **tools**: update lint-md-dependencies to rollup@3.29.2 (Node.js GitHub Bot) [#&#8203;49679](https://github.com/nodejs/node/pull/49679)
    
  • [`3511b13c94`](https://github.com/nodejs/node/commit/3511b13c94)] - **tools**: update lint-md-dependencies to rollup@3.29.0 unified@11.0.3 (Node.js GitHub Bot) [#&#8203;49584](https://github.com/nodejs/node/pull/49584)
    
  • [`b6522a2b6b`](https://github.com/nodejs/node/commit/b6522a2b6b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49342](https://github.com/nodejs/node/pull/49342)
    
  • [`01b2588acf`](https://github.com/nodejs/node/commit/01b2588acf)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49253](https://github.com/nodejs/node/pull/49253)
    
  • [`0cb42ccb5c`](https://github.com/nodejs/node/commit/0cb42ccb5c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49122](https://github.com/nodejs/node/pull/49122)
    
  • [`caa7ecca30`](https://github.com/nodejs/node/commit/caa7ecca30)] - **tools**: update lint-md-dependencies to rollup@3.27.2 (Node.js GitHub Bot) [#&#8203;49035](https://github.com/nodejs/node/pull/49035)
    
  • [`42846a02b3`](https://github.com/nodejs/node/commit/42846a02b3)] - **tools**: limit the number of auto start CIs (Antoine du Hamel) [#&#8203;49067](https://github.com/nodejs/node/pull/49067)
    
  • [`9cc3b2061f`](https://github.com/nodejs/node/commit/9cc3b2061f)] - **tools**: update lint-md-dependencies to rollup@3.27.0 (Node.js GitHub Bot) [#&#8203;48965](https://github.com/nodejs/node/pull/48965)
    
  • [`1cbb186039`](https://github.com/nodejs/node/commit/1cbb186039)] - **tools**: update lint-md-dependencies to rollup@3.26.3 (Node.js GitHub Bot) [#&#8203;48888](https://github.com/nodejs/node/pull/48888)
    
  • [`f7d6e9ba43`](https://github.com/nodejs/node/commit/f7d6e9ba43)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;25](https://github.com/25).0.3 (Node.js GitHub Bot) [#&#8203;48791](https://github.com/nodejs/node/pull/48791)
    
  • [`a98addb626`](https://github.com/nodejs/node/commit/a98addb626)] - **tools**: skip ruff on tools/node_modules (Moshe Atlow) [#&#8203;49838](https://github.com/nodejs/node/pull/49838)
    
  • [`6cf8dd95d1`](https://github.com/nodejs/node/commit/6cf8dd95d1)] - **tools**: update eslint to 8.51.0 (Node.js GitHub Bot) [#&#8203;50084](https://github.com/nodejs/node/pull/50084)
    
  • [`b8d2a29ff5`](https://github.com/nodejs/node/commit/b8d2a29ff5)] - **tools**: update eslint to 8.50.0 (Node.js GitHub Bot) [#&#8203;49989](https://github.com/nodejs/node/pull/49989)
    
  • [`1c1cbf06f0`](https://github.com/nodejs/node/commit/1c1cbf06f0)] - **tools**: update eslint to 8.49.0 (Node.js GitHub Bot) [#&#8203;49586](https://github.com/nodejs/node/pull/49586)
    
  • [`92d21864c5`](https://github.com/nodejs/node/commit/92d21864c5)] - **tools**: update eslint to 8.48.0 (Node.js GitHub Bot) [#&#8203;49343](https://github.com/nodejs/node/pull/49343)
    
  • [`0940de36ee`](https://github.com/nodejs/node/commit/0940de36ee)] - **tools**: update eslint to 8.47.0 (Node.js GitHub Bot) [#&#8203;49124](https://github.com/nodejs/node/pull/49124)
    
  • [`4880a05fa2`](https://github.com/nodejs/node/commit/4880a05fa2)] - **tools**: update eslint to 8.46.0 (Node.js GitHub Bot) [#&#8203;48966](https://github.com/nodejs/node/pull/48966)
    
  • [`e9632454cd`](https://github.com/nodejs/node/commit/e9632454cd)] - **tools**: update eslint to 8.45.0 (Node.js GitHub Bot) [#&#8203;48793](https://github.com/nodejs/node/pull/48793)
    
  • [`ae49f319c4`](https://github.com/nodejs/node/commit/ae49f319c4)] - **tools**: drop support for osx notarization with gon (Ulises Gascón) [#&#8203;50291](https://github.com/nodejs/node/pull/50291)
    
  • [`014b65e9b7`](https://github.com/nodejs/node/commit/014b65e9b7)] - **tools**: use osx notarytool for future releases (Ulises Gascon) [#&#8203;48701](https://github.com/nodejs/node/pull/48701)
    
  • [`71c386a25c`](https://github.com/nodejs/node/commit/71c386a25c)] - **typings**: update JSDoc for `cwd` in `child_process` (LiviaMedeiros) [#&#8203;49029](https://github.com/nodejs/node/pull/49029)
    
  • [`4d70a2c344`](https://github.com/nodejs/node/commit/4d70a2c344)] - **typings**: sync JSDoc with the actual implementation (Hyunjin Kim) [#&#8203;48853](https://github.com/nodejs/node/pull/48853)
    
  • [`945609487c`](https://github.com/nodejs/node/commit/945609487c)] - **typings**: fix missing property in `ExportedHooks` (Antoine du Hamel) [#&#8203;49567](https://github.com/nodejs/node/pull/49567)
    
  • [`2ef80f12b9`](https://github.com/nodejs/node/commit/2ef80f12b9)] - **typings**: fix JSDoc in ESM loader modules (Antoine du Hamel) [#&#8203;48424](https://github.com/nodejs/node/pull/48424)
    
  • [`7fc15b6d42`](https://github.com/nodejs/node/commit/7fc15b6d42)] - **url**: fix `isURL` detection by checking `path` (Zhuo Zhang) [#&#8203;48928](https://github.com/nodejs/node/pull/48928)
    
  • [`916a63b124`](https://github.com/nodejs/node/commit/916a63b124)] - **url**: improve `isURL` detection (Yagiz Nizipli) [#&#8203;47886](https://github.com/nodejs/node/pull/47886)
    
  • [`ac27431372`](https://github.com/nodejs/node/commit/ac27431372)] - **url**: validate `pathToFileURL(path)` argument as string (LiviaMedeiros) [#&#8203;49161](https://github.com/nodejs/node/pull/49161)
    
  • [`f256b160bf`](https://github.com/nodejs/node/commit/f256b160bf)] - **url**: handle unicode hostname if empty (Yagiz Nizipli) [#&#8203;49396](https://github.com/nodejs/node/pull/49396)
    
  • [`2441415c68`](https://github.com/nodejs/node/commit/2441415c68)] - **url**: reduce `pathToFileURL` cpp calls (Yagiz Nizipli) [#&#8203;48709](https://github.com/nodejs/node/pull/48709)
    
  • [`227e749888`](https://github.com/nodejs/node/commit/227e749888)] - **url**: validate URL constructor arg length (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513)
    
  • [`bf4ee17d18`](https://github.com/nodejs/node/commit/bf4ee17d18)] - **url**: validate argument length in canParse (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513)
    
  • [`a67fa2a107`](https://github.com/nodejs/node/commit/a67fa2a107)] - **util**: add `getCwdSafe` internal util fn (João Lenon) [#&#8203;48434](https://github.com/nodejs/node/pull/48434)
    
  • [`e96f7ef881`](https://github.com/nodejs/node/commit/e96f7ef881)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141)
    
  • [`525de686a7`](https://github.com/nodejs/node/commit/525de686a7)] - **(SEMVER-MINOR)** **wasi**: updates required for latest uvwasi version (Michael Dawson) [#&#8203;49908](https://github.com/nodejs/node/pull/49908)
    
  • [`f27d505805`](https://github.com/nodejs/node/commit/f27d505805)] - **watch**: decrease debounce rate (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926)
    
  • [`83a6d20d70`](https://github.com/nodejs/node/commit/83a6d20d70)] - **watch**: use debounce instead of throttle (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926)
    
  • [`879b958184`](https://github.com/nodejs/node/commit/879b958184)] - **worker**: protect against user mutating well-known prototypes (Antoine du Hamel) [#&#8203;49270](https://github.com/nodejs/node/pull/49270)
    
    

v18.18.2: 2023-10-13, Version 18.18.2 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in October 2023 Security Releases blog post.

Commits
  • [`55028468db`](https://github.com/nodejs/node/commit/55028468db)] - **deps**: update undici to v5.26.3 (Matteo Collina) [#&#8203;50153](https://github.com/nodejs/node/pull/50153)
    
  • [`a792bbc515`](https://github.com/nodejs/node/commit/a792bbc515)] - **deps**: update nghttp2 to 1.57.0 (James M Snell) [#&#8203;50121](https://github.com/nodejs/node/pull/50121)
    
  • [`f6444defa4`](https://github.com/nodejs/node/commit/f6444defa4)] - **deps**: update nghttp2 to 1.56.0 (Node.js GitHub Bot) [#&#8203;49582](https://github.com/nodejs/node/pull/49582)
    
  • [`7e9b08dfd4`](https://github.com/nodejs/node/commit/7e9b08dfd4)] - **deps**: update nghttp2 to 1.55.1 (Node.js GitHub Bot) [#&#8203;48790](https://github.com/nodejs/node/pull/48790)
    
  • [`85672c153f`](https://github.com/nodejs/node/commit/85672c153f)] - **deps**: update nghttp2 to 1.55.0 (Node.js GitHub Bot) [#&#8203;48746](https://github.com/nodejs/node/pull/48746)
    
  • [`300a902422`](https://github.com/nodejs/node/commit/300a902422)] - **deps**: update nghttp2 to 1.53.0 (Node.js GitHub Bot) [#&#8203;47997](https://github.com/nodejs/node/pull/47997)
    
  • [`7d83ed0bf6`](https://github.com/nodejs/node/commit/7d83ed0bf6)] - ***Revert*** "**deps**: update nghttp2 to 1.55.0" (Richard Lau) [#&#8203;50151](https://github.com/nodejs/node/pull/50151)
    
  • [`1193ca5fdb`](https://github.com/nodejs/node/commit/1193ca5fdb)] - **lib**: let deps require `node` prefixed modules (Matthew Aitken) [#&#8203;50047](https://github.com/nodejs/node/pull/50047)
    
  • [`eaf9083cf1`](https://github.com/nodejs/node/commit/eaf9083cf1)] - **module**: fix code injection through export names (Tobias Nießen) [nodejs-private/node-private#461](https://github.com/nodejs-private/node-private/pull/461)
    
  • [`1c538938cc`](https://github.com/nodejs/node/commit/1c538938cc)] - **policy**: use tamper-proof integrity check function (Tobias Nießen) [nodejs-private/node-private#462](https://github.com/nodejs-private/node-private/pull/462)
    
    

v18.18.1: 2023-10-10, Version 18.18.1 'Hydrogen' (LTS), @​richardlau

Compare Source

Notable Changes

This release addresses some regressions that appeared in Node.js 18.18.0:

  • (Windows) FS can not handle certain characters in file name #​48673
  • 18 and 20 node images give error - Text file busy (after re-build images) nodejs/docker-node#1968
  • libuv update in 18.18.0 breaks webpack's thread-loader #​49911

The libuv 1.45.0 and 1.46.0 updates that were released in Node.js 18.18.0 have been temporarily reverted.

Commits
  • [`3e3a75cc46`](https://github.com/nodejs/node/commit/3e3a75cc46)] - ***Revert*** "**build**: sync libuv header change" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036)
    
  • [`14ece2c479`](https://github.com/nodejs/node/commit/14ece2c479)] - ***Revert*** "**deps**: upgrade to libuv 1.45.0" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036)
    
  • [`022352acbe`](https://github.com/nodejs/node/commit/022352acbe)] - ***Revert*** "**deps**: upgrade to libuv 1.46.0" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036)
    
  • [`d9f138189c`](https://github.com/nodejs/node/commit/d9f138189c)] - ***Revert*** "**deps**: add missing thread-common.c in uv.gyp" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036)
    
  • [`7a3e1ffbb8`](https://github.com/nodejs/node/commit/7a3e1ffbb8)] - **fs**: make sure to write entire buffer (Robert Nagy) [#&#8203;49211](https://github.com/nodejs/node/pull/49211)
    
  • [`04cba95a67`](https://github.com/nodejs/node/commit/04cba95a67)] - **test**: add `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49079](https://github.com/nodejs/node/pull/49079)
    
    

v18.18.0: 2023-09-18, Version 18.18.0 'Hydrogen' (LTS), @​ruyadorno

Compare Source

Notable Changes
  • [`7dc731d4bf`](https://github.com/nodejs/node/commit/7dc731d4bf)] - **build**: sync libuv header change (Jiawen Geng) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`490fc004b0`](https://github.com/nodejs/node/commit/490fc004b0)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341)
    
  • [`dd8cd97d4d`](https://github.com/nodejs/node/commit/dd8cd97d4d)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416)
    
  • [`ea23870bec`](https://github.com/nodejs/node/commit/ea23870bec)] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`88855e0b1b`](https://github.com/nodejs/node/commit/88855e0b1b)] - **deps**: upgrade to libuv 1.46.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`fb2b80fca0`](https://github.com/nodejs/node/commit/fb2b80fca0)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`249879e46c`](https://github.com/nodejs/node/commit/249879e46c)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757)
    
  • [`e8dc7bde6a`](https://github.com/nodejs/node/commit/e8dc7bde6a)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527)
    
  • [`a30f2fbcc1`](https://github.com/nodejs/node/commit/a30f2fbcc1)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449)
    
  • [`c39b7c240e`](https://github.com/nodejs/node/commit/c39b7c240e)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#&#8203;43942](https://github.com/nodejs/node/pull/43942)
    
  • [`a68a67f54d`](https://github.com/nodejs/node/commit/a68a67f54d)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596)
    
  • [`3a8586bee2`](https://github.com/nodejs/node/commit/3a8586bee2)] - **fs, stream**: initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) [#&#8203;48518](https://github.com/nodejs/node/pull/48518)
    
  • [`863bdb785d`](https://github.com/nodejs/node/commit/863bdb785d)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777)
    
  • [`c59ae86ba0`](https://github.com/nodejs/node/commit/c59ae86ba0)] - **(SEMVER-MINOR)** **url**: add value argument to has and delete methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885)
    
    
Commits
  • [`d1f43317ea`](https://github.com/nodejs/node/commit/d1f43317ea)] - **benchmark**: add bar.R (Rafael Gonzaga) [#&#8203;47729](https://github.com/nodejs/node/pull/47729)
    
  • [`4f74be3c92`](https://github.com/nodejs/node/commit/4f74be3c92)] - **benchmark**: refactor crypto oneshot (Filip Skokan) [#&#8203;48267](https://github.com/nodejs/node/pull/48267)
    
  • [`fe9da9df0f`](https://github.com/nodejs/node/commit/fe9da9df0f)] - **benchmark**: add crypto.create\*Key (Filip Skokan) [#&#8203;48284](https://github.com/nodejs/node/pull/48284)
    
  • [`9cb18b3e9d`](https://github.com/nodejs/node/commit/9cb18b3e9d)] - **build**: do not pass target toolchain flags to host toolchain (Ivan Trubach) [#&#8203;48597](https://github.com/nodejs/node/pull/48597)
    
  • [`7dc731d4bf`](https://github.com/nodejs/node/commit/7dc731d4bf)] - **build**: sync libuv header change (Jiawen Geng) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`211a4f88a9`](https://github.com/nodejs/node/commit/211a4f88a9)] - **build**: update action to close stale PRs (Michael Dawson) [#&#8203;48196](https://github.com/nodejs/node/pull/48196)
    
  • [`cc33a1864b`](https://github.com/nodejs/node/commit/cc33a1864b)] - **child_process**: harden against prototype pollution (Livia Medeiros) [#&#8203;48726](https://github.com/nodejs/node/pull/48726)
    
  • [`b5df084e1e`](https://github.com/nodejs/node/commit/b5df084e1e)] - **child_process**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`611db8df1a`](https://github.com/nodejs/node/commit/611db8df1a)] - **child_process**: support `Symbol.dispose` (Moshe Atlow) [#&#8203;48551](https://github.com/nodejs/node/pull/48551)
    
  • [`490fc004b0`](https://github.com/nodejs/node/commit/490fc004b0)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341)
    
  • [`dd8cd97d4d`](https://github.com/nodejs/node/commit/dd8cd97d4d)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416)
    
  • [`b2bc839d4c`](https://github.com/nodejs/node/commit/b2bc839d4c)] - **crypto**: remove OPENSSL_FIPS guard for OpenSSL 3 (Richard Lau) [#&#8203;48392](https://github.com/nodejs/node/pull/48392)
    
  • [`c8da8c80b9`](https://github.com/nodejs/node/commit/c8da8c80b9)] - **deps**: update nghttp2 to 1.55.0 (Node.js GitHub Bot) [#&#8203;48746](https://github.com/nodejs/node/pull/48746)
    
  • [`7e04242dcb`](https://github.com/nodejs/node/commit/7e04242dcb)] - **deps**: update minimatch to 9.0.3 (Node.js GitHub Bot) [#&#8203;48704](https://github.com/nodejs/node/pull/48704)
    
  • [`ea23870bec`](https://github.com/nodejs/node/commit/ea23870bec)] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`88855e0b1b`](https://github.com/nodejs/node/commit/88855e0b1b)] - **deps**: upgrade to libuv 1.46.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`fb2b80fca0`](https://github.com/nodejs/node/commit/fb2b80fca0)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`59fca4e09a`](https://github.com/nodejs/node/commit/59fca4e09a)] - **deps**: update acorn to 8.10.0 (Node.js GitHub Bot) [#&#8203;48713](https://github.com/nodejs/node/pull/48713)
    
  • [`bcb255d5a8`](https://github.com/nodejs/node/commit/bcb255d5a8)] - **deps**: V8: cherry-pick [`cb00db4`](https://github.com/nodejs/node/commit/cb00db4dba6c) (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671)
    
  • [`65a6c90fc6`](https://github.com/nodejs/node/commit/65a6c90fc6)] - **deps**: update acorn to 8.9.0 (Node.js GitHub Bot) [#&#8203;48484](https://github.com/nodejs/node/pull/48484)
    
  • [`6b6d5d91e9`](https://github.com/nodejs/node/commit/6b6d5d91e9)] - **deps**: update zlib to 1.2.13.1-motley-f81f385 (Node.js GitHub Bot) [#&#8203;48541](https://github.com/nodejs/node/pull/48541)
    
  • [`56249b0770`](https://github.com/nodejs/node/commit/56249b0770)] - **deps**: update googletest to [`ec4fed9`](https://github.com/nodejs/node/commit/ec4fed9) (Node.js GitHub Bot) [#&#8203;48538](https://github.com/nodejs/node/pull/48538)
    
  • [`8914a5204a`](https://github.com/nodejs/node/commit/8914a5204a)] - **deps**: update minimatch to 9.0.2 (Node.js GitHub Bot) [#&#8203;48542](https://github.com/nodejs/node/pull/48542)
    
  • [`1b960d9988`](https://github.com/nodejs/node/commit/1b960d9988)] - **deps**: update icu to 73.2 (Node.js GitHub Bot) [#&#8203;48502](https://github.com/nodejs/node/pull/48502)
    
  • [`f0e2e3c549`](https://github.com/nodejs/node/commit/f0e2e3c549)] - **deps**: update zlib to 1.2.13.1-motley-3ca9f16 (Node.js GitHub Bot) [#&#8203;48413](https://github.com/nodejs/node/pull/48413)
    
  • [`9cf8fe6b93`](https://github.com/nodejs/node/commit/9cf8fe6b93)] - **deps**: upgrade npm to 9.8.1 (npm team) [#&#8203;48838](https://github.com/nodejs/node/pull/48838)
    
  • [`d9ff473ff3`](https://github.com/nodejs/node/commit/d9ff473ff3)] - **deps**: upgrade npm to 9.8.0 (npm team) [#&#8203;48665](https://github.com/nodejs/node/pull/48665)
    
  • [`4a6177daad`](https://github.com/nodejs/node/commit/4a6177daad)] - **deps**: upgrade npm to 9.7.2 (npm team) [#&#8203;48514](https://github.com/nodejs/node/pull/48514)
    
  • [`104b58feb1`](https://github.com/nodejs/node/commit/104b58feb1)] - **deps**: update ada to 2.6.0 (Node.js GitHub Bot) [#&#8203;48896](https://github.com/nodejs/node/pull/48896)
    
  • [`7f7a125d78`](https://github.com/nodejs/node/commit/7f7a125d78)] - **deps**: update corepack to 0.19.0 (Node.js GitHub Bot) [#&#8203;48540](https://github.com/nodejs/node/pull/48540)
    
  • [`5e1eb451d1`](https://github.com/nodejs/node/commit/5e1eb451d1)] - **deps**: update corepack to 0.18.1 (Node.js GitHub Bot) [#&#8203;48483](https://github.com/nodejs/node/pull/48483)
    
  • [`3be53358bc`](https://github.com/nodejs/node/commit/3be53358bc)] - **deps**: add loong64 config into openssl gypi (Shi Pujin) [#&#8203;48043](https://github.com/nodejs/node/pull/48043)
    
  • [`555982c59e`](https://github.com/nodejs/node/commit/555982c59e)] - **deps**: upgrade npm to 9.7.1 (npm team) [#&#8203;48378](https://github.com/nodejs/node/pull/48378)
    
  • [`3c03ec0832`](https://github.com/nodejs/node/commit/3c03ec0832)] - **deps**: update simdutf to 3.2.14 (Node.js GitHub Bot) [#&#8203;48344](https://github.com/nodejs/node/pull/48344)
    
  • [`a2964a4583`](https://github.com/nodejs/node/commit/a2964a4583)] - **deps**: update ada to 2.5.1 (Node.js GitHub Bot) [#&#8203;48319](https://github.com/nodejs/node/pull/48319)
    
  • [`38f6e0d8cd`](https://github.com/nodejs/node/commit/38f6e0d8cd)] - **deps**: update zlib to [`982b036`](https://github.com/nodejs/node/commit/982b036) (Node.js GitHub Bot) [#&#8203;48327](https://github.com/nodejs/node/pull/48327)
    
  • [`f4617a4f81`](https://github.com/nodejs/node/commit/f4617a4f81)] - **deps**: add loongarch64 into openssl Makefile and gen openssl-loongarch64 (Shi Pujin) [#&#8203;46401](https://github.com/nodejs/node/pull/46401)
    
  • [`573eb4be12`](https://github.com/nodejs/node/commit/573eb4be12)] - **dgram**: socket add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717)
    
  • [`f3c4300e00`](https://github.com/nodejs/node/commit/f3c4300e00)] - **dgram**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`d3041df738`](https://github.com/nodejs/node/commit/d3041df738)] - **doc**: expand on squashing and rebasing to land a PR (Chengzhong Wu) [#&#8203;48751](https://github.com/nodejs/node/pull/48751)
    
  • [`249879e46c`](https://github.com/nodejs/node/commit/249879e46c)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757)
    
  • [`42ecd46d1f`](https://github.com/nodejs/node/commit/42ecd46d1f)] - **doc**: fix ambiguity in http.md and https.md (an5er) [#&#8203;48692](https://github.com/nodejs/node/pull/48692)
    
  • [`e78824e053`](https://github.com/nodejs/node/commit/e78824e053)] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#&#8203;49196](https://github.com/nodejs/node/pull/49196)
    
  • [`1aa798d69f`](https://github.com/nodejs/node/commit/1aa798d69f)] - **doc**: clarify transform.\_transform() callback argument logic (Rafael Sofi-zada) [#&#8203;48680](https://github.com/nodejs/node/pull/48680)
    
  • [`d723e870a2`](https://github.com/nodejs/node/commit/d723e870a2)] - **doc**: mention git node release prepare (Rafael Gonzaga) [#&#8203;48644](https://github.com/nodejs/node/pull/48644)
    
  • [`a9a1394388`](https://github.com/nodejs/node/commit/a9a1394388)] - **doc**: fix options order (Luigi Pinca) [#&#8203;48617](https://github.com/nodejs/node/pull/48617)
    
  • [`989ea6858f`](https://github.com/nodejs/node/commit/989ea6858f)] - **doc**: update security release stewards (Rafael Gonzaga) [#&#8203;48569](https://github.com/nodejs/node/pull/48569)
    
  • [`f436ac1803`](https://github.com/nodejs/node/commit/f436ac1803)] - **doc**: update return type for describe (Shrujal Shah) [#&#8203;48572](https://github.com/nodejs/node/pull/48572)
    
  • [`fbe89e6320`](https://github.com/nodejs/node/commit/fbe89e6320)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48552](https://github.com/nodejs/node/pull/48552)
    
  • [`f18b287bc3`](https://github.com/nodejs/node/commit/f18b287bc3)] - **doc**: add description of autoAllocateChunkSize in ReadableStream (Debadree Chatterjee) [#&#8203;48004](https://github.com/nodejs/node/pull/48004)
    
  • [`e2f3ed1444`](https://github.com/nodejs/node/commit/e2f3ed1444)] - **doc**: fix `filename` type in `watch` result (Dmitry Semigradsky) [#&#8203;48032](https://github.com/nodejs/node/pull/48032)
    
  • [`1fe75dc2b0`](https://github.com/nodejs/node/commit/1fe75dc2b0)] - **doc**: unnest `mime` and `MIMEParams` from MIMEType constructor (Dmitry Semigradsky) [#&#8203;47950](https://github.com/nodejs/node/pull/47950)
    
  • [`e1339d58e8`](https://github.com/nodejs/node/commit/e1339d58e8)] - **doc**: update security-release-process.md (Rafael Gonzaga) [#&#8203;48504](https://github.com/nodejs/node/pull/48504)
    
  • [`e8dc7bde6a`](https://github.com/nodejs/node/commit/e8dc7bde6a)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527)
    
  • [`f8ba672c7b`](https://github.com/nodejs/node/commit/f8ba672c7b)] - **doc**: link to Runtime Keys in export conditions (Jacob Hummer) [#&#8203;48408](https://github.com/nodejs/node/pull/48408)
    
  • [`0056cb93e9`](https://github.com/nodejs/node/commit/0056cb93e9)] - **doc**: update fs flags documentation (sinkhaha) [#&#8203;48463](https://github.com/nodejs/node/pull/48463)
    
  • [`3cf3fb9479`](https://github.com/nodejs/node/commit/3cf3fb9479)] - **doc**: revise `error.md` introduction (Antoine du Hamel) [#&#8203;48423](https://github.com/nodejs/node/pull/48423)
    
  • [`7575d8b90e`](https://github.com/nodejs/node/commit/7575d8b90e)] - **doc**: add preveen-stack to triagers (Preveen P) [#&#8203;48387](https://github.com/nodejs/node/pull/48387)
    
  • [`820aa550a4`](https://github.com/nodejs/node/commit/820aa550a4)] - **doc**: refine when file is undefined in test events (Moshe Atlow) [#&#8203;48451](https://github.com/nodejs/node/pull/48451)
    
  • [`a30f2fbcc1`](https://github.com/nodejs/node/commit/a30f2fbcc1)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449)
    
  • [`239b4ea66f`](https://github.com/nodejs/node/commit/239b4ea66f)] - **doc**: mark `--import` as experimental (Moshe Atlow) [#&#8203;44067](https://github.com/nodejs/node/pull/44067)
    
  • [`2a561aefe2`](https://github.com/nodejs/node/commit/2a561aefe2)] - **doc**: add additional info on TSFN dispatch (Michael Dawson) [#&#8203;48367](https://github.com/nodejs/node/pull/48367)
    
  • [`5cc6eee30d`](https://github.com/nodejs/node/commit/5cc6eee30d)] - **doc**: add link for news from security wg (Michael Dawson) [#&#8203;48396](https://github.com/nodejs/node/pull/48396)
    
  • [`ffece88452`](https://github.com/nodejs/node/commit/ffece88452)] - **doc**: fix typo in events.md (Darshan Sen) [#&#8203;48436](https://github.com/nodejs/node/pull/48436)
    
  • [`06513585dc`](https://github.com/nodejs/node/commit/06513585dc)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48336](https://github.com/nodejs/node/pull/48336)
    
  • [`d9a800ee5c`](https://github.com/nodejs/node/commit/d9a800ee5c)] - **esm**: fix emit deprecation on legacy main resolve (Antoine du Hamel) [#&#8203;48664](https://github.com/nodejs/node/pull/48664)
    
  • [`c39b7c240e`](https://github.com/nodejs/node/commit/c39b7c240e)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#&#8203;43942](https://github.com/nodejs/node/pull/43942)
    
  • [`a00464ee06`](https://github.com/nodejs/node/commit/a00464ee06)] - **esm**: fix specifier resolution and symlinks (Zack Newsham) [#&#8203;47674](https://github.com/nodejs/node/pull/47674)
    
  • [`3b8ec348b0`](https://github.com/nodejs/node/commit/3b8ec348b0)] - **events**: fix bug listenerCount don't compare wrapped listener (yuzheng14) [#&#8203;48592](https://github.com/nodejs/node/pull/48592)
    
  • [`a68a67f54d`](https://github.com/nodejs/node/commit/a68a67f54d)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596)
    
  • [`5354af3dab`](https://github.com/nodejs/node/commit/5354af3dab)] - **fs**: call the callback with an error if writeSync fails (killa) [#&#8203;47949](https://github.com/nodejs/node/pull/47949)
    
  • [`c3a27d1d3d`](https://github.com/nodejs/node/commit/c3a27d1d3d)] - **fs**: remove unneeded return statement (Luigi Pinca) [#&#8203;48526](https://github.com/nodejs/node/pull/48526)
    
  • [`3a8586bee2`](https://github.com/nodejs/node/commit/3a8586bee2)] - **fs, stream**: initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) [#&#8203;48518](https://github.com/nodejs/node/pull/48518)
    
  • [`01746c71df`](https://github.com/nodejs/node/commit/01746c71df)] - **http**: null the joinDuplicateHeaders property on cleanup (Luigi Pinca) [#&#8203;48608](https://github.com/nodejs/node/pull/48608)
    
  • [`d47eb73a85`](https://github.com/nodejs/node/commit/d47eb73a85)] - **http**: remove useless ternary in test (geekreal) [#&#8203;48481](https://github.com/nodejs/node/pull/48481)
    
  • [`977e9a38b4`](https://github.com/nodejs/node/commit/977e9a38b4)] - **http**: fix for handling on boot timers headers and request (Franciszek Koltuniuk) [#&#8203;48291](https://github.com/nodejs/node/pull/48291)
    
  • [`be88f7cd22`](https://github.com/nodejs/node/commit/be88f7cd22)] - **http2**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`7c7230a85c`](https://github.com/nodejs/node/commit/7c7230a85c)] - **http2**: send RST code 8 on AbortController signal (Devraj Mehta) [#&#8203;48573](https://github.com/nodejs/node/pull/48573)
    
  • [`f74c2fc72a`](https://github.com/nodejs/node/commit/f74c2fc72a)] - **lib**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`db355d1f37`](https://github.com/nodejs/node/commit/db355d1f37)] - **lib**: add option to force handling stopped events (Chemi Atlow) [#&#8203;48301](https://github.com/nodejs/node/pull/48301)
    
  • [`5d682c55a5`](https://github.com/nodejs/node/commit/5d682c55a5)] - **lib**: reduce url getters on `makeRequireFunction` (Yagiz Nizipli) [#&#8203;48492](https://github.com/nodejs/node/pull/48492)
    
  • [`5260f53e55`](https://github.com/nodejs/node/commit/5260f53e55)] - **lib**: add support for inherited custom inspection methods (Antoine du Hamel) [#&#8203;48306](https://github.com/nodejs/node/pull/48306)
    
  • [`69aaf8b1d1`](https://github.com/nodejs/node/commit/69aaf8b1d1)] - **lib**: remove invalid parameter to toASCII (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878)
    
  • [`51863b80e4`](https://github.com/nodejs/node/commit/51863b80e4)] - **meta**: bump actions/checkout from 3.5.2 to 3.5.3 (dependabot\[bot]) [#&#8203;48625](https://github.com/nodejs/node/pull/48625)
    
  • [`7ec370991d`](https://github.com/nodejs/node/commit/7ec370991d)] - **meta**: bump step-security/harden-runner from 2.4.0 to 2.4.1 (dependabot\[bot]) [#&#8203;48626](https://github.com/nodejs/node/pull/48626)
    
  • [`34b8e980d4`](https://github.com/nodejs/node/commit/34b8e980d4)] - **meta**: bump ossf/scorecard-action from 2.1.3 to 2.2.0 (dependabot\[bot]) [#&#8203;48628](https://github.com/nodejs/node/pull/48628)
    
  • [`dfed9a7da9`](https://github.com/nodejs/node/commit/dfed9a7da9)] - **meta**: bump github/codeql-action from 2.3.6 to 2.20.1 (dependabot\[bot]) [#&#8203;48627](https://github.com/nodejs/node/pull/48627)
    
  • [`071eaadc5a`](https://github.com/nodejs/node/commit/071eaadc5a)] - **module**: add SourceMap.findOrigin (Isaac Z. Schlueter) [#&#8203;47790](https://github.com/nodejs/node/pull/47790)
    
  • [`bf1525c549`](https://github.com/nodejs/node/commit/bf1525c549)] - **module**: reduce url invocations in esm/load.js (Yagiz Nizipli) [#&#8203;48337](https://github.com/nodejs/node/pull/48337)
    
  • [`f8921630a2`](https://github.com/nodejs/node/commit/f8921630a2)] - **net**: server add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717)
    
  • [`b5f53d9a0b`](https://github.com/nodejs/node/commit/b5f53d9a0b)] - **net**: fix family autoselection SSL connection handling (Paolo Insogna) [#&#8203;48189](https://github.com/nodejs/node/pull/48189)
    
  • [`267439fc34`](https://github.com/nodejs/node/commit/267439fc34)] - **net**: rework autoSelectFamily implementation (Paolo Insogna) [#&#8203;46587](https://github.com/nodejs/node/pull/46587)
    
  • [`d3637cdbbf`](https://github.com/nodejs/node/commit/d3637cdbbf)] - **net**: fix address iteration with autoSelectFamily (Fedor Indutny) [#&#8203;48258](https://github.com/nodejs/node/pull/48258)
    
  • [`e8289a83f1`](https://github.com/nodejs/node/commit/e8289a83f1)] - **net**: fix family autoselection timeout handling (Paolo Insogna) [#&#8203;47860](https://github.com/nodejs/node/pull/47860)
    
  • [`863bdb785d`](https://github.com/nodejs/node/commit/863bdb785d)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777)
    
  • [`04dc090bfa`](https://github.com/nodejs/node/commit/04dc090bfa)] - **node-api**: provide napi_define_properties fast path (Gabriel Schulhof) [#&#8203;48440](https://github.com/nodejs/node/pull/48440)
    
  • [`feb6a54dc3`](https://github.com/nodejs/node/commit/feb6a54dc3)] - **node-api**: implement external strings (Gabriel Schulhof) [#&#8203;48339](https://github.com/nodejs/node/pull/48339)
    
  • [`121f74c463`](https://github.com/nodejs/node/commit/121f74c463)] - **perf_hooks**: convert maxSize to IDL value in setResourceTimingBufferSize (Chengzhong Wu) [#&#8203;44902](https://github.com/nodejs/node/pull/44902)
    
  • [`804d880589`](https://github.com/nodejs/node/commit/804d880589)] - **permission**: fix data types in PrintTree (Tobias Nießen) [#&#8203;48770](https://github.com/nodejs/node/pull/48770)
    
  • [`7aaecce9bf`](https://github.com/nodejs/node/commit/7aaecce9bf)] - **permission**: add debug log when inserting fs nodes (Rafael Gonzaga) [#&#8203;48677](https://github.com/nodejs/node/pull/48677)
    
  • [`cb51ef2905`](https://github.com/nodejs/node/commit/cb51ef2905)] - **readline**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`07065d0814`](https://github.com/nodejs/node/commit/07065d0814)] - **report**: disable js stack when no context is entered (Chengzhong Wu) [#&#8203;48495](https://github.com/nodejs/node/pull/48495)
    
  • [`572b82ffef`](https://github.com/nodejs/node/commit/572b82ffef)] - **src**: make BaseObject iteration order deterministic (Joyee Cheung) [#&#8203;48702](https://github.com/nodejs/node/pull/48702)
    
  • [`3f65598a41`](https://github.com/nodejs/node/commit/3f65598a41)] - **src**: remove kEagerCompile for CompileFunction (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671)
    
  • [`f43eacac9b`](https://github.com/nodejs/node/commit/f43eacac9b)] - **src**: deduplicate X509 getter implementations (Tobias Nießen) [#&#8203;48563](https://github.com/nodejs/node/pull/48563)
    
  • [`0c19621bdc`](https://github.com/nodejs/node/commit/0c19621bdc)] - **src**: fix uninitialized field access in AsyncHooks (Jan Olaf Krems) [#&#8203;48566](https://github.com/nodejs/node/pull/48566)
    
  • [`0c38184d62`](https://github.com/nodejs/node/commit/0c38184d62)] - **src**: fix Coverity issue regarding unnecessary copy (Yagiz Nizipli) [#&#8203;48565](https://github.com/nodejs/node/pull/48565)
    
  • [`0d73009ba3`](https://github.com/nodejs/node/commit/0d73009ba3)] - **src**: refactor `SplitString` in util (Yagiz Nizipli) [#&#8203;48491](https://github.com/nodejs/node/pull/48491)
    
  • [`6c72622df9`](https://github.com/nodejs/node/commit/6c72622df9)] - **src**: handle wasm out of bound in osx will raise SIGBUS correctly (Congcong Cai) [#&#8203;46561](https://github.com/nodejs/node/pull/46561)
    
  • [`e4261809b0`](https://github.com/nodejs/node/commit/e4261809b0)] - **src**: replace idna functions with ada::idna (Yagiz Nizipli) [#&#8203;47735](https://github.com/nodejs/node/pull/47735)
    
  • [`3dd82b1820`](https://github.com/nodejs/node/commit/3dd82b1820)] - **stream**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550)
    
  • [`786fbdb824`](https://github.com/nodejs/node/commit/786fbdb824)] - **stream**: fix premature pipeline end (Robert Nagy) [#&#8203;48435](https://github.com/nodejs/node/pull/48435)
    
  • [`c224e1b255`](https://github.com/nodejs/node/commit/c224e1b255)] - **stream**: fix deadlock when pipeing to full sink (Robert Nagy) [#&#8203;48691](https://github.com/nodejs/node/pull/48691)
    
  • [`2c75b9ece2`](https://github.com/nodejs/node/commit/2c75b9ece2)] - **test**: fix flaky test-string-decode.js on x86 (Stefan Stojanovic) [#&#8203;48750](https://github.com/nodejs/node/pull/48750)
    
  • [`279c4f64c1`](https://github.com/nodejs/node/commit/279c4f64c1)] - **test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky (Joyee Cheung) [#&#8203;49565](https://github.com/nodejs/node/pull/49565)
    
  • [`01eacccd9a`](https://github.com/nodejs/node/commit/01eacccd9a)] - **test**: deflake test-net-throttle (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599)
    
  • [`33886b271c`](https://github.com/nodejs/node/commit/33886b271c)] - **test**: move test-net-throttle to parallel (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599)
    
  • [`a79112b5f4`](https://github.com/nodejs/node/commit/a79112b5f4)] - ***Revert*** "**test**: remove test-crypto-keygen flaky designation" (Luigi Pinca) [#&#8203;48652](https://github.com/nodejs/node/pull/48652)
    
  • [`6ec57984db`](https://github.com/nodejs/node/commit/6ec57984db)] - **test**: add missing assertions to test-runner-cli (Moshe Atlow) [#&#8203;48593](https://github.com/nodejs/node/pull/48593)
    
  • [`dd1805e802`](https://github.com/nodejs/node/commit/dd1805e802)] - **test**: remove test-crypto-keygen flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575)
    
  • [`df9a9afc99`](https://github.com/nodejs/node/commit/df9a9afc99)] - **test**: remove test-timers-immediate-queue flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575)
    
  • [`3ae96ae380`](https://github.com/nodejs/node/commit/3ae96ae380)] - **test**: make IsolateData per-isolate in cctest (Joyee Cheung) [#&#8203;48450](https://github.com/nodejs/node/pull/48450)
    
  • [`f2ce8e0c06`](https://github.com/nodejs/node/commit/f2ce8e0c06)] - **test**: define NAPI_VERSION before including node_api.h (Chengzhong Wu) [#&#8203;48376](https://github.com/nodejs/node/pull/48376)
    
  • [`13ac0a5e26`](https://github.com/nodejs/node/commit/13ac0a5e26)] - **test**: remove unnecessary noop function args to `mustNotCall()` (Antoine du Hamel) [#&#8203;48513](https://github.com/nodejs/node/pull/48513)
    
  • [`8fdd4c55b3`](https://github.com/nodejs/node/commit/8fdd4c55b3)] - **test**: skip test-runner-watch-mode on IBMi (Moshe Atlow) [#&#8203;48473](https://github.com/nodejs/node/pull/48473)
    
  • [`9d90409241`](https://github.com/nodejs/node/commit/9d90409241)] - **test**: fix flaky test-watch-mode (Moshe Atlow) [#&#8203;48147](https://github.com/nodejs/node/pull/48147)
    
  • [`27a4bc7c32`](https://github.com/nodejs/node/commit/27a4bc7c32)] - **test**: add missing \<algorithm> include for std::find (Sam James) [#&#8203;48380](https://github.com/nodejs/node/pull/48380)
    
  • [`cb92c4b9fe`](https://github.com/nodejs/node/commit/cb92c4b9fe)] - **test**: update url web-platform tests (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319)
    
  • [`f35c4d3190`](https://github.com/nodejs/node/commit/f35c4d3190)] - **test**: ignore the copied entry_point.c (Luigi Pinca) [#&#8203;48297](https://github.com/nodejs/node/pull/48297)
    
  • [`41d1e6888f`](https://github.com/nodejs/node/commit/41d1e6888f)] - **test**: refactor test-gc-http-client-timeout (Luigi Pinca) [#&#8203;48292](https://github.com/nodejs/node/pull/48292)
    
  • [`125bca621a`](https://github.com/nodejs/node/commit/125bca621a)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;48320](https://github.com/nodejs/node/pull/48320)
    
  • [`e9ac111d02`](https://github.com/nodejs/node/commit/e9ac111d02)] - **test**: update FileAPI web-platform tests (Yagiz Nizipli) [#&#8203;48322](https://github.com/nodejs/node/pull/48322)
    
  • [`3da57d17f5`](https://github.com/nodejs/node/commit/3da57d17f5)] - **test**: update user-timing web-platform tests (Yagiz Nizipli) [#&#8203;48321](https://github.com/nodejs/node/pull/48321)
    
  • [`c728b8a29b`](https://github.com/nodejs/node/commit/c728b8a29b)] - **test**: fix `test-net-autoselectfamily` for kernel without IPv6 support (Livia Medeiros) [#&#8203;45856](https://github.com/nodejs/node/pull/45856)
    
  • [`6de7aa1d19`](https://github.com/nodejs/node/commit/6de7aa1d19)] - **test**: move `test-tls-autoselectfamily-servername` to `test/internet` (Antoine du Hamel) [#&#8203;47029](https://github.com/nodejs/node/pull/47029)
    
  • [`2de9868292`](https://github.com/nodejs/node/commit/2de9868292)] - **test**: validate host with commas on url.parse (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878)
    
  • [`e7d2e8ef2a`](https://github.com/nodejs/node/commit/e7d2e8ef2a)] - **test**: delete test-net-bytes-per-incoming-chunk-overhead (Michaël Zasso) [#&#8203;48811](https://github.com/nodejs/node/pull/48811)
    
  • [`f5494fa1b0`](https://github.com/nodejs/node/commit/f5494fa1b0)] - **test_runner**: fixed `test` shorthands return type (Shocker) [#&#8203;48555](https://github.com/nodejs/node/pull/48555)
    
  • [`7051cafdfa`](https://github.com/nodejs/node/commit/7051cafdfa)] - **test_runner**: make `--test-name-pattern` recursive (Moshe Atlow) [#&#8203;48382](https://github.com/nodejs/node/pull/48382)
    
  • [`f302286442`](https://github.com/nodejs/node/commit/f302286442)] - **test_runner**: refactor coverage report output for readability (Damien Seguin) [#&#8203;47791](https://github.com/nodejs/node/pull/47791)
    
  • [`7822a541e5`](https://github.com/nodejs/node/commit/7822a541e5)] - **timers**: support Symbol.dispose (Moshe Atlow) [#&#8203;48633](https://github.com/nodejs/node/pull/48633)
    
  • [`3eeca52db1`](https://github.com/nodejs/node/commit/3eeca52db1)] - **tls**: fix bugs of double TLS (rogertyang) [#&#8203;48969](https://github.com/nodejs/node/pull/48969)
    
  • [`4826379516`](https://github.com/nodejs/node/commit/4826379516)] - **tools**: run fetch_deps.py with Python 3 (Richard Lau) [#&#8203;48729](https://github.com/nodejs/node/pull/48729)
    
  • [`e2688c8d79`](https://github.com/nodejs/node/commit/e2688c8d79)] - **tools**: update doc to unist-util-select@5.0.0 unist-util-visit@5.0.0 (Node.js GitHub Bot) [#&#8203;48714](https://github.com/nodejs/node/pull/48714)
    
  • [`7399481096`](https://github.com/nodejs/node/commit/7399481096)] - **tools**: update lint-md-dependencies to rollup@3.26.2 (Node.js GitHub Bot) [#&#8203;48705](https://github.com/nodejs/node/pull/48705)
    
  • [`31c07153ce`](https://github.com/nodejs/node/commit/31c07153ce)] - **tools**: update eslint to 8.44.0 (Node.js GitHub Bot) [#&#8203;48632](https://github.com/nodejs/node/pull/48632)
    
  • [`4e53f51e24`](https://github.com/nodejs/node/commit/4e53f51e24)] - **tools**: update lint-md-dependencies to rollup@3.26.0 (Node.js GitHub Bot) [#&#8203;48631](https://github.com/nodejs/node/pull/48631)
    
  • [`7d52950a96`](https://github.com/nodejs/node/commit/7d52950a96)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48544](https://github.com/nodejs/node/pull/48544)
    
  • [`e168eab3ee`](https://github.com/nodejs/node/commit/e168eab3ee)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48486](https://github.com/nodejs/node/pull/48486)
    
  • [`9711bc24f6`](https://github.com/nodejs/node/commit/9711bc24f6)] - **tools**: replace sed with perl (Luigi Pinca) [#&#8203;48499](https://github.com/nodejs/node/pull/48499)
    
  • [`9c1937c0a7`](https://github.com/nodejs/node/commit/9c1937c0a7)] - **tools**: update eslint to 8.43.0 (Node.js GitHub Bot) [#&#8203;48487](https://github.com/nodejs/node/pull/48487)
    
  • [`9449f05ab1`](https://github.com/nodejs/node/commit/9449f05ab1)] - **tools**: update doc to to-vfile@8.0.0 (Node.js GitHub Bot) [#&#8203;48485](https://github.com/nodejs/node/pull/48485)
    
  • [`79dcd968b1`](https://github.com/nodejs/node/commit/79dcd968b1)] - **tools**: prepare tools/doc for to-vfile 8.0.0 (Rich Trott) [#&#8203;48485](https://github.com/nodejs/node/pull/48485)
    
  • [`538f388ac0`](https://github.com/nodejs/node/commit/538f388ac0)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48417](https://github.com/nodejs/node/pull/48417)
    
  • [`01bc10dcd5`](https://github.com/nodejs/node/commit/01bc10dcd5)] - **tools**: update create-or-update-pull-request-action (Richard Lau) [#&#8203;48398](https://github.com/nodejs/node/pull/48398)
    
  • [`590a072657`](https://github.com/nodejs/node/commit/590a072657)] - **tools**: update eslint-plugin-jsdoc (Richard Lau) [#&#8203;48393](https://github.com/nodejs/node/pull/48393)
    
  • [`6a5805491e`](https://github.com/nodejs/node/commit/6a5805491e)] - **tools**: update eslint to 8.42.0 (Node.js GitHub Bot) [#&#8203;48328](https://github.com/nodejs/node/pull/48328)
    
  • [`2eb13e3986`](https://github.com/nodejs/node/commit/2eb13e3986)] - **tools**: disable jsdoc/no-defaults rule (Luigi Pinca) [#&#8203;48328](https://github.com/nodejs/node/pull/48328)
    
  • [`3363cfa6c7`](https://github.com/nodejs/node/commit/3363cfa6c7)] - **typings**: remove unused primordials (Yagiz Nizipli) [#&#8203;48509](https://github.com/nodejs/node/pull/48509)
    
  • [`c59ae86ba0`](https://github.com/nodejs/node/commit/c59ae86ba0)] - **(SEMVER-MINOR)** **url**: add value argument to has and delete methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885)
    
  • [`f59c9636f4`](https://github.com/nodejs/node/commit/f59c9636f4)] - **url**: conform to origin getter spec changes (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319)
    
  • [`0beb5ab93d`](https://github.com/nodejs/node/commit/0beb5ab93d)] - **url**: ensure getter access do not mutate observable symbols (Antoine du Hamel) [#&#8203;48897](https://github.com/nodejs/node/pull/48897)
    
  • [`0a022c496d`](https://github.com/nodejs/node/commit/0a022c496d)] - **util**: use `primordials.ArrayPrototypeIndexOf` instead of mutable method (DaisyDogs07) [#&#8203;48586](https://github.com/nodejs/node/pull/48586)
    
    

v18.17.1: 2023-08-09, Version 18.17.1 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in August 2023 Security Releases blog post.

Commits
  • [`fe3abdf82e`](https://github.com/nodejs/node/commit/fe3abdf82e)] - **deps**: update archs files for openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036)
    
  • [`2c5a522d9c`](https://github.com/nodejs/node/commit/2c5a522d9c)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036)
    
  • [`15bced0bde`](https://github.com/nodejs/node/commit/15bced0bde)] - **policy**: handle Module.constructor and main.extensions bypass (RafaelGSS) [nodejs-private/node-private#417](https://github.com/nodejs-private/node-private/pull/417)
    
  • [`d4570fae35`](https://github.com/nodejs/node/commit/d4570fae35)] - **policy**: disable process.binding() when enabled (Tobias Nießen) [nodejs-private/node-private#460](https://github.com/nodejs-private/node-private/pull/460)
    
    

v18.17.0: 2023-07-18, Version 18.17.0 'Hydrogen' (LTS), @​danielleadams

Compare Source

Notable Changes
Ada 2.0

Node.js v18.17.0 comes with the latest version of the URL parser, Ada. This update brings significant performance improvements
to URL parsing, including enhancements to the url.domainToASCII and url.domainToUnicode functions in node:url.

Ada 2.0 has been integrated into the Node.js codebase, ensuring that all parts of the application can benefit from the
improved performance. Additionally, Ada 2.0 features a significant performance boost over its predecessor, Ada 1.0.4,
while also eliminating the need for the ICU requirement for URL hostname parsing.

Contributed by Yagiz Nizipli and Daniel Lemire in #​47339

Web Crypto API

Web Crypto API functions' arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations.
This further improves interoperability with other implementations of Web Crypto API.

Contributed by Filip Skokan in #​46067

  • crypto:
    • update root certificates to NSS 3.89 (Node.js GitHub Bot) #​47659
  • dns:
    • (SEMVER-MINOR) expose getDefaultResultOrder (btea) #​46973
  • doc:
    • add ovflowd to collaborators (Claudio Wunder) #​47844
    • add KhafraDev to collaborators (Matthew Aitken) #​47510
  • events:
    • (SEMVER-MINOR) add getMaxListeners method (Matthew Aitken) #​47039
  • fs:
    • (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #​47084
    • (SEMVER-MINOR) add recursive option to readdir and opendir (Ethan Arrowood) #​41439
    • (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #​47084
    • (SEMVER-MINOR) implement byob mode for readableWebStream() (Debadree Chatterjee) #​46933
  • http:
    • (SEMVER-MINOR) prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) #​47732
    • (SEMVER-MINOR) remove internal error in assignSocket (Matteo Collina) #​47723
    • (SEMVER-MINOR) add highWaterMark opt in http.createServer (HinataKah0) #​47405
  • lib:
    • (SEMVER-MINOR) add webstreams to Duplex.from() (Debadree Chatterjee) #​46190
    • (SEMVER-MINOR) implement AbortSignal.any() (Chemi Atlow) #​47821
  • module:
    • change default resolver to not throw on unknown scheme (Gil Tayar) #​47824
  • node-api:
    • (SEMVER-MINOR) define version 9 (Chengzhong Wu) #​48151
    • (SEMVER-MINOR) deprecate napi_module_register (Vladimir Morozov) #​46319
  • stream:
    • (SEMVER-MINOR) preserve object mode in compose (Raz Luvaton) #​47413
    • (SEMVER-MINOR) add setter & getter for default highWaterMark (#​46929) (Robert Nagy) #​46929
  • test:
    • unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) #​48078
  • test_runner:
    • (SEMVER-MINOR) add shorthands to test (Chemi Atlow) #​47909
    • (SEMVER-MINOR) support combining coverage reports (Colin Ihrig) #​47686
    • (SEMVER-MINOR) execute before hook on test (Chemi Atlow) #​47586
    • (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) #​47238
  • tools:
    • update LICENSE and license-builder.sh (Santiago Gimeno) #​48078
  • url:
    • (SEMVER-MINOR) implement URL.canParse (Matthew Aitken) #​47179
  • wasi:
    • (SEMVER-MINOR) no longer require flag to enable wasi (Michael Dawson) #​47286
Commits
  • [`2ba08ac002`](https://github.com/nodejs/node/commit/2ba08ac002)] - **benchmark**: use `cluster.isPrimary` instead of `cluster.isMaster` (Deokjin Kim) [#&#8203;48002](https://github.com/nodejs/node/pull/48002)
    
  • [`60ca69d96c`](https://github.com/nodejs/node/commit/60ca69d96c)] - **benchmark**: add eventtarget creation bench (Rafael Gonzaga) [#&#8203;47774](https://github.com/nodejs/node/pull/47774)
    
  • [`d8233d96bb`](https://github.com/nodejs/node/commit/d8233d96bb)] - **benchmark**: add a benchmark for `defaultResolve` (Antoine du Hamel) [#&#8203;47543](https://github.com/nodejs/node/pull/47543)
    
  • [`a1aabb6912`](https://github.com/nodejs/node/commit/a1aabb6912)] - **benchmark**: fix invalid requirementsURL (Deokjin Kim) [#&#8203;47378](https://github.com/nodejs/node/pull/47378)
    
  • [`394c61caf9`](https://github.com/nodejs/node/commit/394c61caf9)] - **bootstrap**: support namespaced builtins in snapshot scripts (Joyee Cheung) [#&#8203;47467](https://github.com/nodejs/node/pull/47467)
    
  • [`0165a765a0`](https://github.com/nodejs/node/commit/0165a765a0)] - **bootstrap**: do not expand process.argv\[1] for snapshot entry points (Joyee Cheung) [#&#8203;47466](https://github.com/nodejs/node/pull/47466)
    
  • [`cca557cdd9`](https://github.com/nodejs/node/commit/cca557cdd9)] - **buffer**: combine checking range of sourceStart in `buf.copy` (Deokjin Kim) [#&#8203;47758](https://github.com/nodejs/node/pull/47758)
    
  • [`4c69be467c`](https://github.com/nodejs/node/commit/4c69be467c)] - **buffer**: use private properties for brand checks in File (Matthew Aitken) [#&#8203;47154](https://github.com/nodejs/node/pull/47154)
    
  • [`d002f9b6e2`](https://github.com/nodejs/node/commit/d002f9b6e2)] - **build**: revert unkonwn ruff selector (Moshe Atlow) [#&#8203;48753](https://github.com/nodejs/node/pull/48753)
    
  • [`93f77cb762`](https://github.com/nodejs/node/commit/93f77cb762)] - **build**: set v8\_enable_webassembly=false when lite mode is enabled (Cheng Shao) [#&#8203;48248](https://github.com/nodejs/node/pull/48248)
    
  • [`1662e894f3`](https://github.com/nodejs/node/commit/1662e894f3)] - **build**: add action to close stale PRs (Michael Dawson) [#&#8203;48051](https://github.com/nodejs/node/pull/48051)
    
  • [`5ca437b288`](https://github.com/nodejs/node/commit/5ca437b288)] - **build**: use pathlib for paths (Mohammed Keyvanzadeh) [#&#8203;47581](https://github.com/nodejs/node/pull/47581)
    
  • [`72443bc54b`](https://github.com/nodejs/node/commit/72443bc54b)] - **build**: refactor configure.py (Mohammed Keyvanzadeh) [#&#8203;47667](https://github.com/nodejs/node/pull/47667)
    
  • [`d4eecb5be9`](https://github.com/nodejs/node/commit/d4eecb5be9)] - **build**: add devcontainer configuration (Tierney Cyren) [#&#8203;40825](https://github.com/nodejs/node/pull/40825)
    
  • [`803ed41144`](https://github.com/nodejs/node/commit/803ed41144)] - **build**: bump ossf/scorecard-action from 2.1.2 to 2.1.3 (dependabot\[bot]) [#&#8203;47367](https://github.com/nodejs/node/pull/47367)
    
  • [`48468c4413`](https://github.com/nodejs/node/commit/48468c4413)] - **build**: replace Python linter flake8 with ruff (Christian Clauss) [#&#8203;47519](https://github.com/nodejs/node/pull/47519)
    
  • [`3ceb2c4387`](https://github.com/nodejs/node/commit/3ceb2c4387)] - **build**: add node-core-utils to setup (Jiawen Geng) [#&#8203;47442](https://github.com/nodejs/node/pull/47442)
    
  • [`fdc59b8e14`](https://github.com/nodejs/node/commit/fdc59b8e14)] - **build**: bump github/codeql-action from 2.2.6 to 2.2.9 (dependabot\[bot]) [#&#8203;47366](https://github.com/nodejs/node/pull/47366)
    
  • [`3924893023`](https://github.com/nodejs/node/commit/3924893023)] - **build**: update stale action from v7 to v8 (Rich Trott) [#&#8203;47357](https://github.com/nodejs/node/pull/47357)
    
  • [`753185c5b0`](https://github.com/nodejs/node/commit/753185c5b0)] - **build**: remove Python pip `--no-user` option (Christian Clauss) [#&#8203;47372](https://github.com/nodejs/node/pull/47372)
    
  • [`67af0a6a2b`](https://github.com/nodejs/node/commit/67af0a6a2b)] - **build**: avoid usage of pipes library (Mohammed Keyvanzadeh) [#&#8203;47271](https://github.com/nodejs/node/pull/47271)
    
  • [`db910dd6b2`](https://github.com/nodejs/node/commit/db910dd6b2)] - **build, deps, tools**: avoid excessive LTO (Konstantin Demin) [#&#8203;47313](https://github.com/nodejs/node/pull/47313)
    
  • [`35d1def891`](https://github.com/nodejs/node/commit/35d1def891)] - **child_process**: use signal.reason in child process abort (Debadree Chatterjee) [#&#8203;47817](https://github.com/nodejs/node/pull/47817)
    
  • [`7692d2e7b9`](https://github.com/nodejs/node/commit/7692d2e7b9)] - **cluster**: use ObjectPrototypeHasOwnProperty (Daeyeon Jeong) [#&#8203;48141](https://github.com/nodejs/node/pull/48141)
    
  • [`7617772762`](https://github.com/nodejs/node/commit/7617772762)] - **crypto**: use openssl's own memory BIOs in crypto_context.cc (GauriSpears) [#&#8203;47160](https://github.com/nodejs/node/pull/47160)
    
  • [`8cabfe7c6e`](https://github.com/nodejs/node/commit/8cabfe7c6e)] - **crypto**: fix setEngine() when OPENSSL_NO_ENGINE set (Tobias Nießen) [#&#8203;47977](https://github.com/nodejs/node/pull/47977)
    
  • [`de1338da05`](https://github.com/nodejs/node/commit/de1338da05)] - **crypto**: fix webcrypto private/secret import with empty usages (Filip Skokan) [#&#8203;47877](https://github.com/nodejs/node/pull/47877)
    
  • [`27a696fda9`](https://github.com/nodejs/node/commit/27a696fda9)] - **crypto**: update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659)
    
  • [`e2292f936e`](https://github.com/nodejs/node/commit/e2292f936e)] - **crypto**: remove INT_MAX restriction in randomBytes (Tobias Nießen) [#&#8203;47559](https://github.com/nodejs/node/pull/47559)
    
  • [`a5f214c00c`](https://github.com/nodejs/node/commit/a5f214c00c)] - **crypto**: replace THROW with CHECK for scrypt keylen (Tobias Nießen) [#&#8203;47407](https://github.com/nodejs/node/pull/47407)
    
  • [`dd42214fd4`](https://github.com/nodejs/node/commit/dd42214fd4)] - **crypto**: unify validation of checkPrime checks (Tobias Nießen) [#&#8203;47165](https://github.com/nodejs/node/pull/47165)
    
  • [`76e4d12fb3`](https://github.com/nodejs/node/commit/76e4d12fb3)] - **crypto**: re-add padding for AES-KW wrapped JWKs (Filip Skokan) [#&#8203;46563](https://github.com/nodejs/node/pull/46563)
    
  • [`9d894c17dd`](https://github.com/nodejs/node/commit/9d894c17dd)] - **crypto**: use WebIDL converters in WebCryptoAPI (Filip Skokan) [#&#8203;46067](https://github.com/nodejs/node/pull/46067)
    
  • [`6f3a8b45a5`](https://github.com/nodejs/node/commit/6f3a8b45a5)] - **deps**: update ada to 2.5.0 (Node.js GitHub Bot) [#&#8203;48223](https://github.com/nodejs/node/pull/48223)
    
  • [`075b6db919`](https://github.com/nodejs/node/commit/075b6db919)] - **deps**: update ada to 2.4.2 (Node.js GitHub Bot) [#&#8203;48092](https://github.com/nodejs/node/pull/48092)
    
  • [`a4ee1f652c`](https://github.com/nodejs/node/commit/a4ee1f652c)] - **deps**: update ada to 2.4.1 (Node.js GitHub Bot) [#&#8203;48036](https://github.com/nodejs/node/pull/48036)
    
  • [`81b514d3f0`](https://github.com/nodejs/node/commit/81b514d3f0)] - **deps**: update ada to 2.4.0 (Node.js GitHub Bot) [#&#8203;47922](https://github.com/nodejs/node/pull/47922)
    
  • [`575ddf694f`](https://github.com/nodejs/node/commit/575ddf694f)] - **deps**: update ada to 2.3.1 (Node.js GitHub Bot) [#&#8203;47893](https://github.com/nodejs/node/pull/47893)
    
  • [`2d03d5f458`](https://github.com/nodejs/node/commit/2d03d5f458)] - **deps**: update ada to 2.3.0 (Node.js GitHub Bot) [#&#8203;47737](https://github.com/nodejs/node/pull/47737)
    
  • [`42e690f2d5`](https://github.com/nodejs/node/commit/42e690f2d5)] - **deps**: update ada to 2.2.0 (Node.js GitHub Bot) [#&#8203;47678](https://github.com/nodejs/node/pull/47678)
    
  • [`08dd271521`](https://github.com/nodejs/node/commit/08dd271521)] - **deps**: update ada to 2.1.0 (Node.js GitHub Bot) [#&#8203;47598](https://github.com/nodejs/node/pull/47598)
    
  • [`96c50ba71f`](https://github.com/nodejs/node/commit/96c50ba71f)] - **deps**: update ada to 2.0.0 (Node.js GitHub Bot) [#&#8203;47339](https://github.com/nodejs/node/pull/47339)
    
  • [`4d1c38b758`](https://github.com/nodejs/node/commit/4d1c38b758)] - **deps**: update zlib to [`337322d`](https://github.com/nodejs/node/commit/337322d) (Node.js GitHub Bot) [#&#8203;48218](https://github.com/nodejs/node/pull/48218)
    
  • [`74206b2549`](https://github.com/nodejs/node/commit/74206b2549)] - **deps**: update histogram 0.11.8 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742)
    
  • [`fbb4b3775d`](https://github.com/nodejs/node/commit/fbb4b3775d)] - **deps**: update histogram to 0.11.7 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742)
    
  • [`e88c079022`](https://github.com/nodejs/node/commit/e88c079022)] - **deps**: update simdutf to 3.2.12 (Node.js GitHub Bot) [#&#8203;48118](https://github.com/nodejs/node/pull/48118)
    
  • [`48bd1248b9`](https://github.com/nodejs/node/commit/48bd1248b9)] - **deps**: update minimatch to 9.0.1 (Node.js GitHub Bot) [#&#8203;48094](https://github.com/nodejs/node/pull/48094)
    
  • [`d4572d31fa`](https://github.com/nodejs/node/commit/d4572d31fa)] - **deps**: update corepack to 0.18.0 (Node.js GitHub Bot) [#&#8203;48091](https://github.com/nodejs/node/pull/48091)
    
  • [`8090d29dc4`](https://github.com/nodejs/node/commit/8090d29dc4)] - **deps**: update uvwasi to 0.0.18 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866)
    
  • [`169c8eea2e`](https://github.com/nodejs/node/commit/169c8eea2e)] - **deps**: update uvwasi to 0.0.17 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866)
    
  • [`6acbb23380`](https://github.com/nodejs/node/commit/6acbb23380)] - **deps**: upgrade npm to 9.6.7 (npm team) [#&#8203;48062](https://github.com/nodejs/node/pull/48062)
    
  • [`e8f2c0a58b`](https://github.com/nodejs/node/commit/e8f2c0a58b)] - **deps**: update undici to 5.22.1 (Node.js GitHub Bot) [#&#8203;47994](https://github.com/nodejs/node/pull/47994)
    
  • [`9309fd3120`](https://github.com/nodejs/node/commit/9309fd3120)] - **deps**: update simdutf to 3.2.9 (Node.js GitHub Bot) [#&#8203;47983](https://github.com/nodejs/node/pull/47983)
    
  • [`b796d3560a`](https://github.com/nodejs/node/commit/b796d3560a)] - **deps**: upgrade npm to 9.6.6 (npm team) [#&#8203;47862](https://github.com/nodejs/node/pull/47862)
    
  • [`cce372e14e`](https://github.com/nodejs/node/commit/cce372e14e)] - **deps**: V8: cherry-pick [`c5ab3e4`](https://github.com/nodejs/node/commit/c5ab3e4f0c5a) (Richard Lau) [#&#8203;47736](https://github.com/nodejs/node/pull/47736)
    
  • [`7283486adb`](https://github.com/nodejs/node/commit/7283486adb)] - **deps**: update undici to 5.22.0 (Node.js GitHub Bot) [#&#8203;47679](https://github.com/nodejs/node/pull/47679)
    
  • [`2ea6e03003`](https://github.com/nodejs/node/commit/2ea6e03003)] - **deps**: add minimatch as a dependency (Moshe Atlow) [#&#8203;47499](https://github.com/nodejs/node/pull/47499)
    
  • [`261e1d23d1`](https://github.com/nodejs/node/commit/261e1d23d1)] - **deps**: update ICU to 73.1 release (Steven R. Loomis) [#&#8203;47456](https://github.com/nodejs/node/pull/47456)
    
  • [`f532f9df5f`](https://github.com/nodejs/node/commit/f532f9df5f)] - **deps**: update undici to 5.21.2 (Node.js GitHub Bot) [#&#8203;47508](https://github.com/nodejs/node/pull/47508)
    
  • [`dcb8c038b9`](https://github.com/nodejs/node/commit/dcb8c038b9)] - **deps**: update simdutf to 3.2.8 (Node.js GitHub Bot) [#&#8203;47507](https://github.com/nodejs/node/pull/47507)
    
  • [`6c8456d61f`](https://github.com/nodejs/node/commit/6c8456d61f)] - **deps**: update undici to 5.21.1 (Node.js GitHub Bot) [#&#8203;47488](https://github.com/nodejs/node/pull/47488)
    
  • [`d3b2e8a438`](https://github.com/nodejs/node/commit/d3b2e8a438)] - **deps**: update simdutf to 3.2.7 (Node.js GitHub Bot) [#&#8203;47473](https://github.com/nodejs/node/pull/47473)
    
  • [`64a5fe0499`](https://github.com/nodejs/node/commit/64a5fe0499)] - **deps**: update corepack to 0.17.2 (Node.js GitHub Bot) [#&#8203;47474](https://github.com/nodejs/node/pull/47474)
    
  • [`6f0f61a7d3`](https://github.com/nodejs/node/commit/6f0f61a7d3)] - **deps**: upgrade npm to 9.6.4 (npm team) [#&#8203;47432](https://github.com/nodejs/node/pull/47432)
    
  • [`443a72e207`](https://github.com/nodejs/node/commit/443a72e207)] - **deps**: update zlib to upstream [`5edb52d`](https://github.com/nodejs/node/commit/5edb52d4) (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151)
    
  • [`dc3bc46914`](https://github.com/nodejs/node/commit/dc3bc46914)] - **deps**: update simdutf to 3.2.3 (Node.js GitHub Bot) [#&#8203;47331](https://github.com/nodejs/node/pull/47331)
    
  • [`b2f2bebbc2`](https://github.com/nodejs/node/commit/b2f2bebbc2)] - **deps**: update timezone to 2023c (Node.js GitHub Bot) [#&#8203;47302](https://github.com/nodejs/node/pull/47302)
    
  • [`c10729ffa7`](https://github.com/nodejs/node/commit/c10729ffa7)] - **deps**: upgrade npm to 9.6.3 (npm team) [#&#8203;47325](https://github.com/nodejs/node/pull/47325)
    
  • [`420deac1de`](https://github.com/nodejs/node/commit/420deac1de)] - **deps**: update corepack to 0.17.1 (Node.js GitHub Bot) [#&#8203;47156](https://github.com/nodejs/node/pull/47156)
    
  • [`966ba28491`](https://github.com/nodejs/node/commit/966ba28491)] - **deps**: V8: cherry-pick [`3e4952c`](https://github.com/nodejs/node/commit/3e4952cb2a59) (Richard Lau) [#&#8203;47236](https://github.com/nodejs/node/pull/47236)
    
  • [`fc6ab26824`](https://github.com/nodejs/node/commit/fc6ab26824)] - **deps**: update timezone to 2023b (Node.js GitHub Bot) [#&#8203;47256](https://github.com/nodejs/node/pull/47256)
    
  • [`2700e70215`](https://github.com/nodejs/node/commit/2700e70215)] - **deps**: upgrade npm to 9.6.2 (npm team) [#&#8203;47108](https://github.com/nodejs/node/pull/47108)
    
  • [`29ba98a0a5`](https://github.com/nodejs/node/commit/29ba98a0a5)] - **deps**: V8: cherry-pick [`975ff4d`](https://github.com/nodejs/node/commit/975ff4dbfd1b) (Debadree Chatterjee) [#&#8203;47209](https://github.com/nodejs/node/pull/47209)
    
  • [`be34777be8`](https://github.com/nodejs/node/commit/be34777be8)] - **deps**: cherry-pick win/arm64/clang fixes (Cheng Zhao) [#&#8203;47011](https://github.com/nodejs/node/pull/47011)
    
  • [`b52aacb614`](https://github.com/nodejs/node/commit/b52aacb614)] - **deps**: update uvwasi to v0.0.16 (Michael Dawson) [#&#8203;46434](https://github.com/nodejs/node/pull/46434)
    
  • [`27a76cf5e0`](https://github.com/nodejs/node/commit/27a76cf5e0)] - **deps,test**: update postject to 1.0.0-alpha.6 (Node.js GitHub Bot) [#&#8203;48072](https://github.com/nodejs/node/pull/48072)
    
  • [`b171c1a3a4`](https://github.com/nodejs/node/commit/b171c1a3a4)] - **dgram**: convert macro to template (Tobias Nießen) [#&#8203;47891](https://github.com/nodejs/node/pull/47891)
    
  • [`709bf1c758`](https://github.com/nodejs/node/commit/709bf1c758)] - **(SEMVER-MINOR)** **dns**: expose getDefaultResultOrder (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973)
    
  • [`2f202c93e7`](https://github.com/nodejs/node/commit/2f202c93e7)] - **doc**: clarify array args to Buffer.from() (Bryan English) [#&#8203;48274](https://github.com/nodejs/node/pull/48274)
    
  • [`27f195f8d8`](https://github.com/nodejs/node/commit/27f195f8d8)] - **doc**: document watch option for node:test run() (Moshe Atlow) [#&#8203;48256](https://github.com/nodejs/node/pull/48256)
    
  • [`7558ef350a`](https://github.com/nodejs/node/commit/7558ef350a)] - **doc**: update documentation for FIPS support (Richard Lau) [#&#8203;48194](https://github.com/nodejs/node/pull/48194)
    
  • [`f2bb1919e5`](https://github.com/nodejs/node/commit/f2bb1919e5)] - **doc**: improve the documentation of the stdio option (Kumar Arnav) [#&#8203;48110](https://github.com/nodejs/node/pull/48110)
    
  • [`a2aa52ba92`](https://github.com/nodejs/node/commit/a2aa52ba92)] - **doc**: update Buffer.allocUnsafe description (sinkhaha) [#&#8203;48183](https://github.com/nodejs/node/pull/48183)
    
  • [`19ad471d52`](https://github.com/nodejs/node/commit/19ad471d52)] - **doc**: update codeowners with website team (Claudio Wunder) [#&#8203;48197](https://github.com/nodejs/node/pull/48197)
    
  • [`67b2c2a98f`](https://github.com/nodejs/node/commit/67b2c2a98f)] - **doc**: fix broken link to new folder doc/contributing/maintaining (Andrea Fassina) [#&#8203;48205](https://github.com/nodejs/node/pull/48205)
    
  • [`795ca70815`](https://github.com/nodejs/node/commit/795ca70815)] - **doc**: add atlowChemi to triagers (Chemi Atlow) [#&#8203;48104](https://github.com/nodejs/node/pull/48104)
    
  • [`e437a0aff1`](https://github.com/nodejs/node/commit/e437a0aff1)] - **doc**: fix typo in readline completer function section (Vadym) [#&#8203;48188](https://github.com/nodejs/node/pull/48188)
    
  • [`92e0ea496d`](https://github.com/nodejs/node/commit/92e0ea496d)] - **doc**: remove broken link for keygen (Rich Trott) [#&#8203;48176](https://github.com/nodejs/node/pull/48176)
    
  • [`fe15dae8e6`](https://github.com/nodejs/node/commit/fe15dae8e6)] - **doc**: add `auto` intrinsic height to prevent jitter/flicker (Daniel Holbert) [#&#8203;48195](https://github.com/nodejs/node/pull/48195)
    
  • [`230335e21f`](https://github.com/nodejs/node/commit/230335e21f)] - **doc**: add version info on the SEA docs (Antoine du Hamel) [#&#8203;48173](https://github.com/nodejs/node/pull/48173)
    
  • [`e6f37d1b80`](https://github.com/nodejs/node/commit/e6f37d1b80)] - **doc**: add Ruy to list of TSC members (Michael Dawson) [#&#8203;48172](https://github.com/nodejs/node/pull/48172)
    
  • [`69205a250c`](https://github.com/nodejs/node/commit/69205a250c)] - **doc**: update socket.remote\* properties documentation (Saba Kharanauli) [#&#8203;48139](https://github.com/nodejs/node/pull/48139)
    
  • [`e4a5d6298c`](https://github.com/nodejs/node/commit/e4a5d6298c)] - **doc**: update outdated section on TLSv1.3-PSK (Tobias Nießen) [#&#8203;48123](https://github.com/nodejs/node/pull/48123)
    
  • [`d14018ed99`](https://github.com/nodejs/node/commit/d14018ed99)] - **doc**: improve HMAC key recommendations (Tobias Nießen) [#&#8203;48121](https://github.com/nodejs/node/pull/48121)
    
  • [`e9d4baf770`](https://github.com/nodejs/node/commit/e9d4baf770)] - **doc**: clarify mkdir() recursive behavior (Stephen Odogwu) [#&#8203;48109](https://github.com/nodejs/node/pull/48109)
    
  • [`3e4a469139`](https://github.com/nodejs/node/commit/3e4a469139)] - **doc**: fix typo in crypto legacy streams API section (Tobias Nießen) [#&#8203;48122](https://github.com/nodejs/node/pull/48122)
    
  • [`bdf366ab88`](https://github.com/nodejs/node/commit/bdf366ab88)] - **doc**: update SEA source link (Rich Trott) [#&#8203;48080](https://github.com/nodejs/node/pull/48080)
    
  • [`2a4f79a75f`](https://github.com/nodejs/node/commit/2a4f79a75f)] - **doc**: clarify tty.isRaw (Roberto Vidal) [#&#8203;48055](https://github.com/nodejs/node/pull/48055)
    
  • [`98c6e4be03`](https://github.com/nodejs/node/commit/98c6e4be03)] - **doc**: use secure key length for HMAC generateKey (Tobias Nießen) [#&#8203;48052](https://github.com/nodejs/node/pull/48052)
    
  • [`8ae5c8cf9d`](https://github.com/nodejs/node/commit/8ae5c8cf9d)] - **doc**: update broken EVP_BytesToKey link (Rich Trott) [#&#8203;48064](https://github.com/nodejs/node/pull/48064)
    
  • [`3c713e7caa`](https://github.com/nodejs/node/commit/3c713e7caa)] - **doc**: update broken spkac link (Rich Trott) [#&#8203;48063](https://github.com/nodejs/node/pull/48063)
    
  • [`c22f739e94`](https://github.com/nodejs/node/commit/c22f739e94)] - **doc**: document node-api version process (Chengzhong Wu) [#&#8203;47972](https://github.com/nodejs/node/pull/47972)
    
  • [`ce859f9f9f`](https://github.com/nodejs/node/commit/ce859f9f9f)] - **doc**: fix typo in binding functions (Deokjin Kim) [#&#8203;48003](https://github.com/nodejs/node/pull/48003)
    
  • [`070c3457b7`](https://github.com/nodejs/node/commit/070c3457b7)] - **doc**: mark Node.js 14 as End-of-Life (Richard Lau) [#&#8203;48023](https://github.com/nodejs/node/pull/48023)
    
  • [`3611027d8e`](https://github.com/nodejs/node/commit/3611027d8e)] - **doc**: clarify CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED (Tobias Nießen) [#&#8203;47976](https://github.com/nodejs/node/pull/47976)
    
  • [`dbffad958c`](https://github.com/nodejs/node/commit/dbffad958c)] - **doc**: add missing deprecated blocks to cluster (Tobias Nießen) [#&#8203;47981](https://github.com/nodejs/node/pull/47981)
    
  • [`035356f711`](https://github.com/nodejs/node/commit/035356f711)] - **doc**: update description of global (Tobias Nießen) [#&#8203;47969](https://github.com/nodejs/node/pull/47969)
    
  • [`081a6ffaea`](https://github.com/nodejs/node/commit/081a6ffaea)] - **doc**: update measure memory rejection information (Yash Ladha) [#&#8203;41639](https://github.com/nodejs/node/pull/41639)
    
  • [`3460cf9c23`](https://github.com/nodejs/node/commit/3460cf9c23)] - **doc**: fix broken link to TC39 import attributes proposal (Rich Trott) [#&#8203;47954](https://github.com/nodejs/node/pull/47954)
    
  • [`3b018c8aa9`](https://github.com/nodejs/node/commit/3b018c8aa9)] - **doc**: fix broken link (Rich Trott) [#&#8203;47953](https://github.com/nodejs/node/pull/47953)
    
  • [`244db960a9`](https://github.com/nodejs/node/commit/244db960a9)] - **doc**: remove broken link (Rich Trott) [#&#8203;47942](https://github.com/nodejs/node/pull/47942)
    
  • [`2cc8715bb9`](https://github.com/nodejs/node/commit/2cc8715bb9)] - **doc**: document make lint-md-clean (Matteo Collina) [#&#8203;47926](https://github.com/nodejs/node/pull/47926)
    
  • [`b80e006c17`](https://github.com/nodejs/node/commit/b80e006c17)] - **doc**: mark global object as legacy (Mert Can Altın) [#&#8203;47819](https://github.com/nodejs/node/pull/47819)
    
  • [`bf4eb058f3`](https://github.com/nodejs/node/commit/bf4eb058f3)] - **doc**: ntfs junction points must link to directories (Ben Noordhuis) [#&#8203;47907](https://github.com/nodejs/node/pull/47907)
    
  • [`49875f0d69`](https://github.com/nodejs/node/commit/49875f0d69)] - **doc**: fix params names (Dmitry Semigradsky) [#&#8203;47853](https://github.com/nodejs/node/pull/47853)
    
  • [`94b5eaaf17`](https://github.com/nodejs/node/commit/94b5eaaf17)] - **doc**: update supported version of FreeBSD to 12.4 (Michaël Zasso) [#&#8203;47838](https://github.com/nodejs/node/pull/47838)
    
  • [`0114201825`](https://github.com/nodejs/node/commit/0114201825)] - **doc**: swap Matteo with Rafael in the stewards (Rafael Gonzaga) [#&#8203;47841](https://github.com/nodejs/node/pull/47841)
    
  • [`8bcfcc0af9`](https://github.com/nodejs/node/commit/8bcfcc0af9)] - **doc**: add valgrind suppression details (Kevin Eady) [#&#8203;47760](https://github.com/nodejs/node/pull/47760)
    
  • [`75d397ecab`](https://github.com/nodejs/node/commit/75d397ecab)] - **doc**: replace EOL versions in README (Tobias Nießen) [#&#8203;47833](https://github.com/nodejs/node/pull/47833)
    
  • [`2b0c57cb80`](https://github.com/nodejs/node/commit/2b0c57cb80)] - **doc**: add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844)
    
  • [`be4966977c`](https://github.com/nodejs/node/commit/be4966977c)] - **doc**: update BUILDING.md previous versions links (Tobias Nießen) [#&#8203;47835](https://github.com/nodejs/node/pull/47835)
    
  • [`a9e8a20fb8`](https://github.com/nodejs/node/commit/a9e8a20fb8)] - **doc**: create maintaining folder for deps (Marco Ippolito) [#&#8203;47589](https://github.com/nodejs/node/pull/47589)
    
  • [`fd0f362d7c`](https://github.com/nodejs/node/commit/fd0f362d7c)] - **doc**: remove MoLow from Triagers (Moshe Atlow) [#&#8203;47792](https://github.com/nodejs/node/pull/47792)
    
  • [`0927c67ab6`](https://github.com/nodejs/node/commit/0927c67ab6)] - **doc**: fix typo in webstreams.md (Christian Takle) [#&#8203;47766](https://github.com/nodejs/node/pull/47766)
    
  • [`994be578da`](https://github.com/nodejs/node/commit/994be578da)] - **doc**: move BethGriggs to regular member (Rich Trott) [#&#8203;47776](https://github.com/nodejs/node/pull/47776)
    
  • [`64d19f4678`](https://github.com/nodejs/node/commit/64d19f4678)] - **doc**: move addaleax to TSC emeriti (Anna Henningsen) [#&#8203;47752](https://github.com/nodejs/node/pull/47752)
    
  • [`33ec10e6b8`](https://github.com/nodejs/node/commit/33ec10e6b8)] - **doc**: add link to news for Node.js core (Michael Dawson) [#&#8203;47704](https://github.com/nodejs/node/pull/47704)
    
  • [`2a682b5efe`](https://github.com/nodejs/node/commit/2a682b5efe)] - **doc**: async_hooks asynchronous content example add mjs code (btea) [#&#8203;47401](https://github.com/nodejs/node/pull/47401)
    
  • [`4f541c3ca3`](https://github.com/nodejs/node/commit/4f541c3ca3)] - **doc**: clarify concurrency model of test runner (Tobias Nießen) [#&#8203;47642](https://github.com/nodejs/node/pull/47642)
    
  • [`ffcff68f0d`](https://github.com/nodejs/node/commit/ffcff68f0d)] - **doc**: fix typos (Mohammed Keyvanzadeh) [#&#8203;47685](https://github.com/nodejs/node/pull/47685)
    
  • [`290b2b7afc`](https://github.com/nodejs/node/commit/290b2b7afc)] - **doc**: fix capitalization of ASan (Mohammed Keyvanzadeh) [#&#8203;47676](https://github.com/nodejs/node/pull/47676)
    
  • [`b4ca788878`](https://github.com/nodejs/node/commit/b4ca788878)] - **doc**: fix typos in SECURITY.md (Mohammed Keyvanzadeh) [#&#8203;47677](https://github.com/nodejs/node/pull/47677)
    
  • [`971c545a47`](https://github.com/nodejs/node/commit/971c545a47)] - **doc**: update error code of buffer (Deokjin Kim) [#&#8203;47617](https://github.com/nodejs/node/pull/47617)
    
  • [`ec5c919928`](https://github.com/nodejs/node/commit/ec5c919928)] - **doc**: change offset of example in `Buffer.copyBytesFrom` (Deokjin Kim) [#&#8203;47606](https://github.com/nodejs/node/pull/47606)
    
  • [`980bf052c7`](https://github.com/nodejs/node/commit/980bf052c7)] - **doc**: remove markdown link from heading (Tobias Nießen) [#&#8203;47585](https://github.com/nodejs/node/pull/47585)
    
  • [`e96451ec5e`](https://github.com/nodejs/node/commit/e96451ec5e)] - **doc**: fix release-post script location (Rafael Gonzaga) [#&#8203;47517](https://github.com/nodejs/node/pull/47517)
    
  • [`61ea15339c`](https://github.com/nodejs/node/commit/61ea15339c)] - **doc**: add link for news from uvwasi team (Michael Dawson) [#&#8203;47531](https://github.com/nodejs/node/pull/47531)
    
  • [`d40bcdd73e`](https://github.com/nodejs/node/commit/d40bcdd73e)] - **doc**: add missing setEncoding call in ESM example (Anna Henningsen) [#&#8203;47558](https://github.com/nodejs/node/pull/47558)
    
  • [`924dc909b3`](https://github.com/nodejs/node/commit/924dc909b3)] - **doc**: fix typo in util.types.isNativeError() (Julian Dax) [#&#8203;47532](https://github.com/nodejs/node/pull/47532)
    
  • [`a24d72a6fb`](https://github.com/nodejs/node/commit/a24d72a6fb)] - **doc**: add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510)
    
  • [`b0196378b6`](https://github.com/nodejs/node/commit/b0196378b6)] - **doc**: create maintaining-brotli.md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380)
    
  • [`3902be8fe8`](https://github.com/nodejs/node/commit/3902be8fe8)] - **doc**: info on handling unintended breaking changes (Michael Dawson) [#&#8203;47426](https://github.com/nodejs/node/pull/47426)
    
  • [`670f9a591d`](https://github.com/nodejs/node/commit/670f9a591d)] - **doc**: add performance initiative (Yagiz Nizipli) [#&#8203;47424](https://github.com/nodejs/node/pull/47424)
    
  • [`89a5d04a8e`](https://github.com/nodejs/node/commit/89a5d04a8e)] - **doc**: do not create a backup file (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151)
    
  • [`7f2bccc5d6`](https://github.com/nodejs/node/commit/7f2bccc5d6)] - **doc**: add MoLow to the TSC (Colin Ihrig) [#&#8203;47436](https://github.com/nodejs/node/pull/47436)
    
  • [`7db2e889ac`](https://github.com/nodejs/node/commit/7db2e889ac)] - **doc**: add a note about os.cpus() returning an empty list (codedokode) [#&#8203;47363](https://github.com/nodejs/node/pull/47363)
    
  • [`289a8e30d6`](https://github.com/nodejs/node/commit/289a8e30d6)] - **doc**: clarify reports are only evaluated on active versions (Rafael Gonzaga) [#&#8203;47341](https://github.com/nodejs/node/pull/47341)
    
  • [`dc22edb4d2`](https://github.com/nodejs/node/commit/dc22edb4d2)] - **doc**: remove Vladimir de Turckheim from Security release stewards (Vladimir de Turckheim) [#&#8203;47318](https://github.com/nodejs/node/pull/47318)
    
  • [`3e74a74da3`](https://github.com/nodejs/node/commit/3e74a74da3)] - **doc**: add importing util to example of \`process.report.getReport' (Deokjin Kim) [#&#8203;47298](https://github.com/nodejs/node/pull/47298)
    
  • [`ece029f64e`](https://github.com/nodejs/node/commit/ece029f64e)] - **doc**: vm.SourceTextModule() without context option (Axel Kittenberger) [#&#8203;47295](https://github.com/nodejs/node/pull/47295)
    
  • [`c7227204cc`](https://github.com/nodejs/node/commit/c7227204cc)] - **doc**: document process for sharing project news (Michael Dawson) [#&#8203;47189](https://github.com/nodejs/node/pull/47189)
    
  • [`2865cbb4bd`](https://github.com/nodejs/node/commit/2865cbb4bd)] - **doc**: revise example of assert.CallTracker (Deokjin Kim) [#&#8203;47252](https://github.com/nodejs/node/pull/47252)
    
  • [`81ebaf2670`](https://github.com/nodejs/node/commit/81ebaf2670)] - **doc**: fix typo in SECURITY.md (Rich Trott) [#&#8203;47282](https://github.com/nodejs/node/pull/47282)
    
  • [`faabd48f11`](https://github.com/nodejs/node/commit/faabd48f11)] - **doc**: use serial comma in cli docs (Tobias Nießen) [#&#8203;47262](https://github.com/nodejs/node/pull/47262)
    
  • [`3a85794089`](https://github.com/nodejs/node/commit/3a85794089)] - **doc**: improve example for Error.captureStackTrace() (Julian Dax) [#&#8203;46886](https://github.com/nodejs/node/pull/46886)
    
  • [`2114fa472b`](https://github.com/nodejs/node/commit/2114fa472b)] - **doc**: clarify http error events after calling destroy() (Zach Bjornson) [#&#8203;46903](https://github.com/nodejs/node/pull/46903)
    
  • [`d15f522d1f`](https://github.com/nodejs/node/commit/d15f522d1f)] - **doc**: update output of example in AbortController (Deokjin Kim) [#&#8203;47227](https://github.com/nodejs/node/pull/47227)
    
  • [`ab6588e343`](https://github.com/nodejs/node/commit/ab6588e343)] - **doc**: drop one-week branch sync on major releases (Rafael Gonzaga) [#&#8203;47149](https://github.com/nodejs/node/pull/47149)
    
  • [`6ac52e3061`](https://github.com/nodejs/node/commit/6ac52e3061)] - **doc**: fix grammar in the collaborator guide (Mohammed Keyvanzadeh) [#&#8203;47245](https://github.com/nodejs/node/pull/47245)
    
  • [`13175774a6`](https://github.com/nodejs/node/commit/13175774a6)] - **doc**: update stream.reduce concurrency note (Raz Luvaton) [#&#8203;47166](https://github.com/nodejs/node/pull/47166)
    
  • [`1e97ccd6d4`](https://github.com/nodejs/node/commit/1e97ccd6d4)] - **doc**: remove use of DEFAULT_ENCODING in PBKDF2 docs (Tobias Nießen) [#&#8203;47181](https://github.com/nodejs/node/pull/47181)
    
  • [`d562a7c461`](https://github.com/nodejs/node/commit/d562a7c461)] - **doc**: fix typos in async_context.md (Shubham Sharma) [#&#8203;47155](https://github.com/nodejs/node/pull/47155)
    
  • [`9a11788cdf`](https://github.com/nodejs/node/commit/9a11788cdf)] - **doc**: update collaborator guide to reflect TSC changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126)
    
  • [`5fc2bb763f`](https://github.com/nodejs/node/commit/5fc2bb763f)] - **doc**: clarify that `fs.create{Read,Write}Stream` support `AbortSignal` (Antoine du Hamel) [#&#8203;47122](https://github.com/nodejs/node/pull/47122)
    
  • [`2dd3b0213e`](https://github.com/nodejs/node/commit/2dd3b0213e)] - **doc**: improve documentation for util.types.isNativeError() (Julian Dax) [#&#8203;46840](https://github.com/nodejs/node/pull/46840)
    
  • [`ce4636e36b`](https://github.com/nodejs/node/commit/ce4636e36b)] - **doc**: rename the startup performance initiative to startup snapshot ([#&#8203;47111](https://github.com/nodejs/node/issues/47111)) (Joyee Cheung)
    
  • [`309d017f15`](https://github.com/nodejs/node/commit/309d017f15)] - **doc**: fix "maintaining dependencies" heading typos (Keyhan Vakil) [#&#8203;47082](https://github.com/nodejs/node/pull/47082)
    
  • [`230a984eb3`](https://github.com/nodejs/node/commit/230a984eb3)] - **doc**: include webstreams in finished() and Duplex.from() parameters (Debadree Chatterjee) [#&#8203;46312](https://github.com/nodejs/node/pull/46312)
    
  • [`8651ea822e`](https://github.com/nodejs/node/commit/8651ea822e)] - **doc,fs**: update description of fs.stat() method (Mert Can Altın) [#&#8203;47654](https://github.com/nodejs/node/pull/47654)
    
  • [`e4539e1f19`](https://github.com/nodejs/node/commit/e4539e1f19)] - **doc,test**: update the v8.startupSnapshot doc and test the example (Joyee Cheung) [#&#8203;47468](https://github.com/nodejs/node/pull/47468)
    
  • [`3dddc0175f`](https://github.com/nodejs/node/commit/3dddc0175f)] - **doc,test**: fix concurrency option of test() (Tobias Nießen) [#&#8203;47734](https://github.com/nodejs/node/pull/47734)
    
  • [`563f9fe06a`](https://github.com/nodejs/node/commit/563f9fe06a)] - **doc,vm**: clarify usage of cachedData in vm.compileFunction() (Darshan Sen) [#&#8203;48193](https://github.com/nodejs/node/pull/48193)
    
  • [`316016ffac`](https://github.com/nodejs/node/commit/316016ffac)] - **esm**: avoid accessing lazy getters for urls (Yagiz Nizipli) [#&#8203;47542](https://github.com/nodejs/node/pull/47542)
    
  • [`e5e385d2b2`](https://github.com/nodejs/node/commit/e5e385d2b2)] - **esm**: increase test coverage of edge cases (Antoine du Hamel) [#&#8203;47033](https://github.com/nodejs/node/pull/47033)
    
  • [`061fb20660`](https://github.com/nodejs/node/commit/061fb20660)] - **(SEMVER-MINOR)** **events**: add getMaxListeners method (Matthew Aitken) [#&#8203;47039](https://github.com/nodejs/node/pull/47039)
    
  • [`ed0b62cc01`](https://github.com/nodejs/node/commit/ed0b62cc01)] - **(SEMVER-MINOR)** **fs**: add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084)
    
  • [`9b44c56c9a`](https://github.com/nodejs/node/commit/9b44c56c9a)] - **fs**: make readdir recursive algorithm iterative (Ethan Arrowood) [#&#8203;47650](https://github.com/nodejs/node/pull/47650)
    
  • [`7273ef53b3`](https://github.com/nodejs/node/commit/7273ef53b3)] - **(SEMVER-MINOR)** **fs**: add recursive option to readdir and opendir (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439)
    
  • [`3f0636d2c1`](https://github.com/nodejs/node/commit/3f0636d2c1)] - **(SEMVER-MINOR)** **fs**: add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084)
    
  • [`a0b9853251`](https://github.com/nodejs/node/commit/a0b9853251)] - **(SEMVER-MINOR)** **fs**: implement byob mode for readableWebStream() (Debadree Chatterjee) [#&#8203;46933](https://github.com/nodejs/node/pull/46933)
    
  • [`709e368708`](https://github.com/nodejs/node/commit/709e368708)] - **http**: send implicit headers on HEAD with no body (Matteo Collina) [#&#8203;48108](https://github.com/nodejs/node/pull/48108)
    
  • [`dc318f26c0`](https://github.com/nodejs/node/commit/dc318f26c0)] - **(SEMVER-MINOR)** **http**: prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732)
    
  • [`4b2a015642`](https://github.com/nodejs/node/commit/4b2a015642)] - **(SEMVER-MINOR)** **http**: remove internal error in assignSocket (Matteo Collina) [#&#8203;47723](https://github.com/nodejs/node/pull/47723)
    
  • [`7cef6aa721`](https://github.com/nodejs/node/commit/7cef6aa721)] - **(SEMVER-MINOR)** **http**: add highWaterMark opt in http.createServer (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405)
    
  • [`9186f3a0ef`](https://github.com/nodejs/node/commit/9186f3a0ef)] - **http2**: improve nghttp2 error callback (Tobias Nießen) [#&#8203;47840](https://github.com/nodejs/node/pull/47840)
    
  • [`cc7e5dd4cd`](https://github.com/nodejs/node/commit/cc7e5dd4cd)] - **inspector**: add tips for Session (theanarkh) [#&#8203;47195](https://github.com/nodejs/node/pull/47195)
    
  • [`70c0e882d3`](https://github.com/nodejs/node/commit/70c0e882d3)] - **inspector**: log response and requests in the inspector for debugging (Joyee Cheung) [#&#8203;46941](https://github.com/nodejs/node/pull/46941)
    
  • [`6099d2d08b`](https://github.com/nodejs/node/commit/6099d2d08b)] - **inspector**: fix session.disconnect crash (theanarkh) [#&#8203;46942](https://github.com/nodejs/node/pull/46942)
    
  • [`156292d44a`](https://github.com/nodejs/node/commit/156292d44a)] - **lib**: create weakRef only if any signals provided (Chemi Atlow) [#&#8203;48448](https://github.com/nodejs/node/pull/48448)
    
  • [`efaa073303`](https://github.com/nodejs/node/commit/efaa073303)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.any() (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821)
    
  • [`c46b31f3bf`](https://github.com/nodejs/node/commit/c46b31f3bf)] - **lib**: support FORCE_COLOR for non TTY streams (Moshe Atlow) [#&#8203;48034](https://github.com/nodejs/node/pull/48034)
    
  • [`286c358832`](https://github.com/nodejs/node/commit/286c358832)] - **lib**: do not disable linter for entire files (Antoine du Hamel) [#&#8203;48299](https://github.com/nodejs/node/pull/48299)
    
  • [`a2552ab7c0`](https://github.com/nodejs/node/commit/a2552ab7c0)] - **lib**: use existing `isWindows` variable (sinkhaha) [#&#8203;48134](https://github.com/nodejs/node/pull/48134)
    
  • [`2b65625281`](https://github.com/nodejs/node/commit/2b65625281)] - **lib**: update comment (sinkhaha) [#&#8203;47884](https://github.com/nodejs/node/pull/47884)
    
  • [`fa447b5120`](https://github.com/nodejs/node/commit/fa447b5120)] - **lib**: use webidl DOMString converter in EventTarget (Matthew Aitken) [#&#8203;47514](https://github.com/nodejs/node/pull/47514)
    
  • [`33f32dc318`](https://github.com/nodejs/node/commit/33f32dc318)] - **lib**: define Event.isTrusted in the prototype (Santiago Gimeno) [#&#8203;46974](https://github.com/nodejs/node/pull/46974)
    
  • [`50789a5e4a`](https://github.com/nodejs/node/commit/50789a5e4a)] - **lib**: refactor to use `validateBuffer` (Deokjin Kim) [#&#8203;46489](https://github.com/nodejs/node/pull/46489)
    
  • [`3658abea26`](https://github.com/nodejs/node/commit/3658abea26)] - **(SEMVER-MINOR)** **lib**: add webstreams to Duplex.from() (Debadree Chatterjee) [#&#8203;46190](https://github.com/nodejs/node/pull/46190)
    
  • [`fcf3781d22`](https://github.com/nodejs/node/commit/fcf3781d22)] - **lib,src,test**: lint codebase according new rules for v18.x (Juan José Arboleda) [#&#8203;48697](https://github.com/nodejs/node/pull/48697)
    
  • [`b55dc53422`](https://github.com/nodejs/node/commit/b55dc53422)] - **meta**: bump github/codeql-action from 2.3.3 to 2.3.6 (dependabot\[bot]) [#&#8203;48287](https://github.com/nodejs/node/pull/48287)
    
  • [`8ac4579d85`](https://github.com/nodejs/node/commit/8ac4579d85)] - **meta**: bump actions/setup-python from 4.6.0 to 4.6.1 (dependabot\[bot]) [#&#8203;48286](https://github.com/nodejs/node/pull/48286)
    
  • [`b1854fe9c1`](https://github.com/nodejs/node/commit/b1854fe9c1)] - **meta**: bump codecov/codecov-action from 3.1.3 to 3.1.4 (dependabot\[bot]) [#&#8203;48285](https://github.com/nodejs/node/pull/48285)
    
  • [`d9448b8d93`](https://github.com/nodejs/node/commit/d9448b8d93)] - **meta**: remove dont-land-on-v14 auto labeling (Shrujal Shah) [#&#8203;48031](https://github.com/nodejs/node/pull/48031)
    
  • [`bb859768b6`](https://github.com/nodejs/node/commit/bb859768b6)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;48010](https://github.com/nodejs/node/pull/48010)
    
  • [`af90fb939b`](https://github.com/nodejs/node/commit/af90fb939b)] - **meta**: bump step-security/harden-runner from 2.3.1 to 2.4.0 (Rich Trott) [#&#8203;47980](https://github.com/nodejs/node/pull/47980)
    
  • [`4dcf5e2052`](https://github.com/nodejs/node/commit/4dcf5e2052)] - **meta**: bump github/codeql-action from 2.3.2 to 2.3.3 (Rich Trott) [#&#8203;47979](https://github.com/nodejs/node/pull/47979)
    
  • [`dab3186ea2`](https://github.com/nodejs/node/commit/dab3186ea2)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (Rich Trott) [#&#8203;47968](https://github.com/nodejs/node/pull/47968)
    
  • [`546224c13c`](https://github.com/nodejs/node/commit/546224c13c)] - **meta**: add security-wg ping to permission.js (Rafael Gonzaga) [#&#8203;47941](https://github.com/nodejs/node/pull/47941)
    
  • [`353dfbd2d6`](https://github.com/nodejs/node/commit/353dfbd2d6)] - **meta**: bump step-security/harden-runner from 2.2.1 to 2.3.1 (dependabot\[bot]) [#&#8203;47808](https://github.com/nodejs/node/pull/47808)
    
  • [`20a5cc27ec`](https://github.com/nodejs/node/commit/20a5cc27ec)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (dependabot\[bot]) [#&#8203;47806](https://github.com/nodejs/node/pull/47806)
    
  • [`eef6442d8d`](https://github.com/nodejs/node/commit/eef6442d8d)] - **meta**: bump actions/checkout from 3.3.0 to 3.5.2 (dependabot\[bot]) [#&#8203;47805](https://github.com/nodejs/node/pull/47805)
    
  • [`e30e6a718a`](https://github.com/nodejs/node/commit/e30e6a718a)] - **meta**: remove extra space in scorecard workflow (Mestery) [#&#8203;47805](https://github.com/nodejs/node/pull/47805)
    
  • [`2d13cdebc4`](https://github.com/nodejs/node/commit/2d13cdebc4)] - **meta**: bump github/codeql-action from 2.2.9 to 2.3.2 (dependabot\[bot]) [#&#8203;47809](https://github.com/nodejs/node/pull/47809)
    
  • [`f0d8352ed8`](https://github.com/nodejs/node/commit/f0d8352ed8)] - **meta**: bump codecov/codecov-action from 3.1.1 to 3.1.3 (dependabot\[bot]) [#&#8203;47807](https://github.com/nodejs/node/pull/47807)
    
  • [`7e95fba0ff`](https://github.com/nodejs/node/commit/7e95fba0ff)] - **meta**: fix dependabot commit message (Mestery) [#&#8203;47810](https://github.com/nodejs/node/pull/47810)
    
  • [`d31d9c7c28`](https://github.com/nodejs/node/commit/d31d9c7c28)] - **meta**: ping nodejs/startup for startup test changes (Joyee Cheung) [#&#8203;47771](https://github.com/nodejs/node/pull/47771)
    
  • [`077686055b`](https://github.com/nodejs/node/commit/077686055b)] - **meta**: add mailmap entry for KhafraDev (Rich Trott) [#&#8203;47512](https://github.com/nodejs/node/pull/47512)
    
  • [`e50eb6570a`](https://github.com/nodejs/node/commit/e50eb6570a)] - **meta**: ping security-wg team on permission model changes (Rafael Gonzaga) [#&#8203;47483](https://github.com/nodejs/node/pull/47483)
    
  • [`2df1a36214`](https://github.com/nodejs/node/commit/2df1a36214)] - **meta**: ping startup and realm team on src/node_realm\* changes (Joyee Cheung) [#&#8203;47448](https://github.com/nodejs/node/pull/47448)
    
  • [`c7dc6e321b`](https://github.com/nodejs/node/commit/c7dc6e321b)] - **meta**: fix notable-change comment label url (Filip Skokan) [#&#8203;47300](https://github.com/nodejs/node/pull/47300)
    
  • [`e859ca44d5`](https://github.com/nodejs/node/commit/e859ca44d5)] - **meta**: clarify the threat model to explain the JSON.parse case (Matteo Collina) [#&#8203;47276](https://github.com/nodejs/node/pull/47276)
    
  • [`1f08f4848d`](https://github.com/nodejs/node/commit/1f08f4848d)] - **meta**: update link to collaborators discussion page (Michaël Zasso) [#&#8203;47211](https://github.com/nodejs/node/pull/47211)
    
  • [`3b524cbf86`](https://github.com/nodejs/node/commit/3b524cbf86)] - **meta**: automate description requests when notable change label is added (Danielle Adams) [#&#8203;47078](https://github.com/nodejs/node/pull/47078)
    
  • [`da16ca7c59`](https://github.com/nodejs/node/commit/da16ca7c59)] - **meta**: move TSC voting member(s) to regular member(s) (Node.js GitHub Bot) [#&#8203;47180](https://github.com/nodejs/node/pull/47180)
    
  • [`0c80e60d7e`](https://github.com/nodejs/node/commit/0c80e60d7e)] - **meta**: move TSC voting member to regular membership (Node.js GitHub Bot) [#&#8203;46985](https://github.com/nodejs/node/pull/46985)
    
  • [`0edcfed895`](https://github.com/nodejs/node/commit/0edcfed895)] - **meta**: update GOVERNANCE.md to reflect TSC charter changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126)
    
  • [`baada5d035`](https://github.com/nodejs/node/commit/baada5d035)] - **meta**: ask expected behavior reason in bug template (Ben Noordhuis) [#&#8203;47049](https://github.com/nodejs/node/pull/47049)
    
  • [`5d75ec402e`](https://github.com/nodejs/node/commit/5d75ec402e)] - **module**: reduce the number of URL initializations (Yagiz Nizipli) [#&#8203;48272](https://github.com/nodejs/node/pull/48272)
    
  • [`c5af5a4f4f`](https://github.com/nodejs/node/commit/c5af5a4f4f)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824)
    
  • [`cf8845d001`](https://github.com/nodejs/node/commit/cf8845d001)] - **module**: block requiring `test/reporters` without scheme (Moshe Atlow) [#&#8203;47831](https://github.com/nodejs/node/pull/47831)
    
  • [`ce7e6c6765`](https://github.com/nodejs/node/commit/ce7e6c6765)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151)
    
  • [`53c02b20b8`](https://github.com/nodejs/node/commit/53c02b20b8)] - **node-api**: add status napi_cannot_run_js (Gabriel Schulhof) [#&#8203;47986](https://github.com/nodejs/node/pull/47986)
    
  • [`4b280d5361`](https://github.com/nodejs/node/commit/4b280d5361)] - **node-api**: napi_ref on all types is experimental (Vladimir Morozov) [#&#8203;47975](https://github.com/nodejs/node/pull/47975)
    
  • [`e2553b12e7`](https://github.com/nodejs/node/commit/e2553b12e7)] - **(NODE-API-SEMVER-MAJOR)** **node-api**: get Node API version used by addon (Vladimir Morozov) [#&#8203;45715](https://github.com/nodejs/node/pull/45715)
    
  • [`beaad7f692`](https://github.com/nodejs/node/commit/beaad7f692)] - **node-api**: test passing NULL to napi_define_class (Gabriel Schulhof) [#&#8203;47567](https://github.com/nodejs/node/pull/47567)
    
  • [`6ab892780c`](https://github.com/nodejs/node/commit/6ab892780c)] - **node-api**: test passing NULL to number APIs (Gabriel Schulhof) [#&#8203;47549](https://github.com/nodejs/node/pull/47549)
    
  • [`a67e5ea89c`](https://github.com/nodejs/node/commit/a67e5ea89c)] - **node-api**: remove unused mark_arraybuffer_as_untransferable (Chengzhong Wu) [#&#8203;47557](https://github.com/nodejs/node/pull/47557)
    
  • [`7019d48ba1`](https://github.com/nodejs/node/commit/7019d48ba1)] - **(SEMVER-MINOR)** **node-api**: deprecate napi_module_register (Vladimir Morozov) [#&#8203;46319](https://github.com/nodejs/node/pull/46319)
    
  • [`395c56bd7c`](https://github.com/nodejs/node/commit/395c56bd7c)] - **node-api**: extend type-tagging to externals (Gabriel Schulhof) [#&#8203;47141](https://github.com/nodejs/node/pull/47141)
    
  • [`6e66371eee`](https://github.com/nodejs/node/commit/6e66371eee)] - **node-api**: document node-api shutdown finalization (Chengzhong Wu) [#&#8203;45903](https://github.com/nodejs/node/pull/45903)
    
  • [`d8d2d33efb`](https://github.com/nodejs/node/commit/d8d2d33efb)] - **node-api**: verify cleanup hooks order (Chengzhong Wu) [#&#8203;46692](https://github.com/nodejs/node/pull/46692)
    
  • [`b34eaf393e`](https://github.com/nodejs/node/commit/b34eaf393e)] - **path**: indicate index of wrong resolve() parameter (sosoba) [#&#8203;47660](https://github.com/nodejs/node/pull/47660)
    
  • [`13bc5488a1`](https://github.com/nodejs/node/commit/13bc5488a1)] - **permission**: remove unused function declaration (Deokjin Kim) [#&#8203;47957](https://github.com/nodejs/node/pull/47957)
    
  • [`5f8aef477e`](https://github.com/nodejs/node/commit/5f8aef477e)] - **quic**: address recent coverity warning (Michael Dawson) [#&#8203;47753](https://github.com/nodejs/node/pull/47753)
    
  • [`75d7024ecd`](https://github.com/nodejs/node/commit/75d7024ecd)] - **quic**: add more QUIC implementation (James M Snell) [#&#8203;47494](https://github.com/nodejs/node/pull/47494)
    
  • [`24840832bd`](https://github.com/nodejs/node/commit/24840832bd)] - **quic**: add more QUIC impl (James M Snell) [#&#8203;47348](https://github.com/nodejs/node/pull/47348)
    
  • [`114b8479b4`](https://github.com/nodejs/node/commit/114b8479b4)] - **readline**: fix issue with newline-less last line (Ian Harris) [#&#8203;47317](https://github.com/nodejs/node/pull/47317)
    
  • [`e668efac6b`](https://github.com/nodejs/node/commit/e668efac6b)] - **repl**: preserve preview on ESCAPE key press (Xuguang Mei) [#&#8203;46878](https://github.com/nodejs/node/pull/46878)
    
  • [`7306b0f733`](https://github.com/nodejs/node/commit/7306b0f733)] - **sea**: fix memory leak detected by asan (Darshan Sen) [#&#8203;47309](https://github.com/nodejs/node/pull/47309)
    
  • [`1f2c91f98a`](https://github.com/nodejs/node/commit/1f2c91f98a)] - **src**: use std::array for passing argv in node::url (Anna Henningsen) [#&#8203;47035](https://github.com/nodejs/node/pull/47035)
    
  • [`36bf06904f`](https://github.com/nodejs/node/commit/36bf06904f)] - **src**: add Realm document in the src README.md (Chengzhong Wu) [#&#8203;47932](https://github.com/nodejs/node/pull/47932)
    
  • [`5445835671`](https://github.com/nodejs/node/commit/5445835671)] - **src**: check node_extra_ca_certs after openssl cfg (Raghu Saxena) [#&#8203;48159](https://github.com/nodejs/node/pull/48159)
    
  • [`eb96856555`](https://github.com/nodejs/node/commit/eb96856555)] - **src**: include missing header in node_sea.h (Joyee Cheung) [#&#8203;48152](https://github.com/nodejs/node/pull/48152)
    
  • [`2a35462045`](https://github.com/nodejs/node/commit/2a35462045)] - **src**: deduplicate X509Certificate::Fingerprint\* (Tobias Nießen) [#&#8203;47978](https://github.com/nodejs/node/pull/47978)
    
  • [`4c556816bd`](https://github.com/nodejs/node/commit/4c556816bd)] - **src**: move BlobSerializerDeserializer to a separate header file (Darshan Sen) [#&#8203;47933](https://github.com/nodejs/node/pull/47933)
    
  • [`4bad757012`](https://github.com/nodejs/node/commit/4bad757012)] - **src**: rename SKIP_CHECK_SIZE to SKIP_CHECK_STRLEN (Tobias Nießen) [#&#8203;47845](https://github.com/nodejs/node/pull/47845)
    
  • [`33daa89dac`](https://github.com/nodejs/node/commit/33daa89dac)] - **src**: register ext reference for Fingerprint512 (Tobias Nießen) [#&#8203;47892](https://github.com/nodejs/node/pull/47892)
    
  • [`30b7133008`](https://github.com/nodejs/node/commit/30b7133008)] - **src**: clarify the parameter name in `Permission::Apply` (Daeyeon Jeong) [#&#8203;47874](https://github.com/nodejs/node/pull/47874)
    
  • [`274c0f2e0a`](https://github.com/nodejs/node/commit/274c0f2e0a)] - **src**: avoid strcmp() with Utf8Value (Tobias Nießen) [#&#8203;47827](https://github.com/nodejs/node/pull/47827)
    
  • [`559c98f468`](https://github.com/nodejs/node/commit/559c98f468)] - **src**: prefer data accessor of string and vector (Mohammed Keyvanzadeh) [#&#8203;47750](https://github.com/nodejs/node/pull/47750)
    
  • [`933673de61`](https://github.com/nodejs/node/commit/933673de61)] - **src**: avoid copying string in fs_permission (Yagiz Nizipli) [#&#8203;47746](https://github.com/nodejs/node/pull/47746)
    
  • [`77f2b97197`](https://github.com/nodejs/node/commit/77f2b97197)] - **src**: fix typo in comment in quic/sessionticket.cc (Tobias Nießen) [#&#8203;47754](https://github.com/nodejs/node/pull/47754)
    
  • [`8e6af9fcf4`](https://github.com/nodejs/node/commit/8e6af9fcf4)] - **src**: mark fatal error functions as noreturn (Chengzhong Wu) [#&#8203;47695](https://github.com/nodejs/node/pull/47695)
    
  • [`d0ad873b0e`](https://github.com/nodejs/node/commit/d0ad873b0e)] - **src**: prevent changing FunctionTemplateInfo after publish (Shelley Vohr) [#&#8203;46979](https://github.com/nodejs/node/pull/46979)
    
  • [`71fb476781`](https://github.com/nodejs/node/commit/71fb476781)] - **src**: use v8::Boolean(b) over b ? True() : False() (Tobias Nießen) [#&#8203;47554](https://github.com/nodejs/node/pull/47554)
    
  • [`175b78bc02`](https://github.com/nodejs/node/commit/175b78bc02)] - **src**: fix typo in process.env accessor error message (Moritz Raho) [#&#8203;47014](https://github.com/nodejs/node/pull/47014)
    
  • [`2c2b6d1661`](https://github.com/nodejs/node/commit/2c2b6d1661)] - **src**: replace static const string_view by static constexpr (Daniel Lemire) [#&#8203;47524](https://github.com/nodejs/node/pull/47524)
    
  • [`3840bb586e`](https://github.com/nodejs/node/commit/3840bb586e)] - **src**: fix CSPRNG when length exceeds INT_MAX (Tobias Nießen) [#&#8203;47515](https://github.com/nodejs/node/pull/47515)
    
  • [`f6aa38dc5f`](https://github.com/nodejs/node/commit/f6aa38dc5f)] - **src**: use correct variable in node_builtins.cc (Michaël Zasso) [#&#8203;47343](https://github.com/nodejs/node/pull/47343)
    
  • [`e88e249838`](https://github.com/nodejs/node/commit/e88e249838)] - **src**: slim down stream_base-inl.h (lilsweetcaligula) [#&#8203;46972](https://github.com/nodejs/node/pull/46972)
    
  • [`b34de64442`](https://github.com/nodejs/node/commit/b34de64442)] - **src**: allow simdutf::convert_\* functions to return zero (Daniel Lemire) [#&#8203;47471](https://github.com/nodejs/node/pull/47471)
    
  • [`ded4a5eb8f`](https://github.com/nodejs/node/commit/ded4a5eb8f)] - **src**: remove usage of `std::shared_ptr<T>::unique()` (Darshan Sen) [#&#8203;47315](https://github.com/nodejs/node/pull/47315)
    
  • [`0fbfb28cf5`](https://github.com/nodejs/node/commit/0fbfb28cf5)] - **src**: use stricter compile-time guidance (Tobias Nießen) [#&#8203;46509](https://github.com/nodejs/node/pull/46509)
    
  • [`a8430ad211`](https://github.com/nodejs/node/commit/a8430ad211)] - **src**: remove unused variable in crypto_x509.cc (Michaël Zasso) [#&#8203;47344](https://github.com/nodejs/node/pull/47344)
    
  • [`24dabf8965`](https://github.com/nodejs/node/commit/24dabf8965)] - **src**: don't reset embeder signal handlers (Dmitry Vyukov) [#&#8203;47188](https://github.com/nodejs/node/pull/47188)
    
  • [`4add36872c`](https://github.com/nodejs/node/commit/4add36872c)] - **src**: replace impossible THROW with CHECK (Tobias Nießen) [#&#8203;47168](https://github.com/nodejs/node/pull/47168)
    
  • [`e1007ff6a8`](https://github.com/nodejs/node/commit/e1007ff6a8)] - **src**: remove dead comments about return_code_cache (Keyhan Vakil) [#&#8203;47083](https://github.com/nodejs/node/pull/47083)
    
  • [`5501d12713`](https://github.com/nodejs/node/commit/5501d12713)] - **src**: remove SSL_CTX_get_tlsext_ticket_keys guards (Tobias Nießen) [#&#8203;47068](https://github.com/nodejs/node/pull/47068)
    
  • [`716d289874`](https://github.com/nodejs/node/commit/716d289874)] - **src**: fix clang 14 linker error (Keyhan Vakil) [#&#8203;47057](https://github.com/nodejs/node/pull/47057)
    
  • [`8809adfdb6`](https://github.com/nodejs/node/commit/8809adfdb6)] - **src**: clarify OptionEnvvarSettings member names (Chengzhong Wu) [#&#8203;45057](https://github.com/nodejs/node/pull/45057)
    
  • [`05f5c79574`](https://github.com/nodejs/node/commit/05f5c79574)] - **src**: per-realm binding data (Chengzhong Wu) [#&#8203;46556](https://github.com/nodejs/node/pull/46556)
    
  • [`a7620d19c8`](https://github.com/nodejs/node/commit/a7620d19c8)] - **src,http2**: ensure cleanup if a frame is not sent (ywave620) [#&#8203;47244](https://github.com/nodejs/node/pull/47244)
    
  • [`585d62848e`](https://github.com/nodejs/node/commit/585d62848e)] - **stream**: deprecate asIndexedPairs (Chemi Atlow) [#&#8203;48102](https://github.com/nodejs/node/pull/48102)
    
  • [`d3449ca010`](https://github.com/nodejs/node/commit/d3449ca010)] - **stream**: prevent pipeline hang with generator functions (Debadree Chatterjee) [#&#8203;47712](https://github.com/nodejs/node/pull/47712)
    
  • [`5e4b2434a6`](https://github.com/nodejs/node/commit/5e4b2434a6)] - **(SEMVER-MINOR)** **stream**: preserve object mode in compose (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413)
    
  • [`912eb308ab`](https://github.com/nodejs/node/commit/912eb308ab)] - **(SEMVER-MINOR)** **stream**: add setter & getter for default highWaterMark ([#&#8203;46929](https://github.com/nodejs/node/issues/46929)) (Robert Nagy) [#&#8203;46929](https://github.com/nodejs/node/pull/46929)
    
  • [`c59887744a`](https://github.com/nodejs/node/commit/c59887744a)] - **stream**: expose stream symbols (Robert Nagy) [#&#8203;45671](https://github.com/nodejs/node/pull/45671)
    
  • [`4edc1abf0b`](https://github.com/nodejs/node/commit/4edc1abf0b)] - **stream**: dont wait for next item in take when finished (Raz Luvaton) [#&#8203;47132](https://github.com/nodejs/node/pull/47132)
    
  • [`cfb18d816d`](https://github.com/nodejs/node/commit/cfb18d816d)] - **stream**: remove brandchecks from stream duplexify (Debadree Chatterjee) [#&#8203;46315](https://github.com/nodejs/node/pull/46315)
    
  • [`9d4025c411`](https://github.com/nodejs/node/commit/9d4025c411)] - **test**: mark test-child-process-pipe-dataflow as flaky (Moshe Atlow) [#&#8203;48334](https://github.com/nodejs/node/pull/48334)
    
  • [`c29b6874d4`](https://github.com/nodejs/node/commit/c29b6874d4)] - **test**: unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`0e3312b01b`](https://github.com/nodejs/node/commit/0e3312b01b)] - **test**: fix zlib version regex (Luigi Pinca) [#&#8203;48227](https://github.com/nodejs/node/pull/48227)
    
  • [`a9d0b8d005`](https://github.com/nodejs/node/commit/a9d0b8d005)] - **test**: use lower security level in s_client (Luigi Pinca) [#&#8203;48192](https://github.com/nodejs/node/pull/48192)
    
  • [`7250d8c2f1`](https://github.com/nodejs/node/commit/7250d8c2f1)] - ***Revert*** "**test**: unskip negative-settimeout.any.js WPT" (Filip Skokan) [#&#8203;48182](https://github.com/nodejs/node/pull/48182)
    
  • [`18476697bd`](https://github.com/nodejs/node/commit/18476697bd)] - **test**: mark test_cannot_run_js as flaky (Keyhan Vakil) [#&#8203;48181](https://github.com/nodejs/node/pull/48181)
    
  • [`446f6118ff`](https://github.com/nodejs/node/commit/446f6118ff)] - **test**: fix flaky test-runner-watch-mode (Moshe Atlow) [#&#8203;48144](https://github.com/nodejs/node/pull/48144)
    
  • [`7fa144e3fe`](https://github.com/nodejs/node/commit/7fa144e3fe)] - **test**: skip test-http-pipeline-flood on IBM i (Abdirahim Musse) [#&#8203;48048](https://github.com/nodejs/node/pull/48048)
    
  • [`5c5b1d2867`](https://github.com/nodejs/node/commit/5c5b1d2867)] - **test**: ignore helper files in WPTs (Filip Skokan) [#&#8203;48079](https://github.com/nodejs/node/pull/48079)
    
  • [`3b2cee071b`](https://github.com/nodejs/node/commit/3b2cee071b)] - **test**: move `test-cluster-primary-error` flaky test (Yagiz Nizipli) [#&#8203;48039](https://github.com/nodejs/node/pull/48039)
    
  • [`7b816b4922`](https://github.com/nodejs/node/commit/7b816b4922)] - **test**: fix suite signal (Benjamin Gruenbaum) [#&#8203;47800](https://github.com/nodejs/node/pull/47800)
    
  • [`ca4a0e3717`](https://github.com/nodejs/node/commit/ca4a0e3717)] - **test**: fix parsing test flags (Daeyeon Jeong) [#&#8203;48012](https://github.com/nodejs/node/pull/48012)
    
  • [`a3f0504556`](https://github.com/nodejs/node/commit/a3f0504556)] - **test**: mark test-esm-loader-http-imports as flaky (Tobias Nießen) [#&#8203;47987](https://github.com/nodejs/node/pull/47987)
    
  • [`ab36a30143`](https://github.com/nodejs/node/commit/ab36a30143)] - **test**: unskip negative-settimeout.any.js WPT (Filip Skokan) [#&#8203;47946](https://github.com/nodejs/node/pull/47946)
    
  • [`7c80439b21`](https://github.com/nodejs/node/commit/7c80439b21)] - **test**: use appropriate usages for a negative import test (Filip Skokan) [#&#8203;47878](https://github.com/nodejs/node/pull/47878)
    
  • [`81d8d95ba0`](https://github.com/nodejs/node/commit/81d8d95ba0)] - **test**: fix webcrypto wrap unwrap tests (Filip Skokan) [#&#8203;47876](https://github.com/nodejs/node/pull/47876)
    
  • [`1b84e85576`](https://github.com/nodejs/node/commit/1b84e85576)] - **test**: fix output tests when path includes node version (Moshe Atlow) [#&#8203;47843](https://github.com/nodejs/node/pull/47843)
    
  • [`95972aac8d`](https://github.com/nodejs/node/commit/95972aac8d)] - **test**: migrate a pseudo_tty test to use assertSnapshot (Moshe Atlow) [#&#8203;47803](https://github.com/nodejs/node/pull/47803)
    
  • [`f1e131283d`](https://github.com/nodejs/node/commit/f1e131283d)] - **test**: fix WPT state when process exits but workers are still running (Filip Skokan) [#&#8203;47826](https://github.com/nodejs/node/pull/47826)
    
  • [`03dcf7bc94`](https://github.com/nodejs/node/commit/03dcf7bc94)] - **test**: migrate message tests to use assertSnapshot (Moshe Atlow) [#&#8203;47498](https://github.com/nodejs/node/pull/47498)
    
  • [`dedbeee336`](https://github.com/nodejs/node/commit/dedbeee336)] - **test**: refactor to use `getEventListeners` in timers (Deokjin Kim) [#&#8203;47759](https://github.com/nodejs/node/pull/47759)
    
  • [`11a2d1c4e4`](https://github.com/nodejs/node/commit/11a2d1c4e4)] - **test**: add and use tmpdir.hasEnoughSpace() (Tobias Nießen) [#&#8203;47767](https://github.com/nodejs/node/pull/47767)
    
  • [`d669714e57`](https://github.com/nodejs/node/commit/d669714e57)] - **test**: remove spaces from test runner test names (Tobias Nießen) [#&#8203;47733](https://github.com/nodejs/node/pull/47733)
    
  • [`3a9c43a6d7`](https://github.com/nodejs/node/commit/3a9c43a6d7)] - **test**: mark test-cluster-primary-error flaky on asan (Yagiz Nizipli) [#&#8203;47422](https://github.com/nodejs/node/pull/47422)
    
  • [`bd1eb14cb0`](https://github.com/nodejs/node/commit/bd1eb14cb0)] - **test**: remove unnecessary status check on test-release-npm (RafaelGSS) [#&#8203;47516](https://github.com/nodejs/node/pull/47516)
    
  • [`914f68d953`](https://github.com/nodejs/node/commit/914f68d953)] - **test**: mark test/parallel/test-file-write-stream4 as flaky (Yagiz Nizipli) [#&#8203;47423](https://github.com/nodejs/node/pull/47423)
    
  • [`7c4178cb11`](https://github.com/nodejs/node/commit/7c4178cb11)] - **test**: remove unused callback variables (angellovc) [#&#8203;47167](https://github.com/nodejs/node/pull/47167)
    
  • [`d0bda902dc`](https://github.com/nodejs/node/commit/d0bda902dc)] - **test**: migrate test runner message tests to snapshot (Moshe Atlow) [#&#8203;47392](https://github.com/nodejs/node/pull/47392)
    
  • [`095ca5ccf2`](https://github.com/nodejs/node/commit/095ca5ccf2)] - **test**: remove stale entry from known_issues.status (Richard Lau) [#&#8203;47454](https://github.com/nodejs/node/pull/47454)
    
  • [`8820d5415b`](https://github.com/nodejs/node/commit/8820d5415b)] - **test**: move more inspector sequential tests to parallel (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`f6ef5c4ad3`](https://github.com/nodejs/node/commit/f6ef5c4ad3)] - **test**: use random port in test-inspector-enabled (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`e97ceeca69`](https://github.com/nodejs/node/commit/e97ceeca69)] - **test**: use random port in test-inspector-debug-brk-flag (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`a2e4643981`](https://github.com/nodejs/node/commit/a2e4643981)] - **test**: use random port in NodeInstance.startViaSignal() (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412)
    
  • [`a779261732`](https://github.com/nodejs/node/commit/a779261732)] - **test**: fix flaky test-watch-mode-inspect (Moshe Atlow) [#&#8203;47403](https://github.com/nodejs/node/pull/47403)
    
  • [`116df2ad3e`](https://github.com/nodejs/node/commit/116df2ad3e)] - **test**: move debugger tests with --port=0 to parallel (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274)
    
  • [`016b8bd27d`](https://github.com/nodejs/node/commit/016b8bd27d)] - **test**: use --port=0 in debugger tests that do not have to work on 9229 (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274)
    
  • [`3c157cb7a3`](https://github.com/nodejs/node/commit/3c157cb7a3)] - **test**: run doctool tests in parallel (Joyee Cheung) [#&#8203;47273](https://github.com/nodejs/node/pull/47273)
    
  • [`44f08ed941`](https://github.com/nodejs/node/commit/44f08ed941)] - **test**: move test-shadow-realm-gc.js to known_issues (Joyee Cheung) [#&#8203;47355](https://github.com/nodejs/node/pull/47355)
    
  • [`e2b5d968c3`](https://github.com/nodejs/node/commit/e2b5d968c3)] - **test**: update wasm/jsapi WPT (Michaël Zasso) [#&#8203;47210](https://github.com/nodejs/node/pull/47210)
    
  • [`53d9eb5950`](https://github.com/nodejs/node/commit/53d9eb5950)] - **test**: skip test-wasm-web-api on ARM (Michaël Zasso) [#&#8203;47299](https://github.com/nodejs/node/pull/47299)
    
  • [`b620f5fcd6`](https://github.com/nodejs/node/commit/b620f5fcd6)] - **test**: skip instantiateStreaming-bad-imports WPT (Michaël Zasso) [#&#8203;47292](https://github.com/nodejs/node/pull/47292)
    
  • [`1e6fe56333`](https://github.com/nodejs/node/commit/1e6fe56333)] - **test**: fix test-child-process-exec-cwd (Stefan Stojanovic) [#&#8203;47235](https://github.com/nodejs/node/pull/47235)
    
  • [`0dc4971aab`](https://github.com/nodejs/node/commit/0dc4971aab)] - **test**: skip broken tests win arm64 (Stefan Stojanovic) [#&#8203;47020](https://github.com/nodejs/node/pull/47020)
    
  • [`6fee6050e3`](https://github.com/nodejs/node/commit/6fee6050e3)] - **test**: fix 'checks' validation test for checkPrime (Tobias Nießen) [#&#8203;47139](https://github.com/nodejs/node/pull/47139)
    
  • [`6b85472f01`](https://github.com/nodejs/node/commit/6b85472f01)] - **test**: update URL web-platform-tests (Yagiz Nizipli) [#&#8203;47135](https://github.com/nodejs/node/pull/47135)
    
  • [`732a98e1ba`](https://github.com/nodejs/node/commit/732a98e1ba)] - **test**: reduce flakiness of test-http-remove-header-stays-removed.js (Debadree Chatterjee) [#&#8203;46855](https://github.com/nodejs/node/pull/46855)
    
  • [`713b412ee9`](https://github.com/nodejs/node/commit/713b412ee9)] - **test**: mark test-http-max-sockets as flaky on win32 (Tobias Nießen) [#&#8203;47134](https://github.com/nodejs/node/pull/47134)
    
  • [`b3b7dbc395`](https://github.com/nodejs/node/commit/b3b7dbc395)] - **test**: update web-platform tests for url (Xuguang Mei) [#&#8203;46860](https://github.com/nodejs/node/pull/46860)
    
  • [`2edd0fdb5b`](https://github.com/nodejs/node/commit/2edd0fdb5b)] - **test**: mark test-child-process-stdio-reuse-readable-stdio flaky (Luigi Pinca) [#&#8203;48537](https://github.com/nodejs/node/pull/48537)
    
  • [`fae240e492`](https://github.com/nodejs/node/commit/fae240e492)] - **test**: mark test-child-process-pipe-dataflow as flaky (Moshe Atlow) [#&#8203;48334](https://github.com/nodejs/node/pull/48334)
    
  • [`9ca3cc0f2a`](https://github.com/nodejs/node/commit/9ca3cc0f2a)] - **test**: remove useless require('../common') from WPTs (Filip Skokan) [#&#8203;46796](https://github.com/nodejs/node/pull/46796)
    
  • [`4bece055a5`](https://github.com/nodejs/node/commit/4bece055a5)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47921](https://github.com/nodejs/node/pull/47921)
    
  • [`7ef169b706`](https://github.com/nodejs/node/commit/7ef169b706)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47222](https://github.com/nodejs/node/pull/47222)
    
  • [`873606b355`](https://github.com/nodejs/node/commit/873606b355)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47131](https://github.com/nodejs/node/pull/47131)
    
  • [`8f1fc0bc99`](https://github.com/nodejs/node/commit/8f1fc0bc99)] - **test,doc,sea**: run SEA tests on ppc64 (Darshan Sen) [#&#8203;48111](https://github.com/nodejs/node/pull/48111)
    
  • [`5d910ca389`](https://github.com/nodejs/node/commit/5d910ca389)] - **test_runner**: add enqueue and dequeue events (Moshe Atlow) [#&#8203;48428](https://github.com/nodejs/node/pull/48428)
    
  • [`d795c0ab0c`](https://github.com/nodejs/node/commit/d795c0ab0c)] - **test_runner**: dont split lines on `test:stdout` (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057)
    
  • [`04eb1f85da`](https://github.com/nodejs/node/commit/04eb1f85da)] - **test_runner**: pass FORCE_COLOR to child process (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057)
    
  • [`2262653148`](https://github.com/nodejs/node/commit/2262653148)] - **test_runner**: apply `runOnly` on suites (Moshe Atlow) [#&#8203;48279](https://github.com/nodejs/node/pull/48279)
    
  • [`033d0bb3e1`](https://github.com/nodejs/node/commit/033d0bb3e1)] - **test_runner**: emit `test:watch:drained` event (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259)
    
  • [`618a9e1c09`](https://github.com/nodejs/node/commit/618a9e1c09)] - **test_runner**: stop watch mode when abortSignal aborted (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259)
    
  • [`6a82fbd006`](https://github.com/nodejs/node/commit/6a82fbd006)] - **test_runner**: fix global after hook (Moshe Atlow) [#&#8203;48231](https://github.com/nodejs/node/pull/48231)
    
  • [`d1295d7b10`](https://github.com/nodejs/node/commit/d1295d7b10)] - **test_runner**: remove redundant check from coverage (Colin Ihrig) [#&#8203;48070](https://github.com/nodejs/node/pull/48070)
    
  • [`47602fe73b`](https://github.com/nodejs/node/commit/47602fe73b)] - **test_runner**: fix test deserialize edge cases (Moshe Atlow) [#&#8203;48106](https://github.com/nodejs/node/pull/48106)
    
  • [`b18a78cd0b`](https://github.com/nodejs/node/commit/b18a78cd0b)] - **test_runner**: delegate stderr and stdout formatting to reporter (Shiba) [#&#8203;48045](https://github.com/nodejs/node/pull/48045)
    
  • [`e0d0b19c30`](https://github.com/nodejs/node/commit/e0d0b19c30)] - **test_runner**: display dot report as wide as the terminal width (Raz Luvaton) [#&#8203;48038](https://github.com/nodejs/node/pull/48038)
    
  • [`bdca468a79`](https://github.com/nodejs/node/commit/bdca468a79)] - **test_runner**: use v8.serialize instead of TAP (Moshe Atlow) [#&#8203;47867](https://github.com/nodejs/node/pull/47867)
    
  • [`866ed6a887`](https://github.com/nodejs/node/commit/866ed6a887)] - **(SEMVER-MINOR)** **test_runner**: add shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909)
    
  • [`4737314865`](https://github.com/nodejs/node/commit/4737314865)] - **test_runner**: fix ordering of test hooks (Phil Nash) [#&#8203;47931](https://github.com/nodejs/node/pull/47931)
    
  • [`ea543d95f6`](https://github.com/nodejs/node/commit/ea543d95f6)] - **test_runner**: omit inaccessible files from coverage (Colin Ihrig) [#&#8203;47850](https://github.com/nodejs/node/pull/47850)
    
  • [`8398bca842`](https://github.com/nodejs/node/commit/8398bca842)] - **test_runner**: fix --require with --experimental-loader (Moshe Atlow) [#&#8203;47751](https://github.com/nodejs/node/pull/47751)
    
  • [`4c0036ba1b`](https://github.com/nodejs/node/commit/4c0036ba1b)] - **(SEMVER-MINOR)** **test_runner**: support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686)
    
  • [`cb3abda9aa`](https://github.com/nodejs/node/commit/cb3abda9aa)] - **test_runner**: remove no-op validation (Colin Ihrig) [#&#8203;47687](https://github.com/nodejs/node/pull/47687)
    
  • [`323881f60b`](https://github.com/nodejs/node/commit/323881f60b)] - **test_runner**: fix test runner concurrency (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675)
    
  • [`3bbb1fc990`](https://github.com/nodejs/node/commit/3bbb1fc990)] - **test_runner**: fix test counting (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675)
    
  • [`0ea63717ba`](https://github.com/nodejs/node/commit/0ea63717ba)] - **test_runner**: fix nested hooks (Moshe Atlow) [#&#8203;47648](https://github.com/nodejs/node/pull/47648)
    
  • [`fa18b17d88`](https://github.com/nodejs/node/commit/fa18b17d88)] - **test_runner**: add testNamePatterns to run api (atlowChemi) [#&#8203;47648](https://github.com/nodejs/node/pull/47648)
    
  • [`2033691bfc`](https://github.com/nodejs/node/commit/2033691bfc)] - **test_runner**: support coverage of unnamed functions (Colin Ihrig) [#&#8203;47652](https://github.com/nodejs/node/pull/47652)
    
  • [`882c6127ae`](https://github.com/nodejs/node/commit/882c6127ae)] - **test_runner**: move coverage collection to root.postRun() (Colin Ihrig) [#&#8203;47651](https://github.com/nodejs/node/pull/47651)
    
  • [`e97eefa538`](https://github.com/nodejs/node/commit/e97eefa538)] - **(SEMVER-MINOR)** **test_runner**: execute before hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586)
    
  • [`4bce39108c`](https://github.com/nodejs/node/commit/4bce39108c)] - **test_runner**: avoid reporting parents of failing tests in summary (Moshe Atlow) [#&#8203;47579](https://github.com/nodejs/node/pull/47579)
    
  • [`688078b93a`](https://github.com/nodejs/node/commit/688078b93a)] - **test_runner**: fix spec skip detection (Moshe Atlow) [#&#8203;47537](https://github.com/nodejs/node/pull/47537)
    
  • [`0b32a8c8a3`](https://github.com/nodejs/node/commit/0b32a8c8a3)] - **test_runner**: color errors only when colors are available (Moshe Atlow) [#&#8203;47394](https://github.com/nodejs/node/pull/47394)
    
  • [`d5fc8236bf`](https://github.com/nodejs/node/commit/d5fc8236bf)] - **test_runner**: hide failing tests title when all tests pass (Moshe Atlow) [#&#8203;47370](https://github.com/nodejs/node/pull/47370)
    
  • [`1d453e4d31`](https://github.com/nodejs/node/commit/1d453e4d31)] - **test_runner**: stringify AssertError expected and actual (Moshe Atlow) [#&#8203;47088](https://github.com/nodejs/node/pull/47088)
    
  • [`99312a55f2`](https://github.com/nodejs/node/commit/99312a55f2)] - **test_runner**: add code coverage support to spec reporter (Pulkit Gupta) [#&#8203;46674](https://github.com/nodejs/node/pull/46674)
    
  • [`2091b4718f`](https://github.com/nodejs/node/commit/2091b4718f)] - **(SEMVER-MINOR)** **test_runner**: expose reporter for use in run api (Chemi Atlow) [#&#8203;47238](https://github.com/nodejs/node/pull/47238)
    
  • [`9cbf89717e`](https://github.com/nodejs/node/commit/9cbf89717e)] - **test_runner**: report failing tests after summary (HinataKah0) [#&#8203;47164](https://github.com/nodejs/node/pull/47164)
    
  • [`460bcc042e`](https://github.com/nodejs/node/commit/460bcc042e)] - **test_runner**: count nested tests (Moshe Atlow) [#&#8203;47094](https://github.com/nodejs/node/pull/47094)
    
  • [`c62e6b2e54`](https://github.com/nodejs/node/commit/c62e6b2e54)] - **test_runner**: accept \x1b as a escape symbol (Debadree Chatterjee) [#&#8203;47050](https://github.com/nodejs/node/pull/47050)
    
  • [`ddf819f810`](https://github.com/nodejs/node/commit/ddf819f810)] - **test_runner**: support defining test reporter in NODE_OPTIONS (Steve Herzog) [#&#8203;46688](https://github.com/nodejs/node/pull/46688)
    
  • [`e049ce296a`](https://github.com/nodejs/node/commit/e049ce296a)] - **tls**: reapply servername on happy eyeballs connect (Fedor Indutny) [#&#8203;48255](https://github.com/nodejs/node/pull/48255)
    
  • [`19b0f244b2`](https://github.com/nodejs/node/commit/19b0f244b2)] - **tls**: accept SecureContext object in server.addContext() (HinataKah0) [#&#8203;47570](https://github.com/nodejs/node/pull/47570)
    
  • [`7786d7cece`](https://github.com/nodejs/node/commit/7786d7cece)] - **tools**: pin ruff version number (Rich Trott) [#&#8203;48505](https://github.com/nodejs/node/pull/48505)
    
  • [`a2bfe02289`](https://github.com/nodejs/node/commit/a2bfe02289)] - **tools**: remove non-existing file from CODEOWNERS file (Juan José Arboleda) [#&#8203;48697](https://github.com/nodejs/node/pull/48697)
    
  • [`87562c9af0`](https://github.com/nodejs/node/commit/87562c9af0)] - **tools**: update rollup lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48329](https://github.com/nodejs/node/pull/48329)
    
  • [`1cde4a4299`](https://github.com/nodejs/node/commit/1cde4a4299)] - ***Revert*** "**tools**: open issue when update workflow fails" (Marco Ippolito) [#&#8203;48312](https://github.com/nodejs/node/pull/48312)
    
  • [`361cf8cffc`](https://github.com/nodejs/node/commit/361cf8cffc)] - **tools**: don't gitignore base64 config.h (Ben Noordhuis) [#&#8203;48174](https://github.com/nodejs/node/pull/48174)
    
  • [`0cfdb3affa`](https://github.com/nodejs/node/commit/0cfdb3affa)] - **tools**: update LICENSE and license-builder.sh (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078)
    
  • [`715cf81b4a`](https://github.com/nodejs/node/commit/715cf81b4a)] - **tools**: automate histogram update (Marco Ippolito) [#&#8203;48171](https://github.com/nodejs/node/pull/48171)
    
  • [`d9afffab03`](https://github.com/nodejs/node/commit/d9afffab03)] - **tools**: use shasum instead of sha256sum (Luigi Pinca) [#&#8203;48229](https://github.com/nodejs/node/pull/48229)
    
  • [`1a5cddfc1f`](https://github.com/nodejs/node/commit/1a5cddfc1f)] - **tools**: harmonize `dep_updaters` scripts (Antoine du Hamel) [#&#8203;48201](https://github.com/nodejs/node/pull/48201)
    
  • [`24abe07dda`](https://github.com/nodejs/node/commit/24abe07dda)] - **tools**: log and verify sha256sum (Andrea Fassina) [#&#8203;48088](https://github.com/nodejs/node/pull/48088)
    
  • [`9aed8683aa`](https://github.com/nodejs/node/commit/9aed8683aa)] - **tools**: open issue when update workflow fails (Marco Ippolito) [#&#8203;48018](https://github.com/nodejs/node/pull/48018)
    
  • [`4c5c63fd82`](https://github.com/nodejs/node/commit/4c5c63fd82)] - **tools**: alphabetize CODEOWNERS (Rich Trott) [#&#8203;48124](https://github.com/nodejs/node/pull/48124)
    
  • [`9b849a7270`](https://github.com/nodejs/node/commit/9b849a7270)] - **tools**: use latest upstream commit for zlib updates (Andrea Fassina) [#&#8203;48054](https://github.com/nodejs/node/pull/48054)
    
  • [`e18c1258ae`](https://github.com/nodejs/node/commit/e18c1258ae)] - **tools**: add security-wg as dep updaters owner (Marco Ippolito) [#&#8203;48113](https://github.com/nodejs/node/pull/48113)
    
  • [`999a289dd9`](https://github.com/nodejs/node/commit/999a289dd9)] - **tools**: fix race condition when npm installing (Tobias Nießen) [#&#8203;48101](https://github.com/nodejs/node/pull/48101)
    
  • [`25b0033b86`](https://github.com/nodejs/node/commit/25b0033b86)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;48098](https://github.com/nodejs/node/pull/48098)
    
  • [`87b36b3a8a`](https://github.com/nodejs/node/commit/87b36b3a8a)] - **tools**: update cpplint to 1.6.1 (Yagiz Nizipli) [#&#8203;48098](https://github.com/nodejs/node/pull/48098)
    
  • [`64ff6fe443`](https://github.com/nodejs/node/commit/64ff6fe443)] - **tools**: update eslint to 8.41.0 (Node.js GitHub Bot) [#&#8203;48097](https://github.com/nodejs/node/pull/48097)
    
  • [`739c314851`](https://github.com/nodejs/node/commit/739c314851)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48096](https://github.com/nodejs/node/pull/48096)
    
  • [`6674ed1901`](https://github.com/nodejs/node/commit/6674ed1901)] - **tools**: update doc to remark-parse@10.0.2 (Node.js GitHub Bot) [#&#8203;48095](https://github.com/nodejs/node/pull/48095)
    
  • [`0b0818caab`](https://github.com/nodejs/node/commit/0b0818caab)] - **tools**: add debug logs (Marco Ippolito) [#&#8203;48060](https://github.com/nodejs/node/pull/48060)
    
  • [`168d080f40`](https://github.com/nodejs/node/commit/168d080f40)] - **tools**: fix zconf.h path (Luigi Pinca) [#&#8203;48089](https://github.com/nodejs/node/pull/48089)
    
  • [`ccd2795f42`](https://github.com/nodejs/node/commit/ccd2795f42)] - **tools**: update remark-preset-lint-node to 4.0.0 (Node.js GitHub Bot) [#&#8203;47995](https://github.com/nodejs/node/pull/47995)
    
  • [`89e068a550`](https://github.com/nodejs/node/commit/89e068a550)] - **tools**: debug log for nghttp3 (Marco Ippolito) [#&#8203;47992](https://github.com/nodejs/node/pull/47992)
    
  • [`3bf2bd4ec6`](https://github.com/nodejs/node/commit/3bf2bd4ec6)] - **tools**: automate icu-small update (Marco Ippolito) [#&#8203;47727](https://github.com/nodejs/node/pull/47727)
    
  • [`fdf9681dc0`](https://github.com/nodejs/node/commit/fdf9681dc0)] - **tools**: update lint-md-dependencies to rollup@3.21.5 (Node.js GitHub Bot) [#&#8203;47903](https://github.com/nodejs/node/pull/47903)
    
  • [`52532c2cb1`](https://github.com/nodejs/node/commit/52532c2cb1)] - **tools**: update eslint to 8.40.0 (Node.js GitHub Bot) [#&#8203;47906](https://github.com/nodejs/node/pull/47906)
    
  • [`951cc7b624`](https://github.com/nodejs/node/commit/951cc7b624)] - **tools**: update eslint to 8.39.0 (Node.js GitHub Bot) [#&#8203;47789](https://github.com/nodejs/node/pull/47789)
    
  • [`706c87db50`](https://github.com/nodejs/node/commit/706c87db50)] - **tools**: fix jsdoc lint (Moshe Atlow) [#&#8203;47789](https://github.com/nodejs/node/pull/47789)
    
  • [`8eef5f5f5f`](https://github.com/nodejs/node/commit/8eef5f5f5f)] - **tools**: update doc to highlight.js@11.8.0 (Node.js GitHub Bot) [#&#8203;47786](https://github.com/nodejs/node/pull/47786)
    
  • [`899eea6237`](https://github.com/nodejs/node/commit/899eea6237)] - **tools**: update lint-md-dependencies to rollup@3.21.1 (Node.js GitHub Bot) [#&#8203;47787](https://github.com/nodejs/node/pull/47787)
    
  • [`8ca50b6ac9`](https://github.com/nodejs/node/commit/8ca50b6ac9)] - **tools**: move update-npm to dep updaters (Marco Ippolito) [#&#8203;47619](https://github.com/nodejs/node/pull/47619)
    
  • [`5ee554397d`](https://github.com/nodejs/node/commit/5ee554397d)] - **tools**: fix update-v8-patch cache (Marco Ippolito) [#&#8203;47725](https://github.com/nodejs/node/pull/47725)
    
  • [`4e0d19e1bd`](https://github.com/nodejs/node/commit/4e0d19e1bd)] - **tools**: automate v8 patch update (Marco Ippolito) [#&#8203;47594](https://github.com/nodejs/node/pull/47594)
    
  • [`64c3154bdf`](https://github.com/nodejs/node/commit/64c3154bdf)] - **tools**: fix skip message in update-cjs-module-lexer (Tobias Nießen) [#&#8203;47701](https://github.com/nodejs/node/pull/47701)
    
  • [`6535ab90d9`](https://github.com/nodejs/node/commit/6535ab90d9)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;24](https://github.com/24).1.0 (Node.js GitHub Bot) [#&#8203;47577](https://github.com/nodejs/node/pull/47577)
    
  • [`7cfc00d072`](https://github.com/nodejs/node/commit/7cfc00d072)] - **tools**: keep PR titles/description up-to-date (Tobias Nießen) [#&#8203;47621](https://github.com/nodejs/node/pull/47621)
    
  • [`d6b555e2c8`](https://github.com/nodejs/node/commit/d6b555e2c8)] - **tools**: fix updating root certificates (Richard Lau) [#&#8203;47607](https://github.com/nodejs/node/pull/47607)
    
  • [`0d3e3ddea6`](https://github.com/nodejs/node/commit/0d3e3ddea6)] - **tools**: update PR label config (Mohammed Keyvanzadeh) [#&#8203;47593](https://github.com/nodejs/node/pull/47593)
    
  • [`fa52c472b8`](https://github.com/nodejs/node/commit/fa52c472b8)] - **tools**: add execution permission to uvwasi script (Mert Can Altın) [#&#8203;47600](https://github.com/nodejs/node/pull/47600)
    
  • [`f6955a6b0c`](https://github.com/nodejs/node/commit/f6955a6b0c)] - **tools**: add update script for googletest (Tobias Nießen) [#&#8203;47482](https://github.com/nodejs/node/pull/47482)
    
  • [`4e1d87e752`](https://github.com/nodejs/node/commit/4e1d87e752)] - **tools**: add option to run workflow with specific tool id (Michaël Zasso) [#&#8203;47591](https://github.com/nodejs/node/pull/47591)
    
  • [`e605402590`](https://github.com/nodejs/node/commit/e605402590)] - **tools**: automate zlib update (Marco Ippolito) [#&#8203;47417](https://github.com/nodejs/node/pull/47417)
    
  • [`b6ca57e8d0`](https://github.com/nodejs/node/commit/b6ca57e8d0)] - **tools**: add url and whatwg-url labels automatically (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545)
    
  • [`d5c9bc4f8e`](https://github.com/nodejs/node/commit/d5c9bc4f8e)] - **tools**: add performance label to benchmark changes (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545)
    
  • [`c5227628a9`](https://github.com/nodejs/node/commit/c5227628a9)] - **tools**: automate uvwasi dependency update (Ranieri Innocenti Spada) [#&#8203;47509](https://github.com/nodejs/node/pull/47509)
    
  • [`5ffdb57302`](https://github.com/nodejs/node/commit/5ffdb57302)] - **tools**: add missing pinned dependencies (Mateo Nunez) [#&#8203;47346](https://github.com/nodejs/node/pull/47346)
    
  • [`c7b898d4e4`](https://github.com/nodejs/node/commit/c7b898d4e4)] - **tools**: automate ngtcp2 and nghttp3 update (Marco Ippolito) [#&#8203;47402](https://github.com/nodejs/node/pull/47402)
    
  • [`e696a48225`](https://github.com/nodejs/node/commit/e696a48225)] - **tools**: move update-undici.sh to dep_updaters and create maintain md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380)
    
  • [`056067286a`](https://github.com/nodejs/node/commit/056067286a)] - **tools**: make `js2c.py` usable for other build systems (Cheng Zhao) [#&#8203;46930](https://github.com/nodejs/node/pull/46930)
    
  • [`d11c6ba2eb`](https://github.com/nodejs/node/commit/d11c6ba2eb)] - **tools**: move update-acorn.sh to dep_updaters and create maintaining md (Marco Ippolito) [#&#8203;47382](https://github.com/nodejs/node/pull/47382)
    
  • [`0a65c7c300`](https://github.com/nodejs/node/commit/0a65c7c300)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475)
    
  • [`60dc249cd5`](https://github.com/nodejs/node/commit/60dc249cd5)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475)
    
  • [`1271b0eded`](https://github.com/nodejs/node/commit/1271b0eded)] - **tools**: automate cjs-module-lexer dependency update (Marco Ippolito) [#&#8203;47446](https://github.com/nodejs/node/pull/47446)
    
  • [`26905572d4`](https://github.com/nodejs/node/commit/26905572d4)] - **tools**: fix notify-on-push Slack messages (Antoine du Hamel) [#&#8203;47453](https://github.com/nodejs/node/pull/47453)
    
  • [`3c62663797`](https://github.com/nodejs/node/commit/3c62663797)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;15](https://github.com/15).0.2 (Node.js GitHub Bot) [#&#8203;47431](https://github.com/nodejs/node/pull/47431)
    
  • [`c57dabe360`](https://github.com/nodejs/node/commit/c57dabe360)] - **tools**: add root certificate update script (Richard Lau) [#&#8203;47425](https://github.com/nodejs/node/pull/47425)
    
  • [`f27680e37c`](https://github.com/nodejs/node/commit/f27680e37c)] - **tools**: fix update-openssl.yml compare version (Marco Ippolito) [#&#8203;47384](https://github.com/nodejs/node/pull/47384)
    
  • [`35e6cf2944`](https://github.com/nodejs/node/commit/35e6cf2944)] - **tools**: use ref_name to get branch pushed on (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358)
    
  • [`28935a86f8`](https://github.com/nodejs/node/commit/28935a86f8)] - **tools**: add a at here tag for slack messages (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358)
    
  • [`e1846ee4f1`](https://github.com/nodejs/node/commit/e1846ee4f1)] - **tools**: disable Codecov commit statuses (Michaël Zasso) [#&#8203;47306](https://github.com/nodejs/node/pull/47306)
    
  • [`d1c8229da4`](https://github.com/nodejs/node/commit/d1c8229da4)] - **tools**: update eslint to 8.37.0 (Node.js GitHub Bot) [#&#8203;47333](https://github.com/nodejs/node/pull/47333)
    
  • [`6ab22151c4`](https://github.com/nodejs/node/commit/6ab22151c4)] - **tools**: fix duration_ms to be milliseconds (Moshe Atlow) [#&#8203;44490](https://github.com/nodejs/node/pull/44490)
    
  • [`5d46c594a7`](https://github.com/nodejs/node/commit/5d46c594a7)] - **tools**: automate brotli update (Marco Ippolito) [#&#8203;47205](https://github.com/nodejs/node/pull/47205)
    
  • [`d324c15227`](https://github.com/nodejs/node/commit/d324c15227)] - **tools**: fix typo in nghttp2 path (Marco Ippolito) [#&#8203;47330](https://github.com/nodejs/node/pull/47330)
    
  • [`b1bcdceef5`](https://github.com/nodejs/node/commit/b1bcdceef5)] - **tools**: add scorecard workflow (Mateo Nunez) [#&#8203;47254](https://github.com/nodejs/node/pull/47254)
    
  • [`281362bcc2`](https://github.com/nodejs/node/commit/281362bcc2)] - **tools**: pin actions by hash for auto-start-ci.yml (Gabriela Gutierrez) [#&#8203;46820](https://github.com/nodejs/node/pull/46820)
    
  • [`6cae1bd377`](https://github.com/nodejs/node/commit/6cae1bd377)] - **tools**: standardize base64 update (Marco Ippolito) [#&#8203;47201](https://github.com/nodejs/node/pull/47201)
    
  • [`a682bd0714`](https://github.com/nodejs/node/commit/a682bd0714)] - **tools**: update codecov branch (Rich Trott) [#&#8203;47285](https://github.com/nodejs/node/pull/47285)
    
  • [`1061e17c66`](https://github.com/nodejs/node/commit/1061e17c66)] - **tools**: standardize update-llhttp.sh (Marco Ippolito) [#&#8203;47198](https://github.com/nodejs/node/pull/47198)
    
  • [`9781185943`](https://github.com/nodejs/node/commit/9781185943)] - **tools**: upgrade Windows digital signature to SHA256 (Tobias Nießen) [#&#8203;47206](https://github.com/nodejs/node/pull/47206)
    
  • [`37638e43c5`](https://github.com/nodejs/node/commit/37638e43c5)] - **tools**: add button to copy code example to clipboard (jakecastelli) [#&#8203;46928](https://github.com/nodejs/node/pull/46928)
    
  • [`05cb503f02`](https://github.com/nodejs/node/commit/05cb503f02)] - **tools**: standardize update-nghttp2.sh (Marco Ippolito) [#&#8203;47197](https://github.com/nodejs/node/pull/47197)
    
  • [`816e215701`](https://github.com/nodejs/node/commit/816e215701)] - **tools**: fix Slack notification action (Antoine du Hamel) [#&#8203;47237](https://github.com/nodejs/node/pull/47237)
    
  • [`9ac01ecc59`](https://github.com/nodejs/node/commit/9ac01ecc59)] - **tools**: notify on Slack when invalid commit lands (Antoine du Hamel) [#&#8203;47178](https://github.com/nodejs/node/pull/47178)
    
  • [`13eb029b4f`](https://github.com/nodejs/node/commit/13eb029b4f)] - **tools**: update daily wpt actions summary (Filip Skokan) [#&#8203;47138](https://github.com/nodejs/node/pull/47138)
    
  • [`e0a00ebfc5`](https://github.com/nodejs/node/commit/e0a00ebfc5)] - **tools**: allow test tap output to include unicode characters (Moshe Atlow) [#&#8203;47175](https://github.com/nodejs/node/pull/47175)
    
  • [`fca3391d0b`](https://github.com/nodejs/node/commit/fca3391d0b)] - **tools**: update lint-md-dependencies to rollup@3.19.1 (Node.js GitHub Bot) [#&#8203;47045](https://github.com/nodejs/node/pull/47045)
    
  • [`c0fd6a3721`](https://github.com/nodejs/node/commit/c0fd6a3721)] - **tools**: update eslint to 8.36.0 (Node.js GitHub Bot) [#&#8203;47046](https://github.com/nodejs/node/pull/47046)
    
  • [`7d971daf29`](https://github.com/nodejs/node/commit/7d971daf29)] - **tools,meta**: update README and tools to reflect changes in TSC charter (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126)
    
  • [`d078d66bdc`](https://github.com/nodejs/node/commit/d078d66bdc)] - **typings**: fix syntax error in tsconfig (Mohammed Keyvanzadeh) [#&#8203;47584](https://github.com/nodejs/node/pull/47584)
    
  • [`889730512c`](https://github.com/nodejs/node/commit/889730512c)] - **url**: handle URL.canParse without base parameter (Yagiz Nizipli) [#&#8203;47547](https://github.com/nodejs/node/pull/47547)
    
  • [`0dc485eb28`](https://github.com/nodejs/node/commit/0dc485eb28)] - **url**: drop ICU requirement for parsing hostnames (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339)
    
  • [`b395b16c40`](https://github.com/nodejs/node/commit/b395b16c40)] - **url**: use ada::url_aggregator for parsing urls (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339)
    
  • [`11f48e02a8`](https://github.com/nodejs/node/commit/11f48e02a8)] - **(SEMVER-MINOR)** **url**: implement URL.canParse (Matthew Aitken) [#&#8203;47179](https://github.com/nodejs/node/pull/47179)
    
  • [`977a8bad35`](https://github.com/nodejs/node/commit/977a8bad35)] - **url**: fix array overrun in node:url::SetArgs() (Yagiz Nizipli) [#&#8203;47001](https://github.com/nodejs/node/pull/47001)
    
  • [`4784e64850`](https://github.com/nodejs/node/commit/4784e64850)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#&#8203;46989](https://github.com/nodejs/node/pull/46989)
    
  • [`f495cb6bf4`](https://github.com/nodejs/node/commit/f495cb6bf4)] - **url**: backport non-major changes from [#&#8203;46904](https://github.com/nodejs/node/issues/46904) (Yagiz Nizipli) [#&#8203;46904](https://github.com/nodejs/node/pull/46904)
    
  • [`aa4f485388`](https://github.com/nodejs/node/commit/aa4f485388)] - **url**: set `formatUrl` method as no side effect (Yagiz Nizipli) [#&#8203;46884](https://github.com/nodejs/node/pull/46884)
    
  • [`c79e1b72f2`](https://github.com/nodejs/node/commit/c79e1b72f2)] - **url**: offload `URLSearchParams` initialization (Yagiz Nizipli) [#&#8203;46867](https://github.com/nodejs/node/pull/46867)
    
  • [`3db235b822`](https://github.com/nodejs/node/commit/3db235b822)] - **url**: remove unused `kFormat` from url (Yagiz Nizipli) [#&#8203;46867](https://github.com/nodejs/node/pull/46867)
    
  • [`b9df1a9668`](https://github.com/nodejs/node/commit/b9df1a9668)] - **url**: clean vertical alignment of docs (Robin Ury) [#&#8203;48037](https://github.com/nodejs/node/pull/48037)
    
  • [`9a2354d4a9`](https://github.com/nodejs/node/commit/9a2354d4a9)] - **url**: do not use object as hashmap (Timothy Gu) [#&#8203;47415](https://github.com/nodejs/node/pull/47415)
    
  • [`4850ba4bd4`](https://github.com/nodejs/node/commit/4850ba4bd4)] - **url**: improve URLSearchParams creation performance (Yagiz Nizipli) [#&#8203;47190](https://github.com/nodejs/node/pull/47190)
    
  • [`7fb1980fd9`](https://github.com/nodejs/node/commit/7fb1980fd9)] - **url**: add pending-deprecation to `url.parse()` (Yagiz Nizipli) [#&#8203;47203](https://github.com/nodejs/node/pull/47203)
    
  • [`b04ea5aa9b`](https://github.com/nodejs/node/commit/b04ea5aa9b)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#&#8203;46989](https://github.com/nodejs/node/pull/46989)
    
  • [`972c851918`](https://github.com/nodejs/node/commit/972c851918)] - **url**: remove unnecessary call to `FunctionPrototypeBind` (Antoine du Hamel) [#&#8203;46870](https://github.com/nodejs/node/pull/46870)
    
  • [`87ef1b2859`](https://github.com/nodejs/node/commit/87ef1b2859)] - **util**: fix inspecting error with a throwing getter for `cause` (Antoine du Hamel) [#&#8203;47163](https://github.com/nodejs/node/pull/47163)
    
  • [`4729d30c1e`](https://github.com/nodejs/node/commit/4729d30c1e)] - **v8**: fix ERR_NOT_BUILDING_SNAPSHOT is not a constructor (Chengzhong Wu) [#&#8203;47721](https://github.com/nodejs/node/pull/47721)
    
  • [`d9a68b821e`](https://github.com/nodejs/node/commit/d9a68b821e)] - **vm**: properly handle defining symbol props (Nicolas DUBIEN) [#&#8203;47572](https://github.com/nodejs/node/pull/47572)
    
  • [`0d0fad8f0a`](https://github.com/nodejs/node/commit/0d0fad8f0a)] - **vm**: fix crash when setting \__proto\_\_ on context's globalThis (Feng Yu) [#&#8203;47939](https://github.com/nodejs/node/pull/47939)
    
  • [`fb90b6b3fb`](https://github.com/nodejs/node/commit/fb90b6b3fb)] - **vm**: properly handle defining props on any value (Nicolas DUBIEN) [#&#8203;46615](https://github.com/nodejs/node/pull/46615)
    
  • [`4b2aa3d27c`](https://github.com/nodejs/node/commit/4b2aa3d27c)] - **vm,lib**: refactor microtaskQueue assignment logic (Khaidi Chu) [#&#8203;47765](https://github.com/nodejs/node/pull/47765)
    
  • [`58afcc27f6`](https://github.com/nodejs/node/commit/58afcc27f6)] - **(SEMVER-MINOR)** **wasi**: no longer require flag to enable wasi (Michael Dawson) [#&#8203;47286](https://github.com/nodejs/node/pull/47286)
    
  • [`407af51cf5`](https://github.com/nodejs/node/commit/407af51cf5)] - **wasi**: add wasi sock_accept stub (Michael Dawson) [#&#8203;46434](https://github.com/nodejs/node/pull/46434)
    
  • [`d3e0229948`](https://github.com/nodejs/node/commit/d3e0229948)] - **watch**: fix watch path with equals (Moshe Atlow) [#&#8203;47369](https://github.com/nodejs/node/pull/47369)
    
  • [`78972d4696`](https://github.com/nodejs/node/commit/78972d4696)] - **worker**: support more cases when (de)serializing errors (Moshe Atlow) [#&#8203;47925](https://github.com/nodejs/node/pull/47925)
    
    

v18.16.1: 2023-06-20, Version 18.16.1 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in June 2023 Security Releases blog post.

Commits
  • [`bf3e2c8928`](https://github.com/nodejs/node/commit/bf3e2c8928)] - **crypto**: handle cert with invalid SPKI gracefully (Tobias Nießen) [nodejs-private/node-private#393](https://github.com/nodejs-private/node-private/pull/393)
    
  • [`70f9449072`](https://github.com/nodejs/node/commit/70f9449072)] - **deps**: set `CARES_RANDOM_FILE` for c-ares (Richard Lau) [#&#8203;48156](https://github.com/nodejs/node/pull/48156)
    
  • [`35d4efb57b`](https://github.com/nodejs/node/commit/35d4efb57b)] - **deps**: update c-ares to 1.19.1 (RafaelGSS) [#&#8203;48115](https://github.com/nodejs/node/pull/48115)
    
  • [`392dfedc77`](https://github.com/nodejs/node/commit/392dfedc77)] - **deps**: update archs files for openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402)
    
  • [`46cd5fe38b`](https://github.com/nodejs/node/commit/46cd5fe38b)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402)
    
  • [`7e3d2d85c2`](https://github.com/nodejs/node/commit/7e3d2d85c2)] - **doc,test**: clarify behavior of DH generateKeys (Tobias Nießen) [nodejs-private/node-private#426](https://github.com/nodejs-private/node-private/pull/426)
    
  • [`4ff6ba050a`](https://github.com/nodejs/node/commit/4ff6ba050a)] - **http**: disable request smuggling via rempty headers (Paolo Insogna) [nodejs-private/node-private#428](https://github.com/nodejs-private/node-private/pull/428)
    
  • [`ab269129a6`](https://github.com/nodejs/node/commit/ab269129a6)] - **msi**: do not create AppData\Roaming\npm (Tobias Nießen) [nodejs-private/node-private#408](https://github.com/nodejs-private/node-private/pull/408)
    
  • [`925e8f5619`](https://github.com/nodejs/node/commit/925e8f5619)] - **policy**: handle mainModule.\__proto\_\_ bypass (RafaelGSS) [nodejs-private/node-private#416](https://github.com/nodejs-private/node-private/pull/416)
    
  • [`d6fae8e47e`](https://github.com/nodejs/node/commit/d6fae8e47e)] - **test**: allow SIGBUS in signal-handler abort test (Michaël Zasso) [#&#8203;47851](https://github.com/nodejs/node/pull/47851)
    
    

v18.16.0: 2023-04-12, Version 18.16.0 'Hydrogen' (LTS), @​danielleadams

Compare Source

Notable changes
Add initial support for single executable applications

Compile a JavaScript file into a single executable application:

$ echo 'console.log(`Hello, ${process.argv[2]}!`);' > hello.js

$ cp $(command -v node) hello

### On systems other than macOS:
$ npx postject hello NODE_JS_CODE hello.js \
    --sentinel-fuse NODE_JS_FUSE_fce680ab2cc467b6e072b8b5df1996b2

### On macOS:
$ npx postject hello NODE_JS_CODE hello.js \
    --sentinel-fuse NODE_JS_FUSE_fce680ab2cc467b6e072b8b5df1996b2 \
    --macho-segment-name NODE_JS

$ ./hello world
Hello, world!

Contributed by Darshan Sen in #​45038

Replace url parser with Ada

Node.js gets a new URL parser called Ada that is compliant with the WHATWG URL Specification and provides more than 100% performance improvement to the existing implementation.

Contributed by Yagiz Nizipli in #​46410

Other notable changes
  • buffer:
    • (SEMVER-MINOR) add Buffer.copyBytesFrom(...) (James M Snell) #​46500
  • doc:
    • add marco-ippolito to collaborators (Marco Ippolito) #​46816
    • add debadree25 to collaborators (Debadree Chatterjee) #​46716
    • add deokjinkim to collaborators (Deokjin Kim) #​46444
  • events:
    • (SEMVER-MINOR) add listener argument to listenerCount (Paolo Insogna) #​46523
  • lib:
    • (SEMVER-MINOR) add AsyncLocalStorage.bind() and .snapshot() (flakey5) #​46387
    • (SEMVER-MINOR) add aborted() utility function (Debadree Chatterjee) #​46494
  • src:
    • (SEMVER-MINOR) allow optional Isolate termination in node::Stop() (Shelley Vohr) #​46583
    • (SEMVER-MINOR) allow embedder control of code generation policy (Shelley Vohr) #​46368
  • stream:
    • (SEMVER-MINOR) add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) #​46273
  • tls:
    • (SEMVER-MINOR) support automatic DHE (Tobias Nießen) #​46978
  • url:
    • (SEMVER-MINOR) implement URLSearchParams size getter (James M Snell) #​46308
  • worker:
    • (SEMVER-MINOR) add support for worker name in inspector and trace_events (Debadree Chatterjee) #​46832
Commits
  • [`c742493b61`](https://github.com/nodejs/node/commit/c742493b61)] - **assert**: fix exception message for assert(0) on try catch block (hidecology) [#&#8203;46760](https://github.com/nodejs/node/pull/46760)
    
  • [`0ddf73ae7c`](https://github.com/nodejs/node/commit/0ddf73ae7c)] - **assert**: remove deprecated getFunction() usage (Ruben Bridgewater) [#&#8203;46661](https://github.com/nodejs/node/pull/46661)
    
  • [`97ad72f19f`](https://github.com/nodejs/node/commit/97ad72f19f)] - **async_hooks**: add async local storage propagation benchmarks (Chengzhong Wu) [#&#8203;46414](https://github.com/nodejs/node/pull/46414)
    
  • [`b1bde69574`](https://github.com/nodejs/node/commit/b1bde69574)] - **async_hooks**: remove experimental onPropagate option (James M Snell) [#&#8203;46386](https://github.com/nodejs/node/pull/46386)
    
  • [`b5db3b579a`](https://github.com/nodejs/node/commit/b5db3b579a)] - **benchmark**: add a benchmark for URLSearchParams creation and toString() (Debadree Chatterjee) [#&#8203;46810](https://github.com/nodejs/node/pull/46810)
    
  • [`ff94f9ffbe`](https://github.com/nodejs/node/commit/ff94f9ffbe)] - **benchmark**: replace table in docs with description of file tree structure (Theodor Steiner) [#&#8203;46991](https://github.com/nodejs/node/pull/46991)
    
  • [`d4af671f09`](https://github.com/nodejs/node/commit/d4af671f09)] - **benchmark**: split `Buffer.byteLength` benchmark (Joyee Cheung) [#&#8203;46616](https://github.com/nodejs/node/pull/46616)
    
  • [`5f647fb7b4`](https://github.com/nodejs/node/commit/5f647fb7b4)] - **benchmark**: add benchmark for EventTarget add and remove (Debadree Chatterjee) [#&#8203;46779](https://github.com/nodejs/node/pull/46779)
    
  • [`d7d634bd67`](https://github.com/nodejs/node/commit/d7d634bd67)] - **benchmark**: fix worker startup benchmark (Joyee Cheung) [#&#8203;46680](https://github.com/nodejs/node/pull/46680)
    
  • [`f7c4796c56`](https://github.com/nodejs/node/commit/f7c4796c56)] - **benchmark**: add trailing commas in `benchmark/path` (Antoine du Hamel) [#&#8203;46628](https://github.com/nodejs/node/pull/46628)
    
  • [`9b0d5030a5`](https://github.com/nodejs/node/commit/9b0d5030a5)] - **benchmark**: add trailing commas in `benchmark/http` (Antoine du Hamel) [#&#8203;46609](https://github.com/nodejs/node/pull/46609)
    
  • [`e0f436041e`](https://github.com/nodejs/node/commit/e0f436041e)] - **benchmark**: add trailing commas in `benchmark/crypto` (Antoine du Hamel) [#&#8203;46553](https://github.com/nodejs/node/pull/46553)
    
  • [`a383aee386`](https://github.com/nodejs/node/commit/a383aee386)] - **benchmark**: add trailing commas in `benchmark/url` (Antoine du Hamel) [#&#8203;46551](https://github.com/nodejs/node/pull/46551)
    
  • [`a10c3558c6`](https://github.com/nodejs/node/commit/a10c3558c6)] - **benchmark**: add trailing commas in `benchmark/http2` (Antoine du Hamel) [#&#8203;46552](https://github.com/nodejs/node/pull/46552)
    
  • [`8036583f1f`](https://github.com/nodejs/node/commit/8036583f1f)] - **benchmark**: add trailing commas in `benchmark/process` (Antoine du Hamel) [#&#8203;46481](https://github.com/nodejs/node/pull/46481)
    
  • [`1497244078`](https://github.com/nodejs/node/commit/1497244078)] - **benchmark**: add trailing commas in `benchmark/misc` (Antoine du Hamel) [#&#8203;46474](https://github.com/nodejs/node/pull/46474)
    
  • [`057e3f5309`](https://github.com/nodejs/node/commit/057e3f5309)] - **benchmark**: add trailing commas in `benchmark/buffers` (Antoine du Hamel) [#&#8203;46473](https://github.com/nodejs/node/pull/46473)
    
  • [`26e1a81243`](https://github.com/nodejs/node/commit/26e1a81243)] - **benchmark**: add trailing commas in `benchmark/module` (Antoine du Hamel) [#&#8203;46461](https://github.com/nodejs/node/pull/46461)
    
  • [`bd6c828cf3`](https://github.com/nodejs/node/commit/bd6c828cf3)] - **benchmark**: add trailing commas in `benchmark/net` (Antoine du Hamel) [#&#8203;46439](https://github.com/nodejs/node/pull/46439)
    
  • [`01cf87aca7`](https://github.com/nodejs/node/commit/01cf87aca7)] - **benchmark**: add trailing commas in `benchmark/util` (Antoine du Hamel) [#&#8203;46438](https://github.com/nodejs/node/pull/46438)
    
  • [`f006b2f9dc`](https://github.com/nodejs/node/commit/f006b2f9dc)] - **benchmark**: add trailing commas in `benchmark/async_hooks` (Antoine du Hamel) [#&#8203;46424](https://github.com/nodejs/node/pull/46424)
    
  • [`f969cc30ab`](https://github.com/nodejs/node/commit/f969cc30ab)] - **benchmark**: add trailing commas in `benchmark/fs` (Antoine du Hamel) [#&#8203;46426](https://github.com/nodejs/node/pull/46426)
    
  • [`5202b84382`](https://github.com/nodejs/node/commit/5202b84382)] - **bootstrap**: print stack trace during environment creation failure (Joyee Cheung) [#&#8203;46533](https://github.com/nodejs/node/pull/46533)
    
  • [`c6e722aca4`](https://github.com/nodejs/node/commit/c6e722aca4)] - **(SEMVER-MINOR)** **buffer**: add Buffer.copyBytesFrom(...) (James M Snell) [#&#8203;46500](https://github.com/nodejs/node/pull/46500)
    
  • [`886504fdf8`](https://github.com/nodejs/node/commit/886504fdf8)] - **build**: fix Visual Studio installation detection for Arm64 (Radek Bartoň) [#&#8203;46420](https://github.com/nodejs/node/pull/46420)
    
  • [`2b72a453cf`](https://github.com/nodejs/node/commit/2b72a453cf)] - **build**: add GitHub Action for coverage with --without-intl (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954)
    
  • [`ff07aa7fe3`](https://github.com/nodejs/node/commit/ff07aa7fe3)] - **build**: do not disable inspector when intl is disabled (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954)
    
  • [`4b25b98bd8`](https://github.com/nodejs/node/commit/4b25b98bd8)] - **build,test**: add proper support for IBM i (Xu Meng) [#&#8203;46739](https://github.com/nodejs/node/pull/46739)
    
  • [`535311097c`](https://github.com/nodejs/node/commit/535311097c)] - **child_process**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46758](https://github.com/nodejs/node/pull/46758)
    
  • [`d2692c65df`](https://github.com/nodejs/node/commit/d2692c65df)] - **cluster**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46695](https://github.com/nodejs/node/pull/46695)
    
  • [`effdca8b10`](https://github.com/nodejs/node/commit/effdca8b10)] - **crypto**: don't assume FIPS is disabled by default (Michael Dawson) [#&#8203;46532](https://github.com/nodejs/node/pull/46532)
    
  • [`bce37c60ce`](https://github.com/nodejs/node/commit/bce37c60ce)] - **debugger**: improve validations and documents for watch and unwatch (Eungyu Lee) [#&#8203;46947](https://github.com/nodejs/node/pull/46947)
    
  • [`51253bae83`](https://github.com/nodejs/node/commit/51253bae83)] - **debugger**: add a command to set which lines to check for context (Eungyu Lee) [#&#8203;46812](https://github.com/nodejs/node/pull/46812)
    
  • [`44375c6a3c`](https://github.com/nodejs/node/commit/44375c6a3c)] - **debugger**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46714](https://github.com/nodejs/node/pull/46714)
    
  • [`e5c4d69681`](https://github.com/nodejs/node/commit/e5c4d69681)] - **deps**: update ada to 1.0.4 (Node.js GitHub Bot) [#&#8203;46853](https://github.com/nodejs/node/pull/46853)
    
  • [`94f83536d7`](https://github.com/nodejs/node/commit/94f83536d7)] - **deps**: update ada to 1.0.3 (Node.js GitHub Bot) [#&#8203;46784](https://github.com/nodejs/node/pull/46784)
    
  • [`484c4f6674`](https://github.com/nodejs/node/commit/484c4f6674)] - **deps**: update ada to v1.0.1 (Yagiz Nizipli) [#&#8203;46550](https://github.com/nodejs/node/pull/46550)
    
  • [`0bc4c17e57`](https://github.com/nodejs/node/commit/0bc4c17e57)] - **deps**: add ada as a dependency (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410)
    
  • [`956f786499`](https://github.com/nodejs/node/commit/956f786499)] - **deps**: update undici to 5.21.0 (Node.js GitHub Bot) [#&#8203;47063](https://github.com/nodejs/node/pull/47063)
    
  • [`73be4f8ef5`](https://github.com/nodejs/node/commit/73be4f8ef5)] - **deps**: update simdutf to 3.2.2 (Node.js GitHub Bot) [#&#8203;46841](https://github.com/nodejs/node/pull/46841)
    
  • [`0e78fd5883`](https://github.com/nodejs/node/commit/0e78fd5883)] - **deps**: update corepack to 0.17.0 (Node.js GitHub Bot) [#&#8203;46842](https://github.com/nodejs/node/pull/46842)
    
  • [`61c9433d8a`](https://github.com/nodejs/node/commit/61c9433d8a)] - **deps**: update simdutf to 3.2.1 (Node.js GitHub Bot) [#&#8203;46800](https://github.com/nodejs/node/pull/46800)
    
  • [`63a62ed532`](https://github.com/nodejs/node/commit/63a62ed532)] - **deps**: upgrade npm to 9.5.1 (npm team) [#&#8203;46783](https://github.com/nodejs/node/pull/46783)
    
  • [`c8974d678a`](https://github.com/nodejs/node/commit/c8974d678a)] - **deps**: update nghttp2 to 1.52.0 (Michaël Zasso) [#&#8203;46636](https://github.com/nodejs/node/pull/46636)
    
  • [`2b439a2cdf`](https://github.com/nodejs/node/commit/2b439a2cdf)] - **deps**: fix libuv for android (Julian Dropmann) [#&#8203;46746](https://github.com/nodejs/node/pull/46746)
    
  • [`d5eb1df869`](https://github.com/nodejs/node/commit/d5eb1df869)] - **deps**: update simdutf to 3.2.0 (Node.js GitHub Bot) [#&#8203;46621](https://github.com/nodejs/node/pull/46621)
    
  • [`dd97b05aeb`](https://github.com/nodejs/node/commit/dd97b05aeb)] - **deps**: update corepack to 0.16.0 (Node.js GitHub Bot) [#&#8203;46710](https://github.com/nodejs/node/pull/46710)
    
  • [`65b877de45`](https://github.com/nodejs/node/commit/65b877de45)] - **deps**: copy `postject-api.h` and `LICENSE` to the `deps` folder (Darshan Sen) [#&#8203;46582](https://github.com/nodejs/node/pull/46582)
    
  • [`a918ac886e`](https://github.com/nodejs/node/commit/a918ac886e)] - **deps**: update c-ares to 1.19.0 (Michaël Zasso) [#&#8203;46415](https://github.com/nodejs/node/pull/46415)
    
  • [`1ac639a240`](https://github.com/nodejs/node/commit/1ac639a240)] - **deps**: V8: cherry-pick [`9ec4e90`](https://github.com/nodejs/node/commit/9ec4e9095a25) (Kleis Auke Wolthuizen) [#&#8203;47092](https://github.com/nodejs/node/pull/47092)
    
  • [`f8d4bf8540`](https://github.com/nodejs/node/commit/f8d4bf8540)] - **deps,test**: update postject to 1.0.0-alpha.5 (Node.js GitHub Bot) [#&#8203;46934](https://github.com/nodejs/node/pull/46934)
    
  • [`8646b06c1b`](https://github.com/nodejs/node/commit/8646b06c1b)] - **dgram**: fix unhandled exception aborting a closed udp socket (Ramana Venkata) [#&#8203;46770](https://github.com/nodejs/node/pull/46770)
    
  • [`e435199ccc`](https://github.com/nodejs/node/commit/e435199ccc)] - **doc**: remove remaining SSL_OP_NETSCAPE_\*\_BUG (Tobias Nießen) [#&#8203;47066](https://github.com/nodejs/node/pull/47066)
    
  • [`01d82670c7`](https://github.com/nodejs/node/commit/01d82670c7)] - **doc**: fix typo in test.md (Victor Hiairrassary) [#&#8203;47053](https://github.com/nodejs/node/pull/47053)
    
  • [`0e3077dc48`](https://github.com/nodejs/node/commit/0e3077dc48)] - **doc**: amend support tier qualifier (Gireesh Punathil) [#&#8203;42805](https://github.com/nodejs/node/pull/42805)
    
  • [`a5bf6693b9`](https://github.com/nodejs/node/commit/a5bf6693b9)] - **doc**: fix typo on esm loaders example (Ruy Adorno) [#&#8203;47015](https://github.com/nodejs/node/pull/47015)
    
  • [`6a0c1d053e`](https://github.com/nodejs/node/commit/6a0c1d053e)] - **doc**: add missing test runner flags to man page (Colin Ihrig) [#&#8203;46982](https://github.com/nodejs/node/pull/46982)
    
  • [`43b94b0f13`](https://github.com/nodejs/node/commit/43b94b0f13)] - **doc**: fix history information for `node:diagnostics_channel` (Thomas Hunter II) [#&#8203;46984](https://github.com/nodejs/node/pull/46984)
    
  • [`b37d53a1ba`](https://github.com/nodejs/node/commit/b37d53a1ba)] - **doc**: fix myUrl is not defined in url (Youngmin Yoo) [#&#8203;46968](https://github.com/nodejs/node/pull/46968)
    
  • [`257c5ac1fa`](https://github.com/nodejs/node/commit/257c5ac1fa)] - **doc**: remove useless SSL_OP_\* options (Tobias Nießen) [#&#8203;46954](https://github.com/nodejs/node/pull/46954)
    
  • [`09c5e6a9f3`](https://github.com/nodejs/node/commit/09c5e6a9f3)] - **doc**: fix description of TLS dhparam option (Tobias Nießen) [#&#8203;46949](https://github.com/nodejs/node/pull/46949)
    
  • [`8907732fcf`](https://github.com/nodejs/node/commit/8907732fcf)] - **doc**: improve fs code example quality (jakecastelli) [#&#8203;46948](https://github.com/nodejs/node/pull/46948)
    
  • [`17a25f1153`](https://github.com/nodejs/node/commit/17a25f1153)] - **doc**: fix port of destination server is not defined in http2 (Deokjin Kim) [#&#8203;46940](https://github.com/nodejs/node/pull/46940)
    
  • [`ad06168a5c`](https://github.com/nodejs/node/commit/ad06168a5c)] - **doc**: use number which is bigger than 1024 as port in http2 (Deokjin Kim) [#&#8203;46938](https://github.com/nodejs/node/pull/46938)
    
  • [`4e6dda5be4`](https://github.com/nodejs/node/commit/4e6dda5be4)] - **doc**: add release key for Juan Arboleda (Juan José) [#&#8203;46922](https://github.com/nodejs/node/pull/46922)
    
  • [`f49c6e64ba`](https://github.com/nodejs/node/commit/f49c6e64ba)] - **doc**: fix links to SSL_CTX_set_options (Tobias Nießen) [#&#8203;46953](https://github.com/nodejs/node/pull/46953)
    
  • [`ea7fb16e5c`](https://github.com/nodejs/node/commit/ea7fb16e5c)] - **doc**: fix fs missing import (jakecastelli) [#&#8203;46907](https://github.com/nodejs/node/pull/46907)
    
  • [`11885a7351`](https://github.com/nodejs/node/commit/11885a7351)] - **doc**: add request to hold off publicising sec releases (Michael Dawson) [#&#8203;46702](https://github.com/nodejs/node/pull/46702)
    
  • [`0254fd1da6`](https://github.com/nodejs/node/commit/0254fd1da6)] - **doc**: fix stream iterator helpers examples (Benjamin Gruenbaum) [#&#8203;46897](https://github.com/nodejs/node/pull/46897)
    
  • [`0a983f7125`](https://github.com/nodejs/node/commit/0a983f7125)] - **doc**: add history info for `node:test` (Antoine du Hamel) [#&#8203;46851](https://github.com/nodejs/node/pull/46851)
    
  • [`810d393ded`](https://github.com/nodejs/node/commit/810d393ded)] - **doc**: sort import order (jakecastelli) [#&#8203;46847](https://github.com/nodejs/node/pull/46847)
    
  • [`6e03499437`](https://github.com/nodejs/node/commit/6e03499437)] - **doc**: use destructing import (jakecastelli) [#&#8203;46847](https://github.com/nodejs/node/pull/46847)
    
  • [`8b636c3cd6`](https://github.com/nodejs/node/commit/8b636c3cd6)] - **doc**: add marco-ippolito to collaborators (Marco Ippolito) [#&#8203;46816](https://github.com/nodejs/node/pull/46816)
    
  • [`7e08ca125a`](https://github.com/nodejs/node/commit/7e08ca125a)] - **doc**: document how to use the tls.DEFAULT_CIPHERS (Andreas Martens) [#&#8203;46482](https://github.com/nodejs/node/pull/46482)
    
  • [`3dae6f2f81`](https://github.com/nodejs/node/commit/3dae6f2f81)] - **doc**: add document for profiling and heap snapshot (cola119) [#&#8203;46787](https://github.com/nodejs/node/pull/46787)
    
  • [`eef30513b9`](https://github.com/nodejs/node/commit/eef30513b9)] - **doc**: add test:coverage event to custom reporter examples (Richie McColl) [#&#8203;46752](https://github.com/nodejs/node/pull/46752)
    
  • [`e6db6bedf7`](https://github.com/nodejs/node/commit/e6db6bedf7)] - **doc**: include context on .toWeb() parameters (Debadree Chatterjee) [#&#8203;46617](https://github.com/nodejs/node/pull/46617)
    
  • [`a24350e49f`](https://github.com/nodejs/node/commit/a24350e49f)] - **doc**: add in security steward for recent release (Michael Dawson) [#&#8203;46701](https://github.com/nodejs/node/pull/46701)
    
  • [`55360e9386`](https://github.com/nodejs/node/commit/55360e9386)] - **doc**: clarify semver-minor notable changes approach (Beth Griggs) [#&#8203;46592](https://github.com/nodejs/node/pull/46592)
    
  • [`a384dd42ff`](https://github.com/nodejs/node/commit/a384dd42ff)] - **doc**: maintaining nghttp2 (Marco Ippolito) [#&#8203;46539](https://github.com/nodejs/node/pull/46539)
    
  • [`45fccc9737`](https://github.com/nodejs/node/commit/45fccc9737)] - **doc**: add emit to NodeEventTarget (Deokjin Kim) [#&#8203;46356](https://github.com/nodejs/node/pull/46356)
    
  • [`760616890c`](https://github.com/nodejs/node/commit/760616890c)] - **doc**: add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716)
    
  • [`b9dd876e7c`](https://github.com/nodejs/node/commit/b9dd876e7c)] - **doc**: move bcoe to emeriti (Benjamin Coe) [#&#8203;46703](https://github.com/nodejs/node/pull/46703)
    
  • [`3afbb92bb4`](https://github.com/nodejs/node/commit/3afbb92bb4)] - **doc**: add response.strictContentLength to documentation (Marco Ippolito) [#&#8203;46627](https://github.com/nodejs/node/pull/46627)
    
  • [`2c0e1aa095`](https://github.com/nodejs/node/commit/2c0e1aa095)] - **doc**: remove unused functions from example of `streamConsumers.text` (Deokjin Kim) [#&#8203;46581](https://github.com/nodejs/node/pull/46581)
    
  • [`61268303fc`](https://github.com/nodejs/node/commit/61268303fc)] - **doc**: fix test runner examples (Richie McColl) [#&#8203;46565](https://github.com/nodejs/node/pull/46565)
    
  • [`2b702c98c2`](https://github.com/nodejs/node/commit/2b702c98c2)] - **doc**: update test concurrency description / default values (richiemccoll) [#&#8203;46457](https://github.com/nodejs/node/pull/46457)
    
  • [`f1de3f7a31`](https://github.com/nodejs/node/commit/f1de3f7a31)] - **doc**: enrich test command with executable (Tony Gorez) [#&#8203;44347](https://github.com/nodejs/node/pull/44347)
    
  • [`68b5cf8e38`](https://github.com/nodejs/node/commit/68b5cf8e38)] - **doc**: fix wrong location of `requestTimeout`'s default value (Deokjin Kim) [#&#8203;46423](https://github.com/nodejs/node/pull/46423)
    
  • [`4d5d6d2193`](https://github.com/nodejs/node/commit/4d5d6d2193)] - **doc**: add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444)
    
  • [`de7f6182be`](https://github.com/nodejs/node/commit/de7f6182be)] - **doc**: fix -C flag usage (三咲智子 Kevin Deng) [#&#8203;46388](https://github.com/nodejs/node/pull/46388)
    
  • [`4165cf34ba`](https://github.com/nodejs/node/commit/4165cf34ba)] - **doc**: add note about major release rotation (Rafael Gonzaga) [#&#8203;46436](https://github.com/nodejs/node/pull/46436)
    
  • [`f088ce2dc7`](https://github.com/nodejs/node/commit/f088ce2dc7)] - **doc**: update threat model based on discussions (Michael Dawson) [#&#8203;46373](https://github.com/nodejs/node/pull/46373)
    
  • [`5b94e2bcdb`](https://github.com/nodejs/node/commit/5b94e2bcdb)] - **esm**: fix import assertion warning (Antoine du Hamel) [#&#8203;46971](https://github.com/nodejs/node/pull/46971)
    
  • [`96a39d1a99`](https://github.com/nodejs/node/commit/96a39d1a99)] - **esm**: add a runtime warning when using import assertions (Antoine du Hamel) [#&#8203;46901](https://github.com/nodejs/node/pull/46901)
    
  • [`320a8adb45`](https://github.com/nodejs/node/commit/320a8adb45)] - **esm**: misc test refactors (Geoffrey Booth) [#&#8203;46631](https://github.com/nodejs/node/pull/46631)
    
  • [`b08687f739`](https://github.com/nodejs/node/commit/b08687f739)] - **events**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46759](https://github.com/nodejs/node/pull/46759)
    
  • [`cc6deeaf7a`](https://github.com/nodejs/node/commit/cc6deeaf7a)] - **(SEMVER-MINOR)** **events**: add listener argument to listenerCount (Paolo Insogna) [#&#8203;46523](https://github.com/nodejs/node/pull/46523)
    
  • [`efc24097a6`](https://github.com/nodejs/node/commit/efc24097a6)] - **fs**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46696](https://github.com/nodejs/node/pull/46696)
    
  • [`80b4e6da53`](https://github.com/nodejs/node/commit/80b4e6da53)] - **http**: use listenerCount when adding noop event (Paolo Insogna) [#&#8203;46769](https://github.com/nodejs/node/pull/46769)
    
  • [`3538521bf6`](https://github.com/nodejs/node/commit/3538521bf6)] - **http**: correctly calculate strict content length (Robert Nagy) [#&#8203;46601](https://github.com/nodejs/node/pull/46601)
    
  • [`9582c8ef3a`](https://github.com/nodejs/node/commit/9582c8ef3a)] - **http**: fix validation of "Link" header (Steve Herzog) [#&#8203;46466](https://github.com/nodejs/node/pull/46466)
    
  • [`23c1e2fa52`](https://github.com/nodejs/node/commit/23c1e2fa52)] - **http**: unify header treatment (Marco Ippolito) [#&#8203;46528](https://github.com/nodejs/node/pull/46528)
    
  • [`abeee994c4`](https://github.com/nodejs/node/commit/abeee994c4)] - **http**: add note about clientError event (Paolo Insogna) [#&#8203;46584](https://github.com/nodejs/node/pull/46584)
    
  • [`3d0602c96c`](https://github.com/nodejs/node/commit/3d0602c96c)] - **http**: use v8::Array::New() with a prebuilt vector (Joyee Cheung) [#&#8203;46447](https://github.com/nodejs/node/pull/46447)
    
  • [`62cbddd86f`](https://github.com/nodejs/node/commit/62cbddd86f)] - **lib**: fix trailing commas and leftover function from rebasing (Danielle Adams) [#&#8203;47503](https://github.com/nodejs/node/pull/47503)
    
  • [`c463f133bd`](https://github.com/nodejs/node/commit/c463f133bd)] - **lib**: enforce use of trailing commas (Antoine du Hamel) [#&#8203;46881](https://github.com/nodejs/node/pull/46881)
    
  • [`0f33bb0961`](https://github.com/nodejs/node/commit/0f33bb0961)] - **lib**: add trailing commas to all public core modules (Antoine du Hamel) [#&#8203;46848](https://github.com/nodejs/node/pull/46848)
    
  • [`06e0dd3e15`](https://github.com/nodejs/node/commit/06e0dd3e15)] - **lib**: rename internal module declaration as internal bindings (okmttdhr, okp) [#&#8203;46663](https://github.com/nodejs/node/pull/46663)
    
  • [`31578ab1b4`](https://github.com/nodejs/node/commit/31578ab1b4)] - **lib**: add trailing commas to more internal files (Antoine du Hamel) [#&#8203;46811](https://github.com/nodejs/node/pull/46811)
    
  • [`ad510d9029`](https://github.com/nodejs/node/commit/ad510d9029)] - **lib**: update punycode to 2.3.0 (Yagiz Nizipli) [#&#8203;46719](https://github.com/nodejs/node/pull/46719)
    
  • [`4cf3de8b02`](https://github.com/nodejs/node/commit/4cf3de8b02)] - **lib**: add trailing commas in `internal/perf` (Antoine du Hamel) [#&#8203;46697](https://github.com/nodejs/node/pull/46697)
    
  • [`f1b79828bc`](https://github.com/nodejs/node/commit/f1b79828bc)] - **(SEMVER-MINOR)** **lib**: add AsyncLocalStorage.bind() and .snapshot() (flakey5) [#&#8203;46387](https://github.com/nodejs/node/pull/46387)
    
  • [`48cd712c0d`](https://github.com/nodejs/node/commit/48cd712c0d)] - **lib**: add trailing commas in `internal/process` (Antoine du Hamel) [#&#8203;46687](https://github.com/nodejs/node/pull/46687)
    
  • [`46a22ab601`](https://github.com/nodejs/node/commit/46a22ab601)] - **lib**: do not crash using workers with disabled shared array buffers (Ruben Bridgewater) [#&#8203;41023](https://github.com/nodejs/node/pull/41023)
    
  • [`1395e36e64`](https://github.com/nodejs/node/commit/1395e36e64)] - **lib**: delete module findPath unused params (sinkhaha) [#&#8203;45371](https://github.com/nodejs/node/pull/45371)
    
  • [`c410572620`](https://github.com/nodejs/node/commit/c410572620)] - **lib**: enforce use of trailing commas in more files (Antoine du Hamel) [#&#8203;46655](https://github.com/nodejs/node/pull/46655)
    
  • [`36e080cd13`](https://github.com/nodejs/node/commit/36e080cd13)] - **lib**: enforce use of trailing commas for functions (Antoine du Hamel) [#&#8203;46629](https://github.com/nodejs/node/pull/46629)
    
  • [`71249a6c00`](https://github.com/nodejs/node/commit/71249a6c00)] - **lib**: predeclare Event.isTr
    
    

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [node](https://github.com/nodejs/node) | stage | major | `16.20.2-bullseye` -> `20.12.2-bullseye` | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.12.2`](https://github.com/nodejs/node/releases/tag/v20.12.2): 2024-04-10, Version 20.12.2 &#x27;Iron&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.12.1...v20.12.2) This is a security release. ##### Notable Changes - CVE-2024-27980 - Command injection via args parameter of `child_process.spawn` without shell option enabled on Windows ##### Commits - \[[`69ffc6d50d`](https://github.com/nodejs/node/commit/69ffc6d50d)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#563](https://github.com/nodejs-private/node-private/pull/563) ### [`v20.12.1`](https://github.com/nodejs/node/releases/tag/v20.12.1): 2024-04-03, Version 20.12.1 &#x27;Iron&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.12.0...v20.12.1) This is a security release ##### Notable Changes - CVE-2024-27983 - Assertion failed in node::http2::Http2Session::~Http2Session() leads to HTTP/2 server crash- (High) - CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium) - llhttp version 9.2.1 - undici version 5.28.4 ##### Commits - \[[`bd8f10a257`](https://github.com/nodejs/node/commit/bd8f10a257)] - **deps**: update undici to v5.28.4 (Matteo Collina) [nodejs-private/node-private#576](https://github.com/nodejs-private/node-private/pull/576) - \[[`5e34540a96`](https://github.com/nodejs/node/commit/5e34540a96)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-private#557](https://github.com/nodejs-private/node-private/pull/557) - \[[`ba1ae6d188`](https://github.com/nodejs/node/commit/ba1ae6d188)] - **src**: ensure to close stream when destroying session (Anna Henningsen) [nodejs-private/node-private#561](https://github.com/nodejs-private/node-private/pull/561) ### [`v20.12.0`](https://github.com/nodejs/node/releases/tag/v20.12.0): 2024-03-26, Version 20.12.0 &#x27;Iron&#x27; (LTS), @&#8203;richardlau [Compare Source](https://github.com/nodejs/node/compare/v20.11.1...v20.12.0) ##### Notable Changes ##### crypto: implement crypto.hash() This patch introduces a helper crypto.hash() that computes a digest from the input at one shot. This can be 1.2-2x faster than the object-based createHash() for smaller inputs (<= 5MB) that are readily available (not streamed) and incur less memory overhead since no intermediate objects will be created. ```js const crypto = require('node:crypto'); // Hashing a string and return the result as a hex-encoded string. const string = 'Node.js'; // 10b3493287f831e81a438811a1ffba01f8cec4b7 console.log(crypto.hash('sha1', string)); ``` Contributed by Joyee Cheung in [#&#8203;51044](https://github.com/nodejs/node/pull/51044). ##### Loading and parsing environment variables - `process.loadEnvFile(path)`: - Use this function to load the `.env` file. If no path is specified, it automatically loads the .env file in the current directory. Example: `process.loadEnvFile()`. - Load a specific .env file by specifying its path. Example: `process.loadEnvFile('./development.env')`. - `util.parseEnv(content)`: - Use this function to parse an existing string containing environment variable assignments. - Example usage: `require('node:util').parseEnv('HELLO=world')`. Contributed by Yagiz Nizipli in [#&#8203;51476](https://github.com/nodejs/node/pull/51476). ##### New connection attempt events Three new events were added in the `net.createConnection` flow: - `connectionAttempt`: Emitted when a new connection attempt is established. In case of Happy Eyeballs, this might emitted multiple times. - `connectionAttemptFailed`: Emitted when a connection attempt failed. In case of Happy Eyeballs, this might emitted multiple times. - `connectionAttemptTimeout`: Emitted when a connection attempt timed out. In case of Happy Eyeballs, this will not be emitted for the last attempt. This is not emitted at all if Happy Eyeballs is not used. Additionally, a previous bug has been fixed where a new connection attempt could have been started after a previous one failed and after the connection was destroyed by the user. This led to a failed assertion. Contributed by Paolo Insogna in [#&#8203;51045](https://github.com/nodejs/node/pull/51045). ##### Permission Model changes Node.js 20.12.0 comes with several fixes for the experimental permission model and two new semver-minor commits. We're adding a new flag `--allow-addons` to enable addon usage when using the Permission Model. ```console $ node --experimental-permission --allow-addons ``` Contributed by Rafael Gonzaga in [#&#8203;51183](https://github.com/nodejs/node/pull/51183) And relative paths are now supported through the `--allow-fs-*` flags. Therefore, with this release one can use: ```console $ node --experimental-permission --allow-fs-read=./index.js ``` To give only read access to the entrypoint of the application. Contributed by Rafael Gonzaga and Carlos Espa in [#&#8203;50758](https://github.com/nodejs/node/pull/50758). ##### sea: support embedding assets Users can now include assets by adding a key-path dictionary to the configuration as the `assets` field. At build time, Node.js would read the assets from the specified paths and bundle them into the preparation blob. In the generated executable, users can retrieve the assets using the `sea.getAsset()` and `sea.getAssetAsBlob()` API. ```json { "main": "/path/to/bundled/script.js", "output": "/path/to/write/the/generated/blob.blob", "assets": { "a.jpg": "/path/to/a.jpg", "b.txt": "/path/to/b.txt" } } ``` The single-executable application can access the assets as follows: ```cjs const { getAsset } = require('node:sea'); // Returns a copy of the data in an ArrayBuffer const image = getAsset('a.jpg'); // Returns a string decoded from the asset as UTF8. const text = getAsset('b.txt', 'utf8'); // Returns a Blob containing the asset without copying. const blob = getAssetAsBlob('a.jpg'); ``` Contributed by Joyee Cheung in [#&#8203;50960](https://github.com/nodejs/node/pull/50960). ##### Support configurable snapshot through `--build-snapshot-config` flag We are adding a new flag `--build-snapshot-config` to configure snapshots through a custom JSON configuration file. ```console $ node --build-snapshot-config=/path/to/myconfig.json ``` When using this flag, additional script files provided on the command line will not be executed and instead be interpreted as regular command line arguments. These changes were contributed by Joyee Cheung and Anna Henningsen in [#&#8203;50453](https://github.com/nodejs/node/pull/50453) ##### Text Styling - `util.styleText(format, text)`: This function returns a formatted text considering the `format` passed. A new API has been created to format text based on `util.inspect.colors`, enabling you to style text in different colors (such as red, blue, ...) and emphasis (italic, bold, ...). ```cjs const { styleText } = require('node:util'); const errorMessage = styleText('red', 'Error! Error!'); console.log(errorMessage); ``` Contributed by Rafael Gonzaga in [#&#8203;51850](https://github.com/nodejs/node/pull/51850). ##### vm: support using the default loader to handle dynamic import() This patch adds support for using `vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER` as the `importModuleDynamically` option in all vm APIs that take this option except `vm.SourceTextModule`. This allows users to have a shortcut to support dynamic `import()` in the compiled code without missing the compilation cache if they don't need customization of the loading process. We emit an experimental warning when the `import()` is actually handled by the default loader through this option instead of requiring `--experimental-vm-modules`. ```js const { Script, constants } = require('node:vm'); const { resolve } = require('node:path'); const { writeFileSync } = require('node:fs'); // Write test.js and test.txt to the directory where the current script // being run is located. writeFileSync(resolve(__dirname, 'test.mjs'), 'export const filename = "./test.json";'); writeFileSync(resolve(__dirname, 'test.json'), '{"hello": "world"}'); // Compile a script that loads test.mjs and then test.json // as if the script is placed in the same directory. const script = new Script( `(async function() { const { filename } = await import('./test.mjs'); return import(filename, { with: { type: 'json' } }) })();`, { filename: resolve(__dirname, 'test-with-default.js'), importModuleDynamically: constants.USE_MAIN_CONTEXT_DEFAULT_LOADER, }); // { default: { hello: 'world' } } script.runInThisContext().then(console.log); ``` Contributed by Joyee Cheung in [#&#8203;51244](https://github.com/nodejs/node/pull/51244). ##### Root certificates updated to NSS 3.98 Certificates added: - Telekom Security TLS ECC Root 2020 - Telekom Security TLS RSA Root 2023 Certificates removed: - Security Communication Root CA ##### Updated dependencies - acorn updated to 8.11.3. - ada updated to 2.7.6. - base64 updated to 0.5.2. - brotli updated to 1.1.0. - c-ares updated to 1.27.0. - corepack updated to 0.25.2. - ICU updated to 74.2. Includes CLDR 44.1 and Unicode 15.1. - nghttp2 updated to 1.60.0. - npm updated to 10.5.0. Fixes a regression in signals not being passed onto child processes. - simdutf8 updated to 4.0.8. - Timezone updated to 2024a. - zlib updated to 1.3.0.1-motley-40e35a7. ##### Other notable changes - \[[`4f49e9d000`](https://github.com/nodejs/node/commit/4f49e9d000)] - **(SEMVER-MINOR)** **build**: build opt to set local location of headers (Michael Dawson) [#&#8203;51525](https://github.com/nodejs/node/pull/51525) - \[[`ccdb01187b`](https://github.com/nodejs/node/commit/ccdb01187b)] - **doc**: add zcbenz to collaborators (Cheng Zhao) [#&#8203;51812](https://github.com/nodejs/node/pull/51812) - \[[`481af53aea`](https://github.com/nodejs/node/commit/481af53aea)] - **doc**: add lemire to collaborators (Daniel Lemire) [#&#8203;51572](https://github.com/nodejs/node/pull/51572) - \[[`5ba4d96525`](https://github.com/nodejs/node/commit/5ba4d96525)] - **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader (Tim Perry) [#&#8203;51412](https://github.com/nodejs/node/pull/51412) - \[[`0861498e8b`](https://github.com/nodejs/node/commit/0861498e8b)] - **(SEMVER-MINOR)** **http2**: add server handshake utility (snek) [#&#8203;51172](https://github.com/nodejs/node/pull/51172) - \[[`6b08d006ee`](https://github.com/nodejs/node/commit/6b08d006ee)] - **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter) [#&#8203;51323](https://github.com/nodejs/node/pull/51323) - \[[`7894989bf0`](https://github.com/nodejs/node/commit/7894989bf0)] - **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee Cheung) [#&#8203;51044](https://github.com/nodejs/node/pull/51044) - \[[`a58c98ea85`](https://github.com/nodejs/node/commit/a58c98ea85)] - **(SEMVER-MINOR)** **src**: print string content better in BlobDeserializer (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960) - \[[`c3c0a3ee5c`](https://github.com/nodejs/node/commit/c3c0a3ee5c)] - **(SEMVER-MINOR)** **src**: support multi-line values for .env file (IlyasShabi) [#&#8203;51289](https://github.com/nodejs/node/pull/51289) - \[[`2a921966c6`](https://github.com/nodejs/node/commit/2a921966c6)] - **(SEMVER-MINOR)** **src**: do not coerce dotenv paths (Tobias Nießen) [#&#8203;51425](https://github.com/nodejs/node/pull/51425) - \[[`0dee86f295`](https://github.com/nodejs/node/commit/0dee86f295)] - **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee Cheung) [#&#8203;50453](https://github.com/nodejs/node/pull/50453) - \[[`ade6614067`](https://github.com/nodejs/node/commit/ade6614067)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#&#8203;50097](https://github.com/nodejs/node/pull/50097) - \[[`fe922f05e4`](https://github.com/nodejs/node/commit/fe922f05e4)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#&#8203;51246](https://github.com/nodejs/node/pull/51246) ##### Commits - \[[`cbda4e9fc5`](https://github.com/nodejs/node/commit/cbda4e9fc5)] - **assert,crypto**: make KeyObject and CryptoKey testable for equality (Filip Skokan) [#&#8203;50897](https://github.com/nodejs/node/pull/50897) - \[[`92fca59647`](https://github.com/nodejs/node/commit/92fca59647)] - **async_hooks,inspector**: implement inspector api without async_wrap (Gabriel Bota) [#&#8203;51501](https://github.com/nodejs/node/pull/51501) - \[[`029ca982dc`](https://github.com/nodejs/node/commit/029ca982dc)] - **benchmark**: update iterations of benchmark/async_hooks/async-local- (Lei Shi) [#&#8203;51420](https://github.com/nodejs/node/pull/51420) - \[[`350e9fee8d`](https://github.com/nodejs/node/commit/350e9fee8d)] - **benchmark**: update iterations of benchmark/domain/domain-fn-args.js (Lei Shi) [#&#8203;51408](https://github.com/nodejs/node/pull/51408) - \[[`40fda97deb`](https://github.com/nodejs/node/commit/40fda97deb)] - **benchmark**: update iterations of assert/deepequal-typedarrays.js (Lei Shi) [#&#8203;51419](https://github.com/nodejs/node/pull/51419) - \[[`1b2e3b7049`](https://github.com/nodejs/node/commit/1b2e3b7049)] - **benchmark**: update iterations of benchmark/assert/deepequal-map.js (Lei Shi) [#&#8203;51416](https://github.com/nodejs/node/pull/51416) - \[[`7639259203`](https://github.com/nodejs/node/commit/7639259203)] - **benchmark**: rename startup.js to startup-core.js (Joyee Cheung) [#&#8203;51669](https://github.com/nodejs/node/pull/51669) - \[[`4be33b5577`](https://github.com/nodejs/node/commit/4be33b5577)] - **benchmark**: remove dependency on unshipped tools (Adam Majer) [#&#8203;51146](https://github.com/nodejs/node/pull/51146) - \[[`bd03a154a9`](https://github.com/nodejs/node/commit/bd03a154a9)] - **benchmark**: update iterations in benchmark/perf_hooks (Lei Shi) [#&#8203;50869](https://github.com/nodejs/node/pull/50869) - \[[`19b943b909`](https://github.com/nodejs/node/commit/19b943b909)] - **benchmark**: update iterations in benchmark/crypto/aes-gcm-throughput.js (Lei Shi) [#&#8203;50929](https://github.com/nodejs/node/pull/50929) - \[[`278c990dea`](https://github.com/nodejs/node/commit/278c990dea)] - **benchmark**: update iteration and size in benchmark/crypto/randomBytes.js (Lei Shi) [#&#8203;50868](https://github.com/nodejs/node/pull/50868) - \[[`443d4fcff3`](https://github.com/nodejs/node/commit/443d4fcff3)] - **benchmark**: add undici websocket benchmark (Chenyu Yang) [#&#8203;50586](https://github.com/nodejs/node/pull/50586) - \[[`3ab6143380`](https://github.com/nodejs/node/commit/3ab6143380)] - **benchmark**: add create-hash benchmark (Joyee Cheung) [#&#8203;51026](https://github.com/nodejs/node/pull/51026) - \[[`6a8ff09332`](https://github.com/nodejs/node/commit/6a8ff09332)] - **benchmark**: update interations and len in benchmark/util/text-decoder.js (Lei Shi) [#&#8203;50938](https://github.com/nodejs/node/pull/50938) - \[[`22b53bc1fa`](https://github.com/nodejs/node/commit/22b53bc1fa)] - **benchmark**: update iterations of benchmark/util/type-check.js (Lei Shi) [#&#8203;50937](https://github.com/nodejs/node/pull/50937) - \[[`f56bda5109`](https://github.com/nodejs/node/commit/f56bda5109)] - **benchmark**: update iterations in benchmark/util/normalize-encoding.js (Lei Shi) [#&#8203;50934](https://github.com/nodejs/node/pull/50934) - \[[`4fc83e1ce3`](https://github.com/nodejs/node/commit/4fc83e1ce3)] - **benchmark**: update iterations in benchmark/util/inspect-array.js (Lei Shi) [#&#8203;50933](https://github.com/nodejs/node/pull/50933) - \[[`0edddcfc19`](https://github.com/nodejs/node/commit/0edddcfc19)] - **benchmark**: update iterations in benchmark/util/format.js (Lei Shi) [#&#8203;50932](https://github.com/nodejs/node/pull/50932) - \[[`f109961fd1`](https://github.com/nodejs/node/commit/f109961fd1)] - **benchmark**: update iterations in benchmark/crypto/hkdf.js (Lei Shi) [#&#8203;50866](https://github.com/nodejs/node/pull/50866) - \[[`1e923f11f2`](https://github.com/nodejs/node/commit/1e923f11f2)] - **benchmark**: update iterations in benchmark/crypto/get-ciphers.js (Lei Shi) [#&#8203;50863](https://github.com/nodejs/node/pull/50863) - \[[`f13643da06`](https://github.com/nodejs/node/commit/f13643da06)] - **benchmark**: update number of iterations for `util.inspect` (kylo5aby) [#&#8203;50651](https://github.com/nodejs/node/pull/50651) - \[[`03b19cbd2a`](https://github.com/nodejs/node/commit/03b19cbd2a)] - **bootstrap**: improve snapshot unsupported builtin warnings (Joyee Cheung) [#&#8203;50944](https://github.com/nodejs/node/pull/50944) - \[[`51ea5b60a9`](https://github.com/nodejs/node/commit/51ea5b60a9)] - **build**: fix arm64 host cross-compilation in GN (Cheng Zhao) [#&#8203;51903](https://github.com/nodejs/node/pull/51903) - \[[`9f5547afa2`](https://github.com/nodejs/node/commit/9f5547afa2)] - ***Revert*** "**build**: workaround for node-core-utils" (Richard Lau) [#&#8203;51975](https://github.com/nodejs/node/pull/51975) - \[[`58255e73ae`](https://github.com/nodejs/node/commit/58255e73ae)] - **build**: respect the `NODE` env variable in `Makefile` (Antoine du Hamel) [#&#8203;51743](https://github.com/nodejs/node/pull/51743) - \[[`0a7419bf0b`](https://github.com/nodejs/node/commit/0a7419bf0b)] - ***Revert*** "**build**: fix warning in cares under GN build" (Luigi Pinca) [#&#8203;51865](https://github.com/nodejs/node/pull/51865) - \[[`4118174b85`](https://github.com/nodejs/node/commit/4118174b85)] - **build**: remove `librt` libs link for Android compatibility (BuShe Pie) [#&#8203;51632](https://github.com/nodejs/node/pull/51632) - \[[`012da16b85`](https://github.com/nodejs/node/commit/012da16b85)] - **build**: do not rely on gn_helpers in GN build (Cheng Zhao) [#&#8203;51439](https://github.com/nodejs/node/pull/51439) - \[[`93fcf52990`](https://github.com/nodejs/node/commit/93fcf52990)] - **build**: fix warning in cares under GN build (Cheng Zhao) [#&#8203;51687](https://github.com/nodejs/node/pull/51687) - \[[`2176495455`](https://github.com/nodejs/node/commit/2176495455)] - **build**: fix building js2c with GN (Cheng Zhao) [#&#8203;51818](https://github.com/nodejs/node/pull/51818) - \[[`d6e702f885`](https://github.com/nodejs/node/commit/d6e702f885)] - **build**: encode non-ASCII Latin1 characters as one byte in JS2C (Joyee Cheung) [#&#8203;51605](https://github.com/nodejs/node/pull/51605) - \[[`4f49e9d000`](https://github.com/nodejs/node/commit/4f49e9d000)] - **(SEMVER-MINOR)** **build**: build opt to set local location of headers (Michael Dawson) [#&#8203;51525](https://github.com/nodejs/node/pull/51525) - \[[`8e84aad0ef`](https://github.com/nodejs/node/commit/8e84aad0ef)] - **build**: use macOS m1 machines for testing (Yagiz Nizipli) [#&#8203;51620](https://github.com/nodejs/node/pull/51620) - \[[`5fce1a17e2`](https://github.com/nodejs/node/commit/5fce1a17e2)] - **build**: check before removing %config% link (liudonghua) [#&#8203;51437](https://github.com/nodejs/node/pull/51437) - \[[`46d6dce1a8`](https://github.com/nodejs/node/commit/46d6dce1a8)] - **build**: increase parallel executions in github (Yagiz Nizipli) [#&#8203;51554](https://github.com/nodejs/node/pull/51554) - \[[`8b3ead1f3e`](https://github.com/nodejs/node/commit/8b3ead1f3e)] - **build**: remove copyright header in node.gni (Cheng Zhao) [#&#8203;51535](https://github.com/nodejs/node/pull/51535) - \[[`d8b86ad363`](https://github.com/nodejs/node/commit/d8b86ad363)] - **build**: update GN build files for ngtcp2 (Cheng Zhao) [#&#8203;51313](https://github.com/nodejs/node/pull/51313) - \[[`ba0ffddd2d`](https://github.com/nodejs/node/commit/ba0ffddd2d)] - **build**: fix for VScode "Reopen in Container" (Serg Kryvonos) [#&#8203;51271](https://github.com/nodejs/node/pull/51271) - \[[`8b97e2e0a7`](https://github.com/nodejs/node/commit/8b97e2e0a7)] - **build**: add `-flax-vector-conversions` to V8 build (Michaël Zasso) [#&#8203;51257](https://github.com/nodejs/node/pull/51257) - \[[`bd528c7dc0`](https://github.com/nodejs/node/commit/bd528c7dc0)] - **build**: fix warnings from uv for gn build (Cheng Zhao) [#&#8203;51069](https://github.com/nodejs/node/pull/51069) - \[[`ffe467b062`](https://github.com/nodejs/node/commit/ffe467b062)] - **build,tools**: make addons tests work with GN (Cheng Zhao) [#&#8203;50737](https://github.com/nodejs/node/pull/50737) - \[[`448d67109a`](https://github.com/nodejs/node/commit/448d67109a)] - **(SEMVER-MINOR)** **crypto**: implement crypto.hash() (Joyee Cheung) [#&#8203;51044](https://github.com/nodejs/node/pull/51044) - \[[`48959dd2b4`](https://github.com/nodejs/node/commit/48959dd2b4)] - **crypto**: update root certificates to NSS 3.98 (Node.js GitHub Bot) [#&#8203;51794](https://github.com/nodejs/node/pull/51794) - \[[`68e8b2c492`](https://github.com/nodejs/node/commit/68e8b2c492)] - **crypto**: use EVP_MD_fetch and cache EVP_MD for hashes (Joyee Cheung) [#&#8203;51034](https://github.com/nodejs/node/pull/51034) - \[[`adb5d69621`](https://github.com/nodejs/node/commit/adb5d69621)] - **crypto**: update CryptoKey symbol properties (Filip Skokan) [#&#8203;50897](https://github.com/nodejs/node/pull/50897) - \[[`df0213fd3d`](https://github.com/nodejs/node/commit/df0213fd3d)] - **deps**: update nghttp2 to 1.60.0 (Node.js GitHub Bot) [#&#8203;51948](https://github.com/nodejs/node/pull/51948) - \[[`208dd887a5`](https://github.com/nodejs/node/commit/208dd887a5)] - **deps**: upgrade npm to 10.5.0 (npm team) [#&#8203;51913](https://github.com/nodejs/node/pull/51913) - \[[`587e70e1ee`](https://github.com/nodejs/node/commit/587e70e1ee)] - **deps**: update corepack to 0.25.2 (Node.js GitHub Bot) [#&#8203;51810](https://github.com/nodejs/node/pull/51810) - \[[`38343c4857`](https://github.com/nodejs/node/commit/38343c4857)] - **deps**: update c-ares to 1.27.0 (Node.js GitHub Bot) [#&#8203;51846](https://github.com/nodejs/node/pull/51846) - \[[`c9974f621c`](https://github.com/nodejs/node/commit/c9974f621c)] - **deps**: update c-ares to 1.26.0 (Node.js GitHub Bot) [#&#8203;51582](https://github.com/nodejs/node/pull/51582) - \[[`0aa18e1a1c`](https://github.com/nodejs/node/commit/0aa18e1a1c)] - **deps**: update googletest to [`6a59382`](https://github.com/nodejs/node/commit/6a59382) (Node.js GitHub Bot) [#&#8203;51580](https://github.com/nodejs/node/pull/51580) - \[[`f871bc6ddc`](https://github.com/nodejs/node/commit/f871bc6ddc)] - **deps**: update nghttp2 to 1.59.0 (Node.js GitHub Bot) [#&#8203;51581](https://github.com/nodejs/node/pull/51581) - \[[`94f8ee8717`](https://github.com/nodejs/node/commit/94f8ee8717)] - **deps**: update corepack to 0.24.1 (Node.js GitHub Bot) [#&#8203;51459](https://github.com/nodejs/node/pull/51459) - \[[`c23ce06e6b`](https://github.com/nodejs/node/commit/c23ce06e6b)] - **deps**: update ada to 2.7.6 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542) - \[[`372ce69de1`](https://github.com/nodejs/node/commit/372ce69de1)] - **deps**: update ada to 2.7.5 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542) - \[[`133719b2c9`](https://github.com/nodejs/node/commit/133719b2c9)] - **deps**: update googletest to [`7c07a86`](https://github.com/nodejs/node/commit/7c07a86) (Node.js GitHub Bot) [#&#8203;51458](https://github.com/nodejs/node/pull/51458) - \[[`35675aa07f`](https://github.com/nodejs/node/commit/35675aa07f)] - **deps**: update acorn-walk to 8.3.2 (Node.js GitHub Bot) [#&#8203;51457](https://github.com/nodejs/node/pull/51457) - \[[`ca73f55a22`](https://github.com/nodejs/node/commit/ca73f55a22)] - **deps**: update base64 to 0.5.2 (Node.js GitHub Bot) [#&#8203;51455](https://github.com/nodejs/node/pull/51455) - \[[`c9dad18191`](https://github.com/nodejs/node/commit/c9dad18191)] - **deps**: compile c-ares with C11 support (Michaël Zasso) [#&#8203;51410](https://github.com/nodejs/node/pull/51410) - \[[`a727fa73ee`](https://github.com/nodejs/node/commit/a727fa73ee)] - **deps**: upgrade npm to 10.3.0 (npm team) [#&#8203;51431](https://github.com/nodejs/node/pull/51431) - \[[`834bbfd039`](https://github.com/nodejs/node/commit/834bbfd039)] - **deps**: update c-ares to 1.25.0 (Node.js GitHub Bot) [#&#8203;51385](https://github.com/nodejs/node/pull/51385) - \[[`4c8fa3e7c2`](https://github.com/nodejs/node/commit/4c8fa3e7c2)] - **deps**: update uvwasi to 0.0.20 and fixup tests (Michael Dawson) [#&#8203;51355](https://github.com/nodejs/node/pull/51355) - \[[`bd183ef2af`](https://github.com/nodejs/node/commit/bd183ef2af)] - **deps**: add nghttp3/\*\*/.deps to .gitignore (Luigi Pinca) [#&#8203;51400](https://github.com/nodejs/node/pull/51400) - \[[`1d8169995c`](https://github.com/nodejs/node/commit/1d8169995c)] - **deps**: update corepack to 0.24.0 (Node.js GitHub Bot) [#&#8203;51318](https://github.com/nodejs/node/pull/51318) - \[[`4dfbbb8789`](https://github.com/nodejs/node/commit/4dfbbb8789)] - **deps**: update acorn to 8.11.3 (Node.js GitHub Bot) [#&#8203;51317](https://github.com/nodejs/node/pull/51317) - \[[`7d60877fa3`](https://github.com/nodejs/node/commit/7d60877fa3)] - **deps**: update brotli to 1.1.0 (Node.js GitHub Bot) [#&#8203;50804](https://github.com/nodejs/node/pull/50804) - \[[`1b99a3f0af`](https://github.com/nodejs/node/commit/1b99a3f0af)] - **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) [#&#8203;51274](https://github.com/nodejs/node/pull/51274) - \[[`2270285839`](https://github.com/nodejs/node/commit/2270285839)] - **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot) [#&#8203;51000](https://github.com/nodejs/node/pull/51000) - \[[`61d1535d84`](https://github.com/nodejs/node/commit/61d1535d84)] - **deps**: V8: cherry-pick [`de611e6`](https://github.com/nodejs/node/commit/de611e69ad51) (Keyhan Vakil) [#&#8203;51200](https://github.com/nodejs/node/pull/51200) - \[[`04323fd595`](https://github.com/nodejs/node/commit/04323fd595)] - **deps**: update googletest to [`530d5c8`](https://github.com/nodejs/node/commit/530d5c8) (Node.js GitHub Bot) [#&#8203;51191](https://github.com/nodejs/node/pull/51191) - \[[`454b4f8d7e`](https://github.com/nodejs/node/commit/454b4f8d7e)] - **deps**: update acorn-walk to 8.3.1 (Node.js GitHub Bot) [#&#8203;50457](https://github.com/nodejs/node/pull/50457) - \[[`cc693eb908`](https://github.com/nodejs/node/commit/cc693eb908)] - **deps**: update acorn-walk to 8.3.0 (Node.js GitHub Bot) [#&#8203;50457](https://github.com/nodejs/node/pull/50457) - \[[`09519c6655`](https://github.com/nodejs/node/commit/09519c6655)] - **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) [#&#8203;51105](https://github.com/nodejs/node/pull/51105) - \[[`a2f39e9168`](https://github.com/nodejs/node/commit/a2f39e9168)] - **deps**: V8: cherry-pick [`0fd478b`](https://github.com/nodejs/node/commit/0fd478bcdabd) (Joyee Cheung) [#&#8203;50572](https://github.com/nodejs/node/pull/50572) - \[[`1aaf156ea7`](https://github.com/nodejs/node/commit/1aaf156ea7)] - **deps**: update zlib to 1.3-22124f5 (Node.js GitHub Bot) [#&#8203;50910](https://github.com/nodejs/node/pull/50910) - \[[`3f4e254047`](https://github.com/nodejs/node/commit/3f4e254047)] - **deps**: update googletest to [`76bb2af`](https://github.com/nodejs/node/commit/76bb2af) (Node.js GitHub Bot) [#&#8203;50555](https://github.com/nodejs/node/pull/50555) - \[[`702684c008`](https://github.com/nodejs/node/commit/702684c008)] - **deps**: update googletest to [`b10fad3`](https://github.com/nodejs/node/commit/b10fad3) (Node.js GitHub Bot) [#&#8203;50555](https://github.com/nodejs/node/pull/50555) - \[[`4ee7f29657`](https://github.com/nodejs/node/commit/4ee7f29657)] - **deps**: update timezone to 2024a (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723) - \[[`452d74c8b6`](https://github.com/nodejs/node/commit/452d74c8b6)] - **deps**: update icu to 74.2 (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723) - \[[`e6fc5a5ee1`](https://github.com/nodejs/node/commit/e6fc5a5ee1)] - **deps**: update timezone to 2023d (Node.js GitHub Bot) [#&#8203;51461](https://github.com/nodejs/node/pull/51461) - \[[`4ee0f8306b`](https://github.com/nodejs/node/commit/4ee0f8306b)] - **deps**: update icu to 74.1 (Node.js GitHub Bot) [#&#8203;50515](https://github.com/nodejs/node/pull/50515) - \[[`cb49f31480`](https://github.com/nodejs/node/commit/cb49f31480)] - **deps**: cherry-pick [libuv/libuv@`d09441c`](https://github.com/libuv/libuv/commit/d09441c) (Richard Lau) [#&#8203;51976](https://github.com/nodejs/node/pull/51976) - \[[`ea50540c5e`](https://github.com/nodejs/node/commit/ea50540c5e)] - ***Revert*** "**deps**: V8: cherry-pick [`13192d6`](https://github.com/nodejs/node/commit/13192d6e10fa)" (kxxt) [#&#8203;51495](https://github.com/nodejs/node/pull/51495) - \[[`6fd1617ab4`](https://github.com/nodejs/node/commit/6fd1617ab4)] - **doc**: add policy for distribution (Geoffrey Booth) [#&#8203;51918](https://github.com/nodejs/node/pull/51918) - \[[`fc0b389006`](https://github.com/nodejs/node/commit/fc0b389006)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#&#8203;51925](https://github.com/nodejs/node/pull/51925) - \[[`93d6d66339`](https://github.com/nodejs/node/commit/93d6d66339)] - **doc**: clarify Corepack threat model (Antoine du Hamel) [#&#8203;51917](https://github.com/nodejs/node/pull/51917) - \[[`276d1d1d65`](https://github.com/nodejs/node/commit/276d1d1d65)] - **doc**: add stability index to crypto.hash() (Joyee Cheung) [#&#8203;51978](https://github.com/nodejs/node/pull/51978) - \[[`473af948b5`](https://github.com/nodejs/node/commit/473af948b5)] - **doc**: remove redundant backquote which breaks sentence (JounQin) [#&#8203;51904](https://github.com/nodejs/node/pull/51904) - \[[`b52b249b05`](https://github.com/nodejs/node/commit/b52b249b05)] - **doc**: update node-api/node-addon-api team link to sharing project news (Ulises Gascón) [#&#8203;51877](https://github.com/nodejs/node/pull/51877) - \[[`a74c373ea4`](https://github.com/nodejs/node/commit/a74c373ea4)] - **doc**: add website team to sharing project news (Ulises Gascón) [#&#8203;49002](https://github.com/nodejs/node/pull/49002) - \[[`b7ce547d41`](https://github.com/nodejs/node/commit/b7ce547d41)] - **doc**: update guide link for Event Loop (Shrujal Shah) [#&#8203;51874](https://github.com/nodejs/node/pull/51874) - \[[`3dfee7ee33`](https://github.com/nodejs/node/commit/3dfee7ee33)] - **doc**: change `ExperimentalWarnings` to `ExperimentalWarning` (Ameet Kaustav) [#&#8203;51741](https://github.com/nodejs/node/pull/51741) - \[[`740d0679e7`](https://github.com/nodejs/node/commit/740d0679e7)] - **doc**: add Paolo to TSC members (Michael Dawson) [#&#8203;51825](https://github.com/nodejs/node/pull/51825) - \[[`3240a2f349`](https://github.com/nodejs/node/commit/3240a2f349)] - **doc**: reserve 123 for Electron 30 (Keeley Hammond) [#&#8203;51803](https://github.com/nodejs/node/pull/51803) - \[[`597e3db0f9`](https://github.com/nodejs/node/commit/597e3db0f9)] - **doc**: add mention to GPG_TTY (Rafael Gonzaga) [#&#8203;51806](https://github.com/nodejs/node/pull/51806) - \[[`ccdb01187b`](https://github.com/nodejs/node/commit/ccdb01187b)] - **doc**: add zcbenz to collaborators (Cheng Zhao) [#&#8203;51812](https://github.com/nodejs/node/pull/51812) - \[[`3a3de00437`](https://github.com/nodejs/node/commit/3a3de00437)] - **doc**: add entry to stewards (Rafael Gonzaga) [#&#8203;51760](https://github.com/nodejs/node/pull/51760) - \[[`06b882d2fa`](https://github.com/nodejs/node/commit/06b882d2fa)] - **doc**: update technical priorities for 2023 (Jean Burellier) [#&#8203;47523](https://github.com/nodejs/node/pull/47523) - \[[`9a68b47fe1`](https://github.com/nodejs/node/commit/9a68b47fe1)] - **doc**: mark isWebAssemblyCompiledModule eol (Marco Ippolito) [#&#8203;51442](https://github.com/nodejs/node/pull/51442) - \[[`8016628710`](https://github.com/nodejs/node/commit/8016628710)] - **doc**: fix `globals.md` introduction (Antoine du Hamel) [#&#8203;51742](https://github.com/nodejs/node/pull/51742) - \[[`9ddbe4523f`](https://github.com/nodejs/node/commit/9ddbe4523f)] - **doc**: updates for better json generating (Dmitry Semigradsky) [#&#8203;51592](https://github.com/nodejs/node/pull/51592) - \[[`140cf26d47`](https://github.com/nodejs/node/commit/140cf26d47)] - **doc**: document the GN build (Cheng Zhao) [#&#8203;51676](https://github.com/nodejs/node/pull/51676) - \[[`ecfb3f18b3`](https://github.com/nodejs/node/commit/ecfb3f18b3)] - **doc**: fix uncaught exception example (Gabriel Schulhof) [#&#8203;51638](https://github.com/nodejs/node/pull/51638) - \[[`b3157a08bf`](https://github.com/nodejs/node/commit/b3157a08bf)] - **doc**: clarify execution of `after` hook on test suite completion (Ognjen Jevremović) [#&#8203;51523](https://github.com/nodejs/node/pull/51523) - \[[`1dae1873d9`](https://github.com/nodejs/node/commit/1dae1873d9)] - **doc**: fix `dns.lookup` and `dnsPromises.lookup` description (Duncan Chiu) [#&#8203;51517](https://github.com/nodejs/node/pull/51517) - \[[`50df052087`](https://github.com/nodejs/node/commit/50df052087)] - **doc**: note that path.normalize deviates from POSIX (Tobias Nießen) [#&#8203;51513](https://github.com/nodejs/node/pull/51513) - \[[`481af53aea`](https://github.com/nodejs/node/commit/481af53aea)] - **doc**: add lemire to collaborators (Daniel Lemire) [#&#8203;51572](https://github.com/nodejs/node/pull/51572) - \[[`dec0d5d19a`](https://github.com/nodejs/node/commit/dec0d5d19a)] - **doc**: fix historical experimental fetch flag (Kenrick) [#&#8203;51506](https://github.com/nodejs/node/pull/51506) - \[[`96c480b1a1`](https://github.com/nodejs/node/commit/96c480b1a1)] - **doc**: fix type of connectionAttempt parameter (Rafael Gonzaga) [#&#8203;51490](https://github.com/nodejs/node/pull/51490) - \[[`76968ab112`](https://github.com/nodejs/node/commit/76968ab112)] - **doc**: remove reference to resolved child_process v8 issue (Ian Kerins) [#&#8203;51467](https://github.com/nodejs/node/pull/51467) - \[[`bdd3a2a9fd`](https://github.com/nodejs/node/commit/bdd3a2a9fd)] - **doc**: update typos (Aranđel Šarenac) [#&#8203;51475](https://github.com/nodejs/node/pull/51475) - \[[`3532f5587c`](https://github.com/nodejs/node/commit/3532f5587c)] - **doc**: add notes on inspector breakpoints (Chengzhong Wu) [#&#8203;51417](https://github.com/nodejs/node/pull/51417) - \[[`0dffb9f049`](https://github.com/nodejs/node/commit/0dffb9f049)] - **doc**: add links in `offboarding.md` (Antoine du Hamel) [#&#8203;51440](https://github.com/nodejs/node/pull/51440) - \[[`58d2442f0f`](https://github.com/nodejs/node/commit/58d2442f0f)] - **doc**: fix spelling mistake (u9g) [#&#8203;51454](https://github.com/nodejs/node/pull/51454) - \[[`a09f440dbd`](https://github.com/nodejs/node/commit/a09f440dbd)] - **doc**: add check for security reverts (Michael Dawson) [#&#8203;51376](https://github.com/nodejs/node/pull/51376) - \[[`401837bfc4`](https://github.com/nodejs/node/commit/401837bfc4)] - **doc**: fix some policy scope typos (Tim Kuijsten) [#&#8203;51234](https://github.com/nodejs/node/pull/51234) - \[[`f301f829ba`](https://github.com/nodejs/node/commit/f301f829ba)] - **doc**: improve subtests documentation (Marco Ippolito) [#&#8203;51379](https://github.com/nodejs/node/pull/51379) - \[[`1e40f552fd`](https://github.com/nodejs/node/commit/1e40f552fd)] - **doc**: add missing word in `child_process.md` (Joseph Joy) [#&#8203;50370](https://github.com/nodejs/node/pull/50370) - \[[`42b4f0f5ab`](https://github.com/nodejs/node/commit/42b4f0f5ab)] - **doc**: fixup alignment of warning subsection (James M Snell) [#&#8203;51374](https://github.com/nodejs/node/pull/51374) - \[[`b5bc597871`](https://github.com/nodejs/node/commit/b5bc597871)] - **doc**: the GN files should use Node's license (Cheng Zhao) [#&#8203;50694](https://github.com/nodejs/node/pull/50694) - \[[`01a41041d6`](https://github.com/nodejs/node/commit/01a41041d6)] - **doc**: improve localWindowSize event descriptions (Davy Landman) [#&#8203;51071](https://github.com/nodejs/node/pull/51071) - \[[`63aa27df10`](https://github.com/nodejs/node/commit/63aa27df10)] - **doc**: mark `--jitless` as experimental (Antoine du Hamel) [#&#8203;51247](https://github.com/nodejs/node/pull/51247) - \[[`c8233912e9`](https://github.com/nodejs/node/commit/c8233912e9)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;51199](https://github.com/nodejs/node/pull/51199) - \[[`9e360df521`](https://github.com/nodejs/node/commit/9e360df521)] - **doc**: fix limitations and known issues in pm (Rafael Gonzaga) [#&#8203;51184](https://github.com/nodejs/node/pull/51184) - \[[`52d8222d32`](https://github.com/nodejs/node/commit/52d8222d32)] - **doc**: mention node:wasi in the Threat Model (Rafael Gonzaga) [#&#8203;51211](https://github.com/nodejs/node/pull/51211) - \[[`cb3270e4c8`](https://github.com/nodejs/node/commit/cb3270e4c8)] - **doc**: remove ambiguous 'considered' (Rich Trott) [#&#8203;51207](https://github.com/nodejs/node/pull/51207) - \[[`979e183e0c`](https://github.com/nodejs/node/commit/979e183e0c)] - **doc**: set exit code in custom test runner example (Matteo Collina) [#&#8203;51056](https://github.com/nodejs/node/pull/51056) - \[[`eaadebb1f4`](https://github.com/nodejs/node/commit/eaadebb1f4)] - **doc**: remove version from `maintaining-dependencies.md` (Antoine du Hamel) [#&#8203;51195](https://github.com/nodejs/node/pull/51195) - \[[`256db6e056`](https://github.com/nodejs/node/commit/256db6e056)] - **doc**: mention native addons are restricted in pm (Rafael Gonzaga) [#&#8203;51185](https://github.com/nodejs/node/pull/51185) - \[[`2a61602ab2`](https://github.com/nodejs/node/commit/2a61602ab2)] - **doc**: correct note on behavior of stats.isDirectory (Nick Reilingh) [#&#8203;50946](https://github.com/nodejs/node/pull/50946) - \[[`184b8bea5b`](https://github.com/nodejs/node/commit/184b8bea5b)] - **doc**: fix `TestsStream` parent class (Jungku Lee) [#&#8203;51181](https://github.com/nodejs/node/pull/51181) - \[[`c61597ffe4`](https://github.com/nodejs/node/commit/c61597ffe4)] - **(SEMVER-MINOR)** **doc**: add documentation for --build-snapshot-config (Anna Henningsen) [#&#8203;50453](https://github.com/nodejs/node/pull/50453) - \[[`b88170d602`](https://github.com/nodejs/node/commit/b88170d602)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;51111](https://github.com/nodejs/node/pull/51111) - \[[`f2b4626ab8`](https://github.com/nodejs/node/commit/f2b4626ab8)] - **doc**: deprecate hash constructor (Marco Ippolito) [#&#8203;51077](https://github.com/nodejs/node/pull/51077) - \[[`6c241550cd`](https://github.com/nodejs/node/commit/6c241550cd)] - **doc**: add note regarding `--experimental-detect-module` (Shubherthi Mitra) [#&#8203;51089](https://github.com/nodejs/node/pull/51089) - \[[`8ee30ea900`](https://github.com/nodejs/node/commit/8ee30ea900)] - **doc**: correct tracingChannel.traceCallback() (Gerhard Stöbich) [#&#8203;51068](https://github.com/nodejs/node/pull/51068) - \[[`1cd27b6eff`](https://github.com/nodejs/node/commit/1cd27b6eff)] - **doc**: use length argument in pbkdf2Key (Tobias Nießen) [#&#8203;51066](https://github.com/nodejs/node/pull/51066) - \[[`09ad974537`](https://github.com/nodejs/node/commit/09ad974537)] - **doc**: add deprecation notice to `dirent.path` (Antoine du Hamel) [#&#8203;51059](https://github.com/nodejs/node/pull/51059) - \[[`1113e58f87`](https://github.com/nodejs/node/commit/1113e58f87)] - **doc**: deprecate `dirent.path` (Antoine du Hamel) [#&#8203;51020](https://github.com/nodejs/node/pull/51020) - \[[`37979d750e`](https://github.com/nodejs/node/commit/37979d750e)] - **doc**: add additional details about `--input-type` (Shubham Pandey) [#&#8203;50796](https://github.com/nodejs/node/pull/50796) - \[[`3ff00e1e79`](https://github.com/nodejs/node/commit/3ff00e1e79)] - **doc**: add procedure when CVEs don't get published (Rafael Gonzaga) [#&#8203;50945](https://github.com/nodejs/node/pull/50945) - \[[`0930be6bd5`](https://github.com/nodejs/node/commit/0930be6bd5)] - **doc**: fix some errors in esm resolution algorithms (Christopher Jeffrey (JJ)) [#&#8203;50898](https://github.com/nodejs/node/pull/50898) - \[[`ddc7964b03`](https://github.com/nodejs/node/commit/ddc7964b03)] - **doc**: reserve 121 for Electron 29 (Shelley Vohr) [#&#8203;50957](https://github.com/nodejs/node/pull/50957) - \[[`625fd69b76`](https://github.com/nodejs/node/commit/625fd69b76)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;50926](https://github.com/nodejs/node/pull/50926) - \[[`f18269607a`](https://github.com/nodejs/node/commit/f18269607a)] - **doc**: document non-node_modules-only runtime deprecation (Joyee Cheung) [#&#8203;50748](https://github.com/nodejs/node/pull/50748) - \[[`5f8e7a0fdb`](https://github.com/nodejs/node/commit/5f8e7a0fdb)] - **doc**: add doc for Unix abstract socket (theanarkh) [#&#8203;50904](https://github.com/nodejs/node/pull/50904) - \[[`e0598787e0`](https://github.com/nodejs/node/commit/e0598787e0)] - **doc**: remove flicker on page load on dark theme (Dima Demakov) [#&#8203;50942](https://github.com/nodejs/node/pull/50942) - \[[`2a7047d933`](https://github.com/nodejs/node/commit/2a7047d933)] - **doc,crypto**: further clarify RSA_PKCS1\_PADDING support (Tobias Nießen) [#&#8203;51799](https://github.com/nodejs/node/pull/51799) - \[[`31c4ba4dfd`](https://github.com/nodejs/node/commit/31c4ba4dfd)] - **doc,crypto**: add changelog and note about disabled RSA_PKCS1\_PADDING (Filip Skokan) [#&#8203;51782](https://github.com/nodejs/node/pull/51782) - \[[`90da41548f`](https://github.com/nodejs/node/commit/90da41548f)] - **doc,module**: clarify hook chain execution sequence (Jacob Smith) [#&#8203;51884](https://github.com/nodejs/node/pull/51884) - \[[`bb7d7f3d1c`](https://github.com/nodejs/node/commit/bb7d7f3d1c)] - **errors**: fix stacktrace of SystemError (uzlopak) [#&#8203;49956](https://github.com/nodejs/node/pull/49956) - \[[`db7459b57b`](https://github.com/nodejs/node/commit/db7459b57b)] - **errors**: improve hideStackFrames (Aras Abbasi) [#&#8203;49990](https://github.com/nodejs/node/pull/49990) - \[[`a6b3569121`](https://github.com/nodejs/node/commit/a6b3569121)] - **esm**: improve error when calling `import.meta.resolve` from `data:` URL (Antoine du Hamel) [#&#8203;49516](https://github.com/nodejs/node/pull/49516) - \[[`38f4000905`](https://github.com/nodejs/node/commit/38f4000905)] - **esm**: fix hint on invalid module specifier (Antoine du Hamel) [#&#8203;51223](https://github.com/nodejs/node/pull/51223) - \[[`e39e37bbd5`](https://github.com/nodejs/node/commit/e39e37bbd5)] - **esm**: fix hook name in error message (Bruce MacNaughton) [#&#8203;50466](https://github.com/nodejs/node/pull/50466) - \[[`d9b5cd533c`](https://github.com/nodejs/node/commit/d9b5cd533c)] - **events**: no stopPropagation call in cancelBubble (mert.altin) [#&#8203;50405](https://github.com/nodejs/node/pull/50405) - \[[`287a02c4b2`](https://github.com/nodejs/node/commit/287a02c4b2)] - **fs**: load rimraf lazily in fs/promises (Joyee Cheung) [#&#8203;51617](https://github.com/nodejs/node/pull/51617) - \[[`bbd1351ef0`](https://github.com/nodejs/node/commit/bbd1351ef0)] - **fs**: remove race condition for recursive watch on Linux (Matteo Collina) [#&#8203;51406](https://github.com/nodejs/node/pull/51406) - \[[`1b7ccec5a7`](https://github.com/nodejs/node/commit/1b7ccec5a7)] - **fs**: update jsdoc for `filehandle.createWriteStream` and `appendFile` (Jungku Lee) [#&#8203;51494](https://github.com/nodejs/node/pull/51494) - \[[`25056f5024`](https://github.com/nodejs/node/commit/25056f5024)] - **fs**: fix fs.promises.realpath for long paths on Windows (翠 / green) [#&#8203;51032](https://github.com/nodejs/node/pull/51032) - \[[`a8fd01a5a2`](https://github.com/nodejs/node/commit/a8fd01a5a2)] - **fs**: make offset, position & length args in fh.read() optional (Pulkit Gupta) [#&#8203;51087](https://github.com/nodejs/node/pull/51087) - \[[`721557c6d8`](https://github.com/nodejs/node/commit/721557c6d8)] - **fs**: add missing jsdoc parameters to `readSync` (Yagiz Nizipli) [#&#8203;51225](https://github.com/nodejs/node/pull/51225) - \[[`3ce9aacfcd`](https://github.com/nodejs/node/commit/3ce9aacfcd)] - **fs**: remove `internalModuleReadJSON` binding (Yagiz Nizipli) [#&#8203;51224](https://github.com/nodejs/node/pull/51224) - \[[`65df2c6787`](https://github.com/nodejs/node/commit/65df2c6787)] - **fs**: improve mkdtemp performance for buffer prefix (Yagiz Nizipli) [#&#8203;51078](https://github.com/nodejs/node/pull/51078) - \[[`6705b48012`](https://github.com/nodejs/node/commit/6705b48012)] - **fs**: validate fd synchronously on c++ (Yagiz Nizipli) [#&#8203;51027](https://github.com/nodejs/node/pull/51027) - \[[`afd5d67f89`](https://github.com/nodejs/node/commit/afd5d67f89)] - **fs**: throw fchownSync error from c++ (Yagiz Nizipli) [#&#8203;51075](https://github.com/nodejs/node/pull/51075) - \[[`bac982bce5`](https://github.com/nodejs/node/commit/bac982bce5)] - **fs**: update params in jsdoc for createReadStream and createWriteStream (Jungku Lee) [#&#8203;51063](https://github.com/nodejs/node/pull/51063) - \[[`6764f0c9a8`](https://github.com/nodejs/node/commit/6764f0c9a8)] - **fs**: improve error performance of readvSync (IlyasShabi) [#&#8203;50100](https://github.com/nodejs/node/pull/50100) - \[[`0225fce776`](https://github.com/nodejs/node/commit/0225fce776)] - **(SEMVER-MINOR)** **fs**: introduce `dirent.parentPath` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976) - \[[`4adea6c405`](https://github.com/nodejs/node/commit/4adea6c405)] - **fs,test**: add URL to string to fs.watch (Rafael Gonzaga) [#&#8203;51346](https://github.com/nodejs/node/pull/51346) - \[[`6bf148e12b`](https://github.com/nodejs/node/commit/6bf148e12b)] - **http**: fix `close` return value mismatch between doc and implementation (kylo5aby) [#&#8203;51797](https://github.com/nodejs/node/pull/51797) - \[[`66318602d0`](https://github.com/nodejs/node/commit/66318602d0)] - **http**: split set-cookie when using setHeaders (Marco Ippolito) [#&#8203;51649](https://github.com/nodejs/node/pull/51649) - \[[`f7b53d05bd`](https://github.com/nodejs/node/commit/f7b53d05bd)] - **http**: remove misleading warning (Luigi Pinca) [#&#8203;51204](https://github.com/nodejs/node/pull/51204) - \[[`9062d30600`](https://github.com/nodejs/node/commit/9062d30600)] - **http**: do not override user-provided options object (KuthorX) [#&#8203;33633](https://github.com/nodejs/node/pull/33633) - \[[`4e38dee4ee`](https://github.com/nodejs/node/commit/4e38dee4ee)] - **http**: handle multi-value content-disposition header (Arsalan Ahmad) [#&#8203;50977](https://github.com/nodejs/node/pull/50977) - \[[`b560bfbb84`](https://github.com/nodejs/node/commit/b560bfbb84)] - **http2**: close idle connections when allowHTTP1 is true (xsbchen) [#&#8203;51569](https://github.com/nodejs/node/pull/51569) - \[[`5ba4d96525`](https://github.com/nodejs/node/commit/5ba4d96525)] - **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader (Tim Perry) [#&#8203;51412](https://github.com/nodejs/node/pull/51412) - \[[`0861498e8b`](https://github.com/nodejs/node/commit/0861498e8b)] - **(SEMVER-MINOR)** **http2**: add server handshake utility (snek) [#&#8203;51172](https://github.com/nodejs/node/pull/51172) - \[[`6b08d006ee`](https://github.com/nodejs/node/commit/6b08d006ee)] - **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter) [#&#8203;51323](https://github.com/nodejs/node/pull/51323) - \[[`23414a6120`](https://github.com/nodejs/node/commit/23414a6120)] - **http2**: addtl http/2 settings (Marten Richter) [#&#8203;49025](https://github.com/nodejs/node/pull/49025) - \[[`3fe59ba224`](https://github.com/nodejs/node/commit/3fe59ba224)] - **inspector**: add NodeRuntime.waitingForDebugger event (mary marchini) [#&#8203;51560](https://github.com/nodejs/node/pull/51560) - \[[`44f05e0d30`](https://github.com/nodejs/node/commit/44f05e0d30)] - **lib**: make sure close net server (theanarkh) [#&#8203;51929](https://github.com/nodejs/node/pull/51929) - \[[`3be5ff9c45`](https://github.com/nodejs/node/commit/3be5ff9c45)] - **lib**: return directly if udp socket close before lookup (theanarkh) [#&#8203;51914](https://github.com/nodejs/node/pull/51914) - \[[`dcbf88f4c7`](https://github.com/nodejs/node/commit/dcbf88f4c7)] - **lib**: account for cwd access from snapshot serialization cb (Anna Henningsen) [#&#8203;51901](https://github.com/nodejs/node/pull/51901) - \[[`da8fa484f8`](https://github.com/nodejs/node/commit/da8fa484f8)] - **lib**: fix http client socket path (theanarkh) [#&#8203;51900](https://github.com/nodejs/node/pull/51900) - \[[`55011d2c71`](https://github.com/nodejs/node/commit/55011d2c71)] - **lib**: only build the ESM facade for builtins when they are needed (Joyee Cheung) [#&#8203;51669](https://github.com/nodejs/node/pull/51669) - \[[`7894989bf0`](https://github.com/nodejs/node/commit/7894989bf0)] - **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee Cheung) [#&#8203;51044](https://github.com/nodejs/node/pull/51044) - \[[`9082cc557d`](https://github.com/nodejs/node/commit/9082cc557d)] - **lib**: do not access process.noDeprecation at build time (Joyee Cheung) [#&#8203;51447](https://github.com/nodejs/node/pull/51447) - \[[`6679e6b616`](https://github.com/nodejs/node/commit/6679e6b616)] - **lib**: add assertion for user ESM execution (Joyee Cheung) [#&#8203;51748](https://github.com/nodejs/node/pull/51748) - \[[`d6e8d03afc`](https://github.com/nodejs/node/commit/d6e8d03afc)] - **lib**: create global console properties at snapshot build time (Joyee Cheung) [#&#8203;51700](https://github.com/nodejs/node/pull/51700) - \[[`bd2a3c10ae`](https://github.com/nodejs/node/commit/bd2a3c10ae)] - **lib**: define FormData and fetch etc. in the built-in snapshot (Joyee Cheung) [#&#8203;51598](https://github.com/nodejs/node/pull/51598) - \[[`da79876ef0`](https://github.com/nodejs/node/commit/da79876ef0)] - **lib**: allow checking the test result from afterEach (Tim Stableford) [#&#8203;51485](https://github.com/nodejs/node/pull/51485) - \[[`bff7e3cf7a`](https://github.com/nodejs/node/commit/bff7e3cf7a)] - **lib**: remove unnecessary refreshHrtimeBuffer() (Joyee Cheung) [#&#8203;51446](https://github.com/nodejs/node/pull/51446) - \[[`562947e012`](https://github.com/nodejs/node/commit/562947e012)] - **lib**: fix use of `--frozen-intrinsics` with `--jitless` (Antoine du Hamel) [#&#8203;51248](https://github.com/nodejs/node/pull/51248) - \[[`7b83ef749e`](https://github.com/nodejs/node/commit/7b83ef749e)] - **lib**: move function declaration outside of loop (Sanjaiyan Parthipan) [#&#8203;51242](https://github.com/nodejs/node/pull/51242) - \[[`0a85b0fd9d`](https://github.com/nodejs/node/commit/0a85b0fd9d)] - **lib**: reduce overhead of `SafePromiseAllSettledReturnVoid` calls (Antoine du Hamel) [#&#8203;51243](https://github.com/nodejs/node/pull/51243) - \[[`f4d7f0498e`](https://github.com/nodejs/node/commit/f4d7f0498e)] - **lib**: expose default prepareStackTrace (Chengzhong Wu) [#&#8203;50827](https://github.com/nodejs/node/pull/50827) - \[[`5c7a9c8d4a`](https://github.com/nodejs/node/commit/5c7a9c8d4a)] - **lib**: don't parse windows drive letters as schemes (华) [#&#8203;50580](https://github.com/nodejs/node/pull/50580) - \[[`9da6384f5a`](https://github.com/nodejs/node/commit/9da6384f5a)] - **lib**: refactor to use validateFunction in diagnostics_channel (Deokjin Kim) [#&#8203;50955](https://github.com/nodejs/node/pull/50955) - \[[`be3205ae24`](https://github.com/nodejs/node/commit/be3205ae24)] - **lib**: streamline process.binding() handling (Joyee Cheung) [#&#8203;50773](https://github.com/nodejs/node/pull/50773) - \[[`f4987eb91e`](https://github.com/nodejs/node/commit/f4987eb91e)] - **lib,permission**: handle buffer on fs.symlink (Rafael Gonzaga) [#&#8203;51212](https://github.com/nodejs/node/pull/51212) - \[[`861e040b40`](https://github.com/nodejs/node/commit/861e040b40)] - **lib,src**: extract sourceMappingURL from module (unbyte) [#&#8203;51690](https://github.com/nodejs/node/pull/51690) - \[[`8a082754e0`](https://github.com/nodejs/node/commit/8a082754e0)] - **lib,src**: replace toUSVString with `toWellFormed()` (Yagiz Nizipli) [#&#8203;47342](https://github.com/nodejs/node/pull/47342) - \[[`3badc1139c`](https://github.com/nodejs/node/commit/3badc1139c)] - **(SEMVER-MINOR)** **lib,src,permission**: port path.resolve to C++ (Rafael Gonzaga) [#&#8203;50758](https://github.com/nodejs/node/pull/50758) - \[[`4b3cc3ce18`](https://github.com/nodejs/node/commit/4b3cc3ce18)] - **loader**: speed up line length calc used by moduleProvider (Mudit) [#&#8203;50969](https://github.com/nodejs/node/pull/50969) - \[[`960d67c51f`](https://github.com/nodejs/node/commit/960d67c51f)] - **meta**: bump github/codeql-action from 3.23.2 to 3.24.6 (dependabot\[bot]) [#&#8203;51942](https://github.com/nodejs/node/pull/51942) - \[[`1783b93af2`](https://github.com/nodejs/node/commit/1783b93af2)] - **meta**: bump actions/upload-artifact from 4.3.0 to 4.3.1 (dependabot\[bot]) [#&#8203;51941](https://github.com/nodejs/node/pull/51941) - \[[`1db603db2f`](https://github.com/nodejs/node/commit/1db603db2f)] - **meta**: bump codecov/codecov-action from 4.0.1 to 4.1.0 (dependabot\[bot]) [#&#8203;51940](https://github.com/nodejs/node/pull/51940) - \[[`2ddec64d5a`](https://github.com/nodejs/node/commit/2ddec64d5a)] - **meta**: bump actions/cache from 4.0.0 to 4.0.1 (dependabot\[bot]) [#&#8203;51939](https://github.com/nodejs/node/pull/51939) - \[[`92490421be`](https://github.com/nodejs/node/commit/92490421be)] - **meta**: bump actions/download-artifact from 4.1.1 to 4.1.3 (dependabot\[bot]) [#&#8203;51938](https://github.com/nodejs/node/pull/51938) - \[[`f3fa2b72b8`](https://github.com/nodejs/node/commit/f3fa2b72b8)] - **meta**: bump actions/setup-node from 4.0.1 to 4.0.2 (dependabot\[bot]) [#&#8203;51937](https://github.com/nodejs/node/pull/51937) - \[[`a62b042e83`](https://github.com/nodejs/node/commit/a62b042e83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;51726](https://github.com/nodejs/node/pull/51726) - \[[`491f9f9902`](https://github.com/nodejs/node/commit/491f9f9902)] - **meta**: bump codecov/codecov-action from 3.1.4 to 4.0.1 (dependabot\[bot]) [#&#8203;51648](https://github.com/nodejs/node/pull/51648) - \[[`2765077a47`](https://github.com/nodejs/node/commit/2765077a47)] - **meta**: bump actions/download-artifact from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;51644](https://github.com/nodejs/node/pull/51644) - \[[`152a07b854`](https://github.com/nodejs/node/commit/152a07b854)] - **meta**: bump actions/upload-artifact from 4.0.0 to 4.3.0 (dependabot\[bot]) [#&#8203;51643](https://github.com/nodejs/node/pull/51643) - \[[`53826920fb`](https://github.com/nodejs/node/commit/53826920fb)] - **meta**: bump step-security/harden-runner from 2.6.1 to 2.7.0 (dependabot\[bot]) [#&#8203;51641](https://github.com/nodejs/node/pull/51641) - \[[`3d1dc9b030`](https://github.com/nodejs/node/commit/3d1dc9b030)] - **meta**: bump actions/cache from 3.3.2 to 4.0.0 (dependabot\[bot]) [#&#8203;51640](https://github.com/nodejs/node/pull/51640) - \[[`287bdf6bda`](https://github.com/nodejs/node/commit/287bdf6bda)] - **meta**: bump github/codeql-action from 3.22.12 to 3.23.2 (dependabot\[bot]) [#&#8203;51639](https://github.com/nodejs/node/pull/51639) - \[[`90068fb0f1`](https://github.com/nodejs/node/commit/90068fb0f1)] - **meta**: add .mailmap entry for lemire (Daniel Lemire) [#&#8203;51600](https://github.com/nodejs/node/pull/51600) - \[[`f91786bd70`](https://github.com/nodejs/node/commit/f91786bd70)] - **meta**: mark security-wg codeowner for deps folder (Marco Ippolito) [#&#8203;51529](https://github.com/nodejs/node/pull/51529) - \[[`e51221be8d`](https://github.com/nodejs/node/commit/e51221be8d)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;51468](https://github.com/nodejs/node/pull/51468) - \[[`4a8a012c6d`](https://github.com/nodejs/node/commit/4a8a012c6d)] - **meta**: move RaisinTen to emeritus and remove from strategic initiatives (Darshan Sen) [#&#8203;51411](https://github.com/nodejs/node/pull/51411) - \[[`e9276bab3f`](https://github.com/nodejs/node/commit/e9276bab3f)] - **meta**: add .temp and .lock tags to ignore (Rafael Gonzaga) [#&#8203;51343](https://github.com/nodejs/node/pull/51343) - \[[`ae6fecbc8d`](https://github.com/nodejs/node/commit/ae6fecbc8d)] - **meta**: bump actions/setup-python from 4.7.1 to 5.0.0 (dependabot\[bot]) [#&#8203;51335](https://github.com/nodejs/node/pull/51335) - \[[`f4be49a618`](https://github.com/nodejs/node/commit/f4be49a618)] - **meta**: bump actions/setup-node from 4.0.0 to 4.0.1 (dependabot\[bot]) [#&#8203;51334](https://github.com/nodejs/node/pull/51334) - \[[`e24aa7ced1`](https://github.com/nodejs/node/commit/e24aa7ced1)] - **meta**: bump github/codeql-action from 2.22.8 to 3.22.12 (dependabot\[bot]) [#&#8203;51333](https://github.com/nodejs/node/pull/51333) - \[[`287c2bcf56`](https://github.com/nodejs/node/commit/287c2bcf56)] - **meta**: bump actions/stale from 8.0.0 to 9.0.0 (dependabot\[bot]) [#&#8203;51332](https://github.com/nodejs/node/pull/51332) - \[[`1cad0dfaff`](https://github.com/nodejs/node/commit/1cad0dfaff)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;51329](https://github.com/nodejs/node/pull/51329) - \[[`eef64b782e`](https://github.com/nodejs/node/commit/eef64b782e)] - **meta**: notify tsc on changes in SECURITY.md (Rafael Gonzaga) [#&#8203;51259](https://github.com/nodejs/node/pull/51259) - \[[`95a880f728`](https://github.com/nodejs/node/commit/95a880f728)] - **meta**: update artifact actions to v4 (Michaël Zasso) [#&#8203;51219](https://github.com/nodejs/node/pull/51219) - \[[`59805f6879`](https://github.com/nodejs/node/commit/59805f6879)] - **meta**: bump step-security/harden-runner from 2.6.0 to 2.6.1 (dependabot\[bot]) [#&#8203;50999](https://github.com/nodejs/node/pull/50999) - \[[`d74e0b97c3`](https://github.com/nodejs/node/commit/d74e0b97c3)] - **meta**: bump github/codeql-action from 2.22.5 to 2.22.8 (dependabot\[bot]) [#&#8203;50998](https://github.com/nodejs/node/pull/50998) - \[[`91cd9183d1`](https://github.com/nodejs/node/commit/91cd9183d1)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;50931](https://github.com/nodejs/node/pull/50931) - \[[`c621491aba`](https://github.com/nodejs/node/commit/c621491aba)] - **module**: fix crash when built-in module export a `default` key (Antoine du Hamel) [#&#8203;51481](https://github.com/nodejs/node/pull/51481) - \[[`43a8d3e984`](https://github.com/nodejs/node/commit/43a8d3e984)] - **module**: fix `--preserve-symlinks-main` (per4uk) [#&#8203;51312](https://github.com/nodejs/node/pull/51312) - \[[`d8da197f86`](https://github.com/nodejs/node/commit/d8da197f86)] - **module**: move the CJS exports cache to internal/modules/cjs/loader (Joyee Cheung) [#&#8203;51157](https://github.com/nodejs/node/pull/51157) - \[[`5fc10ca4d6`](https://github.com/nodejs/node/commit/5fc10ca4d6)] - **module**: load source maps in `commonjs` translator (Hiroki Osame) [#&#8203;51033](https://github.com/nodejs/node/pull/51033) - \[[`43e9f0bc65`](https://github.com/nodejs/node/commit/43e9f0bc65)] - **module**: document `parentURL` in register options (Hiroki Osame) [#&#8203;51039](https://github.com/nodejs/node/pull/51039) - \[[`870ef5a73f`](https://github.com/nodejs/node/commit/870ef5a73f)] - **net**: fix connect crash when call destroy in lookup handler (theanarkh) [#&#8203;51826](https://github.com/nodejs/node/pull/51826) - \[[`caf71e05a6`](https://github.com/nodejs/node/commit/caf71e05a6)] - **net**: fix example IPv4 in dns docs (Aras Abbasi) [#&#8203;51377](https://github.com/nodejs/node/pull/51377) - \[[`58a636be0e`](https://github.com/nodejs/node/commit/58a636be0e)] - **(SEMVER-MINOR)** **net**: add connection attempt events (Paolo Insogna) [#&#8203;51045](https://github.com/nodejs/node/pull/51045) - \[[`06a29f830a`](https://github.com/nodejs/node/commit/06a29f830a)] - **node-api**: make napi_get_buffer_info check if passed buffer is valid (Janrupf) [#&#8203;51571](https://github.com/nodejs/node/pull/51571) - \[[`0fb98438e4`](https://github.com/nodejs/node/commit/0fb98438e4)] - **node-api**: move NAPI_EXPERIMENTAL definition to gyp file (Gabriel Schulhof) [#&#8203;51254](https://github.com/nodejs/node/pull/51254) - \[[`242139fb98`](https://github.com/nodejs/node/commit/242139fb98)] - **node-api**: optimize napi_set_property for perf (Mert Can Altın) [#&#8203;50282](https://github.com/nodejs/node/pull/50282) - \[[`dc3d70c040`](https://github.com/nodejs/node/commit/dc3d70c040)] - **node-api**: type tag external values without v8::Private (Chengzhong Wu) [#&#8203;51149](https://github.com/nodejs/node/pull/51149) - \[[`0ac070ccb7`](https://github.com/nodejs/node/commit/0ac070ccb7)] - **node-api**: segregate nogc APIs from rest via type system (Gabriel Schulhof) [#&#8203;50060](https://github.com/nodejs/node/pull/50060) - \[[`de65cada70`](https://github.com/nodejs/node/commit/de65cada70)] - **node-api**: introduce experimental feature flags (Gabriel Schulhof) [#&#8203;50991](https://github.com/nodejs/node/pull/50991) - \[[`e192ba18cd`](https://github.com/nodejs/node/commit/e192ba18cd)] - **perf_hooks**: performance milestone time origin timestamp improvement (IlyasShabi) [#&#8203;51713](https://github.com/nodejs/node/pull/51713) - \[[`f94336f95a`](https://github.com/nodejs/node/commit/f94336f95a)] - **repl**: fix `NO_COLORS` env var is ignored (Moshe Atlow) [#&#8203;51568](https://github.com/nodejs/node/pull/51568) - \[[`e08649caa0`](https://github.com/nodejs/node/commit/e08649caa0)] - **repl**: fix prepareStackTrace frames array order (Chengzhong Wu) [#&#8203;50827](https://github.com/nodejs/node/pull/50827) - \[[`07614072f1`](https://github.com/nodejs/node/commit/07614072f1)] - **sea**: update stability index (Joyee Cheung) [#&#8203;51774](https://github.com/nodejs/node/pull/51774) - \[[`eea0d74454`](https://github.com/nodejs/node/commit/eea0d74454)] - **(SEMVER-MINOR)** **sea**: support sea.getRawAsset() (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960) - \[[`db0efa3f40`](https://github.com/nodejs/node/commit/db0efa3f40)] - **(SEMVER-MINOR)** **sea**: support embedding assets (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960) - \[[`9b164c6eec`](https://github.com/nodejs/node/commit/9b164c6eec)] - **src**: fix --disable-single-executable-application (Joyee Cheung) [#&#8203;51808](https://github.com/nodejs/node/pull/51808) - \[[`306c1d35e5`](https://github.com/nodejs/node/commit/306c1d35e5)] - **src**: simplify direct queries of env vars in C++ land (Joyee Cheung) [#&#8203;51829](https://github.com/nodejs/node/pull/51829) - \[[`696063a47c`](https://github.com/nodejs/node/commit/696063a47c)] - **src**: stop the profiler and the inspector before snapshot serialization (Joyee Cheung) [#&#8203;51815](https://github.com/nodejs/node/pull/51815) - \[[`be40c8286c`](https://github.com/nodejs/node/commit/be40c8286c)] - **src**: simplify embedder entry point execution (Joyee Cheung) [#&#8203;51557](https://github.com/nodejs/node/pull/51557) - \[[`90391ff256`](https://github.com/nodejs/node/commit/90391ff256)] - **src**: compile code eagerly in snapshot builder (Joyee Cheung) [#&#8203;51672](https://github.com/nodejs/node/pull/51672) - \[[`3875fa1dc5`](https://github.com/nodejs/node/commit/3875fa1dc5)] - **src**: check empty before accessing string (Cheng Zhao) [#&#8203;51665](https://github.com/nodejs/node/pull/51665) - \[[`a58c98ea85`](https://github.com/nodejs/node/commit/a58c98ea85)] - **(SEMVER-MINOR)** **src**: print string content better in BlobDeserializer (Joyee Cheung) [#&#8203;50960](https://github.com/nodejs/node/pull/50960) - \[[`62707a9d27`](https://github.com/nodejs/node/commit/62707a9d27)] - **src**: fix vm bug for configurable globalThis (F. Hinkelmann) [#&#8203;51602](https://github.com/nodejs/node/pull/51602) - \[[`c3c0a3ee5c`](https://github.com/nodejs/node/commit/c3c0a3ee5c)] - **(SEMVER-MINOR)** **src**: support multi-line values for .env file (IlyasShabi) [#&#8203;51289](https://github.com/nodejs/node/pull/51289) - \[[`dc8fe9ebf4`](https://github.com/nodejs/node/commit/dc8fe9ebf4)] - **(SEMVER-MINOR)** **src**: add `process.loadEnvFile` and `util.parseEnv` (Yagiz Nizipli) [#&#8203;51476](https://github.com/nodejs/node/pull/51476) - \[[`a5afad2a4d`](https://github.com/nodejs/node/commit/a5afad2a4d)] - **src**: terminate correctly double-quote in env variable (Marco Ippolito) [#&#8203;51510](https://github.com/nodejs/node/pull/51510) - \[[`2a921966c6`](https://github.com/nodejs/node/commit/2a921966c6)] - **(SEMVER-MINOR)** **src**: do not coerce dotenv paths (Tobias Nießen) [#&#8203;51425](https://github.com/nodejs/node/pull/51425) - \[[`50ec55c268`](https://github.com/nodejs/node/commit/50ec55c268)] - **src**: refactor `GetCreationContext` calls (Jungku Lee) [#&#8203;51367](https://github.com/nodejs/node/pull/51367) - \[[`2e65389922`](https://github.com/nodejs/node/commit/2e65389922)] - **src**: do not read string out of bounds (Cheng Zhao) [#&#8203;51358](https://github.com/nodejs/node/pull/51358) - \[[`a653531089`](https://github.com/nodejs/node/commit/a653531089)] - **src**: avoid shadowed string in fs_permission (Shelley Vohr) [#&#8203;51123](https://github.com/nodejs/node/pull/51123) - \[[`c190a057ff`](https://github.com/nodejs/node/commit/c190a057ff)] - **src**: avoid draining platform tasks at FreeEnvironment (Chengzhong Wu) [#&#8203;51290](https://github.com/nodejs/node/pull/51290) - \[[`00227674f5`](https://github.com/nodejs/node/commit/00227674f5)] - **src**: add fast api for Histogram (James M Snell) [#&#8203;51296](https://github.com/nodejs/node/pull/51296) - \[[`4733c8e4df`](https://github.com/nodejs/node/commit/4733c8e4df)] - **src**: refactor `GetCreationContext` calls (Yagiz Nizipli) [#&#8203;51287](https://github.com/nodejs/node/pull/51287) - \[[`d76e16bb47`](https://github.com/nodejs/node/commit/d76e16bb47)] - **src**: enter isolate before destructing IsolateData (Ben Noordhuis) [#&#8203;51138](https://github.com/nodejs/node/pull/51138) - \[[`4ffdd37d2c`](https://github.com/nodejs/node/commit/4ffdd37d2c)] - **src**: eliminate duplicate code in histogram.cc (James M Snell) [#&#8203;51263](https://github.com/nodejs/node/pull/51263) - \[[`2ce8b974a0`](https://github.com/nodejs/node/commit/2ce8b974a0)] - **src**: fix unix abstract socket path for trace event (theanarkh) [#&#8203;50858](https://github.com/nodejs/node/pull/50858) - \[[`9b25268cb8`](https://github.com/nodejs/node/commit/9b25268cb8)] - **src**: use BignumPointer and use BN_clear_free (James M Snell) [#&#8203;50454](https://github.com/nodejs/node/pull/50454) - \[[`a80f660343`](https://github.com/nodejs/node/commit/a80f660343)] - **src**: implement FastByteLengthUtf8 with simdutf::utf8\_length_from_latin1 (Daniel Lemire) [#&#8203;50840](https://github.com/nodejs/node/pull/50840) - \[[`0dee86f295`](https://github.com/nodejs/node/commit/0dee86f295)] - **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee Cheung) [#&#8203;50453](https://github.com/nodejs/node/pull/50453) - \[[`90b5ed1d1d`](https://github.com/nodejs/node/commit/90b5ed1d1d)] - **src**: implement countObjectsWithPrototype (Joyee Cheung) [#&#8203;50572](https://github.com/nodejs/node/pull/50572) - \[[`9365e129ed`](https://github.com/nodejs/node/commit/9365e129ed)] - **src**: register udp_wrap external references (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943) - \[[`b05d496b6c`](https://github.com/nodejs/node/commit/b05d496b6c)] - **src**: register spawn_sync external references (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943) - \[[`642fb44982`](https://github.com/nodejs/node/commit/642fb44982)] - **src**: register process_wrap external references (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943) - \[[`c7c9e81a1a`](https://github.com/nodejs/node/commit/c7c9e81a1a)] - **src**: fix double free reported by coverity (Michael Dawson) [#&#8203;51046](https://github.com/nodejs/node/pull/51046) - \[[`358793e28e`](https://github.com/nodejs/node/commit/358793e28e)] - **src**: remove unused headers in `node_file.cc` (Jungku Lee) [#&#8203;50927](https://github.com/nodejs/node/pull/50927) - \[[`c705b73a74`](https://github.com/nodejs/node/commit/c705b73a74)] - **src**: implement --trace-promises (Joyee Cheung) [#&#8203;50899](https://github.com/nodejs/node/pull/50899) - \[[`97aa67f006`](https://github.com/nodejs/node/commit/97aa67f006)] - **src**: fix dynamically linked zlib version (Richard Lau) [#&#8203;51007](https://github.com/nodejs/node/pull/51007) - \[[`d6f46a44f2`](https://github.com/nodejs/node/commit/d6f46a44f2)] - **src**: make ModifyCodeGenerationFromStrings more robust (Joyee Cheung) [#&#8203;50763](https://github.com/nodejs/node/pull/50763) - \[[`362135a1f9`](https://github.com/nodejs/node/commit/362135a1f9)] - **src**: disable uncaught exception abortion for ESM syntax detection (Yagiz Nizipli) [#&#8203;50987](https://github.com/nodejs/node/pull/50987) - \[[`d82b0d4320`](https://github.com/nodejs/node/commit/d82b0d4320)] - **src**: fix backtrace with tail \[\[noreturn]] abort (Chengzhong Wu) [#&#8203;50849](https://github.com/nodejs/node/pull/50849) - \[[`6df3e31bff`](https://github.com/nodejs/node/commit/6df3e31bff)] - **src**: print MKSNAPSHOT debug logs to stderr (Joyee Cheung) [#&#8203;50759](https://github.com/nodejs/node/pull/50759) - \[[`fd5efac176`](https://github.com/nodejs/node/commit/fd5efac176)] - **(SEMVER-MINOR)** **src,permission**: add --allow-addon flag (Rafael Gonzaga) [#&#8203;51183](https://github.com/nodejs/node/pull/51183) - \[[`b616f6fa06`](https://github.com/nodejs/node/commit/b616f6fa06)] - **src,stream**: improve WriteString (ywave620) [#&#8203;51155](https://github.com/nodejs/node/pull/51155) - \[[`16d8cd5b22`](https://github.com/nodejs/node/commit/16d8cd5b22)] - **stream**: do not defer construction by one microtick (Matteo Collina) [#&#8203;52005](https://github.com/nodejs/node/pull/52005) - \[[`7931c3bbc8`](https://github.com/nodejs/node/commit/7931c3bbc8)] - **stream**: fix eventNames() to not return not defined events (IlyasShabi) [#&#8203;51331](https://github.com/nodejs/node/pull/51331) - \[[`d0a6f3515d`](https://github.com/nodejs/node/commit/d0a6f3515d)] - **stream**: fix cloned webstreams not being unref correctly (tsctx) [#&#8203;51526](https://github.com/nodejs/node/pull/51526) - \[[`8750070a47`](https://github.com/nodejs/node/commit/8750070a47)] - **stream**: fix fd is null when calling clearBuffer (kylo5aby) [#&#8203;50994](https://github.com/nodejs/node/pull/50994) - \[[`ade6614067`](https://github.com/nodejs/node/commit/ade6614067)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#&#8203;50097](https://github.com/nodejs/node/pull/50097) - \[[`905c48fc6e`](https://github.com/nodejs/node/commit/905c48fc6e)] - **test**: add regression test for test_runner after hook (Colin Ihrig) [#&#8203;51998](https://github.com/nodejs/node/pull/51998) - \[[`60f008b65e`](https://github.com/nodejs/node/commit/60f008b65e)] - **test**: reduce flakiness of `test-runner-output` (Antoine du Hamel) [#&#8203;51952](https://github.com/nodejs/node/pull/51952) - \[[`0ad88f6a5c`](https://github.com/nodejs/node/commit/0ad88f6a5c)] - **test**: fix flaky http-chunk-extensions-limit test (Ethan Arrowood) [#&#8203;51943](https://github.com/nodejs/node/pull/51943) - \[[`3f85c7ac97`](https://github.com/nodejs/node/commit/3f85c7ac97)] - **test**: remove flaky designation (Luigi Pinca) [#&#8203;51736](https://github.com/nodejs/node/pull/51736) - \[[`f37648ee5c`](https://github.com/nodejs/node/commit/f37648ee5c)] - **test**: skip SEA tests when SEA generation fails (Joyee Cheung) [#&#8203;51887](https://github.com/nodejs/node/pull/51887) - \[[`136b6a998b`](https://github.com/nodejs/node/commit/136b6a998b)] - **test**: fix unreliable assumption in js-native-api/test_cannot_run_js (Joyee Cheung) [#&#8203;51898](https://github.com/nodejs/node/pull/51898) - \[[`d90594aefa`](https://github.com/nodejs/node/commit/d90594aefa)] - **test**: deflake test-http2-large-write-multiple-requests (Joyee Cheung) [#&#8203;51863](https://github.com/nodejs/node/pull/51863) - \[[`a0b36e33d1`](https://github.com/nodejs/node/commit/a0b36e33d1)] - **test**: fix test-debugger-profile for coverage generation (Joyee Cheung) [#&#8203;51816](https://github.com/nodejs/node/pull/51816) - \[[`dd0f164ca3`](https://github.com/nodejs/node/commit/dd0f164ca3)] - **test**: fix test-bootstrap-modules for coverage generation (Joyee Cheung) [#&#8203;51816](https://github.com/nodejs/node/pull/51816) - \[[`e4c7d62496`](https://github.com/nodejs/node/commit/e4c7d62496)] - **test**: ensure delay in recursive fs watch tests (Joyee Cheung) [#&#8203;51842](https://github.com/nodejs/node/pull/51842) - \[[`963d7d7dea`](https://github.com/nodejs/node/commit/963d7d7dea)] - **test**: fix test-child-process-fork-net (Joyee Cheung) [#&#8203;51841](https://github.com/nodejs/node/pull/51841) - \[[`dd708d337e`](https://github.com/nodejs/node/commit/dd708d337e)] - **test**: split wasi tests (Joyee Cheung) [#&#8203;51836](https://github.com/nodejs/node/pull/51836) - \[[`853b48d905`](https://github.com/nodejs/node/commit/853b48d905)] - **test**: remove test-fs-stat-bigint flaky designation (Luigi Pinca) [#&#8203;51735](https://github.com/nodejs/node/pull/51735) - \[[`fdc7d751de`](https://github.com/nodejs/node/commit/fdc7d751de)] - **test**: skip test-http-correct-hostname on loong64 (Shi Pujin) [#&#8203;51663](https://github.com/nodejs/node/pull/51663) - \[[`c33f860d2b`](https://github.com/nodejs/node/commit/c33f860d2b)] - **test**: remove test-cli-node-options flaky designation (Luigi Pinca) [#&#8203;51716](https://github.com/nodejs/node/pull/51716) - \[[`f528e965f6`](https://github.com/nodejs/node/commit/f528e965f6)] - **test**: remove test-domain-error-types flaky designation (Luigi Pinca) [#&#8203;51717](https://github.com/nodejs/node/pull/51717) - \[[`7e3ee828f1`](https://github.com/nodejs/node/commit/7e3ee828f1)] - **test**: fix `internet/test-inspector-help-page` (Richard Lau) [#&#8203;51693](https://github.com/nodejs/node/pull/51693) - \[[`170278c25d`](https://github.com/nodejs/node/commit/170278c25d)] - **test**: remove duplicate entry for flaky test (Luigi Pinca) [#&#8203;51654](https://github.com/nodejs/node/pull/51654) - \[[`d0d5bd0e54`](https://github.com/nodejs/node/commit/d0d5bd0e54)] - **test**: remove test-crypto-keygen flaky designation (Luigi Pinca) [#&#8203;51567](https://github.com/nodejs/node/pull/51567) - \[[`bca6dcca0b`](https://github.com/nodejs/node/commit/bca6dcca0b)] - **test**: remove test-fs-rmdir-recursive flaky designation (Luigi Pinca) [#&#8203;51566](https://github.com/nodejs/node/pull/51566) - \[[`af3f229d6b`](https://github.com/nodejs/node/commit/af3f229d6b)] - **test**: remove common.expectsError calls for asserts (Paulo Chaves) [#&#8203;51504](https://github.com/nodejs/node/pull/51504) - \[[`f6fcd200e6`](https://github.com/nodejs/node/commit/f6fcd200e6)] - **test**: mark test-http2-large-file as flaky (Michaël Zasso) [#&#8203;51549](https://github.com/nodejs/node/pull/51549) - \[[`1d8e65a230`](https://github.com/nodejs/node/commit/1d8e65a230)] - **test**: use checkIfCollectableByCounting in SourceTextModule leak test (Joyee Cheung) [#&#8203;51512](https://github.com/nodejs/node/pull/51512) - \[[`713afed6b0`](https://github.com/nodejs/node/commit/713afed6b0)] - **test**: remove test-file-write-stream4 flaky designation (Luigi Pinca) [#&#8203;51472](https://github.com/nodejs/node/pull/51472) - \[[`292d0174df`](https://github.com/nodejs/node/commit/292d0174df)] - **test**: add URL tests to fs-write (Rafael Gonzaga) [#&#8203;51352](https://github.com/nodejs/node/pull/51352) - \[[`954e2f2f58`](https://github.com/nodejs/node/commit/954e2f2f58)] - **test**: remove unneeded common.expectsError for asserts (Andrés Morelos) [#&#8203;51353](https://github.com/nodejs/node/pull/51353) - \[[`f2dfe0fa80`](https://github.com/nodejs/node/commit/f2dfe0fa80)] - **test**: add regression test for 51586 (Matteo Collina) [#&#8203;51491](https://github.com/nodejs/node/pull/51491) - \[[`6ee5f50789`](https://github.com/nodejs/node/commit/6ee5f50789)] - **test**: fix flaky conditions for ppc64 SEA tests (Richard Lau) [#&#8203;51422](https://github.com/nodejs/node/pull/51422) - \[[`06a6eef9a4`](https://github.com/nodejs/node/commit/06a6eef9a4)] - **test**: replace forEach() with for...of (Alexander Jones) [#&#8203;50608](https://github.com/nodejs/node/pull/50608) - \[[`a98102a6de`](https://github.com/nodejs/node/commit/a98102a6de)] - **test**: replace forEach with for...of (Ospite Privilegiato) [#&#8203;50787](https://github.com/nodejs/node/pull/50787) - \[[`e9080a94d3`](https://github.com/nodejs/node/commit/e9080a94d3)] - **test**: replace foreach with for of (lucacapocci94-dev) [#&#8203;50790](https://github.com/nodejs/node/pull/50790) - \[[`42b162b06d`](https://github.com/nodejs/node/commit/42b162b06d)] - **test**: replace forEach() with for...of (Jia) [#&#8203;50610](https://github.com/nodejs/node/pull/50610) - \[[`cab7737f7e`](https://github.com/nodejs/node/commit/cab7737f7e)] - **test**: fix inconsistency write size in `test-fs-readfile-tostring-fail` (Jungku Lee) [#&#8203;51141](https://github.com/nodejs/node/pull/51141) - \[[`15731b4b2f`](https://github.com/nodejs/node/commit/15731b4b2f)] - **test**: replace forEach test-http-server-multiheaders2 (Marco Mac) [#&#8203;50794](https://github.com/nodejs/node/pull/50794) - \[[`9cedaa62fa`](https://github.com/nodejs/node/commit/9cedaa62fa)] - **test**: replace forEach with for-of in test-webcrypto-export-import-ec (Chiara Ricciardi) [#&#8203;51249](https://github.com/nodejs/node/pull/51249) - \[[`7f301e04be`](https://github.com/nodejs/node/commit/7f301e04be)] - **test**: move to for of loop in test-http-hostname-typechecking.js (Luca Del Puppo) [#&#8203;50782](https://github.com/nodejs/node/pull/50782) - \[[`6e62e649df`](https://github.com/nodejs/node/commit/6e62e649df)] - **test**: skip test-watch-mode-inspect on arm (Michael Dawson) [#&#8203;51210](https://github.com/nodejs/node/pull/51210) - \[[`c3c2b2b041`](https://github.com/nodejs/node/commit/c3c2b2b041)] - **test**: replace forEach with for of in file test-trace-events-net.js (Ianna83) [#&#8203;50789](https://github.com/nodejs/node/pull/50789) - \[[`55c423ba4f`](https://github.com/nodejs/node/commit/55c423ba4f)] - **test**: replace forEach() with for...of in test/parallel/test-util-log.js (Edoardo Dusi) [#&#8203;50783](https://github.com/nodejs/node/pull/50783) - \[[`8ac05cf3c4`](https://github.com/nodejs/node/commit/8ac05cf3c4)] - **test**: replace forEach with for of in test-trace-events-api.js (Andrea Pavone) [#&#8203;50784](https://github.com/nodejs/node/pull/50784) - \[[`d10d39e8ba`](https://github.com/nodejs/node/commit/d10d39e8ba)] - **test**: replace forEach with for-of in test-v8-serders.js (Mattia Iannone) [#&#8203;50791](https://github.com/nodejs/node/pull/50791) - \[[`576adc5e5b`](https://github.com/nodejs/node/commit/576adc5e5b)] - **test**: add URL tests to fs-read in pm (Rafael Gonzaga) [#&#8203;51213](https://github.com/nodejs/node/pull/51213) - \[[`996cef51b7`](https://github.com/nodejs/node/commit/996cef51b7)] - **test**: use tmpdir.refresh() in test-esm-loader-resolve-type.mjs (Luigi Pinca) [#&#8203;51206](https://github.com/nodejs/node/pull/51206) - \[[`8f2d982342`](https://github.com/nodejs/node/commit/8f2d982342)] - **test**: use tmpdir.refresh() in test-esm-json.mjs (Luigi Pinca) [#&#8203;51205](https://github.com/nodejs/node/pull/51205) - \[[`efd6630143`](https://github.com/nodejs/node/commit/efd6630143)] - **test**: fix flakiness in worker\*.test-free-called (Jithil P Ponnan) [#&#8203;51013](https://github.com/nodejs/node/pull/51013) - \[[`54a29ee506`](https://github.com/nodejs/node/commit/54a29ee506)] - **test**: deflake test-diagnostics-channel-memory-leak (Joyee Cheung) [#&#8203;50572](https://github.com/nodejs/node/pull/50572) - \[[`6319ea6183`](https://github.com/nodejs/node/commit/6319ea6183)] - **test**: test syncrhnous methods of child_process in snapshot (Joyee Cheung) [#&#8203;50943](https://github.com/nodejs/node/pull/50943) - \[[`50df4aee2b`](https://github.com/nodejs/node/commit/50df4aee2b)] - **test**: handle relative https redirect (Richard Lau) [#&#8203;51121](https://github.com/nodejs/node/pull/51121) - \[[`9f88f40cae`](https://github.com/nodejs/node/commit/9f88f40cae)] - **test**: fix test runner colored output test (Moshe Atlow) [#&#8203;51064](https://github.com/nodejs/node/pull/51064) - \[[`a1feae24cb`](https://github.com/nodejs/node/commit/a1feae24cb)] - **test**: resolve path of embedtest binary correctly (Cheng Zhao) [#&#8203;50276](https://github.com/nodejs/node/pull/50276) - \[[`a4f1805c92`](https://github.com/nodejs/node/commit/a4f1805c92)] - **test**: escape cwd in regexp (Jérémy Lal) [#&#8203;50980](https://github.com/nodejs/node/pull/50980) - \[[`1c28db8116`](https://github.com/nodejs/node/commit/1c28db8116)] - **test**: replace forEach to for.. test-webcrypto-export-import-cfrg.js (Angelo Parziale) [#&#8203;50785](https://github.com/nodejs/node/pull/50785) - \[[`a4f505213e`](https://github.com/nodejs/node/commit/a4f505213e)] - **test**: log more information in SEA tests (Joyee Cheung) [#&#8203;50759](https://github.com/nodejs/node/pull/50759) - \[[`c91b817a5c`](https://github.com/nodejs/node/commit/c91b817a5c)] - **test**: consolidate utf8 text fixtures in tests (Joyee Cheung) [#&#8203;50732](https://github.com/nodejs/node/pull/50732) - \[[`26a06b093b`](https://github.com/nodejs/node/commit/26a06b093b)] - **test**: give more time to GC in test-shadow-realm-gc-\* (Joyee Cheung) [#&#8203;50735](https://github.com/nodejs/node/pull/50735) - \[[`e8f5735149`](https://github.com/nodejs/node/commit/e8f5735149)] - **test**: test surrogate pair filenames on windows (Mert Can Altın) [#&#8203;51800](https://github.com/nodejs/node/pull/51800) - \[[`1ab9ff46a5`](https://github.com/nodejs/node/commit/1ab9ff46a5)] - **test**: mark test-wasi as flaky on Windows on ARM (Joyee Cheung) [#&#8203;51834](https://github.com/nodejs/node/pull/51834) - \[[`1c47da1453`](https://github.com/nodejs/node/commit/1c47da1453)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;51533](https://github.com/nodejs/node/pull/51533) - \[[`91c8624608`](https://github.com/nodejs/node/commit/91c8624608)] - **test_runner**: serialize 'expected' and 'actual' in isolation (Malthe Borch) [#&#8203;51851](https://github.com/nodejs/node/pull/51851) - \[[`cea90dcfe3`](https://github.com/nodejs/node/commit/cea90dcfe3)] - **test_runner**: add ref methods to mocked timers (Marco Ippolito) [#&#8203;51809](https://github.com/nodejs/node/pull/51809) - \[[`9ff0df1793`](https://github.com/nodejs/node/commit/9ff0df1793)] - **test_runner**: check if timeout was cleared by own callback (Ben Richeson) [#&#8203;51673](https://github.com/nodejs/node/pull/51673) - \[[`34ecd1e36b`](https://github.com/nodejs/node/commit/34ecd1e36b)] - **test_runner**: fixed test object is incorrectly passed to setup() (Pulkit Gupta) [#&#8203;50982](https://github.com/nodejs/node/pull/50982) - \[[`da17a2538e`](https://github.com/nodejs/node/commit/da17a2538e)] - **test_runner**: fixed to run after hook if before throws an error (Pulkit Gupta) [#&#8203;51062](https://github.com/nodejs/node/pull/51062) - \[[`b8f0ea6f60`](https://github.com/nodejs/node/commit/b8f0ea6f60)] - **test_runner**: fix infinite loop when files are undefined in test runner (Pulkit Gupta) [#&#8203;51047](https://github.com/nodejs/node/pull/51047) - \[[`fe922f05e4`](https://github.com/nodejs/node/commit/fe922f05e4)] - **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito) [#&#8203;51246](https://github.com/nodejs/node/pull/51246) - \[[`f4ac7baf85`](https://github.com/nodejs/node/commit/f4ac7baf85)] - **tools**: fix installing node with shared mode (Cheng Zhao) [#&#8203;51910](https://github.com/nodejs/node/pull/51910) - \[[`f07605fa7b`](https://github.com/nodejs/node/commit/f07605fa7b)] - **tools**: update eslint to 8.57.0 (Node.js GitHub Bot) [#&#8203;51867](https://github.com/nodejs/node/pull/51867) - \[[`d16b235fca`](https://github.com/nodejs/node/commit/d16b235fca)] - **tools**: update lint-md-dependencies to rollup@4.12.0 (Node.js GitHub Bot) [#&#8203;51795](https://github.com/nodejs/node/pull/51795) - \[[`d27e811a01`](https://github.com/nodejs/node/commit/d27e811a01)] - **tools**: fix missing \[\[fallthrough]] in js2c (Cheng Zhao) [#&#8203;51845](https://github.com/nodejs/node/pull/51845) - \[[`7eb69308da`](https://github.com/nodejs/node/commit/7eb69308da)] - **tools**: disable automated libuv updates (Rafael Gonzaga) [#&#8203;51775](https://github.com/nodejs/node/pull/51775) - \[[`1f15af425c`](https://github.com/nodejs/node/commit/1f15af425c)] - **tools**: update lint-md-dependencies to rollup@4.10.0 (Node.js GitHub Bot) [#&#8203;51720](https://github.com/nodejs/node/pull/51720) - \[[`c7ae13e6bc`](https://github.com/nodejs/node/commit/c7ae13e6bc)] - **tools**: update github_reporter to 1.6.0 (Node.js GitHub Bot) [#&#8203;51658](https://github.com/nodejs/node/pull/51658) - \[[`0fb079bd85`](https://github.com/nodejs/node/commit/0fb079bd85)] - **tools**: run `build-windows` workflow only on source changes (Antoine du Hamel) [#&#8203;51596](https://github.com/nodejs/node/pull/51596) - \[[`c2538e31fa`](https://github.com/nodejs/node/commit/c2538e31fa)] - **tools**: update lint-md-dependencies to rollup@4.9.6 (Node.js GitHub Bot) [#&#8203;51583](https://github.com/nodejs/node/pull/51583) - \[[`e02dbf074b`](https://github.com/nodejs/node/commit/e02dbf074b)] - **tools**: fix loong64 build (Shi Pujin) [#&#8203;51401](https://github.com/nodejs/node/pull/51401) - \[[`ce49cb6656`](https://github.com/nodejs/node/commit/ce49cb6656)] - **tools**: set normalizeTD text default to empty string (Marco Ippolito) [#&#8203;51543](https://github.com/nodejs/node/pull/51543) - \[[`e8dc5ac552`](https://github.com/nodejs/node/commit/e8dc5ac552)] - **tools**: limit parallelism with ninja in V8 builds (Richard Lau) [#&#8203;51473](https://github.com/nodejs/node/pull/51473) - \[[`97470b179b`](https://github.com/nodejs/node/commit/97470b179b)] - **tools**: do not pass invalid flag to C compiler (Michaël Zasso) [#&#8203;51409](https://github.com/nodejs/node/pull/51409) - \[[`59af1d7923`](https://github.com/nodejs/node/commit/59af1d7923)] - **tools**: update lint-md-dependencies to rollup@4.9.5 (Node.js GitHub Bot) [#&#8203;51460](https://github.com/nodejs/node/pull/51460) - \[[`6385c7ad57`](https://github.com/nodejs/node/commit/6385c7ad57)] - **tools**: update inspector_protocol to [`83b1154`](https://github.com/nodejs/node/commit/83b1154) (Kohei Ueno) [#&#8203;51309](https://github.com/nodejs/node/pull/51309) - \[[`5235aaf299`](https://github.com/nodejs/node/commit/5235aaf299)] - **tools**: update github_reporter to 1.5.4 (Node.js GitHub Bot) [#&#8203;51395](https://github.com/nodejs/node/pull/51395) - \[[`4ce2ecb1ce`](https://github.com/nodejs/node/commit/4ce2ecb1ce)] - **tools**: fix version parsing in brotli update script (Richard Lau) [#&#8203;51373](https://github.com/nodejs/node/pull/51373) - \[[`86102078f5`](https://github.com/nodejs/node/commit/86102078f5)] - **tools**: update lint-md-dependencies to rollup@4.9.4 (Node.js GitHub Bot) [#&#8203;51396](https://github.com/nodejs/node/pull/51396) - \[[`e658208159`](https://github.com/nodejs/node/commit/e658208159)] - **tools**: remove openssl v1 update script (Marco Ippolito) [#&#8203;51378](https://github.com/nodejs/node/pull/51378) - \[[`4372f6a5b8`](https://github.com/nodejs/node/commit/4372f6a5b8)] - **tools**: remove deprecated python api (Alex Yang) [#&#8203;49731](https://github.com/nodejs/node/pull/49731) - \[[`2b24059e53`](https://github.com/nodejs/node/commit/2b24059e53)] - **tools**: update lint-md-dependencies to rollup@4.9.2 (Node.js GitHub Bot) [#&#8203;51320](https://github.com/nodejs/node/pull/51320) - \[[`1da2e8d15e`](https://github.com/nodejs/node/commit/1da2e8d15e)] - **tools**: fix dep_updaters dir updates (Michaël Zasso) [#&#8203;51294](https://github.com/nodejs/node/pull/51294) - \[[`b264dda7f2`](https://github.com/nodejs/node/commit/b264dda7f2)] - **tools**: update inspector_protocol to [`c488ba2`](https://github.com/nodejs/node/commit/c488ba2) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`fdb07d5418`](https://github.com/nodejs/node/commit/fdb07d5418)] - **tools**: update inspector_protocol to [`9b4a4aa`](https://github.com/nodejs/node/commit/9b4a4aa) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`6863fb84a6`](https://github.com/nodejs/node/commit/6863fb84a6)] - **tools**: update inspector_protocol to [`2f51e05`](https://github.com/nodejs/node/commit/2f51e05) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`6b85f5c6e0`](https://github.com/nodejs/node/commit/6b85f5c6e0)] - **tools**: update inspector_protocol to [`d7b099b`](https://github.com/nodejs/node/commit/d7b099b) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`cf029ca24f`](https://github.com/nodejs/node/commit/cf029ca24f)] - **tools**: update inspector_protocol to [`912eb68`](https://github.com/nodejs/node/commit/912eb68) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`af119447f5`](https://github.com/nodejs/node/commit/af119447f5)] - **tools**: update inspector_protocol to [`547c5b8`](https://github.com/nodejs/node/commit/547c5b8) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`5a72506823`](https://github.com/nodejs/node/commit/5a72506823)] - **tools**: update inspector_protocol to [`ca525fc`](https://github.com/nodejs/node/commit/ca525fc) (cola119) [#&#8203;51293](https://github.com/nodejs/node/pull/51293) - \[[`c7aa3976f9`](https://github.com/nodejs/node/commit/c7aa3976f9)] - **tools**: update lint-md-dependencies to rollup@4.9.1 (Node.js GitHub Bot) [#&#8203;51276](https://github.com/nodejs/node/pull/51276) - \[[`8e02d08a82`](https://github.com/nodejs/node/commit/8e02d08a82)] - **tools**: check timezone current version (Marco Ippolito) [#&#8203;51178](https://github.com/nodejs/node/pull/51178) - \[[`fa1e88775d`](https://github.com/nodejs/node/commit/fa1e88775d)] - **tools**: update lint-md-dependencies to rollup@4.9.0 (Node.js GitHub Bot) [#&#8203;51193](https://github.com/nodejs/node/pull/51193) - \[[`04c0bf9cc5`](https://github.com/nodejs/node/commit/04c0bf9cc5)] - **tools**: update eslint to 8.56.0 (Node.js GitHub Bot) [#&#8203;51194](https://github.com/nodejs/node/pull/51194) - \[[`e896cbd0d5`](https://github.com/nodejs/node/commit/e896cbd0d5)] - **tools**: update lint-md-dependencies to rollup@4.7.0 (Node.js GitHub Bot) [#&#8203;51106](https://github.com/nodejs/node/pull/51106) - \[[`c7350c2083`](https://github.com/nodejs/node/commit/c7350c2083)] - **tools**: update doc to highlight.js@11.9.0 unified@11.0.4 (Node.js GitHub Bot) [#&#8203;50459](https://github.com/nodejs/node/pull/50459) - \[[`00dfabf8fb`](https://github.com/nodejs/node/commit/00dfabf8fb)] - **tools**: update eslint to 8.55.0 (Node.js GitHub Bot) [#&#8203;51025](https://github.com/nodejs/node/pull/51025) - \[[`f91d56157b`](https://github.com/nodejs/node/commit/f91d56157b)] - **tools**: update lint-md-dependencies to rollup@4.6.1 (Node.js GitHub Bot) [#&#8203;51022](https://github.com/nodejs/node/pull/51022) - \[[`450163cf9b`](https://github.com/nodejs/node/commit/450163cf9b)] - **tools**: add triggers to update release links workflow (Moshe Atlow) [#&#8203;50974](https://github.com/nodejs/node/pull/50974) - \[[`b1442024ea`](https://github.com/nodejs/node/commit/b1442024ea)] - **tools**: update lint-md-dependencies to rollup@4.5.2 (Node.js GitHub Bot) [#&#8203;50913](https://github.com/nodejs/node/pull/50913) - \[[`6fc6a62daf`](https://github.com/nodejs/node/commit/6fc6a62daf)] - **tools**: fix current version check (Marco Ippolito) [#&#8203;50951](https://github.com/nodejs/node/pull/50951) - \[[`bc6bdda8b1`](https://github.com/nodejs/node/commit/bc6bdda8b1)] - **tools**: fix update-icu.sh (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723) - \[[`a7a4cce75d`](https://github.com/nodejs/node/commit/a7a4cce75d)] - **typings**: lib/internal/vm.js (Geoffrey Booth) [#&#8203;50112](https://github.com/nodejs/node/pull/50112) - \[[`6375540507`](https://github.com/nodejs/node/commit/6375540507)] - **typings**: fix JSDoc in `internal/modules/esm/hooks` (Alex Yang) [#&#8203;50887](https://github.com/nodejs/node/pull/50887) - \[[`4bc8e98d7c`](https://github.com/nodejs/node/commit/4bc8e98d7c)] - **url**: don't update URL immediately on update to URLSearchParams (Matt Cowley) [#&#8203;51520](https://github.com/nodejs/node/pull/51520) - \[[`2acbcbd8ad`](https://github.com/nodejs/node/commit/2acbcbd8ad)] - **url**: throw error if argument length of revokeObjectURL is 0 (DylanTet) [#&#8203;50433](https://github.com/nodejs/node/pull/50433) - \[[`c50134615e`](https://github.com/nodejs/node/commit/c50134615e)] - **(SEMVER-MINOR)** **util**: add styleText API to text formatting (Rafael Gonzaga) [#&#8203;51850](https://github.com/nodejs/node/pull/51850) - \[[`f79ac336ad`](https://github.com/nodejs/node/commit/f79ac336ad)] - **util**: pass invalidSubtypeIndex instead of trimmedSubtype to error (Gaurish Sethia) [#&#8203;51264](https://github.com/nodejs/node/pull/51264) - \[[`c3b89c310f`](https://github.com/nodejs/node/commit/c3b89c310f)] - **util**: improve performance of function areSimilarFloatArrays (Liu Jia) [#&#8203;51040](https://github.com/nodejs/node/pull/51040) - \[[`5202995b48`](https://github.com/nodejs/node/commit/5202995b48)] - **vm**: implement isContext() directly in JS land with private symbol (Joyee Cheung) [#&#8203;51685](https://github.com/nodejs/node/pull/51685) - \[[`0211a3d65f`](https://github.com/nodejs/node/commit/0211a3d65f)] - **(SEMVER-MINOR)** **vm**: support using the default loader to handle dynamic import() (Joyee Cheung) [#&#8203;51244](https://github.com/nodejs/node/pull/51244) - \[[`07fc077c5d`](https://github.com/nodejs/node/commit/07fc077c5d)] - **vm**: use v8::DeserializeInternalFieldsCallback explicitly (Joyee Cheung) [#&#8203;50984](https://github.com/nodejs/node/pull/50984) - \[[`5183e3a4b1`](https://github.com/nodejs/node/commit/5183e3a4b1)] - **watch**: clarify that the fileName parameter can be null (Luigi Pinca) [#&#8203;51305](https://github.com/nodejs/node/pull/51305) - \[[`63bf8a66df`](https://github.com/nodejs/node/commit/63bf8a66df)] - **watch**: fix null `fileName` on windows systems (vnc5) [#&#8203;49891](https://github.com/nodejs/node/pull/49891) - \[[`07da4e9b58`](https://github.com/nodejs/node/commit/07da4e9b58)] - **watch**: fix infinite loop when passing --watch=true flag (Pulkit Gupta) [#&#8203;51160](https://github.com/nodejs/node/pull/51160) ### [`v20.11.1`](https://github.com/nodejs/node/releases/tag/v20.11.1): 2024-02-14, Version 20.11.1 &#x27;Iron&#x27; (LTS), @&#8203;RafaelGSS prepared by @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.11.0...v20.11.1) ##### Notable changes This is a security release. ##### Notable changes - CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High) - CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High) - CVE-2024-21896 - Path traversal by monkey-patching Buffer internals- (High) - CVE-2024-22017 - setuid() does not drop all privileges due to io_uring - (High) - CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against [PKCS#1](https://github.com/PKCS/node/issues/1) v1.5 padding) - (Medium) - CVE-2024-21891 - Multiple permission model bypasses due to improper path traversal sequence sanitization - (Medium) - CVE-2024-21890 - Improper handling of wildcards in --allow-fs-read and --allow-fs-write (Medium) - CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium) - undici version 5.28.3 - libuv version 1.48.0 - OpenSSL version 3.0.13+quic1 ##### Commits - \[[`7079c062bb`](https://github.com/nodejs/node/commit/7079c062bb)] - **crypto**: disable [PKCS#1](https://github.com/PKCS/node/issues/1) padding for privateDecrypt (Michael Dawson) [nodejs-private/node-private#525](https://github.com/nodejs-private/node-private/pull/525) - \[[`186a6e1ffb`](https://github.com/nodejs/node/commit/186a6e1ffb)] - **deps**: fix GHSA-f74f-cvh7-c6q6/CVE-2024-24806 (Santiago Gimeno) [#&#8203;51737](https://github.com/nodejs/node/pull/51737) - \[[`686da19abb`](https://github.com/nodejs/node/commit/686da19abb)] - **deps**: disable io_uring support in libuv by default (Tobias Nießen) [nodejs-private/node-private#529](https://github.com/nodejs-private/node-private/pull/529) - \[[`f7b44bfbce`](https://github.com/nodejs/node/commit/f7b44bfbce)] - **deps**: update archs files for openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614) - \[[`7a30fecea2`](https://github.com/nodejs/node/commit/7a30fecea2)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614) - \[[`480fc169a8`](https://github.com/nodejs/node/commit/480fc169a8)] - **fs**: protect against modified Buffer internals in possiblyTransformPath (Tobias Nießen) [nodejs-private/node-private#497](https://github.com/nodejs-private/node-private/pull/497) - \[[`77ac7c3153`](https://github.com/nodejs/node/commit/77ac7c3153)] - **http**: add maximum chunk extension size (Paolo Insogna) [nodejs-private/node-private#519](https://github.com/nodejs-private/node-private/pull/519) - \[[`ed7d149675`](https://github.com/nodejs/node/commit/ed7d149675)] - **lib**: use cache fs internals against path traversal (RafaelGSS) [nodejs-private/node-private#516](https://github.com/nodejs-private/node-private/pull/516) - \[[`89bd5fc38f`](https://github.com/nodejs/node/commit/89bd5fc38f)] - **lib**: update undici to v5.28.3 (Matteo Collina) [nodejs-private/node-private#539](https://github.com/nodejs-private/node-private/pull/539) - \[[`d01dd4291d`](https://github.com/nodejs/node/commit/d01dd4291d)] - **permission**: fix wildcard when children > 1 (Rafael Gonzaga) [#&#8203;51209](https://github.com/nodejs/node/pull/51209) - \[[`40ff37dfcc`](https://github.com/nodejs/node/commit/40ff37dfcc)] - **src**: fix HasOnly(capability) in node::credentials (Tobias Nießen) [nodejs-private/node-private#505](https://github.com/nodejs-private/node-private/pull/505) - \[[`3f6addd590`](https://github.com/nodejs/node/commit/3f6addd590)] - **src,deps**: disable setuid() etc if io_uring enabled (Tobias Nießen) [nodejs-private/node-private#529](https://github.com/nodejs-private/node-private/pull/529) - \[[`d6da413aa4`](https://github.com/nodejs/node/commit/d6da413aa4)] - **test,doc**: clarify wildcard usage (RafaelGSS) [nodejs-private/node-private#517](https://github.com/nodejs-private/node-private/pull/517) - \[[`c213910aea`](https://github.com/nodejs/node/commit/c213910aea)] - **zlib**: pause stream if outgoing buffer is full (Matteo Collina) [nodejs-private/node-private#541](https://github.com/nodejs-private/node-private/pull/541) ### [`v20.11.0`](https://github.com/nodejs/node/releases/tag/v20.11.0): 2024-01-09, Version 20.11.0 &#x27;Iron&#x27; (LTS), @&#8203;UlisesGascon [Compare Source](https://github.com/nodejs/node/compare/v20.10.0...v20.11.0) ##### Notable Changes - \[[`833190fe7c`](https://github.com/nodejs/node/commit/833190fe7c)] - **crypto**: update root certificates to NSS 3.95 (Node.js GitHub Bot) [#&#8203;50805](https://github.com/nodejs/node/pull/50805) - \[[`a541b78bdb`](https://github.com/nodejs/node/commit/a541b78bdb)] - **doc**: add MrJithil to collaborators (Jithil P Ponnan) [#&#8203;50666](https://github.com/nodejs/node/pull/50666) - \[[`d4be8fad83`](https://github.com/nodejs/node/commit/d4be8fad83)] - **doc**: add Ethan-Arrowood as a collaborator (Ethan Arrowood) [#&#8203;50393](https://github.com/nodejs/node/pull/50393) - \[[`c1a196c897`](https://github.com/nodejs/node/commit/c1a196c897)] - **(SEMVER-MINOR)** **esm**: add import.meta.dirname and import.meta.filename (James Sumners) [#&#8203;48740](https://github.com/nodejs/node/pull/48740) - \[[`aa3209b880`](https://github.com/nodejs/node/commit/aa3209b880)] - **fs**: add c++ fast path for writeFileSync utf8 (CanadaHonk) [#&#8203;49884](https://github.com/nodejs/node/pull/49884) - \[[`8e886a2fff`](https://github.com/nodejs/node/commit/8e886a2fff)] - **(SEMVER-MINOR)** **module**: remove useCustomLoadersIfPresent flag (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`21ab3c0f0b`](https://github.com/nodejs/node/commit/21ab3c0f0b)] - **(SEMVER-MINOR)** **module**: bootstrap module loaders in shadow realm (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`29d91b13e3`](https://github.com/nodejs/node/commit/29d91b13e3)] - **(SEMVER-MINOR)** **src**: add `--disable-warning` option (Ethan Arrowood) [#&#8203;50661](https://github.com/nodejs/node/pull/50661) - \[[`11b3e470db`](https://github.com/nodejs/node/commit/11b3e470db)] - **(SEMVER-MINOR)** **src**: create per isolate proxy env template (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`621c4d66c2`](https://github.com/nodejs/node/commit/621c4d66c2)] - **(SEMVER-MINOR)** **src**: make process binding data weak (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`139d6c8d3b`](https://github.com/nodejs/node/commit/139d6c8d3b)] - **stream**: use Array for Readable buffer (Robert Nagy) [#&#8203;50341](https://github.com/nodejs/node/pull/50341) - \[[`6206957e8d`](https://github.com/nodejs/node/commit/6206957e8d)] - **stream**: optimize creation (Robert Nagy) [#&#8203;50337](https://github.com/nodejs/node/pull/50337) - \[[`e64378643d`](https://github.com/nodejs/node/commit/e64378643d)] - **(SEMVER-MINOR)** **test_runner**: adds built in lcov reporter (Phil Nash) [#&#8203;50018](https://github.com/nodejs/node/pull/50018) - \[[`4a830c2d9d`](https://github.com/nodejs/node/commit/4a830c2d9d)] - **(SEMVER-MINOR)** **test_runner**: add Date to the supported mock APIs (Lucas Santos) [#&#8203;48638](https://github.com/nodejs/node/pull/48638) - \[[`842dc01def`](https://github.com/nodejs/node/commit/842dc01def)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-timeout flag (Shubham Pandey) [#&#8203;50443](https://github.com/nodejs/node/pull/50443) ##### Commits - \[[`e40a559ab1`](https://github.com/nodejs/node/commit/e40a559ab1)] - **benchmark**: update iterations in benchmark/util/splice-one.js (Liu Jia) [#&#8203;50698](https://github.com/nodejs/node/pull/50698) - \[[`00f7a5d26f`](https://github.com/nodejs/node/commit/00f7a5d26f)] - **benchmark**: increase the iteration number to an appropriate value (Lei Shi) [#&#8203;50766](https://github.com/nodejs/node/pull/50766) - \[[`be6ad3f375`](https://github.com/nodejs/node/commit/be6ad3f375)] - **benchmark**: rewrite import.meta benchmark (Joyee Cheung) [#&#8203;50683](https://github.com/nodejs/node/pull/50683) - \[[`9857364129`](https://github.com/nodejs/node/commit/9857364129)] - **benchmark**: add misc/startup-cli-version benchmark (Joyee Cheung) [#&#8203;50684](https://github.com/nodejs/node/pull/50684) - \[[`22d729e7f5`](https://github.com/nodejs/node/commit/22d729e7f5)] - **benchmark**: remove punycode from require-builtins fixture (Joyee Cheung) [#&#8203;50689](https://github.com/nodejs/node/pull/50689) - \[[`4cf10a149a`](https://github.com/nodejs/node/commit/4cf10a149a)] - **benchmark**: change iterations in benchmark/es/string-concatenations.js (Liu Jia) [#&#8203;50585](https://github.com/nodejs/node/pull/50585) - \[[`15c2ed93a8`](https://github.com/nodejs/node/commit/15c2ed93a8)] - **benchmark**: add benchmarks for encodings (Aras Abbasi) [#&#8203;50348](https://github.com/nodejs/node/pull/50348) - \[[`8a896428ca`](https://github.com/nodejs/node/commit/8a896428ca)] - **benchmark**: add more cases to Readable.from (Raz Luvaton) [#&#8203;50351](https://github.com/nodejs/node/pull/50351) - \[[`dbe6c5f354`](https://github.com/nodejs/node/commit/dbe6c5f354)] - **benchmark**: skip test-benchmark-os on IBMi (Michael Dawson) [#&#8203;50286](https://github.com/nodejs/node/pull/50286) - \[[`179b4b6e62`](https://github.com/nodejs/node/commit/179b4b6e62)] - **benchmark**: move permission-fs-read to permission-processhas-fs-read (Aki Hasegawa-Johnson) [#&#8203;49770](https://github.com/nodejs/node/pull/49770) - \[[`32d65c001d`](https://github.com/nodejs/node/commit/32d65c001d)] - **buffer**: improve Buffer.equals performance (kylo5aby) [#&#8203;50621](https://github.com/nodejs/node/pull/50621) - \[[`80ea83757e`](https://github.com/nodejs/node/commit/80ea83757e)] - **build**: add GN configurations for simdjson (Cheng Zhao) [#&#8203;50831](https://github.com/nodejs/node/pull/50831) - \[[`904e645bcd`](https://github.com/nodejs/node/commit/904e645bcd)] - **build**: add configuration flag to enable Maglev (Keyhan Vakil) [#&#8203;50692](https://github.com/nodejs/node/pull/50692) - \[[`019efa8a5a`](https://github.com/nodejs/node/commit/019efa8a5a)] - **build**: fix GN configuration for deps/base64 (Cheng Zhao) [#&#8203;50696](https://github.com/nodejs/node/pull/50696) - \[[`a645d5ac54`](https://github.com/nodejs/node/commit/a645d5ac54)] - **build**: disable flag v8\_scriptormodule_legacy_lifetime (Chengzhong Wu) [#&#8203;50616](https://github.com/nodejs/node/pull/50616) - \[[`8705058b09`](https://github.com/nodejs/node/commit/8705058b09)] - **build**: add GN build files (Cheng Zhao) [#&#8203;47637](https://github.com/nodejs/node/pull/47637) - \[[`0a5e9c12cf`](https://github.com/nodejs/node/commit/0a5e9c12cf)] - **build**: fix build with Python 3.12 (Luigi Pinca) [#&#8203;50582](https://github.com/nodejs/node/pull/50582) - \[[`ff5713dd43`](https://github.com/nodejs/node/commit/ff5713dd43)] - **build**: support Python 3.12 (Shi Pujin) [#&#8203;50209](https://github.com/nodejs/node/pull/50209) - \[[`cfd50f229a`](https://github.com/nodejs/node/commit/cfd50f229a)] - **build**: fix building when there is only python3 (Cheng Zhao) [#&#8203;48462](https://github.com/nodejs/node/pull/48462) - \[[`833190fe7c`](https://github.com/nodejs/node/commit/833190fe7c)] - **crypto**: update root certificates to NSS 3.95 (Node.js GitHub Bot) [#&#8203;50805](https://github.com/nodejs/node/pull/50805) - \[[`54c46dae9e`](https://github.com/nodejs/node/commit/54c46dae9e)] - **deps**: update zlib to 1.2.13.1-motley-5daffc7 (Node.js GitHub Bot) [#&#8203;50803](https://github.com/nodejs/node/pull/50803) - \[[`0be84e5a28`](https://github.com/nodejs/node/commit/0be84e5a28)] - **deps**: update undici to 5.27.2 (Node.js GitHub Bot) [#&#8203;50813](https://github.com/nodejs/node/pull/50813) - \[[`ec67890824`](https://github.com/nodejs/node/commit/ec67890824)] - **deps**: V8: cherry-pick [`0f9ebbc`](https://github.com/nodejs/node/commit/0f9ebbc672c7) (Chengzhong Wu) [#&#8203;50867](https://github.com/nodejs/node/pull/50867) - \[[`bc2ebb972b`](https://github.com/nodejs/node/commit/bc2ebb972b)] - **deps**: V8: cherry-pick [`13192d6`](https://github.com/nodejs/node/commit/13192d6e10fa) (Levi Zim) [#&#8203;50552](https://github.com/nodejs/node/pull/50552) - \[[`656135d70a`](https://github.com/nodejs/node/commit/656135d70a)] - **deps**: update zlib to 1.2.13.1-motley-dfc48fc (Node.js GitHub Bot) [#&#8203;50456](https://github.com/nodejs/node/pull/50456) - \[[`41ee4bcc5d`](https://github.com/nodejs/node/commit/41ee4bcc5d)] - **deps**: update ada to 2.7.4 (Node.js GitHub Bot) [#&#8203;50815](https://github.com/nodejs/node/pull/50815) - \[[`a40948b5c5`](https://github.com/nodejs/node/commit/a40948b5c5)] - **deps**: update minimatch to 9.0.3 (Node.js GitHub Bot) [#&#8203;50806](https://github.com/nodejs/node/pull/50806) - \[[`7be1222c4a`](https://github.com/nodejs/node/commit/7be1222c4a)] - **deps**: update simdutf to 4.0.4 (Node.js GitHub Bot) [#&#8203;50772](https://github.com/nodejs/node/pull/50772) - \[[`68e7d49db6`](https://github.com/nodejs/node/commit/68e7d49db6)] - **deps**: upgrade npm to 10.2.4 (npm team) [#&#8203;50751](https://github.com/nodejs/node/pull/50751) - \[[`3d82d38336`](https://github.com/nodejs/node/commit/3d82d38336)] - **deps**: escape Python strings correctly (Michaël Zasso) [#&#8203;50695](https://github.com/nodejs/node/pull/50695) - \[[`d3870ac957`](https://github.com/nodejs/node/commit/d3870ac957)] - **deps**: update base64 to 0.5.1 (Node.js GitHub Bot) [#&#8203;50629](https://github.com/nodejs/node/pull/50629) - \[[`4b219b6ece`](https://github.com/nodejs/node/commit/4b219b6ece)] - **deps**: update corepack to 0.23.0 (Node.js GitHub Bot) [#&#8203;50563](https://github.com/nodejs/node/pull/50563) - \[[`6c41b50922`](https://github.com/nodejs/node/commit/6c41b50922)] - **deps**: update nghttp2 to 1.58.0 (Node.js GitHub Bot) [#&#8203;50441](https://github.com/nodejs/node/pull/50441) - \[[`3beee0ae8f`](https://github.com/nodejs/node/commit/3beee0ae8f)] - **deps**: update acorn to 8.11.2 (Node.js GitHub Bot) [#&#8203;50460](https://github.com/nodejs/node/pull/50460) - \[[`220916fa93`](https://github.com/nodejs/node/commit/220916fa93)] - **deps**: update undici to 5.27.0 (Node.js GitHub Bot) [#&#8203;50463](https://github.com/nodejs/node/pull/50463) - \[[`f9960b3545`](https://github.com/nodejs/node/commit/f9960b3545)] - **deps**: update googletest to [`116b7e5`](https://github.com/nodejs/node/commit/116b7e5) (Node.js GitHub Bot) [#&#8203;50324](https://github.com/nodejs/node/pull/50324) - \[[`d5c16f897a`](https://github.com/nodejs/node/commit/d5c16f897a)] - **dns**: call handle.setServers() with a valid array (Luigi Pinca) [#&#8203;50811](https://github.com/nodejs/node/pull/50811) - \[[`1bd6537c97`](https://github.com/nodejs/node/commit/1bd6537c97)] - **doc**: recommend supported Python versions (Luigi Pinca) [#&#8203;50407](https://github.com/nodejs/node/pull/50407) - \[[`402e257520`](https://github.com/nodejs/node/commit/402e257520)] - **doc**: update notable changes in v21.1.0 (Joyee Cheung) [#&#8203;50388](https://github.com/nodejs/node/pull/50388) - \[[`032535e270`](https://github.com/nodejs/node/commit/032535e270)] - **doc**: make theme consistent across api and other docs (Dima Demakov) [#&#8203;50877](https://github.com/nodejs/node/pull/50877) - \[[`d53842683f`](https://github.com/nodejs/node/commit/d53842683f)] - **doc**: add a section regarding `instanceof` in `primordials.md` (Antoine du Hamel) [#&#8203;50874](https://github.com/nodejs/node/pull/50874) - \[[`fe315055a7`](https://github.com/nodejs/node/commit/fe315055a7)] - **doc**: update email to reflect affiliation (Yagiz Nizipli) [#&#8203;50856](https://github.com/nodejs/node/pull/50856) - \[[`e14f661950`](https://github.com/nodejs/node/commit/e14f661950)] - **doc**: shard not supported with watch mode (Pulkit Gupta) [#&#8203;50640](https://github.com/nodejs/node/pull/50640) - \[[`b3d015de71`](https://github.com/nodejs/node/commit/b3d015de71)] - **doc**: get rid of unnecessary `eslint-skip` comments (Antoine du Hamel) [#&#8203;50829](https://github.com/nodejs/node/pull/50829) - \[[`168cbf9cb9`](https://github.com/nodejs/node/commit/168cbf9cb9)] - **doc**: create deprecation code for isWebAssemblyCompiledModule (Marco Ippolito) [#&#8203;50486](https://github.com/nodejs/node/pull/50486) - \[[`30baacba41`](https://github.com/nodejs/node/commit/30baacba41)] - **doc**: add CanadaHonk to triagers (CanadaHonk) [#&#8203;50848](https://github.com/nodejs/node/pull/50848) - \[[`e6e7cbceac`](https://github.com/nodejs/node/commit/e6e7cbceac)] - **doc**: fix typos in --allow-fs-\* (Tobias Nießen) [#&#8203;50845](https://github.com/nodejs/node/pull/50845) - \[[`e22ce9586f`](https://github.com/nodejs/node/commit/e22ce9586f)] - **doc**: update Crypto API doc for x509.keyUsage (Daniel Meechan) [#&#8203;50603](https://github.com/nodejs/node/pull/50603) - \[[`549d4422b7`](https://github.com/nodejs/node/commit/549d4422b7)] - **doc**: fix fs.writeFileSync return value documentation (Ryan Zimmerman) [#&#8203;50760](https://github.com/nodejs/node/pull/50760) - \[[`3c79e3cdba`](https://github.com/nodejs/node/commit/3c79e3cdba)] - **doc**: update print results(detail) in `PerformanceEntry` (Jungku Lee) [#&#8203;50723](https://github.com/nodejs/node/pull/50723) - \[[`aeaf96d06e`](https://github.com/nodejs/node/commit/aeaf96d06e)] - **doc**: fix `Buffer.allocUnsafe` documentation (Mert Can Altın) [#&#8203;50686](https://github.com/nodejs/node/pull/50686) - \[[`347e1dd06a`](https://github.com/nodejs/node/commit/347e1dd06a)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;50691](https://github.com/nodejs/node/pull/50691) - \[[`a541b78bdb`](https://github.com/nodejs/node/commit/a541b78bdb)] - **doc**: add MrJithil to collaborators (Jithil P Ponnan) [#&#8203;50666](https://github.com/nodejs/node/pull/50666) - \[[`90f415dd61`](https://github.com/nodejs/node/commit/90f415dd61)] - **doc**: fix typo in fs.md (fwio) [#&#8203;50570](https://github.com/nodejs/node/pull/50570) - \[[`e2388151ba`](https://github.com/nodejs/node/commit/e2388151ba)] - **doc**: add missing description of argument in `subtle.encrypt` (Deokjin Kim) [#&#8203;50578](https://github.com/nodejs/node/pull/50578) - \[[`39cc013465`](https://github.com/nodejs/node/commit/39cc013465)] - **doc**: update pm documentation to include resource (Ranieri Innocenti Spada) [#&#8203;50601](https://github.com/nodejs/node/pull/50601) - \[[`ba6d427c23`](https://github.com/nodejs/node/commit/ba6d427c23)] - **doc**: correct attribution in v20.6.0 changelog (Jacob Smith) [#&#8203;50564](https://github.com/nodejs/node/pull/50564) - \[[`1b2dab8254`](https://github.com/nodejs/node/commit/1b2dab8254)] - **doc**: update to align `console.table` row to the left (Jungku Lee) [#&#8203;50553](https://github.com/nodejs/node/pull/50553) - \[[`5d48ef7778`](https://github.com/nodejs/node/commit/5d48ef7778)] - **doc**: underline links (Rich Trott) [#&#8203;50481](https://github.com/nodejs/node/pull/50481) - \[[`5e6057c9d2`](https://github.com/nodejs/node/commit/5e6057c9d2)] - **doc**: remove duplicate word (Gerhard Stöbich) [#&#8203;50475](https://github.com/nodejs/node/pull/50475) - \[[`64bf2fd4ee`](https://github.com/nodejs/node/commit/64bf2fd4ee)] - **doc**: fix typo in `webstreams.md` (André Santos) [#&#8203;50426](https://github.com/nodejs/node/pull/50426) - \[[`cca55b8414`](https://github.com/nodejs/node/commit/cca55b8414)] - **doc**: add information about Node-API versions >=9 (Michael Dawson) [#&#8203;50168](https://github.com/nodejs/node/pull/50168) - \[[`d4be8fad83`](https://github.com/nodejs/node/commit/d4be8fad83)] - **doc**: add Ethan-Arrowood as a collaborator (Ethan Arrowood) [#&#8203;50393](https://github.com/nodejs/node/pull/50393) - \[[`0b311838f6`](https://github.com/nodejs/node/commit/0b311838f6)] - **doc**: fix TOC in `releases.md` (Bryce Seefieldt) [#&#8203;50372](https://github.com/nodejs/node/pull/50372) - \[[`843d5f84ca`](https://github.com/nodejs/node/commit/843d5f84ca)] - **esm**: fallback to `getSource` when `load` returns nullish `source` (Antoine du Hamel) [#&#8203;50825](https://github.com/nodejs/node/pull/50825) - \[[`8d5469c84b`](https://github.com/nodejs/node/commit/8d5469c84b)] - **esm**: do not call `getSource` when format is `commonjs` (Francesco Trotta) [#&#8203;50465](https://github.com/nodejs/node/pull/50465) - \[[`b48cf314d3`](https://github.com/nodejs/node/commit/b48cf314d3)] - **esm**: bypass CJS loader in default load under `--default-type=module` (Antoine du Hamel) [#&#8203;50004](https://github.com/nodejs/node/pull/50004) - \[[`c1a196c897`](https://github.com/nodejs/node/commit/c1a196c897)] - **(SEMVER-MINOR)** **esm**: add import.meta.dirname and import.meta.filename (James Sumners) [#&#8203;48740](https://github.com/nodejs/node/pull/48740) - \[[`435f9c9276`](https://github.com/nodejs/node/commit/435f9c9276)] - **fs**: use default w flag for writeFileSync with utf8 encoding (Murilo Kakazu) [#&#8203;50990](https://github.com/nodejs/node/pull/50990) - \[[`aa3209b880`](https://github.com/nodejs/node/commit/aa3209b880)] - **fs**: add c++ fast path for writeFileSync utf8 (CanadaHonk) [#&#8203;49884](https://github.com/nodejs/node/pull/49884) - \[[`05e25e0230`](https://github.com/nodejs/node/commit/05e25e0230)] - **fs**: improve error perf of sync `lstat`+`fstat` (CanadaHonk) [#&#8203;49868](https://github.com/nodejs/node/pull/49868) - \[[`f94a24cb4b`](https://github.com/nodejs/node/commit/f94a24cb4b)] - **fs**: improve error performance for `rmdirSync` (CanadaHonk) [#&#8203;49846](https://github.com/nodejs/node/pull/49846) - \[[`cada22e2a4`](https://github.com/nodejs/node/commit/cada22e2a4)] - **fs**: fix to not return for void function (Jungku Lee) [#&#8203;50769](https://github.com/nodejs/node/pull/50769) - \[[`ba40b2e33e`](https://github.com/nodejs/node/commit/ba40b2e33e)] - **fs**: replace deprecated `path._makeLong` in copyFile (CanadaHonk) [#&#8203;50844](https://github.com/nodejs/node/pull/50844) - \[[`d1b6bd660a`](https://github.com/nodejs/node/commit/d1b6bd660a)] - **fs**: update param in jsdoc for `readdir` (Jungku Lee) [#&#8203;50448](https://github.com/nodejs/node/pull/50448) - \[[`11412e863a`](https://github.com/nodejs/node/commit/11412e863a)] - **fs**: do not throw error on cpSync internals (Yagiz Nizipli) [#&#8203;50185](https://github.com/nodejs/node/pull/50185) - \[[`868a464c15`](https://github.com/nodejs/node/commit/868a464c15)] - **fs,url**: move `FromNamespacedPath` to `node_url` (Yagiz Nizipli) [#&#8203;50090](https://github.com/nodejs/node/pull/50090) - \[[`de7fe08c7b`](https://github.com/nodejs/node/commit/de7fe08c7b)] - **fs,url**: refactor `FileURLToPath` method (Yagiz Nizipli) [#&#8203;50090](https://github.com/nodejs/node/pull/50090) - \[[`186e6e0395`](https://github.com/nodejs/node/commit/186e6e0395)] - **fs,url**: move `FileURLToPath` to node_url (Yagiz Nizipli) [#&#8203;50090](https://github.com/nodejs/node/pull/50090) - \[[`aea7fe54af`](https://github.com/nodejs/node/commit/aea7fe54af)] - **inspector**: use private fields instead of symbols (Yagiz Nizipli) [#&#8203;50776](https://github.com/nodejs/node/pull/50776) - \[[`48dbde71d8`](https://github.com/nodejs/node/commit/48dbde71d8)] - **lib**: use primordials for navigator.userAgent (Aras Abbasi) [#&#8203;50467](https://github.com/nodejs/node/pull/50467) - \[[`fa220cac87`](https://github.com/nodejs/node/commit/fa220cac87)] - **lib**: remove deprecated string methods (Jithil P Ponnan) [#&#8203;50592](https://github.com/nodejs/node/pull/50592) - \[[`f1cf1c385f`](https://github.com/nodejs/node/commit/f1cf1c385f)] - **lib**: fix assert shows diff messages in ESM and CJS (Jithil P Ponnan) [#&#8203;50634](https://github.com/nodejs/node/pull/50634) - \[[`3844af288f`](https://github.com/nodejs/node/commit/3844af288f)] - **lib**: make event static properties non writable and configurable (Muthukumar) [#&#8203;50425](https://github.com/nodejs/node/pull/50425) - \[[`0a0b416d6c`](https://github.com/nodejs/node/commit/0a0b416d6c)] - **lib**: avoid memory allocation on nodeprecation flag (Vinicius Lourenço) [#&#8203;50231](https://github.com/nodejs/node/pull/50231) - \[[`e7551d5770`](https://github.com/nodejs/node/commit/e7551d5770)] - **lib**: align console.table row to the left (Jithil P Ponnan) [#&#8203;50135](https://github.com/nodejs/node/pull/50135) - \[[`0c85cebdf2`](https://github.com/nodejs/node/commit/0c85cebdf2)] - **meta**: clarify nomination process according to Node.js charter (Matteo Collina) [#&#8203;50834](https://github.com/nodejs/node/pull/50834) - \[[`f4070dd8d4`](https://github.com/nodejs/node/commit/f4070dd8d4)] - **meta**: clarify recommendation for bug reproductions (Antoine du Hamel) [#&#8203;50882](https://github.com/nodejs/node/pull/50882) - \[[`2ddeead436`](https://github.com/nodejs/node/commit/2ddeead436)] - **meta**: move cjihrig to TSC regular member (Colin Ihrig) [#&#8203;50816](https://github.com/nodejs/node/pull/50816) - \[[`34a789d9be`](https://github.com/nodejs/node/commit/34a789d9be)] - **meta**: add web-standards as WPTs owner (Filip Skokan) [#&#8203;50636](https://github.com/nodejs/node/pull/50636) - \[[`40bbffa266`](https://github.com/nodejs/node/commit/40bbffa266)] - **meta**: bump github/codeql-action from 2.21.9 to 2.22.5 (dependabot\[bot]) [#&#8203;50513](https://github.com/nodejs/node/pull/50513) - \[[`c49553631d`](https://github.com/nodejs/node/commit/c49553631d)] - **meta**: bump step-security/harden-runner from 2.5.1 to 2.6.0 (dependabot\[bot]) [#&#8203;50512](https://github.com/nodejs/node/pull/50512) - \[[`99df0138b0`](https://github.com/nodejs/node/commit/99df0138b0)] - **meta**: bump ossf/scorecard-action from 2.2.0 to 2.3.1 (dependabot\[bot]) [#&#8203;50509](https://github.com/nodejs/node/pull/50509) - \[[`9db6227ac6`](https://github.com/nodejs/node/commit/9db6227ac6)] - **meta**: fix spacing in collaborator list (Antoine du Hamel) [#&#8203;50641](https://github.com/nodejs/node/pull/50641) - \[[`2589a5a566`](https://github.com/nodejs/node/commit/2589a5a566)] - **meta**: bump actions/setup-python from 4.7.0 to 4.7.1 (dependabot\[bot]) [#&#8203;50510](https://github.com/nodejs/node/pull/50510) - \[[`5a86661a95`](https://github.com/nodejs/node/commit/5a86661a95)] - **meta**: add crypto as crypto and webcrypto docs owner (Filip Skokan) [#&#8203;50579](https://github.com/nodejs/node/pull/50579) - \[[`ac8d2b9cc2`](https://github.com/nodejs/node/commit/ac8d2b9cc2)] - **meta**: bump actions/setup-node from 3.8.1 to 4.0.0 (dependabot\[bot]) [#&#8203;50514](https://github.com/nodejs/node/pull/50514) - \[[`bee2c0cf11`](https://github.com/nodejs/node/commit/bee2c0cf11)] - **meta**: bump actions/checkout from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;50511](https://github.com/nodejs/node/pull/50511) - \[[`91a0944e5f`](https://github.com/nodejs/node/commit/91a0944e5f)] - **meta**: add <ethan.arrowood@vercel.com> to mailmap (Ethan Arrowood) [#&#8203;50491](https://github.com/nodejs/node/pull/50491) - \[[`8d3cf8c4ee`](https://github.com/nodejs/node/commit/8d3cf8c4ee)] - **meta**: add web-standards as web api visibility owner (Chengzhong Wu) [#&#8203;50418](https://github.com/nodejs/node/pull/50418) - \[[`807c12de36`](https://github.com/nodejs/node/commit/807c12de36)] - **meta**: mention other notable changes section (Rafael Gonzaga) [#&#8203;50309](https://github.com/nodejs/node/pull/50309) - \[[`21ab3c0f0b`](https://github.com/nodejs/node/commit/21ab3c0f0b)] - **(SEMVER-MINOR)** **module**: bootstrap module loaders in shadow realm (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`8e886a2fff`](https://github.com/nodejs/node/commit/8e886a2fff)] - **(SEMVER-MINOR)** **module**: remove useCustomLoadersIfPresent flag (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`77e8361213`](https://github.com/nodejs/node/commit/77e8361213)] - **module**: execute `--import` sequentially (Antoine du Hamel) [#&#8203;50474](https://github.com/nodejs/node/pull/50474) - \[[`fffc4951ac`](https://github.com/nodejs/node/commit/fffc4951ac)] - **module**: add application/json in accept header when fetching json module (Marco Ippolito) [#&#8203;50119](https://github.com/nodejs/node/pull/50119) - \[[`f808e7a650`](https://github.com/nodejs/node/commit/f808e7a650)] - **net**: check pipe mode and path (theanarkh) [#&#8203;50770](https://github.com/nodejs/node/pull/50770) - \[[`cf3a4c5b84`](https://github.com/nodejs/node/commit/cf3a4c5b84)] - **node-api**: factor out common code into macros (Gabriel Schulhof) [#&#8203;50664](https://github.com/nodejs/node/pull/50664) - \[[`a7d8f6b529`](https://github.com/nodejs/node/commit/a7d8f6b529)] - **perf_hooks**: implement performance.now() with fast API calls (Joyee Cheung) [#&#8203;50492](https://github.com/nodejs/node/pull/50492) - \[[`076dc7540b`](https://github.com/nodejs/node/commit/076dc7540b)] - **permission**: do not create symlinks if target is relative (Tobias Nießen) [#&#8203;49156](https://github.com/nodejs/node/pull/49156) - \[[`43160dcd2d`](https://github.com/nodejs/node/commit/43160dcd2d)] - **permission**: mark const functions as such (Tobias Nießen) [#&#8203;50705](https://github.com/nodejs/node/pull/50705) - \[[`7a661d7ad9`](https://github.com/nodejs/node/commit/7a661d7ad9)] - **permission**: address coverity warning (Michael Dawson) [#&#8203;50215](https://github.com/nodejs/node/pull/50215) - \[[`b2b4132c3e`](https://github.com/nodejs/node/commit/b2b4132c3e)] - **src**: iterate on import attributes array correctly (Michaël Zasso) [#&#8203;50703](https://github.com/nodejs/node/pull/50703) - \[[`11b3e470db`](https://github.com/nodejs/node/commit/11b3e470db)] - **(SEMVER-MINOR)** **src**: create per isolate proxy env template (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`d00412a083`](https://github.com/nodejs/node/commit/d00412a083)] - **(SEMVER-MINOR)** **src**: create fs_dir per isolate properties (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`14cc3b9b90`](https://github.com/nodejs/node/commit/14cc3b9b90)] - **(SEMVER-MINOR)** **src**: create worker per isolate properties (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`621c4d66c2`](https://github.com/nodejs/node/commit/621c4d66c2)] - **(SEMVER-MINOR)** **src**: make process binding data weak (Chengzhong Wu) [#&#8203;48655](https://github.com/nodejs/node/pull/48655) - \[[`07a4e94e84`](https://github.com/nodejs/node/commit/07a4e94e84)] - **src**: assert return value of BN_bn2binpad (Tobias Nießen) [#&#8203;50860](https://github.com/nodejs/node/pull/50860) - \[[`158db2d61e`](https://github.com/nodejs/node/commit/158db2d61e)] - **src**: fix coverity warning (Michael Dawson) [#&#8203;50846](https://github.com/nodejs/node/pull/50846) - \[[`94363bb3fd`](https://github.com/nodejs/node/commit/94363bb3fd)] - **src**: fix compatility with upcoming V8 12.1 APIs (Cheng Zhao) [#&#8203;50709](https://github.com/nodejs/node/pull/50709) - \[[`29d91b13e3`](https://github.com/nodejs/node/commit/29d91b13e3)] - **(SEMVER-MINOR)** **src**: add `--disable-warning` option (Ethan Arrowood) [#&#8203;50661](https://github.com/nodejs/node/pull/50661) - \[[`f054c337f8`](https://github.com/nodejs/node/commit/f054c337f8)] - **src**: add IsolateScopes before using isolates (Keyhan Vakil) [#&#8203;50680](https://github.com/nodejs/node/pull/50680) - \[[`d08eb382cd`](https://github.com/nodejs/node/commit/d08eb382cd)] - **src**: avoid copying strings in FSPermission::Apply (Tobias Nießen) [#&#8203;50662](https://github.com/nodejs/node/pull/50662) - \[[`6620df1c05`](https://github.com/nodejs/node/commit/6620df1c05)] - **src**: remove erroneous default argument in RadixTree (Tobias Nießen) [#&#8203;50736](https://github.com/nodejs/node/pull/50736) - \[[`436c3aef15`](https://github.com/nodejs/node/commit/436c3aef15)] - **src**: fix JSONParser leaking internal V8 scopes (Keyhan Vakil) [#&#8203;50688](https://github.com/nodejs/node/pull/50688) - \[[`6f46d31018`](https://github.com/nodejs/node/commit/6f46d31018)] - **src**: return error --env-file if file is not found (Ardi Nugraha) [#&#8203;50588](https://github.com/nodejs/node/pull/50588) - \[[`3d43fd359c`](https://github.com/nodejs/node/commit/3d43fd359c)] - **src**: avoid silent coercion to signed/unsigned int (Tobias Nießen) [#&#8203;50663](https://github.com/nodejs/node/pull/50663) - \[[`c253e39b56`](https://github.com/nodejs/node/commit/c253e39b56)] - **src**: handle errors from uv_pipe_connect2() (Deokjin Kim) [#&#8203;50657](https://github.com/nodejs/node/pull/50657) - \[[`3a9713bb5a`](https://github.com/nodejs/node/commit/3a9713bb5a)] - **src**: use v8::Isolate::TryGetCurrent() in DumpJavaScriptBacktrace() (Joyee Cheung) [#&#8203;50518](https://github.com/nodejs/node/pull/50518) - \[[`94f8a925a8`](https://github.com/nodejs/node/commit/94f8a925a8)] - **src**: print more information in C++ assertions (Joyee Cheung) [#&#8203;50242](https://github.com/nodejs/node/pull/50242) - \[[`23f830616b`](https://github.com/nodejs/node/commit/23f830616b)] - **src**: hide node::credentials::HasOnly outside unit (Tobias Nießen) [#&#8203;50450](https://github.com/nodejs/node/pull/50450) - \[[`b7ecb0a390`](https://github.com/nodejs/node/commit/b7ecb0a390)] - **src**: readiterable entries may be empty (Matthew Aitken) [#&#8203;50398](https://github.com/nodejs/node/pull/50398) - \[[`4ef1d68715`](https://github.com/nodejs/node/commit/4ef1d68715)] - **src**: implement structuredClone in native (Joyee Cheung) [#&#8203;50330](https://github.com/nodejs/node/pull/50330) - \[[`9346f15138`](https://github.com/nodejs/node/commit/9346f15138)] - **src**: use find instead of char-by-char in FromFilePath() (Daniel Lemire) [#&#8203;50288](https://github.com/nodejs/node/pull/50288) - \[[`8414fb4d2a`](https://github.com/nodejs/node/commit/8414fb4d2a)] - **src**: add commit hash shorthand in zlib version (Jithil P Ponnan) [#&#8203;50158](https://github.com/nodejs/node/pull/50158) - \[[`a878e3abb0`](https://github.com/nodejs/node/commit/a878e3abb0)] - **stream**: fix enumerability of ReadableStream.from (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779) - \[[`95ed4ffc1e`](https://github.com/nodejs/node/commit/95ed4ffc1e)] - **stream**: fix enumerability of ReadableStream.prototype.values (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779) - \[[`4cf155ca0c`](https://github.com/nodejs/node/commit/4cf155ca0c)] - **stream**: add Symbol.toStringTag to Compression Streams (Filip Skokan) [#&#8203;50712](https://github.com/nodejs/node/pull/50712) - \[[`6012e3e781`](https://github.com/nodejs/node/commit/6012e3e781)] - **stream**: fix Writable.destroy performance regression (Robert Nagy) [#&#8203;50478](https://github.com/nodejs/node/pull/50478) - \[[`dd5206820c`](https://github.com/nodejs/node/commit/dd5206820c)] - **stream**: pre-allocate \_events (Robert Nagy) [#&#8203;50428](https://github.com/nodejs/node/pull/50428) - \[[`829b82ed0f`](https://github.com/nodejs/node/commit/829b82ed0f)] - **stream**: remove no longer relevant comment (Robert Nagy) [#&#8203;50446](https://github.com/nodejs/node/pull/50446) - \[[`98ae1b4132`](https://github.com/nodejs/node/commit/98ae1b4132)] - **stream**: use bit fields for construct/destroy (Robert Nagy) [#&#8203;50408](https://github.com/nodejs/node/pull/50408) - \[[`08a0c6c56c`](https://github.com/nodejs/node/commit/08a0c6c56c)] - **stream**: improve from perf (Raz Luvaton) [#&#8203;50359](https://github.com/nodejs/node/pull/50359) - \[[`59f7316b8f`](https://github.com/nodejs/node/commit/59f7316b8f)] - **stream**: avoid calls to listenerCount (Robert Nagy) [#&#8203;50357](https://github.com/nodejs/node/pull/50357) - \[[`9d52430eb9`](https://github.com/nodejs/node/commit/9d52430eb9)] - **stream**: readable use bitmap accessors (Robert Nagy) [#&#8203;50350](https://github.com/nodejs/node/pull/50350) - \[[`139d6c8d3b`](https://github.com/nodejs/node/commit/139d6c8d3b)] - **stream**: use Array for Readable buffer (Robert Nagy) [#&#8203;50341](https://github.com/nodejs/node/pull/50341) - \[[`6206957e8d`](https://github.com/nodejs/node/commit/6206957e8d)] - **stream**: optimize creation (Robert Nagy) [#&#8203;50337](https://github.com/nodejs/node/pull/50337) - \[[`f87921de3b`](https://github.com/nodejs/node/commit/f87921de3b)] - **stream**: refactor writable \_write (Robert Nagy) [#&#8203;50198](https://github.com/nodejs/node/pull/50198) - \[[`b338f3d3c2`](https://github.com/nodejs/node/commit/b338f3d3c2)] - **stream**: avoid getter for defaultEncoding (Robert Nagy) [#&#8203;50203](https://github.com/nodejs/node/pull/50203) - \[[`1862235a26`](https://github.com/nodejs/node/commit/1862235a26)] - **test**: fix message v8 not normalising alphanumeric paths (Jithil P Ponnan) [#&#8203;50730](https://github.com/nodejs/node/pull/50730) - \[[`7c28a4ca8f`](https://github.com/nodejs/node/commit/7c28a4ca8f)] - **test**: fix dns test case failures after c-ares update to 1.21.0+ (Brad House) [#&#8203;50743](https://github.com/nodejs/node/pull/50743) - \[[`4544593d31`](https://github.com/nodejs/node/commit/4544593d31)] - **test**: replace forEach with for of (Conor Watson) [#&#8203;50594](https://github.com/nodejs/node/pull/50594) - \[[`96143a3293`](https://github.com/nodejs/node/commit/96143a3293)] - **test**: replace forEach to for at test-webcrypto-sign-verify-ecdsa.js (Alessandro Di Nisio) [#&#8203;50795](https://github.com/nodejs/node/pull/50795) - \[[`107b5e63c5`](https://github.com/nodejs/node/commit/107b5e63c5)] - **test**: replace foreach with for in test-https-simple.js (Shikha Mehta) [#&#8203;49793](https://github.com/nodejs/node/pull/49793) - \[[`9b2e5e9db4`](https://github.com/nodejs/node/commit/9b2e5e9db4)] - **test**: add note about unresolved spec issue (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779) - \[[`edce637c1a`](https://github.com/nodejs/node/commit/edce637c1a)] - **test**: add note about readable streams with type owning (Mattias Buelens) [#&#8203;50779](https://github.com/nodejs/node/pull/50779) - \[[`641044670b`](https://github.com/nodejs/node/commit/641044670b)] - **test**: replace forEach with for-of in test-url-relative (vitosorriso) [#&#8203;50788](https://github.com/nodejs/node/pull/50788) - \[[`75ee78438c`](https://github.com/nodejs/node/commit/75ee78438c)] - **test**: replace forEach() with for ... of in test-tls-getprotocol.js (Steve Goode) [#&#8203;50600](https://github.com/nodejs/node/pull/50600) - \[[`24f9d3fbeb`](https://github.com/nodejs/node/commit/24f9d3fbeb)] - **test**: enable idlharness tests for encoding (Mattias Buelens) [#&#8203;50778](https://github.com/nodejs/node/pull/50778) - \[[`a9d290956e`](https://github.com/nodejs/node/commit/a9d290956e)] - **test**: replace forEach in whatwg-encoding-custom-interop (Honza Machala) [#&#8203;50607](https://github.com/nodejs/node/pull/50607) - \[[`6584dd80f7`](https://github.com/nodejs/node/commit/6584dd80f7)] - **test**: replace forEach() with for-loop (Jan) [#&#8203;50596](https://github.com/nodejs/node/pull/50596) - \[[`be54a22869`](https://github.com/nodejs/node/commit/be54a22869)] - **test**: improve test-bootstrap-modules.js (Joyee Cheung) [#&#8203;50708](https://github.com/nodejs/node/pull/50708) - \[[`660e70e73b`](https://github.com/nodejs/node/commit/660e70e73b)] - **test**: skip parallel/test-macos-app-sandbox if disk space < 120MB (Joyee Cheung) [#&#8203;50764](https://github.com/nodejs/node/pull/50764) - \[[`5712c41122`](https://github.com/nodejs/node/commit/5712c41122)] - **test**: replace foreach with for (Markus Muschol) [#&#8203;50599](https://github.com/nodejs/node/pull/50599) - \[[`49e5f47b1c`](https://github.com/nodejs/node/commit/49e5f47b1c)] - **test**: test streambase has already has a consumer (Jithil P Ponnan) [#&#8203;48059](https://github.com/nodejs/node/pull/48059) - \[[`bb7d764c8e`](https://github.com/nodejs/node/commit/bb7d764c8e)] - **test**: change forEach to for...of in path extname (Kyriakos Markakis) [#&#8203;50667](https://github.com/nodejs/node/pull/50667) - \[[`4d28ced079`](https://github.com/nodejs/node/commit/4d28ced079)] - **test**: replace forEach with for...of (Ryan Williams) [#&#8203;50611](https://github.com/nodejs/node/pull/50611) - \[[`92a153ecde`](https://github.com/nodejs/node/commit/92a153ecde)] - **test**: migrate message v8 tests from Python to JS (Joshua LeMay) [#&#8203;50421](https://github.com/nodejs/node/pull/50421) - \[[`a376284d8a`](https://github.com/nodejs/node/commit/a376284d8a)] - **test**: use destructuring for accessing setting values (Honza Jedlička) [#&#8203;50609](https://github.com/nodejs/node/pull/50609) - \[[`7b9b1fba27`](https://github.com/nodejs/node/commit/7b9b1fba27)] - **test**: replace forEach() with for .. of (Evgenia Blajer) [#&#8203;50605](https://github.com/nodejs/node/pull/50605) - \[[`9397b2da7e`](https://github.com/nodejs/node/commit/9397b2da7e)] - **test**: replace forEach() with for ... of in test-readline-keys.js (William Liang) [#&#8203;50604](https://github.com/nodejs/node/pull/50604) - \[[`9043ba4cfb`](https://github.com/nodejs/node/commit/9043ba4cfb)] - **test**: replace forEach() with for ... of in test-http2-single-headers.js (spiritualized) [#&#8203;50606](https://github.com/nodejs/node/pull/50606) - \[[`9f911d31f6`](https://github.com/nodejs/node/commit/9f911d31f6)] - **test**: replace forEach with for of (john-mcinall) [#&#8203;50602](https://github.com/nodejs/node/pull/50602) - \[[`8a5f36fe74`](https://github.com/nodejs/node/commit/8a5f36fe74)] - **test**: remove unused file (James Sumners) [#&#8203;50528](https://github.com/nodejs/node/pull/50528) - \[[`9950203340`](https://github.com/nodejs/node/commit/9950203340)] - **test**: replace forEach with for of (Kevin Kühnemund) [#&#8203;50597](https://github.com/nodejs/node/pull/50597) - \[[`03ba28f102`](https://github.com/nodejs/node/commit/03ba28f102)] - **test**: replace forEach with for of (CorrWu) [#&#8203;49785](https://github.com/nodejs/node/pull/49785) - \[[`ea61261b54`](https://github.com/nodejs/node/commit/ea61261b54)] - **test**: replace forEach with for \[...] of (Gabriel Bota) [#&#8203;50615](https://github.com/nodejs/node/pull/50615) - \[[`4349790913`](https://github.com/nodejs/node/commit/4349790913)] - **test**: add WPT report test duration (Filip Skokan) [#&#8203;50574](https://github.com/nodejs/node/pull/50574) - \[[`7cacddfcc1`](https://github.com/nodejs/node/commit/7cacddfcc1)] - **test**: replace forEach() with for ... of loop in test-global.js (Kajol) [#&#8203;49772](https://github.com/nodejs/node/pull/49772) - \[[`889f58d07f`](https://github.com/nodejs/node/commit/889f58d07f)] - **test**: skip test-diagnostics-channel-memory-leak.js (Joyee Cheung) [#&#8203;50327](https://github.com/nodejs/node/pull/50327) - \[[`41644ee071`](https://github.com/nodejs/node/commit/41644ee071)] - **test**: improve `UV_THREADPOOL_SIZE` tests on `.env` (Yagiz Nizipli) [#&#8203;49213](https://github.com/nodejs/node/pull/49213) - \[[`1db44b9a53`](https://github.com/nodejs/node/commit/1db44b9a53)] - **test**: recognize wpt completion error (Chengzhong Wu) [#&#8203;50429](https://github.com/nodejs/node/pull/50429) - \[[`ecfc951ddc`](https://github.com/nodejs/node/commit/ecfc951ddc)] - **test**: report error wpt test results (Chengzhong Wu) [#&#8203;50429](https://github.com/nodejs/node/pull/50429) - \[[`deb0351d95`](https://github.com/nodejs/node/commit/deb0351d95)] - **test**: replace forEach() with for...of (Ram) [#&#8203;49794](https://github.com/nodejs/node/pull/49794) - \[[`f885dfe5e3`](https://github.com/nodejs/node/commit/f885dfe5e3)] - **test**: replace forEach() with for...of in test-trace-events-http (Chand) [#&#8203;49795](https://github.com/nodejs/node/pull/49795) - \[[`9dc63c56db`](https://github.com/nodejs/node/commit/9dc63c56db)] - **test**: replace forEach with for...of in test-fs-realpath-buffer-encoding (Niya Shiyas) [#&#8203;49804](https://github.com/nodejs/node/pull/49804) - \[[`600d1260da`](https://github.com/nodejs/node/commit/600d1260da)] - **test**: fix timeout of test-cpu-prof-dir-worker.js in LoongArch devices (Shi Pujin) [#&#8203;50363](https://github.com/nodejs/node/pull/50363) - \[[`099f5cfa0a`](https://github.com/nodejs/node/commit/099f5cfa0a)] - **test**: fix vm assertion actual and expected order (Chengzhong Wu) [#&#8203;50371](https://github.com/nodejs/node/pull/50371) - \[[`a31f9bfe01`](https://github.com/nodejs/node/commit/a31f9bfe01)] - **test**: v8: Add test-linux-perf-logger test suite (Luke Albao) [#&#8203;50352](https://github.com/nodejs/node/pull/50352) - \[[`6c59114947`](https://github.com/nodejs/node/commit/6c59114947)] - **test**: ensure never settling promises are detected (Antoine du Hamel) [#&#8203;50318](https://github.com/nodejs/node/pull/50318) - \[[`9830ae4bf7`](https://github.com/nodejs/node/commit/9830ae4bf7)] - **test_runner**: add tests for various mock timer issues (Mika Fischer) [#&#8203;50384](https://github.com/nodejs/node/pull/50384) - \[[`2c72ed85fb`](https://github.com/nodejs/node/commit/2c72ed85fb)] - **test_runner**: pass abortSignal to test files (Moshe Atlow) [#&#8203;50630](https://github.com/nodejs/node/pull/50630) - \[[`c33a84af11`](https://github.com/nodejs/node/commit/c33a84af11)] - **test_runner**: replace forEach with for of (Tom Haddad) [#&#8203;50595](https://github.com/nodejs/node/pull/50595) - \[[`29c68a22bb`](https://github.com/nodejs/node/commit/29c68a22bb)] - **test_runner**: output errors of suites (Moshe Atlow) [#&#8203;50361](https://github.com/nodejs/node/pull/50361) - \[[`e64378643d`](https://github.com/nodejs/node/commit/e64378643d)] - **(SEMVER-MINOR)** **test_runner**: adds built in lcov reporter (Phil Nash) [#&#8203;50018](https://github.com/nodejs/node/pull/50018) - \[[`4aaaff413b`](https://github.com/nodejs/node/commit/4aaaff413b)] - **test_runner**: test return value of mocked promisified timers (Mika Fischer) [#&#8203;50331](https://github.com/nodejs/node/pull/50331) - \[[`4a830c2d9d`](https://github.com/nodejs/node/commit/4a830c2d9d)] - **(SEMVER-MINOR)** **test_runner**: add Date to the supported mock APIs (Lucas Santos) [#&#8203;48638](https://github.com/nodejs/node/pull/48638) - \[[`842dc01def`](https://github.com/nodejs/node/commit/842dc01def)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-timeout flag (Shubham Pandey) [#&#8203;50443](https://github.com/nodejs/node/pull/50443) - \[[`613a9072b7`](https://github.com/nodejs/node/commit/613a9072b7)] - **tls**: fix order of setting cipher before setting cert and key (Kumar Rishav) [#&#8203;50186](https://github.com/nodejs/node/pull/50186) - \[[`d905c61e16`](https://github.com/nodejs/node/commit/d905c61e16)] - **tls**: use `validateFunction` for `options.SNICallback` (Deokjin Kim) [#&#8203;50530](https://github.com/nodejs/node/pull/50530) - \[[`c8d6dd58e7`](https://github.com/nodejs/node/commit/c8d6dd58e7)] - **tools**: add macOS notarization verification step (Ulises Gascón) [#&#8203;50833](https://github.com/nodejs/node/pull/50833) - \[[`c9bd0b0c0f`](https://github.com/nodejs/node/commit/c9bd0b0c0f)] - **tools**: use macOS keychain to notarize the releases (Ulises Gascón) [#&#8203;50715](https://github.com/nodejs/node/pull/50715) - \[[`932a5d7b2c`](https://github.com/nodejs/node/commit/932a5d7b2c)] - **tools**: update eslint to 8.54.0 (Node.js GitHub Bot) [#&#8203;50809](https://github.com/nodejs/node/pull/50809) - \[[`d7114d97be`](https://github.com/nodejs/node/commit/d7114d97be)] - **tools**: update lint-md-dependencies to rollup@4.5.0 (Node.js GitHub Bot) [#&#8203;50807](https://github.com/nodejs/node/pull/50807) - \[[`93085cf844`](https://github.com/nodejs/node/commit/93085cf844)] - **tools**: add workflow to update release links (Michaël Zasso) [#&#8203;50710](https://github.com/nodejs/node/pull/50710) - \[[`66764c5d04`](https://github.com/nodejs/node/commit/66764c5d04)] - **tools**: recognize GN files in dep_updaters (Cheng Zhao) [#&#8203;50693](https://github.com/nodejs/node/pull/50693) - \[[`2a451e176a`](https://github.com/nodejs/node/commit/2a451e176a)] - **tools**: remove unused file (Ulises Gascon) [#&#8203;50622](https://github.com/nodejs/node/pull/50622) - \[[`8ce6403230`](https://github.com/nodejs/node/commit/8ce6403230)] - **tools**: change minimatch install strategy (Marco Ippolito) [#&#8203;50476](https://github.com/nodejs/node/pull/50476) - \[[`97778e2e77`](https://github.com/nodejs/node/commit/97778e2e77)] - **tools**: update lint-md-dependencies to rollup@4.3.1 (Node.js GitHub Bot) [#&#8203;50675](https://github.com/nodejs/node/pull/50675) - \[[`797f6a9ba8`](https://github.com/nodejs/node/commit/797f6a9ba8)] - **tools**: add macOS notarization stapler (Ulises Gascón) [#&#8203;50625](https://github.com/nodejs/node/pull/50625) - \[[`8fa1319352`](https://github.com/nodejs/node/commit/8fa1319352)] - **tools**: update eslint to 8.53.0 (Node.js GitHub Bot) [#&#8203;50559](https://github.com/nodejs/node/pull/50559) - \[[`592f57970f`](https://github.com/nodejs/node/commit/592f57970f)] - **tools**: update lint-md-dependencies to rollup@4.3.0 (Node.js GitHub Bot) [#&#8203;50556](https://github.com/nodejs/node/pull/50556) - \[[`2fd78fc39e`](https://github.com/nodejs/node/commit/2fd78fc39e)] - **tools**: compare ICU checksums before file changes (Michaël Zasso) [#&#8203;50522](https://github.com/nodejs/node/pull/50522) - \[[`631d710fc4`](https://github.com/nodejs/node/commit/631d710fc4)] - **tools**: improve update acorn-walk script (Marco Ippolito) [#&#8203;50473](https://github.com/nodejs/node/pull/50473) - \[[`33fd2af2ab`](https://github.com/nodejs/node/commit/33fd2af2ab)] - **tools**: update lint-md-dependencies to rollup@4.2.0 (Node.js GitHub Bot) [#&#8203;50496](https://github.com/nodejs/node/pull/50496) - \[[`22b7a74838`](https://github.com/nodejs/node/commit/22b7a74838)] - **tools**: update gyp-next to v0.16.1 (Michaël Zasso) [#&#8203;50380](https://github.com/nodejs/node/pull/50380) - \[[`f5ccab5005`](https://github.com/nodejs/node/commit/f5ccab5005)] - **tools**: skip ruff on tools/gyp (Michaël Zasso) [#&#8203;50380](https://github.com/nodejs/node/pull/50380) - \[[`408fd90508`](https://github.com/nodejs/node/commit/408fd90508)] - **tools**: update lint-md-dependencies to rollup@4.1.5 unified@11.0.4 (Node.js GitHub Bot) [#&#8203;50461](https://github.com/nodejs/node/pull/50461) - \[[`685f936ccd`](https://github.com/nodejs/node/commit/685f936ccd)] - **tools**: avoid npm install in deps installation (Marco Ippolito) [#&#8203;50413](https://github.com/nodejs/node/pull/50413) - \[[`7d43c5a094`](https://github.com/nodejs/node/commit/7d43c5a094)] - ***Revert*** "**tools**: update doc dependencies" (Richard Lau) [#&#8203;50414](https://github.com/nodejs/node/pull/50414) - \[[`8fd67c2e3e`](https://github.com/nodejs/node/commit/8fd67c2e3e)] - **tools**: update doc dependencies (Node.js GitHub Bot) [#&#8203;49988](https://github.com/nodejs/node/pull/49988) - \[[`586becb507`](https://github.com/nodejs/node/commit/586becb507)] - **tools**: run coverage CI only on relevant files (Antoine du Hamel) [#&#8203;50349](https://github.com/nodejs/node/pull/50349) - \[[`2d06eea6c5`](https://github.com/nodejs/node/commit/2d06eea6c5)] - **tools**: update eslint to 8.52.0 (Node.js GitHub Bot) [#&#8203;50326](https://github.com/nodejs/node/pull/50326) - \[[`6a897baf16`](https://github.com/nodejs/node/commit/6a897baf16)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;50190](https://github.com/nodejs/node/pull/50190) - \[[`e6e7f39b9e`](https://github.com/nodejs/node/commit/e6e7f39b9e)] - **util**: improve performance of normalizeEncoding (kylo5aby) [#&#8203;50721](https://github.com/nodejs/node/pull/50721) - \[[`3b6b1afa47`](https://github.com/nodejs/node/commit/3b6b1afa47)] - **v8,tools**: expose necessary V8 defines (Cheng Zhao) [#&#8203;50820](https://github.com/nodejs/node/pull/50820) - \[[`2664012617`](https://github.com/nodejs/node/commit/2664012617)] - **vm**: allow dynamic import with a referrer realm (Chengzhong Wu) [#&#8203;50360](https://github.com/nodejs/node/pull/50360) - \[[`c6c0a74b54`](https://github.com/nodejs/node/commit/c6c0a74b54)] - **wasi**: document security sandboxing status (Guy Bedford) [#&#8203;50396](https://github.com/nodejs/node/pull/50396) - \[[`989814093e`](https://github.com/nodejs/node/commit/989814093e)] - **win,tools**: upgrade Windows signing to smctl (Stefan Stojanovic) [#&#8203;50956](https://github.com/nodejs/node/pull/50956) ### [`v20.10.0`](https://github.com/nodejs/node/releases/tag/v20.10.0): 2023-11-22, Version 20.10.0 &#x27;Iron&#x27; (LTS), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v20.9.0...v20.10.0) ##### Notable Changes ##### `--experimental-default-type` flag to flip module defaults The new flag `--experimental-default-type` can be used to flip the default module system used by Node.js. Input that is already explicitly defined as ES modules or CommonJS, such as by a `package.json` `"type"` field or `.mjs`/`.cjs` file extension or the `--input-type` flag, is unaffected. What is currently implicitly CommonJS would instead be interpreted as ES modules under `--experimental-default-type=module`: - String input provided via `--eval` or STDIN, if `--input-type` is unspecified. - Files ending in `.js` or with no extension, if there is no `package.json` file present in the same folder or any parent folder. - Files ending in `.js` or with no extension, if the nearest parent `package.json` field lacks a `type` field; unless the folder is inside a `node_modules` folder. In addition, extensionless files are interpreted as Wasm if `--experimental-wasm-modules` is passed and the file contains the "magic bytes" Wasm header. Contributed by Geoffrey Booth in [#&#8203;49869](https://github.com/nodejs/node/pull/49869). ##### Detect ESM syntax in ambiguous JavaScript The new flag `--experimental-detect-module` can be used to automatically run ES modules when their syntax can be detected. For “ambiguous” files, which are `.js` or extensionless files with no `package.json` with a `type` field, Node.js will parse the file to detect ES module syntax; if found, it will run the file as an ES module, otherwise it will run the file as a CommonJS module. The same applies to string input via `--eval` or `STDIN`. We hope to make detection enabled by default in a future version of Node.js. Detection increases startup time, so we encourage everyone—especially package authors—to add a `type` field to `package.json`, even for the default `"type": "commonjs"`. The presence of a `type` field, or explicit extensions such as `.mjs` or `.cjs`, will opt out of detection. Contributed by Geoffrey Booth in [#&#8203;50096](https://github.com/nodejs/node/pull/50096). ##### New `flush` option in file system functions When writing to files, it is possible that data is not immediately flushed to permanent storage. This allows subsequent read operations to see stale data. This PR adds a `'flush'` option to the `fs.writeFile` family of functions which forces the data to be flushed at the end of a successful write operation. Contributed by Colin Ihrig in [#&#8203;50009](https://github.com/nodejs/node/pull/50009) and [#&#8203;50095](https://github.com/nodejs/node/pull/50095). ##### Experimental WebSocket client Adds a `--experimental-websocket` flag that adds a [`WebSocket`](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket) global, as [standardized by WHATWG](https://websockets.spec.whatwg.org/#the-websocket-interface). Contributed by Matthew Aitken in [#&#8203;49830](https://github.com/nodejs/node/pull/49830). ##### vm: fix V8 compilation cache support for vm.Script Previously repeated compilation of the same source code using `vm.Script` stopped hitting the V8 compilation cache after v16.x when support for `importModuleDynamically` was added to `vm.Script`, resulting in a performance regression that blocked users (in particular Jest users) from upgrading from v16.x. The recent fixes allow the compilation cache to be hit again for `vm.Script` when `--experimental-vm-modules` is not used even in the presence of the `importModuleDynamically` option, so that users affected by the performance regression can now upgrade. Ongoing work is also being done to enable compilation cache support for `vm.CompileFunction`. Contributed by Joyee Cheung in [#&#8203;49950](https://github.com/nodejs/node/pull/49950) and [#&#8203;50137](https://github.com/nodejs/node/pull/50137). ##### Other notable changes - \[[`21453ae555`](https://github.com/nodejs/node/commit/21453ae555)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908) - \[[`ee65e44c31`](https://github.com/nodejs/node/commit/ee65e44c31)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140) - \[[`ffdc357167`](https://github.com/nodejs/node/commit/ffdc357167)] - **(SEMVER-MINOR)** **stream**: allow passing stream class to `stream.compose` (Alex Yang) [#&#8203;50187](https://github.com/nodejs/node/pull/50187) - \[[`4861ad6431`](https://github.com/nodejs/node/commit/4861ad6431)] - **stream**: improve performance of readable stream reads (Raz Luvaton) [#&#8203;50173](https://github.com/nodejs/node/pull/50173) - \[[`4b27087b30`](https://github.com/nodejs/node/commit/4b27087b30)] - **stream**: optimize Writable (Robert Nagy) [#&#8203;50012](https://github.com/nodejs/node/pull/50012) - \[[`709c6c0cab`](https://github.com/nodejs/node/commit/709c6c0cab)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996) - \[[`57efd5292c`](https://github.com/nodejs/node/commit/57efd5292c)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141) ##### Commits - \[[`73757a5f42`](https://github.com/nodejs/node/commit/73757a5f42)] - **benchmark**: fix race condition on fs benchs (Vinicius Lourenço) [#&#8203;50035](https://github.com/nodejs/node/pull/50035) - \[[`23269717bb`](https://github.com/nodejs/node/commit/23269717bb)] - **benchmark**: add warmup to accessSync bench (Rafael Gonzaga) [#&#8203;50073](https://github.com/nodejs/node/pull/50073) - \[[`88611d199a`](https://github.com/nodejs/node/commit/88611d199a)] - **benchmark**: improved config for blob,file benchmark (Vinícius Lourenço) [#&#8203;49730](https://github.com/nodejs/node/pull/49730) - \[[`b70757476c`](https://github.com/nodejs/node/commit/b70757476c)] - **benchmark**: added new benchmarks for blob (Vinícius Lourenço) [#&#8203;49730](https://github.com/nodejs/node/pull/49730) - \[[`458d9a82e3`](https://github.com/nodejs/node/commit/458d9a82e3)] - **buffer**: remove unnecessary assignment in fromString (Tobias Nießen) [#&#8203;50199](https://github.com/nodejs/node/pull/50199) - \[[`878c0b332e`](https://github.com/nodejs/node/commit/878c0b332e)] - **build**: fix IBM i build with Python 3.9 (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056) - \[[`773320e1de`](https://github.com/nodejs/node/commit/773320e1de)] - **crypto**: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) [#&#8203;50234](https://github.com/nodejs/node/pull/50234) - \[[`edb0ffd7d4`](https://github.com/nodejs/node/commit/edb0ffd7d4)] - **crypto**: use X509\_ALGOR accessors instead of reaching into X509\_ALGOR (David Benjamin) [#&#8203;50057](https://github.com/nodejs/node/pull/50057) - \[[`3f98c06dbb`](https://github.com/nodejs/node/commit/3f98c06dbb)] - **crypto**: account for disabled SharedArrayBuffer (Shelley Vohr) [#&#8203;50034](https://github.com/nodejs/node/pull/50034) - \[[`55485ff1cc`](https://github.com/nodejs/node/commit/55485ff1cc)] - **crypto**: return clear errors when loading invalid PFX data (Tim Perry) [#&#8203;49566](https://github.com/nodejs/node/pull/49566) - \[[`68ec1e5eeb`](https://github.com/nodejs/node/commit/68ec1e5eeb)] - **deps**: upgrade npm to 10.2.3 (npm team) [#&#8203;50531](https://github.com/nodejs/node/pull/50531) - \[[`b00c11ad7c`](https://github.com/nodejs/node/commit/b00c11ad7c)] - **deps**: V8: cherry-pick [`d90d453`](https://github.com/nodejs/node/commit/d90d4533b053) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077) - \[[`e63aef91b4`](https://github.com/nodejs/node/commit/e63aef91b4)] - **deps**: V8: cherry-pick [`f7d000a`](https://github.com/nodejs/node/commit/f7d000a7ae7b) (Luke Albao) [#&#8203;50077](https://github.com/nodejs/node/pull/50077) - \[[`4b243b553a`](https://github.com/nodejs/node/commit/4b243b553a)] - **deps**: V8: cherry-pick [`9721082`](https://github.com/nodejs/node/commit/9721082687c9) (Shi Pujin) [#&#8203;50077](https://github.com/nodejs/node/pull/50077) - \[[`9d3cdcbebf`](https://github.com/nodejs/node/commit/9d3cdcbebf)] - **deps**: V8: cherry-pick [`840650f`](https://github.com/nodejs/node/commit/840650f2ff4e) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077) - \[[`0c40b513fd`](https://github.com/nodejs/node/commit/0c40b513fd)] - **deps**: V8: cherry-pick [`a1efa53`](https://github.com/nodejs/node/commit/a1efa5343880) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077) - \[[`68cddd79f7`](https://github.com/nodejs/node/commit/68cddd79f7)] - **deps**: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411) - \[[`3308189180`](https://github.com/nodejs/node/commit/3308189180)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411) - \[[`b61707e535`](https://github.com/nodejs/node/commit/b61707e535)] - **deps**: update ada to 2.7.2 (Node.js GitHub Bot) [#&#8203;50338](https://github.com/nodejs/node/pull/50338) - \[[`1aecf0c17b`](https://github.com/nodejs/node/commit/1aecf0c17b)] - **deps**: update corepack to 0.22.0 (Node.js GitHub Bot) [#&#8203;50325](https://github.com/nodejs/node/pull/50325) - \[[`f5924f174c`](https://github.com/nodejs/node/commit/f5924f174c)] - **deps**: update c-ares to 1.20.1 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082) - \[[`b705e19a95`](https://github.com/nodejs/node/commit/b705e19a95)] - **deps**: update c-ares to 1.20.0 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082) - \[[`f72cbb7e02`](https://github.com/nodejs/node/commit/f72cbb7e02)] - **deps**: V8: cherry-pick [`2590224`](https://github.com/nodejs/node/commit/25902244ad1a) (Joyee Cheung) [#&#8203;50156](https://github.com/nodejs/node/pull/50156) - \[[`6547bd2493`](https://github.com/nodejs/node/commit/6547bd2493)] - **deps**: V8: cherry-pick [`ea996ad`](https://github.com/nodejs/node/commit/ea996ad04a68) (Antoine du Hamel) [#&#8203;50183](https://github.com/nodejs/node/pull/50183) - \[[`16fd730e95`](https://github.com/nodejs/node/commit/16fd730e95)] - **deps**: V8: cherry-pick [`a0fd320`](https://github.com/nodejs/node/commit/a0fd3209dda8) (Antoine du Hamel) [#&#8203;50183](https://github.com/nodejs/node/pull/50183) - \[[`614c3620c3`](https://github.com/nodejs/node/commit/614c3620c3)] - **deps**: update corepack to 0.21.0 (Node.js GitHub Bot) [#&#8203;50088](https://github.com/nodejs/node/pull/50088) - \[[`545aa74ae2`](https://github.com/nodejs/node/commit/545aa74ae2)] - **deps**: update simdutf to 3.2.18 (Node.js GitHub Bot) [#&#8203;50091](https://github.com/nodejs/node/pull/50091) - \[[`9302806c0a`](https://github.com/nodejs/node/commit/9302806c0a)] - **deps**: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) [#&#8203;50085](https://github.com/nodejs/node/pull/50085) - \[[`03bf5c5d9a`](https://github.com/nodejs/node/commit/03bf5c5d9a)] - **deps**: update googletest to [`2dd1c13`](https://github.com/nodejs/node/commit/2dd1c13) (Node.js GitHub Bot) [#&#8203;50081](https://github.com/nodejs/node/pull/50081) - \[[`cd8e90690b`](https://github.com/nodejs/node/commit/cd8e90690b)] - **deps**: update googletest to [`e47544a`](https://github.com/nodejs/node/commit/e47544a) (Node.js GitHub Bot) [#&#8203;49982](https://github.com/nodejs/node/pull/49982) - \[[`40672cfe53`](https://github.com/nodejs/node/commit/40672cfe53)] - **deps**: update ada to 2.6.10 (Node.js GitHub Bot) [#&#8203;49984](https://github.com/nodejs/node/pull/49984) - \[[`34c7eb0eb2`](https://github.com/nodejs/node/commit/34c7eb0eb2)] - **deps**: fix call to undeclared functions 'ntohl' and 'htons' (MatteoBax) [#&#8203;49979](https://github.com/nodejs/node/pull/49979) - \[[`03654b44b6`](https://github.com/nodejs/node/commit/03654b44b6)] - **deps**: update ada to 2.6.9 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`4c740b1dd8`](https://github.com/nodejs/node/commit/4c740b1dd8)] - **deps**: update ada to 2.6.8 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`759cf5a760`](https://github.com/nodejs/node/commit/759cf5a760)] - **deps**: update ada to 2.6.7 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`31a4e9781a`](https://github.com/nodejs/node/commit/31a4e9781a)] - **deps**: update ada to 2.6.5 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`2ca867f2ab`](https://github.com/nodejs/node/commit/2ca867f2ab)] - **deps**: update ada to 2.6.3 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`21453ae555`](https://github.com/nodejs/node/commit/21453ae555)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908) - \[[`7ca1228be8`](https://github.com/nodejs/node/commit/7ca1228be8)] - **deps**: V8: cherry-pick [`8ec2651`](https://github.com/nodejs/node/commit/8ec2651fbdd8) (Abdirahim Musse) [#&#8203;49862](https://github.com/nodejs/node/pull/49862) - \[[`3cc41d253c`](https://github.com/nodejs/node/commit/3cc41d253c)] - **deps**: upgrade npm to 10.2.0 (npm team) [#&#8203;50027](https://github.com/nodejs/node/pull/50027) - \[[`61b4afb7dd`](https://github.com/nodejs/node/commit/61b4afb7dd)] - **deps**: update undici to 5.26.4 (Node.js GitHub Bot) [#&#8203;50274](https://github.com/nodejs/node/pull/50274) - \[[`ea28738336`](https://github.com/nodejs/node/commit/ea28738336)] - **doc**: add loong64 info into platform list (Shi Pujin) [#&#8203;50086](https://github.com/nodejs/node/pull/50086) - \[[`00c12b7a20`](https://github.com/nodejs/node/commit/00c12b7a20)] - **doc**: update release process LTS step (Richard Lau) [#&#8203;50299](https://github.com/nodejs/node/pull/50299) - \[[`a9ba29ba10`](https://github.com/nodejs/node/commit/a9ba29ba10)] - **doc**: fix release process table of contents (Richard Lau) [#&#8203;50216](https://github.com/nodejs/node/pull/50216) - \[[`4b5033519e`](https://github.com/nodejs/node/commit/4b5033519e)] - **doc**: update api `stream.compose` (Alex Yang) [#&#8203;50206](https://github.com/nodejs/node/pull/50206) - \[[`d4659e2080`](https://github.com/nodejs/node/commit/d4659e2080)] - **doc**: add ReflectConstruct to known perf issues (Vinicius Lourenço) [#&#8203;50111](https://github.com/nodejs/node/pull/50111) - \[[`ffa94612fd`](https://github.com/nodejs/node/commit/ffa94612fd)] - **doc**: fix typo in dgram docs (Peter Johnson) [#&#8203;50211](https://github.com/nodejs/node/pull/50211) - \[[`f37b577b14`](https://github.com/nodejs/node/commit/f37b577b14)] - **doc**: fix H4ad collaborator sort (Vinicius Lourenço) [#&#8203;50218](https://github.com/nodejs/node/pull/50218) - \[[`c75264b1f9`](https://github.com/nodejs/node/commit/c75264b1f9)] - **doc**: add H4ad to collaborators (Vinícius Lourenço) [#&#8203;50217](https://github.com/nodejs/node/pull/50217) - \[[`5025e24ac7`](https://github.com/nodejs/node/commit/5025e24ac7)] - **doc**: update release-stewards with last sec-release (Rafael Gonzaga) [#&#8203;50179](https://github.com/nodejs/node/pull/50179) - \[[`63379313d5`](https://github.com/nodejs/node/commit/63379313d5)] - **doc**: add command to keep major branch sync (Rafael Gonzaga) [#&#8203;50102](https://github.com/nodejs/node/pull/50102) - \[[`85de4b8254`](https://github.com/nodejs/node/commit/85de4b8254)] - **doc**: add loong64 to list of architectures (Shi Pujin) [#&#8203;50172](https://github.com/nodejs/node/pull/50172) - \[[`ff8e1b860e`](https://github.com/nodejs/node/commit/ff8e1b860e)] - **doc**: update security release process (Michael Dawson) [#&#8203;50166](https://github.com/nodejs/node/pull/50166) - \[[`33470d965c`](https://github.com/nodejs/node/commit/33470d965c)] - **doc**: improve ccache explanation (Chengzhong Wu) [#&#8203;50133](https://github.com/nodejs/node/pull/50133) - \[[`7b97c44e2a`](https://github.com/nodejs/node/commit/7b97c44e2a)] - **doc**: move danielleadams to TSC non-voting member (Danielle Adams) [#&#8203;50142](https://github.com/nodejs/node/pull/50142) - \[[`3d03ca9f31`](https://github.com/nodejs/node/commit/3d03ca9f31)] - **doc**: fix description of `fs.readdir` `recursive` option (RamdohokarAngha) [#&#8203;48902](https://github.com/nodejs/node/pull/48902) - \[[`aab045ec4b`](https://github.com/nodejs/node/commit/aab045ec4b)] - **doc**: mention files read before env setup (Rafael Gonzaga) [#&#8203;50072](https://github.com/nodejs/node/pull/50072) - \[[`26a7608a24`](https://github.com/nodejs/node/commit/26a7608a24)] - **doc**: move permission model to Active Development (Rafael Gonzaga) [#&#8203;50068](https://github.com/nodejs/node/pull/50068) - \[[`d7bbf7f2c4`](https://github.com/nodejs/node/commit/d7bbf7f2c4)] - **doc**: add command to get patch minors and majors (Rafael Gonzaga) [#&#8203;50067](https://github.com/nodejs/node/pull/50067) - \[[`9830165e34`](https://github.com/nodejs/node/commit/9830165e34)] - **doc**: use precise promise terminology in fs (Benjamin Gruenbaum) [#&#8203;50029](https://github.com/nodejs/node/pull/50029) - \[[`585cbb211d`](https://github.com/nodejs/node/commit/585cbb211d)] - **doc**: use precise terminology in test runner (Benjamin Gruenbaum) [#&#8203;50028](https://github.com/nodejs/node/pull/50028) - \[[`2862f07124`](https://github.com/nodejs/node/commit/2862f07124)] - **doc**: clarify explaination text on how to run the example (Anshul Sinha) [#&#8203;39020](https://github.com/nodejs/node/pull/39020) - \[[`fe47c8ad91`](https://github.com/nodejs/node/commit/fe47c8ad91)] - **doc**: reserve 119 for Electron 28 (David Sanders) [#&#8203;50020](https://github.com/nodejs/node/pull/50020) - \[[`36ecd2c588`](https://github.com/nodejs/node/commit/36ecd2c588)] - **doc**: update Collaborator pronouns (Tierney Cyren) [#&#8203;50005](https://github.com/nodejs/node/pull/50005) - \[[`315d82a73e`](https://github.com/nodejs/node/commit/315d82a73e)] - **doc**: update link to Abstract Modules Records spec (Rich Trott) [#&#8203;49961](https://github.com/nodejs/node/pull/49961) - \[[`f63a92bb6c`](https://github.com/nodejs/node/commit/f63a92bb6c)] - **doc**: updated building docs for windows (Claudio W) [#&#8203;49767](https://github.com/nodejs/node/pull/49767) - \[[`ad17126501`](https://github.com/nodejs/node/commit/ad17126501)] - **doc**: update CHANGELOG_V20 about vm fixes (Joyee Cheung) [#&#8203;49951](https://github.com/nodejs/node/pull/49951) - \[[`24458e2ac3`](https://github.com/nodejs/node/commit/24458e2ac3)] - **doc**: document dangerous symlink behavior (Tobias Nießen) [#&#8203;49154](https://github.com/nodejs/node/pull/49154) - \[[`337a676d1f`](https://github.com/nodejs/node/commit/337a676d1f)] - **doc**: add main ARIA landmark to API docs (Rich Trott) [#&#8203;49882](https://github.com/nodejs/node/pull/49882) - \[[`959ef7ac6b`](https://github.com/nodejs/node/commit/959ef7ac6b)] - **doc**: add navigation ARIA landmark to doc ToC (Rich Trott) [#&#8203;49882](https://github.com/nodejs/node/pull/49882) - \[[`a60fbf2ab3`](https://github.com/nodejs/node/commit/a60fbf2ab3)] - **doc**: mark Node.js 19 as End-of-Life (Richard Lau) [#&#8203;48283](https://github.com/nodejs/node/pull/48283) - \[[`c255575699`](https://github.com/nodejs/node/commit/c255575699)] - **errors**: improve performance of determine-specific-type (Aras Abbasi) [#&#8203;49696](https://github.com/nodejs/node/pull/49696) - \[[`e66991e6b2`](https://github.com/nodejs/node/commit/e66991e6b2)] - **errors**: improve formatList in errors.js (Aras Abbasi) [#&#8203;49642](https://github.com/nodejs/node/pull/49642) - \[[`c71e548b65`](https://github.com/nodejs/node/commit/c71e548b65)] - **errors**: improve performance of instantiation (Aras Abbasi) [#&#8203;49654](https://github.com/nodejs/node/pull/49654) - \[[`3b867e4256`](https://github.com/nodejs/node/commit/3b867e4256)] - **esm**: do not give wrong hints when detecting file format (Antoine du Hamel) [#&#8203;50314](https://github.com/nodejs/node/pull/50314) - \[[`a589a1a905`](https://github.com/nodejs/node/commit/a589a1a905)] - **(SEMVER-MINOR)** **esm**: detect ESM syntax in ambiguous JavaScript (Geoffrey Booth) [#&#8203;50096](https://github.com/nodejs/node/pull/50096) - \[[`c64490e9aa`](https://github.com/nodejs/node/commit/c64490e9aa)] - **esm**: improve check for ESM syntax (Geoffrey Booth) [#&#8203;50127](https://github.com/nodejs/node/pull/50127) - \[[`ee65e44c31`](https://github.com/nodejs/node/commit/ee65e44c31)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140) - \[[`4de838fdeb`](https://github.com/nodejs/node/commit/4de838fdeb)] - **esm**: bypass CommonJS loader under --default-type (Geoffrey Booth) [#&#8203;49986](https://github.com/nodejs/node/pull/49986) - \[[`27e02b633d`](https://github.com/nodejs/node/commit/27e02b633d)] - **esm**: unflag extensionless javascript and wasm in module scope (Geoffrey Booth) [#&#8203;49974](https://github.com/nodejs/node/pull/49974) - \[[`1e762ddf63`](https://github.com/nodejs/node/commit/1e762ddf63)] - **esm**: improve `getFormatOfExtensionlessFile` speed (Yagiz Nizipli) [#&#8203;49965](https://github.com/nodejs/node/pull/49965) - \[[`112cc7f9f2`](https://github.com/nodejs/node/commit/112cc7f9f2)] - **esm**: improve JSDoc annotation of internal functions (Antoine du Hamel) [#&#8203;49959](https://github.com/nodejs/node/pull/49959) - \[[`c48cd84188`](https://github.com/nodejs/node/commit/c48cd84188)] - **esm**: fix cache collision on JSON files using file: URL (Antoine du Hamel) [#&#8203;49887](https://github.com/nodejs/node/pull/49887) - \[[`dc80ccef25`](https://github.com/nodejs/node/commit/dc80ccef25)] - **esm**: --experimental-default-type flag to flip module defaults (Geoffrey Booth) [#&#8203;49869](https://github.com/nodejs/node/pull/49869) - \[[`01039795a2`](https://github.com/nodejs/node/commit/01039795a2)] - **esm**: require braces for modules code (Geoffrey Booth) [#&#8203;49657](https://github.com/nodejs/node/pull/49657) - \[[`e49ebf8f9a`](https://github.com/nodejs/node/commit/e49ebf8f9a)] - **fs**: improve error performance for `readSync` (Jungku Lee) [#&#8203;50033](https://github.com/nodejs/node/pull/50033) - \[[`eb33f70260`](https://github.com/nodejs/node/commit/eb33f70260)] - **fs**: improve error performance for `fsyncSync` (Jungku Lee) [#&#8203;49880](https://github.com/nodejs/node/pull/49880) - \[[`8d0edc6399`](https://github.com/nodejs/node/commit/8d0edc6399)] - **fs**: improve error performance for `mkdirSync` (CanadaHonk) [#&#8203;49847](https://github.com/nodejs/node/pull/49847) - \[[`36df27509e`](https://github.com/nodejs/node/commit/36df27509e)] - **fs**: improve error performance of `realpathSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`4242cb7d7f`](https://github.com/nodejs/node/commit/4242cb7d7f)] - **fs**: improve error performance of `lchownSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`89e7878e44`](https://github.com/nodejs/node/commit/89e7878e44)] - **fs**: improve error performance of `symlinkSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`af6a0611fe`](https://github.com/nodejs/node/commit/af6a0611fe)] - **fs**: improve error performance of `readlinkSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`12cda31c52`](https://github.com/nodejs/node/commit/12cda31c52)] - **fs**: improve error performance of `mkdtempSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`9dba771acb`](https://github.com/nodejs/node/commit/9dba771acb)] - **fs**: improve error performance of `linkSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`ea7902de13`](https://github.com/nodejs/node/commit/ea7902de13)] - **fs**: improve error performance of `chownSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`39f31a38cf`](https://github.com/nodejs/node/commit/39f31a38cf)] - **fs**: improve error performance of `renameSync` (Yagiz Nizipli) [#&#8203;49962](https://github.com/nodejs/node/pull/49962) - \[[`35164fa466`](https://github.com/nodejs/node/commit/35164fa466)] - **(SEMVER-MINOR)** **fs**: add flush option to appendFile() functions (Colin Ihrig) [#&#8203;50095](https://github.com/nodejs/node/pull/50095) - \[[`06aa4b9fe9`](https://github.com/nodejs/node/commit/06aa4b9fe9)] - **fs**: improve error performance of `readdirSync` (Yagiz Nizipli) [#&#8203;50131](https://github.com/nodejs/node/pull/50131) - \[[`b5aecebcd6`](https://github.com/nodejs/node/commit/b5aecebcd6)] - **fs**: fix `unlinkSync` typings (Yagiz Nizipli) [#&#8203;49859](https://github.com/nodejs/node/pull/49859) - \[[`6ddea07225`](https://github.com/nodejs/node/commit/6ddea07225)] - **fs**: improve error perf of sync `chmod`+`fchmod` (CanadaHonk) [#&#8203;49859](https://github.com/nodejs/node/pull/49859) - \[[`841367078e`](https://github.com/nodejs/node/commit/841367078e)] - **fs**: improve error perf of sync `*times` (CanadaHonk) [#&#8203;49864](https://github.com/nodejs/node/pull/49864) - \[[`eb52f73e3e`](https://github.com/nodejs/node/commit/eb52f73e3e)] - **fs**: improve error performance of writevSync (IlyasShabi) [#&#8203;50038](https://github.com/nodejs/node/pull/50038) - \[[`d1aa62f1f5`](https://github.com/nodejs/node/commit/d1aa62f1f5)] - **fs**: add flush option to createWriteStream() (Colin Ihrig) [#&#8203;50093](https://github.com/nodejs/node/pull/50093) - \[[`57eb06edff`](https://github.com/nodejs/node/commit/57eb06edff)] - **fs**: improve error performance for `ftruncateSync` (André Alves) [#&#8203;50032](https://github.com/nodejs/node/pull/50032) - \[[`22e3eb659a`](https://github.com/nodejs/node/commit/22e3eb659a)] - **fs**: add flush option to writeFile() functions (Colin Ihrig) [#&#8203;50009](https://github.com/nodejs/node/pull/50009) - \[[`d7132d9214`](https://github.com/nodejs/node/commit/d7132d9214)] - **fs**: improve error performance for `fdatasyncSync` (Jungku Lee) [#&#8203;49898](https://github.com/nodejs/node/pull/49898) - \[[`bc2c0410d3`](https://github.com/nodejs/node/commit/bc2c0410d3)] - **fs**: throw errors from sync branches instead of separate implementations (Joyee Cheung) [#&#8203;49913](https://github.com/nodejs/node/pull/49913) - \[[`f46bcf1749`](https://github.com/nodejs/node/commit/f46bcf1749)] - **http**: refactor to make servername option normalization testable (Rongjian Zhang) [#&#8203;38733](https://github.com/nodejs/node/pull/38733) - \[[`1bfcf817af`](https://github.com/nodejs/node/commit/1bfcf817af)] - **http2**: allow streams to complete gracefully after goaway (Michael Lumish) [#&#8203;50202](https://github.com/nodejs/node/pull/50202) - \[[`5c66ec9e66`](https://github.com/nodejs/node/commit/5c66ec9e66)] - **inspector**: simplify dispatchProtocolMessage (Daniel Lemire) [#&#8203;49780](https://github.com/nodejs/node/pull/49780) - \[[`251ae1dd72`](https://github.com/nodejs/node/commit/251ae1dd72)] - **lib**: improve performance of validateStringArray and validateBooleanArray (Aras Abbasi) [#&#8203;49756](https://github.com/nodejs/node/pull/49756) - \[[`d9c791a508`](https://github.com/nodejs/node/commit/d9c791a508)] - **lib**: fix compileFunction throws range error for negative numbers (Jithil P Ponnan) [#&#8203;49855](https://github.com/nodejs/node/pull/49855) - \[[`24cbc550c2`](https://github.com/nodejs/node/commit/24cbc550c2)] - **lib**: reduce overhead of validateObject (Vinicius Lourenço) [#&#8203;49928](https://github.com/nodejs/node/pull/49928) - \[[`b80e9497f3`](https://github.com/nodejs/node/commit/b80e9497f3)] - **lib**: make fetch sync and return a Promise (Matthew Aitken) [#&#8203;49936](https://github.com/nodejs/node/pull/49936) - \[[`d9eda6761b`](https://github.com/nodejs/node/commit/d9eda6761b)] - **lib**: fix `primordials` typings (Sam Verschueren) [#&#8203;49895](https://github.com/nodejs/node/pull/49895) - \[[`3e0d47c1f4`](https://github.com/nodejs/node/commit/3e0d47c1f4)] - **lib**: update params in jsdoc for `HTTPRequestOptions` (Jungku Lee) [#&#8203;49872](https://github.com/nodejs/node/pull/49872) - \[[`a01050dec4`](https://github.com/nodejs/node/commit/a01050dec4)] - **(SEMVER-MINOR)** **lib**: add WebSocket client (Matthew Aitken) [#&#8203;49830](https://github.com/nodejs/node/pull/49830) - \[[`5bca8feed2`](https://github.com/nodejs/node/commit/5bca8feed2)] - **lib,test**: do not hardcode Buffer.kMaxLength (Michaël Zasso) [#&#8203;49876](https://github.com/nodejs/node/pull/49876) - \[[`e8ebed7a24`](https://github.com/nodejs/node/commit/e8ebed7a24)] - **meta**: move Trott to TSC regular member (Rich Trott) [#&#8203;50297](https://github.com/nodejs/node/pull/50297) - \[[`27e957cea8`](https://github.com/nodejs/node/commit/27e957cea8)] - **meta**: ping TSC for offboarding (Tobias Nießen) [#&#8203;50147](https://github.com/nodejs/node/pull/50147) - \[[`fab39062d5`](https://github.com/nodejs/node/commit/fab39062d5)] - **meta**: bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot\[bot]) [#&#8203;50000](https://github.com/nodejs/node/pull/50000) - \[[`46ec82496c`](https://github.com/nodejs/node/commit/46ec82496c)] - **meta**: bump actions/cache from 3.3.1 to 3.3.2 (dependabot\[bot]) [#&#8203;50003](https://github.com/nodejs/node/pull/50003) - \[[`a634fb431e`](https://github.com/nodejs/node/commit/a634fb431e)] - **meta**: bump github/codeql-action from 2.21.5 to 2.21.9 (dependabot\[bot]) [#&#8203;50002](https://github.com/nodejs/node/pull/50002) - \[[`c221f72911`](https://github.com/nodejs/node/commit/c221f72911)] - **meta**: bump actions/checkout from 3.6.0 to 4.1.0 (dependabot\[bot]) [#&#8203;50001](https://github.com/nodejs/node/pull/50001) - \[[`d356e5e395`](https://github.com/nodejs/node/commit/d356e5e395)] - **meta**: update website team with new name (Rich Trott) [#&#8203;49883](https://github.com/nodejs/node/pull/49883) - \[[`2ff4e71452`](https://github.com/nodejs/node/commit/2ff4e71452)] - **module**: move helpers out of cjs loader (Geoffrey Booth) [#&#8203;49912](https://github.com/nodejs/node/pull/49912) - \[[`142ac3f82d`](https://github.com/nodejs/node/commit/142ac3f82d)] - **module, esm**: jsdoc for modules files (Geoffrey Booth) [#&#8203;49523](https://github.com/nodejs/node/pull/49523) - \[[`e2f0ef2a60`](https://github.com/nodejs/node/commit/e2f0ef2a60)] - **node-api**: update headers for better wasm support (Toyo Li) [#&#8203;49037](https://github.com/nodejs/node/pull/49037) - \[[`db2a07fcd6`](https://github.com/nodejs/node/commit/db2a07fcd6)] - **node-api**: run finalizers directly from GC (Vladimir Morozov) [#&#8203;42651](https://github.com/nodejs/node/pull/42651) - \[[`c25716be8b`](https://github.com/nodejs/node/commit/c25716be8b)] - **os**: cache homedir, remove getCheckedFunction (Aras Abbasi) [#&#8203;50037](https://github.com/nodejs/node/pull/50037) - \[[`e8f024b4db`](https://github.com/nodejs/node/commit/e8f024b4db)] - **perf_hooks**: reduce overhead of new user timings (Vinicius Lourenço) [#&#8203;49914](https://github.com/nodejs/node/pull/49914) - \[[`a517be0a5a`](https://github.com/nodejs/node/commit/a517be0a5a)] - **perf_hooks**: reducing overhead of performance observer entry list (Vinicius Lourenço) [#&#8203;50008](https://github.com/nodejs/node/pull/50008) - \[[`42e49ec381`](https://github.com/nodejs/node/commit/42e49ec381)] - **perf_hooks**: reduce overhead of new resource timings (Vinicius Lourenço) [#&#8203;49837](https://github.com/nodejs/node/pull/49837) - \[[`c99e51ed1b`](https://github.com/nodejs/node/commit/c99e51ed1b)] - **src**: generate default snapshot with --predictable (Joyee Cheung) [#&#8203;48749](https://github.com/nodejs/node/pull/48749) - \[[`47164e238f`](https://github.com/nodejs/node/commit/47164e238f)] - **src**: fix TLSWrap lifetime bug in ALPN callback (Ben Noordhuis) [#&#8203;49635](https://github.com/nodejs/node/pull/49635) - \[[`e1df69e73e`](https://github.com/nodejs/node/commit/e1df69e73e)] - **src**: set port in node_options to uint16\_t (Yagiz Nizipli) [#&#8203;49151](https://github.com/nodejs/node/pull/49151) - \[[`1eb2af29b4`](https://github.com/nodejs/node/commit/1eb2af29b4)] - **src**: name scoped lock (Mohammed Keyvanzadeh) [#&#8203;50010](https://github.com/nodejs/node/pull/50010) - \[[`5131fde655`](https://github.com/nodejs/node/commit/5131fde655)] - **src**: use exact return value for `uv_os_getenv` (Yagiz Nizipli) [#&#8203;49149](https://github.com/nodejs/node/pull/49149) - \[[`ba169be5ca`](https://github.com/nodejs/node/commit/ba169be5ca)] - **src**: move const variable in `node_file.h` to `node_file.cc` (Jungku Lee) [#&#8203;49688](https://github.com/nodejs/node/pull/49688) - \[[`5a2351d3ab`](https://github.com/nodejs/node/commit/5a2351d3ab)] - **src**: remove unused variable (Michaël Zasso) [#&#8203;49665](https://github.com/nodejs/node/pull/49665) - \[[`f2f993a32f`](https://github.com/nodejs/node/commit/f2f993a32f)] - **stream**: simplify prefinish (Robert Nagy) [#&#8203;50204](https://github.com/nodejs/node/pull/50204) - \[[`6d7274e3ca`](https://github.com/nodejs/node/commit/6d7274e3ca)] - **stream**: reduce scope of readable bitmap details (Robert Nagy) [#&#8203;49963](https://github.com/nodejs/node/pull/49963) - \[[`ffdc357167`](https://github.com/nodejs/node/commit/ffdc357167)] - **(SEMVER-MINOR)** **stream**: allow pass stream class to `stream.compose` (Alex Yang) [#&#8203;50187](https://github.com/nodejs/node/pull/50187) - \[[`4861ad6431`](https://github.com/nodejs/node/commit/4861ad6431)] - **stream**: call helper function from push and unshift (Raz Luvaton) [#&#8203;50173](https://github.com/nodejs/node/pull/50173) - \[[`e60b3ab31b`](https://github.com/nodejs/node/commit/e60b3ab31b)] - **stream**: use private symbol for bitmap state (Robert Nagy) [#&#8203;49993](https://github.com/nodejs/node/pull/49993) - \[[`ecbfb23f6b`](https://github.com/nodejs/node/commit/ecbfb23f6b)] - **stream**: lazy allocate back pressure buffer (Robert Nagy) [#&#8203;50013](https://github.com/nodejs/node/pull/50013) - \[[`88c739bef4`](https://github.com/nodejs/node/commit/88c739bef4)] - **stream**: avoid unnecessary drain for sync stream (Robert Nagy) [#&#8203;50014](https://github.com/nodejs/node/pull/50014) - \[[`4b27087b30`](https://github.com/nodejs/node/commit/4b27087b30)] - **stream**: optimize Writable (Robert Nagy) [#&#8203;50012](https://github.com/nodejs/node/pull/50012) - \[[`def55f80a1`](https://github.com/nodejs/node/commit/def55f80a1)] - **stream**: avoid tick in writable hot path (Robert Nagy) [#&#8203;49966](https://github.com/nodejs/node/pull/49966) - \[[`35ec93115d`](https://github.com/nodejs/node/commit/35ec93115d)] - **stream**: writable state bitmap (Robert Nagy) [#&#8203;49899](https://github.com/nodejs/node/pull/49899) - \[[`6e0f0fafe4`](https://github.com/nodejs/node/commit/6e0f0fafe4)] - **test**: use ppc and ppc64 to skip SEA tests on PowerPC (Joyee Cheung) [#&#8203;50828](https://github.com/nodejs/node/pull/50828) - \[[`a528bbceca`](https://github.com/nodejs/node/commit/a528bbceca)] - **test**: mark SEA tests as flaky on PowerPC (Joyee Cheung) [#&#8203;50750](https://github.com/nodejs/node/pull/50750) - \[[`4e34f9a26e`](https://github.com/nodejs/node/commit/4e34f9a26e)] - **test**: relax version check with shared OpenSSL (Luigi Pinca) [#&#8203;50505](https://github.com/nodejs/node/pull/50505) - \[[`41ca1132eb`](https://github.com/nodejs/node/commit/41ca1132eb)] - **test**: fix crypto-dh error message for OpenSSL 3.x (Kerem Kat) [#&#8203;50395](https://github.com/nodejs/node/pull/50395) - \[[`a6a05e8a88`](https://github.com/nodejs/node/commit/a6a05e8a88)] - **test**: fix testsuite against zlib version 1.3 (Dominique Leuenberger) [#&#8203;50364](https://github.com/nodejs/node/pull/50364) - \[[`8dd895e574`](https://github.com/nodejs/node/commit/8dd895e574)] - **test**: replace forEach with for..of in test-process-env (Niya Shiyas) [#&#8203;49825](https://github.com/nodejs/node/pull/49825) - \[[`81886c66d1`](https://github.com/nodejs/node/commit/81886c66d1)] - **test**: replace forEach with for..of in test-http-url (Niya Shiyas) [#&#8203;49840](https://github.com/nodejs/node/pull/49840) - \[[`7d8a18b257`](https://github.com/nodejs/node/commit/7d8a18b257)] - **test**: improve watch mode test (Moshe Atlow) [#&#8203;50319](https://github.com/nodejs/node/pull/50319) - \[[`baa04b79ca`](https://github.com/nodejs/node/commit/baa04b79ca)] - **test**: set `test-watch-mode-inspect` as flaky (Yagiz Nizipli) [#&#8203;50259](https://github.com/nodejs/node/pull/50259) - \[[`3d9130bc2e`](https://github.com/nodejs/node/commit/3d9130bc2e)] - ***Revert*** "**test**: set `test-esm-loader-resolve-type` as flaky" (Antoine du Hamel) [#&#8203;50315](https://github.com/nodejs/node/pull/50315) - \[[`72626f9a35`](https://github.com/nodejs/node/commit/72626f9a35)] - **test**: replace forEach with for..of in test-http-perf_hooks.js (Niya Shiyas) [#&#8203;49818](https://github.com/nodejs/node/pull/49818) - \[[`379a7255e8`](https://github.com/nodejs/node/commit/379a7255e8)] - **test**: replace forEach with for..of in test-net-isipv4.js (Niya Shiyas) [#&#8203;49822](https://github.com/nodejs/node/pull/49822) - \[[`b55fcd75da`](https://github.com/nodejs/node/commit/b55fcd75da)] - **test**: deflake `test-esm-loader-resolve-type` (Antoine du Hamel) [#&#8203;50273](https://github.com/nodejs/node/pull/50273) - \[[`0134af3eeb`](https://github.com/nodejs/node/commit/0134af3eeb)] - **test**: replace forEach with for..of in test-http2-server (Niya Shiyas) [#&#8203;49819](https://github.com/nodejs/node/pull/49819) - \[[`8c15281d06`](https://github.com/nodejs/node/commit/8c15281d06)] - **test**: replace forEach with for..of in test-http2-client-destroy.js (Niya Shiyas) [#&#8203;49820](https://github.com/nodejs/node/pull/49820) - \[[`c37a75a898`](https://github.com/nodejs/node/commit/c37a75a898)] - **test**: update `url` web platform tests (Yagiz Nizipli) [#&#8203;50264](https://github.com/nodejs/node/pull/50264) - \[[`ab5985d0e9`](https://github.com/nodejs/node/commit/ab5985d0e9)] - **test**: set `test-emit-after-on-destroyed` as flaky (Yagiz Nizipli) [#&#8203;50246](https://github.com/nodejs/node/pull/50246) - \[[`50181a19b8`](https://github.com/nodejs/node/commit/50181a19b8)] - **test**: set inspector async stack test as flaky (Yagiz Nizipli) [#&#8203;50244](https://github.com/nodejs/node/pull/50244) - \[[`b9e0fed995`](https://github.com/nodejs/node/commit/b9e0fed995)] - **test**: set test-worker-nearheaplimit-deadlock flaky (StefanStojanovic) [#&#8203;50277](https://github.com/nodejs/node/pull/50277) - \[[`2cfc4007d1`](https://github.com/nodejs/node/commit/2cfc4007d1)] - **test**: set `test-cli-node-options` as flaky (Yagiz Nizipli) [#&#8203;50296](https://github.com/nodejs/node/pull/50296) - \[[`788714b28f`](https://github.com/nodejs/node/commit/788714b28f)] - **test**: reduce the number of requests and parsers (Luigi Pinca) [#&#8203;50240](https://github.com/nodejs/node/pull/50240) - \[[`0dce19c8f6`](https://github.com/nodejs/node/commit/0dce19c8f6)] - **test**: set crypto-timing test as flaky (Yagiz Nizipli) [#&#8203;50232](https://github.com/nodejs/node/pull/50232) - \[[`5d4b5ff1b8`](https://github.com/nodejs/node/commit/5d4b5ff1b8)] - **test**: set `test-structuredclone-*` as flaky (Yagiz Nizipli) [#&#8203;50261](https://github.com/nodejs/node/pull/50261) - \[[`5c56081d67`](https://github.com/nodejs/node/commit/5c56081d67)] - **test**: deflake `test-loaders-workers-spawned` (Antoine du Hamel) [#&#8203;50251](https://github.com/nodejs/node/pull/50251) - \[[`3441e1982d`](https://github.com/nodejs/node/commit/3441e1982d)] - **test**: improve code coverage of diagnostics_channel (Jithil P Ponnan) [#&#8203;50053](https://github.com/nodejs/node/pull/50053) - \[[`696ba93329`](https://github.com/nodejs/node/commit/696ba93329)] - **test**: set `test-esm-loader-resolve-type` as flaky (Yagiz Nizipli) [#&#8203;50226](https://github.com/nodejs/node/pull/50226) - \[[`8b260c5d6b`](https://github.com/nodejs/node/commit/8b260c5d6b)] - **test**: set inspector async hook test as flaky (Yagiz Nizipli) [#&#8203;50252](https://github.com/nodejs/node/pull/50252) - \[[`f3296d25e8`](https://github.com/nodejs/node/commit/f3296d25e8)] - **test**: skip test-benchmark-os.js on IBM i (Abdirahim Musse) [#&#8203;50208](https://github.com/nodejs/node/pull/50208) - \[[`fefe17b02e`](https://github.com/nodejs/node/commit/fefe17b02e)] - **test**: set parallel http server test as flaky (Yagiz Nizipli) [#&#8203;50227](https://github.com/nodejs/node/pull/50227) - \[[`228c87f329`](https://github.com/nodejs/node/commit/228c87f329)] - **test**: set test-worker-nearheaplimit-deadlock flaky (Stefan Stojanovic) [#&#8203;50238](https://github.com/nodejs/node/pull/50238) - \[[`c2c2506eab`](https://github.com/nodejs/node/commit/c2c2506eab)] - **test**: set `test-runner-watch-mode` as flaky (Yagiz Nizipli) [#&#8203;50221](https://github.com/nodejs/node/pull/50221) - \[[`16a07983d4`](https://github.com/nodejs/node/commit/16a07983d4)] - **test**: set sea snapshot tests as flaky (Yagiz Nizipli) [#&#8203;50223](https://github.com/nodejs/node/pull/50223) - \[[`7cd406a0b8`](https://github.com/nodejs/node/commit/7cd406a0b8)] - **test**: fix defect path traversal tests (Tobias Nießen) [#&#8203;50124](https://github.com/nodejs/node/pull/50124) - \[[`1cf3f8da32`](https://github.com/nodejs/node/commit/1cf3f8da32)] - **test**: replace forEach with for..of in test-net-isipv6.js (Niya Shiyas) [#&#8203;49823](https://github.com/nodejs/node/pull/49823) - \[[`214997a99e`](https://github.com/nodejs/node/commit/214997a99e)] - **test**: reduce number of repetition in test-heapdump-shadowrealm.js (Chengzhong Wu) [#&#8203;50104](https://github.com/nodejs/node/pull/50104) - \[[`9d836516e6`](https://github.com/nodejs/node/commit/9d836516e6)] - **test**: replace forEach with for..of in test-parse-args.mjs (Niya Shiyas) [#&#8203;49824](https://github.com/nodejs/node/pull/49824) - \[[`fee8b24603`](https://github.com/nodejs/node/commit/fee8b24603)] - **test**: replace forEach() in test-net-perf_hooks with for of (Narcisa Codreanu) [#&#8203;49831](https://github.com/nodejs/node/pull/49831) - \[[`4c58b92ba8`](https://github.com/nodejs/node/commit/4c58b92ba8)] - **test**: change forEach to for...of (Tiffany Lastimosa) [#&#8203;49799](https://github.com/nodejs/node/pull/49799) - \[[`01b01527d7`](https://github.com/nodejs/node/commit/01b01527d7)] - **test**: update skip for moved `test-wasm-web-api` (Richard Lau) [#&#8203;49958](https://github.com/nodejs/node/pull/49958) - \[[`179e293103`](https://github.com/nodejs/node/commit/179e293103)] - ***Revert*** "**test**: mark test-runner-output as flaky" (Luigi Pinca) [#&#8203;49905](https://github.com/nodejs/node/pull/49905) - \[[`829eb99afd`](https://github.com/nodejs/node/commit/829eb99afd)] - **test**: disambiguate AIX and IBM i (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056) - \[[`126407d438`](https://github.com/nodejs/node/commit/126407d438)] - **test**: deflake test-perf-hooks.js (Joyee Cheung) [#&#8203;49892](https://github.com/nodejs/node/pull/49892) - \[[`393fd5b7c9`](https://github.com/nodejs/node/commit/393fd5b7c9)] - **test**: migrate message error tests from Python to JS (Yiyun Lei) [#&#8203;49721](https://github.com/nodejs/node/pull/49721) - \[[`5dfe4236f8`](https://github.com/nodejs/node/commit/5dfe4236f8)] - **test**: fix edge snapshot stack traces (Geoffrey Booth) [#&#8203;49659](https://github.com/nodejs/node/pull/49659) - \[[`d164e537bf`](https://github.com/nodejs/node/commit/d164e537bf)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;50039](https://github.com/nodejs/node/pull/50039) - \[[`55a03fedae`](https://github.com/nodejs/node/commit/55a03fedae)] - **test_runner**: add test location for FileTests (Colin Ihrig) [#&#8203;49999](https://github.com/nodejs/node/pull/49999) - \[[`10b35cfb6e`](https://github.com/nodejs/node/commit/10b35cfb6e)] - **test_runner**: replace spurious if with else (Colin Ihrig) [#&#8203;49943](https://github.com/nodejs/node/pull/49943) - \[[`27558c4314`](https://github.com/nodejs/node/commit/27558c4314)] - **test_runner**: catch reporter errors (Moshe Atlow) [#&#8203;49646](https://github.com/nodejs/node/pull/49646) - \[[`709c6c0cab`](https://github.com/nodejs/node/commit/709c6c0cab)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996) - \[[`64ef108dd9`](https://github.com/nodejs/node/commit/64ef108dd9)] - **test_runner,test**: fix flaky test-runner-cli-concurrency.js (Colin Ihrig) [#&#8203;50108](https://github.com/nodejs/node/pull/50108) - \[[`d2def152d9`](https://github.com/nodejs/node/commit/d2def152d9)] - **tls**: reduce TLS 'close' event listener warnings (Tim Perry) [#&#8203;50136](https://github.com/nodejs/node/pull/50136) - \[[`294b650f5c`](https://github.com/nodejs/node/commit/294b650f5c)] - **tls**: handle cases where the raw socket is destroyed (Luigi Pinca) [#&#8203;49980](https://github.com/nodejs/node/pull/49980) - \[[`52b5693949`](https://github.com/nodejs/node/commit/52b5693949)] - **tls**: ciphers allow bang syntax (Chemi Atlow) [#&#8203;49712](https://github.com/nodejs/node/pull/49712) - \[[`05ee35028b`](https://github.com/nodejs/node/commit/05ee35028b)] - **tools**: update comment in `update-uncidi.sh` and `acorn_version.h` (Jungku Lee) [#&#8203;50175](https://github.com/nodejs/node/pull/50175) - \[[`35b160e6a3`](https://github.com/nodejs/node/commit/35b160e6a3)] - **tools**: refactor checkimports.py (Mohammed Keyvanzadeh) [#&#8203;50011](https://github.com/nodejs/node/pull/50011) - \[[`b959d36b77`](https://github.com/nodejs/node/commit/b959d36b77)] - **tools**: fix comments referencing dep_updaters scripts (Keksonoid) [#&#8203;50165](https://github.com/nodejs/node/pull/50165) - \[[`bd5d5331b0`](https://github.com/nodejs/node/commit/bd5d5331b0)] - **tools**: remove no-return-await lint rule (翠 / green) [#&#8203;50118](https://github.com/nodejs/node/pull/50118) - \[[`b9adf3d66e`](https://github.com/nodejs/node/commit/b9adf3d66e)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;50083](https://github.com/nodejs/node/pull/50083) - \[[`4978bdc4ec`](https://github.com/nodejs/node/commit/4978bdc4ec)] - **tools**: update eslint to 8.51.0 (Node.js GitHub Bot) [#&#8203;50084](https://github.com/nodejs/node/pull/50084) - \[[`e323a367fd`](https://github.com/nodejs/node/commit/e323a367fd)] - **tools**: remove genv8constants.py (Ben Noordhuis) [#&#8203;50023](https://github.com/nodejs/node/pull/50023) - \[[`1cc6cbff26`](https://github.com/nodejs/node/commit/1cc6cbff26)] - **tools**: update eslint to 8.50.0 (Node.js GitHub Bot) [#&#8203;49989](https://github.com/nodejs/node/pull/49989) - \[[`924231be2a`](https://github.com/nodejs/node/commit/924231be2a)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49983](https://github.com/nodejs/node/pull/49983) - \[[`732b5661ea`](https://github.com/nodejs/node/commit/732b5661ea)] - **tools**: add navigation ARIA landmark to generated API ToC (Rich Trott) [#&#8203;49882](https://github.com/nodejs/node/pull/49882) - \[[`353a14278e`](https://github.com/nodejs/node/commit/353a14278e)] - **tools**: update github_reporter to 1.5.3 (Node.js GitHub Bot) [#&#8203;49877](https://github.com/nodejs/node/pull/49877) - \[[`0aaab45d7c`](https://github.com/nodejs/node/commit/0aaab45d7c)] - **tools**: improve macOS notarization process output readability (Ulises Gascón) [#&#8203;50389](https://github.com/nodejs/node/pull/50389) - \[[`ad326033e2`](https://github.com/nodejs/node/commit/ad326033e2)] - **tools**: remove unused `version` function (Ulises Gascón) [#&#8203;50390](https://github.com/nodejs/node/pull/50390) - \[[`2f32472544`](https://github.com/nodejs/node/commit/2f32472544)] - **tools**: drop support for osx notarization with gon (Ulises Gascón) [#&#8203;50291](https://github.com/nodejs/node/pull/50291) - \[[`3b1c15aeb0`](https://github.com/nodejs/node/commit/3b1c15aeb0)] - **tools**: use osx notarytool for future releases (Ulises Gascon) [#&#8203;48701](https://github.com/nodejs/node/pull/48701) - \[[`0ddb87ede3`](https://github.com/nodejs/node/commit/0ddb87ede3)] - **typings**: use `Symbol.dispose` and `Symbol.asyncDispose` in types (Niklas Mollenhauer) [#&#8203;50123](https://github.com/nodejs/node/pull/50123) - \[[`bf5b2115a0`](https://github.com/nodejs/node/commit/bf5b2115a0)] - **util**: remove internal mime fns from benchmarks (Aras Abbasi) [#&#8203;50201](https://github.com/nodejs/node/pull/50201) - \[[`ac02cdb0ad`](https://github.com/nodejs/node/commit/ac02cdb0ad)] - **util**: lazy parse mime parameters (Aras Abbasi) [#&#8203;49889](https://github.com/nodejs/node/pull/49889) - \[[`9853fd96df`](https://github.com/nodejs/node/commit/9853fd96df)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137) - \[[`3697c19c80`](https://github.com/nodejs/node/commit/3697c19c80)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137) - \[[`56bbc30a44`](https://github.com/nodejs/node/commit/56bbc30a44)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137) - \[[`57efd5292c`](https://github.com/nodejs/node/commit/57efd5292c)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141) - \[[`17581c2716`](https://github.com/nodejs/node/commit/17581c2716)] - **vm**: use default HDO when importModuleDynamically is not set (Joyee Cheung) [#&#8203;49950](https://github.com/nodejs/node/pull/49950) - \[[`65e18aa8e7`](https://github.com/nodejs/node/commit/65e18aa8e7)] - **wasi**: address coverity warning (Michael Dawson) [#&#8203;49866](https://github.com/nodejs/node/pull/49866) - \[[`5b695d6a8d`](https://github.com/nodejs/node/commit/5b695d6a8d)] - **wasi**: fix up wasi tests for ibmi (Michael Dawson) [#&#8203;49953](https://github.com/nodejs/node/pull/49953) - \[[`b86e1f5cbd`](https://github.com/nodejs/node/commit/b86e1f5cbd)] - **(SEMVER-MINOR)** **wasi**: updates required for latest uvwasi version (Michael Dawson) [#&#8203;49908](https://github.com/nodejs/node/pull/49908) - \[[`b4d149b4d6`](https://github.com/nodejs/node/commit/b4d149b4d6)] - **worker**: handle detached `MessagePort` from a different context (Juan José) [#&#8203;49150](https://github.com/nodejs/node/pull/49150) - \[[`f564ed4e05`](https://github.com/nodejs/node/commit/f564ed4e05)] - **zlib**: fix discovery of cpu-features.h for android (MatteoBax) [#&#8203;49828](https://github.com/nodejs/node/pull/49828) ### [`v20.9.0`](https://github.com/nodejs/node/releases/tag/v20.9.0): 2023-10-24, Version 20.9.0 &#x27;Iron&#x27; (LTS), @&#8203;richardlau [Compare Source](https://github.com/nodejs/node/compare/v20.8.1...v20.9.0) ##### Notable Changes This release marks the transition of Node.js 20.x into Long Term Support (LTS) with the codename 'Iron'. The 20.x release line now moves into "Active LTS" and will remain so until October 2024. After that time, it will move into "Maintenance" until end of life in April 2026. ##### Known issue Collecting code coverage via the `NODE_V8_COVERAGE` environment variable may lead to a hang. This is not thought to be a regression in Node.js 20 (some reports are on Node.js 18). For more information, including some potential workarounds, see issue [#&#8203;49344](https://github.com/nodejs/node/issues/49344). ### [`v20.8.1`](https://github.com/nodejs/node/releases/tag/v20.8.1): 2023-10-13, Version 20.8.1 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.8.0...v20.8.1) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - [CVE-2023-44487](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487): `nghttp2` Security Release (High) - [CVE-2023-45143](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-45143): `undici` Security Release (High) - [CVE-2023-39332](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39332): Path traversal through path stored in Uint8Array (High) - [CVE-2023-39331](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39331): Permission model improperly protects against path traversal (High) - [CVE-2023-38552](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38552): Integrity checks according to policies can be circumvented (Medium) - [CVE-2023-39333](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39333): Code injection via WebAssembly export names (Low) More detailed information on each of the vulnerabilities can be found in [October 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/october-2023-security-releases/) blog post. ##### Commits - \[[`c86883e844`](https://github.com/nodejs/node/commit/c86883e844)] - **deps**: update nghttp2 to 1.57.0 (James M Snell) [#&#8203;50121](https://github.com/nodejs/node/pull/50121) - \[[`2860631359`](https://github.com/nodejs/node/commit/2860631359)] - **deps**: update undici to v5.26.3 (Matteo Collina) [#&#8203;50153](https://github.com/nodejs/node/pull/50153) - \[[`cd37838bf8`](https://github.com/nodejs/node/commit/cd37838bf8)] - **lib**: let deps require `node` prefixed modules (Matthew Aitken) [#&#8203;50047](https://github.com/nodejs/node/pull/50047) - \[[`f5c90b2951`](https://github.com/nodejs/node/commit/f5c90b2951)] - **module**: fix code injection through export names (Tobias Nießen) [nodejs-private/node-private#461](https://github.com/nodejs-private/node-private/pull/461) - \[[`fa5dae1944`](https://github.com/nodejs/node/commit/fa5dae1944)] - **permission**: fix Uint8Array path traversal (Tobias Nießen) [nodejs-private/node-private#456](https://github.com/nodejs-private/node-private/pull/456) - \[[`cd35275111`](https://github.com/nodejs/node/commit/cd35275111)] - **permission**: improve path traversal protection (Tobias Nießen) [nodejs-private/node-private#456](https://github.com/nodejs-private/node-private/pull/456) - \[[`a4cb7fc7c0`](https://github.com/nodejs/node/commit/a4cb7fc7c0)] - **policy**: use tamper-proof integrity check function (Tobias Nießen) [nodejs-private/node-private#462](https://github.com/nodejs-private/node-private/pull/462) ### [`v20.8.0`](https://github.com/nodejs/node/releases/tag/v20.8.0): 2023-09-28, Version 20.8.0 (Current), @&#8203;ruyadorno [Compare Source](https://github.com/nodejs/node/compare/v20.7.0...v20.8.0) ##### Notable Changes ##### Stream performance improvements Performance improvements to writable and readable streams, improving the creation and destruction by ±15% and reducing the memory overhead each stream takes in Node.js Contributed by Benjamin Gruenbaum in [#&#8203;49745](https://github.com/nodejs/node/pull/49745) and Raz Luvaton in [#&#8203;49834](https://github.com/nodejs/node/pull/49834). Performance improvements for readable webstream, improving readable stream async iterator consumption by ±140% and improving readable stream `pipeTo` consumption by ±60% Contributed by Raz Luvaton in [#&#8203;49662](https://github.com/nodejs/node/pull/49662) and [#&#8203;49690](https://github.com/nodejs/node/pull/49690). ##### Rework of memory management in `vm` APIs with the `importModuleDynamically` option This rework addressed a series of long-standing memory leaks and use-after-free issues in the following APIs that support `importModuleDynamically`: - `vm.Script` - `vm.compileFunction` - `vm.SyntheticModule` - `vm.SourceTextModule` This should enable affected users (in particular Jest users) to upgrade from older versions of Node.js. Contributed by Joyee Cheung in [#&#8203;48510](https://github.com/nodejs/node/pull/48510). ##### Other notable changes - \[[`32d4d29d02`](https://github.com/nodejs/node/commit/32d4d29d02)] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#&#8203;49874](https://github.com/nodejs/node/pull/49874) - \[[`0e686d096b`](https://github.com/nodejs/node/commit/0e686d096b)] - **doc**: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#&#8203;49683](https://github.com/nodejs/node/pull/49683) - \[[`a5dd057540`](https://github.com/nodejs/node/commit/a5dd057540)] - **doc**: deprecate `util.toUSVString` (Yagiz Nizipli) [#&#8203;49725](https://github.com/nodejs/node/pull/49725) - \[[`7b6a73172f`](https://github.com/nodejs/node/commit/7b6a73172f)] - **doc**: deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) [#&#8203;49647](https://github.com/nodejs/node/pull/49647) - \[[`1beefd5f16`](https://github.com/nodejs/node/commit/1beefd5f16)] - **esm**: set all hooks as release candidate (Geoffrey Booth) [#&#8203;49597](https://github.com/nodejs/node/pull/49597) - \[[`b0ce78a75b`](https://github.com/nodejs/node/commit/b0ce78a75b)] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`4e578f8ab1`](https://github.com/nodejs/node/commit/4e578f8ab1)] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`69e4218772`](https://github.com/nodejs/node/commit/69e4218772)] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`14ece0aa76`](https://github.com/nodejs/node/commit/14ece0aa76)] - **(SEMVER-MINOR)** **src**: allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) [#&#8203;49279](https://github.com/nodejs/node/pull/49279) - \[[`9fd67fbff0`](https://github.com/nodejs/node/commit/9fd67fbff0)] - **stream**: use bitmap in writable state (Raz Luvaton) [#&#8203;49834](https://github.com/nodejs/node/pull/49834) - \[[`0ccd4638ac`](https://github.com/nodejs/node/commit/0ccd4638ac)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745) - \[[`7c5e322346`](https://github.com/nodejs/node/commit/7c5e322346)] - **stream**: improve webstream readable async iterator performance (Raz Luvaton) [#&#8203;49662](https://github.com/nodejs/node/pull/49662) - \[[`80b342cc38`](https://github.com/nodejs/node/commit/80b342cc38)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753) - \[[`17a05b141d`](https://github.com/nodejs/node/commit/17a05b141d)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614) ##### Commits - \[[`4879e3fbbe`](https://github.com/nodejs/node/commit/4879e3fbbe)] - **benchmark**: add a benchmark for read() of ReadableStreams (Debadree Chatterjee) [#&#8203;49622](https://github.com/nodejs/node/pull/49622) - \[[`78a6c73157`](https://github.com/nodejs/node/commit/78a6c73157)] - **benchmark**: shorten pipe-to by reducing number of chunks (Raz Luvaton) [#&#8203;49577](https://github.com/nodejs/node/pull/49577) - \[[`4126a6e4c9`](https://github.com/nodejs/node/commit/4126a6e4c9)] - **benchmark**: fix webstream pipe-to (Raz Luvaton) [#&#8203;49552](https://github.com/nodejs/node/pull/49552) - \[[`6010a91825`](https://github.com/nodejs/node/commit/6010a91825)] - **bootstrap**: do not expand argv1 for snapshots (Joyee Cheung) [#&#8203;49506](https://github.com/nodejs/node/pull/49506) - \[[`8480280c4b`](https://github.com/nodejs/node/commit/8480280c4b)] - **bootstrap**: only use the isolate snapshot when compiling code cache (Joyee Cheung) [#&#8203;49288](https://github.com/nodejs/node/pull/49288) - \[[`b30754aa87`](https://github.com/nodejs/node/commit/b30754aa87)] - **build**: run embedtest using node executable (Joyee Cheung) [#&#8203;49506](https://github.com/nodejs/node/pull/49506) - \[[`31db0b8e2b`](https://github.com/nodejs/node/commit/31db0b8e2b)] - **build**: add --write-snapshot-as-array-literals to configure.py (Joyee Cheung) [#&#8203;49312](https://github.com/nodejs/node/pull/49312) - \[[`6fcb51d3ba`](https://github.com/nodejs/node/commit/6fcb51d3ba)] - **debugger**: use `internal/url.URL` instead of `url.parse` (LiviaMedeiros) [#&#8203;49590](https://github.com/nodejs/node/pull/49590) - \[[`32d4d29d02`](https://github.com/nodejs/node/commit/32d4d29d02)] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#&#8203;49874](https://github.com/nodejs/node/pull/49874) - \[[`ad37cadc3f`](https://github.com/nodejs/node/commit/ad37cadc3f)] - **deps**: V8: backport [`de9a5de`](https://github.com/nodejs/node/commit/de9a5de2274f) (Joyee Cheung) [#&#8203;49703](https://github.com/nodejs/node/pull/49703) - \[[`cdd1c66222`](https://github.com/nodejs/node/commit/cdd1c66222)] - **deps**: V8: cherry-pick [`b33bf2d`](https://github.com/nodejs/node/commit/b33bf2dfd261) (Joyee Cheung) [#&#8203;49703](https://github.com/nodejs/node/pull/49703) - \[[`61d18d6473`](https://github.com/nodejs/node/commit/61d18d6473)] - **deps**: update undici to 5.24.0 (Node.js GitHub Bot) [#&#8203;49559](https://github.com/nodejs/node/pull/49559) - \[[`b8a4fef393`](https://github.com/nodejs/node/commit/b8a4fef393)] - **deps**: remove pthread-fixes.c from uv.gyp (Ben Noordhuis) [#&#8203;49744](https://github.com/nodejs/node/pull/49744) - \[[`6c86c0683c`](https://github.com/nodejs/node/commit/6c86c0683c)] - **deps**: update googletest to [`d1467f5`](https://github.com/nodejs/node/commit/d1467f5) (Node.js GitHub Bot) [#&#8203;49676](https://github.com/nodejs/node/pull/49676) - \[[`1424404742`](https://github.com/nodejs/node/commit/1424404742)] - **deps**: update nghttp2 to 1.56.0 (Node.js GitHub Bot) [#&#8203;49582](https://github.com/nodejs/node/pull/49582) - \[[`15b54ff95d`](https://github.com/nodejs/node/commit/15b54ff95d)] - **deps**: update googletest to [`8a6feab`](https://github.com/nodejs/node/commit/8a6feab) (Node.js GitHub Bot) [#&#8203;49463](https://github.com/nodejs/node/pull/49463) - \[[`2ceab877c2`](https://github.com/nodejs/node/commit/2ceab877c2)] - **deps**: update corepack to 0.20.0 (Node.js GitHub Bot) [#&#8203;49464](https://github.com/nodejs/node/pull/49464) - \[[`4814872ddc`](https://github.com/nodejs/node/commit/4814872ddc)] - **doc**: fix `DEP0176` number (LiviaMedeiros) [#&#8203;49858](https://github.com/nodejs/node/pull/49858) - \[[`0e686d096b`](https://github.com/nodejs/node/commit/0e686d096b)] - **doc**: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#&#8203;49683](https://github.com/nodejs/node/pull/49683) - \[[`5877c403a2`](https://github.com/nodejs/node/commit/5877c403a2)] - **doc**: add mertcanaltin as a triager (mert.altin) [#&#8203;49826](https://github.com/nodejs/node/pull/49826) - \[[`864fe56432`](https://github.com/nodejs/node/commit/864fe56432)] - **doc**: add `git node backport` way to the backporting guide (Raz Luvaton) [#&#8203;49760](https://github.com/nodejs/node/pull/49760) - \[[`e0f93492d5`](https://github.com/nodejs/node/commit/e0f93492d5)] - **doc**: improve documentation about ICU data fallback (Joyee Cheung) [#&#8203;49666](https://github.com/nodejs/node/pull/49666) - \[[`a5dd057540`](https://github.com/nodejs/node/commit/a5dd057540)] - **doc**: deprecate `util.toUSVString` (Yagiz Nizipli) [#&#8203;49725](https://github.com/nodejs/node/pull/49725) - \[[`774c1cfd52`](https://github.com/nodejs/node/commit/774c1cfd52)] - **doc**: add missing function call to example for `util.promisify` (Jungku Lee) [#&#8203;49719](https://github.com/nodejs/node/pull/49719) - \[[`fe78a34845`](https://github.com/nodejs/node/commit/fe78a34845)] - **doc**: update output of example in `mimeParams.set()` (Deokjin Kim) [#&#8203;49718](https://github.com/nodejs/node/pull/49718) - \[[`4175ea33bd`](https://github.com/nodejs/node/commit/4175ea33bd)] - **doc**: add missed `inspect` with numericSeparator to example (Deokjin Kim) [#&#8203;49717](https://github.com/nodejs/node/pull/49717) - \[[`3a88571972`](https://github.com/nodejs/node/commit/3a88571972)] - **doc**: fix history comments (Antoine du Hamel) [#&#8203;49701](https://github.com/nodejs/node/pull/49701) - \[[`db4ab1ccbb`](https://github.com/nodejs/node/commit/db4ab1ccbb)] - **doc**: add missing history info for `import.meta.resolve` (Antoine du Hamel) [#&#8203;49700](https://github.com/nodejs/node/pull/49700) - \[[`a304d1ee19`](https://github.com/nodejs/node/commit/a304d1ee19)] - **doc**: link maintaining deps to pull-request.md (Marco Ippolito) [#&#8203;49716](https://github.com/nodejs/node/pull/49716) - \[[`35294486ad`](https://github.com/nodejs/node/commit/35294486ad)] - **doc**: fix print results in `events` (Jungku Lee) [#&#8203;49548](https://github.com/nodejs/node/pull/49548) - \[[`9f0b0e15c9`](https://github.com/nodejs/node/commit/9f0b0e15c9)] - **doc**: alphabetize cli.md sections (Geoffrey Booth) [#&#8203;49668](https://github.com/nodejs/node/pull/49668) - \[[`7b6a73172f`](https://github.com/nodejs/node/commit/7b6a73172f)] - **doc**: deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) [#&#8203;49647](https://github.com/nodejs/node/pull/49647) - \[[`d316b32fff`](https://github.com/nodejs/node/commit/d316b32fff)] - **doc**: update `corepack.md` to account for 0.20.0 changes (Antoine du Hamel) [#&#8203;49486](https://github.com/nodejs/node/pull/49486) - \[[`c2eac7dc7c`](https://github.com/nodejs/node/commit/c2eac7dc7c)] - **doc**: remove `@anonrig` from performance initiative (Yagiz Nizipli) [#&#8203;49641](https://github.com/nodejs/node/pull/49641) - \[[`3d839fbf87`](https://github.com/nodejs/node/commit/3d839fbf87)] - **doc**: mark Node.js 16 as End-of-Life (Richard Lau) [#&#8203;49651](https://github.com/nodejs/node/pull/49651) - \[[`53fb5aead8`](https://github.com/nodejs/node/commit/53fb5aead8)] - **doc**: save user preference for JS flavor (Vidar Eldøy) [#&#8203;49526](https://github.com/nodejs/node/pull/49526) - \[[`e3594d5658`](https://github.com/nodejs/node/commit/e3594d5658)] - **doc**: update documentation for node:process warning (Shubham Pandey) [#&#8203;49517](https://github.com/nodejs/node/pull/49517) - \[[`8e033c3963`](https://github.com/nodejs/node/commit/8e033c3963)] - **doc**: rename possibly confusing variable and CSS class (Antoine du Hamel) [#&#8203;49536](https://github.com/nodejs/node/pull/49536) - \[[`d0e0eb4bb3`](https://github.com/nodejs/node/commit/d0e0eb4bb3)] - **doc**: update outdated history info (Antoine du Hamel) [#&#8203;49530](https://github.com/nodejs/node/pull/49530) - \[[`b4724e2e3a`](https://github.com/nodejs/node/commit/b4724e2e3a)] - **doc**: close a parenthesis (Sébastien Règne) [#&#8203;49525](https://github.com/nodejs/node/pull/49525) - \[[`0471c5798e`](https://github.com/nodejs/node/commit/0471c5798e)] - **doc**: cast GetInternalField() return type to v8::Value in addons.md (Joyee Cheung) [#&#8203;49439](https://github.com/nodejs/node/pull/49439) - \[[`9f8bea3dda`](https://github.com/nodejs/node/commit/9f8bea3dda)] - **doc**: fix documentation for input option in child_process (Ariel Weiss) [#&#8203;49481](https://github.com/nodejs/node/pull/49481) - \[[`f3fea92f8a`](https://github.com/nodejs/node/commit/f3fea92f8a)] - **doc**: fix missing imports in `test.run` code examples (Oshri Asulin) [#&#8203;49489](https://github.com/nodejs/node/pull/49489) - \[[`e426b77b67`](https://github.com/nodejs/node/commit/e426b77b67)] - **doc**: fix documentation for fs.createWriteStream highWaterMark option (Mert Can Altın) [#&#8203;49456](https://github.com/nodejs/node/pull/49456) - \[[`2b119108ff`](https://github.com/nodejs/node/commit/2b119108ff)] - **doc**: updated releasers instructions for node.js website (Claudio W) [#&#8203;49427](https://github.com/nodejs/node/pull/49427) - \[[`b9d4a80183`](https://github.com/nodejs/node/commit/b9d4a80183)] - **doc**: edit `import.meta.resolve` documentation (Antoine du Hamel) [#&#8203;49247](https://github.com/nodejs/node/pull/49247) - \[[`f67433f666`](https://github.com/nodejs/node/commit/f67433f666)] - **doc,tools**: switch to `@node-core/utils` (Michaël Zasso) [#&#8203;49851](https://github.com/nodejs/node/pull/49851) - \[[`142e256fc5`](https://github.com/nodejs/node/commit/142e256fc5)] - **errors**: improve classRegExp in errors.js (Uzlopak) [#&#8203;49643](https://github.com/nodejs/node/pull/49643) - \[[`6377f1bce2`](https://github.com/nodejs/node/commit/6377f1bce2)] - **errors**: use `determineSpecificType` in more error messages (Antoine du Hamel) [#&#8203;49580](https://github.com/nodejs/node/pull/49580) - \[[`05f0fcb4c4`](https://github.com/nodejs/node/commit/05f0fcb4c4)] - **esm**: identify parent importing a url with invalid host (Jacob Smith) [#&#8203;49736](https://github.com/nodejs/node/pull/49736) - \[[`8a6f5fb8f3`](https://github.com/nodejs/node/commit/8a6f5fb8f3)] - **esm**: fix return type of `import.meta.resolve` (Antoine du Hamel) [#&#8203;49698](https://github.com/nodejs/node/pull/49698) - \[[`a6140f1b8c`](https://github.com/nodejs/node/commit/a6140f1b8c)] - **esm**: update loaders warning (Geoffrey Booth) [#&#8203;49633](https://github.com/nodejs/node/pull/49633) - \[[`521a9327e0`](https://github.com/nodejs/node/commit/521a9327e0)] - **esm**: fix support for `URL` instances in `register` (Antoine du Hamel) [#&#8203;49655](https://github.com/nodejs/node/pull/49655) - \[[`3a9ea0925a`](https://github.com/nodejs/node/commit/3a9ea0925a)] - **esm**: clarify ERR_REQUIRE_ESM errors (Daniel Compton) [#&#8203;49521](https://github.com/nodejs/node/pull/49521) - \[[`1beefd5f16`](https://github.com/nodejs/node/commit/1beefd5f16)] - **esm**: set all hooks as release candidate (Geoffrey Booth) [#&#8203;49597](https://github.com/nodejs/node/pull/49597) - \[[`be48267888`](https://github.com/nodejs/node/commit/be48267888)] - **esm**: remove return value for `Module.register` (Antoine du Hamel) [#&#8203;49529](https://github.com/nodejs/node/pull/49529) - \[[`e74a075124`](https://github.com/nodejs/node/commit/e74a075124)] - **esm**: refactor test-esm-loader-resolve-type (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493) - \[[`17823b3533`](https://github.com/nodejs/node/commit/17823b3533)] - **esm**: refactor test-esm-named-exports (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493) - \[[`f34bd15ac1`](https://github.com/nodejs/node/commit/f34bd15ac1)] - **esm**: refactor mocking test (Geoffrey Booth) [#&#8203;49465](https://github.com/nodejs/node/pull/49465) - \[[`ec323bbd99`](https://github.com/nodejs/node/commit/ec323bbd99)] - **fs**: replace `SetMethodNoSideEffect` in node_file (CanadaHonk) [#&#8203;49857](https://github.com/nodejs/node/pull/49857) - \[[`6acf800123`](https://github.com/nodejs/node/commit/6acf800123)] - **fs**: improve error performance for `unlinkSync` (CanadaHonk) [#&#8203;49856](https://github.com/nodejs/node/pull/49856) - \[[`31702c9403`](https://github.com/nodejs/node/commit/31702c9403)] - **fs**: improve `readFileSync` with file descriptors (Yagiz Nizipli) [#&#8203;49691](https://github.com/nodejs/node/pull/49691) - \[[`835f9fe7b9`](https://github.com/nodejs/node/commit/835f9fe7b9)] - **fs**: fix file descriptor validator (Yagiz Nizipli) [#&#8203;49752](https://github.com/nodejs/node/pull/49752) - \[[`b618fe262f`](https://github.com/nodejs/node/commit/b618fe262f)] - **fs**: improve error performance of `opendirSync` (Yagiz Nizipli) [#&#8203;49705](https://github.com/nodejs/node/pull/49705) - \[[`938471ef55`](https://github.com/nodejs/node/commit/938471ef55)] - **fs**: improve error performance of sync methods (Yagiz Nizipli) [#&#8203;49593](https://github.com/nodejs/node/pull/49593) - \[[`db3fc6d087`](https://github.com/nodejs/node/commit/db3fc6d087)] - **fs**: fix readdir and opendir recursive with unknown file types (William Marlow) [#&#8203;49603](https://github.com/nodejs/node/pull/49603) - \[[`0f020ed22d`](https://github.com/nodejs/node/commit/0f020ed22d)] - **gyp**: put cctest filenames in variables (Cheng Zhao) [#&#8203;49178](https://github.com/nodejs/node/pull/49178) - \[[`0ce1e94d12`](https://github.com/nodejs/node/commit/0ce1e94d12)] - **lib**: update encoding sets in `WHATWG API` (Jungku Lee) [#&#8203;49610](https://github.com/nodejs/node/pull/49610) - \[[`efd6815a7a`](https://github.com/nodejs/node/commit/efd6815a7a)] - **lib**: fix `internalBinding` typings (Yagiz Nizipli) [#&#8203;49742](https://github.com/nodejs/node/pull/49742) - \[[`1287d5b74e`](https://github.com/nodejs/node/commit/1287d5b74e)] - **lib**: allow byob reader for 'blob.stream()' (Debadree Chatterjee) [#&#8203;49713](https://github.com/nodejs/node/pull/49713) - \[[`bbc710522d`](https://github.com/nodejs/node/commit/bbc710522d)] - **lib**: reset the cwd cache before execution (Maël Nison) [#&#8203;49684](https://github.com/nodejs/node/pull/49684) - \[[`f62d649e4d`](https://github.com/nodejs/node/commit/f62d649e4d)] - **lib**: use internal `fileURLToPath` (Deokjin Kim) [#&#8203;49558](https://github.com/nodejs/node/pull/49558) - \[[`e515046941`](https://github.com/nodejs/node/commit/e515046941)] - **lib**: use internal `pathToFileURL` (Livia Medeiros) [#&#8203;49553](https://github.com/nodejs/node/pull/49553) - \[[`00608e8070`](https://github.com/nodejs/node/commit/00608e8070)] - **lib**: check SharedArrayBuffer availability in freeze_intrinsics.js (Milan Burda) [#&#8203;49482](https://github.com/nodejs/node/pull/49482) - \[[`8bfbe7079c`](https://github.com/nodejs/node/commit/8bfbe7079c)] - **meta**: fix linter error (Antoine du Hamel) [#&#8203;49755](https://github.com/nodejs/node/pull/49755) - \[[`58f7a9e096`](https://github.com/nodejs/node/commit/58f7a9e096)] - **meta**: add primordials strategic initiative (Benjamin Gruenbaum) [#&#8203;49706](https://github.com/nodejs/node/pull/49706) - \[[`5366027756`](https://github.com/nodejs/node/commit/5366027756)] - **meta**: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot\[bot]) [#&#8203;49438](https://github.com/nodejs/node/pull/49438) - \[[`fe26b74082`](https://github.com/nodejs/node/commit/fe26b74082)] - **meta**: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot\[bot]) [#&#8203;49437](https://github.com/nodejs/node/pull/49437) - \[[`b0ce78a75b`](https://github.com/nodejs/node/commit/b0ce78a75b)] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`4e578f8ab1`](https://github.com/nodejs/node/commit/4e578f8ab1)] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`69e4218772`](https://github.com/nodejs/node/commit/69e4218772)] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`96874e8fbc`](https://github.com/nodejs/node/commit/96874e8fbc)] - **node-api**: enable uncaught exceptions policy by default (Chengzhong Wu) [#&#8203;49313](https://github.com/nodejs/node/pull/49313) - \[[`b931aeadfd`](https://github.com/nodejs/node/commit/b931aeadfd)] - **perf_hooks**: reduce overhead of new performance_entries (Vinicius Lourenço) [#&#8203;49803](https://github.com/nodejs/node/pull/49803) - \[[`ad043bac31`](https://github.com/nodejs/node/commit/ad043bac31)] - **process**: add custom dir support for heapsnapshot-signal (Jithil P Ponnan) [#&#8203;47854](https://github.com/nodejs/node/pull/47854) - \[[`8a7c10194c`](https://github.com/nodejs/node/commit/8a7c10194c)] - **repl**: don't accumulate excess indentation in .load (Daniel X Moore) [#&#8203;49461](https://github.com/nodejs/node/pull/49461) - \[[`10a2adeed5`](https://github.com/nodejs/node/commit/10a2adeed5)] - **src**: improve error message when ICU data cannot be initialized (Joyee Cheung) [#&#8203;49666](https://github.com/nodejs/node/pull/49666) - \[[`ce37688bac`](https://github.com/nodejs/node/commit/ce37688bac)] - **src**: remove unnecessary todo (Rafael Gonzaga) [#&#8203;49227](https://github.com/nodejs/node/pull/49227) - \[[`f611583b71`](https://github.com/nodejs/node/commit/f611583b71)] - **src**: use SNAPSHOT_SERDES to log snapshot ser/deserialization (Joyee Cheung) [#&#8203;49637](https://github.com/nodejs/node/pull/49637) - \[[`a597cb8457`](https://github.com/nodejs/node/commit/a597cb8457)] - **src**: port Pipe to uv_pipe_bind2, uv_pipe_connect2 (Geoff Goodman) [#&#8203;49667](https://github.com/nodejs/node/pull/49667) - \[[`fb21062338`](https://github.com/nodejs/node/commit/fb21062338)] - **src**: set --rehash-snapshot explicitly (Joyee Cheung) [#&#8203;49556](https://github.com/nodejs/node/pull/49556) - \[[`14ece0aa76`](https://github.com/nodejs/node/commit/14ece0aa76)] - **(SEMVER-MINOR)** **src**: allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) [#&#8203;49279](https://github.com/nodejs/node/pull/49279) - \[[`4b5e23c71b`](https://github.com/nodejs/node/commit/4b5e23c71b)] - **src**: set ModuleWrap internal fields only once (Joyee Cheung) [#&#8203;49391](https://github.com/nodejs/node/pull/49391) - \[[`2d3f5c7cab`](https://github.com/nodejs/node/commit/2d3f5c7cab)] - **src**: fix fs_type_to_name default value (Mustafa Ateş Uzun) [#&#8203;49239](https://github.com/nodejs/node/pull/49239) - \[[`cfbcb1059c`](https://github.com/nodejs/node/commit/cfbcb1059c)] - **src**: fix comment on StreamResource (rogertyang) [#&#8203;49193](https://github.com/nodejs/node/pull/49193) - \[[`39fb83ad16`](https://github.com/nodejs/node/commit/39fb83ad16)] - **src**: do not rely on the internal field being default to undefined (Joyee Cheung) [#&#8203;49413](https://github.com/nodejs/node/pull/49413) - \[[`9fd67fbff0`](https://github.com/nodejs/node/commit/9fd67fbff0)] - **stream**: use bitmap in writable state (Raz Luvaton) [#&#8203;49834](https://github.com/nodejs/node/pull/49834) - \[[`0ccd4638ac`](https://github.com/nodejs/node/commit/0ccd4638ac)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745) - \[[`b29d927010`](https://github.com/nodejs/node/commit/b29d927010)] - **stream**: improve readable webstream `pipeTo` (Raz Luvaton) [#&#8203;49690](https://github.com/nodejs/node/pull/49690) - \[[`7c5e322346`](https://github.com/nodejs/node/commit/7c5e322346)] - **stream**: improve webstream readable async iterator performance (Raz Luvaton) [#&#8203;49662](https://github.com/nodejs/node/pull/49662) - \[[`be211ef818`](https://github.com/nodejs/node/commit/be211ef818)] - **test**: deflake test-vm-contextified-script-leak (Joyee Cheung) [#&#8203;49710](https://github.com/nodejs/node/pull/49710) - \[[`355f10dab2`](https://github.com/nodejs/node/commit/355f10dab2)] - **test**: use checkIfCollectable in vm leak tests (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671) - \[[`17cfc531aa`](https://github.com/nodejs/node/commit/17cfc531aa)] - **test**: add checkIfCollectable to test/common/gc.js (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671) - \[[`e49a573752`](https://github.com/nodejs/node/commit/e49a573752)] - **test**: add os setPriority, getPriority test coverage (Wael) [#&#8203;38771](https://github.com/nodejs/node/pull/38771) - \[[`5f02711522`](https://github.com/nodejs/node/commit/5f02711522)] - **test**: deflake test-runner-output (Moshe Atlow) [#&#8203;49878](https://github.com/nodejs/node/pull/49878) - \[[`cd9754d6a7`](https://github.com/nodejs/node/commit/cd9754d6a7)] - **test**: mark test-runner-output as flaky (Joyee Cheung) [#&#8203;49854](https://github.com/nodejs/node/pull/49854) - \[[`5ad00424dd`](https://github.com/nodejs/node/commit/5ad00424dd)] - **test**: use mustSucceed instead of mustCall (SiddharthDevulapalli) [#&#8203;49788](https://github.com/nodejs/node/pull/49788) - \[[`3db9b40081`](https://github.com/nodejs/node/commit/3db9b40081)] - **test**: refactor test-readline-async-iterators into a benchmark (Shubham Pandey) [#&#8203;49237](https://github.com/nodejs/node/pull/49237) - \[[`2cc5ad7859`](https://github.com/nodejs/node/commit/2cc5ad7859)] - ***Revert*** "**test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky" (Luigi Pinca) [#&#8203;49708](https://github.com/nodejs/node/pull/49708) - \[[`e5185b053c`](https://github.com/nodejs/node/commit/e5185b053c)] - **test**: use `fs.constants` for `fs.access` constants (Livia Medeiros) [#&#8203;49685](https://github.com/nodejs/node/pull/49685) - \[[`b9e5b43462`](https://github.com/nodejs/node/commit/b9e5b43462)] - **test**: deflake test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) (Luigi Pinca) [#&#8203;49574](https://github.com/nodejs/node/pull/49574) - \[[`1fffda504e`](https://github.com/nodejs/node/commit/1fffda504e)] - **test**: fix argument computation in embedtest (Joyee Cheung) [#&#8203;49506](https://github.com/nodejs/node/pull/49506) - \[[`6e56f2db52`](https://github.com/nodejs/node/commit/6e56f2db52)] - **test**: skip test-child-process-stdio-reuse-readable-stdio on Windows (Joyee Cheung) [#&#8203;49621](https://github.com/nodejs/node/pull/49621) - \[[`ab3afb330d`](https://github.com/nodejs/node/commit/ab3afb330d)] - **test**: mark test-runner-watch-mode as flaky (Joyee Cheung) [#&#8203;49627](https://github.com/nodejs/node/pull/49627) - \[[`185d9b50db`](https://github.com/nodejs/node/commit/185d9b50db)] - **test**: deflake test-tls-socket-close (Luigi Pinca) [#&#8203;49575](https://github.com/nodejs/node/pull/49575) - \[[`c70c74a9e6`](https://github.com/nodejs/node/commit/c70c74a9e6)] - **test**: show more info on failure in test-cli-syntax-require.js (Joyee Cheung) [#&#8203;49561](https://github.com/nodejs/node/pull/49561) - \[[`ed7c6d1114`](https://github.com/nodejs/node/commit/ed7c6d1114)] - **test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky (Joyee Cheung) [#&#8203;49565](https://github.com/nodejs/node/pull/49565) - \[[`3599eebab9`](https://github.com/nodejs/node/commit/3599eebab9)] - **test**: use spawnSyncAndExitWithoutError in sea tests (Joyee Cheung) [#&#8203;49543](https://github.com/nodejs/node/pull/49543) - \[[`f79b153e89`](https://github.com/nodejs/node/commit/f79b153e89)] - **test**: use spawnSyncAndExitWithoutError in test/common/sea.js (Joyee Cheung) [#&#8203;49543](https://github.com/nodejs/node/pull/49543) - \[[`c079c73769`](https://github.com/nodejs/node/commit/c079c73769)] - **test**: use setImmediate() in test-heapdump-shadowrealm.js (Joyee Cheung) [#&#8203;49573](https://github.com/nodejs/node/pull/49573) - \[[`667a92493c`](https://github.com/nodejs/node/commit/667a92493c)] - **test**: skip test-child-process-pipe-dataflow.js on Windows (Joyee Cheung) [#&#8203;49563](https://github.com/nodejs/node/pull/49563) - \[[`91af0a9a3c`](https://github.com/nodejs/node/commit/91af0a9a3c)] - ***Revert*** "**test**: ignore the copied entry_point.c" (Chengzhong Wu) [#&#8203;49515](https://github.com/nodejs/node/pull/49515) - \[[`567afc71b8`](https://github.com/nodejs/node/commit/567afc71b8)] - **test**: avoid copying test source files (Chengzhong Wu) [#&#8203;49515](https://github.com/nodejs/node/pull/49515) - \[[`ced25a976d`](https://github.com/nodejs/node/commit/ced25a976d)] - **test**: increase coverage of `Module.register` and `initialize` hook (Antoine du Hamel) [#&#8203;49532](https://github.com/nodejs/node/pull/49532) - \[[`be02fbdb8a`](https://github.com/nodejs/node/commit/be02fbdb8a)] - **test**: isolate `globalPreload` tests (Geoffrey Booth) [#&#8203;49545](https://github.com/nodejs/node/pull/49545) - \[[`f214428845`](https://github.com/nodejs/node/commit/f214428845)] - **test**: split test-crypto-dh to avoid timeout on slow machines in the CI (Joyee Cheung) [#&#8203;49492](https://github.com/nodejs/node/pull/49492) - \[[`3987094569`](https://github.com/nodejs/node/commit/3987094569)] - **test**: make `test-dotenv-node-options` locale-independent (Livia Medeiros) [#&#8203;49470](https://github.com/nodejs/node/pull/49470) - \[[`34c1741792`](https://github.com/nodejs/node/commit/34c1741792)] - **test**: add test for urlstrings usage in `node:fs` (Livia Medeiros) [#&#8203;49471](https://github.com/nodejs/node/pull/49471) - \[[`c3c6c4f007`](https://github.com/nodejs/node/commit/c3c6c4f007)] - **test**: make test-worker-prof more robust (Joyee Cheung) [#&#8203;49274](https://github.com/nodejs/node/pull/49274) - \[[`843df1a4da`](https://github.com/nodejs/node/commit/843df1a4da)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;49714](https://github.com/nodejs/node/pull/49714) - \[[`80b342cc38`](https://github.com/nodejs/node/commit/80b342cc38)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753) - \[[`76865515b9`](https://github.com/nodejs/node/commit/76865515b9)] - **test_runner**: fix test runner watch mode when no positional arguments (Moshe Atlow) [#&#8203;49578](https://github.com/nodejs/node/pull/49578) - \[[`17a05b141d`](https://github.com/nodejs/node/commit/17a05b141d)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614) - \[[`5672e38457`](https://github.com/nodejs/node/commit/5672e38457)] - **test_runner**: add jsdocs to mock.js (Caio Borghi) [#&#8203;49555](https://github.com/nodejs/node/pull/49555) - \[[`b4d42a8f2b`](https://github.com/nodejs/node/commit/b4d42a8f2b)] - **test_runner**: fix invalid timer call (Erick Wendel) [#&#8203;49477](https://github.com/nodejs/node/pull/49477) - \[[`f755e6786b`](https://github.com/nodejs/node/commit/f755e6786b)] - **test_runner**: add jsdocs to MockTimers (Erick Wendel) [#&#8203;49476](https://github.com/nodejs/node/pull/49476) - \[[`e7285d4bf0`](https://github.com/nodejs/node/commit/e7285d4bf0)] - **test_runner**: fix typescript coverage (Moshe Atlow) [#&#8203;49406](https://github.com/nodejs/node/pull/49406) - \[[`07a2e29bf3`](https://github.com/nodejs/node/commit/07a2e29bf3)] - **tools**: support updating [@&#8203;reporters/github](https://github.com/reporters/github) manually (Moshe Atlow) [#&#8203;49871](https://github.com/nodejs/node/pull/49871) - \[[`5ac6722031`](https://github.com/nodejs/node/commit/5ac6722031)] - **tools**: skip ruff on tools/node_modules (Moshe Atlow) [#&#8203;49838](https://github.com/nodejs/node/pull/49838) - \[[`462228bd24`](https://github.com/nodejs/node/commit/462228bd24)] - **tools**: fix uvwasi updater (Michael Dawson) [#&#8203;49682](https://github.com/nodejs/node/pull/49682) - \[[`ff81bfb958`](https://github.com/nodejs/node/commit/ff81bfb958)] - **tools**: update lint-md-dependencies to rollup@3.29.2 (Node.js GitHub Bot) [#&#8203;49679](https://github.com/nodejs/node/pull/49679) - \[[`08ffc6344c`](https://github.com/nodejs/node/commit/08ffc6344c)] - **tools**: restrict internal code from using public `url` module (LiviaMedeiros) [#&#8203;49590](https://github.com/nodejs/node/pull/49590) - \[[`728ebf6c97`](https://github.com/nodejs/node/commit/728ebf6c97)] - **tools**: update eslint to 8.49.0 (Node.js GitHub Bot) [#&#8203;49586](https://github.com/nodejs/node/pull/49586) - \[[`20d038ffb1`](https://github.com/nodejs/node/commit/20d038ffb1)] - **tools**: update lint-md-dependencies to rollup@3.29.0 unified@11.0.3 (Node.js GitHub Bot) [#&#8203;49584](https://github.com/nodejs/node/pull/49584) - \[[`210c15bd12`](https://github.com/nodejs/node/commit/210c15bd12)] - **tools**: allow passing absolute path of config.gypi in js2c (Cheng Zhao) [#&#8203;49162](https://github.com/nodejs/node/pull/49162) - \[[`e341efe173`](https://github.com/nodejs/node/commit/e341efe173)] - **tools**: configure never-stale label correctly (Michaël Zasso) [#&#8203;49498](https://github.com/nodejs/node/pull/49498) - \[[`a8a8a498ce`](https://github.com/nodejs/node/commit/a8a8a498ce)] - **tools**: update doc dependencies (Node.js GitHub Bot) [#&#8203;49467](https://github.com/nodejs/node/pull/49467) - \[[`ac06607f9e`](https://github.com/nodejs/node/commit/ac06607f9e)] - **typings**: fix missing property in `ExportedHooks` (Antoine du Hamel) [#&#8203;49567](https://github.com/nodejs/node/pull/49567) - \[[`097b59807a`](https://github.com/nodejs/node/commit/097b59807a)] - **url**: improve invalid url performance (Yagiz Nizipli) [#&#8203;49692](https://github.com/nodejs/node/pull/49692) - \[[`7c2060cfac`](https://github.com/nodejs/node/commit/7c2060cfac)] - **util**: add `getCwdSafe` internal util fn (João Lenon) [#&#8203;48434](https://github.com/nodejs/node/pull/48434) - \[[`c23c60f545`](https://github.com/nodejs/node/commit/c23c60f545)] - **zlib**: disable CRC32 SIMD optimization (Luigi Pinca) [#&#8203;49511](https://github.com/nodejs/node/pull/49511) ### [`v20.7.0`](https://github.com/nodejs/node/releases/tag/v20.7.0): 2023-09-18, Version 20.7.0 (Current), @&#8203;UlisesGascon [Compare Source](https://github.com/nodejs/node/compare/v20.6.1...v20.7.0) ##### Notable Changes - \[[`022f1b70c1`](https://github.com/nodejs/node/commit/022f1b70c1)] - **src**: support multiple `--env-file` declarations (Yagiz Nizipli) [#&#8203;49542](https://github.com/nodejs/node/pull/49542) - \[[`4a1d1cad61`](https://github.com/nodejs/node/commit/4a1d1cad61)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341) - \[[`a1a65f593c`](https://github.com/nodejs/node/commit/a1a65f593c)] - **deps**: upgrade npm to 10.1.0 (npm team) [#&#8203;49570](https://github.com/nodejs/node/pull/49570) - \[[`6c2480cad9`](https://github.com/nodejs/node/commit/6c2480cad9)] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#&#8203;49423](https://github.com/nodejs/node/pull/49423) - \[[`bef900e56b`](https://github.com/nodejs/node/commit/bef900e56b)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261) - \[[`db4ce8a593`](https://github.com/nodejs/node/commit/db4ce8a593)] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#&#8203;49196](https://github.com/nodejs/node/pull/49196) - \[[`11c85ffa98`](https://github.com/nodejs/node/commit/11c85ffa98)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391) - \[[`ec51e25ed7`](https://github.com/nodejs/node/commit/ec51e25ed7)] - **src,permission**: add multiple allow-fs-\* flags (Carlos Espa) [#&#8203;49047](https://github.com/nodejs/node/pull/49047) - \[[`efdc95fbc0`](https://github.com/nodejs/node/commit/efdc95fbc0)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975) ##### Commits - \[[`e84515594e`](https://github.com/nodejs/node/commit/e84515594e)] - **benchmark**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49137](https://github.com/nodejs/node/pull/49137) - \[[`f37444e896`](https://github.com/nodejs/node/commit/f37444e896)] - **bootstrap**: build code cache from deserialized isolate (Joyee Cheung) [#&#8203;49099](https://github.com/nodejs/node/pull/49099) - \[[`af6dc1754d`](https://github.com/nodejs/node/commit/af6dc1754d)] - **bootstrap**: do not generate code cache in an unfinalized isolate (Joyee Cheung) [#&#8203;49108](https://github.com/nodejs/node/pull/49108) - \[[`cade5716df`](https://github.com/nodejs/node/commit/cade5716df)] - **build**: add symlink to `compile_commands.json` file if needed (Juan José) [#&#8203;49260](https://github.com/nodejs/node/pull/49260) - \[[`34a2590b05`](https://github.com/nodejs/node/commit/34a2590b05)] - **build**: expand when we run internet tests (Michael Dawson) [#&#8203;49218](https://github.com/nodejs/node/pull/49218) - \[[`f637fd46ab`](https://github.com/nodejs/node/commit/f637fd46ab)] - **build**: fix typo `libray` -> `library` (configure.py) (michalbiesek) [#&#8203;49106](https://github.com/nodejs/node/pull/49106) - \[[`ef3d8dd493`](https://github.com/nodejs/node/commit/ef3d8dd493)] - **crypto**: remove webcrypto EdDSA key checks and properties (Filip Skokan) [#&#8203;49408](https://github.com/nodejs/node/pull/49408) - \[[`4a1d1cad61`](https://github.com/nodejs/node/commit/4a1d1cad61)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341) - \[[`7eb10a38ea`](https://github.com/nodejs/node/commit/7eb10a38ea)] - **crypto**: remove getDefaultEncoding() (Tobias Nießen) [#&#8203;49170](https://github.com/nodejs/node/pull/49170) - \[[`772496c030`](https://github.com/nodejs/node/commit/772496c030)] - **crypto**: remove default encoding from DiffieHellman (Tobias Nießen) [#&#8203;49169](https://github.com/nodejs/node/pull/49169) - \[[`c795083232`](https://github.com/nodejs/node/commit/c795083232)] - **crypto**: remove default encoding from Hash/Hmac (Tobias Nießen) [#&#8203;49167](https://github.com/nodejs/node/pull/49167) - \[[`08197aa010`](https://github.com/nodejs/node/commit/08197aa010)] - **crypto**: remove default encoding from sign/verify (Tobias Nießen) [#&#8203;49145](https://github.com/nodejs/node/pull/49145) - \[[`a1a65f593c`](https://github.com/nodejs/node/commit/a1a65f593c)] - **deps**: upgrade npm to 10.1.0 (npm team) [#&#8203;49570](https://github.com/nodejs/node/pull/49570) - \[[`6c2480cad9`](https://github.com/nodejs/node/commit/6c2480cad9)] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#&#8203;49423](https://github.com/nodejs/node/pull/49423) - \[[`84195d9584`](https://github.com/nodejs/node/commit/84195d9584)] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#&#8203;49410](https://github.com/nodejs/node/pull/49410) - \[[`5b70b68b3d`](https://github.com/nodejs/node/commit/5b70b68b3d)] - **deps**: V8: cherry-pick [`eadaef5`](https://github.com/nodejs/node/commit/eadaef581c29) (Adam Majer) [#&#8203;49401](https://github.com/nodejs/node/pull/49401) - \[[`fe34d632e8`](https://github.com/nodejs/node/commit/fe34d632e8)] - **deps**: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) [#&#8203;49252](https://github.com/nodejs/node/pull/49252) - \[[`db4ce8a593`](https://github.com/nodejs/node/commit/db4ce8a593)] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#&#8203;49196](https://github.com/nodejs/node/pull/49196) - \[[`e5f3a694cf`](https://github.com/nodejs/node/commit/e5f3a694cf)] - **doc**: fix node-api call example (Chengzhong Wu) [#&#8203;49395](https://github.com/nodejs/node/pull/49395) - \[[`021345a724`](https://github.com/nodejs/node/commit/021345a724)] - **doc**: add news issue for Diagnostics WG (Michael Dawson) [#&#8203;49306](https://github.com/nodejs/node/pull/49306) - \[[`f82347266b`](https://github.com/nodejs/node/commit/f82347266b)] - **doc**: clarify policy expectations (Rafael Gonzaga) [#&#8203;48947](https://github.com/nodejs/node/pull/48947) - \[[`73cfd9c895`](https://github.com/nodejs/node/commit/73cfd9c895)] - **doc**: add print results for examples in `StringDecoder` (Jungku Lee) [#&#8203;49326](https://github.com/nodejs/node/pull/49326) - \[[`63ab591416`](https://github.com/nodejs/node/commit/63ab591416)] - **doc**: update outdated reference to NIST SP 800-131A (Tobias Nießen) [#&#8203;49316](https://github.com/nodejs/node/pull/49316) - \[[`935dfe2afd`](https://github.com/nodejs/node/commit/935dfe2afd)] - **doc**: use `cjs` as block code's type in `MockTimers` (Deokjin Kim) [#&#8203;49309](https://github.com/nodejs/node/pull/49309) - \[[`7c0cd2fb87`](https://github.com/nodejs/node/commit/7c0cd2fb87)] - **doc**: update `options.filter` description for `fs.cp` (Shubham Pandey) [#&#8203;49289](https://github.com/nodejs/node/pull/49289) - \[[`f72e79ea67`](https://github.com/nodejs/node/commit/f72e79ea67)] - **doc**: add riscv64 to list of architectures (Stewart X Addison) [#&#8203;49284](https://github.com/nodejs/node/pull/49284) - \[[`d19c710064`](https://github.com/nodejs/node/commit/d19c710064)] - **doc**: avoid "not currently recommended" (Tobias Nießen) [#&#8203;49300](https://github.com/nodejs/node/pull/49300) - \[[`ae656101c0`](https://github.com/nodejs/node/commit/ae656101c0)] - **doc**: update module hooks docs (Geoffrey Booth) [#&#8203;49265](https://github.com/nodejs/node/pull/49265) - \[[`fefbdb92f2`](https://github.com/nodejs/node/commit/fefbdb92f2)] - **doc**: modify param description for end(),write() in `StringDecoder` (Jungku Lee) [#&#8203;49285](https://github.com/nodejs/node/pull/49285) - \[[`59e66a1ebe`](https://github.com/nodejs/node/commit/59e66a1ebe)] - **doc**: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) [#&#8203;49268](https://github.com/nodejs/node/pull/49268) - \[[`ac3b88449b`](https://github.com/nodejs/node/commit/ac3b88449b)] - **doc**: fix typo in `stream.finished` documentation (Antoine du Hamel) [#&#8203;49271](https://github.com/nodejs/node/pull/49271) - \[[`7428ebf6c3`](https://github.com/nodejs/node/commit/7428ebf6c3)] - **doc**: update description for `percent_encode` sets in `WHATWG API` (Jungku Lee) [#&#8203;49258](https://github.com/nodejs/node/pull/49258) - \[[`bef900e56b`](https://github.com/nodejs/node/commit/bef900e56b)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261) - \[[`a22e0d9696`](https://github.com/nodejs/node/commit/a22e0d9696)] - **doc**: clarify use of Uint8Array for n-api (Fedor Indutny) [#&#8203;48742](https://github.com/nodejs/node/pull/48742) - \[[`1704f24cb9`](https://github.com/nodejs/node/commit/1704f24cb9)] - **doc**: add signature for `module.register` (Geoffrey Booth) [#&#8203;49251](https://github.com/nodejs/node/pull/49251) - \[[`5a363bb01b`](https://github.com/nodejs/node/commit/5a363bb01b)] - **doc**: caveat unavailability of `import.meta.resolve` in custom loaders (Jacob Smith) [#&#8203;49242](https://github.com/nodejs/node/pull/49242) - \[[`8101f2b259`](https://github.com/nodejs/node/commit/8101f2b259)] - **doc**: use same name in the doc as in the code (Hyunjin Kim) [#&#8203;49216](https://github.com/nodejs/node/pull/49216) - \[[`edf278d60d`](https://github.com/nodejs/node/commit/edf278d60d)] - **doc**: add notable-change label mention to PR template (Rafael Gonzaga) [#&#8203;49188](https://github.com/nodejs/node/pull/49188) - \[[`3df2251a6a`](https://github.com/nodejs/node/commit/3df2251a6a)] - **doc**: add h1 summary to security release process (Rafael Gonzaga) [#&#8203;49112](https://github.com/nodejs/node/pull/49112) - \[[`9fcd99a744`](https://github.com/nodejs/node/commit/9fcd99a744)] - **doc**: update to semver-minor releases by default (Rafael Gonzaga) [#&#8203;49175](https://github.com/nodejs/node/pull/49175) - \[[`777931f499`](https://github.com/nodejs/node/commit/777931f499)] - **doc**: fix wording in napi_async_init (Tobias Nießen) [#&#8203;49180](https://github.com/nodejs/node/pull/49180) - \[[`f45c8e10c0`](https://github.com/nodejs/node/commit/f45c8e10c0)] - **doc,test**: add known path resolution issue in permission model (Tobias Nießen) [#&#8203;49155](https://github.com/nodejs/node/pull/49155) - \[[`a6cfea3f74`](https://github.com/nodejs/node/commit/a6cfea3f74)] - **esm**: align sync and async load implementations (Antoine du Hamel) [#&#8203;49152](https://github.com/nodejs/node/pull/49152) - \[[`9fac310b33`](https://github.com/nodejs/node/commit/9fac310b33)] - **fs**: add the options param description in openAsBlob() (Yeseul Lee) [#&#8203;49308](https://github.com/nodejs/node/pull/49308) - \[[`92772a8175`](https://github.com/nodejs/node/commit/92772a8175)] - **fs**: remove redundant code in readableWebStream() (Deokjin Kim) [#&#8203;49298](https://github.com/nodejs/node/pull/49298) - \[[`88ba79b083`](https://github.com/nodejs/node/commit/88ba79b083)] - **fs**: make sure to write entire buffer (Robert Nagy) [#&#8203;49211](https://github.com/nodejs/node/pull/49211) - \[[`11c85ffa98`](https://github.com/nodejs/node/commit/11c85ffa98)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391) - \[[`c12711ebfe`](https://github.com/nodejs/node/commit/c12711ebfe)] - **lib**: implement WeakReference on top of JS WeakRef (Joyee Cheung) [#&#8203;49053](https://github.com/nodejs/node/pull/49053) - \[[`9a0891f88d`](https://github.com/nodejs/node/commit/9a0891f88d)] - **meta**: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot\[bot]) [#&#8203;49435](https://github.com/nodejs/node/pull/49435) - \[[`ae67f41ef1`](https://github.com/nodejs/node/commit/ae67f41ef1)] - **meta**: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot\[bot]) [#&#8203;49436](https://github.com/nodejs/node/pull/49436) - \[[`71b4411fb2`](https://github.com/nodejs/node/commit/71b4411fb2)] - **meta**: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot\[bot]) [#&#8203;49434](https://github.com/nodejs/node/pull/49434) - \[[`83b7d3a395`](https://github.com/nodejs/node/commit/83b7d3a395)] - **meta**: remove modules team from CODEOWNERS (Benjamin Gruenbaum) [#&#8203;49412](https://github.com/nodejs/node/pull/49412) - \[[`81ff68c45c`](https://github.com/nodejs/node/commit/81ff68c45c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;49264](https://github.com/nodejs/node/pull/49264) - \[[`ab975233cc`](https://github.com/nodejs/node/commit/ab975233cc)] - **meta**: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) [#&#8203;49189](https://github.com/nodejs/node/pull/49189) - \[[`ceaa5494de`](https://github.com/nodejs/node/commit/ceaa5494de)] - **meta**: add test/reporters to codeowners (Chemi Atlow) [#&#8203;49186](https://github.com/nodejs/node/pull/49186) - \[[`de0a51b7cf`](https://github.com/nodejs/node/commit/de0a51b7cf)] - **net**: improve performance of isIPv4 and isIPv6 (Uzlopak) [#&#8203;49568](https://github.com/nodejs/node/pull/49568) - \[[`8d0913bf95`](https://github.com/nodejs/node/commit/8d0913bf95)] - **net**: use asserts in JS Socket Stream to catch races in future (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400) - \[[`2486836a7d`](https://github.com/nodejs/node/commit/2486836a7d)] - **net**: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400) - \[[`7a808340cd`](https://github.com/nodejs/node/commit/7a808340cd)] - **node-api**: fix compiler warning in node_api.h (Michael Graeb) [#&#8203;49103](https://github.com/nodejs/node/pull/49103) - \[[`30f26a99f4`](https://github.com/nodejs/node/commit/30f26a99f4)] - **permission**: ensure to resolve path when calling mkdtemp (RafaelGSS) [nodejs-private/node-private#440](https://github.com/nodejs-private/node-private/pull/440) - \[[`5051c75a5b`](https://github.com/nodejs/node/commit/5051c75a5b)] - **policy**: fix path to URL conversion (Antoine du Hamel) [#&#8203;49133](https://github.com/nodejs/node/pull/49133) - \[[`173aed4757`](https://github.com/nodejs/node/commit/173aed4757)] - **report**: fix recent coverity warning (Michael Dawson) [#&#8203;48954](https://github.com/nodejs/node/pull/48954) - \[[`d7ff78b442`](https://github.com/nodejs/node/commit/d7ff78b442)] - **sea**: generate code cache with deserialized isolate (Joyee Cheung) [#&#8203;49226](https://github.com/nodejs/node/pull/49226) - \[[`022f1b70c1`](https://github.com/nodejs/node/commit/022f1b70c1)] - **src**: support multiple `--env-file` declarations (Yagiz Nizipli) [#&#8203;49542](https://github.com/nodejs/node/pull/49542) - \[[`154b1c2115`](https://github.com/nodejs/node/commit/154b1c2115)] - **src**: don't overwrite environment from .env file (Phil Nash) [#&#8203;49424](https://github.com/nodejs/node/pull/49424) - \[[`dc4de1c69b`](https://github.com/nodejs/node/commit/dc4de1c69b)] - **src**: modify code for empty string (pluris) [#&#8203;49336](https://github.com/nodejs/node/pull/49336) - \[[`701c46f967`](https://github.com/nodejs/node/commit/701c46f967)] - **src**: remove unused PromiseWrap-related code (Joyee Cheung) [#&#8203;49335](https://github.com/nodejs/node/pull/49335) - \[[`4a094dc7af`](https://github.com/nodejs/node/commit/4a094dc7af)] - **src**: rename IsAnyByteSource to IsAnyBufferSource (Tobias Nießen) [#&#8203;49346](https://github.com/nodejs/node/pull/49346) - \[[`55d6649175`](https://github.com/nodejs/node/commit/55d6649175)] - **src**: support snapshot deserialization in RAIIIsolate (Joyee Cheung) [#&#8203;49226](https://github.com/nodejs/node/pull/49226) - \[[`dc092864ef`](https://github.com/nodejs/node/commit/dc092864ef)] - **src**: remove unused function `GetName()` in node_perf (Jungku Lee) [#&#8203;49244](https://github.com/nodejs/node/pull/49244) - \[[`f2552a410e`](https://github.com/nodejs/node/commit/f2552a410e)] - **src**: use ARES_SUCCESS instead of 0 (Jungku Lee) [#&#8203;49048](https://github.com/nodejs/node/pull/49048) - \[[`4a9ae31519`](https://github.com/nodejs/node/commit/4a9ae31519)] - **src**: add a condition if the argument of `DomainToUnicode` is empty (Jungku Lee) [#&#8203;49097](https://github.com/nodejs/node/pull/49097) - \[[`f460362cdf`](https://github.com/nodejs/node/commit/f460362cdf)] - **src**: remove C++ WeakReference implementation (Joyee Cheung) [#&#8203;49053](https://github.com/nodejs/node/pull/49053) - \[[`2a35383b3e`](https://github.com/nodejs/node/commit/2a35383b3e)] - **src**: use per-realm GetBindingData() wherever applicable (Joyee Cheung) [#&#8203;49007](https://github.com/nodejs/node/pull/49007) - \[[`184bbddcf5`](https://github.com/nodejs/node/commit/184bbddcf5)] - **src**: add per-realm GetBindingData() method (Joyee Cheung) [#&#8203;49007](https://github.com/nodejs/node/pull/49007) - \[[`e9946885f9`](https://github.com/nodejs/node/commit/e9946885f9)] - **src**: serialize both BaseObject slots (Joyee Cheung) [#&#8203;48996](https://github.com/nodejs/node/pull/48996) - \[[`ec51e25ed7`](https://github.com/nodejs/node/commit/ec51e25ed7)] - **src,permission**: add multiple allow-fs-\* flags (Carlos Espa) [#&#8203;49047](https://github.com/nodejs/node/pull/49047) - \[[`8aac95de4b`](https://github.com/nodejs/node/commit/8aac95de4b)] - **stream**: improve tee perf by reduce `ReflectConstruct` usages (Raz Luvaton) [#&#8203;49546](https://github.com/nodejs/node/pull/49546) - \[[`0eea7fd8fb`](https://github.com/nodejs/node/commit/0eea7fd8fb)] - **stream**: use Buffer.from when constructor is a Buffer (Matthew Aitken) [#&#8203;49250](https://github.com/nodejs/node/pull/49250) - \[[`b961d9bd52`](https://github.com/nodejs/node/commit/b961d9bd52)] - **stream**: add `highWaterMark` for the map operator (Raz Luvaton) [#&#8203;49249](https://github.com/nodejs/node/pull/49249) - \[[`ca1384166d`](https://github.com/nodejs/node/commit/ca1384166d)] - **test**: fix warning for comment in embedtest (Jungku Lee) [#&#8203;49416](https://github.com/nodejs/node/pull/49416) - \[[`2a35782809`](https://github.com/nodejs/node/commit/2a35782809)] - **test**: simplify test-crypto-dh-group-setters (Tobias Nießen) [#&#8203;49404](https://github.com/nodejs/node/pull/49404) - \[[`6740f3c209`](https://github.com/nodejs/node/commit/6740f3c209)] - **test**: verify dynamic import call with absolute path strings (Chengzhong Wu) [#&#8203;49275](https://github.com/nodejs/node/pull/49275) - \[[`6ed47bd8fb`](https://github.com/nodejs/node/commit/6ed47bd8fb)] - **test**: reduce length in crypto keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221) - \[[`4faa30c553`](https://github.com/nodejs/node/commit/4faa30c553)] - **test**: split JWK async elliptic curve keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221) - \[[`e04a2603d8`](https://github.com/nodejs/node/commit/e04a2603d8)] - **test**: split test-crypto-keygen.js (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221) - \[[`0d23c1d4ce`](https://github.com/nodejs/node/commit/0d23c1d4ce)] - **test**: rename test-crypto-modp1-error (Tobias Nießen) [#&#8203;49348](https://github.com/nodejs/node/pull/49348) - \[[`48e41569e2`](https://github.com/nodejs/node/commit/48e41569e2)] - **test**: migrate message source map tests from Python to JS (Yiyun Lei) [#&#8203;49238](https://github.com/nodejs/node/pull/49238) - \[[`a11e64e09c`](https://github.com/nodejs/node/commit/a11e64e09c)] - **test**: fix compiler warning in NodeCryptoEnv (Tobias Nießen) [#&#8203;49206](https://github.com/nodejs/node/pull/49206) - \[[`345543938f`](https://github.com/nodejs/node/commit/345543938f)] - **test**: handle EUNATCH (Abdirahim Musse) [#&#8203;48050](https://github.com/nodejs/node/pull/48050) - \[[`e391f4b197`](https://github.com/nodejs/node/commit/e391f4b197)] - **test**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49136](https://github.com/nodejs/node/pull/49136) - \[[`910378f93f`](https://github.com/nodejs/node/commit/910378f93f)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49248](https://github.com/nodejs/node/pull/49248) - \[[`4a85f70462`](https://github.com/nodejs/node/commit/4a85f70462)] - **test**: add spawnSyncAndExit() and spawnSyncAndExitWithoutError() (Joyee Cheung) [#&#8203;49200](https://github.com/nodejs/node/pull/49200) - \[[`9610008b79`](https://github.com/nodejs/node/commit/9610008b79)] - **test**: make test-perf-hooks more robust and work with workers (Joyee Cheung) [#&#8203;49197](https://github.com/nodejs/node/pull/49197) - \[[`dc8fff9a75`](https://github.com/nodejs/node/commit/dc8fff9a75)] - **test**: use gcUntil() in test-v8-serialize-leak (Joyee Cheung) [#&#8203;49168](https://github.com/nodejs/node/pull/49168) - \[[`ca9f801332`](https://github.com/nodejs/node/commit/ca9f801332)] - **test**: make WeakReference tests robust (Joyee Cheung) [#&#8203;49053](https://github.com/nodejs/node/pull/49053) - \[[`de103a4686`](https://github.com/nodejs/node/commit/de103a4686)] - **test**: add test for effect of UV_THREADPOOL_SIZE (Tobias Nießen) [#&#8203;49165](https://github.com/nodejs/node/pull/49165) - \[[`47d24f144b`](https://github.com/nodejs/node/commit/47d24f144b)] - **test**: use expectSyncExit{WithErrors} in snapshot tests (Joyee Cheung) [#&#8203;49020](https://github.com/nodejs/node/pull/49020) - \[[`c441f5a097`](https://github.com/nodejs/node/commit/c441f5a097)] - **test**: add expectSyncExitWithoutError() and expectSyncExit() utils (Joyee Cheung) [#&#8203;49020](https://github.com/nodejs/node/pull/49020) - \[[`4d184b5251`](https://github.com/nodejs/node/commit/4d184b5251)] - **test**: remove --no-warnings flag in test_runner fixtures (Raz Luvaton) [#&#8203;48989](https://github.com/nodejs/node/pull/48989) - \[[`25e967a90b`](https://github.com/nodejs/node/commit/25e967a90b)] - **test**: reorder test files fixtures for better understanding (Raz Luvaton) [#&#8203;48787](https://github.com/nodejs/node/pull/48787) - \[[`fac56dbcc0`](https://github.com/nodejs/node/commit/fac56dbcc0)] - **test,benchmark**: use `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49138](https://github.com/nodejs/node/pull/49138) - \[[`36763fa532`](https://github.com/nodejs/node/commit/36763fa532)] - **test_runner**: preserve original property descriptor (Erick Wendel) [#&#8203;49433](https://github.com/nodejs/node/pull/49433) - \[[`40e9fcdbea`](https://github.com/nodejs/node/commit/40e9fcdbea)] - **test_runner**: add support for setImmediate (Erick Wendel) [#&#8203;49397](https://github.com/nodejs/node/pull/49397) - \[[`23216f1935`](https://github.com/nodejs/node/commit/23216f1935)] - **test_runner**: report covered lines, functions and branches to reporters (Phil Nash) [#&#8203;49320](https://github.com/nodejs/node/pull/49320) - \[[`283f2806b1`](https://github.com/nodejs/node/commit/283f2806b1)] - **test_runner**: expose spec reporter as newable function (Chemi Atlow) [#&#8203;49184](https://github.com/nodejs/node/pull/49184) - \[[`546ad5f770`](https://github.com/nodejs/node/commit/546ad5f770)] - **test_runner**: reland run global after() hook earlier (Colin Ihrig) [#&#8203;49116](https://github.com/nodejs/node/pull/49116) - \[[`efdc95fbc0`](https://github.com/nodejs/node/commit/efdc95fbc0)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975) - \[[`4bc0a8fe99`](https://github.com/nodejs/node/commit/4bc0a8fe99)] - **test_runner**: fix global after not failing the tests (Raz Luvaton) [#&#8203;48913](https://github.com/nodejs/node/pull/48913) - \[[`08738b2664`](https://github.com/nodejs/node/commit/08738b2664)] - **test_runner**: fix timeout in \*Each hook failing further tests (Raz Luvaton) [#&#8203;48925](https://github.com/nodejs/node/pull/48925) - \[[`c2f1830f66`](https://github.com/nodejs/node/commit/c2f1830f66)] - **test_runner**: cleanup test timeout abort listener (Raz Luvaton) [#&#8203;48915](https://github.com/nodejs/node/pull/48915) - \[[`75333f38b2`](https://github.com/nodejs/node/commit/75333f38b2)] - **test_runner**: fix global before not called when no global test exists (Raz Luvaton) [#&#8203;48877](https://github.com/nodejs/node/pull/48877) - \[[`b28b85adf8`](https://github.com/nodejs/node/commit/b28b85adf8)] - **tls**: remove redundant code in onConnectSecure() (Deokjin Kim) [#&#8203;49457](https://github.com/nodejs/node/pull/49457) - \[[`83fc4dccbc`](https://github.com/nodejs/node/commit/83fc4dccbc)] - **tls**: refactor to use validateFunction (Deokjin Kim) [#&#8203;49422](https://github.com/nodejs/node/pull/49422) - \[[`8949cc79dd`](https://github.com/nodejs/node/commit/8949cc79dd)] - **tls**: ensure TLS Sockets are closed if the underlying wrap closes (Tim Perry) [#&#8203;49327](https://github.com/nodejs/node/pull/49327) - \[[`1df56e6f01`](https://github.com/nodejs/node/commit/1df56e6f01)] - **tools**: update eslint to 8.48.0 (Node.js GitHub Bot) [#&#8203;49343](https://github.com/nodejs/node/pull/49343) - \[[`ef50ec5b57`](https://github.com/nodejs/node/commit/ef50ec5b57)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49342](https://github.com/nodejs/node/pull/49342) - \[[`9a8fb4fc34`](https://github.com/nodejs/node/commit/9a8fb4fc34)] - **tools**: remove v8\_dump_build_config action (Cheng Zhao) [#&#8203;49301](https://github.com/nodejs/node/pull/49301) - \[[`91b2d4314b`](https://github.com/nodejs/node/commit/91b2d4314b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49253](https://github.com/nodejs/node/pull/49253) - \[[`b51946ebdd`](https://github.com/nodejs/node/commit/b51946ebdd)] - **tools**: fix github reporter appended multiple times (Moshe Atlow) [#&#8203;49199](https://github.com/nodejs/node/pull/49199) - \[[`ae40cb1612`](https://github.com/nodejs/node/commit/ae40cb1612)] - **url**: validate `pathToFileURL(path)` argument as string (LiviaMedeiros) [#&#8203;49161](https://github.com/nodejs/node/pull/49161) - \[[`e787673dcf`](https://github.com/nodejs/node/commit/e787673dcf)] - **url**: handle unicode hostname if empty (Yagiz Nizipli) [#&#8203;49396](https://github.com/nodejs/node/pull/49396) - \[[`6ee74be87f`](https://github.com/nodejs/node/commit/6ee74be87f)] - **vm**: store MicrotaskQueue in ContextifyContext directly (Joyee Cheung) [#&#8203;48982](https://github.com/nodejs/node/pull/48982) - \[[`0179c6dc8f`](https://github.com/nodejs/node/commit/0179c6dc8f)] - **worker**: protect against user mutating well-known prototypes (Antoine du Hamel) [#&#8203;49270](https://github.com/nodejs/node/pull/49270) ### [`v20.6.1`](https://github.com/nodejs/node/releases/tag/v20.6.1): 2023-09-08, Version 20.6.1 (Current), @&#8203;ruyadorno and @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.6.0...v20.6.1) ##### Commit - \[[`8acbe6d8e8`](https://github.com/nodejs/node/commit/8acbe6d8e8)] - **esm**: fix loading of CJS modules from ESM (Antoine du Hamel) [#&#8203;49500](https://github.com/nodejs/node/pull/49500) ### [`v20.6.0`](https://github.com/nodejs/node/releases/tag/v20.6.0): 2023-09-04, Version 20.6.0 (Current), @&#8203;juanarbol prepared by @&#8203;UlisesGascon [Compare Source](https://github.com/nodejs/node/compare/v20.5.1...v20.6.0) ##### Notable changes ##### built-in `.env` file support Starting from Node.js v20.6.0, Node.js supports `.env` files for configuring environment variables. Your configuration file should follow the INI file format, with each line containing a key-value pair for an environment variable. To initialize your Node.js application with predefined configurations, use the following CLI command: `node --env-file=config.env index.js`. For example, you can access the following environment variable using `process.env.PASSWORD` when your application is initialized: ```text PASSWORD=nodejs ``` In addition to environment variables, this change allows you to define your `NODE_OPTIONS` directly in the `.env` file, eliminating the need to include it in your `package.json`. This feature was contributed by Yagiz Nizipli in [#&#8203;48890](https://github.com/nodejs/node/pull/48890). ##### `import.meta.resolve` unflagged In ES modules, [`import.meta.resolve(specifier)`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve) can be used to get an absolute URL string to which `specifier` resolves, similar to `require.resolve` in CommonJS. This aligns Node.js with browsers and other server-side runtimes. This feature was contributed by Guy Bedford in [#&#8203;49028](https://github.com/nodejs/node/pull/49028) ##### New `node:module` API `register` for module customization hooks; new `initialize` hook There is a new API `register` available on `node:module` to specify a file that exports module customization hooks, and pass data to the hooks, and establish communication channels with them. The “define the file with the hooks” part was previously handled by a flag `--experimental-loader`, but when the hooks moved into a dedicated thread in 20.0.0 there was a need to provide a way to communicate between the main (application) thread and the hooks thread. This can now be done by calling `register` from the main thread and passing data, including `MessageChannel` instances. We encourage users to migrate to an approach that uses [`--import`](https://nodejs.org/api/cli.html#--importmodule) with `register`, such as: ```bash node --import ./file-that-calls-register.js ./app.js ``` Using `--import` ensures that the customization hooks are registered before any application code runs, even the entry point. This feature was contributed by Izaak Schroeder in [#&#8203;48842](https://github.com/nodejs/node/pull/48842) and [#&#8203;48559](https://github.com/nodejs/node/pull/48559) ##### Module customization `load` hook can now support CommonJS Authors of module customization hooks can how handle both ES module and CommonJS sources in the `load` hook. This works for CommonJS modules referenced via either `import` or `require`, so long as [the main entry point of the application is handled by the ES module loader](https://nodejs.org/api/cli.html#program-entry-point) (such as because the entry point is an ES module file, or if the `--import` flag is passed). This should simplify the customization of the Node.js module loading process, as package authors can customize more of Node.js without relying on deprecated APIs such as `require.extensions`. This feature was contributed by Antoine du Hamel in [#&#8203;47999](https://github.com/nodejs/node/pull/47999) ##### Node.js C++ addons now have experimental support for cppgc (Oilpan), a C++ garbage collection library in V8. Now when Node.js starts up, it makes sure that there is a `v8::CppHeap` attached to the V8 isolate. This enables users to allocate in the `v8::CppHeap` using `<cppgc/*>` headers from V8, which are now also included into the Node.js headers available to addons. Note that since Node.js only bundles the cppgc library coming from V8, [the ABI stability](https://nodejs.org/en/docs/guides/abi-stability#abi-stability-in-nodejs) of cppgc is currently not guaranteed in semver-minor and -patch updates, but we do not expect the ABI to break often, as it has been stable and battle-tested in Chromium for years. We may consider including cppgc into the ABI stability guarantees when it gets enough adoption internally and externally. To help addon authors create JavaScript-to-C++ references of which V8's garbage collector can be aware, a helper function [`node::SetCppgcReference(isolate, js_object, cppgc_object)`](https://github.com/nodejs/node/blob/v20.6.0/test/addons/cppgc-object/binding.cc) has been added to `node.h`. V8 may provide a native alternative in the future, which could then replace this Node.js-specific helper. In the mean time, users can use this API to avoid having to hard-code the layout of JavaScript wrapper objects. An example of how to create garbage-collected C++ objects in the unified heap and wrap it in a JavaScript object can be found in the [Node.js addon tests](https://github.com/nodejs/node/blob/v20.6.0/test/addons/cppgc-object/binding.cc). The existing `node::ObjectWrap` helper would continue to work, while cppgc-based object management serves as an alternative with some advantages mentioned in [the V8 blog post about Oilpan](https://v8.dev/blog/oilpan-library). This feature was contributed by Daryl Haresign and Joyee Cheung in [#&#8203;48660](https://github.com/nodejs/node/pull/48660) and [#&#8203;45704](https://github.com/nodejs/node/pull/45704). ##### Other notable changes - \[[`d6862b085c`](https://github.com/nodejs/node/commit/d6862b085c)] - **deps**: V8: cherry-pick [`9327503`](https://github.com/nodejs/node/commit/93275031284c) (Joyee Cheung) [#&#8203;48660](https://github.com/nodejs/node/pull/48660) - \[[`00fc8bb8b3`](https://github.com/nodejs/node/commit/00fc8bb8b3)] - **doc**: add rluvaton to collaborators (Raz Luvaton) [#&#8203;49215](https://github.com/nodejs/node/pull/49215) - \[[`d649339abd`](https://github.com/nodejs/node/commit/d649339abd)] - **doc**: add new TSC members (Michael Dawson) [#&#8203;48841](https://github.com/nodejs/node/pull/48841) - \[[`67f9896247`](https://github.com/nodejs/node/commit/67f9896247)] - **(SEMVER-MINOR)** **inspector**: open add `SymbolDispose` (Chemi Atlow) [#&#8203;48765](https://github.com/nodejs/node/pull/48765) - \[[`5aef593db3`](https://github.com/nodejs/node/commit/5aef593db3)] - **module**: implement `register` utility (João Lenon) [#&#8203;46826](https://github.com/nodejs/node/pull/46826) ##### Commits - \[[`771abcb5da`](https://github.com/nodejs/node/commit/771abcb5da)] - **benchmark**: add benchmarks for the test_runner (Raz Luvaton) [#&#8203;48931](https://github.com/nodejs/node/pull/48931) - \[[`6b27bb0dab`](https://github.com/nodejs/node/commit/6b27bb0dab)] - **benchmark**: add pm startup benchmark (Rafael Gonzaga) [#&#8203;48905](https://github.com/nodejs/node/pull/48905) - \[[`1f35c0ca55`](https://github.com/nodejs/node/commit/1f35c0ca55)] - **child_process**: harden against prototype pollution (Livia Medeiros) [#&#8203;48726](https://github.com/nodejs/node/pull/48726) - \[[`d6862b085c`](https://github.com/nodejs/node/commit/d6862b085c)] - **deps**: V8: cherry-pick [`9327503`](https://github.com/nodejs/node/commit/93275031284c) (Joyee Cheung) [#&#8203;48660](https://github.com/nodejs/node/pull/48660) - \[[`f71e383948`](https://github.com/nodejs/node/commit/f71e383948)] - **deps**: update simdutf to 3.2.17 (Node.js GitHub Bot) [#&#8203;49019](https://github.com/nodejs/node/pull/49019) - \[[`e14f0456ae`](https://github.com/nodejs/node/commit/e14f0456ae)] - **deps**: update googletest to [`7e33b6a`](https://github.com/nodejs/node/commit/7e33b6a) (Node.js GitHub Bot) [#&#8203;49034](https://github.com/nodejs/node/pull/49034) - \[[`bfaa0fb500`](https://github.com/nodejs/node/commit/bfaa0fb500)] - **deps**: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) [#&#8203;49033](https://github.com/nodejs/node/pull/49033) - \[[`b79c652c85`](https://github.com/nodejs/node/commit/b79c652c85)] - **deps**: update undici to 5.23.0 (Node.js GitHub Bot) [#&#8203;49021](https://github.com/nodejs/node/pull/49021) - \[[`6ead86145c`](https://github.com/nodejs/node/commit/6ead86145c)] - **deps**: update googletest to [`c875c4e`](https://github.com/nodejs/node/commit/c875c4e) (Node.js GitHub Bot) [#&#8203;48964](https://github.com/nodejs/node/pull/48964) - \[[`4b0e50501e`](https://github.com/nodejs/node/commit/4b0e50501e)] - **deps**: update ada to 2.6.0 (Node.js GitHub Bot) [#&#8203;48896](https://github.com/nodejs/node/pull/48896) - \[[`d960ee0ba3`](https://github.com/nodejs/node/commit/d960ee0ba3)] - **deps**: upgrade npm to 9.8.1 (npm team) [#&#8203;48838](https://github.com/nodejs/node/pull/48838) - \[[`d92b0139ca`](https://github.com/nodejs/node/commit/d92b0139ca)] - **deps**: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) [#&#8203;48788](https://github.com/nodejs/node/pull/48788) - \[[`2a7835c376`](https://github.com/nodejs/node/commit/2a7835c376)] - **deps**: V8: cherry-pick [`9f4b769`](https://github.com/nodejs/node/commit/9f4b7699f68e) (Joyee Cheung) [#&#8203;48830](https://github.com/nodejs/node/pull/48830) - \[[`c8e17829ac`](https://github.com/nodejs/node/commit/c8e17829ac)] - **deps**: V8: cherry-pick [`c1a54d5`](https://github.com/nodejs/node/commit/c1a54d5ffcd1) (Joyee Cheung) [#&#8203;48830](https://github.com/nodejs/node/pull/48830) - \[[`318e075b6f`](https://github.com/nodejs/node/commit/318e075b6f)] - **deps**: update googletest to [`cc36671`](https://github.com/nodejs/node/commit/cc36671) (Node.js GitHub Bot) [#&#8203;48789](https://github.com/nodejs/node/pull/48789) - \[[`114e088267`](https://github.com/nodejs/node/commit/114e088267)] - **diagnostics_channel**: fix last subscriber removal (Gabriel Schulhof) [#&#8203;48933](https://github.com/nodejs/node/pull/48933) - \[[`00fc8bb8b3`](https://github.com/nodejs/node/commit/00fc8bb8b3)] - **doc**: add rluvaton to collaborators (Raz Luvaton) [#&#8203;49215](https://github.com/nodejs/node/pull/49215) - \[[`21949c45b6`](https://github.com/nodejs/node/commit/21949c45b6)] - **doc**: add print results for examples in `WebStreams` (Jungku Lee) [#&#8203;49143](https://github.com/nodejs/node/pull/49143) - \[[`032107a6fe`](https://github.com/nodejs/node/commit/032107a6fe)] - **doc**: fix `Type` notation in webstreams (Deokjin Kim) [#&#8203;49121](https://github.com/nodejs/node/pull/49121) - \[[`91d41e7c5a`](https://github.com/nodejs/node/commit/91d41e7c5a)] - **doc**: fix name of the flag in `initialize()` docs (Antoine du Hamel) [#&#8203;49158](https://github.com/nodejs/node/pull/49158) - \[[`aa4caf810e`](https://github.com/nodejs/node/commit/aa4caf810e)] - **doc**: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) [#&#8203;49114](https://github.com/nodejs/node/pull/49114) - \[[`f888a1dbe3`](https://github.com/nodejs/node/commit/f888a1dbe3)] - **doc**: update process.binding deprecation text (Tobias Nießen) [#&#8203;49086](https://github.com/nodejs/node/pull/49086) - \[[`89fa3faf92`](https://github.com/nodejs/node/commit/89fa3faf92)] - **doc**: update with latest security release (Rafael Gonzaga) [#&#8203;49085](https://github.com/nodejs/node/pull/49085) - \[[`3d36e7a941`](https://github.com/nodejs/node/commit/3d36e7a941)] - **doc**: add description for `--port` flag of `node inspect` (Michael Bianco) [#&#8203;48785](https://github.com/nodejs/node/pull/48785) - \[[`e9d9ca12a3`](https://github.com/nodejs/node/commit/e9d9ca12a3)] - **doc**: add missing period (Rich Trott) [#&#8203;49094](https://github.com/nodejs/node/pull/49094) - \[[`7e7b554de0`](https://github.com/nodejs/node/commit/7e7b554de0)] - **doc**: add ESM examples in http.md (btea) [#&#8203;47763](https://github.com/nodejs/node/pull/47763) - \[[`48f8ccfd54`](https://github.com/nodejs/node/commit/48f8ccfd54)] - **doc**: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) [#&#8203;43529](https://github.com/nodejs/node/pull/43529) - \[[`195885c8f8`](https://github.com/nodejs/node/commit/195885c8f8)] - **doc**: add "type" to test runner event details (Phil Nash) [#&#8203;49014](https://github.com/nodejs/node/pull/49014) - \[[`6ce25f8415`](https://github.com/nodejs/node/commit/6ce25f8415)] - **doc**: reserve 118 for Electron 27 (David Sanders) [#&#8203;49023](https://github.com/nodejs/node/pull/49023) - \[[`9c26c0f296`](https://github.com/nodejs/node/commit/9c26c0f296)] - **doc**: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) [#&#8203;49008](https://github.com/nodejs/node/pull/49008) - \[[`7186e02aa0`](https://github.com/nodejs/node/commit/7186e02aa0)] - **doc**: remove v14 mention (Rafael Gonzaga) [#&#8203;49005](https://github.com/nodejs/node/pull/49005) - \[[`9641ac6c65`](https://github.com/nodejs/node/commit/9641ac6c65)] - **doc**: drop github actions check in sec release process (Rafael Gonzaga) [#&#8203;48978](https://github.com/nodejs/node/pull/48978) - \[[`f3d62abb19`](https://github.com/nodejs/node/commit/f3d62abb19)] - **doc**: improved joinDuplicateHeaders definition (Matteo Bianchi) [#&#8203;48859](https://github.com/nodejs/node/pull/48859) - \[[`0db104a08b`](https://github.com/nodejs/node/commit/0db104a08b)] - **doc**: fix second parameter name of `events.addAbortListener` (Deokjin Kim) [#&#8203;48922](https://github.com/nodejs/node/pull/48922) - \[[`5173c559b7`](https://github.com/nodejs/node/commit/5173c559b7)] - **doc**: add new reporter events to custom reporter examples (Chemi Atlow) [#&#8203;48903](https://github.com/nodejs/node/pull/48903) - \[[`660da785e6`](https://github.com/nodejs/node/commit/660da785e6)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48898](https://github.com/nodejs/node/pull/48898) - \[[`092f9fe92a`](https://github.com/nodejs/node/commit/092f9fe92a)] - **doc**: change duration to duration_ms on test documentation (Ardi_Nugraha) [#&#8203;48892](https://github.com/nodejs/node/pull/48892) - \[[`5e4730858d`](https://github.com/nodejs/node/commit/5e4730858d)] - **doc**: improve requireHostHeader (Guido Penta) [#&#8203;48860](https://github.com/nodejs/node/pull/48860) - \[[`045e3c549a`](https://github.com/nodejs/node/commit/045e3c549a)] - **doc**: add ver of 18.x where Node-api 9 is supported (Michael Dawson) [#&#8203;48876](https://github.com/nodejs/node/pull/48876) - \[[`c20d35df34`](https://github.com/nodejs/node/commit/c20d35df34)] - **doc**: include experimental features assessment (Rafael Gonzaga) [#&#8203;48824](https://github.com/nodejs/node/pull/48824) - \[[`d649339abd`](https://github.com/nodejs/node/commit/d649339abd)] - **doc**: add new TSC members (Michael Dawson) [#&#8203;48841](https://github.com/nodejs/node/pull/48841) - \[[`aeac327f2b`](https://github.com/nodejs/node/commit/aeac327f2b)] - **doc**: refactor node-api support matrix (Michael Dawson) [#&#8203;48774](https://github.com/nodejs/node/pull/48774) - \[[`388c7d9232`](https://github.com/nodejs/node/commit/388c7d9232)] - **doc**: declare `path` on example of `async_hooks.executionAsyncId()` (Deokjin Kim) [#&#8203;48556](https://github.com/nodejs/node/pull/48556) - \[[`fe20528c8e`](https://github.com/nodejs/node/commit/fe20528c8e)] - **doc**: remove the . in the end to reduce confusing (Jason) [#&#8203;48719](https://github.com/nodejs/node/pull/48719) - \[[`e69c8e173f`](https://github.com/nodejs/node/commit/e69c8e173f)] - **doc**: nodejs-social over nodejs/tweet (Rafael Gonzaga) [#&#8203;48769](https://github.com/nodejs/node/pull/48769) - \[[`ea547849fd`](https://github.com/nodejs/node/commit/ea547849fd)] - **doc**: expand on squashing and rebasing to land a PR (Chengzhong Wu) [#&#8203;48751](https://github.com/nodejs/node/pull/48751) - \[[`31442b96a5`](https://github.com/nodejs/node/commit/31442b96a5)] - **esm**: fix `globalPreload` warning (Antoine du Hamel) [#&#8203;49069](https://github.com/nodejs/node/pull/49069) - \[[`eb1215878b`](https://github.com/nodejs/node/commit/eb1215878b)] - **esm**: unflag import.meta.resolve (Guy Bedford) [#&#8203;49028](https://github.com/nodejs/node/pull/49028) - \[[`57b24a34e6`](https://github.com/nodejs/node/commit/57b24a34e6)] - **esm**: import.meta.resolve exact module not found errors should return (Guy Bedford) [#&#8203;49038](https://github.com/nodejs/node/pull/49038) - \[[`f23b2a3066`](https://github.com/nodejs/node/commit/f23b2a3066)] - **esm**: protect `ERR_UNSUPPORTED_DIR_IMPORT` against prototype pollution (Antoine du Hamel) [#&#8203;49060](https://github.com/nodejs/node/pull/49060) - \[[`386e826a56`](https://github.com/nodejs/node/commit/386e826a56)] - **esm**: add `initialize` hook, integrate with `register` (Izaak Schroeder) [#&#8203;48842](https://github.com/nodejs/node/pull/48842) - \[[`74a2e1e0ab`](https://github.com/nodejs/node/commit/74a2e1e0ab)] - **esm**: fix typo `parentUrl` -> `parentURL` (Antoine du Hamel) [#&#8203;48999](https://github.com/nodejs/node/pull/48999) - \[[`0a4f7c669a`](https://github.com/nodejs/node/commit/0a4f7c669a)] - **esm**: unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) [#&#8203;48559](https://github.com/nodejs/node/pull/48559) - \[[`a5597470ce`](https://github.com/nodejs/node/commit/a5597470ce)] - **esm**: add back `globalPreload` tests and fix failing ones (Antoine du Hamel) [#&#8203;48779](https://github.com/nodejs/node/pull/48779) - \[[`d568600b42`](https://github.com/nodejs/node/commit/d568600b42)] - **events**: remove weak listener for event target (Raz Luvaton) [#&#8203;48952](https://github.com/nodejs/node/pull/48952) - \[[`3d942d9842`](https://github.com/nodejs/node/commit/3d942d9842)] - **fs**: fix readdir recursive sync & callback (Ethan Arrowood) [#&#8203;48698](https://github.com/nodejs/node/pull/48698) - \[[`c14ff69d69`](https://github.com/nodejs/node/commit/c14ff69d69)] - **fs**: mention `URL` in NUL character error message (LiviaMedeiros) [#&#8203;48828](https://github.com/nodejs/node/pull/48828) - \[[`d634d781d7`](https://github.com/nodejs/node/commit/d634d781d7)] - **fs**: make `mkdtemp` accept buffers and URL (LiviaMedeiros) [#&#8203;48828](https://github.com/nodejs/node/pull/48828) - \[[`4515a285a4`](https://github.com/nodejs/node/commit/4515a285a4)] - **fs**: remove redundant `nullCheck` (Livia Medeiros) [#&#8203;48826](https://github.com/nodejs/node/pull/48826) - \[[`742597b14a`](https://github.com/nodejs/node/commit/742597b14a)] - **http**: start connections checking interval on listen (Paolo Insogna) [#&#8203;48611](https://github.com/nodejs/node/pull/48611) - \[[`67f9896247`](https://github.com/nodejs/node/commit/67f9896247)] - **(SEMVER-MINOR)** **inspector**: open add `SymbolDispose` (Chemi Atlow) [#&#8203;48765](https://github.com/nodejs/node/pull/48765) - \[[`b66a3c1c96`](https://github.com/nodejs/node/commit/b66a3c1c96)] - **lib**: fix MIME overmatch in data URLs (André Alves) [#&#8203;49104](https://github.com/nodejs/node/pull/49104) - \[[`dca8678a22`](https://github.com/nodejs/node/commit/dca8678a22)] - **lib**: fix to add resolve() before return at Blob.stream()'s source.pull() (bellbind) [#&#8203;48935](https://github.com/nodejs/node/pull/48935) - \[[`420b85c00f`](https://github.com/nodejs/node/commit/420b85c00f)] - **lib**: remove invalid parameter to toASCII (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878) - \[[`a12ce11b09`](https://github.com/nodejs/node/commit/a12ce11b09)] - **lib,permission**: drop repl autocomplete when pm enabled (Rafael Gonzaga) [#&#8203;48920](https://github.com/nodejs/node/pull/48920) - \[[`458eaf5e75`](https://github.com/nodejs/node/commit/458eaf5e75)] - **meta**: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot\[bot]) [#&#8203;48986](https://github.com/nodejs/node/pull/48986) - \[[`4f88cb10e0`](https://github.com/nodejs/node/commit/4f88cb10e0)] - **meta**: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot\[bot]) [#&#8203;48985](https://github.com/nodejs/node/pull/48985) - \[[`22fc2a6ec6`](https://github.com/nodejs/node/commit/22fc2a6ec6)] - **meta**: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot\[bot]) [#&#8203;48984](https://github.com/nodejs/node/pull/48984) - \[[`40103adabd`](https://github.com/nodejs/node/commit/40103adabd)] - **meta**: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot\[bot]) [#&#8203;48983](https://github.com/nodejs/node/pull/48983) - \[[`84c0c6848c`](https://github.com/nodejs/node/commit/84c0c6848c)] - **meta**: add mailmap entry for atlowChemi (Chemi Atlow) [#&#8203;48810](https://github.com/nodejs/node/pull/48810) - \[[`1a6e9450b8`](https://github.com/nodejs/node/commit/1a6e9450b8)] - **module**: make CJS load from ESM loader (Antoine du Hamel) [#&#8203;47999](https://github.com/nodejs/node/pull/47999) - \[[`a5322c4b4a`](https://github.com/nodejs/node/commit/a5322c4b4a)] - **module**: ensure successful import returns the same result (Antoine du Hamel) [#&#8203;46662](https://github.com/nodejs/node/pull/46662) - \[[`5aef593db3`](https://github.com/nodejs/node/commit/5aef593db3)] - **module**: implement `register` utility (João Lenon) [#&#8203;46826](https://github.com/nodejs/node/pull/46826) - \[[`015c4f788d`](https://github.com/nodejs/node/commit/015c4f788d)] - **node-api**: avoid macro redefinition (Tobias Nießen) [#&#8203;48879](https://github.com/nodejs/node/pull/48879) - \[[`53ee98566b`](https://github.com/nodejs/node/commit/53ee98566b)] - **permission**: move PrintTree into unnamed namespace (Tobias Nießen) [#&#8203;48874](https://github.com/nodejs/node/pull/48874) - \[[`30ea480135`](https://github.com/nodejs/node/commit/30ea480135)] - **permission**: fix data types in PrintTree (Tobias Nießen) [#&#8203;48770](https://github.com/nodejs/node/pull/48770) - \[[`8380800375`](https://github.com/nodejs/node/commit/8380800375)] - **readline**: add paste bracket mode (Jakub Jankiewicz) [#&#8203;47150](https://github.com/nodejs/node/pull/47150) - \[[`bc009d0c10`](https://github.com/nodejs/node/commit/bc009d0c10)] - **sea**: add support for V8 bytecode-only caching (Darshan Sen) [#&#8203;48191](https://github.com/nodejs/node/pull/48191) - \[[`f2f4ce9e29`](https://github.com/nodejs/node/commit/f2f4ce9e29)] - **src**: use effective cppgc wrapper id to deduce non-cppgc id (Joyee Cheung) [#&#8203;48660](https://github.com/nodejs/node/pull/48660) - \[[`bf7ff369f6`](https://github.com/nodejs/node/commit/bf7ff369f6)] - **src**: add built-in `.env` file support (Yagiz Nizipli) [#&#8203;48890](https://github.com/nodejs/node/pull/48890) - \[[`8d6948f8e2`](https://github.com/nodejs/node/commit/8d6948f8e2)] - **src**: remove duplicated code in `GenerateSingleExecutableBlob()` (Jungku Lee) [#&#8203;49119](https://github.com/nodejs/node/pull/49119) - \[[`b030004cee`](https://github.com/nodejs/node/commit/b030004cee)] - **src**: refactor vector writing in snapshot builder (Joyee Cheung) [#&#8203;48851](https://github.com/nodejs/node/pull/48851) - \[[`497df8288d`](https://github.com/nodejs/node/commit/497df8288d)] - **src**: add ability to overload fast api functions (Yagiz Nizipli) [#&#8203;48993](https://github.com/nodejs/node/pull/48993) - \[[`e5b0dfa359`](https://github.com/nodejs/node/commit/e5b0dfa359)] - **src**: remove redundant code for uv_handle_type (Jungku Lee) [#&#8203;49061](https://github.com/nodejs/node/pull/49061) - \[[`f126b9e3d1`](https://github.com/nodejs/node/commit/f126b9e3d1)] - **src**: modernize use-equals-default (Jason) [#&#8203;48735](https://github.com/nodejs/node/pull/48735) - \[[`db4370fc3e`](https://github.com/nodejs/node/commit/db4370fc3e)] - **src**: avoid string copy in BuiltinLoader::GetBuiltinIds (Yagiz Nizipli) [#&#8203;48721](https://github.com/nodejs/node/pull/48721) - \[[`9d13503c4e`](https://github.com/nodejs/node/commit/9d13503c4e)] - **src**: fix callback_queue.h missing header (Jason) [#&#8203;48733](https://github.com/nodejs/node/pull/48733) - \[[`6c389df3aa`](https://github.com/nodejs/node/commit/6c389df3aa)] - **src**: cast v8::Object::GetInternalField() return value to v8::Value (Joyee Cheung) [#&#8203;48943](https://github.com/nodejs/node/pull/48943) - \[[`7b9adff0be`](https://github.com/nodejs/node/commit/7b9adff0be)] - **src**: do not pass user input to format string (Antoine du Hamel) [#&#8203;48973](https://github.com/nodejs/node/pull/48973) - \[[`e0fdb7b092`](https://github.com/nodejs/node/commit/e0fdb7b092)] - **src**: remove ContextEmbedderIndex::kBindingDataStoreIndex (Joyee Cheung) [#&#8203;48836](https://github.com/nodejs/node/pull/48836) - \[[`578c3d1e14`](https://github.com/nodejs/node/commit/578c3d1e14)] - **src**: use ARES_SUCCESS instead of 0 (Hyunjin Kim) [#&#8203;48834](https://github.com/nodejs/node/pull/48834) - \[[`ed23426aac`](https://github.com/nodejs/node/commit/ed23426aac)] - **src**: save the performance milestone time origin in the AliasedArray (Joyee Cheung) [#&#8203;48708](https://github.com/nodejs/node/pull/48708) - \[[`5dec186663`](https://github.com/nodejs/node/commit/5dec186663)] - **src**: support snapshot in single executable applications (Joyee Cheung) [#&#8203;46824](https://github.com/nodejs/node/pull/46824) - \[[`d759d4f631`](https://github.com/nodejs/node/commit/d759d4f631)] - **src**: remove unnecessary temporary creation (Jason) [#&#8203;48734](https://github.com/nodejs/node/pull/48734) - \[[`409cc692db`](https://github.com/nodejs/node/commit/409cc692db)] - **src**: fix nullptr access on realm (Jan Olaf Krems) [#&#8203;48802](https://github.com/nodejs/node/pull/48802) - \[[`07d0fd61b1`](https://github.com/nodejs/node/commit/07d0fd61b1)] - **src**: remove OnScopeLeaveImpl's move assignment overload (Jason) [#&#8203;48732](https://github.com/nodejs/node/pull/48732) - \[[`41cc3efa23`](https://github.com/nodejs/node/commit/41cc3efa23)] - **src**: use string_view for utf-8 string creation (Yagiz Nizipli) [#&#8203;48722](https://github.com/nodejs/node/pull/48722) - \[[`62a46d9335`](https://github.com/nodejs/node/commit/62a46d9335)] - **src,permission**: restrict by default when pm enabled (Rafael Gonzaga) [#&#8203;48907](https://github.com/nodejs/node/pull/48907) - \[[`099159ce04`](https://github.com/nodejs/node/commit/099159ce04)] - **src,tools**: initialize cppgc (Daryl Haresign) [#&#8203;48660](https://github.com/nodejs/node/pull/48660) - \[[`600c08d197`](https://github.com/nodejs/node/commit/600c08d197)] - **stream**: improve WebStreams performance (Raz Luvaton) [#&#8203;49089](https://github.com/nodejs/node/pull/49089) - \[[`609b25fa99`](https://github.com/nodejs/node/commit/609b25fa99)] - **stream**: implement ReadableStream.from (Debadree Chatterjee) [#&#8203;48395](https://github.com/nodejs/node/pull/48395) - \[[`750cca2738`](https://github.com/nodejs/node/commit/750cca2738)] - **test**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49128](https://github.com/nodejs/node/pull/49128) - \[[`6595367649`](https://github.com/nodejs/node/commit/6595367649)] - **test**: use `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49127](https://github.com/nodejs/node/pull/49127) - \[[`661b055e75`](https://github.com/nodejs/node/commit/661b055e75)] - **test**: use `tmpdir.resolve()` in fs tests (Livia Medeiros) [#&#8203;49126](https://github.com/nodejs/node/pull/49126) - \[[`b3c56d206f`](https://github.com/nodejs/node/commit/b3c56d206f)] - **test**: use `tmpdir.resolve()` in fs tests (Livia Medeiros) [#&#8203;49125](https://github.com/nodejs/node/pull/49125) - \[[`3ddb155d16`](https://github.com/nodejs/node/commit/3ddb155d16)] - **test**: fix assertion message in test_async.c (Tobias Nießen) [#&#8203;49146](https://github.com/nodejs/node/pull/49146) - \[[`1d17c1032d`](https://github.com/nodejs/node/commit/1d17c1032d)] - **test**: refactor `test-esm-loader-hooks` for easier debugging (Antoine du Hamel) [#&#8203;49131](https://github.com/nodejs/node/pull/49131) - \[[`13bd7a0293`](https://github.com/nodejs/node/commit/13bd7a0293)] - **test**: add `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49079](https://github.com/nodejs/node/pull/49079) - \[[`89b1bce56d`](https://github.com/nodejs/node/commit/89b1bce56d)] - **test**: document `fixtures.fileURL()` (Livia Medeiros) [#&#8203;49083](https://github.com/nodejs/node/pull/49083) - \[[`2fcb855c76`](https://github.com/nodejs/node/commit/2fcb855c76)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49105](https://github.com/nodejs/node/pull/49105) - \[[`7816e040df`](https://github.com/nodejs/node/commit/7816e040df)] - **test**: stabilize the inspector-open-dispose test (Chemi Atlow) [#&#8203;49000](https://github.com/nodejs/node/pull/49000) - \[[`e70e9747e4`](https://github.com/nodejs/node/commit/e70e9747e4)] - **test**: print instruction for creating missing snapshot in assertSnapshot (Raz Luvaton) [#&#8203;48914](https://github.com/nodejs/node/pull/48914) - \[[`669ac03520`](https://github.com/nodejs/node/commit/669ac03520)] - **test**: add `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49040](https://github.com/nodejs/node/pull/49040) - \[[`b945d7be35`](https://github.com/nodejs/node/commit/b945d7be35)] - **test**: use `spawn` and `spawnPromisified` instead of `exec` (Antoine du Hamel) [#&#8203;48991](https://github.com/nodejs/node/pull/48991) - \[[`b3a7427583`](https://github.com/nodejs/node/commit/b3a7427583)] - **test**: refactor `test-node-output-errors` (Antoine du Hamel) [#&#8203;48992](https://github.com/nodejs/node/pull/48992) - \[[`6c3e5c4d69`](https://github.com/nodejs/node/commit/6c3e5c4d69)] - **test**: use `fixtures.fileURL` when appropriate (Antoine du Hamel) [#&#8203;48990](https://github.com/nodejs/node/pull/48990) - \[[`9138b78bcb`](https://github.com/nodejs/node/commit/9138b78bcb)] - **test**: validate error code rather than message (Antoine du Hamel) [#&#8203;48972](https://github.com/nodejs/node/pull/48972) - \[[`b4ca4a6f80`](https://github.com/nodejs/node/commit/b4ca4a6f80)] - **test**: fix snapshot tests when cwd contains spaces or backslashes (Antoine du Hamel) [#&#8203;48959](https://github.com/nodejs/node/pull/48959) - \[[`d4398d458c`](https://github.com/nodejs/node/commit/d4398d458c)] - **test**: order `common.mjs` in ASCII order (Antoine du Hamel) [#&#8203;48960](https://github.com/nodejs/node/pull/48960) - \[[`b5991f5250`](https://github.com/nodejs/node/commit/b5991f5250)] - **test**: fix some assumptions in tests (Antoine du Hamel) [#&#8203;48958](https://github.com/nodejs/node/pull/48958) - \[[`62e23f83f9`](https://github.com/nodejs/node/commit/62e23f83f9)] - **test**: improve internal/worker/io.js coverage (Yoshiki Kurihara) [#&#8203;42387](https://github.com/nodejs/node/pull/42387) - \[[`314bd6095c`](https://github.com/nodejs/node/commit/314bd6095c)] - **test**: fix `es-module/test-esm-initialization` (Antoine du Hamel) [#&#8203;48880](https://github.com/nodejs/node/pull/48880) - \[[`3680a66df4`](https://github.com/nodejs/node/commit/3680a66df4)] - **test**: validate host with commas on url.parse (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878) - \[[`24c3742372`](https://github.com/nodejs/node/commit/24c3742372)] - **test**: delete test-net-bytes-per-incoming-chunk-overhead (Michaël Zasso) [#&#8203;48811](https://github.com/nodejs/node/pull/48811) - \[[`e01cce50f5`](https://github.com/nodejs/node/commit/e01cce50f5)] - **test**: skip experimental test with pointer compression (Colin Ihrig) [#&#8203;48738](https://github.com/nodejs/node/pull/48738) - \[[`d5e93b1074`](https://github.com/nodejs/node/commit/d5e93b1074)] - **test**: fix flaky test-string-decode.js on x86 (Stefan Stojanovic) [#&#8203;48750](https://github.com/nodejs/node/pull/48750) - \[[`9136667d7d`](https://github.com/nodejs/node/commit/9136667d7d)] - **test_runner**: dont set exit code on todo tests (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929) - \[[`52c94908c0`](https://github.com/nodejs/node/commit/52c94908c0)] - **test_runner**: fix todo and only in spec reporter (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929) - \[[`5ccfb8d515`](https://github.com/nodejs/node/commit/5ccfb8d515)] - **test_runner**: unwrap error message in TAP reporter (Colin Ihrig) [#&#8203;48942](https://github.com/nodejs/node/pull/48942) - \[[`fa19b0ed05`](https://github.com/nodejs/node/commit/fa19b0ed05)] - **test_runner**: add `__proto__` null (Raz Luvaton) [#&#8203;48663](https://github.com/nodejs/node/pull/48663) - \[[`65d23940bf`](https://github.com/nodejs/node/commit/65d23940bf)] - **test_runner**: fix async callback in describe not awaited (Raz Luvaton) [#&#8203;48856](https://github.com/nodejs/node/pull/48856) - \[[`4bd5e55b43`](https://github.com/nodejs/node/commit/4bd5e55b43)] - **test_runner**: fix test_runner `test:fail` event type (Ethan Arrowood) [#&#8203;48854](https://github.com/nodejs/node/pull/48854) - \[[`41058beed8`](https://github.com/nodejs/node/commit/41058beed8)] - **test_runner**: call abort on test finish (Raz Luvaton) [#&#8203;48827](https://github.com/nodejs/node/pull/48827) - \[[`821b11a59f`](https://github.com/nodejs/node/commit/821b11a59f)] - **tls**: fix bugs of double TLS (rogertyang) [#&#8203;48969](https://github.com/nodejs/node/pull/48969) - \[[`4439327e73`](https://github.com/nodejs/node/commit/4439327e73)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49122](https://github.com/nodejs/node/pull/49122) - \[[`21dc844309`](https://github.com/nodejs/node/commit/21dc844309)] - **tools**: use spec reporter in actions (Moshe Atlow) [#&#8203;49129](https://github.com/nodejs/node/pull/49129) - \[[`3471758696`](https://github.com/nodejs/node/commit/3471758696)] - **tools**: use [@&#8203;reporters/github](https://github.com/reporters/github) when running in github actions (Moshe Atlow) [#&#8203;49129](https://github.com/nodejs/node/pull/49129) - \[[`95a6e7661e`](https://github.com/nodejs/node/commit/95a6e7661e)] - **tools**: add [@&#8203;reporters/github](https://github.com/reporters/github) to tools (Moshe Atlow) [#&#8203;49129](https://github.com/nodejs/node/pull/49129) - \[[`995cbf93eb`](https://github.com/nodejs/node/commit/995cbf93eb)] - **tools**: update eslint to 8.47.0 (Node.js GitHub Bot) [#&#8203;49124](https://github.com/nodejs/node/pull/49124) - \[[`ed065bc56e`](https://github.com/nodejs/node/commit/ed065bc56e)] - **tools**: update lint-md-dependencies to rollup@3.27.2 (Node.js GitHub Bot) [#&#8203;49035](https://github.com/nodejs/node/pull/49035) - \[[`a5f37178ad`](https://github.com/nodejs/node/commit/a5f37178ad)] - **tools**: limit the number of auto start CIs (Antoine du Hamel) [#&#8203;49067](https://github.com/nodejs/node/pull/49067) - \[[`c1bd680f89`](https://github.com/nodejs/node/commit/c1bd680f89)] - **tools**: update eslint to 8.46.0 (Node.js GitHub Bot) [#&#8203;48966](https://github.com/nodejs/node/pull/48966) - \[[`e09a6b4821`](https://github.com/nodejs/node/commit/e09a6b4821)] - **tools**: update lint-md-dependencies to rollup@3.27.0 (Node.js GitHub Bot) [#&#8203;48965](https://github.com/nodejs/node/pull/48965) - \[[`0cd2393bd9`](https://github.com/nodejs/node/commit/0cd2393bd9)] - **tools**: update lint-md-dependencies to rollup@3.26.3 (Node.js GitHub Bot) [#&#8203;48888](https://github.com/nodejs/node/pull/48888) - \[[`41929a2906`](https://github.com/nodejs/node/commit/41929a2906)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;25](https://github.com/25).0.3 (Node.js GitHub Bot) [#&#8203;48791](https://github.com/nodejs/node/pull/48791) - \[[`1761bdfbd9`](https://github.com/nodejs/node/commit/1761bdfbd9)] - **tools**: update eslint to 8.45.0 (Node.js GitHub Bot) [#&#8203;48793](https://github.com/nodejs/node/pull/48793) - \[[`b82f05cc4b`](https://github.com/nodejs/node/commit/b82f05cc4b)] - **typings**: update JSDoc for `cwd` in `child_process` (LiviaMedeiros) [#&#8203;49029](https://github.com/nodejs/node/pull/49029) - \[[`be7b511255`](https://github.com/nodejs/node/commit/be7b511255)] - **typings**: sync JSDoc with the actual implementation (Hyunjin Kim) [#&#8203;48853](https://github.com/nodejs/node/pull/48853) - \[[`45c860035d`](https://github.com/nodejs/node/commit/45c860035d)] - **url**: overload `canParse` V8 fast api method (Yagiz Nizipli) [#&#8203;48993](https://github.com/nodejs/node/pull/48993) - \[[`60d614157b`](https://github.com/nodejs/node/commit/60d614157b)] - **url**: fix `isURL` detection by checking `path` (Zhuo Zhang) [#&#8203;48928](https://github.com/nodejs/node/pull/48928) - \[[`b12c3b5240`](https://github.com/nodejs/node/commit/b12c3b5240)] - **url**: ensure getter access do not mutate observable symbols (Antoine du Hamel) [#&#8203;48897](https://github.com/nodejs/node/pull/48897) - \[[`30fb7b7535`](https://github.com/nodejs/node/commit/30fb7b7535)] - **url**: reduce `pathToFileURL` cpp calls (Yagiz Nizipli) [#&#8203;48709](https://github.com/nodejs/node/pull/48709) - \[[`c3dbd0c1e4`](https://github.com/nodejs/node/commit/c3dbd0c1e4)] - **util**: use `primordials.ArrayPrototypeIndexOf` instead of mutable method (DaisyDogs07) [#&#8203;48586](https://github.com/nodejs/node/pull/48586) - \[[`b79b2927ca`](https://github.com/nodejs/node/commit/b79b2927ca)] - **watch**: decrease debounce rate (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926) - \[[`a12996298e`](https://github.com/nodejs/node/commit/a12996298e)] - **watch**: use debounce instead of throttle (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926) ### [`v20.5.1`](https://github.com/nodejs/node/releases/tag/v20.5.1): 2023-08-09, Version 20.5.1 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.5.0...v20.5.1) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - [CVE-2023-32002](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32002): Policies can be bypassed via Module.\_load (High) - [CVE-2023-32558](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32558): process.binding() can bypass the permission model through path traversal (High) - [CVE-2023-32004](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32004): Permission model can be bypassed by specifying a path traversal sequence in a Buffer (High) - [CVE-2023-32006](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32006): Policies can be bypassed by module.constructor.createRequire (Medium) - [CVE-2023-32559](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32559): Policies can be bypassed via process.binding (Medium) - [CVE-2023-32005](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32005): fs.statfs can bypass the permission model (Low) - [CVE-2023-32003](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32003): fs.mkdtemp() and fs.mkdtempSync() can bypass the permission model (Low) - OpenSSL Security Releases - [OpenSSL security advisory 14th July](https://mta.openssl.org/pipermail/openssl-announce/2023-July/000264.html). - [OpenSSL security advisory 19th July](https://mta.openssl.org/pipermail/openssl-announce/2023-July/000265.html). - [OpenSSL security advisory 31st July](https://mta.openssl.org/pipermail/openssl-announce/2023-July/000267.html) More detailed information on each of the vulnerabilities can be found in [August 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/august-2023-security-releases/) blog post. ##### Commits - \[[`92300b51b4`](https://github.com/nodejs/node/commit/92300b51b4)] - **deps**: update archs files for openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036) - \[[`559698abf2`](https://github.com/nodejs/node/commit/559698abf2)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036) - \[[`1bf3429e8e`](https://github.com/nodejs/node/commit/1bf3429e8e)] - **lib,permission**: restrict process.binding when pm is enabled (RafaelGSS) [nodejs-private/node-private#438](https://github.com/nodejs-private/node-private/pull/438) - \[[`98a83a67e6`](https://github.com/nodejs/node/commit/98a83a67e6)] - **permission**: ensure to resolve path when calling mkdtemp (RafaelGSS) [nodejs-private/node-private#464](https://github.com/nodejs-private/node-private/pull/464) - \[[`1f0cde466b`](https://github.com/nodejs/node/commit/1f0cde466b)] - **permission**: handle buffer path on fs calls (RafaelGSS) [nodejs-private/node-private#439](https://github.com/nodejs-private/node-private/pull/439) - \[[`bd094d60ea`](https://github.com/nodejs/node/commit/bd094d60ea)] - **permission**: handle fstatfs and add pm supported list (RafaelGSS) [nodejs-private/node-private#441](https://github.com/nodejs-private/node-private/pull/441) - \[[`7337d21484`](https://github.com/nodejs/node/commit/7337d21484)] - **policy**: handle Module.constructor and main.extensions bypass (RafaelGSS) [nodejs-private/node-private#417](https://github.com/nodejs-private/node-private/pull/417) - \[[`cf348ec640`](https://github.com/nodejs/node/commit/cf348ec640)] - **policy**: disable process.binding() when enabled (Tobias Nießen) [nodejs-private/node-private#397](https://github.com/nodejs-private/node-private/pull/397) ### [`v20.5.0`](https://github.com/nodejs/node/releases/tag/v20.5.0): 2023-07-18, Version 20.5.0 (Current), @&#8203;juanarbol [Compare Source](https://github.com/nodejs/node/compare/v20.4.0...v20.5.0) ##### Notable Changes - \[[`45be29d89f`](https://github.com/nodejs/node/commit/45be29d89f)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757) - \[[`a316808136`](https://github.com/nodejs/node/commit/a316808136)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596) - \[[`986b46a567`](https://github.com/nodejs/node/commit/986b46a567)] - **fs**: add a fast-path for readFileSync utf-8 (Yagiz Nizipli) [#&#8203;48658](https://github.com/nodejs/node/pull/48658) - \[[`0ef73ff6f0`](https://github.com/nodejs/node/commit/0ef73ff6f0)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639) ##### Commits - \[[`eb0aba59b8`](https://github.com/nodejs/node/commit/eb0aba59b8)] - **bootstrap**: use correct descriptor for Symbol.{dispose,asyncDispose} (Jordan Harband) [#&#8203;48703](https://github.com/nodejs/node/pull/48703) - \[[`e2d0195dcf`](https://github.com/nodejs/node/commit/e2d0195dcf)] - **bootstrap**: hide experimental web globals with flag kNoBrowserGlobals (Chengzhong Wu) [#&#8203;48545](https://github.com/nodejs/node/pull/48545) - \[[`67a1018389`](https://github.com/nodejs/node/commit/67a1018389)] - **build**: do not pass target toolchain flags to host toolchain (Ivan Trubach) [#&#8203;48597](https://github.com/nodejs/node/pull/48597) - \[[`7d843bb942`](https://github.com/nodejs/node/commit/7d843bb942)] - **child_process**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`4e08160f8c`](https://github.com/nodejs/node/commit/4e08160f8c)] - **child_process**: support `Symbol.dispose` (Moshe Atlow) [#&#8203;48551](https://github.com/nodejs/node/pull/48551) - \[[`ef7728bf36`](https://github.com/nodejs/node/commit/ef7728bf36)] - **deps**: update nghttp2 to 1.55.1 (Node.js GitHub Bot) [#&#8203;48790](https://github.com/nodejs/node/pull/48790) - \[[`1454f02499`](https://github.com/nodejs/node/commit/1454f02499)] - **deps**: update nghttp2 to 1.55.0 (Node.js GitHub Bot) [#&#8203;48746](https://github.com/nodejs/node/pull/48746) - \[[`fa94debf46`](https://github.com/nodejs/node/commit/fa94debf46)] - **deps**: update minimatch to 9.0.3 (Node.js GitHub Bot) [#&#8203;48704](https://github.com/nodejs/node/pull/48704) - \[[`c73cfcc144`](https://github.com/nodejs/node/commit/c73cfcc144)] - **deps**: update acorn to 8.10.0 (Node.js GitHub Bot) [#&#8203;48713](https://github.com/nodejs/node/pull/48713) - \[[`b7a076a052`](https://github.com/nodejs/node/commit/b7a076a052)] - **deps**: V8: cherry-pick [`cb00db4`](https://github.com/nodejs/node/commit/cb00db4dba6c) (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671) - \[[`150e15536b`](https://github.com/nodejs/node/commit/150e15536b)] - **deps**: upgrade npm to 9.8.0 (npm team) [#&#8203;48665](https://github.com/nodejs/node/pull/48665) - \[[`c47b2cbd35`](https://github.com/nodejs/node/commit/c47b2cbd35)] - **dgram**: socket add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717) - \[[`002ce31cca`](https://github.com/nodejs/node/commit/002ce31cca)] - **dgram**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`45be29d89f`](https://github.com/nodejs/node/commit/45be29d89f)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757) - \[[`69b55d2261`](https://github.com/nodejs/node/commit/69b55d2261)] - **doc**: fix ambiguity in http.md and https.md (an5er) [#&#8203;48692](https://github.com/nodejs/node/pull/48692) - \[[`caccb051c7`](https://github.com/nodejs/node/commit/caccb051c7)] - **doc**: clarify transform.\_transform() callback argument logic (Rafael Sofi-zada) [#&#8203;48680](https://github.com/nodejs/node/pull/48680) - \[[`999ae0c8c3`](https://github.com/nodejs/node/commit/999ae0c8c3)] - **doc**: fix copy node executable in Windows (Yoav Vainrich) [#&#8203;48624](https://github.com/nodejs/node/pull/48624) - \[[`7daefaeb44`](https://github.com/nodejs/node/commit/7daefaeb44)] - **doc**: drop \<b> of v20 changelog (Rafael Gonzaga) [#&#8203;48649](https://github.com/nodejs/node/pull/48649) - \[[`dd7ea3e1df`](https://github.com/nodejs/node/commit/dd7ea3e1df)] - **doc**: mention git node release prepare (Rafael Gonzaga) [#&#8203;48644](https://github.com/nodejs/node/pull/48644) - \[[`cc7809df21`](https://github.com/nodejs/node/commit/cc7809df21)] - **esm**: fix emit deprecation on legacy main resolve (Antoine du Hamel) [#&#8203;48664](https://github.com/nodejs/node/pull/48664) - \[[`67b13d1dba`](https://github.com/nodejs/node/commit/67b13d1dba)] - **events**: fix bug listenerCount don't compare wrapped listener (yuzheng14) [#&#8203;48592](https://github.com/nodejs/node/pull/48592) - \[[`a316808136`](https://github.com/nodejs/node/commit/a316808136)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596) - \[[`986b46a567`](https://github.com/nodejs/node/commit/986b46a567)] - **fs**: add a fast-path for readFileSync utf-8 (Yagiz Nizipli) [#&#8203;48658](https://github.com/nodejs/node/pull/48658) - \[[`e4333ac41f`](https://github.com/nodejs/node/commit/e4333ac41f)] - **http2**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`4a0b66e4f9`](https://github.com/nodejs/node/commit/4a0b66e4f9)] - **http2**: send RST code 8 on AbortController signal (Devraj Mehta) [#&#8203;48573](https://github.com/nodejs/node/pull/48573) - \[[`1295c76fce`](https://github.com/nodejs/node/commit/1295c76fce)] - **lib**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`dff6c25a36`](https://github.com/nodejs/node/commit/dff6c25a36)] - **meta**: bump actions/checkout from 3.5.2 to 3.5.3 (dependabot\[bot]) [#&#8203;48625](https://github.com/nodejs/node/pull/48625) - \[[`b5cb69ceaa`](https://github.com/nodejs/node/commit/b5cb69ceaa)] - **meta**: bump step-security/harden-runner from 2.4.0 to 2.4.1 (dependabot\[bot]) [#&#8203;48626](https://github.com/nodejs/node/pull/48626) - \[[`332e480b46`](https://github.com/nodejs/node/commit/332e480b46)] - **meta**: bump ossf/scorecard-action from 2.1.3 to 2.2.0 (dependabot\[bot]) [#&#8203;48628](https://github.com/nodejs/node/pull/48628) - \[[`25c5a0aaee`](https://github.com/nodejs/node/commit/25c5a0aaee)] - **meta**: bump github/codeql-action from 2.3.6 to 2.20.1 (dependabot\[bot]) [#&#8203;48627](https://github.com/nodejs/node/pull/48627) - \[[`6406f50ab1`](https://github.com/nodejs/node/commit/6406f50ab1)] - **module**: add SourceMap.lineLengths (Isaac Z. Schlueter) [#&#8203;48461](https://github.com/nodejs/node/pull/48461) - \[[`cfa69bd48c`](https://github.com/nodejs/node/commit/cfa69bd48c)] - **net**: server add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717) - \[[`ac11264cc5`](https://github.com/nodejs/node/commit/ac11264cc5)] - **net**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`82d6b13bf6`](https://github.com/nodejs/node/commit/82d6b13bf6)] - **permission**: add debug log when inserting fs nodes (Rafael Gonzaga) [#&#8203;48677](https://github.com/nodejs/node/pull/48677) - \[[`f4333b1cdd`](https://github.com/nodejs/node/commit/f4333b1cdd)] - **permission**: v8.writeHeapSnapshot and process.report (Rafael Gonzaga) [#&#8203;48564](https://github.com/nodejs/node/pull/48564) - \[[`f691dca6c9`](https://github.com/nodejs/node/commit/f691dca6c9)] - **readline**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`227e6bd898`](https://github.com/nodejs/node/commit/227e6bd898)] - **src**: pass syscall on `fs.readFileSync` fail operation (Yagiz Nizipli) [#&#8203;48815](https://github.com/nodejs/node/pull/48815) - \[[`a9a4b73653`](https://github.com/nodejs/node/commit/a9a4b73653)] - **src**: make BaseObject iteration order deterministic (Joyee Cheung) [#&#8203;48702](https://github.com/nodejs/node/pull/48702) - \[[`d99ea4845a`](https://github.com/nodejs/node/commit/d99ea4845a)] - **src**: remove kEagerCompile for CompileFunction (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671) - \[[`df363d0010`](https://github.com/nodejs/node/commit/df363d0010)] - **src**: deduplicate X509 getter implementations (Tobias Nießen) [#&#8203;48563](https://github.com/nodejs/node/pull/48563) - \[[`9cf2e1f55b`](https://github.com/nodejs/node/commit/9cf2e1f55b)] - **src,lib**: reducing C++ calls of esm legacy main resolve (Vinicius Lourenço) [#&#8203;48325](https://github.com/nodejs/node/pull/48325) - \[[`daeb21dde9`](https://github.com/nodejs/node/commit/daeb21dde9)] - **stream**: fix deadlock when pipeing to full sink (Robert Nagy) [#&#8203;48691](https://github.com/nodejs/node/pull/48691) - \[[`5a382d02d6`](https://github.com/nodejs/node/commit/5a382d02d6)] - **stream**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`6e82077dd4`](https://github.com/nodejs/node/commit/6e82077dd4)] - **test**: deflake test-net-throttle (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599) - \[[`d378b2c822`](https://github.com/nodejs/node/commit/d378b2c822)] - **test**: move test-net-throttle to parallel (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599) - \[[`dfa0aee5bf`](https://github.com/nodejs/node/commit/dfa0aee5bf)] - ***Revert*** "**test**: remove test-crypto-keygen flaky designation" (Luigi Pinca) [#&#8203;48652](https://github.com/nodejs/node/pull/48652) - \[[`0ef73ff6f0`](https://github.com/nodejs/node/commit/0ef73ff6f0)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639) - \[[`e2442bb7ef`](https://github.com/nodejs/node/commit/e2442bb7ef)] - **timers**: support Symbol.dispose (Moshe Atlow) [#&#8203;48633](https://github.com/nodejs/node/pull/48633) - \[[`4398ade426`](https://github.com/nodejs/node/commit/4398ade426)] - **tools**: run fetch_deps.py with Python 3 (Richard Lau) [#&#8203;48729](https://github.com/nodejs/node/pull/48729) - \[[`38ce95d054`](https://github.com/nodejs/node/commit/38ce95d054)] - **tools**: update doc to unist-util-select@5.0.0 unist-util-visit@5.0.0 (Node.js GitHub Bot) [#&#8203;48714](https://github.com/nodejs/node/pull/48714) - \[[`b25e78a998`](https://github.com/nodejs/node/commit/b25e78a998)] - **tools**: update lint-md-dependencies to rollup@3.26.2 (Node.js GitHub Bot) [#&#8203;48705](https://github.com/nodejs/node/pull/48705) - \[[`a1f4ff7c59`](https://github.com/nodejs/node/commit/a1f4ff7c59)] - **tools**: update eslint to 8.44.0 (Node.js GitHub Bot) [#&#8203;48632](https://github.com/nodejs/node/pull/48632) - \[[`42dc6eb698`](https://github.com/nodejs/node/commit/42dc6eb698)] - **tools**: update lint-md-dependencies to rollup@3.26.0 (Node.js GitHub Bot) [#&#8203;48631](https://github.com/nodejs/node/pull/48631) - \[[`07bfcc45ab`](https://github.com/nodejs/node/commit/07bfcc45ab)] - **url**: fix `canParse` false value when v8 optimizes (Yagiz Nizipli) [#&#8203;48817](https://github.com/nodejs/node/pull/48817) ### [`v20.4.0`](https://github.com/nodejs/node/releases/tag/v20.4.0): 2023-07-05, Version 20.4.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.3.1...v20.4.0) ##### Notable Changes ##### Mock Timers The new feature allows developers to write more reliable and predictable tests for time-dependent functionality. It includes `MockTimers` with the ability to mock `setTimeout`, `setInterval` from `globals`, `node:timers`, and `node:timers/promises`. The feature provides a simple API to advance time, enable specific timers, and release all timers. ```mjs import assert from 'node:assert'; import { test } from 'node:test'; test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => { const fn = context.mock.fn(); // Optionally choose what to mock context.mock.timers.enable(['setTimeout']); const nineSecs = 9000; setTimeout(fn, nineSecs); const threeSeconds = 3000; context.mock.timers.tick(threeSeconds); context.mock.timers.tick(threeSeconds); context.mock.timers.tick(threeSeconds); assert.strictEqual(fn.mock.callCount(), 1); }); ``` This feature was contributed by Erick Wendel in [#&#8203;47775](https://github.com/nodejs/node/pull/47775). ##### Support to the explicit resource management proposal Node is adding support to the [explicit resource management](https://github.com/tc39/proposal-explicit-resource-management) proposal to its resources allowing users of TypeScript/babel to use `using`/`await using` with V8 support for everyone else on the way. This feature was contributed by Moshe Atlow and Benjamin Gruenbaum in [#&#8203;48518](https://github.com/nodejs/node/pull/48518). ##### Other notable changes - \[[`fe333d2584`](https://github.com/nodejs/node/commit/fe333d2584)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416) - \[[`60c2ea4e79`](https://github.com/nodejs/node/commit/60c2ea4e79)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527) - \[[`5cacdf9e6b`](https://github.com/nodejs/node/commit/5cacdf9e6b)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449) - \[[`504d1d7bdc`](https://github.com/nodejs/node/commit/504d1d7bdc)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190) ##### Commits - \[[`8a611a387f`](https://github.com/nodejs/node/commit/8a611a387f)] - **benchmark**: add bar.R (Rafael Gonzaga) [#&#8203;47729](https://github.com/nodejs/node/pull/47729) - \[[`12fa716cf9`](https://github.com/nodejs/node/commit/12fa716cf9)] - **benchmark**: refactor crypto oneshot (Filip Skokan) [#&#8203;48267](https://github.com/nodejs/node/pull/48267) - \[[`d6ecbde592`](https://github.com/nodejs/node/commit/d6ecbde592)] - **benchmark**: add crypto.create\*Key (Filip Skokan) [#&#8203;48284](https://github.com/nodejs/node/pull/48284) - \[[`e60b6dedd8`](https://github.com/nodejs/node/commit/e60b6dedd8)] - **bootstrap**: unify snapshot builder and embedder entry points (Joyee Cheung) [#&#8203;48242](https://github.com/nodejs/node/pull/48242) - \[[`40662957b1`](https://github.com/nodejs/node/commit/40662957b1)] - **bootstrap**: simplify initialization of source map handlers (Joyee Cheung) [#&#8203;48304](https://github.com/nodejs/node/pull/48304) - \[[`6551538079`](https://github.com/nodejs/node/commit/6551538079)] - **build**: fix `configure --link-module` (Richard Lau) [#&#8203;48522](https://github.com/nodejs/node/pull/48522) - \[[`f7f32089e7`](https://github.com/nodejs/node/commit/f7f32089e7)] - **build**: sync libuv header change (Jiawen Geng) [#&#8203;48429](https://github.com/nodejs/node/pull/48429) - \[[`f60205c915`](https://github.com/nodejs/node/commit/f60205c915)] - **build**: update action to close stale PRs (Michael Dawson) [#&#8203;48196](https://github.com/nodejs/node/pull/48196) - \[[`4f4d0b802e`](https://github.com/nodejs/node/commit/4f4d0b802e)] - **child_process**: improve spawn performance on Linux (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523) - \[[`fe333d2584`](https://github.com/nodejs/node/commit/fe333d2584)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416) - \[[`89aaf16237`](https://github.com/nodejs/node/commit/89aaf16237)] - **crypto**: remove OPENSSL_FIPS guard for OpenSSL 3 (Richard Lau) [#&#8203;48392](https://github.com/nodejs/node/pull/48392) - \[[`6199e1946c`](https://github.com/nodejs/node/commit/6199e1946c)] - **deps**: upgrade to libuv 1.46.0 (Santiago Gimeno) [#&#8203;48618](https://github.com/nodejs/node/pull/48618) - \[[`1b2b930fda`](https://github.com/nodejs/node/commit/1b2b930fda)] - **deps**: add loong64 config into openssl gypi (Shi Pujin) [#&#8203;48043](https://github.com/nodejs/node/pull/48043) - \[[`ba8d048929`](https://github.com/nodejs/node/commit/ba8d048929)] - **deps**: update acorn to 8.9.0 (Node.js GitHub Bot) [#&#8203;48484](https://github.com/nodejs/node/pull/48484) - \[[`d96f921d06`](https://github.com/nodejs/node/commit/d96f921d06)] - **deps**: update zlib to 1.2.13.1-motley-f81f385 (Node.js GitHub Bot) [#&#8203;48541](https://github.com/nodejs/node/pull/48541) - \[[`ed1d047e8f`](https://github.com/nodejs/node/commit/ed1d047e8f)] - **deps**: update googletest to [`ec4fed9`](https://github.com/nodejs/node/commit/ec4fed9) (Node.js GitHub Bot) [#&#8203;48538](https://github.com/nodejs/node/pull/48538) - \[[`f43d718c67`](https://github.com/nodejs/node/commit/f43d718c67)] - **deps**: update minimatch to 9.0.2 (Node.js GitHub Bot) [#&#8203;48542](https://github.com/nodejs/node/pull/48542) - \[[`2f66147cbf`](https://github.com/nodejs/node/commit/2f66147cbf)] - **deps**: update corepack to 0.19.0 (Node.js GitHub Bot) [#&#8203;48540](https://github.com/nodejs/node/pull/48540) - \[[`d91b0fde73`](https://github.com/nodejs/node/commit/d91b0fde73)] - **deps**: V8: cherry-pick [`1a782f6`](https://github.com/nodejs/node/commit/1a782f6543ae) (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523) - \[[`112335e342`](https://github.com/nodejs/node/commit/112335e342)] - **deps**: update corepack to 0.18.1 (Node.js GitHub Bot) [#&#8203;48483](https://github.com/nodejs/node/pull/48483) - \[[`2b141c413f`](https://github.com/nodejs/node/commit/2b141c413f)] - **deps**: update icu to 73.2 (Node.js GitHub Bot) [#&#8203;48502](https://github.com/nodejs/node/pull/48502) - \[[`188b34d4a1`](https://github.com/nodejs/node/commit/188b34d4a1)] - **deps**: upgrade npm to 9.7.2 (npm team) [#&#8203;48514](https://github.com/nodejs/node/pull/48514) - \[[`bf0444b5d9`](https://github.com/nodejs/node/commit/bf0444b5d9)] - **deps**: update zlib to 1.2.13.1-motley-3ca9f16 (Node.js GitHub Bot) [#&#8203;48413](https://github.com/nodejs/node/pull/48413) - \[[`b339d80a56`](https://github.com/nodejs/node/commit/b339d80a56)] - **deps**: upgrade npm to 9.7.1 (npm team) [#&#8203;48378](https://github.com/nodejs/node/pull/48378) - \[[`4132931b87`](https://github.com/nodejs/node/commit/4132931b87)] - **deps**: update simdutf to 3.2.14 (Node.js GitHub Bot) [#&#8203;48344](https://github.com/nodejs/node/pull/48344) - \[[`8cd56c1e85`](https://github.com/nodejs/node/commit/8cd56c1e85)] - **deps**: update ada to 2.5.1 (Node.js GitHub Bot) [#&#8203;48319](https://github.com/nodejs/node/pull/48319) - \[[`78cffcd645`](https://github.com/nodejs/node/commit/78cffcd645)] - **deps**: update zlib to [`982b036`](https://github.com/nodejs/node/commit/982b036) (Node.js GitHub Bot) [#&#8203;48327](https://github.com/nodejs/node/pull/48327) - \[[`6d00c2e33b`](https://github.com/nodejs/node/commit/6d00c2e33b)] - **doc**: fix options order (Luigi Pinca) [#&#8203;48617](https://github.com/nodejs/node/pull/48617) - \[[`7ad2d3a5d1`](https://github.com/nodejs/node/commit/7ad2d3a5d1)] - **doc**: update security release stewards (Rafael Gonzaga) [#&#8203;48569](https://github.com/nodejs/node/pull/48569) - \[[`cc3a056fdd`](https://github.com/nodejs/node/commit/cc3a056fdd)] - **doc**: update return type for describe (Shrujal Shah) [#&#8203;48572](https://github.com/nodejs/node/pull/48572) - \[[`99ae0b98af`](https://github.com/nodejs/node/commit/99ae0b98af)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48552](https://github.com/nodejs/node/pull/48552) - \[[`9750d8205c`](https://github.com/nodejs/node/commit/9750d8205c)] - **doc**: add description of autoAllocateChunkSize in ReadableStream (Debadree Chatterjee) [#&#8203;48004](https://github.com/nodejs/node/pull/48004) - \[[`417927bb41`](https://github.com/nodejs/node/commit/417927bb41)] - **doc**: fix `filename` type in `watch` result (Dmitry Semigradsky) [#&#8203;48032](https://github.com/nodejs/node/pull/48032) - \[[`ca2ae86bd7`](https://github.com/nodejs/node/commit/ca2ae86bd7)] - **doc**: unnest `mime` and `MIMEParams` from MIMEType constructor (Dmitry Semigradsky) [#&#8203;47950](https://github.com/nodejs/node/pull/47950) - \[[`bda1228135`](https://github.com/nodejs/node/commit/bda1228135)] - **doc**: update security-release-process.md (Rafael Gonzaga) [#&#8203;48504](https://github.com/nodejs/node/pull/48504) - \[[`60c2ea4e79`](https://github.com/nodejs/node/commit/60c2ea4e79)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527) - \[[`37bc0eac4a`](https://github.com/nodejs/node/commit/37bc0eac4a)] - **doc**: improve inspector.close() description (mary marchini) [#&#8203;48494](https://github.com/nodejs/node/pull/48494) - \[[`2a403cdad5`](https://github.com/nodejs/node/commit/2a403cdad5)] - **doc**: link to Runtime Keys in export conditions (Jacob Hummer) [#&#8203;48408](https://github.com/nodejs/node/pull/48408) - \[[`e2d579e644`](https://github.com/nodejs/node/commit/e2d579e644)] - **doc**: update fs flags documentation (sinkhaha) [#&#8203;48463](https://github.com/nodejs/node/pull/48463) - \[[`38bf290115`](https://github.com/nodejs/node/commit/38bf290115)] - **doc**: revise `error.md` introduction (Antoine du Hamel) [#&#8203;48423](https://github.com/nodejs/node/pull/48423) - \[[`641a2e9c6d`](https://github.com/nodejs/node/commit/641a2e9c6d)] - **doc**: add preveen-stack to triagers (Preveen P) [#&#8203;48387](https://github.com/nodejs/node/pull/48387) - \[[`4ab5e8d2e3`](https://github.com/nodejs/node/commit/4ab5e8d2e3)] - **doc**: refine when file is undefined in test events (Moshe Atlow) [#&#8203;48451](https://github.com/nodejs/node/pull/48451) - \[[`5cacdf9e6b`](https://github.com/nodejs/node/commit/5cacdf9e6b)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449) - \[[`b9c643e3ef`](https://github.com/nodejs/node/commit/b9c643e3ef)] - **doc**: add additional info on TSFN dispatch (Michael Dawson) [#&#8203;48367](https://github.com/nodejs/node/pull/48367) - \[[`17a0e1d1bf`](https://github.com/nodejs/node/commit/17a0e1d1bf)] - **doc**: add link for news from security wg (Michael Dawson) [#&#8203;48396](https://github.com/nodejs/node/pull/48396) - \[[`3a62994a4f`](https://github.com/nodejs/node/commit/3a62994a4f)] - **doc**: fix typo in events.md (Darshan Sen) [#&#8203;48436](https://github.com/nodejs/node/pull/48436) - \[[`e10a4cdf68`](https://github.com/nodejs/node/commit/e10a4cdf68)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48336](https://github.com/nodejs/node/pull/48336) - \[[`19fde638fd`](https://github.com/nodejs/node/commit/19fde638fd)] - **fs**: call the callback with an error if writeSync fails (killa) [#&#8203;47949](https://github.com/nodejs/node/pull/47949) - \[[`4cad9fd8bd`](https://github.com/nodejs/node/commit/4cad9fd8bd)] - **fs**: remove unneeded return statement (Luigi Pinca) [#&#8203;48526](https://github.com/nodejs/node/pull/48526) - \[[`d367b73f43`](https://github.com/nodejs/node/commit/d367b73f43)] - **fs**: use kResistStopPropagation (Chemi Atlow) [#&#8203;48521](https://github.com/nodejs/node/pull/48521) - \[[`e50c3169af`](https://github.com/nodejs/node/commit/e50c3169af)] - **fs, stream**: initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) [#&#8203;48518](https://github.com/nodejs/node/pull/48518) - \[[`7d8a0b6eb7`](https://github.com/nodejs/node/commit/7d8a0b6eb7)] - **http**: null the joinDuplicateHeaders property on cleanup (Luigi Pinca) [#&#8203;48608](https://github.com/nodejs/node/pull/48608) - \[[`94ebb02f59`](https://github.com/nodejs/node/commit/94ebb02f59)] - **http**: server add async dispose (atlowChemi) [#&#8203;48548](https://github.com/nodejs/node/pull/48548) - \[[`c6a69e31a3`](https://github.com/nodejs/node/commit/c6a69e31a3)] - **http**: remove useless ternary in test (geekreal) [#&#8203;48481](https://github.com/nodejs/node/pull/48481) - \[[`2f0f40328f`](https://github.com/nodejs/node/commit/2f0f40328f)] - **http**: fix for handling on boot timers headers and request (Franciszek Koltuniuk) [#&#8203;48291](https://github.com/nodejs/node/pull/48291) - \[[`5378ad8ab1`](https://github.com/nodejs/node/commit/5378ad8ab1)] - **http2**: server add `asyncDispose` (atlowChemi) [#&#8203;48548](https://github.com/nodejs/node/pull/48548) - \[[`97a58c5970`](https://github.com/nodejs/node/commit/97a58c5970)] - **https**: server add `asyncDispose` (atlowChemi) [#&#8203;48548](https://github.com/nodejs/node/pull/48548) - \[[`40ae6eb6aa`](https://github.com/nodejs/node/commit/40ae6eb6aa)] - **https**: fix connection checking interval not clearing on server close (Nitzan Uziely) [#&#8203;48383](https://github.com/nodejs/node/pull/48383) - \[[`15530fea4c`](https://github.com/nodejs/node/commit/15530fea4c)] - **lib**: merge cjs and esm package json reader caches (Yagiz Nizipli) [#&#8203;48477](https://github.com/nodejs/node/pull/48477) - \[[`32bda81c31`](https://github.com/nodejs/node/commit/32bda81c31)] - **lib**: reduce url getters on `makeRequireFunction` (Yagiz Nizipli) [#&#8203;48492](https://github.com/nodejs/node/pull/48492) - \[[`0da03f01ba`](https://github.com/nodejs/node/commit/0da03f01ba)] - **lib**: remove duplicated requires in check_syntax (Yagiz Nizipli) [#&#8203;48508](https://github.com/nodejs/node/pull/48508) - \[[`97b00c347d`](https://github.com/nodejs/node/commit/97b00c347d)] - **lib**: add option to force handling stopped events (Chemi Atlow) [#&#8203;48301](https://github.com/nodejs/node/pull/48301) - \[[`fe16749649`](https://github.com/nodejs/node/commit/fe16749649)] - **lib**: fix output message when repl is used with pm (Rafael Gonzaga) [#&#8203;48438](https://github.com/nodejs/node/pull/48438) - \[[`8c2c02d28a`](https://github.com/nodejs/node/commit/8c2c02d28a)] - **lib**: create weakRef only if any signals provided (Chemi Atlow) [#&#8203;48448](https://github.com/nodejs/node/pull/48448) - \[[`b6ae411ea9`](https://github.com/nodejs/node/commit/b6ae411ea9)] - **lib**: remove obsolete deletion of bufferBinding.zeroFill (Chengzhong Wu) [#&#8203;47881](https://github.com/nodejs/node/pull/47881) - \[[`562b3d4856`](https://github.com/nodejs/node/commit/562b3d4856)] - **lib**: move web global bootstrapping to the expected file (Chengzhong Wu) [#&#8203;47881](https://github.com/nodejs/node/pull/47881) - \[[`f9c0d5acac`](https://github.com/nodejs/node/commit/f9c0d5acac)] - **lib**: fix blob.stream() causing hanging promises (Debadree Chatterjee) [#&#8203;48232](https://github.com/nodejs/node/pull/48232) - \[[`0162a0f5bf`](https://github.com/nodejs/node/commit/0162a0f5bf)] - **lib**: add support for inherited custom inspection methods (Antoine du Hamel) [#&#8203;48306](https://github.com/nodejs/node/pull/48306) - \[[`159ab6627a`](https://github.com/nodejs/node/commit/159ab6627a)] - **lib**: reduce URL invocations on http2 origins (Yagiz Nizipli) [#&#8203;48338](https://github.com/nodejs/node/pull/48338) - \[[`f0709fdc59`](https://github.com/nodejs/node/commit/f0709fdc59)] - **module**: add SourceMap.findOrigin (Isaac Z. Schlueter) [#&#8203;47790](https://github.com/nodejs/node/pull/47790) - \[[`4ec2d925b1`](https://github.com/nodejs/node/commit/4ec2d925b1)] - **module**: reduce url invocations in esm/load.js (Yagiz Nizipli) [#&#8203;48337](https://github.com/nodejs/node/pull/48337) - \[[`2c363971cc`](https://github.com/nodejs/node/commit/2c363971cc)] - **net**: improve network family autoselection handle handling (Paolo Insogna) [#&#8203;48464](https://github.com/nodejs/node/pull/48464) - \[[`dbf9e9ffc8`](https://github.com/nodejs/node/commit/dbf9e9ffc8)] - **node-api**: provide napi_define_properties fast path (Gabriel Schulhof) [#&#8203;48440](https://github.com/nodejs/node/pull/48440) - \[[`87ad657777`](https://github.com/nodejs/node/commit/87ad657777)] - **node-api**: implement external strings (Gabriel Schulhof) [#&#8203;48339](https://github.com/nodejs/node/pull/48339) - \[[`4efa6807ea`](https://github.com/nodejs/node/commit/4efa6807ea)] - **permission**: handle end nodes with children cases (Rafael Gonzaga) [#&#8203;48531](https://github.com/nodejs/node/pull/48531) - \[[`84fe811108`](https://github.com/nodejs/node/commit/84fe811108)] - **repl**: display dynamic import variant in static import error messages (Hemanth HM) [#&#8203;48129](https://github.com/nodejs/node/pull/48129) - \[[`bdcc037470`](https://github.com/nodejs/node/commit/bdcc037470)] - **report**: disable js stack when no context is entered (Chengzhong Wu) [#&#8203;48495](https://github.com/nodejs/node/pull/48495) - \[[`97bd9ccd04`](https://github.com/nodejs/node/commit/97bd9ccd04)] - **src**: fix uninitialized field access in AsyncHooks (Jan Olaf Krems) [#&#8203;48566](https://github.com/nodejs/node/pull/48566) - \[[`404958fc96`](https://github.com/nodejs/node/commit/404958fc96)] - **src**: fix Coverity issue regarding unnecessary copy (Yagiz Nizipli) [#&#8203;48565](https://github.com/nodejs/node/pull/48565) - \[[`c4b8edea24`](https://github.com/nodejs/node/commit/c4b8edea24)] - **src**: refactor `SplitString` in util (Yagiz Nizipli) [#&#8203;48491](https://github.com/nodejs/node/pull/48491) - \[[`5bc13a4772`](https://github.com/nodejs/node/commit/5bc13a4772)] - **src**: revert IS_RELEASE (Rafael Gonzaga) [#&#8203;48505](https://github.com/nodejs/node/pull/48505) - \[[`4971e46051`](https://github.com/nodejs/node/commit/4971e46051)] - **src**: add V8 fast api to `guessHandleType` (Yagiz Nizipli) [#&#8203;48349](https://github.com/nodejs/node/pull/48349) - \[[`954e46e792`](https://github.com/nodejs/node/commit/954e46e792)] - **src**: return uint32 for `guessHandleType` (Yagiz Nizipli) [#&#8203;48349](https://github.com/nodejs/node/pull/48349) - \[[`05009675da`](https://github.com/nodejs/node/commit/05009675da)] - **src**: make realm binding data store weak (Chengzhong Wu) [#&#8203;47688](https://github.com/nodejs/node/pull/47688) - \[[`120ac74352`](https://github.com/nodejs/node/commit/120ac74352)] - **src**: remove aliased buffer weak callback (Chengzhong Wu) [#&#8203;47688](https://github.com/nodejs/node/pull/47688) - \[[`6591826e99`](https://github.com/nodejs/node/commit/6591826e99)] - **src**: handle wasm out of bound in osx will raise SIGBUS correctly (Congcong Cai) [#&#8203;46561](https://github.com/nodejs/node/pull/46561) - \[[`1b84ddeec2`](https://github.com/nodejs/node/commit/1b84ddeec2)] - **src**: implement constants binding directly (Joyee Cheung) [#&#8203;48186](https://github.com/nodejs/node/pull/48186) - \[[`06d49c1f10`](https://github.com/nodejs/node/commit/06d49c1f10)] - **src**: implement natives binding without special casing (Joyee Cheung) [#&#8203;48186](https://github.com/nodejs/node/pull/48186) - \[[`325441abf5`](https://github.com/nodejs/node/commit/325441abf5)] - **src**: add missing to_ascii method in dns queries (Daniel Lemire) [#&#8203;48354](https://github.com/nodejs/node/pull/48354) - \[[`84d0eb74b8`](https://github.com/nodejs/node/commit/84d0eb74b8)] - **stream**: fix premature pipeline end (Robert Nagy) [#&#8203;48435](https://github.com/nodejs/node/pull/48435) - \[[`3df7368735`](https://github.com/nodejs/node/commit/3df7368735)] - **test**: add missing assertions to test-runner-cli (Moshe Atlow) [#&#8203;48593](https://github.com/nodejs/node/pull/48593) - \[[`07eb310b0d`](https://github.com/nodejs/node/commit/07eb310b0d)] - **test**: remove test-crypto-keygen flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575) - \[[`75aa0a7682`](https://github.com/nodejs/node/commit/75aa0a7682)] - **test**: remove test-timers-immediate-queue flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575) - \[[`a9756f3126`](https://github.com/nodejs/node/commit/a9756f3126)] - **test**: add Symbol.dispose support to mock timers (Benjamin Gruenbaum) [#&#8203;48549](https://github.com/nodejs/node/pull/48549) - \[[`0f912a7248`](https://github.com/nodejs/node/commit/0f912a7248)] - **test**: mark test-child-process-stdio-reuse-readable-stdio flaky (Luigi Pinca) [#&#8203;48537](https://github.com/nodejs/node/pull/48537) - \[[`30f4bc4985`](https://github.com/nodejs/node/commit/30f4bc4985)] - **test**: make IsolateData per-isolate in cctest (Joyee Cheung) [#&#8203;48450](https://github.com/nodejs/node/pull/48450) - \[[`407ce3fdcb`](https://github.com/nodejs/node/commit/407ce3fdcb)] - **test**: define NAPI_VERSION before including node_api.h (Chengzhong Wu) [#&#8203;48376](https://github.com/nodejs/node/pull/48376) - \[[`24a8fa95f0`](https://github.com/nodejs/node/commit/24a8fa95f0)] - **test**: remove unnecessary noop function args to `mustNotCall()` (Antoine du Hamel) [#&#8203;48513](https://github.com/nodejs/node/pull/48513) - \[[`09af579775`](https://github.com/nodejs/node/commit/09af579775)] - **test**: skip test-runner-watch-mode on IBMi (Moshe Atlow) [#&#8203;48473](https://github.com/nodejs/node/pull/48473) - \[[`77cb1ee0b2`](https://github.com/nodejs/node/commit/77cb1ee0b2)] - **test**: add missing \<algorithm> include for std::find (Sam James) [#&#8203;48380](https://github.com/nodejs/node/pull/48380) - \[[`7c790ca03c`](https://github.com/nodejs/node/commit/7c790ca03c)] - **test**: fix flaky test-watch-mode (Moshe Atlow) [#&#8203;48147](https://github.com/nodejs/node/pull/48147) - \[[`1398829746`](https://github.com/nodejs/node/commit/1398829746)] - **test**: fix `test-net-autoselectfamily` for kernel without IPv6 support (Livia Medeiros) [#&#8203;48265](https://github.com/nodejs/node/pull/48265) - \[[`764119ba4b`](https://github.com/nodejs/node/commit/764119ba4b)] - **test**: update url web-platform tests (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319) - \[[`f1ead59629`](https://github.com/nodejs/node/commit/f1ead59629)] - **test**: ignore the copied entry_point.c (Luigi Pinca) [#&#8203;48297](https://github.com/nodejs/node/pull/48297) - \[[`fc5d1bddcb`](https://github.com/nodejs/node/commit/fc5d1bddcb)] - **test**: refactor test-gc-http-client-timeout (Luigi Pinca) [#&#8203;48292](https://github.com/nodejs/node/pull/48292) - \[[`46a3d068a0`](https://github.com/nodejs/node/commit/46a3d068a0)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;48320](https://github.com/nodejs/node/pull/48320) - \[[`141e5aad83`](https://github.com/nodejs/node/commit/141e5aad83)] - **test**: update FileAPI web-platform tests (Yagiz Nizipli) [#&#8203;48322](https://github.com/nodejs/node/pull/48322) - \[[`83cfc67099`](https://github.com/nodejs/node/commit/83cfc67099)] - **test**: update user-timing web-platform tests (Yagiz Nizipli) [#&#8203;48321](https://github.com/nodejs/node/pull/48321) - \[[`2c56835a33`](https://github.com/nodejs/node/commit/2c56835a33)] - **test_runner**: fixed `test` shorthands return type (Shocker) [#&#8203;48555](https://github.com/nodejs/node/pull/48555) - \[[`7d01c8894a`](https://github.com/nodejs/node/commit/7d01c8894a)] - **(SEMVER-MINOR)** **test_runner**: add initial draft for fakeTimers (Erick Wendel) [#&#8203;47775](https://github.com/nodejs/node/pull/47775) - \[[`de4f14c249`](https://github.com/nodejs/node/commit/de4f14c249)] - **test_runner**: add enqueue and dequeue events (Moshe Atlow) [#&#8203;48428](https://github.com/nodejs/node/pull/48428) - \[[`5ebe3a4ea7`](https://github.com/nodejs/node/commit/5ebe3a4ea7)] - **test_runner**: make `--test-name-pattern` recursive (Moshe Atlow) [#&#8203;48382](https://github.com/nodejs/node/pull/48382) - \[[`93bf447308`](https://github.com/nodejs/node/commit/93bf447308)] - **test_runner**: refactor coverage report output for readability (Damien Seguin) [#&#8203;47791](https://github.com/nodejs/node/pull/47791) - \[[`504d1d7bdc`](https://github.com/nodejs/node/commit/504d1d7bdc)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190) - \[[`203c3cf4ca`](https://github.com/nodejs/node/commit/203c3cf4ca)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48544](https://github.com/nodejs/node/pull/48544) - \[[`333907b19d`](https://github.com/nodejs/node/commit/333907b19d)] - **tools**: speedup compilation of js2c output (Keyhan Vakil) [#&#8203;48160](https://github.com/nodejs/node/pull/48160) - \[[`10bd5f4d97`](https://github.com/nodejs/node/commit/10bd5f4d97)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48486](https://github.com/nodejs/node/pull/48486) - \[[`52de27b9fe`](https://github.com/nodejs/node/commit/52de27b9fe)] - **tools**: pin ruff version number (Rich Trott) [#&#8203;48505](https://github.com/nodejs/node/pull/48505) - \[[`4345526644`](https://github.com/nodejs/node/commit/4345526644)] - **tools**: replace sed with perl (Luigi Pinca) [#&#8203;48499](https://github.com/nodejs/node/pull/48499) - \[[`6c590835f3`](https://github.com/nodejs/node/commit/6c590835f3)] - **tools**: automate update openssl v16 (Marco Ippolito) [#&#8203;48377](https://github.com/nodejs/node/pull/48377) - \[[`90b5335338`](https://github.com/nodejs/node/commit/90b5335338)] - **tools**: update eslint to 8.43.0 (Node.js GitHub Bot) [#&#8203;48487](https://github.com/nodejs/node/pull/48487) - \[[`cd83530a11`](https://github.com/nodejs/node/commit/cd83530a11)] - **tools**: update doc to to-vfile@8.0.0 (Node.js GitHub Bot) [#&#8203;48485](https://github.com/nodejs/node/pull/48485) - \[[`e500b439bd`](https://github.com/nodejs/node/commit/e500b439bd)] - **tools**: prepare tools/doc for to-vfile 8.0.0 (Rich Trott) [#&#8203;48485](https://github.com/nodejs/node/pull/48485) - \[[`d623616813`](https://github.com/nodejs/node/commit/d623616813)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48417](https://github.com/nodejs/node/pull/48417) - \[[`a2e107dde4`](https://github.com/nodejs/node/commit/a2e107dde4)] - **tools**: update create-or-update-pull-request-action (Richard Lau) [#&#8203;48398](https://github.com/nodejs/node/pull/48398) - \[[`8009e2c3be`](https://github.com/nodejs/node/commit/8009e2c3be)] - **tools**: update eslint-plugin-jsdoc (Richard Lau) [#&#8203;48393](https://github.com/nodejs/node/pull/48393) - \[[`10385c8565`](https://github.com/nodejs/node/commit/10385c8565)] - **tools**: add version update to external dependencies (Andrea Fassina) [#&#8203;48081](https://github.com/nodejs/node/pull/48081) - \[[`b1cef81b18`](https://github.com/nodejs/node/commit/b1cef81b18)] - **tools**: update eslint to 8.42.0 (Node.js GitHub Bot) [#&#8203;48328](https://github.com/nodejs/node/pull/48328) - \[[`0923dc0b8e`](https://github.com/nodejs/node/commit/0923dc0b8e)] - **tools**: disable jsdoc/no-defaults rule (Luigi Pinca) [#&#8203;48328](https://github.com/nodejs/node/pull/48328) - \[[`b03146da85`](https://github.com/nodejs/node/commit/b03146da85)] - **typings**: remove unused primordials (Yagiz Nizipli) [#&#8203;48509](https://github.com/nodejs/node/pull/48509) - \[[`e9c9d187b9`](https://github.com/nodejs/node/commit/e9c9d187b9)] - **typings**: fix JSDoc in ESM loader modules (Antoine du Hamel) [#&#8203;48424](https://github.com/nodejs/node/pull/48424) - \[[`fafe651d23`](https://github.com/nodejs/node/commit/fafe651d23)] - **url**: conform to origin getter spec changes (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319) ### [`v20.3.1`](https://github.com/nodejs/node/releases/tag/v20.3.1): 2023-06-20, Version 20.3.1 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.3.0...v20.3.1) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - [CVE-2023-30581](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30581): `mainModule.__proto__` Bypass Experimental Policy Mechanism (High) - [CVE-2023-30584](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30584): Path Traversal Bypass in Experimental Permission Model (High) - [CVE-2023-30587](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30587): Bypass of Experimental Permission Model via Node.js Inspector (High) - [CVE-2023-30582](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30582): Inadequate Permission Model Allows Unauthorized File Watching (Medium) - [CVE-2023-30583](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30583): Bypass of Experimental Permission Model via fs.openAsBlob() (Medium) - [CVE-2023-30585](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30585): Privilege escalation via Malicious Registry Key manipulation during Node.js installer repair process (Medium) - [CVE-2023-30586](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30586): Bypass of Experimental Permission Model via Arbitrary OpenSSL Engines (Medium) - [CVE-2023-30588](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30588): Process interuption due to invalid Public Key information in x509 certificates (Medium) - [CVE-2023-30589](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30589): HTTP Request Smuggling via Empty headers separated by CR (Medium) - [CVE-2023-30590](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30590): DiffieHellman does not generate keys after setting a private key (Medium) - OpenSSL Security Releases - [OpenSSL security advisory 28th March](https://www.openssl.org/news/secadv/20230328.txt). - [OpenSSL security advisory 20th April](https://www.openssl.org/news/secadv/20230420.txt). - [OpenSSL security advisory 30th May](https://www.openssl.org/news/secadv/20230530.txt) More detailed information on each of the vulnerabilities can be found in [June 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/june-2023-security-releases/) blog post. ##### Commits - \[[`dac08dafc9`](https://github.com/nodejs/node/commit/dac08dafc9)] - **crypto**: handle cert with invalid SPKI gracefully (Tobias Nießen) [nodejs-private/node-private#393](https://github.com/nodejs-private/node-private/pull/393) - \[[`d274c3babc`](https://github.com/nodejs/node/commit/d274c3babc)] - **crypto,https,tls**: disable engines if perms enabled (Tobias Nießen) [nodejs-private/node-private#409](https://github.com/nodejs-private/node-private/pull/409) - \[[`5621c1de38`](https://github.com/nodejs/node/commit/5621c1de38)] - **deps**: update archs files for openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402) - \[[`771caa9f1c`](https://github.com/nodejs/node/commit/771caa9f1c)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402) - \[[`0459bf9c99`](https://github.com/nodejs/node/commit/0459bf9c99)] - **doc,test**: clarify behavior of DH generateKeys (Tobias Nießen) [nodejs-private/node-private#426](https://github.com/nodejs-private/node-private/pull/426) - \[[`27e20501aa`](https://github.com/nodejs/node/commit/27e20501aa)] - **http**: disable request smuggling via empty headers (Paolo Insogna) [nodejs-private/node-private#427](https://github.com/nodejs-private/node-private/pull/427) - \[[`9c17e335f1`](https://github.com/nodejs/node/commit/9c17e335f1)] - **msi**: do not create AppData\Roaming\npm (Tobias Nießen) [nodejs-private/node-private#408](https://github.com/nodejs-private/node-private/pull/408) - \[[`b51124c637`](https://github.com/nodejs/node/commit/b51124c637)] - **permission**: handle fs path traversal (RafaelGSS) [nodejs-private/node-private#403](https://github.com/nodejs-private/node-private/pull/403) - \[[`ebc5927adc`](https://github.com/nodejs/node/commit/ebc5927adc)] - **permission**: handle fs.openAsBlob (RafaelGSS) [nodejs-private/node-private#405](https://github.com/nodejs-private/node-private/pull/405) - \[[`c39a43bff5`](https://github.com/nodejs/node/commit/c39a43bff5)] - **permission**: handle fs.watchFile (RafaelGSS) [nodejs-private/node-private#404](https://github.com/nodejs-private/node-private/pull/404) - \[[`d0a8264ec9`](https://github.com/nodejs/node/commit/d0a8264ec9)] - **policy**: handle mainModule.\__proto\_\_ bypass (RafaelGSS) [nodejs-private/node-private#416](https://github.com/nodejs-private/node-private/pull/416) - \[[`3df13d5a79`](https://github.com/nodejs/node/commit/3df13d5a79)] - **src,permission**: restrict inspector when pm enabled (RafaelGSS) [nodejs-private/node-private#410](https://github.com/nodejs-private/node-private/pull/410) ### [`v20.3.0`](https://github.com/nodejs/node/releases/tag/v20.3.0): 2023-06-08, Version 20.3.0 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v20.2.0...v20.3.0) ##### Notable Changes - \[[`bfcb3d1d9a`](https://github.com/nodejs/node/commit/bfcb3d1d9a)] - **deps**: upgrade to libuv 1.45.0, including significant performance improvements to file system operations on Linux (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`5094d1b292`](https://github.com/nodejs/node/commit/5094d1b292)] - **doc**: add Ruy Adorno to list of TSC members (Michael Dawson) [#&#8203;48172](https://github.com/nodejs/node/pull/48172) - \[[`2f5dbca690`](https://github.com/nodejs/node/commit/2f5dbca690)] - **doc**: mark Node.js 14 as End-of-Life (Richard Lau) [#&#8203;48023](https://github.com/nodejs/node/pull/48023) - \[[`b1828b325e`](https://github.com/nodejs/node/commit/b1828b325e)] - **(SEMVER-MINOR)** **lib**: implement `AbortSignal.any()` (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821) - \[[`f380953103`](https://github.com/nodejs/node/commit/f380953103)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824) - \[[`a94f87ed99`](https://github.com/nodejs/node/commit/a94f87ed99)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151) - \[[`9e2b13dfa7`](https://github.com/nodejs/node/commit/9e2b13dfa7)] - **stream**: deprecate `asIndexedPairs` (Chemi Atlow) [#&#8203;48102](https://github.com/nodejs/node/pull/48102) ##### Commits - \[[`35c96156d1`](https://github.com/nodejs/node/commit/35c96156d1)] - **benchmark**: use `cluster.isPrimary` instead of `cluster.isMaster` (Deokjin Kim) [#&#8203;48002](https://github.com/nodejs/node/pull/48002) - \[[`3e6e3abf32`](https://github.com/nodejs/node/commit/3e6e3abf32)] - **bootstrap**: throw ERR_NOT_SUPPORTED_IN_SNAPSHOT in unsupported operation (Joyee Cheung) [#&#8203;47887](https://github.com/nodejs/node/pull/47887) - \[[`c480559347`](https://github.com/nodejs/node/commit/c480559347)] - **bootstrap**: put is_building_snapshot state in IsolateData (Joyee Cheung) [#&#8203;47887](https://github.com/nodejs/node/pull/47887) - \[[`50c0a15535`](https://github.com/nodejs/node/commit/50c0a15535)] - **build**: set v8\_enable_webassembly=false when lite mode is enabled (Cheng Shao) [#&#8203;48248](https://github.com/nodejs/node/pull/48248) - \[[`4562805cf6`](https://github.com/nodejs/node/commit/4562805cf6)] - **build**: speed up compilation of mksnapshot output (Keyhan Vakil) [#&#8203;48162](https://github.com/nodejs/node/pull/48162) - \[[`8b89f13933`](https://github.com/nodejs/node/commit/8b89f13933)] - **build**: add action to close stale PRs (Michael Dawson) [#&#8203;48051](https://github.com/nodejs/node/pull/48051) - \[[`5d92202220`](https://github.com/nodejs/node/commit/5d92202220)] - **build**: replace js2c.py with js2c.cc (Joyee Cheung) [#&#8203;46997](https://github.com/nodejs/node/pull/46997) - \[[`6cf2adc36e`](https://github.com/nodejs/node/commit/6cf2adc36e)] - **cluster**: use ObjectPrototypeHasOwnProperty (Daeyeon Jeong) [#&#8203;48141](https://github.com/nodejs/node/pull/48141) - \[[`f564b03c38`](https://github.com/nodejs/node/commit/f564b03c38)] - **crypto**: use openssl's own memory BIOs in crypto_context.cc (GauriSpears) [#&#8203;47160](https://github.com/nodejs/node/pull/47160) - \[[`ac8dd61fc3`](https://github.com/nodejs/node/commit/ac8dd61fc3)] - **crypto**: remove default encoding from cipher (Tobias Nießen) [#&#8203;47998](https://github.com/nodejs/node/pull/47998) - \[[`15c2de4407`](https://github.com/nodejs/node/commit/15c2de4407)] - **crypto**: fix setEngine() when OPENSSL_NO_ENGINE set (Tobias Nießen) [#&#8203;47977](https://github.com/nodejs/node/pull/47977) - \[[`9e2dd5b5e2`](https://github.com/nodejs/node/commit/9e2dd5b5e2)] - **deps**: update zlib to [`337322d`](https://github.com/nodejs/node/commit/337322d) (Node.js GitHub Bot) [#&#8203;48218](https://github.com/nodejs/node/pull/48218) - \[[`bfcb3d1d9a`](https://github.com/nodejs/node/commit/bfcb3d1d9a)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`13930f092f`](https://github.com/nodejs/node/commit/13930f092f)] - **deps**: update ada to 2.5.0 (Node.js GitHub Bot) [#&#8203;48223](https://github.com/nodejs/node/pull/48223) - \[[`3047caebec`](https://github.com/nodejs/node/commit/3047caebec)] - **deps**: set `CARES_RANDOM_FILE` for c-ares (Richard Lau) [#&#8203;48156](https://github.com/nodejs/node/pull/48156) - \[[`0db79a0872`](https://github.com/nodejs/node/commit/0db79a0872)] - **deps**: update histogram 0.11.8 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742) - \[[`99af6716f5`](https://github.com/nodejs/node/commit/99af6716f5)] - **deps**: update histogram to 0.11.7 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742) - \[[`d4922bc985`](https://github.com/nodejs/node/commit/d4922bc985)] - **deps**: update c-ares to 1.19.1 (Node.js GitHub Bot) [#&#8203;48115](https://github.com/nodejs/node/pull/48115) - \[[`f6ccdb289f`](https://github.com/nodejs/node/commit/f6ccdb289f)] - **deps**: update simdutf to 3.2.12 (Node.js GitHub Bot) [#&#8203;48118](https://github.com/nodejs/node/pull/48118) - \[[`3ed0afc778`](https://github.com/nodejs/node/commit/3ed0afc778)] - **deps**: update minimatch to 9.0.1 (Node.js GitHub Bot) [#&#8203;48094](https://github.com/nodejs/node/pull/48094) - \[[`df7540fb73`](https://github.com/nodejs/node/commit/df7540fb73)] - **deps**: update ada to 2.4.2 (Node.js GitHub Bot) [#&#8203;48092](https://github.com/nodejs/node/pull/48092) - \[[`07df5c48e8`](https://github.com/nodejs/node/commit/07df5c48e8)] - **deps**: update corepack to 0.18.0 (Node.js GitHub Bot) [#&#8203;48091](https://github.com/nodejs/node/pull/48091) - \[[`d95a5bb559`](https://github.com/nodejs/node/commit/d95a5bb559)] - **deps**: update uvwasi to 0.0.18 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866) - \[[`443477e041`](https://github.com/nodejs/node/commit/443477e041)] - **deps**: update uvwasi to 0.0.17 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866) - \[[`03f67d6d6d`](https://github.com/nodejs/node/commit/03f67d6d6d)] - **deps**: upgrade npm to 9.6.7 (npm team) [#&#8203;48062](https://github.com/nodejs/node/pull/48062) - \[[`d3e3a911fd`](https://github.com/nodejs/node/commit/d3e3a911fd)] - **deps**: update nghttp2 to 1.53.0 (Node.js GitHub Bot) [#&#8203;47997](https://github.com/nodejs/node/pull/47997) - \[[`f7c4daaf67`](https://github.com/nodejs/node/commit/f7c4daaf67)] - **deps**: update ada to 2.4.1 (Node.js GitHub Bot) [#&#8203;48036](https://github.com/nodejs/node/pull/48036) - \[[`c6a752560d`](https://github.com/nodejs/node/commit/c6a752560d)] - **deps**: add loongarch64 into openssl Makefile and gen openssl-loongarch64 (Shi Pujin) [#&#8203;46401](https://github.com/nodejs/node/pull/46401) - \[[`d194241716`](https://github.com/nodejs/node/commit/d194241716)] - **deps**: update undici to 5.22.1 (Node.js GitHub Bot) [#&#8203;47994](https://github.com/nodejs/node/pull/47994) - \[[`02e919f4a2`](https://github.com/nodejs/node/commit/02e919f4a2)] - **deps,test**: update postject to 1.0.0-alpha.6 (Node.js GitHub Bot) [#&#8203;48072](https://github.com/nodejs/node/pull/48072) - \[[`2c19f596ad`](https://github.com/nodejs/node/commit/2c19f596ad)] - **doc**: clarify array args to Buffer.from() (Bryan English) [#&#8203;48274](https://github.com/nodejs/node/pull/48274) - \[[`d681e5f456`](https://github.com/nodejs/node/commit/d681e5f456)] - **doc**: document watch option for node:test run() (Moshe Atlow) [#&#8203;48256](https://github.com/nodejs/node/pull/48256) - \[[`96e54ddbca`](https://github.com/nodejs/node/commit/96e54ddbca)] - **doc**: reserve 117 for Electron 26 (Calvin) [#&#8203;48245](https://github.com/nodejs/node/pull/48245) - \[[`9aff8c7818`](https://github.com/nodejs/node/commit/9aff8c7818)] - **doc**: update documentation for FIPS support (Richard Lau) [#&#8203;48194](https://github.com/nodejs/node/pull/48194) - \[[`8c5338648f`](https://github.com/nodejs/node/commit/8c5338648f)] - **doc**: improve the documentation of the stdio option (Kumar Arnav) [#&#8203;48110](https://github.com/nodejs/node/pull/48110) - \[[`11918d705f`](https://github.com/nodejs/node/commit/11918d705f)] - **doc**: update Buffer.allocUnsafe description (sinkhaha) [#&#8203;48183](https://github.com/nodejs/node/pull/48183) - \[[`2b51ee5e22`](https://github.com/nodejs/node/commit/2b51ee5e22)] - **doc**: update codeowners with website team (Claudio Wunder) [#&#8203;48197](https://github.com/nodejs/node/pull/48197) - \[[`360df25d04`](https://github.com/nodejs/node/commit/360df25d04)] - **doc**: fix broken link to new folder doc/contributing/maintaining (Andrea Fassina) [#&#8203;48205](https://github.com/nodejs/node/pull/48205) - \[[`13e95e21a4`](https://github.com/nodejs/node/commit/13e95e21a4)] - **doc**: add atlowChemi to triagers (Chemi Atlow) [#&#8203;48104](https://github.com/nodejs/node/pull/48104) - \[[`5f83ce530f`](https://github.com/nodejs/node/commit/5f83ce530f)] - **doc**: fix typo in readline completer function section (Vadym) [#&#8203;48188](https://github.com/nodejs/node/pull/48188) - \[[`3c82165d27`](https://github.com/nodejs/node/commit/3c82165d27)] - **doc**: remove broken link for keygen (Rich Trott) [#&#8203;48176](https://github.com/nodejs/node/pull/48176) - \[[`0ca90a1e6d`](https://github.com/nodejs/node/commit/0ca90a1e6d)] - **doc**: add `auto` intrinsic height to prevent jitter/flicker (Daniel Holbert) [#&#8203;48195](https://github.com/nodejs/node/pull/48195) - \[[`f117855092`](https://github.com/nodejs/node/commit/f117855092)] - **doc**: add version info on the SEA docs (Antoine du Hamel) [#&#8203;48173](https://github.com/nodejs/node/pull/48173) - \[[`5094d1b292`](https://github.com/nodejs/node/commit/5094d1b292)] - **doc**: add Ruy to list of TSC members (Michael Dawson) [#&#8203;48172](https://github.com/nodejs/node/pull/48172) - \[[`39d8140227`](https://github.com/nodejs/node/commit/39d8140227)] - **doc**: update socket.remote\* properties documentation (Saba Kharanauli) [#&#8203;48139](https://github.com/nodejs/node/pull/48139) - \[[`5497c13efe`](https://github.com/nodejs/node/commit/5497c13efe)] - **doc**: update outdated section on TLSv1.3-PSK (Tobias Nießen) [#&#8203;48123](https://github.com/nodejs/node/pull/48123) - \[[`281dfaf727`](https://github.com/nodejs/node/commit/281dfaf727)] - **doc**: improve HMAC key recommendations (Tobias Nießen) [#&#8203;48121](https://github.com/nodejs/node/pull/48121) - \[[`bd311b6c70`](https://github.com/nodejs/node/commit/bd311b6c70)] - **doc**: clarify mkdir() recursive behavior (Stephen Odogwu) [#&#8203;48109](https://github.com/nodejs/node/pull/48109) - \[[`5b061c8922`](https://github.com/nodejs/node/commit/5b061c8922)] - **doc**: fix typo in crypto legacy streams API section (Tobias Nießen) [#&#8203;48122](https://github.com/nodejs/node/pull/48122) - \[[`10ccb2bd81`](https://github.com/nodejs/node/commit/10ccb2bd81)] - **doc**: update SEA source link (Rich Trott) [#&#8203;48080](https://github.com/nodejs/node/pull/48080) - \[[`415bf7f532`](https://github.com/nodejs/node/commit/415bf7f532)] - **doc**: clarify tty.isRaw (Roberto Vidal) [#&#8203;48055](https://github.com/nodejs/node/pull/48055) - \[[`0ac4b33c76`](https://github.com/nodejs/node/commit/0ac4b33c76)] - **doc**: correct line break for Windows terminals (Alex Schwartz) [#&#8203;48083](https://github.com/nodejs/node/pull/48083) - \[[`f30ba5c320`](https://github.com/nodejs/node/commit/f30ba5c320)] - **doc**: fix Windows code snippet tags (Antoine du Hamel) [#&#8203;48100](https://github.com/nodejs/node/pull/48100) - \[[`12fef9b68c`](https://github.com/nodejs/node/commit/12fef9b68c)] - **doc**: harmonize fenced code snippet flags (Antoine du Hamel) [#&#8203;48082](https://github.com/nodejs/node/pull/48082) - \[[`13f163eace`](https://github.com/nodejs/node/commit/13f163eace)] - **doc**: use secure key length for HMAC generateKey (Tobias Nießen) [#&#8203;48052](https://github.com/nodejs/node/pull/48052) - \[[`1e3e7c9f33`](https://github.com/nodejs/node/commit/1e3e7c9f33)] - **doc**: update broken EVP_BytesToKey link (Rich Trott) [#&#8203;48064](https://github.com/nodejs/node/pull/48064) - \[[`5917ba1838`](https://github.com/nodejs/node/commit/5917ba1838)] - **doc**: update broken spkac link (Rich Trott) [#&#8203;48063](https://github.com/nodejs/node/pull/48063) - \[[`0e4a3b7db1`](https://github.com/nodejs/node/commit/0e4a3b7db1)] - **doc**: document node-api version process (Chengzhong Wu) [#&#8203;47972](https://github.com/nodejs/node/pull/47972) - \[[`85bbaa94ea`](https://github.com/nodejs/node/commit/85bbaa94ea)] - **doc**: update process.versions properties (Saba Kharanauli) [#&#8203;48019](https://github.com/nodejs/node/pull/48019) - \[[`7660eb591a`](https://github.com/nodejs/node/commit/7660eb591a)] - **doc**: fix typo in binding functions (Deokjin Kim) [#&#8203;48003](https://github.com/nodejs/node/pull/48003) - \[[`2f5dbca690`](https://github.com/nodejs/node/commit/2f5dbca690)] - **doc**: mark Node.js 14 as End-of-Life (Richard Lau) [#&#8203;48023](https://github.com/nodejs/node/pull/48023) - \[[`3b94a739f2`](https://github.com/nodejs/node/commit/3b94a739f2)] - **doc**: clarify CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED (Tobias Nießen) [#&#8203;47976](https://github.com/nodejs/node/pull/47976) - \[[`9e381cfa89`](https://github.com/nodejs/node/commit/9e381cfa89)] - **doc**: add heading for permission model limitations (Tobias Nießen) [#&#8203;47989](https://github.com/nodejs/node/pull/47989) - \[[`802db923e0`](https://github.com/nodejs/node/commit/802db923e0)] - **doc,vm**: clarify usage of cachedData in vm.compileFunction() (Darshan Sen) [#&#8203;48193](https://github.com/nodejs/node/pull/48193) - \[[`11a3434810`](https://github.com/nodejs/node/commit/11a3434810)] - **esm**: remove support for arrays in `import` internal method (Antoine du Hamel) [#&#8203;48296](https://github.com/nodejs/node/pull/48296) - \[[`3b00f3afef`](https://github.com/nodejs/node/commit/3b00f3afef)] - **esm**: handle `globalPreload` hook returning a nullish value (Antoine du Hamel) [#&#8203;48249](https://github.com/nodejs/node/pull/48249) - \[[`3c7846d7e1`](https://github.com/nodejs/node/commit/3c7846d7e1)] - **esm**: handle more error types thrown from the loader thread (Antoine du Hamel) [#&#8203;48247](https://github.com/nodejs/node/pull/48247) - \[[`60ce2bcabc`](https://github.com/nodejs/node/commit/60ce2bcabc)] - **http**: send implicit headers on HEAD with no body (Matteo Collina) [#&#8203;48108](https://github.com/nodejs/node/pull/48108) - \[[`72de4e7170`](https://github.com/nodejs/node/commit/72de4e7170)] - **lib**: do not disable linter for entire files (Antoine du Hamel) [#&#8203;48299](https://github.com/nodejs/node/pull/48299) - \[[`10cc60fc91`](https://github.com/nodejs/node/commit/10cc60fc91)] - **lib**: use existing `isWindows` variable (sinkhaha) [#&#8203;48134](https://github.com/nodejs/node/pull/48134) - \[[`a90010aae9`](https://github.com/nodejs/node/commit/a90010aae9)] - **lib**: support FORCE_COLOR for non TTY streams (Moshe Atlow) [#&#8203;48034](https://github.com/nodejs/node/pull/48034) - \[[`b1828b325e`](https://github.com/nodejs/node/commit/b1828b325e)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.any() (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821) - \[[`8f1b86961f`](https://github.com/nodejs/node/commit/8f1b86961f)] - **meta**: bump github/codeql-action from 2.3.3 to 2.3.6 (dependabot\[bot]) [#&#8203;48287](https://github.com/nodejs/node/pull/48287) - \[[`1b87ccdf70`](https://github.com/nodejs/node/commit/1b87ccdf70)] - **meta**: bump actions/setup-python from 4.6.0 to 4.6.1 (dependabot\[bot]) [#&#8203;48286](https://github.com/nodejs/node/pull/48286) - \[[`10715aea26`](https://github.com/nodejs/node/commit/10715aea26)] - **meta**: bump codecov/codecov-action from 3.1.3 to 3.1.4 (dependabot\[bot]) [#&#8203;48285](https://github.com/nodejs/node/pull/48285) - \[[`79f73778ab`](https://github.com/nodejs/node/commit/79f73778ab)] - **meta**: remove dont-land-on-v14 auto labeling (Shrujal Shah) [#&#8203;48031](https://github.com/nodejs/node/pull/48031) - \[[`9c5711f3ea`](https://github.com/nodejs/node/commit/9c5711f3ea)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;48010](https://github.com/nodejs/node/pull/48010) - \[[`6d6bf3ee52`](https://github.com/nodejs/node/commit/6d6bf3ee52)] - **module**: reduce the number of URL initializations (Yagiz Nizipli) [#&#8203;48272](https://github.com/nodejs/node/pull/48272) - \[[`f380953103`](https://github.com/nodejs/node/commit/f380953103)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824) - \[[`950185b0c0`](https://github.com/nodejs/node/commit/950185b0c0)] - **net**: fix address iteration with autoSelectFamily (Fedor Indutny) [#&#8203;48258](https://github.com/nodejs/node/pull/48258) - \[[`5ddca72e62`](https://github.com/nodejs/node/commit/5ddca72e62)] - **net**: fix family autoselection SSL connection handling (Paolo Insogna) [#&#8203;48189](https://github.com/nodejs/node/pull/48189) - \[[`750e53ca3c`](https://github.com/nodejs/node/commit/750e53ca3c)] - **net**: fix family autoselection timeout handling (Paolo Insogna) [#&#8203;47860](https://github.com/nodejs/node/pull/47860) - \[[`a94f87ed99`](https://github.com/nodejs/node/commit/a94f87ed99)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151) - \[[`e834979818`](https://github.com/nodejs/node/commit/e834979818)] - **node-api**: add status napi_cannot_run_js (Gabriel Schulhof) [#&#8203;47986](https://github.com/nodejs/node/pull/47986) - \[[`eafe0c3ec6`](https://github.com/nodejs/node/commit/eafe0c3ec6)] - **node-api**: napi_ref on all types is experimental (Vladimir Morozov) [#&#8203;47975](https://github.com/nodejs/node/pull/47975) - \[[`9a034746f5`](https://github.com/nodejs/node/commit/9a034746f5)] - **src**: add Realm document in the src README.md (Chengzhong Wu) [#&#8203;47932](https://github.com/nodejs/node/pull/47932) - \[[`b8f4070f71`](https://github.com/nodejs/node/commit/b8f4070f71)] - **src**: check node_extra_ca_certs after openssl cfg (Raghu Saxena) [#&#8203;48159](https://github.com/nodejs/node/pull/48159) - \[[`0347a18056`](https://github.com/nodejs/node/commit/0347a18056)] - **src**: include missing header in node_sea.h (Joyee Cheung) [#&#8203;48152](https://github.com/nodejs/node/pull/48152) - \[[`45c3782c20`](https://github.com/nodejs/node/commit/45c3782c20)] - **src**: remove INT_MAX asserts in SecretKeyGenTraits (Tobias Nießen) [#&#8203;48053](https://github.com/nodejs/node/pull/48053) - \[[`b25e7045ad`](https://github.com/nodejs/node/commit/b25e7045ad)] - **src**: avoid prototype access in binding templates (Joyee Cheung) [#&#8203;47913](https://github.com/nodejs/node/pull/47913) - \[[`33aa373eec`](https://github.com/nodejs/node/commit/33aa373eec)] - **src**: use Blob{Des|S}erializer for SEA blobs (Joyee Cheung) [#&#8203;47962](https://github.com/nodejs/node/pull/47962) - \[[`9e2b13dfa7`](https://github.com/nodejs/node/commit/9e2b13dfa7)] - **stream**: deprecate asIndexedPairs (Chemi Atlow) [#&#8203;48102](https://github.com/nodejs/node/pull/48102) - \[[`96c323dee2`](https://github.com/nodejs/node/commit/96c323dee2)] - **test**: mark test-child-process-pipe-dataflow as flaky (Moshe Atlow) [#&#8203;48334](https://github.com/nodejs/node/pull/48334) - \[[`9875885357`](https://github.com/nodejs/node/commit/9875885357)] - **test**: adapt tests for OpenSSL 3.1 (OttoHollmann) [#&#8203;47859](https://github.com/nodejs/node/pull/47859) - \[[`3440d7c6bf`](https://github.com/nodejs/node/commit/3440d7c6bf)] - **test**: unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`215b2bc72c`](https://github.com/nodejs/node/commit/215b2bc72c)] - **test**: fix zlib version regex (Luigi Pinca) [#&#8203;48227](https://github.com/nodejs/node/pull/48227) - \[[`e12ee59d26`](https://github.com/nodejs/node/commit/e12ee59d26)] - **test**: use lower security level in s_client (Luigi Pinca) [#&#8203;48192](https://github.com/nodejs/node/pull/48192) - \[[`1dabc7390c`](https://github.com/nodejs/node/commit/1dabc7390c)] - ***Revert*** "**test**: unskip negative-settimeout.any.js WPT" (Filip Skokan) [#&#8203;48182](https://github.com/nodejs/node/pull/48182) - \[[`c1c4796a86`](https://github.com/nodejs/node/commit/c1c4796a86)] - **test**: mark test_cannot_run_js as flaky (Keyhan Vakil) [#&#8203;48181](https://github.com/nodejs/node/pull/48181) - \[[`8c49d74002`](https://github.com/nodejs/node/commit/8c49d74002)] - **test**: fix flaky test-runner-watch-mode (Moshe Atlow) [#&#8203;48144](https://github.com/nodejs/node/pull/48144) - \[[`6388766862`](https://github.com/nodejs/node/commit/6388766862)] - **test**: skip test-http-pipeline-flood on IBM i (Abdirahim Musse) [#&#8203;48048](https://github.com/nodejs/node/pull/48048) - \[[`8d2a3b1952`](https://github.com/nodejs/node/commit/8d2a3b1952)] - **test**: ignore helper files in WPTs (Filip Skokan) [#&#8203;48079](https://github.com/nodejs/node/pull/48079) - \[[`7a96d825fd`](https://github.com/nodejs/node/commit/7a96d825fd)] - **test**: move `test-cluster-primary-error` flaky test (Yagiz Nizipli) [#&#8203;48039](https://github.com/nodejs/node/pull/48039) - \[[`a80dd3a8b3`](https://github.com/nodejs/node/commit/a80dd3a8b3)] - **test**: fix suite signal (Benjamin Gruenbaum) [#&#8203;47800](https://github.com/nodejs/node/pull/47800) - \[[`a41cfd183f`](https://github.com/nodejs/node/commit/a41cfd183f)] - **test**: fix parsing test flags (Daeyeon Jeong) [#&#8203;48012](https://github.com/nodejs/node/pull/48012) - \[[`4d4e506f2b`](https://github.com/nodejs/node/commit/4d4e506f2b)] - **test,doc,sea**: run SEA tests on ppc64 (Darshan Sen) [#&#8203;48111](https://github.com/nodejs/node/pull/48111) - \[[`44411fc40c`](https://github.com/nodejs/node/commit/44411fc40c)] - **test_runner**: apply `runOnly` on suites (Moshe Atlow) [#&#8203;48279](https://github.com/nodejs/node/pull/48279) - \[[`3f259b7a30`](https://github.com/nodejs/node/commit/3f259b7a30)] - **test_runner**: emit `test:watch:drained` event (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259) - \[[`c9f8e8c562`](https://github.com/nodejs/node/commit/c9f8e8c562)] - **test_runner**: stop watch mode when abortSignal aborted (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259) - \[[`f3268d64cb`](https://github.com/nodejs/node/commit/f3268d64cb)] - **test_runner**: fix global after hook (Moshe Atlow) [#&#8203;48231](https://github.com/nodejs/node/pull/48231) - \[[`15336c3139`](https://github.com/nodejs/node/commit/15336c3139)] - **test_runner**: remove redundant check from coverage (Colin Ihrig) [#&#8203;48070](https://github.com/nodejs/node/pull/48070) - \[[`750d3e8606`](https://github.com/nodejs/node/commit/750d3e8606)] - **test_runner**: pass FORCE_COLOR to child process (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057) - \[[`3278542243`](https://github.com/nodejs/node/commit/3278542243)] - **test_runner**: dont split lines on `test:stdout` (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057) - \[[`027c531766`](https://github.com/nodejs/node/commit/027c531766)] - **test_runner**: fix test deserialize edge cases (Moshe Atlow) [#&#8203;48106](https://github.com/nodejs/node/pull/48106) - \[[`2b797a6d39`](https://github.com/nodejs/node/commit/2b797a6d39)] - **test_runner**: delegate stderr and stdout formatting to reporter (Shiba) [#&#8203;48045](https://github.com/nodejs/node/pull/48045) - \[[`23d310bee8`](https://github.com/nodejs/node/commit/23d310bee8)] - **test_runner**: display dot report as wide as the terminal width (Raz Luvaton) [#&#8203;48038](https://github.com/nodejs/node/pull/48038) - \[[`fd2620dcf1`](https://github.com/nodejs/node/commit/fd2620dcf1)] - **tls**: reapply servername on happy eyeballs connect (Fedor Indutny) [#&#8203;48255](https://github.com/nodejs/node/pull/48255) - \[[`62f847d0b3`](https://github.com/nodejs/node/commit/62f847d0b3)] - **tools**: update rollup lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48329](https://github.com/nodejs/node/pull/48329) - \[[`3e97826a66`](https://github.com/nodejs/node/commit/3e97826a66)] - ***Revert*** "**tools**: open issue when update workflow fails" (Marco Ippolito) [#&#8203;48312](https://github.com/nodejs/node/pull/48312) - \[[`5f08bfe35f`](https://github.com/nodejs/node/commit/5f08bfe35f)] - **tools**: don't gitignore base64 config.h (Ben Noordhuis) [#&#8203;48174](https://github.com/nodejs/node/pull/48174) - \[[`ded0e2d755`](https://github.com/nodejs/node/commit/ded0e2d755)] - **tools**: update LICENSE and license-builder.sh (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`07aa264366`](https://github.com/nodejs/node/commit/07aa264366)] - **tools**: automate histogram update (Marco Ippolito) [#&#8203;48171](https://github.com/nodejs/node/pull/48171) - \[[`1416b75eaa`](https://github.com/nodejs/node/commit/1416b75eaa)] - **tools**: use shasum instead of sha256sum (Luigi Pinca) [#&#8203;48229](https://github.com/nodejs/node/pull/48229) - \[[`b81e9d9b7b`](https://github.com/nodejs/node/commit/b81e9d9b7b)] - **tools**: harmonize `dep_updaters` scripts (Antoine du Hamel) [#&#8203;48201](https://github.com/nodejs/node/pull/48201) - \[[`a60bc41e53`](https://github.com/nodejs/node/commit/a60bc41e53)] - **tools**: deps update authenticate github api request (Andrea Fassina) [#&#8203;48200](https://github.com/nodejs/node/pull/48200) - \[[`7478ed014e`](https://github.com/nodejs/node/commit/7478ed014e)] - **tools**: order dependency jobs alphabetically (Luca) [#&#8203;48184](https://github.com/nodejs/node/pull/48184) - \[[`568a705799`](https://github.com/nodejs/node/commit/568a705799)] - **tools**: refactor v8\_pch config (Michaël Zasso) [#&#8203;47364](https://github.com/nodejs/node/pull/47364) - \[[`801573ba46`](https://github.com/nodejs/node/commit/801573ba46)] - **tools**: log and verify sha256sum (Andrea Fassina) [#&#8203;48088](https://github.com/nodejs/node/pull/48088) - \[[`db62325e18`](https://github.com/nodejs/node/commit/db62325e18)] - **tools**: open issue when update workflow fails (Marco Ippolito) [#&#8203;48018](https://github.com/nodejs/node/pull/48018) - \[[`ad8a68856d`](https://github.com/nodejs/node/commit/ad8a68856d)] - **tools**: alphabetize CODEOWNERS (Rich Trott) [#&#8203;48124](https://github.com/nodejs/node/pull/48124) - \[[`4cf5a9edaf`](https://github.com/nodejs/node/commit/4cf5a9edaf)] - **tools**: use latest upstream commit for zlib updates (Andrea Fassina) [#&#8203;48054](https://github.com/nodejs/node/pull/48054) - \[[`8d93af381b`](https://github.com/nodejs/node/commit/8d93af381b)] - **tools**: add security-wg as dep updaters owner (Marco Ippolito) [#&#8203;48113](https://github.com/nodejs/node/pull/48113) - \[[`5325be1d99`](https://github.com/nodejs/node/commit/5325be1d99)] - **tools**: port js2c.py to C++ (Joyee Cheung) [#&#8203;46997](https://github.com/nodejs/node/pull/46997) - \[[`6c60d90277`](https://github.com/nodejs/node/commit/6c60d90277)] - **tools**: fix race condition when npm installing (Tobias Nießen) [#&#8203;48101](https://github.com/nodejs/node/pull/48101) - \[[`0ab840a58f`](https://github.com/nodejs/node/commit/0ab840a58f)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;48098](https://github.com/nodejs/node/pull/48098) - \[[`a298193378`](https://github.com/nodejs/node/commit/a298193378)] - **tools**: update cpplint to 1.6.1 (Yagiz Nizipli) [#&#8203;48098](https://github.com/nodejs/node/pull/48098) - \[[`f6725751b7`](https://github.com/nodejs/node/commit/f6725751b7)] - **tools**: update eslint to 8.41.0 (Node.js GitHub Bot) [#&#8203;48097](https://github.com/nodejs/node/pull/48097) - \[[`6539361f4e`](https://github.com/nodejs/node/commit/6539361f4e)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48096](https://github.com/nodejs/node/pull/48096) - \[[`5d94dbb951`](https://github.com/nodejs/node/commit/5d94dbb951)] - **tools**: update doc to remark-parse@10.0.2 (Node.js GitHub Bot) [#&#8203;48095](https://github.com/nodejs/node/pull/48095) - \[[`2226088048`](https://github.com/nodejs/node/commit/2226088048)] - **tools**: add debug logs (Marco Ippolito) [#&#8203;48060](https://github.com/nodejs/node/pull/48060) - \[[`0c8c383583`](https://github.com/nodejs/node/commit/0c8c383583)] - **tools**: fix zconf.h path (Luigi Pinca) [#&#8203;48089](https://github.com/nodejs/node/pull/48089) - \[[`6adaf4c648`](https://github.com/nodejs/node/commit/6adaf4c648)] - **tools**: update remark-preset-lint-node to 4.0.0 (Node.js GitHub Bot) [#&#8203;47995](https://github.com/nodejs/node/pull/47995) - \[[`92b3334231`](https://github.com/nodejs/node/commit/92b3334231)] - **url**: clean vertical alignment of docs (Robin Ury) [#&#8203;48037](https://github.com/nodejs/node/pull/48037) - \[[`ebb6536775`](https://github.com/nodejs/node/commit/ebb6536775)] - **url**: call `ada::can_parse` directly (Yagiz Nizipli) [#&#8203;47919](https://github.com/nodejs/node/pull/47919) - \[[`ed4514294a`](https://github.com/nodejs/node/commit/ed4514294a)] - **vm**: properly handle defining symbol props (Nicolas DUBIEN) [#&#8203;47572](https://github.com/nodejs/node/pull/47572) ### [`v20.2.0`](https://github.com/nodejs/node/releases/tag/v20.2.0): 2023-05-16, Version 20.2.0 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v20.1.0...v20.2.0) ##### Notable Changes - \[[`c092df9094`](https://github.com/nodejs/node/commit/c092df9094)] - **doc**: add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844) - \[[`4197a9a5a0`](https://github.com/nodejs/node/commit/4197a9a5a0)] - **(SEMVER-MINOR)** **http**: prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732) - \[[`c4596b9ce7`](https://github.com/nodejs/node/commit/c4596b9ce7)] - **(SEMVER-MINOR)** **sea**: add option to disable the experimental SEA warning (Darshan Sen) [#&#8203;47588](https://github.com/nodejs/node/pull/47588) - \[[`17befe008c`](https://github.com/nodejs/node/commit/17befe008c)] - **(SEMVER-MINOR)** **test_runner**: add `skip`, `todo`, and `only` shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909) - \[[`a0634d7f89`](https://github.com/nodejs/node/commit/a0634d7f89)] - **(SEMVER-MINOR)** **url**: add value argument to `URLSearchParams` `has` and `delete` methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885) ##### Commits - \[[`456fca0d9c`](https://github.com/nodejs/node/commit/456fca0d9c)] - **bootstrap**: initialize per-isolate properties of bindings separately (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768) - \[[`d6d12bf978`](https://github.com/nodejs/node/commit/d6d12bf978)] - **bootstrap**: log isolate data info in mksnapshot debug logs (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768) - \[[`e457d89a1b`](https://github.com/nodejs/node/commit/e457d89a1b)] - **buffer**: combine checking range of sourceStart in `buf.copy` (Deokjin Kim) [#&#8203;47758](https://github.com/nodejs/node/pull/47758) - \[[`00668fcfb4`](https://github.com/nodejs/node/commit/00668fcfb4)] - **child_process**: use signal.reason in child process abort (Debadree Chatterjee) [#&#8203;47817](https://github.com/nodejs/node/pull/47817) - \[[`d7993474ea`](https://github.com/nodejs/node/commit/d7993474ea)] - **crypto**: remove default encoding from scrypt (Tobias Nießen) [#&#8203;47943](https://github.com/nodejs/node/pull/47943) - \[[`09fb74a7cc`](https://github.com/nodejs/node/commit/09fb74a7cc)] - **crypto**: fix webcrypto private/secret import with empty usages (Filip Skokan) [#&#8203;47877](https://github.com/nodejs/node/pull/47877) - \[[`e9c6ee74f3`](https://github.com/nodejs/node/commit/e9c6ee74f3)] - **crypto**: remove default encoding from pbkdf2 (Tobias Nießen) [#&#8203;47869](https://github.com/nodejs/node/pull/47869) - \[[`b7f13a8679`](https://github.com/nodejs/node/commit/b7f13a8679)] - **deps**: update simdutf to 3.2.9 (Node.js GitHub Bot) [#&#8203;47983](https://github.com/nodejs/node/pull/47983) - \[[`b16f6da153`](https://github.com/nodejs/node/commit/b16f6da153)] - **deps**: V8: cherry-pick [`5f025d1`](https://github.com/nodejs/node/commit/5f025d1ca2ca) (Michaël Zasso) [#&#8203;47610](https://github.com/nodejs/node/pull/47610) - \[[`99f8fcab45`](https://github.com/nodejs/node/commit/99f8fcab45)] - **deps**: V8: cherry-pick [`a8a11a8`](https://github.com/nodejs/node/commit/a8a11a87cb72) (Michaël Zasso) [#&#8203;47610](https://github.com/nodejs/node/pull/47610) - \[[`c2b14b4c78`](https://github.com/nodejs/node/commit/c2b14b4c78)] - **deps**: update ada to 2.4.0 (Node.js GitHub Bot) [#&#8203;47922](https://github.com/nodejs/node/pull/47922) - \[[`cad42e7a56`](https://github.com/nodejs/node/commit/cad42e7a56)] - **deps**: V8: cherry-pick [`1b471b7`](https://github.com/nodejs/node/commit/1b471b796022) (Lu Yahan) [#&#8203;47399](https://github.com/nodejs/node/pull/47399) - \[[`7b2f17ca59`](https://github.com/nodejs/node/commit/7b2f17ca59)] - **deps**: upgrade npm to 9.6.6 (npm team) [#&#8203;47862](https://github.com/nodejs/node/pull/47862) - \[[`d23b1af562`](https://github.com/nodejs/node/commit/d23b1af562)] - **deps**: update ada to 2.3.1 (Node.js GitHub Bot) [#&#8203;47893](https://github.com/nodejs/node/pull/47893) - \[[`72340c98fb`](https://github.com/nodejs/node/commit/72340c98fb)] - **dgram**: convert macro to template (Tobias Nießen) [#&#8203;47891](https://github.com/nodejs/node/pull/47891) - \[[`9be922892f`](https://github.com/nodejs/node/commit/9be922892f)] - **dns**: call `ada::idna::to_ascii` directly from c++ (Yagiz Nizipli) [#&#8203;47920](https://github.com/nodejs/node/pull/47920) - \[[`4a1e97156a`](https://github.com/nodejs/node/commit/4a1e97156a)] - **doc**: add missing deprecated blocks to cluster (Tobias Nießen) [#&#8203;47981](https://github.com/nodejs/node/pull/47981) - \[[`13118a19ee`](https://github.com/nodejs/node/commit/13118a19ee)] - **doc**: update description of global (Tobias Nießen) [#&#8203;47969](https://github.com/nodejs/node/pull/47969) - \[[`372796440b`](https://github.com/nodejs/node/commit/372796440b)] - **doc**: update measure memory rejection information (Yash Ladha) [#&#8203;41639](https://github.com/nodejs/node/pull/41639) - \[[`7ecc6740e4`](https://github.com/nodejs/node/commit/7ecc6740e4)] - **doc**: fix broken link to TC39 import attributes proposal (Rich Trott) [#&#8203;47954](https://github.com/nodejs/node/pull/47954) - \[[`b9771c95c7`](https://github.com/nodejs/node/commit/b9771c95c7)] - **doc**: fix broken link (Rich Trott) [#&#8203;47953](https://github.com/nodejs/node/pull/47953) - \[[`6f5ba92e61`](https://github.com/nodejs/node/commit/6f5ba92e61)] - **doc**: remove broken link (Rich Trott) [#&#8203;47942](https://github.com/nodejs/node/pull/47942) - \[[`c9ffc555f1`](https://github.com/nodejs/node/commit/c9ffc555f1)] - **doc**: document make lint-md-clean (Matteo Collina) [#&#8203;47926](https://github.com/nodejs/node/pull/47926) - \[[`7ed99e8ba5`](https://github.com/nodejs/node/commit/7ed99e8ba5)] - **doc**: mark global object as legacy (Mert Can Altın) [#&#8203;47819](https://github.com/nodejs/node/pull/47819) - \[[`bf39f2d252`](https://github.com/nodejs/node/commit/bf39f2d252)] - **doc**: ntfs junction points must link to directories (Ben Noordhuis) [#&#8203;47907](https://github.com/nodejs/node/pull/47907) - \[[`4dfc3890d8`](https://github.com/nodejs/node/commit/4dfc3890d8)] - **doc**: improve `permission.has` description (Daeyeon Jeong) [#&#8203;47875](https://github.com/nodejs/node/pull/47875) - \[[`93f1aa2856`](https://github.com/nodejs/node/commit/93f1aa2856)] - **doc**: fix params names (Dmitry Semigradsky) [#&#8203;47853](https://github.com/nodejs/node/pull/47853) - \[[`9a362aa2fb`](https://github.com/nodejs/node/commit/9a362aa2fb)] - **doc**: update supported version of FreeBSD to 12.4 (Michaël Zasso) [#&#8203;47838](https://github.com/nodejs/node/pull/47838) - \[[`89c70dc6e6`](https://github.com/nodejs/node/commit/89c70dc6e6)] - **doc**: add stability experimental to pm (Rafael Gonzaga) [#&#8203;47890](https://github.com/nodejs/node/pull/47890) - \[[`f96fb2eee7`](https://github.com/nodejs/node/commit/f96fb2eee7)] - **doc**: swap Matteo with Rafael in the stewards (Rafael Gonzaga) [#&#8203;47841](https://github.com/nodejs/node/pull/47841) - \[[`1666a146e3`](https://github.com/nodejs/node/commit/1666a146e3)] - **doc**: add valgrind suppression details (Kevin Eady) [#&#8203;47760](https://github.com/nodejs/node/pull/47760) - \[[`e53e8231ff`](https://github.com/nodejs/node/commit/e53e8231ff)] - **doc**: replace EOL versions in README (Tobias Nießen) [#&#8203;47833](https://github.com/nodejs/node/pull/47833) - \[[`c092df9094`](https://github.com/nodejs/node/commit/c092df9094)] - **doc**: add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844) - \[[`f7106765b3`](https://github.com/nodejs/node/commit/f7106765b3)] - **doc**: update BUILDING.md previous versions links (Tobias Nießen) [#&#8203;47835](https://github.com/nodejs/node/pull/47835) - \[[`811b43c215`](https://github.com/nodejs/node/commit/811b43c215)] - **doc,test**: update the v8.startupSnapshot doc and test the example (Joyee Cheung) [#&#8203;47468](https://github.com/nodejs/node/pull/47468) - \[[`1ec640ac70`](https://github.com/nodejs/node/commit/1ec640ac70)] - **esm**: do not use `'beforeExit'` on the main thread (Antoine du Hamel) [#&#8203;47964](https://github.com/nodejs/node/pull/47964) - \[[`106dc612d6`](https://github.com/nodejs/node/commit/106dc612d6)] - **fs**: make readdir recursive algorithm iterative (Ethan Arrowood) [#&#8203;47650](https://github.com/nodejs/node/pull/47650) - \[[`a0da2348a8`](https://github.com/nodejs/node/commit/a0da2348a8)] - **fs**: move fs_use_promises_symbol to per-isolate symbols (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768) - \[[`4197a9a5a0`](https://github.com/nodejs/node/commit/4197a9a5a0)] - **(SEMVER-MINOR)** **http**: prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732) - \[[`a4d6543598`](https://github.com/nodejs/node/commit/a4d6543598)] - **http2**: improve nghttp2 error callback (Tobias Nießen) [#&#8203;47840](https://github.com/nodejs/node/pull/47840) - \[[`a4fed6c580`](https://github.com/nodejs/node/commit/a4fed6c580)] - **lib**: update comment (sinkhaha) [#&#8203;47884](https://github.com/nodejs/node/pull/47884) - \[[`fd8bec7b2b`](https://github.com/nodejs/node/commit/fd8bec7b2b)] - **meta**: bump step-security/harden-runner from 2.3.1 to 2.4.0 (Rich Trott) [#&#8203;47980](https://github.com/nodejs/node/pull/47980) - \[[`f5b4b6d5dc`](https://github.com/nodejs/node/commit/f5b4b6d5dc)] - **meta**: bump github/codeql-action from 2.3.2 to 2.3.3 (Rich Trott) [#&#8203;47979](https://github.com/nodejs/node/pull/47979) - \[[`c05c0a2359`](https://github.com/nodejs/node/commit/c05c0a2359)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (Rich Trott) [#&#8203;47968](https://github.com/nodejs/node/pull/47968) - \[[`2a3d6d97cb`](https://github.com/nodejs/node/commit/2a3d6d97cb)] - **meta**: add security-wg ping to permission.js (Rafael Gonzaga) [#&#8203;47941](https://github.com/nodejs/node/pull/47941) - \[[`6c158e8dd1`](https://github.com/nodejs/node/commit/6c158e8dd1)] - **meta**: bump step-security/harden-runner from 2.2.1 to 2.3.1 (dependabot\[bot]) [#&#8203;47808](https://github.com/nodejs/node/pull/47808) - \[[`f7a8094d37`](https://github.com/nodejs/node/commit/f7a8094d37)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (dependabot\[bot]) [#&#8203;47806](https://github.com/nodejs/node/pull/47806) - \[[`0f58e48792`](https://github.com/nodejs/node/commit/0f58e48792)] - **meta**: bump actions/checkout from 3.3.0 to 3.5.2 (dependabot\[bot]) [#&#8203;47805](https://github.com/nodejs/node/pull/47805) - \[[`652b06dd82`](https://github.com/nodejs/node/commit/652b06dd82)] - **meta**: remove extra space in scorecard workflow (Mestery) [#&#8203;47805](https://github.com/nodejs/node/pull/47805) - \[[`9f06eaccaf`](https://github.com/nodejs/node/commit/9f06eaccaf)] - **meta**: bump github/codeql-action from 2.2.9 to 2.3.2 (dependabot\[bot]) [#&#8203;47809](https://github.com/nodejs/node/pull/47809) - \[[`977fd7cf35`](https://github.com/nodejs/node/commit/977fd7cf35)] - **meta**: bump codecov/codecov-action from 3.1.1 to 3.1.3 (dependabot\[bot]) [#&#8203;47807](https://github.com/nodejs/node/pull/47807) - \[[`c19385c154`](https://github.com/nodejs/node/commit/c19385c154)] - **module**: refactor to use `normalizeRequirableId` in the CJS module loader (Darshan Sen) [#&#8203;47896](https://github.com/nodejs/node/pull/47896) - \[[`739113f2fc`](https://github.com/nodejs/node/commit/739113f2fc)] - **module**: block requiring `test/reporters` without scheme (Moshe Atlow) [#&#8203;47831](https://github.com/nodejs/node/pull/47831) - \[[`f489c6710c`](https://github.com/nodejs/node/commit/f489c6710c)] - **(NODE-API-SEMVER-MAJOR)** **node-api**: get Node API version used by addon (Vladimir Morozov) [#&#8203;45715](https://github.com/nodejs/node/pull/45715) - \[[`7222f9d74b`](https://github.com/nodejs/node/commit/7222f9d74b)] - **path**: indicate index of wrong resolve() parameter (sosoba) [#&#8203;47660](https://github.com/nodejs/node/pull/47660) - \[[`7dd32f1536`](https://github.com/nodejs/node/commit/7dd32f1536)] - **permission**: remove unused function declaration (Deokjin Kim) [#&#8203;47957](https://github.com/nodejs/node/pull/47957) - \[[`af86625a05`](https://github.com/nodejs/node/commit/af86625a05)] - **permission**: resolve reference to absolute path only for fs permission (Daeyeon Jeong) [#&#8203;47930](https://github.com/nodejs/node/pull/47930) - \[[`1625ae11fe`](https://github.com/nodejs/node/commit/1625ae11fe)] - **quic**: address recent coverity warning (Michael Dawson) [#&#8203;47753](https://github.com/nodejs/node/pull/47753) - \[[`c4596b9ce7`](https://github.com/nodejs/node/commit/c4596b9ce7)] - **(SEMVER-MINOR)** **sea**: add option to disable the experimental SEA warning (Darshan Sen) [#&#8203;47588](https://github.com/nodejs/node/pull/47588) - \[[`1a7fc186bc`](https://github.com/nodejs/node/commit/1a7fc186bc)] - **sea**: allow requiring core modules with the "node:" prefix (Darshan Sen) [#&#8203;47779](https://github.com/nodejs/node/pull/47779) - \[[`786a1c5398`](https://github.com/nodejs/node/commit/786a1c5398)] - **src**: deduplicate X509Certificate::Fingerprint\* (Tobias Nießen) [#&#8203;47978](https://github.com/nodejs/node/pull/47978) - \[[`060c1d502b`](https://github.com/nodejs/node/commit/060c1d502b)] - **src**: stop copying code cache, part 2 (Keyhan Vakil) [#&#8203;47958](https://github.com/nodejs/node/pull/47958) - \[[`1aec718619`](https://github.com/nodejs/node/commit/1aec718619)] - **(SEMVER-MINOR)** **src**: add cjs_module_lexer_version base64\_version (Jithil P Ponnan) [#&#8203;45629](https://github.com/nodejs/node/pull/45629) - \[[`0c06bfd8dc`](https://github.com/nodejs/node/commit/0c06bfd8dc)] - **src**: move BlobSerializerDeserializer to a separate header file (Darshan Sen) [#&#8203;47933](https://github.com/nodejs/node/pull/47933) - \[[`bd553e7521`](https://github.com/nodejs/node/commit/bd553e7521)] - **src**: rename SKIP_CHECK_SIZE to SKIP_CHECK_STRLEN (Tobias Nießen) [#&#8203;47845](https://github.com/nodejs/node/pull/47845) - \[[`190596c189`](https://github.com/nodejs/node/commit/190596c189)] - **src**: register external references for source code (Keyhan Vakil) [#&#8203;47055](https://github.com/nodejs/node/pull/47055) - \[[`4293cc47f4`](https://github.com/nodejs/node/commit/4293cc47f4)] - **src**: support V8 experimental shared values in messaging (Shu-yu Guo) [#&#8203;47706](https://github.com/nodejs/node/pull/47706) - \[[`9bc5d78f0c`](https://github.com/nodejs/node/commit/9bc5d78f0c)] - **src**: register ext reference for Fingerprint512 (Tobias Nießen) [#&#8203;47892](https://github.com/nodejs/node/pull/47892) - \[[`a11507e23b`](https://github.com/nodejs/node/commit/a11507e23b)] - **src**: stop copying code cache (Keyhan Vakil) [#&#8203;47144](https://github.com/nodejs/node/pull/47144) - \[[`515c9b8de6`](https://github.com/nodejs/node/commit/515c9b8de6)] - **src**: clarify the parameter name in `Permission::Apply` (Daeyeon Jeong) [#&#8203;47874](https://github.com/nodejs/node/pull/47874) - \[[`c4217613f5`](https://github.com/nodejs/node/commit/c4217613f5)] - **src**: fix creating an ArrayBuffer from a Blob created with `openAsBlob` (Daeyeon Jeong) [#&#8203;47691](https://github.com/nodejs/node/pull/47691) - \[[`4bc17fd67b`](https://github.com/nodejs/node/commit/4bc17fd67b)] - **src**: avoid strcmp() with Utf8Value (Tobias Nießen) [#&#8203;47827](https://github.com/nodejs/node/pull/47827) - \[[`d358317f70`](https://github.com/nodejs/node/commit/d358317f70)] - **src**: get binding data store directly from the realm (Joyee Cheung) [#&#8203;47437](https://github.com/nodejs/node/pull/47437) - \[[`b04d51a0b5`](https://github.com/nodejs/node/commit/b04d51a0b5)] - **src**: prefer data accessor of string and vector (Mohammed Keyvanzadeh) [#&#8203;47750](https://github.com/nodejs/node/pull/47750) - \[[`2952cc576c`](https://github.com/nodejs/node/commit/2952cc576c)] - **src**: add per-isolate SetFastMethod and Set\[Fast]MethodNoSideEffect (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768) - \[[`010d2ecf94`](https://github.com/nodejs/node/commit/010d2ecf94)] - **test**: mark test-esm-loader-http-imports as flaky (Tobias Nießen) [#&#8203;47987](https://github.com/nodejs/node/pull/47987) - \[[`bb33c74c07`](https://github.com/nodejs/node/commit/bb33c74c07)] - **test**: add getRandomValues return length (Jithil P Ponnan) [#&#8203;46357](https://github.com/nodejs/node/pull/46357) - \[[`6e019586f7`](https://github.com/nodejs/node/commit/6e019586f7)] - **test**: unskip negative-settimeout.any.js WPT (Filip Skokan) [#&#8203;47946](https://github.com/nodejs/node/pull/47946) - \[[`8f547afe5f`](https://github.com/nodejs/node/commit/8f547afe5f)] - **test**: use appropriate usages for a negative import test (Filip Skokan) [#&#8203;47878](https://github.com/nodejs/node/pull/47878) - \[[`7e34f77518`](https://github.com/nodejs/node/commit/7e34f77518)] - **test**: fix webcrypto wrap unwrap tests (Filip Skokan) [#&#8203;47876](https://github.com/nodejs/node/pull/47876) - \[[`30f4f35244`](https://github.com/nodejs/node/commit/30f4f35244)] - **test**: fix output tests when path includes node version (Moshe Atlow) [#&#8203;47843](https://github.com/nodejs/node/pull/47843) - \[[`54607bfd68`](https://github.com/nodejs/node/commit/54607bfd68)] - **test**: reduce WPT concurrency (Filip Skokan) [#&#8203;47834](https://github.com/nodejs/node/pull/47834) - \[[`17945a2495`](https://github.com/nodejs/node/commit/17945a2495)] - **test**: migrate a pseudo_tty test to use assertSnapshot (Moshe Atlow) [#&#8203;47803](https://github.com/nodejs/node/pull/47803) - \[[`c9233679e8`](https://github.com/nodejs/node/commit/c9233679e8)] - **test**: fix WPT state when process exits but workers are still running (Filip Skokan) [#&#8203;47826](https://github.com/nodejs/node/pull/47826) - \[[`34bfb69b5b`](https://github.com/nodejs/node/commit/34bfb69b5b)] - **test**: migrate message tests to use assertSnapshot (Moshe Atlow) [#&#8203;47498](https://github.com/nodejs/node/pull/47498) - \[[`d25c785c2a`](https://github.com/nodejs/node/commit/d25c785c2a)] - **test**: allow SIGBUS in signal-handler abort test (Michaël Zasso) [#&#8203;47851](https://github.com/nodejs/node/pull/47851) - \[[`aa2c7e00d7`](https://github.com/nodejs/node/commit/aa2c7e00d7)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47921](https://github.com/nodejs/node/pull/47921) - \[[`da27542058`](https://github.com/nodejs/node/commit/da27542058)] - **test_runner**: use v8.serialize instead of TAP (Moshe Atlow) [#&#8203;47867](https://github.com/nodejs/node/pull/47867) - \[[`17befe008c`](https://github.com/nodejs/node/commit/17befe008c)] - **(SEMVER-MINOR)** **test_runner**: add shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909) - \[[`42db1d50a0`](https://github.com/nodejs/node/commit/42db1d50a0)] - **test_runner**: fix ordering of test hooks (Phil Nash) [#&#8203;47931](https://github.com/nodejs/node/pull/47931) - \[[`d81c54e3a8`](https://github.com/nodejs/node/commit/d81c54e3a8)] - **test_runner**: omit inaccessible files from coverage (Colin Ihrig) [#&#8203;47850](https://github.com/nodejs/node/pull/47850) - \[[`a4e261e910`](https://github.com/nodejs/node/commit/a4e261e910)] - **tools**: debug log for nghttp3 (Marco Ippolito) [#&#8203;47992](https://github.com/nodejs/node/pull/47992) - \[[`f6ff318d4c`](https://github.com/nodejs/node/commit/f6ff318d4c)] - **tools**: automate icu-small update (Marco Ippolito) [#&#8203;47727](https://github.com/nodejs/node/pull/47727) - \[[`706c305381`](https://github.com/nodejs/node/commit/706c305381)] - **tools**: update lint-md-dependencies to rollup@3.21.5 (Node.js GitHub Bot) [#&#8203;47903](https://github.com/nodejs/node/pull/47903) - \[[`e22c686ca9`](https://github.com/nodejs/node/commit/e22c686ca9)] - **tools**: update eslint to 8.40.0 (Node.js GitHub Bot) [#&#8203;47906](https://github.com/nodejs/node/pull/47906) - \[[`36f7cfac93`](https://github.com/nodejs/node/commit/36f7cfac93)] - **tools**: update eslint to 8.39.0 (Node.js GitHub Bot) [#&#8203;47789](https://github.com/nodejs/node/pull/47789) - \[[`7323902a40`](https://github.com/nodejs/node/commit/7323902a40)] - **tools**: fix jsdoc lint (Moshe Atlow) [#&#8203;47789](https://github.com/nodejs/node/pull/47789) - \[[`a0634d7f89`](https://github.com/nodejs/node/commit/a0634d7f89)] - **(SEMVER-MINOR)** **url**: add value argument to has and delete methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885) - \[[`1b06c1e003`](https://github.com/nodejs/node/commit/1b06c1e003)] - **url**: improve `isURL` detection (Yagiz Nizipli) [#&#8203;47886](https://github.com/nodejs/node/pull/47886) - \[[`2bd869d20c`](https://github.com/nodejs/node/commit/2bd869d20c)] - **vm**: fix crash when setting \__proto\_\_ on context's globalThis (Feng Yu) [#&#8203;47939](https://github.com/nodejs/node/pull/47939) - \[[`e6685f9e82`](https://github.com/nodejs/node/commit/e6685f9e82)] - **vm,lib**: refactor microtaskQueue assignment logic (Khaidi Chu) [#&#8203;47765](https://github.com/nodejs/node/pull/47765) - \[[`47fea13dac`](https://github.com/nodejs/node/commit/47fea13dac)] - **worker**: support more cases when (de)serializing errors (Moshe Atlow) [#&#8203;47925](https://github.com/nodejs/node/pull/47925) - \[[`6f3876c035`](https://github.com/nodejs/node/commit/6f3876c035)] - **worker**: use snapshot in workers spawned by workers (Joyee Cheung) [#&#8203;47731](https://github.com/nodejs/node/pull/47731) ### [`v20.1.0`](https://github.com/nodejs/node/releases/tag/v20.1.0): 2023-05-03, Version 20.1.0 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v20.0.0...v20.1.0) ##### Notable Changes - \[[`5e99598639`](https://github.com/nodejs/node/commit/5e99598639)] - **assert**: deprecate `CallTracker` (Moshe Atlow) [#&#8203;47740](https://github.com/nodejs/node/pull/47740) - \[[`2d97c89c6f`](https://github.com/nodejs/node/commit/2d97c89c6f)] - **crypto**: update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659) - \[[`ce8820e292`](https://github.com/nodejs/node/commit/ce8820e292)] - **(SEMVER-MINOR)** **dns**: expose `getDefaultResultOrder` (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973) - \[[`9d30f469aa`](https://github.com/nodejs/node/commit/9d30f469aa)] - **doc**: add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510) - \[[`439ea47a77`](https://github.com/nodejs/node/commit/439ea47a77)] - **(SEMVER-MINOR)** **fs**: add `recursive` option to `readdir` and `opendir` (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439) - \[[`a54e898dc8`](https://github.com/nodejs/node/commit/a54e898dc8)] - **(SEMVER-MINOR)** **fs**: add support for `mode` flag to specify the copy behavior of the `cp` methods (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084) - \[[`4fa773964b`](https://github.com/nodejs/node/commit/4fa773964b)] - **(SEMVER-MINOR)** **http**: add `highWaterMark` option `http.createServer` (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405) - \[[`2b411f4b42`](https://github.com/nodejs/node/commit/2b411f4b42)] - **(SEMVER-MINOR)** **stream**: preserve object mode in `compose` (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413) - \[[`5327483f31`](https://github.com/nodejs/node/commit/5327483f31)] - **(SEMVER-MINOR)** **test_runner**: add `testNamePatterns` to `run` API (Chemi Atlow) [#&#8203;47628](https://github.com/nodejs/node/pull/47628) - \[[`bdd02a467d`](https://github.com/nodejs/node/commit/bdd02a467d)] - **(SEMVER-MINOR)** **test_runner**: execute `before` hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586) - \[[`0e70c187bc`](https://github.com/nodejs/node/commit/0e70c187bc)] - **(SEMVER-MINOR)** **test_runner**: support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686) - \[[`75c1d1b66e`](https://github.com/nodejs/node/commit/75c1d1b66e)] - **(SEMVER-MINOR)** **wasi**: make `returnOnExit` true by default (Michael Dawson) [#&#8203;47390](https://github.com/nodejs/node/pull/47390) ##### Commits - \[[`33d1bd3e02`](https://github.com/nodejs/node/commit/33d1bd3e02)] - **assert**: deprecate callTracker (Moshe Atlow) [#&#8203;47740](https://github.com/nodejs/node/pull/47740) - \[[`6d87355e83`](https://github.com/nodejs/node/commit/6d87355e83)] - **benchmark**: add eventtarget creation bench (Rafael Gonzaga) [#&#8203;47774](https://github.com/nodejs/node/pull/47774) - \[[`40324a1dea`](https://github.com/nodejs/node/commit/40324a1dea)] - **benchmark**: differentiate whatwg and legacy url (Yagiz Nizipli) [#&#8203;47377](https://github.com/nodejs/node/pull/47377) - \[[`936d7cb069`](https://github.com/nodejs/node/commit/936d7cb069)] - **benchmark**: add a benchmark for `defaultResolve` (Antoine du Hamel) [#&#8203;47543](https://github.com/nodejs/node/pull/47543) - \[[`202042ee93`](https://github.com/nodejs/node/commit/202042ee93)] - **bootstrap**: support namespaced builtins in snapshot scripts (Joyee Cheung) [#&#8203;47467](https://github.com/nodejs/node/pull/47467) - \[[`30af5cee55`](https://github.com/nodejs/node/commit/30af5cee55)] - **build**: use pathlib for paths (Mohammed Keyvanzadeh) [#&#8203;47581](https://github.com/nodejs/node/pull/47581) - \[[`089c9c51e9`](https://github.com/nodejs/node/commit/089c9c51e9)] - **build**: refactor configure.py (Mohammed Keyvanzadeh) [#&#8203;47667](https://github.com/nodejs/node/pull/47667) - \[[`5b851c8074`](https://github.com/nodejs/node/commit/5b851c8074)] - **build**: add devcontainer configuration (Tierney Cyren) [#&#8203;40825](https://github.com/nodejs/node/pull/40825) - \[[`35e8b3b467`](https://github.com/nodejs/node/commit/35e8b3b467)] - **build**: bump ossf/scorecard-action from 2.1.2 to 2.1.3 (dependabot\[bot]) [#&#8203;47367](https://github.com/nodejs/node/pull/47367) - \[[`78c08243df`](https://github.com/nodejs/node/commit/78c08243df)] - **build**: replace Python linter flake8 with ruff (Christian Clauss) [#&#8203;47519](https://github.com/nodejs/node/pull/47519) - \[[`2d97c89c6f`](https://github.com/nodejs/node/commit/2d97c89c6f)] - **crypto**: update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659) - \[[`420feb41cf`](https://github.com/nodejs/node/commit/420feb41cf)] - **crypto**: remove INT_MAX restriction in randomBytes (Tobias Nießen) [#&#8203;47559](https://github.com/nodejs/node/pull/47559) - \[[`6046779dd9`](https://github.com/nodejs/node/commit/6046779dd9)] - **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;47450](https://github.com/nodejs/node/pull/47450) - \[[`00d461e93f`](https://github.com/nodejs/node/commit/00d461e93f)] - **deps**: V8: cherry-pick [`c5ab3e4`](https://github.com/nodejs/node/commit/c5ab3e4f0c5a) (Richard Lau) [#&#8203;47736](https://github.com/nodejs/node/pull/47736) - \[[`d08dd8069f`](https://github.com/nodejs/node/commit/d08dd8069f)] - **deps**: update ada to 2.3.0 (Node.js GitHub Bot) [#&#8203;47737](https://github.com/nodejs/node/pull/47737) - \[[`996245976b`](https://github.com/nodejs/node/commit/996245976b)] - **deps**: update undici to 5.22.0 (Node.js GitHub Bot) [#&#8203;47679](https://github.com/nodejs/node/pull/47679) - \[[`f3ee3126df`](https://github.com/nodejs/node/commit/f3ee3126df)] - **deps**: update ada to 2.2.0 (Node.js GitHub Bot) [#&#8203;47678](https://github.com/nodejs/node/pull/47678) - \[[`1391d3b9ff`](https://github.com/nodejs/node/commit/1391d3b9ff)] - **deps**: add minimatch as a dependency (Moshe Atlow) [#&#8203;47499](https://github.com/nodejs/node/pull/47499) - \[[`315454350d`](https://github.com/nodejs/node/commit/315454350d)] - **deps**: update ada to 2.1.0 (Node.js GitHub Bot) [#&#8203;47598](https://github.com/nodejs/node/pull/47598) - \[[`7f7735cad9`](https://github.com/nodejs/node/commit/7f7735cad9)] - **deps**: update ICU to 73.1 release (Steven R. Loomis) [#&#8203;47456](https://github.com/nodejs/node/pull/47456) - \[[`13105c12b7`](https://github.com/nodejs/node/commit/13105c12b7)] - **deps**: patch V8 to 11.3.244.8 (Michaël Zasso) [#&#8203;47536](https://github.com/nodejs/node/pull/47536) - \[[`ede69d272a`](https://github.com/nodejs/node/commit/ede69d272a)] - **deps**: update undici to 5.21.2 (Node.js GitHub Bot) [#&#8203;47508](https://github.com/nodejs/node/pull/47508) - \[[`64b5a5f872`](https://github.com/nodejs/node/commit/64b5a5f872)] - **deps**: update simdutf to 3.2.8 (Node.js GitHub Bot) [#&#8203;47507](https://github.com/nodejs/node/pull/47507) - \[[`2664536796`](https://github.com/nodejs/node/commit/2664536796)] - **deps**: V8: cherry-pick [`8e10685`](https://github.com/nodejs/node/commit/8e10685ff918) (Jiawen Geng) [#&#8203;47440](https://github.com/nodejs/node/pull/47440) - \[[`ba9ec91f0e`](https://github.com/nodejs/node/commit/ba9ec91f0e)] - **deps**: update undici to 5.21.1 (Node.js GitHub Bot) [#&#8203;47488](https://github.com/nodejs/node/pull/47488) - \[[`ce8820e292`](https://github.com/nodejs/node/commit/ce8820e292)] - **(SEMVER-MINOR)** **dns**: expose getDefaultResultOrder (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973) - \[[`4c26e28c33`](https://github.com/nodejs/node/commit/4c26e28c33)] - **doc**: create maintaining folder for deps (Marco Ippolito) [#&#8203;47589](https://github.com/nodejs/node/pull/47589) - \[[`aa0ef3eabd`](https://github.com/nodejs/node/commit/aa0ef3eabd)] - **doc**: fix --allow-\* CLI flag references (Tobias Nießen) [#&#8203;47804](https://github.com/nodejs/node/pull/47804) - \[[`98603b6fd3`](https://github.com/nodejs/node/commit/98603b6fd3)] - **doc**: clarify fs permissions only affect fs module (Tobias Nießen) [#&#8203;47782](https://github.com/nodejs/node/pull/47782) - \[[`3befe5dac9`](https://github.com/nodejs/node/commit/3befe5dac9)] - **doc**: add copy node executable guide on windows (XLor) [#&#8203;47781](https://github.com/nodejs/node/pull/47781) - \[[`98450d9892`](https://github.com/nodejs/node/commit/98450d9892)] - **doc**: remove MoLow from Triagers (Moshe Atlow) [#&#8203;47792](https://github.com/nodejs/node/pull/47792) - \[[`d75036410d`](https://github.com/nodejs/node/commit/d75036410d)] - **doc**: fix typo in webstreams.md (Christian Takle) [#&#8203;47766](https://github.com/nodejs/node/pull/47766) - \[[`ceba37a74f`](https://github.com/nodejs/node/commit/ceba37a74f)] - **doc**: move BethGriggs to regular member (Rich Trott) [#&#8203;47776](https://github.com/nodejs/node/pull/47776) - \[[`b954ea9781`](https://github.com/nodejs/node/commit/b954ea9781)] - **doc**: mark signing the binary is macOS and Windows only in SEA (Xuguang Mei) [#&#8203;47722](https://github.com/nodejs/node/pull/47722) - \[[`26bccbcd10`](https://github.com/nodejs/node/commit/26bccbcd10)] - **doc**: move addaleax to TSC emeriti (Anna Henningsen) [#&#8203;47752](https://github.com/nodejs/node/pull/47752) - \[[`20b0de242f`](https://github.com/nodejs/node/commit/20b0de242f)] - **doc**: add link to news for Node.js core (Michael Dawson) [#&#8203;47704](https://github.com/nodejs/node/pull/47704) - \[[`5709133dc7`](https://github.com/nodejs/node/commit/5709133dc7)] - **doc**: fix a typo in `permissions.md` (Daeyeon Jeong) [#&#8203;47730](https://github.com/nodejs/node/pull/47730) - \[[`c5c40a89f2`](https://github.com/nodejs/node/commit/c5c40a89f2)] - **doc**: async_hooks asynchronous content example add mjs code (btea) [#&#8203;47401](https://github.com/nodejs/node/pull/47401) - \[[`a1403a8df2`](https://github.com/nodejs/node/commit/a1403a8df2)] - **doc**: clarify concurrency model of test runner (Tobias Nießen) [#&#8203;47642](https://github.com/nodejs/node/pull/47642) - \[[`c0c23fbe42`](https://github.com/nodejs/node/commit/c0c23fbe42)] - **doc**: fix a typo in `fs.openAsBlob` (Daeyeon Jeong) [#&#8203;47693](https://github.com/nodejs/node/pull/47693) - \[[`4cef98812d`](https://github.com/nodejs/node/commit/4cef98812d)] - **doc**: fix typos (Mohammed Keyvanzadeh) [#&#8203;47685](https://github.com/nodejs/node/pull/47685) - \[[`f30ef242ef`](https://github.com/nodejs/node/commit/f30ef242ef)] - **doc**: fix capitalization of ASan (Mohammed Keyvanzadeh) [#&#8203;47676](https://github.com/nodejs/node/pull/47676) - \[[`78a3503406`](https://github.com/nodejs/node/commit/78a3503406)] - **doc**: fix typos in SECURITY.md (Mohammed Keyvanzadeh) [#&#8203;47677](https://github.com/nodejs/node/pull/47677) - \[[`9101630e05`](https://github.com/nodejs/node/commit/9101630e05)] - **doc**: update error code of buffer (Deokjin Kim) [#&#8203;47617](https://github.com/nodejs/node/pull/47617) - \[[`183f0c3e79`](https://github.com/nodejs/node/commit/183f0c3e79)] - **doc**: change offset of example in `Buffer.copyBytesFrom` (Deokjin Kim) [#&#8203;47606](https://github.com/nodejs/node/pull/47606) - \[[`d11ff4bc53`](https://github.com/nodejs/node/commit/d11ff4bc53)] - **doc**: improve fs permissions description (Tobias Nießen) [#&#8203;47596](https://github.com/nodejs/node/pull/47596) - \[[`b58920c3a9`](https://github.com/nodejs/node/commit/b58920c3a9)] - **doc**: remove markdown link from heading (Tobias Nießen) [#&#8203;47585](https://github.com/nodejs/node/pull/47585) - \[[`c36634e880`](https://github.com/nodejs/node/commit/c36634e880)] - **doc**: fix history ordering of `WASI` constructor (Antoine du Hamel) [#&#8203;47611](https://github.com/nodejs/node/pull/47611) - \[[`d3fadd889d`](https://github.com/nodejs/node/commit/d3fadd889d)] - **doc**: fix release-post script location (Rafael Gonzaga) [#&#8203;47517](https://github.com/nodejs/node/pull/47517) - \[[`2a0bbe7883`](https://github.com/nodejs/node/commit/2a0bbe7883)] - **doc**: fix typo in webcrypto metadata (Tobias Nießen) [#&#8203;47595](https://github.com/nodejs/node/pull/47595) - \[[`b0b16ee9f6`](https://github.com/nodejs/node/commit/b0b16ee9f6)] - **doc**: add link for news from uvwasi team (Michael Dawson) [#&#8203;47531](https://github.com/nodejs/node/pull/47531) - \[[`7ca416af15`](https://github.com/nodejs/node/commit/7ca416af15)] - **doc**: add missing setEncoding call in ESM example (Anna Henningsen) [#&#8203;47558](https://github.com/nodejs/node/pull/47558) - \[[`f9abd59b41`](https://github.com/nodejs/node/commit/f9abd59b41)] - **doc**: update darwin-x64 toolchain used for Node.js 20 releases (Michaël Zasso) [#&#8203;47546](https://github.com/nodejs/node/pull/47546) - \[[`0dc508070f`](https://github.com/nodejs/node/commit/0dc508070f)] - **doc**: fix split infinitive in Hooks caveat (Jacob Smith) [#&#8203;47550](https://github.com/nodejs/node/pull/47550) - \[[`4046280475`](https://github.com/nodejs/node/commit/4046280475)] - **doc**: fix typo in util.types.isNativeError() (Julian Dax) [#&#8203;47532](https://github.com/nodejs/node/pull/47532) - \[[`9d30f469aa`](https://github.com/nodejs/node/commit/9d30f469aa)] - **doc**: add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510) - \[[`537c17ec48`](https://github.com/nodejs/node/commit/537c17ec48)] - **doc**: create maintaining-brotli.md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380) - \[[`09ff9eafd9`](https://github.com/nodejs/node/commit/09ff9eafd9)] - **doc,fs**: update description of fs.stat() method (Mert Can Altın) [#&#8203;47654](https://github.com/nodejs/node/pull/47654) - \[[`185d6090cd`](https://github.com/nodejs/node/commit/185d6090cd)] - **doc,test**: fix concurrency option of test() (Tobias Nießen) [#&#8203;47734](https://github.com/nodejs/node/pull/47734) - \[[`a793cf401d`](https://github.com/nodejs/node/commit/a793cf401d)] - **esm**: rename `URLCanParse` to be consistent (Antoine du Hamel) [#&#8203;47668](https://github.com/nodejs/node/pull/47668) - \[[`fbb6b72f87`](https://github.com/nodejs/node/commit/fbb6b72f87)] - **esm**: remove support for deprecated hooks (Antoine du Hamel) [#&#8203;47580](https://github.com/nodejs/node/pull/47580) - \[[`c150976c4f`](https://github.com/nodejs/node/commit/c150976c4f)] - **esm**: initialize `import.meta` on eval (Antoine du Hamel) [#&#8203;47551](https://github.com/nodejs/node/pull/47551) - \[[`55f70f6395`](https://github.com/nodejs/node/commit/55f70f6395)] - **esm**: propagate `process.exit` from the loader thread to the main thread (Antoine du Hamel) [#&#8203;47548](https://github.com/nodejs/node/pull/47548) - \[[`269482f61f`](https://github.com/nodejs/node/commit/269482f61f)] - **esm**: avoid accessing lazy getters for urls (Yagiz Nizipli) [#&#8203;47542](https://github.com/nodejs/node/pull/47542) - \[[`889add68e5`](https://github.com/nodejs/node/commit/889add68e5)] - **esm**: avoid try/catch when validating urls (Yagiz Nizipli) [#&#8203;47541](https://github.com/nodejs/node/pull/47541) - \[[`439ea47a77`](https://github.com/nodejs/node/commit/439ea47a77)] - **(SEMVER-MINOR)** **fs**: add recursive option to readdir and opendir (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439) - \[[`a54e898dc8`](https://github.com/nodejs/node/commit/a54e898dc8)] - **(SEMVER-MINOR)** **fs**: add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084) - \[[`96f93cc500`](https://github.com/nodejs/node/commit/96f93cc500)] - **(SEMVER-MINOR)** **http**: remove internal error in assignSocket (Matteo Collina) [#&#8203;47723](https://github.com/nodejs/node/pull/47723) - \[[`4fa773964b`](https://github.com/nodejs/node/commit/4fa773964b)] - **(SEMVER-MINOR)** **http**: add highWaterMark opt in http.createServer (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405) - \[[`94a5abb1e0`](https://github.com/nodejs/node/commit/94a5abb1e0)] - **inspector**: add tips for Session (theanarkh) [#&#8203;47195](https://github.com/nodejs/node/pull/47195) - \[[`21ff33127a`](https://github.com/nodejs/node/commit/21ff33127a)] - **lib**: improve esm resolve performance (Yagiz Nizipli) [#&#8203;46652](https://github.com/nodejs/node/pull/46652) - \[[`b8bdaf86c4`](https://github.com/nodejs/node/commit/b8bdaf86c4)] - **lib**: disallow file-backed blob cloning (James M Snell) [#&#8203;47574](https://github.com/nodejs/node/pull/47574) - \[[`e8bc03b372`](https://github.com/nodejs/node/commit/e8bc03b372)] - **lib**: use webidl DOMString converter in EventTarget (Matthew Aitken) [#&#8203;47514](https://github.com/nodejs/node/pull/47514) - \[[`91e4a7cdee`](https://github.com/nodejs/node/commit/91e4a7cdee)] - **loader**: use default loader as cascaded loader in the in loader worker (Joyee Cheung) [#&#8203;47620](https://github.com/nodejs/node/pull/47620) - \[[`d5089fe00a`](https://github.com/nodejs/node/commit/d5089fe00a)] - **meta**: fix dependabot commit message (Mestery) [#&#8203;47810](https://github.com/nodejs/node/pull/47810) - \[[`92794400ce`](https://github.com/nodejs/node/commit/92794400ce)] - **meta**: ping nodejs/startup for startup test changes (Joyee Cheung) [#&#8203;47771](https://github.com/nodejs/node/pull/47771) - \[[`8d43689077`](https://github.com/nodejs/node/commit/8d43689077)] - **meta**: add mailmap entry for KhafraDev (Rich Trott) [#&#8203;47512](https://github.com/nodejs/node/pull/47512) - \[[`4d02901935`](https://github.com/nodejs/node/commit/4d02901935)] - **node-api**: test passing NULL to napi_define_class (Gabriel Schulhof) [#&#8203;47567](https://github.com/nodejs/node/pull/47567) - \[[`568256dca0`](https://github.com/nodejs/node/commit/568256dca0)] - **node-api**: test passing NULL to number APIs (Gabriel Schulhof) [#&#8203;47549](https://github.com/nodejs/node/pull/47549) - \[[`12f0fa386d`](https://github.com/nodejs/node/commit/12f0fa386d)] - **node-api**: remove unused mark_arraybuffer_as_untransferable (Chengzhong Wu) [#&#8203;47557](https://github.com/nodejs/node/pull/47557) - \[[`e8ea83416a`](https://github.com/nodejs/node/commit/e8ea83416a)] - **quic**: add more QUIC implementation (James M Snell) [#&#8203;47494](https://github.com/nodejs/node/pull/47494) - \[[`af227b159d`](https://github.com/nodejs/node/commit/af227b159d)] - **readline**: fix issue with newline-less last line (Ian Harris) [#&#8203;47317](https://github.com/nodejs/node/pull/47317) - \[[`e948bec969`](https://github.com/nodejs/node/commit/e948bec969)] - **src**: avoid copying string in fs_permission (Yagiz Nizipli) [#&#8203;47746](https://github.com/nodejs/node/pull/47746) - \[[`dc43ce7706`](https://github.com/nodejs/node/commit/dc43ce7706)] - **src**: replace idna functions with ada::idna (Yagiz Nizipli) [#&#8203;47735](https://github.com/nodejs/node/pull/47735) - \[[`1f9e7ce7e8`](https://github.com/nodejs/node/commit/1f9e7ce7e8)] - **src**: fix typo in comment in quic/sessionticket.cc (Tobias Nießen) [#&#8203;47754](https://github.com/nodejs/node/pull/47754) - \[[`2acb57b777`](https://github.com/nodejs/node/commit/2acb57b777)] - **src**: mark fatal error functions as noreturn (Chengzhong Wu) [#&#8203;47695](https://github.com/nodejs/node/pull/47695) - \[[`4431df7481`](https://github.com/nodejs/node/commit/4431df7481)] - **src**: split BlobSerializer/BlobDeserializer (Joyee Cheung) [#&#8203;47458](https://github.com/nodejs/node/pull/47458) - \[[`bf9a52cb3d`](https://github.com/nodejs/node/commit/bf9a52cb3d)] - **src**: prevent changing FunctionTemplateInfo after publish (Shelley Vohr) [#&#8203;46979](https://github.com/nodejs/node/pull/46979) - \[[`872e6706ca`](https://github.com/nodejs/node/commit/872e6706ca)] - **src**: add v8 fast api for url canParse (Matthew Aitken) [#&#8203;47552](https://github.com/nodejs/node/pull/47552) - \[[`cfafe431f2`](https://github.com/nodejs/node/commit/cfafe431f2)] - **src**: make AliasedBuffers in the binding data weak (Joyee Cheung) [#&#8203;47354](https://github.com/nodejs/node/pull/47354) - \[[`cf48db0034`](https://github.com/nodejs/node/commit/cf48db0034)] - **src**: use v8::Boolean(b) over b ? True() : False() (Tobias Nießen) [#&#8203;47554](https://github.com/nodejs/node/pull/47554) - \[[`ba255eda37`](https://github.com/nodejs/node/commit/ba255eda37)] - **src**: fix typo in process.env accessor error message (Moritz Raho) [#&#8203;47014](https://github.com/nodejs/node/pull/47014) - \[[`daf0c78232`](https://github.com/nodejs/node/commit/daf0c78232)] - **src**: replace static const string_view by static constexpr (Daniel Lemire) [#&#8203;47524](https://github.com/nodejs/node/pull/47524) - \[[`57e7ed7f47`](https://github.com/nodejs/node/commit/57e7ed7f47)] - **src**: fix CSPRNG when length exceeds INT_MAX (Tobias Nießen) [#&#8203;47515](https://github.com/nodejs/node/pull/47515) - \[[`cda36bfd8f`](https://github.com/nodejs/node/commit/cda36bfd8f)] - **src**: use correct variable in node_builtins.cc (Michaël Zasso) [#&#8203;47343](https://github.com/nodejs/node/pull/47343) - \[[`adc1601ccd`](https://github.com/nodejs/node/commit/adc1601ccd)] - **src**: slim down stream_base-inl.h (lilsweetcaligula) [#&#8203;46972](https://github.com/nodejs/node/pull/46972) - \[[`f88132f1b8`](https://github.com/nodejs/node/commit/f88132f1b8)] - **stream**: prevent pipeline hang with generator functions (Debadree Chatterjee) [#&#8203;47712](https://github.com/nodejs/node/pull/47712) - \[[`2b411f4b42`](https://github.com/nodejs/node/commit/2b411f4b42)] - **(SEMVER-MINOR)** **stream**: preserve object mode in compose (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413) - \[[`159cf02920`](https://github.com/nodejs/node/commit/159cf02920)] - **test**: refactor to use `getEventListeners` in timers (Deokjin Kim) [#&#8203;47759](https://github.com/nodejs/node/pull/47759) - \[[`97a3d39b8f`](https://github.com/nodejs/node/commit/97a3d39b8f)] - **test**: add and use tmpdir.hasEnoughSpace() (Tobias Nießen) [#&#8203;47767](https://github.com/nodejs/node/pull/47767) - \[[`5bb7b26bb5`](https://github.com/nodejs/node/commit/5bb7b26bb5)] - **test**: remove spaces from test runner test names (Tobias Nießen) [#&#8203;47733](https://github.com/nodejs/node/pull/47733) - \[[`84fa9fd725`](https://github.com/nodejs/node/commit/84fa9fd725)] - **test**: refactor WPTRunner and enable parallel WPT execution (Filip Skokan) [#&#8203;47635](https://github.com/nodejs/node/pull/47635) - \[[`9d3768eb01`](https://github.com/nodejs/node/commit/9d3768eb01)] - ***Revert*** "**test**: run WPT files in parallel again" (Filip Skokan) [#&#8203;47627](https://github.com/nodejs/node/pull/47627) - \[[`826f4041d1`](https://github.com/nodejs/node/commit/826f4041d1)] - **test**: mark test-cluster-primary-error flaky on asan (Yagiz Nizipli) [#&#8203;47422](https://github.com/nodejs/node/pull/47422) - \[[`e5251e31eb`](https://github.com/nodejs/node/commit/e5251e31eb)] - **test_runner**: fix --require with --experimental-loader (Moshe Atlow) [#&#8203;47751](https://github.com/nodejs/node/pull/47751) - \[[`6ee5e42c73`](https://github.com/nodejs/node/commit/6ee5e42c73)] - **(SEMVER-MINOR)** **test_runner**: support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686) - \[[`f8581e7629`](https://github.com/nodejs/node/commit/f8581e7629)] - **test_runner**: remove no-op validation (Colin Ihrig) [#&#8203;47687](https://github.com/nodejs/node/pull/47687) - \[[`40b38797c5`](https://github.com/nodejs/node/commit/40b38797c5)] - **test_runner**: fix test runner concurrency (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675) - \[[`2d7cac0c5b`](https://github.com/nodejs/node/commit/2d7cac0c5b)] - **test_runner**: fix test counting (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675) - \[[`5a9b71a52e`](https://github.com/nodejs/node/commit/5a9b71a52e)] - **test_runner**: fix nested hooks (Moshe Atlow) [#&#8203;47648](https://github.com/nodejs/node/pull/47648) - \[[`5327483f31`](https://github.com/nodejs/node/commit/5327483f31)] - **(SEMVER-MINOR)** **test_runner**: add testNamePatterns to run api (Chemi Atlow) [#&#8203;47628](https://github.com/nodejs/node/pull/47628) - \[[`b6fb7914ca`](https://github.com/nodejs/node/commit/b6fb7914ca)] - **test_runner**: support coverage of unnamed functions (Colin Ihrig) [#&#8203;47652](https://github.com/nodejs/node/pull/47652) - \[[`1f120a396f`](https://github.com/nodejs/node/commit/1f120a396f)] - **test_runner**: move coverage collection to root.postRun() (Colin Ihrig) [#&#8203;47651](https://github.com/nodejs/node/pull/47651) - \[[`bdd02a467d`](https://github.com/nodejs/node/commit/bdd02a467d)] - **(SEMVER-MINOR)** **test_runner**: execute before hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586) - \[[`ec24abaa03`](https://github.com/nodejs/node/commit/ec24abaa03)] - **test_runner**: avoid reporting parents of failing tests in summary (Moshe Atlow) [#&#8203;47579](https://github.com/nodejs/node/pull/47579) - \[[`4203057740`](https://github.com/nodejs/node/commit/4203057740)] - **test_runner**: fix spec skip detection (Moshe Atlow) [#&#8203;47537](https://github.com/nodejs/node/pull/47537) - \[[`57c69987ba`](https://github.com/nodejs/node/commit/57c69987ba)] - **tls**: accept SecureContext object in server.addContext() (HinataKah0) [#&#8203;47570](https://github.com/nodejs/node/pull/47570) - \[[`c620eb80a0`](https://github.com/nodejs/node/commit/c620eb80a0)] - **tools**: update doc to highlight.js@11.8.0 (Node.js GitHub Bot) [#&#8203;47786](https://github.com/nodejs/node/pull/47786) - \[[`326c3f1593`](https://github.com/nodejs/node/commit/326c3f1593)] - **tools**: add the missing LoongArch64 definition in the v8.gyp file (Sun Haiyong) [#&#8203;47641](https://github.com/nodejs/node/pull/47641) - \[[`8d1588acdc`](https://github.com/nodejs/node/commit/8d1588acdc)] - **tools**: update lint-md-dependencies to rollup@3.21.1 (Node.js GitHub Bot) [#&#8203;47787](https://github.com/nodejs/node/pull/47787) - \[[`226e5b83ee`](https://github.com/nodejs/node/commit/226e5b83ee)] - **tools**: move update-npm to dep updaters (Marco Ippolito) [#&#8203;47619](https://github.com/nodejs/node/pull/47619) - \[[`9d0bef6c0a`](https://github.com/nodejs/node/commit/9d0bef6c0a)] - **tools**: fix update-v8-patch cache (Marco Ippolito) [#&#8203;47725](https://github.com/nodejs/node/pull/47725) - \[[`63e8c95a66`](https://github.com/nodejs/node/commit/63e8c95a66)] - **tools**: automate v8 patch update (Marco Ippolito) [#&#8203;47594](https://github.com/nodejs/node/pull/47594) - \[[`d2994e52d3`](https://github.com/nodejs/node/commit/d2994e52d3)] - **tools**: fix skip message in update-cjs-module-lexer (Tobias Nießen) [#&#8203;47701](https://github.com/nodejs/node/pull/47701) - \[[`ccf9c37b43`](https://github.com/nodejs/node/commit/ccf9c37b43)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;24](https://github.com/24).1.0 (Node.js GitHub Bot) [#&#8203;47577](https://github.com/nodejs/node/pull/47577) - \[[`0887fa0464`](https://github.com/nodejs/node/commit/0887fa0464)] - **tools**: keep PR titles/description up-to-date (Tobias Nießen) [#&#8203;47621](https://github.com/nodejs/node/pull/47621) - \[[`b8927ddf16`](https://github.com/nodejs/node/commit/b8927ddf16)] - **tools**: fix updating root certificates (Richard Lau) [#&#8203;47607](https://github.com/nodejs/node/pull/47607) - \[[`87cae0cb59`](https://github.com/nodejs/node/commit/87cae0cb59)] - **tools**: update PR label config (Mohammed Keyvanzadeh) [#&#8203;47593](https://github.com/nodejs/node/pull/47593) - \[[`c17f2688b8`](https://github.com/nodejs/node/commit/c17f2688b8)] - ***Revert*** "**tools**: ensure failed daily wpt run still generates a report" (Filip Skokan) [#&#8203;47627](https://github.com/nodejs/node/pull/47627) - \[[`fbe7d73234`](https://github.com/nodejs/node/commit/fbe7d73234)] - **tools**: add execution permission to uvwasi script (Mert Can Altın) [#&#8203;47600](https://github.com/nodejs/node/pull/47600) - \[[`e3f4ff439e`](https://github.com/nodejs/node/commit/e3f4ff439e)] - **tools**: add update script for googletest (Tobias Nießen) [#&#8203;47482](https://github.com/nodejs/node/pull/47482) - \[[`7c552e650a`](https://github.com/nodejs/node/commit/7c552e650a)] - **tools**: add option to run workflow with specific tool id (Michaël Zasso) [#&#8203;47591](https://github.com/nodejs/node/pull/47591) - \[[`1509312170`](https://github.com/nodejs/node/commit/1509312170)] - **tools**: automate zlib update (Marco Ippolito) [#&#8203;47417](https://github.com/nodejs/node/pull/47417) - \[[`6af7f1ee03`](https://github.com/nodejs/node/commit/6af7f1ee03)] - **tools**: add url and whatwg-url labels automatically (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545) - \[[`ff73c05d54`](https://github.com/nodejs/node/commit/ff73c05d54)] - **tools**: add performance label to benchmark changes (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545) - \[[`9e3e0b0a84`](https://github.com/nodejs/node/commit/9e3e0b0a84)] - **tools**: automate uvwasi dependency update (Ranieri Innocenti Spada) [#&#8203;47509](https://github.com/nodejs/node/pull/47509) - \[[`233b628f22`](https://github.com/nodejs/node/commit/233b628f22)] - **tools**: add missing pinned dependencies (Mateo Nunez) [#&#8203;47346](https://github.com/nodejs/node/pull/47346) - \[[`e4d95859f5`](https://github.com/nodejs/node/commit/e4d95859f5)] - **tools**: automate ngtcp2 and nghttp3 update (Marco Ippolito) [#&#8203;47402](https://github.com/nodejs/node/pull/47402) - \[[`2e8338126b`](https://github.com/nodejs/node/commit/2e8338126b)] - **tools**: move update-undici.sh to dep_updaters and create maintain md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380) - \[[`8712eafc87`](https://github.com/nodejs/node/commit/8712eafc87)] - **typings**: fix syntax error in tsconfig (Mohammed Keyvanzadeh) [#&#8203;47584](https://github.com/nodejs/node/pull/47584) - \[[`e4b6b79f18`](https://github.com/nodejs/node/commit/e4b6b79f18)] - **url**: reduce revokeObjectURL cpp calls (Yagiz Nizipli) [#&#8203;47728](https://github.com/nodejs/node/pull/47728) - \[[`9aae76727f`](https://github.com/nodejs/node/commit/9aae76727f)] - **url**: handle URL.canParse without base parameter (Yagiz Nizipli) [#&#8203;47547](https://github.com/nodejs/node/pull/47547) - \[[`180d365439`](https://github.com/nodejs/node/commit/180d365439)] - **url**: validate URL constructor arg length (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513) - \[[`4839fc4369`](https://github.com/nodejs/node/commit/4839fc4369)] - **url**: validate argument length in canParse (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513) - \[[`606523d37e`](https://github.com/nodejs/node/commit/606523d37e)] - **v8**: fix ERR_NOT_BUILDING_SNAPSHOT is not a constructor (Chengzhong Wu) [#&#8203;47721](https://github.com/nodejs/node/pull/47721) - \[[`75c1d1b66e`](https://github.com/nodejs/node/commit/75c1d1b66e)] - **(SEMVER-MINOR)** **wasi**: make returnOnExit true by default (Michael Dawson) [#&#8203;47390](https://github.com/nodejs/node/pull/47390) ### [`v20.0.0`](https://github.com/nodejs/node/releases/tag/v20.0.0): 2023-04-18, Version 20.0.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.9.0...v20.0.0) We're excited to announce the release of Node.js 20! Highlights include the new Node.js Permission Model, a synchronous `import.meta.resolve`, a stable test_runner, updates of the V8 JavaScript engine to 11.3, Ada to 2.0, and more! As a reminder, Node.js 20 will enter long-term support (LTS) in October, but until then, it will be the "Current" release for the next six months. We encourage you to explore the new features and benefits offered by this latest release and evaluate their potential impact on your applications. ##### Notable Changes ##### Permission Model Node.js now has an experimental feature called the Permission Model. It allows developers to restrict access to specific resources during program execution, such as file system operations, child process spawning, and worker thread creation. The API exists behind a flag `--experimental-permission` which when enabled will restrict access to all available permissions. By using this feature, developers can prevent their applications from accessing or modifying sensitive data or running potentially harmful code. More information about the Permission Model can be found in the [Node.js documentation](https://nodejs.org/api/permissions.html#process-based-permissions). The Permission Model was a contribution by Rafael Gonzaga in [#&#8203;44004](https://github.com/nodejs/node/pull/44004). ##### Custom ESM loader hooks run on dedicated thread ESM hooks supplied via loaders (`--experimental-loader=foo.mjs`) now run in a dedicated thread, isolated from the main thread. This provides a separate scope for loaders and ensures no cross-contamination between loaders and application code. **Synchronous `import.meta.resolve()`** In alignment with browser behavior, this function now returns synchronously. Despite this, user loader `resolve` hooks can still be defined as async functions (or as sync functions, if the author prefers). Even when there are async `resolve` hooks loaded, `import.meta.resolve` will still return synchronously for application code. Contributed by Anna Henningsen, Antoine du Hamel, Geoffrey Booth, Guy Bedford, Jacob Smith, and Michaël Zasso in [#&#8203;44710](https://github.com/nodejs/node/pull/44710) ##### V8 11.3 The V8 engine is updated to version 11.3, which is part of Chromium 113. This version includes three new features to the JavaScript API: - [String.prototype.isWellFormed and toWellFormed](https://chromestatus.com/feature/5200195346759680) - [Methods that change Array and TypedArray by copy](https://chromestatus.com/feature/5068609911521280) - [Resizable ArrayBuffer and growable SharedArrayBuffer](https://chromestatus.com/feature/4668361878274048) - [RegExp v flag with set notation + properties of strings](https://chromestatus.com/feature/5144156542861312) - [WebAssembly Tail Call](https://chromestatus.com/feature/5423405012615168) The V8 update was a contribution by Michaël Zasso in [#&#8203;47251](https://github.com/nodejs/node/pull/47251). ##### Stable Test Runner The recent update to Node.js, version 20, includes an important change to the test_runner module. The module has been marked as stable after a recent update. Previously, the test_runner module was experimental, but this change marks it as a stable module that is ready for production use. Contributed by Colin Ihrig in [#&#8203;46983](https://github.com/nodejs/node/pull/46983) ##### Ada 2.0 Node.js v20 comes with the latest version of the URL parser, Ada. This update brings significant performance improvements to URL parsing, including enhancements to the `url.domainToASCII` and `url.domainToUnicode` functions in `node:url`. Ada 2.0 has been integrated into the Node.js codebase, ensuring that all parts of the application can benefit from the improved performance. Additionally, Ada 2.0 features a significant performance boost over its predecessor, Ada 1.0.4, while also eliminating the need for the ICU requirement for URL hostname parsing. Contributed by Yagiz Nizipli and Daniel Lemire in [#&#8203;47339](https://github.com/nodejs/node/pull/47339) ##### Preparing single executable apps now requires injecting a Blob Building a single executable app now requires injecting a blob prepared by Node.js from a JSON config instead of injecting the raw JS file. This opens up the possibility of embedding multiple co-existing resources into the SEA (Single Executable Apps). Contributed by Joyee Cheung in [#&#8203;47125](https://github.com/nodejs/node/pull/47125) ##### Web Crypto API Web Crypto API functions' arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations. This further improves interoperability with other implementations of Web Crypto API. This change was made by Filip Skokan in [#&#8203;46067](https://github.com/nodejs/node/pull/46067). ##### Official support for ARM64 Windows Node.js now includes binaries for ARM64 Windows, allowing for native execution on the platform. The MSI, zip/7z packages, and executable are available from the Node.js download site along with all other platforms. The CI system was updated and all changes are now fully tested on ARM64 Windows, to prevent regressions and ensure compatibility. ARM64 Windows was upgraded to tier 2 support by Stefan Stojanovic in [#&#8203;47233](https://github.com/nodejs/node/pull/47233). ##### WASI version must now be specified When `new WASI()` is called, the version option is now required and has no default value. Any code that relied on the default for the version will need to be updated to request a specific version. This change was made by Michael Dawson in [#&#8203;47391](https://github.com/nodejs/node/pull/47391). ##### Deprecations and Removals - \[[`3bed5f11e0`](https://github.com/nodejs/node/commit/3bed5f11e0)] - **(SEMVER-MAJOR)** **url**: runtime-deprecate url.parse() with invalid ports (Rich Trott) [#&#8203;45526](https://github.com/nodejs/node/pull/45526) `url.parse()` accepts URLs with ports that are not numbers. This behavior might result in host name spoofing with unexpected input. These URLs will throw an error in future versions of Node.js, as the WHATWG URL API does already. Starting with Node.js 20, these URLS cause `url.parse()` to emit a warning. ##### Semver-Major Commits - \[[`9fafb0a090`](https://github.com/nodejs/node/commit/9fafb0a090)] - **(SEMVER-MAJOR)** **async_hooks**: deprecate the AsyncResource.bind asyncResource property (James M Snell) [#&#8203;46432](https://github.com/nodejs/node/pull/46432) - \[[`1948d37595`](https://github.com/nodejs/node/commit/1948d37595)] - **(SEMVER-MAJOR)** **buffer**: check INSPECT_MAX_BYTES with validateNumber (Umuoy) [#&#8203;46599](https://github.com/nodejs/node/pull/46599) - \[[`7bc0e6a4e7`](https://github.com/nodejs/node/commit/7bc0e6a4e7)] - **(SEMVER-MAJOR)** **buffer**: graduate File from experimental and expose as global (Khafra) [#&#8203;47153](https://github.com/nodejs/node/pull/47153) - \[[`671ffd7825`](https://github.com/nodejs/node/commit/671ffd7825)] - **(SEMVER-MAJOR)** **buffer**: use min/max of `validateNumber` (Deokjin Kim) [#&#8203;45796](https://github.com/nodejs/node/pull/45796) - \[[`ab1614d280`](https://github.com/nodejs/node/commit/ab1614d280)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`c1bcdbcf79`](https://github.com/nodejs/node/commit/c1bcdbcf79)] - **(SEMVER-MAJOR)** **build**: warn for gcc versions earlier than 10.1 (Richard Lau) [#&#8203;46806](https://github.com/nodejs/node/pull/46806) - \[[`649f68fc1e`](https://github.com/nodejs/node/commit/649f68fc1e)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`9374700d7a`](https://github.com/nodejs/node/commit/9374700d7a)] - **(SEMVER-MAJOR)** **crypto**: remove DEFAULT_ENCODING (Tobias Nießen) [#&#8203;47182](https://github.com/nodejs/node/pull/47182) - \[[`1640aeb680`](https://github.com/nodejs/node/commit/1640aeb680)] - **(SEMVER-MAJOR)** **crypto**: remove obsolete SSL_OP_\* constants (Tobias Nießen) [#&#8203;47073](https://github.com/nodejs/node/pull/47073) - \[[`c2e4b1fa9a`](https://github.com/nodejs/node/commit/c2e4b1fa9a)] - **(SEMVER-MAJOR)** **crypto**: remove ALPN_ENABLED (Tobias Nießen) [#&#8203;47028](https://github.com/nodejs/node/pull/47028) - \[[`3ef38c4bd7`](https://github.com/nodejs/node/commit/3ef38c4bd7)] - **(SEMVER-MAJOR)** **crypto**: use WebIDL converters in WebCryptoAPI (Filip Skokan) [#&#8203;46067](https://github.com/nodejs/node/pull/46067) - \[[`08af023b1f`](https://github.com/nodejs/node/commit/08af023b1f)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate replaced rsa-pss keygen parameters (Filip Skokan) [#&#8203;45653](https://github.com/nodejs/node/pull/45653) - \[[`7eb0ac3cb6`](https://github.com/nodejs/node/commit/7eb0ac3cb6)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation on win-arm64 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`a7c129f286`](https://github.com/nodejs/node/commit/a7c129f286)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`6f5655a18e`](https://github.com/nodejs/node/commit/6f5655a18e)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`f226350fcb`](https://github.com/nodejs/node/commit/f226350fcb)] - **(SEMVER-MAJOR)** **deps**: update V8 to 11.3.244.4 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`d6dae7420e`](https://github.com/nodejs/node/commit/d6dae7420e)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`f1c888e`](https://github.com/nodejs/node/commit/f1c888e7093e) (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`56c436533e`](https://github.com/nodejs/node/commit/56c436533e)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`51ab98c71b`](https://github.com/nodejs/node/commit/51ab98c71b)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`9f84d3eea8`](https://github.com/nodejs/node/commit/9f84d3eea8)] - **(SEMVER-MAJOR)** **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`f2318cd4b5`](https://github.com/nodejs/node/commit/f2318cd4b5)] - **(SEMVER-MAJOR)** **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`16e03e7968`](https://github.com/nodejs/node/commit/16e03e7968)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.9.194.4 (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`6473f5e7f7`](https://github.com/nodejs/node/commit/6473f5e7f7)] - **(SEMVER-MAJOR)** **doc**: update toolchains used for Node.js 20 releases (Richard Lau) [#&#8203;47352](https://github.com/nodejs/node/pull/47352) - \[[`cc18fd9608`](https://github.com/nodejs/node/commit/cc18fd9608)] - **(SEMVER-MAJOR)** **events**: refactor to use `validateNumber` (Deokjin Kim) [#&#8203;45770](https://github.com/nodejs/node/pull/45770) - \[[`ff92b40ffc`](https://github.com/nodejs/node/commit/ff92b40ffc)] - **(SEMVER-MAJOR)** **http**: close the connection after sending a body without declared length (Tim Perry) [#&#8203;46333](https://github.com/nodejs/node/pull/46333) - \[[`2a29df6464`](https://github.com/nodejs/node/commit/2a29df6464)] - **(SEMVER-MAJOR)** **http**: keep HTTP/1.1 conns alive even if the Connection header is removed (Tim Perry) [#&#8203;46331](https://github.com/nodejs/node/pull/46331) - \[[`391dc74a10`](https://github.com/nodejs/node/commit/391dc74a10)] - **(SEMVER-MAJOR)** **http**: throw error if options of http.Server is array (Deokjin Kim) [#&#8203;46283](https://github.com/nodejs/node/pull/46283) - \[[`ed3604cd64`](https://github.com/nodejs/node/commit/ed3604cd64)] - **(SEMVER-MAJOR)** **http**: server check Host header, to meet RFC 7230 5.4 requirement (wwwzbwcom) [#&#8203;45597](https://github.com/nodejs/node/pull/45597) - \[[`88d71dc301`](https://github.com/nodejs/node/commit/88d71dc301)] - **(SEMVER-MAJOR)** **lib**: refactor to use min/max of `validateNumber` (Deokjin Kim) [#&#8203;45772](https://github.com/nodejs/node/pull/45772) - \[[`e4d641f02a`](https://github.com/nodejs/node/commit/e4d641f02a)] - **(SEMVER-MAJOR)** **lib**: refactor to use validators in http2 (Debadree Chatterjee) [#&#8203;46174](https://github.com/nodejs/node/pull/46174) - \[[`0f3e531096`](https://github.com/nodejs/node/commit/0f3e531096)] - **(SEMVER-MAJOR)** **lib**: performance improvement on readline async iterator (Thiago Oliveira Santos) [#&#8203;41276](https://github.com/nodejs/node/pull/41276) - \[[`5b5898ac86`](https://github.com/nodejs/node/commit/5b5898ac86)] - **(SEMVER-MAJOR)** **lib,src**: update exit codes as per todos (Debadree Chatterjee) [#&#8203;45841](https://github.com/nodejs/node/pull/45841) - \[[`55321bafd1`](https://github.com/nodejs/node/commit/55321bafd1)] - **(SEMVER-MAJOR)** **net**: enable autoSelectFamily by default (Paolo Insogna) [#&#8203;46790](https://github.com/nodejs/node/pull/46790) - \[[`2d0d99733b`](https://github.com/nodejs/node/commit/2d0d99733b)] - **(SEMVER-MAJOR)** **process**: remove `process.exit()`, `process.exitCode` coercion to integer (Daeyeon Jeong) [#&#8203;43716](https://github.com/nodejs/node/pull/43716) - \[[`dc06df31b6`](https://github.com/nodejs/node/commit/dc06df31b6)] - **(SEMVER-MAJOR)** **readline**: refactor to use `validateNumber` (Deokjin Kim) [#&#8203;45801](https://github.com/nodejs/node/pull/45801) - \[[`295b2f3ff4`](https://github.com/nodejs/node/commit/295b2f3ff4)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 115 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`3803b028dd`](https://github.com/nodejs/node/commit/3803b028dd)] - **(SEMVER-MAJOR)** **src**: share common code paths for SEA and embedder script (Anna Henningsen) [#&#8203;46825](https://github.com/nodejs/node/pull/46825) - \[[`e8bddac3e9`](https://github.com/nodejs/node/commit/e8bddac3e9)] - **(SEMVER-MAJOR)** **src**: apply ABI-breaking API simplifications (Anna Henningsen) [#&#8203;46705](https://github.com/nodejs/node/pull/46705) - \[[`f84de0ad4c`](https://github.com/nodejs/node/commit/f84de0ad4c)] - **(SEMVER-MAJOR)** **src**: use uint32\_t for process initialization flags enum (Anna Henningsen) [#&#8203;46427](https://github.com/nodejs/node/pull/46427) - \[[`a6242772ec`](https://github.com/nodejs/node/commit/a6242772ec)] - **(SEMVER-MAJOR)** **src**: fix ArrayBuffer::Detach deprecation (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`dd5c39a808`](https://github.com/nodejs/node/commit/dd5c39a808)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 112 (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`63eca7fec0`](https://github.com/nodejs/node/commit/63eca7fec0)] - **(SEMVER-MAJOR)** **stream**: validate readable defaultEncoding (Marco Ippolito) [#&#8203;46430](https://github.com/nodejs/node/pull/46430) - \[[`9e7093f416`](https://github.com/nodejs/node/commit/9e7093f416)] - **(SEMVER-MAJOR)** **stream**: validate writable defaultEncoding (Marco Ippolito) [#&#8203;46322](https://github.com/nodejs/node/pull/46322) - \[[`fb91ee4f26`](https://github.com/nodejs/node/commit/fb91ee4f26)] - **(SEMVER-MAJOR)** **test**: make trace-gc-flag tests less strict (Yagiz Nizipli) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`eca618071e`](https://github.com/nodejs/node/commit/eca618071e)] - **(SEMVER-MAJOR)** **test**: adapt test-v8-stats for V8 update (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`c03354d3e0`](https://github.com/nodejs/node/commit/c03354d3e0)] - **(SEMVER-MAJOR)** **test**: test case for multiple res.writeHead and res.getHeader (Marco Ippolito) [#&#8203;45508](https://github.com/nodejs/node/pull/45508) - \[[`c733cc0c7f`](https://github.com/nodejs/node/commit/c733cc0c7f)] - **(SEMVER-MAJOR)** **test_runner**: mark module as stable (Colin Ihrig) [#&#8203;46983](https://github.com/nodejs/node/pull/46983) - \[[`7ce223273d`](https://github.com/nodejs/node/commit/7ce223273d)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 11.1 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`ca4bd3023e`](https://github.com/nodejs/node/commit/ca4bd3023e)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 11.0 (Michaël Zasso) [#&#8203;47251](https://github.com/nodejs/node/pull/47251) - \[[`58b06a269a`](https://github.com/nodejs/node/commit/58b06a269a)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles (Michaël Zasso) [#&#8203;45579](https://github.com/nodejs/node/pull/45579) - \[[`027841c964`](https://github.com/nodejs/node/commit/027841c964)] - **(SEMVER-MAJOR)** **url**: use private properties for brand check (Yagiz Nizipli) [#&#8203;46904](https://github.com/nodejs/node/pull/46904) - \[[`3bed5f11e0`](https://github.com/nodejs/node/commit/3bed5f11e0)] - **(SEMVER-MAJOR)** **url**: runtime-deprecate url.parse() with invalid ports (Rich Trott) [#&#8203;45526](https://github.com/nodejs/node/pull/45526) - \[[`7c76fddf25`](https://github.com/nodejs/node/commit/7c76fddf25)] - **(SEMVER-MAJOR)** **util,doc**: mark parseArgs() as stable (Colin Ihrig) [#&#8203;46718](https://github.com/nodejs/node/pull/46718) - \[[`4b52727976`](https://github.com/nodejs/node/commit/4b52727976)] - **(SEMVER-MAJOR)** **wasi**: make version non-optional (Michael Dawson) [#&#8203;47391](https://github.com/nodejs/node/pull/47391) ##### Semver-Minor Commits - \[[`d4b440bfac`](https://github.com/nodejs/node/commit/d4b440bfac)] - **(SEMVER-MINOR)** **fs**: implement byob mode for readableWebStream() (Debadree Chatterjee) [#&#8203;46933](https://github.com/nodejs/node/pull/46933) - \[[`00c222593e`](https://github.com/nodejs/node/commit/00c222593e)] - **(SEMVER-MINOR)** **src,process**: add permission model (Rafael Gonzaga) [#&#8203;44004](https://github.com/nodejs/node/pull/44004) - \[[`978b57d750`](https://github.com/nodejs/node/commit/978b57d750)] - **(SEMVER-MINOR)** **wasi**: no longer require flag to enable wasi (Michael Dawson) [#&#8203;47286](https://github.com/nodejs/node/pull/47286) ##### Semver-Patch Commits - \[[`e50c6b9a22`](https://github.com/nodejs/node/commit/e50c6b9a22)] - **bootstrap**: do not expand process.argv\[1] for snapshot entry points (Joyee Cheung) [#&#8203;47466](https://github.com/nodejs/node/pull/47466) - \[[`c81e1143e4`](https://github.com/nodejs/node/commit/c81e1143e4)] - **bootstrap**: store internal loaders in C++ via a binding (Joyee Cheung) [#&#8203;47215](https://github.com/nodejs/node/pull/47215) - \[[`8e673bdb84`](https://github.com/nodejs/node/commit/8e673bdb84)] - **build**: add node-core-utils to setup (Jiawen Geng) [#&#8203;47442](https://github.com/nodejs/node/pull/47442) - \[[`5b561d72a6`](https://github.com/nodejs/node/commit/5b561d72a6)] - **build**: sync cares source change (Jiawen Geng) [#&#8203;47359](https://github.com/nodejs/node/pull/47359) - \[[`8e6ee53e4e`](https://github.com/nodejs/node/commit/8e6ee53e4e)] - **build**: remove non-exist build file (Jiawen Geng) [#&#8203;47361](https://github.com/nodejs/node/pull/47361) - \[[`9a4d21d1d9`](https://github.com/nodejs/node/commit/9a4d21d1d9)] - **build, deps, tools**: avoid excessive LTO (Konstantin Demin) [#&#8203;47313](https://github.com/nodejs/node/pull/47313) - \[[`48c01485cd`](https://github.com/nodejs/node/commit/48c01485cd)] - **crypto**: replace THROW with CHECK for scrypt keylen (Tobias Nießen) [#&#8203;47407](https://github.com/nodejs/node/pull/47407) - \[[`4c1a27716b`](https://github.com/nodejs/node/commit/4c1a27716b)] - **crypto**: re-add padding for AES-KW wrapped JWKs (Filip Skokan) [#&#8203;46563](https://github.com/nodejs/node/pull/46563) - \[[`b66eb15d12`](https://github.com/nodejs/node/commit/b66eb15d12)] - **deps**: update simdutf to 3.2.7 (Node.js GitHub Bot) [#&#8203;47473](https://github.com/nodejs/node/pull/47473) - \[[`3fc11477ba`](https://github.com/nodejs/node/commit/3fc11477ba)] - **deps**: update corepack to 0.17.2 (Node.js GitHub Bot) [#&#8203;47474](https://github.com/nodejs/node/pull/47474) - \[[`c1776531ab`](https://github.com/nodejs/node/commit/c1776531ab)] - **deps**: upgrade npm to 9.6.4 (npm team) [#&#8203;47432](https://github.com/nodejs/node/pull/47432) - \[[`e7ca09f310`](https://github.com/nodejs/node/commit/e7ca09f310)] - **deps**: update zlib to upstream [`5edb52d`](https://github.com/nodejs/node/commit/5edb52d4) (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151) - \[[`88387ccd12`](https://github.com/nodejs/node/commit/88387ccd12)] - **deps**: update ada to 2.0.0 (Node.js GitHub Bot) [#&#8203;47339](https://github.com/nodejs/node/pull/47339) - \[[`9f468cc37e`](https://github.com/nodejs/node/commit/9f468cc37e)] - **deps**: cherry-pick Windows ARM64 fix for openssl (Richard Lau) [#&#8203;46570](https://github.com/nodejs/node/pull/46570) - \[[`eeab210b1b`](https://github.com/nodejs/node/commit/eeab210b1b)] - **deps**: update archs files for quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46570](https://github.com/nodejs/node/pull/46570) - \[[`d93d7716c7`](https://github.com/nodejs/node/commit/d93d7716c7)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46571](https://github.com/nodejs/node/pull/46571) - \[[`0f69ec4dd7`](https://github.com/nodejs/node/commit/0f69ec4dd7)] - **deps**: patch V8 to 10.9.194.9 (Michaël Zasso) [#&#8203;45995](https://github.com/nodejs/node/pull/45995) - \[[`5890d09644`](https://github.com/nodejs/node/commit/5890d09644)] - **deps**: patch V8 to 10.9.194.6 (Michaël Zasso) [#&#8203;45748](https://github.com/nodejs/node/pull/45748) - \[[`c02a7e7e93`](https://github.com/nodejs/node/commit/c02a7e7e93)] - **diagnostics_channel**: fix ref counting bug when reaching zero subscribers (Stephen Belanger) [#&#8203;47520](https://github.com/nodejs/node/pull/47520) - \[[`c7ad5bb37d`](https://github.com/nodejs/node/commit/c7ad5bb37d)] - **doc**: info on handling unintended breaking changes (Michael Dawson) [#&#8203;47426](https://github.com/nodejs/node/pull/47426) - \[[`7d2d40ed0d`](https://github.com/nodejs/node/commit/7d2d40ed0d)] - **doc**: add performance initiative (Yagiz Nizipli) [#&#8203;47424](https://github.com/nodejs/node/pull/47424) - \[[`d56c0f7318`](https://github.com/nodejs/node/commit/d56c0f7318)] - **doc**: do not create a backup file (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151) - \[[`412d27b65b`](https://github.com/nodejs/node/commit/412d27b65b)] - **doc**: add MoLow to the TSC (Colin Ihrig) [#&#8203;47436](https://github.com/nodejs/node/pull/47436) - \[[`f131cca0c0`](https://github.com/nodejs/node/commit/f131cca0c0)] - **doc**: reserve 116 for Electron 25 (Keeley Hammond) [#&#8203;47375](https://github.com/nodejs/node/pull/47375) - \[[`1022c6f424`](https://github.com/nodejs/node/commit/1022c6f424)] - **doc**: add experimental stages (Geoffrey Booth) [#&#8203;46100](https://github.com/nodejs/node/pull/46100) - \[[`42d3d74717`](https://github.com/nodejs/node/commit/42d3d74717)] - **doc**: clarify release notes for Node.js 16.19.0 (Richard Lau) [#&#8203;45846](https://github.com/nodejs/node/pull/45846) - \[[`533c6512da`](https://github.com/nodejs/node/commit/533c6512da)] - **doc**: clarify release notes for Node.js 14.21.2 (Richard Lau) [#&#8203;45846](https://github.com/nodejs/node/pull/45846) - \[[`97165fc1a6`](https://github.com/nodejs/node/commit/97165fc1a6)] - **doc**: fix doc metadata for Node.js 16.19.0 (Richard Lau) [#&#8203;45863](https://github.com/nodejs/node/pull/45863) - \[[`a266b8b702`](https://github.com/nodejs/node/commit/a266b8b702)] - **doc**: add registry number for Electron 23 & 24 (Keeley Hammond) [#&#8203;45661](https://github.com/nodejs/node/pull/45661) - \[[`2613a9ced9`](https://github.com/nodejs/node/commit/2613a9ced9)] - **esm**: move hook execution to separate thread (Jacob Smith) [#&#8203;44710](https://github.com/nodejs/node/pull/44710) - \[[`841f6b3abf`](https://github.com/nodejs/node/commit/841f6b3abf)] - **esm**: increase test coverage of edge cases (Antoine du Hamel) [#&#8203;47033](https://github.com/nodejs/node/pull/47033) - \[[`0d575fe61a`](https://github.com/nodejs/node/commit/0d575fe61a)] - **gyp**: put filenames in variables (Cheng Zhao) [#&#8203;46965](https://github.com/nodejs/node/pull/46965) - \[[`41b186722c`](https://github.com/nodejs/node/commit/41b186722c)] - **lib**: distinguish webidl interfaces with the extended property "Exposed" (Chengzhong Wu) [#&#8203;46809](https://github.com/nodejs/node/pull/46809) - \[[`9b7db62276`](https://github.com/nodejs/node/commit/9b7db62276)] - **lib**: makeRequireFunction patch when experimental policy (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358) - \[[`d43b532789`](https://github.com/nodejs/node/commit/d43b532789)] - **lib**: refactor to use `validateBuffer` (Deokjin Kim) [#&#8203;46489](https://github.com/nodejs/node/pull/46489) - \[[`9a76a2521b`](https://github.com/nodejs/node/commit/9a76a2521b)] - **meta**: ping security-wg team on permission model changes (Rafael Gonzaga) [#&#8203;47483](https://github.com/nodejs/node/pull/47483) - \[[`a4dadde1ba`](https://github.com/nodejs/node/commit/a4dadde1ba)] - **meta**: ping startup and realm team on src/node_realm\* changes (Joyee Cheung) [#&#8203;47448](https://github.com/nodejs/node/pull/47448) - \[[`631c3ef3de`](https://github.com/nodejs/node/commit/631c3ef3de)] - **module**: do less CJS module loader initialization at run time (Joyee Cheung) [#&#8203;47194](https://github.com/nodejs/node/pull/47194) - \[[`8bcf0a42f7`](https://github.com/nodejs/node/commit/8bcf0a42f7)] - **permission**: fix chmod,chown improve fs coverage (Rafael Gonzaga) [#&#8203;47529](https://github.com/nodejs/node/pull/47529) - \[[`54d17ff4b5`](https://github.com/nodejs/node/commit/54d17ff4b5)] - **permission**: support fs.mkdtemp (Rafael Gonzaga) [#&#8203;47470](https://github.com/nodejs/node/pull/47470) - \[[`b441b5dc65`](https://github.com/nodejs/node/commit/b441b5dc65)] - **permission**: drop process.permission.deny (Rafael Gonzaga) [#&#8203;47335](https://github.com/nodejs/node/pull/47335) - \[[`aa30e16716`](https://github.com/nodejs/node/commit/aa30e16716)] - **permission**: fix some vulnerabilities in fs (Tobias Nießen) [#&#8203;47091](https://github.com/nodejs/node/pull/47091) - \[[`1726da9300`](https://github.com/nodejs/node/commit/1726da9300)] - **permission**: add path separator to loader check (Rafael Gonzaga) [#&#8203;47030](https://github.com/nodejs/node/pull/47030) - \[[`b164038c86`](https://github.com/nodejs/node/commit/b164038c86)] - **permission**: fix spawnSync permission check (RafaelGSS) [#&#8203;46975](https://github.com/nodejs/node/pull/46975) - \[[`af91400886`](https://github.com/nodejs/node/commit/af91400886)] - **policy**: makeRequireFunction on mainModule.require (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358) - \[[`f8b4e26aee`](https://github.com/nodejs/node/commit/f8b4e26aee)] - **quic**: add more QUIC impl (James M Snell) [#&#8203;47348](https://github.com/nodejs/node/pull/47348) - \[[`d65ae9f678`](https://github.com/nodejs/node/commit/d65ae9f678)] - **quic**: add additional quic implementation utilities (James M Snell) [#&#8203;47289](https://github.com/nodejs/node/pull/47289) - \[[`9b104be502`](https://github.com/nodejs/node/commit/9b104be502)] - **quic**: do not dereference shared_ptr after move (Tobias Nießen) [#&#8203;47294](https://github.com/nodejs/node/pull/47294) - \[[`09a4bb152f`](https://github.com/nodejs/node/commit/09a4bb152f)] - **quic**: add multiple internal utilities (James M Snell) [#&#8203;47263](https://github.com/nodejs/node/pull/47263) - \[[`2bde0059ca`](https://github.com/nodejs/node/commit/2bde0059ca)] - **sea**: use JSON configuration and blob content for SEA (Joyee Cheung) [#&#8203;47125](https://github.com/nodejs/node/pull/47125) - \[[`78c7475493`](https://github.com/nodejs/node/commit/78c7475493)] - **src**: allow simdutf::convert_\* functions to return zero (Daniel Lemire) [#&#8203;47471](https://github.com/nodejs/node/pull/47471) - \[[`5250947a53`](https://github.com/nodejs/node/commit/5250947a53)] - **src**: track ShadowRealm native objects correctly in the heap snapshot (Joyee Cheung) [#&#8203;47389](https://github.com/nodejs/node/pull/47389) - \[[`8059764621`](https://github.com/nodejs/node/commit/8059764621)] - **src**: use the internal field to determine if an object is a BaseObject (Joyee Cheung) [#&#8203;47217](https://github.com/nodejs/node/pull/47217) - \[[`698508afa8`](https://github.com/nodejs/node/commit/698508afa8)] - **src**: bootstrap prepare stack trace callback in shadow realm (Chengzhong Wu) [#&#8203;47107](https://github.com/nodejs/node/pull/47107) - \[[`e6b4d30a2f`](https://github.com/nodejs/node/commit/e6b4d30a2f)] - **src**: bootstrap Web \[Exposed=\*] APIs in the shadow realm (Chengzhong Wu) [#&#8203;46809](https://github.com/nodejs/node/pull/46809) - \[[`3646a66044`](https://github.com/nodejs/node/commit/3646a66044)] - **src**: fix AliasedBuffer memory attribution in heap snapshots (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817) - \[[`8b2126f63f`](https://github.com/nodejs/node/commit/8b2126f63f)] - **src**: move AliasedBuffer implementation to -inl.h (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817) - \[[`3abbc3829a`](https://github.com/nodejs/node/commit/3abbc3829a)] - **src**: fix useless call in permission.cc (Tobias Nießen) [#&#8203;46833](https://github.com/nodejs/node/pull/46833) - \[[`7b1e153530`](https://github.com/nodejs/node/commit/7b1e153530)] - **src**: simplify exit code accesses (Daeyeon Jeong) [#&#8203;45125](https://github.com/nodejs/node/pull/45125) - \[[`7359b92a41`](https://github.com/nodejs/node/commit/7359b92a41)] - **test**: remove unnecessary status check on test-release-npm (RafaelGSS) [#&#8203;47516](https://github.com/nodejs/node/pull/47516) - \[[`a5a5d2fb7e`](https://github.com/nodejs/node/commit/a5a5d2fb7e)] - **test**: mark test/parallel/test-file-write-stream4 as flaky (Yagiz Nizipli) [#&#8203;47423](https://github.com/nodejs/node/pull/47423) - \[[`81ad73a205`](https://github.com/nodejs/node/commit/81ad73a205)] - **test**: remove unused callback variables (angellovc) [#&#8203;47167](https://github.com/nodejs/node/pull/47167) - \[[`757a586ead`](https://github.com/nodejs/node/commit/757a586ead)] - **test**: migrate test runner message tests to snapshot (Moshe Atlow) [#&#8203;47392](https://github.com/nodejs/node/pull/47392) - \[[`86f890539f`](https://github.com/nodejs/node/commit/86f890539f)] - **test**: remove stale entry from known_issues.status (Richard Lau) [#&#8203;47454](https://github.com/nodejs/node/pull/47454) - \[[`1f3773d0c1`](https://github.com/nodejs/node/commit/1f3773d0c1)] - **test**: move more inspector sequential tests to parallel (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`617b8d44c6`](https://github.com/nodejs/node/commit/617b8d44c6)] - **test**: use random port in test-inspector-enabled (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`ade0170c4f`](https://github.com/nodejs/node/commit/ade0170c4f)] - **test**: use random port in test-inspector-debug-brk-flag (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`1a78632cd3`](https://github.com/nodejs/node/commit/1a78632cd3)] - **test**: use random port in NodeInstance.startViaSignal() (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`23f66b137e`](https://github.com/nodejs/node/commit/23f66b137e)] - **test**: move test-shadow-realm-gc.js to known_issues (Joyee Cheung) [#&#8203;47355](https://github.com/nodejs/node/pull/47355) - \[[`9dfd0394c5`](https://github.com/nodejs/node/commit/9dfd0394c5)] - **test**: remove useless WPT init scripts (Khafra) [#&#8203;47221](https://github.com/nodejs/node/pull/47221) - \[[`1cfe058778`](https://github.com/nodejs/node/commit/1cfe058778)] - **test**: fix test-permission-deny-fs-wildcard (win32) (Tobias Nießen) [#&#8203;47095](https://github.com/nodejs/node/pull/47095) - \[[`b8ef1b476e`](https://github.com/nodejs/node/commit/b8ef1b476e)] - **test**: add coverage for custom loader hooks with permission model (Antoine du Hamel) [#&#8203;46977](https://github.com/nodejs/node/pull/46977) - \[[`4a7c3e9c50`](https://github.com/nodejs/node/commit/4a7c3e9c50)] - **test**: fix file path in permission symlink test (Livia Medeiros) [#&#8203;46859](https://github.com/nodejs/node/pull/46859) - \[[`10005de6a8`](https://github.com/nodejs/node/commit/10005de6a8)] - **tools**: make `js2c.py` usable for other build systems (Cheng Zhao) [#&#8203;46930](https://github.com/nodejs/node/pull/46930) - \[[`1e2f9aca72`](https://github.com/nodejs/node/commit/1e2f9aca72)] - **tools**: move update-acorn.sh to dep_updaters and create maintaining md (Marco Ippolito) [#&#8203;47382](https://github.com/nodejs/node/pull/47382) - \[[`174662a463`](https://github.com/nodejs/node/commit/174662a463)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475) - \[[`a58ca61f35`](https://github.com/nodejs/node/commit/a58ca61f35)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475) - \[[`37d12730ab`](https://github.com/nodejs/node/commit/37d12730ab)] - **tools**: automate cjs-module-lexer dependency update (Marco Ippolito) [#&#8203;47446](https://github.com/nodejs/node/pull/47446) - \[[`4fbfa3c9f2`](https://github.com/nodejs/node/commit/4fbfa3c9f2)] - **tools**: fix notify-on-push Slack messages (Antoine du Hamel) [#&#8203;47453](https://github.com/nodejs/node/pull/47453) - \[[`b1f2ff1242`](https://github.com/nodejs/node/commit/b1f2ff1242)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;15](https://github.com/15).0.2 (Node.js GitHub Bot) [#&#8203;47431](https://github.com/nodejs/node/pull/47431) - \[[`26b2584b84`](https://github.com/nodejs/node/commit/26b2584b84)] - **tools**: add root certificate update script (Richard Lau) [#&#8203;47425](https://github.com/nodejs/node/pull/47425) - \[[`553b052648`](https://github.com/nodejs/node/commit/553b052648)] - **tools**: remove targets for individual test suites in `Makefile` (Antoine du Hamel) [#&#8203;46892](https://github.com/nodejs/node/pull/46892) - \[[`747ff43e5b`](https://github.com/nodejs/node/commit/747ff43e5b)] - **url**: more sophisticated brand check for URLSearchParams (Timothy Gu) [#&#8203;47414](https://github.com/nodejs/node/pull/47414) - \[[`e727eb066f`](https://github.com/nodejs/node/commit/e727eb066f)] - **url**: do not use object as hashmap (Timothy Gu) [#&#8203;47415](https://github.com/nodejs/node/pull/47415) - \[[`81c7875eb7`](https://github.com/nodejs/node/commit/81c7875eb7)] - **url**: drop ICU requirement for parsing hostnames (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339) - \[[`a4895df94a`](https://github.com/nodejs/node/commit/a4895df94a)] - **url**: use ada::url_aggregator for parsing urls (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339) ### [`v19.9.0`](https://github.com/nodejs/node/releases/tag/v19.9.0): 2023-04-10, Version 19.9.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.8.1...v19.9.0) ##### Notable Changes ##### Tracing Channel in diagnostic_channel `TracingChannel` adds a new, high-performance channel to publish tracing data about the timing and purpose of function executions. Contributed by Stephen Belanger in [#&#8203;44943](https://github.com/nodejs/node/pull/44943) ##### New URL.canParse API A new API was added to the URL. `URL.canParse` checks if an `input` with an optional base value can be parsed correctly according to WHATWG URL specification. ```js const isValid = URL.canParse('/foo', 'https://example.org/'); // true const isNotValid = URL.canParse('/foo'); // false ``` Contributed by Khafra in [#&#8203;47179](https://github.com/nodejs/node/pull/47179) ##### Other notable changes events: - (SEMVER-MINOR) add getMaxListeners method (Khafra) [#&#8203;47039](https://github.com/nodejs/node/pull/47039) msi: - (SEMVER-MINOR) migrate to WiX4 (Stefan Stojanovic) [#&#8203;45943](https://github.com/nodejs/node/pull/45943) node-api: - (SEMVER-MINOR) deprecate napi_module_register (Vladimir Morozov) [#&#8203;46319](https://github.com/nodejs/node/pull/46319) stream: - (SEMVER-MINOR) add setter & getter for default highWaterMark (Robert Nagy) [#&#8203;46929](https://github.com/nodejs/node/pull/46929) test_runner: - (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) [#&#8203;47238](https://github.com/nodejs/node/pull/47238) ##### Commits - \[[`2cea7d8141`](https://github.com/nodejs/node/commit/2cea7d8141)] - **benchmark**: fix invalid requirementsURL (Deokjin Kim) [#&#8203;47378](https://github.com/nodejs/node/pull/47378) - \[[`6a4076a188`](https://github.com/nodejs/node/commit/6a4076a188)] - **benchmark**: lower URL.canParse runs (Khafra) [#&#8203;47351](https://github.com/nodejs/node/pull/47351) - \[[`23a69d9279`](https://github.com/nodejs/node/commit/23a69d9279)] - **buffer**: fix blob range error with many chunks (Khafra) [#&#8203;47320](https://github.com/nodejs/node/pull/47320) - \[[`e3d98c3e7a`](https://github.com/nodejs/node/commit/e3d98c3e7a)] - **buffer**: use private properties for brand checks in File (Khafra) [#&#8203;47154](https://github.com/nodejs/node/pull/47154) - \[[`9dc6aef98d`](https://github.com/nodejs/node/commit/9dc6aef98d)] - **build**: bump github/codeql-action from 2.2.6 to 2.2.9 (dependabot\[bot]) [#&#8203;47366](https://github.com/nodejs/node/pull/47366) - \[[`910d2967f1`](https://github.com/nodejs/node/commit/910d2967f1)] - **build**: update stale action from v7 to v8 (Rich Trott) [#&#8203;47357](https://github.com/nodejs/node/pull/47357) - \[[`666df20ad9`](https://github.com/nodejs/node/commit/666df20ad9)] - **build**: remove Python pip `--no-user` option (Christian Clauss) [#&#8203;47372](https://github.com/nodejs/node/pull/47372) - \[[`3970537bb4`](https://github.com/nodejs/node/commit/3970537bb4)] - **build**: avoid usage of pipes library (Mohammed Keyvanzadeh) [#&#8203;47271](https://github.com/nodejs/node/pull/47271) - \[[`254a03b2eb`](https://github.com/nodejs/node/commit/254a03b2eb)] - **crypto**: unify validation of checkPrime checks (Tobias Nießen) [#&#8203;47165](https://github.com/nodejs/node/pull/47165) - \[[`8e1e9edc57`](https://github.com/nodejs/node/commit/8e1e9edc57)] - **deps**: update timezone to 2023c (Node.js GitHub Bot) [#&#8203;47302](https://github.com/nodejs/node/pull/47302) - \[[`30c043c2b9`](https://github.com/nodejs/node/commit/30c043c2b9)] - **deps**: update timezone to 2023b (Node.js GitHub Bot) [#&#8203;47256](https://github.com/nodejs/node/pull/47256) - \[[`40be01bc9c`](https://github.com/nodejs/node/commit/40be01bc9c)] - **deps**: update simdutf to 3.2.3 (Node.js GitHub Bot) [#&#8203;47331](https://github.com/nodejs/node/pull/47331) - \[[`4b09222569`](https://github.com/nodejs/node/commit/4b09222569)] - **deps**: upgrade npm to 9.6.3 (npm team) [#&#8203;47325](https://github.com/nodejs/node/pull/47325) - \[[`2a6c23ea5e`](https://github.com/nodejs/node/commit/2a6c23ea5e)] - **deps**: update corepack to 0.17.1 (Node.js GitHub Bot) [#&#8203;47156](https://github.com/nodejs/node/pull/47156) - \[[`06b718363d`](https://github.com/nodejs/node/commit/06b718363d)] - **deps**: V8: cherry-pick [`3e4952c`](https://github.com/nodejs/node/commit/3e4952cb2a59) (Richard Lau) [#&#8203;47236](https://github.com/nodejs/node/pull/47236) - \[[`7e24498d81`](https://github.com/nodejs/node/commit/7e24498d81)] - **deps**: upgrade npm to 9.6.2 (npm team) [#&#8203;47108](https://github.com/nodejs/node/pull/47108) - \[[`7a4beaa182`](https://github.com/nodejs/node/commit/7a4beaa182)] - **deps**: V8: cherry-pick [`215ccd5`](https://github.com/nodejs/node/commit/215ccd593edb) (Joyee Cheung) [#&#8203;47212](https://github.com/nodejs/node/pull/47212) - \[[`8a69929f23`](https://github.com/nodejs/node/commit/8a69929f23)] - **deps**: V8: cherry-pick [`975ff4d`](https://github.com/nodejs/node/commit/975ff4dbfd1b) (Debadree Chatterjee) [#&#8203;47209](https://github.com/nodejs/node/pull/47209) - \[[`10569de53f`](https://github.com/nodejs/node/commit/10569de53f)] - **deps**: cherry-pick win/arm64/clang fixes (Cheng Zhao) [#&#8203;47011](https://github.com/nodejs/node/pull/47011) - \[[`ff6070eb1d`](https://github.com/nodejs/node/commit/ff6070eb1d)] - **deps**: V8: cherry-pick [`cb30b8e`](https://github.com/nodejs/node/commit/cb30b8e17429) (Darshan Sen) [#&#8203;47307](https://github.com/nodejs/node/pull/47307) - \[[`0bbce034f9`](https://github.com/nodejs/node/commit/0bbce034f9)] - **doc**: add a note about os.cpus() returning an empty list (codedokode) [#&#8203;47363](https://github.com/nodejs/node/pull/47363) - \[[`f8511e0b27`](https://github.com/nodejs/node/commit/f8511e0b27)] - **doc**: clarify reports are only evaluated on active versions (Rafael Gonzaga) [#&#8203;47341](https://github.com/nodejs/node/pull/47341) - \[[`863b4d9c5b`](https://github.com/nodejs/node/commit/863b4d9c5b)] - **doc**: remove Vladimir de Turckheim from Security release stewards (Vladimir de Turckheim) [#&#8203;47318](https://github.com/nodejs/node/pull/47318) - \[[`2192b5b163`](https://github.com/nodejs/node/commit/2192b5b163)] - **doc**: add importing util to example of \`process.report.getReport' (Deokjin Kim) [#&#8203;47298](https://github.com/nodejs/node/pull/47298) - \[[`1c21fbfa9a`](https://github.com/nodejs/node/commit/1c21fbfa9a)] - **doc**: vm.SourceTextModule() without context option (Axel Kittenberger) [#&#8203;47295](https://github.com/nodejs/node/pull/47295) - \[[`89445fbea9`](https://github.com/nodejs/node/commit/89445fbea9)] - **doc**: make win arm64 tier 2 platform (Stefan Stojanovic) [#&#8203;47233](https://github.com/nodejs/node/pull/47233) - \[[`296577a549`](https://github.com/nodejs/node/commit/296577a549)] - **doc**: document process for sharing project news (Michael Dawson) [#&#8203;47189](https://github.com/nodejs/node/pull/47189) - \[[`e29a1462c7`](https://github.com/nodejs/node/commit/e29a1462c7)] - **doc**: revise example of assert.CallTracker (Deokjin Kim) [#&#8203;47252](https://github.com/nodejs/node/pull/47252) - \[[`bac893adbe`](https://github.com/nodejs/node/commit/bac893adbe)] - **doc**: fix typo in SECURITY.md (Rich Trott) [#&#8203;47282](https://github.com/nodejs/node/pull/47282) - \[[`0949f238d1`](https://github.com/nodejs/node/commit/0949f238d1)] - **doc**: use serial comma in cli docs (Tobias Nießen) [#&#8203;47262](https://github.com/nodejs/node/pull/47262) - \[[`71246247a9`](https://github.com/nodejs/node/commit/71246247a9)] - **doc**: improve example for Error.captureStackTrace() (Julian Dax) [#&#8203;46886](https://github.com/nodejs/node/pull/46886) - \[[`0b2ba441b2`](https://github.com/nodejs/node/commit/0b2ba441b2)] - **doc**: clarify http error events after calling destroy() (Zach Bjornson) [#&#8203;46903](https://github.com/nodejs/node/pull/46903) - \[[`a21459e0d5`](https://github.com/nodejs/node/commit/a21459e0d5)] - **doc**: update output of example in AbortController (Deokjin Kim) [#&#8203;47227](https://github.com/nodejs/node/pull/47227) - \[[`7a2090c14c`](https://github.com/nodejs/node/commit/7a2090c14c)] - **doc**: drop one-week branch sync on major releases (Rafael Gonzaga) [#&#8203;47149](https://github.com/nodejs/node/pull/47149) - \[[`eb4de0043d`](https://github.com/nodejs/node/commit/eb4de0043d)] - **doc**: fix grammar in the collaborator guide (Mohammed Keyvanzadeh) [#&#8203;47245](https://github.com/nodejs/node/pull/47245) - \[[`908798ae19`](https://github.com/nodejs/node/commit/908798ae19)] - **doc**: update stream.reduce concurrency note (Raz Luvaton) [#&#8203;47166](https://github.com/nodejs/node/pull/47166) - \[[`36c118bc92`](https://github.com/nodejs/node/commit/36c118bc92)] - **doc**: remove use of DEFAULT_ENCODING in PBKDF2 docs (Tobias Nießen) [#&#8203;47181](https://github.com/nodejs/node/pull/47181) - \[[`7ec87fd5ce`](https://github.com/nodejs/node/commit/7ec87fd5ce)] - **doc**: fix typos in async_context.md (Shubham Sharma) [#&#8203;47155](https://github.com/nodejs/node/pull/47155) - \[[`a03aaba996`](https://github.com/nodejs/node/commit/a03aaba996)] - **doc**: update collaborator guide to reflect TSC changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126) - \[[`c45a6977ec`](https://github.com/nodejs/node/commit/c45a6977ec)] - **doc**: clarify that `fs.create{Read,Write}Stream` support `AbortSignal` (Antoine du Hamel) [#&#8203;47122](https://github.com/nodejs/node/pull/47122) - \[[`82c7757177`](https://github.com/nodejs/node/commit/82c7757177)] - **doc**: improve documentation for util.types.isNativeError() (Julian Dax) [#&#8203;46840](https://github.com/nodejs/node/pull/46840) - \[[`8f9b9c17d5`](https://github.com/nodejs/node/commit/8f9b9c17d5)] - **doc**: rename the startup performance initiative to startup snapshot ([#&#8203;47111](https://github.com/nodejs/node/issues/47111)) (Joyee Cheung) - \[[`c08995e897`](https://github.com/nodejs/node/commit/c08995e897)] - **doc**: indicate that `name` is no longer an optional argument (Daniel Roe) [#&#8203;47102](https://github.com/nodejs/node/pull/47102) - \[[`316d626e61`](https://github.com/nodejs/node/commit/316d626e61)] - **doc**: fix "maintaining dependencies" heading typos (Keyhan Vakil) [#&#8203;47082](https://github.com/nodejs/node/pull/47082) - \[[`a4b1a7761f`](https://github.com/nodejs/node/commit/a4b1a7761f)] - **esm**: skip file: URL conversion to path when possible (Antoine du Hamel) [#&#8203;46305](https://github.com/nodejs/node/pull/46305) - \[[`c5cd6b7f3b`](https://github.com/nodejs/node/commit/c5cd6b7f3b)] - **(SEMVER-MINOR)** **events**: add getMaxListeners method (Khafra) [#&#8203;47039](https://github.com/nodejs/node/pull/47039) - \[[`2c2b07ce5f`](https://github.com/nodejs/node/commit/2c2b07ce5f)] - **fs**: invalidate blob created from empty file when written to (Debadree Chatterjee) [#&#8203;47199](https://github.com/nodejs/node/pull/47199) - \[[`e33dfce401`](https://github.com/nodejs/node/commit/e33dfce401)] - **inspector**: log response and requests in the inspector for debugging (Joyee Cheung) [#&#8203;46941](https://github.com/nodejs/node/pull/46941) - \[[`f6ec81dc05`](https://github.com/nodejs/node/commit/f6ec81dc05)] - **inspector**: fix session.disconnect crash (theanarkh) [#&#8203;46942](https://github.com/nodejs/node/pull/46942) - \[[`a738164fed`](https://github.com/nodejs/node/commit/a738164fed)] - **lib**: define Event.isTrusted in the prototype (Santiago Gimeno) [#&#8203;46974](https://github.com/nodejs/node/pull/46974) - \[[`7d37dcdd9a`](https://github.com/nodejs/node/commit/7d37dcdd9a)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics_channel (Stephen Belanger) [#&#8203;44943](https://github.com/nodejs/node/pull/44943) - \[[`16d3dfa0aa`](https://github.com/nodejs/node/commit/16d3dfa0aa)] - **meta**: fix notable-change comment label url (Filip Skokan) [#&#8203;47300](https://github.com/nodejs/node/pull/47300) - \[[`2c95f6e18b`](https://github.com/nodejs/node/commit/2c95f6e18b)] - **meta**: clarify the threat model to explain the JSON.parse case (Matteo Collina) [#&#8203;47276](https://github.com/nodejs/node/pull/47276) - \[[`22b9acdbf8`](https://github.com/nodejs/node/commit/22b9acdbf8)] - **meta**: update link to collaborators discussion page (Michaël Zasso) [#&#8203;47211](https://github.com/nodejs/node/pull/47211) - \[[`dc024d930a`](https://github.com/nodejs/node/commit/dc024d930a)] - **meta**: automate description requests when notable change label is added (Danielle Adams) [#&#8203;47078](https://github.com/nodejs/node/pull/47078) - \[[`54195357f3`](https://github.com/nodejs/node/commit/54195357f3)] - **meta**: move TSC voting member(s) to regular member(s) (Node.js GitHub Bot) [#&#8203;47180](https://github.com/nodejs/node/pull/47180) - \[[`a3bffbaa11`](https://github.com/nodejs/node/commit/a3bffbaa11)] - **meta**: move TSC voting member to regular membership (Node.js GitHub Bot) [#&#8203;46985](https://github.com/nodejs/node/pull/46985) - \[[`d2a6aa6ecd`](https://github.com/nodejs/node/commit/d2a6aa6ecd)] - **meta**: update GOVERNANCE.md to reflect TSC charter changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126) - \[[`b0aad345bf`](https://github.com/nodejs/node/commit/b0aad345bf)] - **meta**: ask expected behavior reason in bug template (Ben Noordhuis) [#&#8203;47049](https://github.com/nodejs/node/pull/47049) - \[[`c03e79b141`](https://github.com/nodejs/node/commit/c03e79b141)] - **(SEMVER-MINOR)** **msi**: migrate to WiX4 (Stefan Stojanovic) [#&#8203;45943](https://github.com/nodejs/node/pull/45943) - \[[`ca981be2b9`](https://github.com/nodejs/node/commit/ca981be2b9)] - **(SEMVER-MINOR)** **node-api**: deprecate napi_module_register (Vladimir Morozov) [#&#8203;46319](https://github.com/nodejs/node/pull/46319) - \[[`77f7200cce`](https://github.com/nodejs/node/commit/77f7200cce)] - **node-api**: extend type-tagging to externals (Gabriel Schulhof) [#&#8203;47141](https://github.com/nodejs/node/pull/47141) - \[[`55f3d215b8`](https://github.com/nodejs/node/commit/55f3d215b8)] - **node-api**: document node-api shutdown finalization (Chengzhong Wu) [#&#8203;45903](https://github.com/nodejs/node/pull/45903) - \[[`b3fe2ba59b`](https://github.com/nodejs/node/commit/b3fe2ba59b)] - **node-api**: verify cleanup hooks order (Chengzhong Wu) [#&#8203;46692](https://github.com/nodejs/node/pull/46692) - \[[`d6a12328a6`](https://github.com/nodejs/node/commit/d6a12328a6)] - **repl**: preserve preview on ESCAPE key press (Xuguang Mei) [#&#8203;46878](https://github.com/nodejs/node/pull/46878) - \[[`33b0906640`](https://github.com/nodejs/node/commit/33b0906640)] - **sea**: fix memory leak detected by asan (Darshan Sen) [#&#8203;47309](https://github.com/nodejs/node/pull/47309) - \[[`069515153f`](https://github.com/nodejs/node/commit/069515153f)] - **src**: remove usage of `std::shared_ptr<T>::unique()` (Darshan Sen) [#&#8203;47315](https://github.com/nodejs/node/pull/47315) - \[[`4405fc879a`](https://github.com/nodejs/node/commit/4405fc879a)] - **src**: use stricter compile-time guidance (Tobias Nießen) [#&#8203;46509](https://github.com/nodejs/node/pull/46509) - \[[`bbde68e5de`](https://github.com/nodejs/node/commit/bbde68e5de)] - **src**: remove unused variable in crypto_x509.cc (Michaël Zasso) [#&#8203;47344](https://github.com/nodejs/node/pull/47344) - \[[`7a80312e19`](https://github.com/nodejs/node/commit/7a80312e19)] - **src**: don't reset embeder signal handlers (Dmitry Vyukov) [#&#8203;47188](https://github.com/nodejs/node/pull/47188) - \[[`d0a5e7e342`](https://github.com/nodejs/node/commit/d0a5e7e342)] - **src**: fix some recently introduced coverity issues (Michael Dawson) [#&#8203;47240](https://github.com/nodejs/node/pull/47240) - \[[`0a4ff2f9a0`](https://github.com/nodejs/node/commit/0a4ff2f9a0)] - **src**: replace impossible THROW with CHECK (Tobias Nießen) [#&#8203;47168](https://github.com/nodejs/node/pull/47168) - \[[`2fd0f79963`](https://github.com/nodejs/node/commit/2fd0f79963)] - **src**: fix duplication of externalized builtin code (Keyhan Vakil) [#&#8203;47079](https://github.com/nodejs/node/pull/47079) - \[[`36a026bf44`](https://github.com/nodejs/node/commit/36a026bf44)] - **src**: remove dead comments about return_code_cache (Keyhan Vakil) [#&#8203;47083](https://github.com/nodejs/node/pull/47083) - \[[`aefe26692c`](https://github.com/nodejs/node/commit/aefe26692c)] - **src**: remove SSL_CTX_get_tlsext_ticket_keys guards (Tobias Nießen) [#&#8203;47068](https://github.com/nodejs/node/pull/47068) - \[[`90f4e16350`](https://github.com/nodejs/node/commit/90f4e16350)] - **src**: fix clang 14 linker error (Keyhan Vakil) [#&#8203;47057](https://github.com/nodejs/node/pull/47057) - \[[`b0809a73da`](https://github.com/nodejs/node/commit/b0809a73da)] - **src,http2**: ensure cleanup if a frame is not sent (ywave620) [#&#8203;47244](https://github.com/nodejs/node/pull/47244) - \[[`1fc62c7b35`](https://github.com/nodejs/node/commit/1fc62c7b35)] - **(SEMVER-MINOR)** **stream**: add setter & getter for default highWaterMark ([#&#8203;46929](https://github.com/nodejs/node/issues/46929)) (Robert Nagy) [#&#8203;46929](https://github.com/nodejs/node/pull/46929) - \[[`b8c6ceddd5`](https://github.com/nodejs/node/commit/b8c6ceddd5)] - **stream**: expose stream symbols (Robert Nagy) [#&#8203;45671](https://github.com/nodejs/node/pull/45671) - \[[`f37825660c`](https://github.com/nodejs/node/commit/f37825660c)] - **stream**: dont wait for next item in take when finished (Raz Luvaton) [#&#8203;47132](https://github.com/nodejs/node/pull/47132) - \[[`8eceaaeb4d`](https://github.com/nodejs/node/commit/8eceaaeb4d)] - **test**: fix flaky test-watch-mode-inspect (Moshe Atlow) [#&#8203;47403](https://github.com/nodejs/node/pull/47403) - \[[`db95ed0b1b`](https://github.com/nodejs/node/commit/db95ed0b1b)] - **test**: move debugger tests with --port=0 to parallel (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274) - \[[`041885ebd0`](https://github.com/nodejs/node/commit/041885ebd0)] - **test**: use --port=0 in debugger tests that do not have to work on 9229 (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274) - \[[`130420b9e1`](https://github.com/nodejs/node/commit/130420b9e1)] - **test**: run doctool tests in parallel (Joyee Cheung) [#&#8203;47273](https://github.com/nodejs/node/pull/47273) - \[[`4b4336c34e`](https://github.com/nodejs/node/commit/4b4336c34e)] - **test**: verify tracePromise does not do runStores (Stephen Belanger) [#&#8203;47349](https://github.com/nodejs/node/pull/47349) - \[[`54261f3294`](https://github.com/nodejs/node/commit/54261f3294)] - **test**: run WPT files in parallel again (Filip Skokan) [#&#8203;47283](https://github.com/nodejs/node/pull/47283) - \[[`e2eb0543be`](https://github.com/nodejs/node/commit/e2eb0543be)] - **test**: update wasm/jsapi WPT (Michaël Zasso) [#&#8203;47210](https://github.com/nodejs/node/pull/47210) - \[[`d341d0389f`](https://github.com/nodejs/node/commit/d341d0389f)] - **test**: skip test-wasm-web-api on ARM (Michaël Zasso) [#&#8203;47299](https://github.com/nodejs/node/pull/47299) - \[[`567573b16a`](https://github.com/nodejs/node/commit/567573b16a)] - **test**: skip instantiateStreaming-bad-imports WPT (Michaël Zasso) [#&#8203;47292](https://github.com/nodejs/node/pull/47292) - \[[`45e7b10287`](https://github.com/nodejs/node/commit/45e7b10287)] - **test**: fix 'checks' validation test for checkPrime (Tobias Nießen) [#&#8203;47139](https://github.com/nodejs/node/pull/47139) - \[[`5749dfae70`](https://github.com/nodejs/node/commit/5749dfae70)] - **test**: update URL web-platform-tests (Yagiz Nizipli) [#&#8203;47135](https://github.com/nodejs/node/pull/47135) - \[[`49981b93d2`](https://github.com/nodejs/node/commit/49981b93d2)] - **test**: reduce flakiness of test-http-remove-header-stays-removed.js (Debadree Chatterjee) [#&#8203;46855](https://github.com/nodejs/node/pull/46855) - \[[`6772aa652a`](https://github.com/nodejs/node/commit/6772aa652a)] - **test**: fix test-child-process-exec-cwd (Stefan Stojanovic) [#&#8203;47235](https://github.com/nodejs/node/pull/47235) - \[[`41a69e772b`](https://github.com/nodejs/node/commit/41a69e772b)] - **test**: skip broken tests win arm64 (Stefan Stojanovic) [#&#8203;47020](https://github.com/nodejs/node/pull/47020) - \[[`7bcfd18f2c`](https://github.com/nodejs/node/commit/7bcfd18f2c)] - **test**: mark test-http-max-sockets as flaky on win32 (Tobias Nießen) [#&#8203;47134](https://github.com/nodejs/node/pull/47134) - \[[`b96808b3e2`](https://github.com/nodejs/node/commit/b96808b3e2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47222](https://github.com/nodejs/node/pull/47222) - \[[`65955f1e46`](https://github.com/nodejs/node/commit/65955f1e46)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47131](https://github.com/nodejs/node/pull/47131) - \[[`bc6511a243`](https://github.com/nodejs/node/commit/bc6511a243)] - **test_runner**: color errors only when colors are available (Moshe Atlow) [#&#8203;47394](https://github.com/nodejs/node/pull/47394) - \[[`463361e625`](https://github.com/nodejs/node/commit/463361e625)] - **test_runner**: hide failing tests title when all tests pass (Moshe Atlow) [#&#8203;47370](https://github.com/nodejs/node/pull/47370) - \[[`eb837ce80d`](https://github.com/nodejs/node/commit/eb837ce80d)] - **test_runner**: stringify AssertError expected and actual (Moshe Atlow) [#&#8203;47088](https://github.com/nodejs/node/pull/47088) - \[[`6b87f29000`](https://github.com/nodejs/node/commit/6b87f29000)] - **test_runner**: add code coverage support to spec reporter (Pulkit Gupta) [#&#8203;46674](https://github.com/nodejs/node/pull/46674) - \[[`bd4697a2a3`](https://github.com/nodejs/node/commit/bd4697a2a3)] - **test_runner**: expose reporter for use in run api (Chemi Atlow) [#&#8203;47238](https://github.com/nodejs/node/pull/47238) - \[[`3e7f8e8482`](https://github.com/nodejs/node/commit/3e7f8e8482)] - **test_runner**: report failing tests after summary (HinataKah0) [#&#8203;47164](https://github.com/nodejs/node/pull/47164) - \[[`4530582767`](https://github.com/nodejs/node/commit/4530582767)] - **test_runner**: count nested tests (Moshe Atlow) [#&#8203;47094](https://github.com/nodejs/node/pull/47094) - \[[`5a43586554`](https://github.com/nodejs/node/commit/5a43586554)] - **test_runner**: accept \x1b as a escape symbol (Debadree Chatterjee) [#&#8203;47050](https://github.com/nodejs/node/pull/47050) - \[[`a5ebc896f1`](https://github.com/nodejs/node/commit/a5ebc896f1)] - **test_runner**: support defining test reporter in NODE_OPTIONS (Steve Herzog) [#&#8203;46688](https://github.com/nodejs/node/pull/46688) - \[[`a65fe5c29a`](https://github.com/nodejs/node/commit/a65fe5c29a)] - **tools**: fix update-openssl.yml compare version (Marco Ippolito) [#&#8203;47384](https://github.com/nodejs/node/pull/47384) - \[[`760e13c58d`](https://github.com/nodejs/node/commit/760e13c58d)] - **tools**: ensure failed daily wpt run still generates a report (Filip Skokan) [#&#8203;47376](https://github.com/nodejs/node/pull/47376) - \[[`9c975f79f0`](https://github.com/nodejs/node/commit/9c975f79f0)] - **tools**: use ref_name to get branch pushed on (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358) - \[[`b1d6a15028`](https://github.com/nodejs/node/commit/b1d6a15028)] - **tools**: add a at here tag for slack messages (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358) - \[[`c340de6d51`](https://github.com/nodejs/node/commit/c340de6d51)] - **tools**: disable Codecov commit statuses (Michaël Zasso) [#&#8203;47306](https://github.com/nodejs/node/pull/47306) - \[[`034082f0e5`](https://github.com/nodejs/node/commit/034082f0e5)] - **tools**: update eslint to 8.37.0 (Node.js GitHub Bot) [#&#8203;47333](https://github.com/nodejs/node/pull/47333) - \[[`03b6650c81`](https://github.com/nodejs/node/commit/03b6650c81)] - **tools**: fix duration_ms to be milliseconds (Moshe Atlow) [#&#8203;44490](https://github.com/nodejs/node/pull/44490) - \[[`30c667ec3a`](https://github.com/nodejs/node/commit/30c667ec3a)] - **tools**: automate brotli update (Marco Ippolito) [#&#8203;47205](https://github.com/nodejs/node/pull/47205) - \[[`83791e5459`](https://github.com/nodejs/node/commit/83791e5459)] - **tools**: fix typo in nghttp2 path (Marco Ippolito) [#&#8203;47330](https://github.com/nodejs/node/pull/47330) - \[[`53e8dad64a`](https://github.com/nodejs/node/commit/53e8dad64a)] - **tools**: add scorecard workflow (Mateo Nunez) [#&#8203;47254](https://github.com/nodejs/node/pull/47254) - \[[`2499677d0b`](https://github.com/nodejs/node/commit/2499677d0b)] - **tools**: pin actions by hash for auto-start-ci.yml (Gabriela Gutierrez) [#&#8203;46820](https://github.com/nodejs/node/pull/46820) - \[[`98f64ee724`](https://github.com/nodejs/node/commit/98f64ee724)] - **tools**: standardize base64 update (Marco Ippolito) [#&#8203;47201](https://github.com/nodejs/node/pull/47201) - \[[`c1ef1fde8f`](https://github.com/nodejs/node/commit/c1ef1fde8f)] - **tools**: update codecov branch (Rich Trott) [#&#8203;47285](https://github.com/nodejs/node/pull/47285) - \[[`9ecf2a4144`](https://github.com/nodejs/node/commit/9ecf2a4144)] - **tools**: update lint-md-dependencies to rollup@3.20.2 (Node.js GitHub Bot) [#&#8203;47255](https://github.com/nodejs/node/pull/47255) - \[[`def7e3d908`](https://github.com/nodejs/node/commit/def7e3d908)] - **tools**: upgrade Windows digital signature to SHA256 (Tobias Nießen) [#&#8203;47206](https://github.com/nodejs/node/pull/47206) - \[[`0b78ac53ad`](https://github.com/nodejs/node/commit/0b78ac53ad)] - **tools**: standardize update-llhttp.sh (Marco Ippolito) [#&#8203;47198](https://github.com/nodejs/node/pull/47198) - \[[`deb80b1c46`](https://github.com/nodejs/node/commit/deb80b1c46)] - **tools**: add button to copy code example to clipboard (jakecastelli) [#&#8203;46928](https://github.com/nodejs/node/pull/46928) - \[[`6dca79f1ce`](https://github.com/nodejs/node/commit/6dca79f1ce)] - **tools**: standardize update-nghttp2.sh (Marco Ippolito) [#&#8203;47197](https://github.com/nodejs/node/pull/47197) - \[[`0c613c9347`](https://github.com/nodejs/node/commit/0c613c9347)] - **tools**: fix Slack notification action (Antoine du Hamel) [#&#8203;47237](https://github.com/nodejs/node/pull/47237) - \[[`3f49da5113`](https://github.com/nodejs/node/commit/3f49da5113)] - **tools**: notify on Slack when invalid commit lands (Antoine du Hamel) [#&#8203;47178](https://github.com/nodejs/node/pull/47178) - \[[`337123d657`](https://github.com/nodejs/node/commit/337123d657)] - **tools**: update daily wpt actions summary (Filip Skokan) [#&#8203;47138](https://github.com/nodejs/node/pull/47138) - \[[`78ce8d3469`](https://github.com/nodejs/node/commit/78ce8d3469)] - **tools**: allow test tap output to include unicode characters (Moshe Atlow) [#&#8203;47175](https://github.com/nodejs/node/pull/47175) - \[[`8850dacc88`](https://github.com/nodejs/node/commit/8850dacc88)] - **tools**: update lint-md-dependencies to rollup@3.19.1 (Node.js GitHub Bot) [#&#8203;47045](https://github.com/nodejs/node/pull/47045) - \[[`d1ca5b6d47`](https://github.com/nodejs/node/commit/d1ca5b6d47)] - **tools**: align update-ada.sh with other scripts (Tony Gorez) [#&#8203;47044](https://github.com/nodejs/node/pull/47044) - \[[`b58d52301e`](https://github.com/nodejs/node/commit/b58d52301e)] - **tools**: update eslint to 8.36.0 (Node.js GitHub Bot) [#&#8203;47046](https://github.com/nodejs/node/pull/47046) - \[[`d78bef8a1f`](https://github.com/nodejs/node/commit/d78bef8a1f)] - **tools,meta**: update README and tools to reflect changes in TSC charter (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126) - \[[`d243115f41`](https://github.com/nodejs/node/commit/d243115f41)] - **url**: improve URLSearchParams creation performance (Yagiz Nizipli) [#&#8203;47190](https://github.com/nodejs/node/pull/47190) - \[[`461ef04f87`](https://github.com/nodejs/node/commit/461ef04f87)] - **url**: add pending-deprecation to `url.parse()` (Yagiz Nizipli) [#&#8203;47203](https://github.com/nodejs/node/pull/47203) - \[[`ef62e5a59e`](https://github.com/nodejs/node/commit/ef62e5a59e)] - **(SEMVER-MINOR)** **url**: implement URL.canParse (Khafra) [#&#8203;47179](https://github.com/nodejs/node/pull/47179) - \[[`0b565e8f62`](https://github.com/nodejs/node/commit/0b565e8f62)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#&#8203;46989](https://github.com/nodejs/node/pull/46989) - \[[`cbb362736b`](https://github.com/nodejs/node/commit/cbb362736b)] - **util**: fix inspecting error with a throwing getter for `cause` (Antoine du Hamel) [#&#8203;47163](https://github.com/nodejs/node/pull/47163) - \[[`9537672511`](https://github.com/nodejs/node/commit/9537672511)] - **vm**: properly handle defining props on any value (Nicolas DUBIEN) [#&#8203;46615](https://github.com/nodejs/node/pull/46615) - \[[`75669e98bf`](https://github.com/nodejs/node/commit/75669e98bf)] - **watch**: fix watch path with equals (Moshe Atlow) [#&#8203;47369](https://github.com/nodejs/node/pull/47369) ### [`v19.8.1`](https://github.com/nodejs/node/releases/tag/v19.8.1): 2023-03-15, Version 19.8.1 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v19.7.0...v19.8.1) ##### Notable Changes This release contains a single revert of a change that was introduced in v19.8.0 and introduced application crashes. Fixes: [#&#8203;47096](https://github.com/nodejs/node/issues/47096) ##### Commits - \[[`f7c8aa4cf1`](https://github.com/nodejs/node/commit/f7c8aa4cf1)] - ***Revert*** "**vm**: fix leak in vm.compileFunction when importModuleDynamically is used" (Michaël Zasso) [#&#8203;47101](https://github.com/nodejs/node/pull/47101) ### [`v19.7.0`](https://github.com/nodejs/node/releases/tag/v19.7.0): 2023-02-21, Version 19.7.0 (Current), @&#8203;MylesBorins [Compare Source](https://github.com/nodejs/node/compare/v19.6.1...v19.7.0) ##### Notable Changes - \[[`60a612607e`](https://github.com/nodejs/node/commit/60a612607e)] - **deps**: upgrade npm to 9.5.0 (npm team) [#&#8203;46673](https://github.com/nodejs/node/pull/46673) - \[[`7d6c27eab1`](https://github.com/nodejs/node/commit/7d6c27eab1)] - **deps**: add ada as a dependency (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410) - \[[`a79a8bf85a`](https://github.com/nodejs/node/commit/a79a8bf85a)] - **doc**: add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716) - \[[`0c2c322ee6`](https://github.com/nodejs/node/commit/0c2c322ee6)] - **doc**: add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444) - \[[`9b23309f53`](https://github.com/nodejs/node/commit/9b23309f53)] - **doc,lib,src,test**: rename --test-coverage (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017) - \[[`8590eb4830`](https://github.com/nodejs/node/commit/8590eb4830)] - **(SEMVER-MINOR)** **lib**: add aborted() utility function (Debadree Chatterjee) [#&#8203;46494](https://github.com/nodejs/node/pull/46494) - \[[`164bfe82cc`](https://github.com/nodejs/node/commit/164bfe82cc)] - **(SEMVER-MINOR)** **src**: add initial support for single executable applications (Darshan Sen) [#&#8203;45038](https://github.com/nodejs/node/pull/45038) - \[[`f3908411fd`](https://github.com/nodejs/node/commit/f3908411fd)] - **(SEMVER-MINOR)** **src**: allow optional Isolate termination in node::Stop() (Shelley Vohr) [#&#8203;46583](https://github.com/nodejs/node/pull/46583) - \[[`c34bac2fed`](https://github.com/nodejs/node/commit/c34bac2fed)] - **(SEMVER-MINOR)** **src**: allow blobs in addition to `FILE*`s in embedder snapshot API (Anna Henningsen) [#&#8203;46491](https://github.com/nodejs/node/pull/46491) - \[[`683a1f8f3e`](https://github.com/nodejs/node/commit/683a1f8f3e)] - **(SEMVER-MINOR)** **src**: allow snapshotting from the embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888) - \[[`658d2f4710`](https://github.com/nodejs/node/commit/658d2f4710)] - **(SEMVER-MINOR)** **src**: make build_snapshot a per-Isolate option, rather than a global one (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888) - \[[`6801d3753c`](https://github.com/nodejs/node/commit/6801d3753c)] - **(SEMVER-MINOR)** **src**: add snapshot support for embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888) - \[[`e77d538d32`](https://github.com/nodejs/node/commit/e77d538d32)] - **(SEMVER-MINOR)** **src**: allow embedder control of code generation policy (Shelley Vohr) [#&#8203;46368](https://github.com/nodejs/node/pull/46368) - \[[`633d3f292d`](https://github.com/nodejs/node/commit/633d3f292d)] - **(SEMVER-MINOR)** **stream**: add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46273](https://github.com/nodejs/node/pull/46273) - \[[`6119289251`](https://github.com/nodejs/node/commit/6119289251)] - **test_runner**: add initial code coverage support (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017) - \[[`a51fe3c663`](https://github.com/nodejs/node/commit/a51fe3c663)] - **url**: replace url-parser with ada (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410) ##### Commits - \[[`731a7ae9da`](https://github.com/nodejs/node/commit/731a7ae9da)] - **async_hooks**: add async local storage propagation benchmarks (Chengzhong Wu) [#&#8203;46414](https://github.com/nodejs/node/pull/46414) - \[[`05ad792a07`](https://github.com/nodejs/node/commit/05ad792a07)] - **async_hooks**: remove experimental onPropagate option (James M Snell) [#&#8203;46386](https://github.com/nodejs/node/pull/46386) - \[[`6b21170b10`](https://github.com/nodejs/node/commit/6b21170b10)] - **benchmark**: add trailing commas in `benchmark/path` (Antoine du Hamel) [#&#8203;46628](https://github.com/nodejs/node/pull/46628) - \[[`4b89ec409f`](https://github.com/nodejs/node/commit/4b89ec409f)] - **benchmark**: add trailing commas in `benchmark/http` (Antoine du Hamel) [#&#8203;46609](https://github.com/nodejs/node/pull/46609) - \[[`ff95eb7386`](https://github.com/nodejs/node/commit/ff95eb7386)] - **benchmark**: add trailing commas in `benchmark/crypto` (Antoine du Hamel) [#&#8203;46553](https://github.com/nodejs/node/pull/46553) - \[[`638d9b8d4b`](https://github.com/nodejs/node/commit/638d9b8d4b)] - **benchmark**: add trailing commas in `benchmark/url` (Antoine du Hamel) [#&#8203;46551](https://github.com/nodejs/node/pull/46551) - \[[`7524871a9b`](https://github.com/nodejs/node/commit/7524871a9b)] - **benchmark**: add trailing commas in `benchmark/http2` (Antoine du Hamel) [#&#8203;46552](https://github.com/nodejs/node/pull/46552) - \[[`9d9b3f856f`](https://github.com/nodejs/node/commit/9d9b3f856f)] - **benchmark**: add trailing commas in `benchmark/process` (Antoine du Hamel) [#&#8203;46481](https://github.com/nodejs/node/pull/46481) - \[[`6c69ad6d43`](https://github.com/nodejs/node/commit/6c69ad6d43)] - **benchmark**: add trailing commas in `benchmark/misc` (Antoine du Hamel) [#&#8203;46474](https://github.com/nodejs/node/pull/46474) - \[[`7f8b292bee`](https://github.com/nodejs/node/commit/7f8b292bee)] - **benchmark**: add trailing commas in `benchmark/buffers` (Antoine du Hamel) [#&#8203;46473](https://github.com/nodejs/node/pull/46473) - \[[`897e3c2782`](https://github.com/nodejs/node/commit/897e3c2782)] - **benchmark**: add trailing commas in `benchmark/module` (Antoine du Hamel) [#&#8203;46461](https://github.com/nodejs/node/pull/46461) - \[[`7760d40c04`](https://github.com/nodejs/node/commit/7760d40c04)] - **benchmark**: add trailing commas in `benchmark/net` (Antoine du Hamel) [#&#8203;46439](https://github.com/nodejs/node/pull/46439) - \[[`8b88d605ca`](https://github.com/nodejs/node/commit/8b88d605ca)] - **benchmark**: add trailing commas in `benchmark/util` (Antoine du Hamel) [#&#8203;46438](https://github.com/nodejs/node/pull/46438) - \[[`2c8c9f978d`](https://github.com/nodejs/node/commit/2c8c9f978d)] - **benchmark**: add trailing commas in `benchmark/async_hooks` (Antoine du Hamel) [#&#8203;46424](https://github.com/nodejs/node/pull/46424) - \[[`b364b9bd60`](https://github.com/nodejs/node/commit/b364b9bd60)] - **benchmark**: add trailing commas in `benchmark/fs` (Antoine du Hamel) [#&#8203;46426](https://github.com/nodejs/node/pull/46426) - \[[`e15ddba7e7`](https://github.com/nodejs/node/commit/e15ddba7e7)] - **build**: add GitHub Action for coverage with --without-intl (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954) - \[[`c781a48097`](https://github.com/nodejs/node/commit/c781a48097)] - **build**: do not disable inspector when intl is disabled (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954) - \[[`b4deb2fcd5`](https://github.com/nodejs/node/commit/b4deb2fcd5)] - **crypto**: don't assume FIPS is disabled by default (Michael Dawson) [#&#8203;46532](https://github.com/nodejs/node/pull/46532) - \[[`60a612607e`](https://github.com/nodejs/node/commit/60a612607e)] - **deps**: upgrade npm to 9.5.0 (npm team) [#&#8203;46673](https://github.com/nodejs/node/pull/46673) - \[[`6c997035fc`](https://github.com/nodejs/node/commit/6c997035fc)] - **deps**: update corepack to 0.16.0 (Node.js GitHub Bot) [#&#8203;46710](https://github.com/nodejs/node/pull/46710) - \[[`2ed3875eee`](https://github.com/nodejs/node/commit/2ed3875eee)] - **deps**: update undici to 5.20.0 (Node.js GitHub Bot) [#&#8203;46711](https://github.com/nodejs/node/pull/46711) - \[[`20cb13bf7f`](https://github.com/nodejs/node/commit/20cb13bf7f)] - **deps**: update ada to v1.0.1 (Yagiz Nizipli) [#&#8203;46550](https://github.com/nodejs/node/pull/46550) - \[[`c0983cfc06`](https://github.com/nodejs/node/commit/c0983cfc06)] - **deps**: copy `postject-api.h` and `LICENSE` to the `deps` folder (Darshan Sen) [#&#8203;46582](https://github.com/nodejs/node/pull/46582) - \[[`7d6c27eab1`](https://github.com/nodejs/node/commit/7d6c27eab1)] - **deps**: add ada as a dependency (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410) - \[[`7e7e2d037b`](https://github.com/nodejs/node/commit/7e7e2d037b)] - **deps**: update c-ares to 1.19.0 (Michaël Zasso) [#&#8203;46415](https://github.com/nodejs/node/pull/46415) - \[[`a79a8bf85a`](https://github.com/nodejs/node/commit/a79a8bf85a)] - **doc**: add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716) - \[[`6a8b04d709`](https://github.com/nodejs/node/commit/6a8b04d709)] - **doc**: move bcoe to emeriti (Benjamin Coe) [#&#8203;46703](https://github.com/nodejs/node/pull/46703) - \[[`a0a6ee0f54`](https://github.com/nodejs/node/commit/a0a6ee0f54)] - **doc**: add response.strictContentLength to documentation (Marco Ippolito) [#&#8203;46627](https://github.com/nodejs/node/pull/46627) - \[[`ffdd64dce3`](https://github.com/nodejs/node/commit/ffdd64dce3)] - **doc**: remove unused functions from example of `streamConsumers.text` (Deokjin Kim) [#&#8203;46581](https://github.com/nodejs/node/pull/46581) - \[[`c771d66864`](https://github.com/nodejs/node/commit/c771d66864)] - **doc**: fix test runner examples (Richie McColl) [#&#8203;46565](https://github.com/nodejs/node/pull/46565) - \[[`375bb22df9`](https://github.com/nodejs/node/commit/375bb22df9)] - **doc**: update test concurrency description / default values (richiemccoll) [#&#8203;46457](https://github.com/nodejs/node/pull/46457) - \[[`a7beac04ba`](https://github.com/nodejs/node/commit/a7beac04ba)] - **doc**: enrich test command with executable (Tony Gorez) [#&#8203;44347](https://github.com/nodejs/node/pull/44347) - \[[`aef57cd290`](https://github.com/nodejs/node/commit/aef57cd290)] - **doc**: fix wrong location of `requestTimeout`'s default value (Deokjin Kim) [#&#8203;46423](https://github.com/nodejs/node/pull/46423) - \[[`0c2c322ee6`](https://github.com/nodejs/node/commit/0c2c322ee6)] - **doc**: add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444) - \[[`31d3e3c486`](https://github.com/nodejs/node/commit/31d3e3c486)] - **doc**: fix -C flag usage (三咲智子 Kevin Deng) [#&#8203;46388](https://github.com/nodejs/node/pull/46388) - \[[`905a6756a3`](https://github.com/nodejs/node/commit/905a6756a3)] - **doc**: add note about major release rotation (Rafael Gonzaga) [#&#8203;46436](https://github.com/nodejs/node/pull/46436) - \[[`33a98c42fa`](https://github.com/nodejs/node/commit/33a98c42fa)] - **doc**: update threat model based on discussions (Michael Dawson) [#&#8203;46373](https://github.com/nodejs/node/pull/46373) - \[[`9b23309f53`](https://github.com/nodejs/node/commit/9b23309f53)] - **doc,lib,src,test**: rename --test-coverage (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017) - \[[`f192b83800`](https://github.com/nodejs/node/commit/f192b83800)] - **esm**: misc test refactors (Geoffrey Booth) [#&#8203;46631](https://github.com/nodejs/node/pull/46631) - \[[`7f2cdd36cf`](https://github.com/nodejs/node/commit/7f2cdd36cf)] - **http**: add note about clientError event (Paolo Insogna) [#&#8203;46584](https://github.com/nodejs/node/pull/46584) - \[[`d8c527f24f`](https://github.com/nodejs/node/commit/d8c527f24f)] - **http**: use v8::Array::New() with a prebuilt vector (Joyee Cheung) [#&#8203;46447](https://github.com/nodejs/node/pull/46447) - \[[`fa600fe003`](https://github.com/nodejs/node/commit/fa600fe003)] - **lib**: add trailing commas in `internal/process` (Antoine du Hamel) [#&#8203;46687](https://github.com/nodejs/node/pull/46687) - \[[`4aebee63f0`](https://github.com/nodejs/node/commit/4aebee63f0)] - **lib**: do not crash using workers with disabled shared array buffers (Ruben Bridgewater) [#&#8203;41023](https://github.com/nodejs/node/pull/41023) - \[[`a740908588`](https://github.com/nodejs/node/commit/a740908588)] - **lib**: delete module findPath unused params (sinkhaha) [#&#8203;45371](https://github.com/nodejs/node/pull/45371) - \[[`8b46c763d9`](https://github.com/nodejs/node/commit/8b46c763d9)] - **lib**: enforce use of trailing commas in more files (Antoine du Hamel) [#&#8203;46655](https://github.com/nodejs/node/pull/46655) - \[[`aae0020e27`](https://github.com/nodejs/node/commit/aae0020e27)] - **lib**: enforce use of trailing commas for functions (Antoine du Hamel) [#&#8203;46629](https://github.com/nodejs/node/pull/46629) - \[[`da9ebaf138`](https://github.com/nodejs/node/commit/da9ebaf138)] - **lib**: predeclare Event.isTrusted prop descriptor (Santiago Gimeno) [#&#8203;46527](https://github.com/nodejs/node/pull/46527) - \[[`35570e970e`](https://github.com/nodejs/node/commit/35570e970e)] - **lib**: tighten `AbortSignal.prototype.throwIfAborted` implementation (Antoine du Hamel) [#&#8203;46521](https://github.com/nodejs/node/pull/46521) - \[[`8590eb4830`](https://github.com/nodejs/node/commit/8590eb4830)] - **(SEMVER-MINOR)** **lib**: add aborted() utility function (Debadree Chatterjee) [#&#8203;46494](https://github.com/nodejs/node/pull/46494) - \[[`5d1a729f76`](https://github.com/nodejs/node/commit/5d1a729f76)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46624](https://github.com/nodejs/node/pull/46624) - \[[`cb9b9ad879`](https://github.com/nodejs/node/commit/cb9b9ad879)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;46513](https://github.com/nodejs/node/pull/46513) - \[[`17b82c85d9`](https://github.com/nodejs/node/commit/17b82c85d9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46504](https://github.com/nodejs/node/pull/46504) - \[[`bb14a2b098`](https://github.com/nodejs/node/commit/bb14a2b098)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;46411](https://github.com/nodejs/node/pull/46411) - \[[`152a3c7d1d`](https://github.com/nodejs/node/commit/152a3c7d1d)] - **process**: print versions by sort (Himself65) [#&#8203;46428](https://github.com/nodejs/node/pull/46428) - \[[`164bfe82cc`](https://github.com/nodejs/node/commit/164bfe82cc)] - **(SEMVER-MINOR)** **src**: add initial support for single executable applications (Darshan Sen) [#&#8203;45038](https://github.com/nodejs/node/pull/45038) - \[[`f3908411fd`](https://github.com/nodejs/node/commit/f3908411fd)] - **(SEMVER-MINOR)** **src**: allow optional Isolate termination in node::Stop() (Shelley Vohr) [#&#8203;46583](https://github.com/nodejs/node/pull/46583) - \[[`bdba600d32`](https://github.com/nodejs/node/commit/bdba600d32)] - **src**: remove icu usage from node_string.cc (Yagiz Nizipli) [#&#8203;46548](https://github.com/nodejs/node/pull/46548) - \[[`31fb2e22a0`](https://github.com/nodejs/node/commit/31fb2e22a0)] - **src**: add fflush() to SnapshotData::ToFile() (Anna Henningsen) [#&#8203;46531](https://github.com/nodejs/node/pull/46531) - \[[`c34bac2fed`](https://github.com/nodejs/node/commit/c34bac2fed)] - **(SEMVER-MINOR)** **src**: allow blobs in addition to `FILE*`s in embedder snapshot API (Anna Henningsen) [#&#8203;46491](https://github.com/nodejs/node/pull/46491) - \[[`c3325bfc0d`](https://github.com/nodejs/node/commit/c3325bfc0d)] - **src**: make edge names in BaseObjects more descriptive in heap snapshots (Joyee Cheung) [#&#8203;46492](https://github.com/nodejs/node/pull/46492) - \[[`3c5db8f419`](https://github.com/nodejs/node/commit/3c5db8f419)] - **src**: avoid leaking snapshot fp on error (Tobias Nießen) [#&#8203;46497](https://github.com/nodejs/node/pull/46497) - \[[`1a808a4aad`](https://github.com/nodejs/node/commit/1a808a4aad)] - **src**: check return value of ftell() (Tobias Nießen) [#&#8203;46495](https://github.com/nodejs/node/pull/46495) - \[[`f72f643549`](https://github.com/nodejs/node/commit/f72f643549)] - **src**: remove unused includes from main thread (Yagiz Nizipli) [#&#8203;46471](https://github.com/nodejs/node/pull/46471) - \[[`60c2a863da`](https://github.com/nodejs/node/commit/60c2a863da)] - **src**: use string_view instead of std::string& (Yagiz Nizipli) [#&#8203;46471](https://github.com/nodejs/node/pull/46471) - \[[`f35f6d2218`](https://github.com/nodejs/node/commit/f35f6d2218)] - **src**: use simdutf utf8 to utf16 instead of icu (Yagiz Nizipli) [#&#8203;46471](https://github.com/nodejs/node/pull/46471) - \[[`00b81c7afe`](https://github.com/nodejs/node/commit/00b81c7afe)] - **src**: replace icu with simdutf for char counts (Yagiz Nizipli) [#&#8203;46472](https://github.com/nodejs/node/pull/46472) - \[[`683a1f8f3e`](https://github.com/nodejs/node/commit/683a1f8f3e)] - **(SEMVER-MINOR)** **src**: allow snapshotting from the embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888) - \[[`658d2f4710`](https://github.com/nodejs/node/commit/658d2f4710)] - **(SEMVER-MINOR)** **src**: make build_snapshot a per-Isolate option, rather than a global one (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888) - \[[`6801d3753c`](https://github.com/nodejs/node/commit/6801d3753c)] - **(SEMVER-MINOR)** **src**: add snapshot support for embedder API (Anna Henningsen) [#&#8203;45888](https://github.com/nodejs/node/pull/45888) - \[[`95065c3185`](https://github.com/nodejs/node/commit/95065c3185)] - **src**: add additional utilities to crypto::SecureContext (James M Snell) [#&#8203;45912](https://github.com/nodejs/node/pull/45912) - \[[`efc59d0843`](https://github.com/nodejs/node/commit/efc59d0843)] - **src**: add KeyObjectHandle::HasInstance (James M Snell) [#&#8203;45912](https://github.com/nodejs/node/pull/45912) - \[[`a8a2d0e2b1`](https://github.com/nodejs/node/commit/a8a2d0e2b1)] - **src**: add GetCurrentCipherName/Version to crypto_common (James M Snell) [#&#8203;45912](https://github.com/nodejs/node/pull/45912) - \[[`6cf860d3d6`](https://github.com/nodejs/node/commit/6cf860d3d6)] - **src**: back snapshot I/O with a std::vector sink (Joyee Cheung) [#&#8203;46463](https://github.com/nodejs/node/pull/46463) - \[[`e77d538d32`](https://github.com/nodejs/node/commit/e77d538d32)] - **(SEMVER-MINOR)** **src**: allow embedder control of code generation policy (Shelley Vohr) [#&#8203;46368](https://github.com/nodejs/node/pull/46368) - \[[`7756438c81`](https://github.com/nodejs/node/commit/7756438c81)] - **stream**: add trailing commas in webstream source files (Antoine du Hamel) [#&#8203;46685](https://github.com/nodejs/node/pull/46685) - \[[`6b64a945c6`](https://github.com/nodejs/node/commit/6b64a945c6)] - **stream**: add trailing commas in stream source files (Antoine du Hamel) [#&#8203;46686](https://github.com/nodejs/node/pull/46686) - \[[`633d3f292d`](https://github.com/nodejs/node/commit/633d3f292d)] - **(SEMVER-MINOR)** **stream**: add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46273](https://github.com/nodejs/node/pull/46273) - \[[`f91260b32a`](https://github.com/nodejs/node/commit/f91260b32a)] - **stream**: refactor to use `validateAbortSignal` (Antoine du Hamel) [#&#8203;46520](https://github.com/nodejs/node/pull/46520) - \[[`6bf7388b62`](https://github.com/nodejs/node/commit/6bf7388b62)] - **stream**: allow transfer of readable byte streams (MrBBot) [#&#8203;45955](https://github.com/nodejs/node/pull/45955) - \[[`c2068537fa`](https://github.com/nodejs/node/commit/c2068537fa)] - **stream**: add pipeline() for webstreams (Debadree Chatterjee) [#&#8203;46307](https://github.com/nodejs/node/pull/46307) - \[[`4cf4b41c56`](https://github.com/nodejs/node/commit/4cf4b41c56)] - **stream**: add suport for abort signal in finished() for webstreams (Debadree Chatterjee) [#&#8203;46403](https://github.com/nodejs/node/pull/46403) - \[[`b844a09fa5`](https://github.com/nodejs/node/commit/b844a09fa5)] - **stream**: dont access Object.prototype.type during TransformStream init (Debadree Chatterjee) [#&#8203;46389](https://github.com/nodejs/node/pull/46389) - \[[`6ad01fd7b5`](https://github.com/nodejs/node/commit/6ad01fd7b5)] - **test**: fix `test-net-autoselectfamily` for kernel without IPv6 support (Livia Medeiros) [#&#8203;45856](https://github.com/nodejs/node/pull/45856) - \[[`2239e24306`](https://github.com/nodejs/node/commit/2239e24306)] - **test**: fix assertions in test-snapshot-dns-lookup\* (Tobias Nießen) [#&#8203;46618](https://github.com/nodejs/node/pull/46618) - \[[`c4ca98e786`](https://github.com/nodejs/node/commit/c4ca98e786)] - **test**: cover publicExponent validation in OpenSSL (Tobias Nießen) [#&#8203;46632](https://github.com/nodejs/node/pull/46632) - \[[`e60d3f2b1d`](https://github.com/nodejs/node/commit/e60d3f2b1d)] - **test**: add WPTRunner support for variants and generating WPT reports (Filip Skokan) [#&#8203;46498](https://github.com/nodejs/node/pull/46498) - \[[`217f2f6e2a`](https://github.com/nodejs/node/commit/217f2f6e2a)] - **test**: add trailing commas in `test/pummel` (Antoine du Hamel) [#&#8203;46610](https://github.com/nodejs/node/pull/46610) - \[[`641e1771c8`](https://github.com/nodejs/node/commit/641e1771c8)] - **test**: enable api-invalid-label.any.js in encoding WPTs (Filip Skokan) [#&#8203;46506](https://github.com/nodejs/node/pull/46506) - \[[`89aa161173`](https://github.com/nodejs/node/commit/89aa161173)] - **test**: fix tap parser fails if a test logs a number (Pulkit Gupta) [#&#8203;46056](https://github.com/nodejs/node/pull/46056) - \[[`faba8d4a30`](https://github.com/nodejs/node/commit/faba8d4a30)] - **test**: add trailing commas in `test/js-native-api` (Antoine du Hamel) [#&#8203;46385](https://github.com/nodejs/node/pull/46385) - \[[`d556ccdd26`](https://github.com/nodejs/node/commit/d556ccdd26)] - **test**: make more crypto tests work with BoringSSL (Shelley Vohr) [#&#8203;46429](https://github.com/nodejs/node/pull/46429) - \[[`c7f29b24a6`](https://github.com/nodejs/node/commit/c7f29b24a6)] - **test**: add trailing commas in `test/known_issues` (Antoine du Hamel) [#&#8203;46408](https://github.com/nodejs/node/pull/46408) - \[[`a66e7ca6c5`](https://github.com/nodejs/node/commit/a66e7ca6c5)] - **test**: add trailing commas in `test/internet` (Antoine du Hamel) [#&#8203;46407](https://github.com/nodejs/node/pull/46407) - \[[`0f75633086`](https://github.com/nodejs/node/commit/0f75633086)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;46575](https://github.com/nodejs/node/pull/46575) - \[[`ddf5002782`](https://github.com/nodejs/node/commit/ddf5002782)] - **test_runner**: parse non-ascii character correctly (Mert Can Altın) [#&#8203;45736](https://github.com/nodejs/node/pull/45736) - \[[`5b748114d2`](https://github.com/nodejs/node/commit/5b748114d2)] - **test_runner**: allow nesting test within describe (Moshe Atlow) [#&#8203;46544](https://github.com/nodejs/node/pull/46544) - \[[`c526f9f70a`](https://github.com/nodejs/node/commit/c526f9f70a)] - **test_runner**: fix missing test diagnostics (Moshe Atlow) [#&#8203;46450](https://github.com/nodejs/node/pull/46450) - \[[`b31aabb101`](https://github.com/nodejs/node/commit/b31aabb101)] - **test_runner**: top-level diagnostics not ommited when running with --test (Pulkit Gupta) [#&#8203;46441](https://github.com/nodejs/node/pull/46441) - \[[`6119289251`](https://github.com/nodejs/node/commit/6119289251)] - **test_runner**: add initial code coverage support (Colin Ihrig) [#&#8203;46017](https://github.com/nodejs/node/pull/46017) - \[[`6f24f0621e`](https://github.com/nodejs/node/commit/6f24f0621e)] - **timers**: cleanup no-longer relevant TODOs in timers/promises (James M Snell) [#&#8203;46499](https://github.com/nodejs/node/pull/46499) - \[[`1cd22e7d19`](https://github.com/nodejs/node/commit/1cd22e7d19)] - **tools**: fix bug in `prefer-primordials` lint rule (Antoine du Hamel) [#&#8203;46659](https://github.com/nodejs/node/pull/46659) - \[[`87df34ac28`](https://github.com/nodejs/node/commit/87df34ac28)] - **tools**: fix update-ada script (Yagiz Nizipli) [#&#8203;46550](https://github.com/nodejs/node/pull/46550) - \[[`f62b58a623`](https://github.com/nodejs/node/commit/f62b58a623)] - **tools**: add a daily wpt.fyi synchronized report upload (Filip Skokan) [#&#8203;46498](https://github.com/nodejs/node/pull/46498) - \[[`803f00aa32`](https://github.com/nodejs/node/commit/803f00aa32)] - **tools**: update eslint to 8.34.0 (Node.js GitHub Bot) [#&#8203;46625](https://github.com/nodejs/node/pull/46625) - \[[`f87216bdb2`](https://github.com/nodejs/node/commit/f87216bdb2)] - **tools**: update lint-md-dependencies to rollup@3.15.0 to-vfile@7.2.4 (Node.js GitHub Bot) [#&#8203;46623](https://github.com/nodejs/node/pull/46623) - \[[`8ee9e48560`](https://github.com/nodejs/node/commit/8ee9e48560)] - **tools**: update doc to remark-html@15.0.2 to-vfile@7.2.4 (Node.js GitHub Bot) [#&#8203;46622](https://github.com/nodejs/node/pull/46622) - \[[`148c5d9239`](https://github.com/nodejs/node/commit/148c5d9239)] - **tools**: update lint-md-dependencies to rollup@3.13.0 vfile-reporter@7.0.5 (Node.js GitHub Bot) [#&#8203;46503](https://github.com/nodejs/node/pull/46503) - \[[`51c6c61a58`](https://github.com/nodejs/node/commit/51c6c61a58)] - **tools**: update ESLint custom rules to not use the deprecated format (Antoine du Hamel) [#&#8203;46460](https://github.com/nodejs/node/pull/46460) - \[[`a51fe3c663`](https://github.com/nodejs/node/commit/a51fe3c663)] - **url**: replace url-parser with ada (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410) - \[[`129c9e7180`](https://github.com/nodejs/node/commit/129c9e7180)] - **url**: remove unused `URL::ToFilePath()` (Yagiz Nizipli) [#&#8203;46487](https://github.com/nodejs/node/pull/46487) - \[[`9a604d67c3`](https://github.com/nodejs/node/commit/9a604d67c3)] - **url**: remove unused `URL::toObject` (Yagiz Nizipli) [#&#8203;46486](https://github.com/nodejs/node/pull/46486) - \[[`d6fbebda54`](https://github.com/nodejs/node/commit/d6fbebda54)] - **url**: remove unused `setURLConstructor` function (Yagiz Nizipli) [#&#8203;46485](https://github.com/nodejs/node/pull/46485) - \[[`17b3ee33c2`](https://github.com/nodejs/node/commit/17b3ee33c2)] - **vm**: properly support symbols on globals (Nicolas DUBIEN) [#&#8203;46458](https://github.com/nodejs/node/pull/46458) ### [`v19.6.1`](https://github.com/nodejs/node/releases/tag/v19.6.1): 2023-02-16, Version 19.6.1 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.6.0...v19.6.1) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - **[CVE-2023-23919](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23919)**: OpenSSL errors not cleared in error stack (Medium) - **[CVE-2023-23918](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23918)**: Experimental Policies bypass via `process.mainModule.require`(High) - **[CVE-2023-23920](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23920)**: Insecure loading of ICU data through ICU_DATA environment variable (Low) More detailed information on each of the vulnerabilities can be found in [February 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/february-2023-security-releases/) blog post. This security release includes OpenSSL security updates as outlined in the recent [OpenSSL security advisory](https://www.openssl.org/news/secadv/20230207.txt) and `undici` security update. ##### Commits - \[[`97d9d55d2f`](https://github.com/nodejs/node/commit/97d9d55d2f)] - **build**: build ICU with ICU_NO_USER_DATA_OVERRIDE (RafaelGSS) [nodejs-private/node-private#374](https://github.com/nodejs-private/node-private/pull/374) - \[[`8ac90e6372`](https://github.com/nodejs/node/commit/8ac90e6372)] - **crypto**: clear OpenSSL error on invalid ca cert (RafaelGSS) [nodejs-private/node-private#368](https://github.com/nodejs-private/node-private/pull/368) - \[[`10a4c47e3a`](https://github.com/nodejs/node/commit/10a4c47e3a)] - **deps**: update undici to 5.19.1 (Node.js GitHub Bot) [#&#8203;46634](https://github.com/nodejs/node/pull/46634) - \[[`b10fc75e4a`](https://github.com/nodejs/node/commit/b10fc75e4a)] - **deps**: update undici to 5.18.0 (Node.js GitHub Bot) [#&#8203;46502](https://github.com/nodejs/node/pull/46502) - \[[`e9b64ea8b9`](https://github.com/nodejs/node/commit/e9b64ea8b9)] - **deps**: update undici to 5.17.1 (Node.js GitHub Bot) [#&#8203;46502](https://github.com/nodejs/node/pull/46502) - \[[`66a24cec47`](https://github.com/nodejs/node/commit/66a24cec47)] - **deps**: cherry-pick Windows ARM64 fix for openssl (Richard Lau) [#&#8203;46573](https://github.com/nodejs/node/pull/46573) - \[[`d8559aa6f5`](https://github.com/nodejs/node/commit/d8559aa6f5)] - **deps**: update archs files for quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46573](https://github.com/nodejs/node/pull/46573) - \[[`dc477f547d`](https://github.com/nodejs/node/commit/dc477f547d)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.8+quic (RafaelGSS) [#&#8203;46573](https://github.com/nodejs/node/pull/46573) - \[[`2aae197670`](https://github.com/nodejs/node/commit/2aae197670)] - **lib**: makeRequireFunction patch when experimental policy (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358) - \[[`6d17b693ec`](https://github.com/nodejs/node/commit/6d17b693ec)] - **policy**: makeRequireFunction on mainModule.require (RafaelGSS) [nodejs-private/node-private#358](https://github.com/nodejs-private/node-private/pull/358) ### [`v19.6.0`](https://github.com/nodejs/node/releases/tag/v19.6.0): 2023-02-02, Version 19.6.0 (Current), @&#8203;ruyadorno [Compare Source](https://github.com/nodejs/node/compare/v19.5.0...v19.6.0) ##### Notable changes ##### ESM: Leverage loaders when resolving subsequent loaders Loaders now apply to subsequent loaders, for example: `--experimental-loader ts-node --experimental-loader loader-written-in-typescript`. ##### Upgrade npm to 9.4.0 Added `--install-strategy=linked` option for installations similar to pnpm. ##### Other notable changes - \[[`a7c9daa497`](https://github.com/nodejs/node/commit/a7c9daa497)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#&#8203;46358](https://github.com/nodejs/node/pull/46358) - \[[`34d70ce615`](https://github.com/nodejs/node/commit/34d70ce615)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#&#8203;46320](https://github.com/nodejs/node/pull/46320) - \[[`b4ac794923`](https://github.com/nodejs/node/commit/b4ac794923)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#&#8203;46255](https://github.com/nodejs/node/pull/46255) - \[[`d52f60009a`](https://github.com/nodejs/node/commit/d52f60009a)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#&#8203;46218](https://github.com/nodejs/node/pull/46218) - \[[`5ad6c2088e`](https://github.com/nodejs/node/commit/5ad6c2088e)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#&#8203;46046](https://github.com/nodejs/node/pull/46046) - \[[`fbdc3f7316`](https://github.com/nodejs/node/commit/fbdc3f7316)] - **(SEMVER-MINOR)** **test_runner**: add reporters (Moshe Atlow) [#&#8203;45712](https://github.com/nodejs/node/pull/45712) ##### Commits - \[[`524eec70e2`](https://github.com/nodejs/node/commit/524eec70e2)] - **benchmark**: add trailing commas (Antoine du Hamel) [#&#8203;46370](https://github.com/nodejs/node/pull/46370) - \[[`f318a85408`](https://github.com/nodejs/node/commit/f318a85408)] - **benchmark**: remove buffer benchmarks redundancy (Brian White) [#&#8203;45735](https://github.com/nodejs/node/pull/45735) - \[[`6186b3ea14`](https://github.com/nodejs/node/commit/6186b3ea14)] - **benchmark**: introduce benchmark combination filtering (Brian White) [#&#8203;45735](https://github.com/nodejs/node/pull/45735) - \[[`5ad6c2088e`](https://github.com/nodejs/node/commit/5ad6c2088e)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#&#8203;46046](https://github.com/nodejs/node/pull/46046) - \[[`8c6c4338a6`](https://github.com/nodejs/node/commit/8c6c4338a6)] - **build**: export more OpenSSL symbols on Windows (Mohamed Akram) [#&#8203;45486](https://github.com/nodejs/node/pull/45486) - \[[`d795d93901`](https://github.com/nodejs/node/commit/d795d93901)] - **build**: fix MSVC 2022 Release compilation (Vladimir Morozov (REDMOND)) [#&#8203;46228](https://github.com/nodejs/node/pull/46228) - \[[`8e363cf8e8`](https://github.com/nodejs/node/commit/8e363cf8e8)] - **crypto**: include `hmac.h` in `crypto_util.h` (Adam Langley) [#&#8203;46279](https://github.com/nodejs/node/pull/46279) - \[[`c1f3e13c65`](https://github.com/nodejs/node/commit/c1f3e13c65)] - **deps**: update acorn to 8.8.2 (Node.js GitHub Bot) [#&#8203;46363](https://github.com/nodejs/node/pull/46363) - \[[`813b160bd7`](https://github.com/nodejs/node/commit/813b160bd7)] - **deps**: upgrade npm to 9.4.0 (npm team) [#&#8203;46353](https://github.com/nodejs/node/pull/46353) - \[[`9c2f3cea70`](https://github.com/nodejs/node/commit/9c2f3cea70)] - **deps**: update undici to 5.15.0 (Node.js GitHub Bot) [#&#8203;46213](https://github.com/nodejs/node/pull/46213) - \[[`312e10c1e3`](https://github.com/nodejs/node/commit/312e10c1e3)] - **deps**: update to uvwasi 0.0.15 (Colin Ihrig) [#&#8203;46253](https://github.com/nodejs/node/pull/46253) - \[[`c7024eec16`](https://github.com/nodejs/node/commit/c7024eec16)] - **doc**: correct the `sed` command for macOS in release process docs (Juan José) [#&#8203;46397](https://github.com/nodejs/node/pull/46397) - \[[`996bac044b`](https://github.com/nodejs/node/commit/996bac044b)] - **doc**: include webstreams in finished() and Duplex.from() parameters (Debadree Chatterjee) [#&#8203;46312](https://github.com/nodejs/node/pull/46312) - \[[`891d18d55c`](https://github.com/nodejs/node/commit/891d18d55c)] - **doc**: pass string to `textEncoder.encode` as input (Deokjin Kim) [#&#8203;46421](https://github.com/nodejs/node/pull/46421) - \[[`968db213f8`](https://github.com/nodejs/node/commit/968db213f8)] - **doc**: add tip for session.post function (theanarkh) [#&#8203;46354](https://github.com/nodejs/node/pull/46354) - \[[`a64d7f4e31`](https://github.com/nodejs/node/commit/a64d7f4e31)] - **doc**: add documentation for socket.destroySoon() (Luigi Pinca) [#&#8203;46337](https://github.com/nodejs/node/pull/46337) - \[[`975788899f`](https://github.com/nodejs/node/commit/975788899f)] - **doc**: fix commit message using test instead of deps (Tony Gorez) [#&#8203;46313](https://github.com/nodejs/node/pull/46313) - \[[`1d44017f52`](https://github.com/nodejs/node/commit/1d44017f52)] - **doc**: add v8 fast api contribution guidelines (Yagiz Nizipli) [#&#8203;46199](https://github.com/nodejs/node/pull/46199) - \[[`e2698c05fb`](https://github.com/nodejs/node/commit/e2698c05fb)] - **doc**: fix small typo error (0xflotus) [#&#8203;46186](https://github.com/nodejs/node/pull/46186) - \[[`f39fb8c001`](https://github.com/nodejs/node/commit/f39fb8c001)] - **doc**: mark some parameters as optional in webstreams (Deokjin Kim) [#&#8203;46269](https://github.com/nodejs/node/pull/46269) - \[[`7a9af38128`](https://github.com/nodejs/node/commit/7a9af38128)] - **doc**: update output of example in `events.getEventListeners` (Deokjin Kim) [#&#8203;46268](https://github.com/nodejs/node/pull/46268) - \[[`729642f30b`](https://github.com/nodejs/node/commit/729642f30b)] - **esm**: delete preload mock test (Geoffrey Booth) [#&#8203;46402](https://github.com/nodejs/node/pull/46402) - \[[`7aac21e90a`](https://github.com/nodejs/node/commit/7aac21e90a)] - **esm**: leverage loaders when resolving subsequent loaders (Maël Nison) [#&#8203;43772](https://github.com/nodejs/node/pull/43772) - \[[`a7c9daa497`](https://github.com/nodejs/node/commit/a7c9daa497)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#&#8203;46358](https://github.com/nodejs/node/pull/46358) - \[[`1ec6270efa`](https://github.com/nodejs/node/commit/1ec6270efa)] - **http**: res.setHeaders first implementation (Marco Ippolito) [#&#8203;46109](https://github.com/nodejs/node/pull/46109) - \[[`d4370259e9`](https://github.com/nodejs/node/commit/d4370259e9)] - **inspector**: allow opening inspector when `NODE_V8_COVERAGE` is set (Moshe Atlow) [#&#8203;46113](https://github.com/nodejs/node/pull/46113) - \[[`b966ef9a42`](https://github.com/nodejs/node/commit/b966ef9a42)] - **lib**: remove unnecessary ObjectGetValueSafe (Chengzhong Wu) [#&#8203;46335](https://github.com/nodejs/node/pull/46335) - \[[`2b06d66289`](https://github.com/nodejs/node/commit/2b06d66289)] - **lib**: cache parsed source maps to reduce memory footprint (Chengzhong Wu) [#&#8203;46225](https://github.com/nodejs/node/pull/46225) - \[[`c38673df91`](https://github.com/nodejs/node/commit/c38673df91)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46399](https://github.com/nodejs/node/pull/46399) - \[[`c10e602547`](https://github.com/nodejs/node/commit/c10e602547)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46303](https://github.com/nodejs/node/pull/46303) - \[[`9dc026b14a`](https://github.com/nodejs/node/commit/9dc026b14a)] - **meta**: add .mailmap entry (Rich Trott) [#&#8203;46303](https://github.com/nodejs/node/pull/46303) - \[[`7c514574f7`](https://github.com/nodejs/node/commit/7c514574f7)] - **meta**: move evanlucas to emeritus (Evan Lucas) [#&#8203;46274](https://github.com/nodejs/node/pull/46274) - \[[`3a3a6d87f1`](https://github.com/nodejs/node/commit/3a3a6d87f1)] - **module**: move test reporter loading (Geoffrey Booth) [#&#8203;45923](https://github.com/nodejs/node/pull/45923) - \[[`4ae2492a33`](https://github.com/nodejs/node/commit/4ae2492a33)] - **readline**: fix detection of carriage return (Antoine du Hamel) [#&#8203;46306](https://github.com/nodejs/node/pull/46306) - \[[`43cad78b7a`](https://github.com/nodejs/node/commit/43cad78b7a)] - **src**: stop tracing agent before shutting down libuv (Santiago Gimeno) [#&#8203;46380](https://github.com/nodejs/node/pull/46380) - \[[`360a3f3094`](https://github.com/nodejs/node/commit/360a3f3094)] - **src**: get rid of fp arithmetic in ParseIPv4Host (Tobias Nießen) [#&#8203;46326](https://github.com/nodejs/node/pull/46326) - \[[`e7b507a8cf`](https://github.com/nodejs/node/commit/e7b507a8cf)] - **src**: use UNREACHABLE instead of CHECK(falsy) (Tobias Nießen) [#&#8203;46317](https://github.com/nodejs/node/pull/46317) - \[[`4c59b60ee8`](https://github.com/nodejs/node/commit/4c59b60ee8)] - **src**: add support for ETW stack walking (José Dapena Paz) [#&#8203;46203](https://github.com/nodejs/node/pull/46203) - \[[`640d111f95`](https://github.com/nodejs/node/commit/640d111f95)] - **src**: refactor EndsInANumber in node_url.cc and adds IsIPv4NumberValid (Miguel Teixeira) [#&#8203;46227](https://github.com/nodejs/node/pull/46227) - \[[`fb7bee2b6e`](https://github.com/nodejs/node/commit/fb7bee2b6e)] - **src**: fix c++ exception on bad command line arg (Ben Noordhuis) [#&#8203;46290](https://github.com/nodejs/node/pull/46290) - \[[`18c95ec4bd`](https://github.com/nodejs/node/commit/18c95ec4bd)] - **src**: remove unreachable UNREACHABLE (Tobias Nießen) [#&#8203;46281](https://github.com/nodejs/node/pull/46281) - \[[`35bf93b01a`](https://github.com/nodejs/node/commit/35bf93b01a)] - **src**: replace custom ASCII validation with simdutf one (Anna Henningsen) [#&#8203;46271](https://github.com/nodejs/node/pull/46271) - \[[`8307a4bbcd`](https://github.com/nodejs/node/commit/8307a4bbcd)] - **src**: replace unreachable code with static_assert (Tobias Nießen) [#&#8203;46250](https://github.com/nodejs/node/pull/46250) - \[[`7cf0da020a`](https://github.com/nodejs/node/commit/7cf0da020a)] - **src**: use explicit C++17 fallthrough (Tobias Nießen) [#&#8203;46251](https://github.com/nodejs/node/pull/46251) - \[[`d52f60009a`](https://github.com/nodejs/node/commit/d52f60009a)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#&#8203;46218](https://github.com/nodejs/node/pull/46218) - \[[`2e5e7a9261`](https://github.com/nodejs/node/commit/2e5e7a9261)] - **stream**: remove brandchecks from stream duplexify (Debadree Chatterjee) [#&#8203;46315](https://github.com/nodejs/node/pull/46315) - \[[`9675863461`](https://github.com/nodejs/node/commit/9675863461)] - **stream**: fix readable stream as async iterator function (Erick Wendel) [#&#8203;46147](https://github.com/nodejs/node/pull/46147) - \[[`232bdd5d16`](https://github.com/nodejs/node/commit/232bdd5d16)] - **test**: add trailing commas in `test/node-api` (Antoine du Hamel) [#&#8203;46384](https://github.com/nodejs/node/pull/46384) - \[[`4cc081815d`](https://github.com/nodejs/node/commit/4cc081815d)] - **test**: add trailing commas in `test/message` (Antoine du Hamel) [#&#8203;46372](https://github.com/nodejs/node/pull/46372) - \[[`b83c5d9deb`](https://github.com/nodejs/node/commit/b83c5d9deb)] - **test**: add trailing commas in `test/pseudo-tty` (Antoine du Hamel) [#&#8203;46371](https://github.com/nodejs/node/pull/46371) - \[[`8a45c9d231`](https://github.com/nodejs/node/commit/8a45c9d231)] - **test**: fix tap escaping with and without --test (Pulkit Gupta) [#&#8203;46311](https://github.com/nodejs/node/pull/46311) - \[[`367dc41299`](https://github.com/nodejs/node/commit/367dc41299)] - **test**: set common.bits to 64 for loong64 (Shi Pujin) [#&#8203;45383](https://github.com/nodejs/node/pull/45383) - \[[`7385edc7d0`](https://github.com/nodejs/node/commit/7385edc7d0)] - **test**: s390x zlib test case fixes (Adam Majer) [#&#8203;46367](https://github.com/nodejs/node/pull/46367) - \[[`d5d837bdee`](https://github.com/nodejs/node/commit/d5d837bdee)] - **test**: fix logInTimeout is not function (theanarkh) [#&#8203;46348](https://github.com/nodejs/node/pull/46348) - \[[`a1d79546ac`](https://github.com/nodejs/node/commit/a1d79546ac)] - **test**: avoid trying to call sysctl directly (Adam Majer) [#&#8203;46366](https://github.com/nodejs/node/pull/46366) - \[[`747f3689e0`](https://github.com/nodejs/node/commit/747f3689e0)] - **test**: avoid left behind child processes (Richard Lau) [#&#8203;46276](https://github.com/nodejs/node/pull/46276) - \[[`940484b7aa`](https://github.com/nodejs/node/commit/940484b7aa)] - **test**: add failing test for readline with carriage return (Alec Mev) [#&#8203;46075](https://github.com/nodejs/node/pull/46075) - \[[`d13116a719`](https://github.com/nodejs/node/commit/d13116a719)] - **test,crypto**: add CFRG curve vectors to wrap/unwrap tests (Filip Skokan) [#&#8203;46406](https://github.com/nodejs/node/pull/46406) - \[[`398a7477b3`](https://github.com/nodejs/node/commit/398a7477b3)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;46267](https://github.com/nodejs/node/pull/46267) - \[[`8b473affe8`](https://github.com/nodejs/node/commit/8b473affe8)] - **test_runner**: make built in reporters internal (Colin Ihrig) [#&#8203;46092](https://github.com/nodejs/node/pull/46092) - \[[`a49e17e22b`](https://github.com/nodejs/node/commit/a49e17e22b)] - **test_runner**: report `file` in test runner events (Moshe Atlow) [#&#8203;46030](https://github.com/nodejs/node/pull/46030) - \[[`fbdc3f7316`](https://github.com/nodejs/node/commit/fbdc3f7316)] - **test_runner**: add reporters (Moshe Atlow) [#&#8203;45712](https://github.com/nodejs/node/pull/45712) - \[[`6579de8c47`](https://github.com/nodejs/node/commit/6579de8c47)] - **tools**: update eslint to 8.33.0 (Node.js GitHub Bot) [#&#8203;46400](https://github.com/nodejs/node/pull/46400) - \[[`bf62da55ad`](https://github.com/nodejs/node/commit/bf62da55ad)] - **tools**: update doc to unist-util-select@4.0.3 unist-util-visit@4.1.2 (Node.js GitHub Bot) [#&#8203;46364](https://github.com/nodejs/node/pull/46364) - \[[`b0acf55197`](https://github.com/nodejs/node/commit/b0acf55197)] - **tools**: update lint-md-dependencies to rollup@3.12.0 (Node.js GitHub Bot) [#&#8203;46398](https://github.com/nodejs/node/pull/46398) - \[[`88b904cf24`](https://github.com/nodejs/node/commit/88b904cf24)] - **tools**: require more trailing commas (Antoine du Hamel) [#&#8203;46346](https://github.com/nodejs/node/pull/46346) - \[[`4440b3ef87`](https://github.com/nodejs/node/commit/4440b3ef87)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;46302](https://github.com/nodejs/node/pull/46302) - \[[`e75faff4bd`](https://github.com/nodejs/node/commit/e75faff4bd)] - **tools**: allow icutrim.py to run on python2 (Michael Dawson) [#&#8203;46263](https://github.com/nodejs/node/pull/46263) - \[[`e460d16d73`](https://github.com/nodejs/node/commit/e460d16d73)] - **url**: refactor to use more primordials (Antoine du Hamel) [#&#8203;45966](https://github.com/nodejs/node/pull/45966) - \[[`b4ac794923`](https://github.com/nodejs/node/commit/b4ac794923)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#&#8203;46255](https://github.com/nodejs/node/pull/46255) - \[[`34d70ce615`](https://github.com/nodejs/node/commit/34d70ce615)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#&#8203;46320](https://github.com/nodejs/node/pull/46320) ### [`v19.5.0`](https://github.com/nodejs/node/releases/tag/v19.5.0): 2023-01-24, Version 19.5.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.4.0...v19.5.0) ##### Notable Changes - **http**: - (SEMVER-MINOR) join authorization headers (Marco Ippolito) [#&#8203;45982](https://github.com/nodejs/node/pull/45982) - **lib:**: - add webstreams to Duplex.from() (Debadree Chatterjee) [#&#8203;46190](https://github.com/nodejs/node/pull/46190) - **stream**: - implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46205](https://github.com/nodejs/node/pull/46205) ##### Commits - \[[`def36946da`](https://github.com/nodejs/node/commit/def36946da)] - **assert**: remove `assert.snapshot` (Moshe Atlow) [#&#8203;46112](https://github.com/nodejs/node/pull/46112) - \[[`e1c56ec3fd`](https://github.com/nodejs/node/commit/e1c56ec3fd)] - **benchmark,tools**: use os.availableParallelism() (Deokjin Kim) [#&#8203;46003](https://github.com/nodejs/node/pull/46003) - \[[`370f621d4d`](https://github.com/nodejs/node/commit/370f621d4d)] - **build**: add extra semi check (Jiawen Geng) [#&#8203;46194](https://github.com/nodejs/node/pull/46194) - \[[`476c6f892d`](https://github.com/nodejs/node/commit/476c6f892d)] - **crypto**: avoid hang when no algorithm available (Richard Lau) [#&#8203;46237](https://github.com/nodejs/node/pull/46237) - \[[`8b22310940`](https://github.com/nodejs/node/commit/8b22310940)] - **(SEMVER-MINOR)** **crypto**: add CryptoKey Symbol.toStringTag (Filip Skokan) [#&#8203;46042](https://github.com/nodejs/node/pull/46042) - \[[`78be87b9f9`](https://github.com/nodejs/node/commit/78be87b9f9)] - **crypto**: add cipher update/final methods encoding validation (vitpavlenko) [#&#8203;45990](https://github.com/nodejs/node/pull/45990) - \[[`dc0cdaa101`](https://github.com/nodejs/node/commit/dc0cdaa101)] - **crypto**: ensure auth tag set for chacha20-poly1305 (Ben Noordhuis) [#&#8203;46185](https://github.com/nodejs/node/pull/46185) - \[[`1146f02dc5`](https://github.com/nodejs/node/commit/1146f02dc5)] - **crypto**: return correct bit length in KeyObject's asymmetricKeyDetails (Filip Skokan) [#&#8203;46106](https://github.com/nodejs/node/pull/46106) - \[[`961710bb72`](https://github.com/nodejs/node/commit/961710bb72)] - **(SEMVER-MINOR)** **crypto**: add KeyObject Symbol.toStringTag (Filip Skokan) [#&#8203;46043](https://github.com/nodejs/node/pull/46043) - \[[`9cfdac6c82`](https://github.com/nodejs/node/commit/9cfdac6c82)] - **deps**: V8: cherry-pick [`e39af94`](https://github.com/nodejs/node/commit/e39af94dd18e) (Lu Yahan) [#&#8203;46142](https://github.com/nodejs/node/pull/46142) - \[[`26cde8efb7`](https://github.com/nodejs/node/commit/26cde8efb7)] - **deps**: update simdutf to 3.1.0 (Node.js GitHub Bot) [#&#8203;46257](https://github.com/nodejs/node/pull/46257) - \[[`3f9fb37130`](https://github.com/nodejs/node/commit/3f9fb37130)] - **deps**: cherrypick simdutf patch (Jiawen Geng) [#&#8203;46194](https://github.com/nodejs/node/pull/46194) - \[[`4ff2822836`](https://github.com/nodejs/node/commit/4ff2822836)] - **deps**: bump googletest to 2023.01.13 (Jiawen Geng) [#&#8203;46198](https://github.com/nodejs/node/pull/46198) - \[[`49556247d2`](https://github.com/nodejs/node/commit/49556247d2)] - **deps**: add /deps/\*\*/.github/ to .gitignore (Luigi Pinca) [#&#8203;46091](https://github.com/nodejs/node/pull/46091) - \[[`0c4df83e0d`](https://github.com/nodejs/node/commit/0c4df83e0d)] - **deps**: add simdutf version to metadata (Mike Roth) [#&#8203;46145](https://github.com/nodejs/node/pull/46145) - \[[`69aafc3ddd`](https://github.com/nodejs/node/commit/69aafc3ddd)] - **deps**: update simdutf to 2.1.0 (Node.js GitHub Bot) [#&#8203;46128](https://github.com/nodejs/node/pull/46128) - \[[`a266daccb5`](https://github.com/nodejs/node/commit/a266daccb5)] - **deps**: update corepack to 0.15.3 (Node.js GitHub Bot) [#&#8203;46037](https://github.com/nodejs/node/pull/46037) - \[[`6cd70573eb`](https://github.com/nodejs/node/commit/6cd70573eb)] - **deps**: upgrade npm to 9.3.1 (npm team) [#&#8203;46242](https://github.com/nodejs/node/pull/46242) - \[[`679aae2da8`](https://github.com/nodejs/node/commit/679aae2da8)] - **deps**: upgrade npm to 9.3.0 (npm team) [#&#8203;46193](https://github.com/nodejs/node/pull/46193) - \[[`38dd5061f2`](https://github.com/nodejs/node/commit/38dd5061f2)] - **dgram**: sync the old handle state to new handle (theanarkh) [#&#8203;46041](https://github.com/nodejs/node/pull/46041) - \[[`e36af49b35`](https://github.com/nodejs/node/commit/e36af49b35)] - **doc**: fix mismatched arguments of `NodeEventTarget` (Deokjin Kim) [#&#8203;45678](https://github.com/nodejs/node/pull/45678) - \[[`58b836f7c4`](https://github.com/nodejs/node/commit/58b836f7c4)] - **doc**: update events API example to have runnable code (Deokjin Kim) [#&#8203;45760](https://github.com/nodejs/node/pull/45760) - \[[`5c350298b4`](https://github.com/nodejs/node/commit/5c350298b4)] - **doc**: add note to tls docs about secureContext availability (Tim Gerk) [#&#8203;46224](https://github.com/nodejs/node/pull/46224) - \[[`90924ce198`](https://github.com/nodejs/node/commit/90924ce198)] - **doc**: add text around collaborative expectations (Michael Dawson) [#&#8203;46121](https://github.com/nodejs/node/pull/46121) - \[[`2d328355d4`](https://github.com/nodejs/node/commit/2d328355d4)] - **doc**: update to match changed `--dns-result-order` default (Mordy Tikotzky) [#&#8203;46148](https://github.com/nodejs/node/pull/46148) - \[[`1015a606b7`](https://github.com/nodejs/node/commit/1015a606b7)] - **doc**: add Node-API media link (Kevin Eady) [#&#8203;46189](https://github.com/nodejs/node/pull/46189) - \[[`6e355efcff`](https://github.com/nodejs/node/commit/6e355efcff)] - **doc**: update http.setMaxIdleHTTPParsers arguments (Debadree Chatterjee) [#&#8203;46168](https://github.com/nodejs/node/pull/46168) - \[[`f18ab9405a`](https://github.com/nodejs/node/commit/f18ab9405a)] - **doc**: use "file system" instead of "filesystem" (Rich Trott) [#&#8203;46178](https://github.com/nodejs/node/pull/46178) - \[[`1b45713b00`](https://github.com/nodejs/node/commit/1b45713b00)] - **doc**: https update default request timeout (Marco Ippolito) [#&#8203;46184](https://github.com/nodejs/node/pull/46184) - \[[`4c88721e2f`](https://github.com/nodejs/node/commit/4c88721e2f)] - **doc**: make options of readableStream.pipeTo as optional (Deokjin Kim) [#&#8203;46180](https://github.com/nodejs/node/pull/46180) - \[[`538c53f010`](https://github.com/nodejs/node/commit/538c53f010)] - **doc**: add PerformanceObserver.supportedEntryTypes to doc (theanarkh) [#&#8203;45962](https://github.com/nodejs/node/pull/45962) - \[[`eef7489d24`](https://github.com/nodejs/node/commit/eef7489d24)] - **doc**: duplex and readable from uncaught execption warning (Marco Ippolito) [#&#8203;46135](https://github.com/nodejs/node/pull/46135) - \[[`686fe585b5`](https://github.com/nodejs/node/commit/686fe585b5)] - **doc**: remove outdated sections from `maintaining-v8` (Antoine du Hamel) [#&#8203;46137](https://github.com/nodejs/node/pull/46137) - \[[`2e826ad528`](https://github.com/nodejs/node/commit/2e826ad528)] - **doc**: fix (EC)DHE remark in TLS docs (Tobias Nießen) [#&#8203;46114](https://github.com/nodejs/node/pull/46114) - \[[`2e22b29add`](https://github.com/nodejs/node/commit/2e22b29add)] - **doc**: fix ERR_TLS_RENEGOTIATION_DISABLED text (Tobias Nießen) [#&#8203;46122](https://github.com/nodejs/node/pull/46122) - \[[`e222a2f1d1`](https://github.com/nodejs/node/commit/e222a2f1d1)] - **doc**: fix spelling in SECURITY.md (Vaishno Chaitanya) [#&#8203;46124](https://github.com/nodejs/node/pull/46124) - \[[`7718e82f0d`](https://github.com/nodejs/node/commit/7718e82f0d)] - **doc**: abort controller emits error in child process (Debadree Chatterjee) [#&#8203;46072](https://github.com/nodejs/node/pull/46072) - \[[`76408bc1ed`](https://github.com/nodejs/node/commit/76408bc1ed)] - **doc**: fix `event.cancelBubble` documentation (Deokjin Kim) [#&#8203;45986](https://github.com/nodejs/node/pull/45986) - \[[`82023f2570`](https://github.com/nodejs/node/commit/82023f2570)] - **doc**: update output of example in inspector (Deokjin Kim) [#&#8203;46073](https://github.com/nodejs/node/pull/46073) - \[[`a42fc512b6`](https://github.com/nodejs/node/commit/a42fc512b6)] - **doc**: add personal pronouns option (Filip Skokan) [#&#8203;46118](https://github.com/nodejs/node/pull/46118) - \[[`fafae5955d`](https://github.com/nodejs/node/commit/fafae5955d)] - **doc**: mention how to run ncu-ci citgm (Rafael Gonzaga) [#&#8203;46090](https://github.com/nodejs/node/pull/46090) - \[[`e1fd2f24d9`](https://github.com/nodejs/node/commit/e1fd2f24d9)] - **doc**: include updating release optional step (Rafael Gonzaga) [#&#8203;46089](https://github.com/nodejs/node/pull/46089) - \[[`1996e610fd`](https://github.com/nodejs/node/commit/1996e610fd)] - **doc**: describe argument of `Symbol.for` (Deokjin Kim) [#&#8203;46019](https://github.com/nodejs/node/pull/46019) - \[[`b002330216`](https://github.com/nodejs/node/commit/b002330216)] - **doc,crypto**: fix WebCryptoAPI import keyData and export return (Filip Skokan) [#&#8203;46076](https://github.com/nodejs/node/pull/46076) - \[[`fa3e0c86c7`](https://github.com/nodejs/node/commit/fa3e0c86c7)] - **esm**: mark `importAssertions` as required (Antoine du Hamel) [#&#8203;46164](https://github.com/nodejs/node/pull/46164) - \[[`f85a8e4c59`](https://github.com/nodejs/node/commit/f85a8e4c59)] - **events**: add `initEvent` to Event (Deokjin Kim) [#&#8203;46069](https://github.com/nodejs/node/pull/46069) - \[[`5bdfaae680`](https://github.com/nodejs/node/commit/5bdfaae680)] - **events**: change status of `event.returnvalue` to legacy (Deokjin Kim) [#&#8203;46175](https://github.com/nodejs/node/pull/46175) - \[[`ad7846fe97`](https://github.com/nodejs/node/commit/ad7846fe97)] - **events**: change status of `event.cancelBubble` to legacy (Deokjin Kim) [#&#8203;46146](https://github.com/nodejs/node/pull/46146) - \[[`5304c89682`](https://github.com/nodejs/node/commit/5304c89682)] - **events**: change status of `event.srcElement` to legacy (Deokjin Kim) [#&#8203;46085](https://github.com/nodejs/node/pull/46085) - \[[`3dcdab3f16`](https://github.com/nodejs/node/commit/3dcdab3f16)] - **events**: check signal before listener (Deokjin Kim) [#&#8203;46054](https://github.com/nodejs/node/pull/46054) - \[[`907d67de76`](https://github.com/nodejs/node/commit/907d67de76)] - **http**: refactor to use `validateHeaderName` (Deokjin Kim) [#&#8203;46143](https://github.com/nodejs/node/pull/46143) - \[[`ae5141cb8a`](https://github.com/nodejs/node/commit/ae5141cb8a)] - **http**: writeHead if statusmessage is undefined dont override headers (Marco Ippolito) [#&#8203;46173](https://github.com/nodejs/node/pull/46173) - \[[`6e7f9fbc1d`](https://github.com/nodejs/node/commit/6e7f9fbc1d)] - **http**: refactor to use min of validateNumber for maxTotalSockets (Deokjin Kim) [#&#8203;46115](https://github.com/nodejs/node/pull/46115) - \[[`069a30bc4e`](https://github.com/nodejs/node/commit/069a30bc4e)] - **(SEMVER-MINOR)** **http**: join authorization headers (Marco Ippolito) [#&#8203;45982](https://github.com/nodejs/node/pull/45982) - \[[`68cde4cbcc`](https://github.com/nodejs/node/commit/68cde4cbcc)] - **lib**: add webstreams to Duplex.from() (Debadree Chatterjee) [#&#8203;46190](https://github.com/nodejs/node/pull/46190) - \[[`4d73ea708b`](https://github.com/nodejs/node/commit/4d73ea708b)] - **lib**: use kEmptyObject and update JSDoc in webstreams (Deokjin Kim) [#&#8203;46183](https://github.com/nodejs/node/pull/46183) - \[[`1cfa2e6762`](https://github.com/nodejs/node/commit/1cfa2e6762)] - **lib**: refactor to use validate function (Deokjin Kim) [#&#8203;46101](https://github.com/nodejs/node/pull/46101) - \[[`2eb87f23c9`](https://github.com/nodejs/node/commit/2eb87f23c9)] - **lib**: reuse invalid state errors on webstreams (Rafael Gonzaga) [#&#8203;46086](https://github.com/nodejs/node/pull/46086) - \[[`8684dae8d9`](https://github.com/nodejs/node/commit/8684dae8d9)] - **lib**: fix incorrect use of console intrinsic (Colin Ihrig) [#&#8203;46044](https://github.com/nodejs/node/pull/46044) - \[[`d044ed1d3e`](https://github.com/nodejs/node/commit/d044ed1d3e)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46215](https://github.com/nodejs/node/pull/46215) - \[[`5261560757`](https://github.com/nodejs/node/commit/5261560757)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46130](https://github.com/nodejs/node/pull/46130) - \[[`1b557bbee8`](https://github.com/nodejs/node/commit/1b557bbee8)] - **meta**: update comment in `CODEOWNERS` to better reflect current policy (Antoine du Hamel) [#&#8203;45944](https://github.com/nodejs/node/pull/45944) - \[[`54896ab011`](https://github.com/nodejs/node/commit/54896ab011)] - **module**: fix unintended mutation (Antoine du Hamel) [#&#8203;46108](https://github.com/nodejs/node/pull/46108) - \[[`bd98e5baba`](https://github.com/nodejs/node/commit/bd98e5baba)] - **node-api**: disambiguate napi_add_finalizer (Chengzhong Wu) [#&#8203;45401](https://github.com/nodejs/node/pull/45401) - \[[`f0508894d6`](https://github.com/nodejs/node/commit/f0508894d6)] - **perf_hooks**: fix checking range of `options.figures` in createHistogram (Deokjin Kim) [#&#8203;45999](https://github.com/nodejs/node/pull/45999) - \[[`e482d5e42d`](https://github.com/nodejs/node/commit/e482d5e42d)] - **src**: fix endianness of simdutf (Yagiz Nizipli) [#&#8203;46257](https://github.com/nodejs/node/pull/46257) - \[[`e2c47cdfad`](https://github.com/nodejs/node/commit/e2c47cdfad)] - **src**: make BuiltinLoader threadsafe and non-global (Anna Henningsen) [#&#8203;45942](https://github.com/nodejs/node/pull/45942) - \[[`36ae3ccff3`](https://github.com/nodejs/node/commit/36ae3ccff3)] - **src**: replace unreachable code with static_assert (Tobias Nießen) [#&#8203;46209](https://github.com/nodejs/node/pull/46209) - \[[`9d55a1f9a1`](https://github.com/nodejs/node/commit/9d55a1f9a1)] - **src**: hide kMaxDigestMultiplier outside HKDF impl (Tobias Nießen) [#&#8203;46206](https://github.com/nodejs/node/pull/46206) - \[[`d3d62ed82c`](https://github.com/nodejs/node/commit/d3d62ed82c)] - **src**: distinguish env stopping flags (Chengzhong Wu) [#&#8203;45907](https://github.com/nodejs/node/pull/45907) - \[[`e85f76686c`](https://github.com/nodejs/node/commit/e85f76686c)] - **src**: remove return after abort (Shelley Vohr) [#&#8203;46172](https://github.com/nodejs/node/pull/46172) - \[[`7dc9a53b18`](https://github.com/nodejs/node/commit/7dc9a53b18)] - **src**: remove unnecessary semicolons (Shelley Vohr) [#&#8203;46171](https://github.com/nodejs/node/pull/46171) - \[[`28af831d5a`](https://github.com/nodejs/node/commit/28af831d5a)] - **src**: use simdutf for converting externalized builtins to UTF-16 (Anna Henningsen) [#&#8203;46119](https://github.com/nodejs/node/pull/46119) - \[[`e8eaa490af`](https://github.com/nodejs/node/commit/e8eaa490af)] - **src**: use constant strings for memory info names (Chengzhong Wu) [#&#8203;46087](https://github.com/nodejs/node/pull/46087) - \[[`f4559a1354`](https://github.com/nodejs/node/commit/f4559a1354)] - **src**: fix typo in node_snapshotable.cc (Vadim) [#&#8203;46103](https://github.com/nodejs/node/pull/46103) - \[[`ca8ff08a5c`](https://github.com/nodejs/node/commit/ca8ff08a5c)] - **src**: keep PipeWrap::Open function consistent with TCPWrap (theanarkh) [#&#8203;46064](https://github.com/nodejs/node/pull/46064) - \[[`a936eaeb34`](https://github.com/nodejs/node/commit/a936eaeb34)] - **src**: speed up process.getActiveResourcesInfo() (Darshan Sen) [#&#8203;46014](https://github.com/nodejs/node/pull/46014) - \[[`5cf595659f`](https://github.com/nodejs/node/commit/5cf595659f)] - **src,lib**: the handle keeps loop alive in cluster rr mode (theanarkh) [#&#8203;46161](https://github.com/nodejs/node/pull/46161) - \[[`18695595e1`](https://github.com/nodejs/node/commit/18695595e1)] - **stream**: fix pipeline calling end on destination more than once (Debadree Chatterjee) [#&#8203;46226](https://github.com/nodejs/node/pull/46226) - \[[`e5f53b51f0`](https://github.com/nodejs/node/commit/e5f53b51f0)] - **stream**: implement finished() for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46205](https://github.com/nodejs/node/pull/46205) - \[[`2f23f17f93`](https://github.com/nodejs/node/commit/2f23f17f93)] - **test**: reduce `fs-write-optional-params` flakiness (LiviaMedeiros) [#&#8203;46238](https://github.com/nodejs/node/pull/46238) - \[[`255f177108`](https://github.com/nodejs/node/commit/255f177108)] - **test**: enable more case of bad buffer in `fs.write` (Deokjin Kim) [#&#8203;46236](https://github.com/nodejs/node/pull/46236) - \[[`c09b2036c7`](https://github.com/nodejs/node/commit/c09b2036c7)] - **test**: update postject to 1.0.0-alpha.4 (Node.js GitHub Bot) [#&#8203;46212](https://github.com/nodejs/node/pull/46212) - \[[`4ac5c7180f`](https://github.com/nodejs/node/commit/4ac5c7180f)] - **test**: refactor to avoid mutation of global by a loader (Michaël Zasso) [#&#8203;46220](https://github.com/nodejs/node/pull/46220) - \[[`bbf9da8e2c`](https://github.com/nodejs/node/commit/bbf9da8e2c)] - **test**: improve test coverage for WHATWG `TextDecoder` (Juan José) [#&#8203;45241](https://github.com/nodejs/node/pull/45241) - \[[`4f491d368c`](https://github.com/nodejs/node/commit/4f491d368c)] - **test**: add fix so that test exits if port 42 is unprivileged (Suyash Nayan) [#&#8203;45904](https://github.com/nodejs/node/pull/45904) - \[[`6e2f7228f3`](https://github.com/nodejs/node/commit/6e2f7228f3)] - **test**: use `os.availableParallelism()` (Deokjin Kim) [#&#8203;46003](https://github.com/nodejs/node/pull/46003) - \[[`c77b0da512`](https://github.com/nodejs/node/commit/c77b0da512)] - **test**: fix flaky test-runner-exit-code.js (Colin Ihrig) [#&#8203;46138](https://github.com/nodejs/node/pull/46138) - \[[`f309e2acb6`](https://github.com/nodejs/node/commit/f309e2acb6)] - **test**: update Web Events WPT (Deokjin Kim) [#&#8203;46051](https://github.com/nodejs/node/pull/46051) - \[[`0f60bc9bbc`](https://github.com/nodejs/node/commit/0f60bc9bbc)] - **test**: add test to once() in event lib (Jonathan Diaz) [#&#8203;46126](https://github.com/nodejs/node/pull/46126) - \[[`8a8b18678a`](https://github.com/nodejs/node/commit/8a8b18678a)] - **test,esm**: validate more edge cases for dynamic imports (Antoine du Hamel) [#&#8203;46059](https://github.com/nodejs/node/pull/46059) - \[[`4d3743938f`](https://github.com/nodejs/node/commit/4d3743938f)] - **test_runner**: update comment to comply with eslint no-fallthrough rule (Antoine du Hamel) [#&#8203;46258](https://github.com/nodejs/node/pull/46258) - \[[`653b108fdc`](https://github.com/nodejs/node/commit/653b108fdc)] - **tools**: update eslint to 8.32.0 (Node.js GitHub Bot) [#&#8203;46258](https://github.com/nodejs/node/pull/46258) - \[[`a4b0c916e0`](https://github.com/nodejs/node/commit/a4b0c916e0)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;46214](https://github.com/nodejs/node/pull/46214) - \[[`f4465e656d`](https://github.com/nodejs/node/commit/f4465e656d)] - **tools**: fix macro name in update-undici (Almeida) [#&#8203;46217](https://github.com/nodejs/node/pull/46217) - \[[`1aa4534c6f`](https://github.com/nodejs/node/commit/1aa4534c6f)] - **tools**: add automation for updating postject dependency (Darshan Sen) [#&#8203;46157](https://github.com/nodejs/node/pull/46157) - \[[`c150b312cd`](https://github.com/nodejs/node/commit/c150b312cd)] - **tools**: update create-or-update-pull-request-action (Michaël Zasso) [#&#8203;46169](https://github.com/nodejs/node/pull/46169) - \[[`c68a043400`](https://github.com/nodejs/node/commit/c68a043400)] - **tools**: update eslint to 8.31.0 (Node.js GitHub Bot) [#&#8203;46131](https://github.com/nodejs/node/pull/46131) - \[[`ac90e419d1`](https://github.com/nodejs/node/commit/ac90e419d1)] - **tools**: update lint-md-dependencies to rollup@3.9.1 (Node.js GitHub Bot) [#&#8203;46129](https://github.com/nodejs/node/pull/46129) - \[[`750fcf84eb`](https://github.com/nodejs/node/commit/750fcf84eb)] - **tools**: move update-eslint.sh to dep_updaters/ (Luigi Pinca) [#&#8203;46088](https://github.com/nodejs/node/pull/46088) - \[[`2e8750a18c`](https://github.com/nodejs/node/commit/2e8750a18c)] - **tools**: make update-eslint.sh work with npm@9 (Luigi Pinca) [#&#8203;46088](https://github.com/nodejs/node/pull/46088) - \[[`e90a3a6eff`](https://github.com/nodejs/node/commit/e90a3a6eff)] - **tools**: fix lint rule recommendation (Colin Ihrig) [#&#8203;46044](https://github.com/nodejs/node/pull/46044) - \[[`0985ef8bfb`](https://github.com/nodejs/node/commit/0985ef8bfb)] - **tools**: add `ArrayPrototypeConcat` to the list of primordials to avoid (Antoine du Hamel) [#&#8203;44445](https://github.com/nodejs/node/pull/44445) - \[[`ed69a3af92`](https://github.com/nodejs/node/commit/ed69a3af92)] - **tools**: add `prefer-proto` rule (Jordan Harband) [#&#8203;46083](https://github.com/nodejs/node/pull/46083) - \[[`4c1c20fae2`](https://github.com/nodejs/node/commit/4c1c20fae2)] - **trace_events**: refactor to use `validateStringArray` (Deokjin Kim) [#&#8203;46012](https://github.com/nodejs/node/pull/46012) - \[[`6c8a81d2dc`](https://github.com/nodejs/node/commit/6c8a81d2dc)] - **vm**: refactor to use validate function (Deokjin Kim) [#&#8203;46176](https://github.com/nodejs/node/pull/46176) ### [`v19.4.0`](https://github.com/nodejs/node/releases/tag/v19.4.0): 2023-01-06, Version 19.4.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.3.0...v19.4.0) ##### Notable Changes - **buffer**: - (SEMVER-MINOR) add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) [#&#8203;45947](https://github.com/nodejs/node/pull/45947) - **http**: - (SEMVER-MINOR) improved timeout defaults handling (Paolo Insogna) [#&#8203;45778](https://github.com/nodejs/node/pull/45778) - **net**: - add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777) - **os**: - (SEMVER-MINOR) add availableParallelism() (Colin Ihrig) [#&#8203;45895](https://github.com/nodejs/node/pull/45895) - **util**: - add fast path for text-decoder fatal flag (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803) ##### Commits - \[[`54b748acc0`](https://github.com/nodejs/node/commit/54b748acc0)] - **async_hooks**: refactor to use `validateObject` (Deokjin Kim) [#&#8203;46004](https://github.com/nodejs/node/pull/46004) - \[[`cf2ff81f26`](https://github.com/nodejs/node/commit/cf2ff81f26)] - **benchmark**: include webstreams benchmark (Rafael Gonzaga) [#&#8203;45876](https://github.com/nodejs/node/pull/45876) - \[[`6e3d7f8c2d`](https://github.com/nodejs/node/commit/6e3d7f8c2d)] - **bootstrap**: optimize modules loaded in the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`d181b76374`](https://github.com/nodejs/node/commit/d181b76374)] - **bootstrap**: make CJS loader snapshotable (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`508e830765`](https://github.com/nodejs/node/commit/508e830765)] - **bootstrap**: include event_target into the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`dd77c05480`](https://github.com/nodejs/node/commit/dd77c05480)] - **bootstrap**: support module_wrap binding in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`fbe399c75c`](https://github.com/nodejs/node/commit/fbe399c75c)] - **(SEMVER-MINOR)** **buffer**: add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) [#&#8203;45947](https://github.com/nodejs/node/pull/45947) - \[[`233a66f937`](https://github.com/nodejs/node/commit/233a66f937)] - **build**: fix arm64 cross-compile from powershell (Stefan Stojanovic) [#&#8203;45890](https://github.com/nodejs/node/pull/45890) - \[[`e7b98a3da2`](https://github.com/nodejs/node/commit/e7b98a3da2)] - **build**: add option to disable shared readonly heap (Anna Henningsen) [#&#8203;45887](https://github.com/nodejs/node/pull/45887) - \[[`777c551edf`](https://github.com/nodejs/node/commit/777c551edf)] - **crypto**: ensure exported webcrypto EC keys use uncompressed point format (Ben Noordhuis) [#&#8203;46021](https://github.com/nodejs/node/pull/46021) - \[[`f7dba5bef7`](https://github.com/nodejs/node/commit/f7dba5bef7)] - **crypto**: fix globalThis.crypto this check (Filip Skokan) [#&#8203;45857](https://github.com/nodejs/node/pull/45857) - \[[`56f3ad101b`](https://github.com/nodejs/node/commit/56f3ad101b)] - **crypto**: fix CryptoKey prototype WPT (Filip Skokan) [#&#8203;45857](https://github.com/nodejs/node/pull/45857) - \[[`c9747f1140`](https://github.com/nodejs/node/commit/c9747f1140)] - **crypto**: use globalThis.crypto over require('crypto').webcrypto (Filip Skokan) [#&#8203;45817](https://github.com/nodejs/node/pull/45817) - \[[`6eede72241`](https://github.com/nodejs/node/commit/6eede72241)] - **crypto**: fix CryptoKey WebIDL conformance (Filip Skokan) [#&#8203;45855](https://github.com/nodejs/node/pull/45855) - \[[`c9802862b7`](https://github.com/nodejs/node/commit/c9802862b7)] - **crypto**: fix error when getRandomValues is called without arguments (Filip Skokan) [#&#8203;45854](https://github.com/nodejs/node/pull/45854) - \[[`3d09754186`](https://github.com/nodejs/node/commit/3d09754186)] - **debugger**: refactor console in lib/internal/debugger/inspect.js (Debadree Chatterjee) [#&#8203;45847](https://github.com/nodejs/node/pull/45847) - \[[`fdda2ff53b`](https://github.com/nodejs/node/commit/fdda2ff53b)] - **deps**: V8: cherry-pick [`30861a3`](https://github.com/nodejs/node/commit/30861a39323d) (Aaron Friel) [#&#8203;45851](https://github.com/nodejs/node/pull/45851) - \[[`71bf513062`](https://github.com/nodejs/node/commit/71bf513062)] - **deps**: patch V8 to 10.8.168.25 (Michaël Zasso) [#&#8203;45996](https://github.com/nodejs/node/pull/45996) - \[[`0552b13232`](https://github.com/nodejs/node/commit/0552b13232)] - **deps**: update simdutf to 2.0.9 (Node.js GitHub Bot) [#&#8203;45975](https://github.com/nodejs/node/pull/45975) - \[[`e73be1b3b9`](https://github.com/nodejs/node/commit/e73be1b3b9)] - **deps**: update to uvwasi 0.0.14 (Colin Ihrig) [#&#8203;45970](https://github.com/nodejs/node/pull/45970) - \[[`e4323f01c1`](https://github.com/nodejs/node/commit/e4323f01c1)] - **deps**: fix updater github workflow job (Yagiz Nizipli) [#&#8203;45972](https://github.com/nodejs/node/pull/45972) - \[[`05fee67238`](https://github.com/nodejs/node/commit/05fee67238)] - ***Revert*** "**deps**: disable avx512 for simutf on benchmark ci" (Yagiz Nizipli) [#&#8203;45948](https://github.com/nodejs/node/pull/45948) - \[[`98fc94a444`](https://github.com/nodejs/node/commit/98fc94a444)] - **deps**: disable avx512 for simutf on benchmark ci (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803) - \[[`344c5ec0ea`](https://github.com/nodejs/node/commit/344c5ec0ea)] - **deps**: add simdutf dependency (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803) - \[[`7bdad948c8`](https://github.com/nodejs/node/commit/7bdad948c8)] - **deps**: V8: backport [`8ca9f77`](https://github.com/nodejs/node/commit/8ca9f77d0f7c) (Anna Henningsen) [#&#8203;45871](https://github.com/nodejs/node/pull/45871) - \[[`29f90cf5af`](https://github.com/nodejs/node/commit/29f90cf5af)] - **deps**: update timezone to 2022g (Node.js GitHub Bot) [#&#8203;45731](https://github.com/nodejs/node/pull/45731) - \[[`99fec0bf64`](https://github.com/nodejs/node/commit/99fec0bf64)] - **deps**: update undici to 5.14.0 (Node.js GitHub Bot) [#&#8203;45812](https://github.com/nodejs/node/pull/45812) - \[[`faee973fa7`](https://github.com/nodejs/node/commit/faee973fa7)] - **deps**: V8: cherry-pick [`bc831f8`](https://github.com/nodejs/node/commit/bc831f8ba33b) (Yagiz Nizipli) [#&#8203;45788](https://github.com/nodejs/node/pull/45788) - \[[`e2944109c6`](https://github.com/nodejs/node/commit/e2944109c6)] - **deps**: V8: cherry-pick [`bf0bd48`](https://github.com/nodejs/node/commit/bf0bd4868dde) (Michaël Zasso) [#&#8203;45908](https://github.com/nodejs/node/pull/45908) - \[[`e113d169ee`](https://github.com/nodejs/node/commit/e113d169ee)] - **doc**: update isUtf8 description (Yagiz Nizipli) [#&#8203;45973](https://github.com/nodejs/node/pull/45973) - \[[`9e16406066`](https://github.com/nodejs/node/commit/9e16406066)] - **doc**: sort http.createServer() options alphabetically (Luigi Pinca) [#&#8203;45680](https://github.com/nodejs/node/pull/45680) - \[[`49253e1a8f`](https://github.com/nodejs/node/commit/49253e1a8f)] - **doc**: use console.error for error case in timers and tls (Deokjin Kim) [#&#8203;46002](https://github.com/nodejs/node/pull/46002) - \[[`8be1b666a7`](https://github.com/nodejs/node/commit/8be1b666a7)] - **doc**: fix wrong output of example in `url.protocol` (Deokjin Kim) [#&#8203;45954](https://github.com/nodejs/node/pull/45954) - \[[`9251dce8b2`](https://github.com/nodejs/node/commit/9251dce8b2)] - **doc**: use `os.availableParallelism()` in async_context and cluster (Deokjin Kim) [#&#8203;45979](https://github.com/nodejs/node/pull/45979) - \[[`952e03ae66`](https://github.com/nodejs/node/commit/952e03ae66)] - **doc**: make EventEmitterAsyncResource's `options` as optional (Deokjin Kim) [#&#8203;45985](https://github.com/nodejs/node/pull/45985) - \[[`71cc3b3712`](https://github.com/nodejs/node/commit/71cc3b3712)] - **doc**: replace single executable champion in strategic initiatives doc (Darshan Sen) [#&#8203;45956](https://github.com/nodejs/node/pull/45956) - \[[`eaf6b63637`](https://github.com/nodejs/node/commit/eaf6b63637)] - **doc**: update error message of example in repl (Deokjin Kim) [#&#8203;45920](https://github.com/nodejs/node/pull/45920) - \[[`d8b5b7da75`](https://github.com/nodejs/node/commit/d8b5b7da75)] - **doc**: fix typos in packages.md (Eric Mutta) [#&#8203;45957](https://github.com/nodejs/node/pull/45957) - \[[`4457e051c9`](https://github.com/nodejs/node/commit/4457e051c9)] - **doc**: remove port from example in `url.hostname` (Deokjin Kim) [#&#8203;45927](https://github.com/nodejs/node/pull/45927) - \[[`908f4fab52`](https://github.com/nodejs/node/commit/908f4fab52)] - **doc**: show output of example in http (Deokjin Kim) [#&#8203;45915](https://github.com/nodejs/node/pull/45915) - \[[`faf5c23084`](https://github.com/nodejs/node/commit/faf5c23084)] - **(SEMVER-MINOR)** **doc**: add parallelism note to os.cpus() (Colin Ihrig) [#&#8203;45895](https://github.com/nodejs/node/pull/45895) - \[[`9ed547b73c`](https://github.com/nodejs/node/commit/9ed547b73c)] - **doc**: fix wrong output of example in `url.password` (Deokjin Kim) [#&#8203;45928](https://github.com/nodejs/node/pull/45928) - \[[`a89f8c1337`](https://github.com/nodejs/node/commit/a89f8c1337)] - **doc**: fix some history entries in `deprecations.md` (Antoine du Hamel) [#&#8203;45891](https://github.com/nodejs/node/pull/45891) - \[[`cf30fca23f`](https://github.com/nodejs/node/commit/cf30fca23f)] - **doc**: add tip for NODE_MODULE (theanarkh) [#&#8203;45797](https://github.com/nodejs/node/pull/45797) - \[[`d500445aec`](https://github.com/nodejs/node/commit/d500445aec)] - **doc**: reduce likelihood of mismerges during release (Richard Lau) [#&#8203;45864](https://github.com/nodejs/node/pull/45864) - \[[`e229f060e3`](https://github.com/nodejs/node/commit/e229f060e3)] - **doc**: add backticks to webcrypto rsaOaepParams (Filip Skokan) [#&#8203;45883](https://github.com/nodejs/node/pull/45883) - \[[`dfa58c1947`](https://github.com/nodejs/node/commit/dfa58c1947)] - **doc**: remove release cleanup step (Michaël Zasso) [#&#8203;45858](https://github.com/nodejs/node/pull/45858) - \[[`b93a9670a8`](https://github.com/nodejs/node/commit/b93a9670a8)] - **doc**: add stream/promises pipeline and finished to doc (Marco Ippolito) [#&#8203;45832](https://github.com/nodejs/node/pull/45832) - \[[`c86f4a17d6`](https://github.com/nodejs/node/commit/c86f4a17d6)] - **doc**: remove Juan Jose keys (Rafael Gonzaga) [#&#8203;45827](https://github.com/nodejs/node/pull/45827) - \[[`c37a119f90`](https://github.com/nodejs/node/commit/c37a119f90)] - **doc**: remove last example use of require('crypto').webcrypto (Filip Skokan) [#&#8203;45819](https://github.com/nodejs/node/pull/45819) - \[[`7e047dfcbb`](https://github.com/nodejs/node/commit/7e047dfcbb)] - **doc**: fix wrong output of example in util (Deokjin Kim) [#&#8203;45825](https://github.com/nodejs/node/pull/45825) - \[[`8046e0ef53`](https://github.com/nodejs/node/commit/8046e0ef53)] - **errors**: refactor to use a method that formats a list string (Daeyeon Jeong) [#&#8203;45793](https://github.com/nodejs/node/pull/45793) - \[[`2d49e0e635`](https://github.com/nodejs/node/commit/2d49e0e635)] - **esm**: rewrite loader hooks test (Geoffrey Booth) [#&#8203;46016](https://github.com/nodejs/node/pull/46016) - \[[`47cc0e4bdb`](https://github.com/nodejs/node/commit/47cc0e4bdb)] - **events**: fix violation of symbol naming convention (Deokjin Kim) [#&#8203;45978](https://github.com/nodejs/node/pull/45978) - \[[`22a66cff66`](https://github.com/nodejs/node/commit/22a66cff66)] - **fs**: refactor to use `validateInteger` (Deokjin Kim) [#&#8203;46008](https://github.com/nodejs/node/pull/46008) - \[[`bc43922949`](https://github.com/nodejs/node/commit/bc43922949)] - **http**: replace `var` with `const` on code of comment (Deokjin Kim) [#&#8203;45951](https://github.com/nodejs/node/pull/45951) - \[[`7ea72ee421`](https://github.com/nodejs/node/commit/7ea72ee421)] - **(SEMVER-MINOR)** **http**: improved timeout defaults handling (Paolo Insogna) [#&#8203;45778](https://github.com/nodejs/node/pull/45778) - \[[`7f1daedf4c`](https://github.com/nodejs/node/commit/7f1daedf4c)] - **lib**: update JSDoc of `getOwnPropertyValueOrDefault` (Deokjin Kim) [#&#8203;46010](https://github.com/nodejs/node/pull/46010) - \[[`28f9089b83`](https://github.com/nodejs/node/commit/28f9089b83)] - **lib**: use `kEmptyObject` as default value for options (Deokjin Kim) [#&#8203;46011](https://github.com/nodejs/node/pull/46011) - \[[`f6c6673ec4`](https://github.com/nodejs/node/commit/f6c6673ec4)] - **lib**: lazy-load deps in modules/run_main.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`e529ea4144`](https://github.com/nodejs/node/commit/e529ea4144)] - **lib**: lazy-load deps in source_map_cache.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`943852ab83`](https://github.com/nodejs/node/commit/943852ab83)] - **lib**: add getLazy() method to internal/util (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`25d0a94453`](https://github.com/nodejs/node/commit/25d0a94453)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;46040](https://github.com/nodejs/node/pull/46040) - \[[`0a70316ecc`](https://github.com/nodejs/node/commit/0a70316ecc)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45968](https://github.com/nodejs/node/pull/45968) - \[[`86e30fcb4d`](https://github.com/nodejs/node/commit/86e30fcb4d)] - **meta**: add `nodejs/loaders` to CODEOWNERS (Geoffrey Booth) [#&#8203;45940](https://github.com/nodejs/node/pull/45940) - \[[`e95695654d`](https://github.com/nodejs/node/commit/e95695654d)] - **meta**: add `nodejs/test_runner` to CODEOWNERS (Antoine du Hamel) [#&#8203;45935](https://github.com/nodejs/node/pull/45935) - \[[`353dab5bdf`](https://github.com/nodejs/node/commit/353dab5bdf)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45899](https://github.com/nodejs/node/pull/45899) - \[[`0b3512f690`](https://github.com/nodejs/node/commit/0b3512f690)] - **modules**: move callbacks and conditions into modules/esm/utils.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`c6ab449d1b`](https://github.com/nodejs/node/commit/c6ab449d1b)] - **modules**: move modules/cjs/helpers.js to modules/helpers.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`4d62b099b4`](https://github.com/nodejs/node/commit/4d62b099b4)] - **net**: handle socket.write(cb) edge case (Santiago Gimeno) [#&#8203;45922](https://github.com/nodejs/node/pull/45922) - \[[`8e6b8dbb41`](https://github.com/nodejs/node/commit/8e6b8dbb41)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777) - \[[`f3bb6a38ae`](https://github.com/nodejs/node/commit/f3bb6a38ae)] - **node-api**: generalize finalizer second pass callback (Chengzhong Wu) [#&#8203;44141](https://github.com/nodejs/node/pull/44141) - \[[`d71883e271`](https://github.com/nodejs/node/commit/d71883e271)] - **(SEMVER-MINOR)** **os**: add availableParallelism() (Colin Ihrig) [#&#8203;45895](https://github.com/nodejs/node/pull/45895) - \[[`4c0850539a`](https://github.com/nodejs/node/commit/4c0850539a)] - **process,worker**: ensure code after exit() effectless (ywave620) [#&#8203;45620](https://github.com/nodejs/node/pull/45620) - \[[`24cae6b4a3`](https://github.com/nodejs/node/commit/24cae6b4a3)] - **repl**: improve robustness wrt to prototype pollution (Antoine du Hamel) [#&#8203;45604](https://github.com/nodejs/node/pull/45604) - \[[`af25c95b22`](https://github.com/nodejs/node/commit/af25c95b22)] - **src**: fix typo in `node_file.cc` (Vadim) [#&#8203;45998](https://github.com/nodejs/node/pull/45998) - \[[`261d6d0726`](https://github.com/nodejs/node/commit/261d6d0726)] - **src**: fix crash on OnStreamRead on Windows (Santiago Gimeno) [#&#8203;45878](https://github.com/nodejs/node/pull/45878) - \[[`6c5b7e660b`](https://github.com/nodejs/node/commit/6c5b7e660b)] - **src**: add worker per-isolate binding initialization (Chengzhong Wu) [#&#8203;45547](https://github.com/nodejs/node/pull/45547) - \[[`db535b6caa`](https://github.com/nodejs/node/commit/db535b6caa)] - **src**: define per-isolate internal bindings registration callback (Chengzhong Wu) [#&#8203;45547](https://github.com/nodejs/node/pull/45547) - \[[`ded87f6dc4`](https://github.com/nodejs/node/commit/ded87f6dc4)] - **src**: fix creating `Isolate`s from addons (Anna Henningsen) [#&#8203;45885](https://github.com/nodejs/node/pull/45885) - \[[`c2ed0ccb28`](https://github.com/nodejs/node/commit/c2ed0ccb28)] - **src**: use string_view for FastStringKey implementation (Anna Henningsen) [#&#8203;45914](https://github.com/nodejs/node/pull/45914) - \[[`b995138b96`](https://github.com/nodejs/node/commit/b995138b96)] - **src**: use CreateEnvironment instead of inlining its code where possible (Anna Henningsen) [#&#8203;45886](https://github.com/nodejs/node/pull/45886) - \[[`4454f5fd71`](https://github.com/nodejs/node/commit/4454f5fd71)] - **src**: fix UB in overflow checks (Ben Noordhuis) [#&#8203;45882](https://github.com/nodejs/node/pull/45882) - \[[`27d3201502`](https://github.com/nodejs/node/commit/27d3201502)] - **src**: check size of args before using for exec_path (A. Wilcox) [#&#8203;45902](https://github.com/nodejs/node/pull/45902) - \[[`2f898f2983`](https://github.com/nodejs/node/commit/2f898f2983)] - **src**: fix tls certificate root store data race (Ben Noordhuis) [#&#8203;45767](https://github.com/nodejs/node/pull/45767) - \[[`eff92a61b9`](https://github.com/nodejs/node/commit/eff92a61b9)] - **src**: add undici and acorn to `process.versions` (Debadree Chatterjee) [#&#8203;45621](https://github.com/nodejs/node/pull/45621) - \[[`ab22a8ff4b`](https://github.com/nodejs/node/commit/ab22a8ff4b)] - **stream**: refactor to use `validateFunction` (Deokjin Kim) [#&#8203;46007](https://github.com/nodejs/node/pull/46007) - \[[`0858956f5f`](https://github.com/nodejs/node/commit/0858956f5f)] - **stream**: fix typo in JSDoc (Deokjin Kim) [#&#8203;45991](https://github.com/nodejs/node/pull/45991) - \[[`2807efaea6`](https://github.com/nodejs/node/commit/2807efaea6)] - **test**: use `process.hrtime.bigint` instead of `process.hrtime` (Deokjin Kim) [#&#8203;45877](https://github.com/nodejs/node/pull/45877) - \[[`0f5a145973`](https://github.com/nodejs/node/commit/0f5a145973)] - **test**: print failed JS/parallel tests (Geoffrey Booth) [#&#8203;45960](https://github.com/nodejs/node/pull/45960) - \[[`c6c094702b`](https://github.com/nodejs/node/commit/c6c094702b)] - **test**: split parallel fs-watch-recursive tests (Yagiz Nizipli) [#&#8203;45865](https://github.com/nodejs/node/pull/45865) - \[[`97a8e055be`](https://github.com/nodejs/node/commit/97a8e055be)] - **test**: add all WebCryptoAPI globals to WPTRunner's loadLazyGlobals (Filip Skokan) [#&#8203;45857](https://github.com/nodejs/node/pull/45857) - \[[`95ce16d8d9`](https://github.com/nodejs/node/commit/95ce16d8d9)] - **test**: fix test broken under --node-builtin-modules-path (Geoffrey Booth) [#&#8203;45894](https://github.com/nodejs/node/pull/45894) - \[[`97868befe7`](https://github.com/nodejs/node/commit/97868befe7)] - **test**: fix mock.method to support class instances (Erick Wendel) [#&#8203;45608](https://github.com/nodejs/node/pull/45608) - \[[`71056daf76`](https://github.com/nodejs/node/commit/71056daf76)] - **test**: update encoding wpt to latest (Yagiz Nizipli) [#&#8203;45850](https://github.com/nodejs/node/pull/45850) - \[[`10367c4cae`](https://github.com/nodejs/node/commit/10367c4cae)] - **test**: update url wpt to latest (Yagiz Nizipli) [#&#8203;45852](https://github.com/nodejs/node/pull/45852) - \[[`53f02cf631`](https://github.com/nodejs/node/commit/53f02cf631)] - **test**: add CryptoKey transferring tests (Filip Skokan) [#&#8203;45811](https://github.com/nodejs/node/pull/45811) - \[[`5de08ef275`](https://github.com/nodejs/node/commit/5de08ef275)] - **test**: add postject to fixtures (Darshan Sen) [#&#8203;45298](https://github.com/nodejs/node/pull/45298) - \[[`fea122d51e`](https://github.com/nodejs/node/commit/fea122d51e)] - **test**: enable idlharness WebCryptoAPI WPTs (Filip Skokan) [#&#8203;45822](https://github.com/nodejs/node/pull/45822) - \[[`3c2ce5635e`](https://github.com/nodejs/node/commit/3c2ce5635e)] - **test**: remove use of --experimental-global-webcrypto flag (Filip Skokan) [#&#8203;45816](https://github.com/nodejs/node/pull/45816) - \[[`b5e124537e`](https://github.com/nodejs/node/commit/b5e124537e)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;45860](https://github.com/nodejs/node/pull/45860) - \[[`7ae24abd7b`](https://github.com/nodejs/node/commit/7ae24abd7b)] - **test_runner**: use os.availableParallelism() (Colin Ihrig) [#&#8203;45969](https://github.com/nodejs/node/pull/45969) - \[[`c5004d42af`](https://github.com/nodejs/node/commit/c5004d42af)] - **test_runner**: run t.after() if test body throws (Colin Ihrig) [#&#8203;45870](https://github.com/nodejs/node/pull/45870) - \[[`bdbb676bee`](https://github.com/nodejs/node/commit/bdbb676bee)] - **test_runner**: parse yaml (Moshe Atlow) [#&#8203;45815](https://github.com/nodejs/node/pull/45815) - \[[`ca9b9b9ce6`](https://github.com/nodejs/node/commit/ca9b9b9ce6)] - **tls**: don't treat fatal TLS alerts as EOF (David Benjamin) [#&#8203;44563](https://github.com/nodejs/node/pull/44563) - \[[`d08a574ecf`](https://github.com/nodejs/node/commit/d08a574ecf)] - **tls**: fix re-entrancy issue with TLS close_notify (David Benjamin) [#&#8203;44563](https://github.com/nodejs/node/pull/44563) - \[[`0f0d22a63e`](https://github.com/nodejs/node/commit/0f0d22a63e)] - **tools**: update lint-md-dependencies to rollup@3.9.0 (Node.js GitHub Bot) [#&#8203;46039](https://github.com/nodejs/node/pull/46039) - \[[`5a8d125fc4`](https://github.com/nodejs/node/commit/5a8d125fc4)] - **tools**: update doc to unist-util-select@4.0.2 (Node.js GitHub Bot) [#&#8203;46038](https://github.com/nodejs/node/pull/46038) - \[[`54776ffe80`](https://github.com/nodejs/node/commit/54776ffe80)] - **tools**: add release host var to promotion script (Ruy Adorno) [#&#8203;45913](https://github.com/nodejs/node/pull/45913) - \[[`f968fdb78a`](https://github.com/nodejs/node/commit/f968fdb78a)] - **tools**: add url to `AUTHORS` update automation (Antoine du Hamel) [#&#8203;45971](https://github.com/nodejs/node/pull/45971) - \[[`7c518cbac1`](https://github.com/nodejs/node/commit/7c518cbac1)] - **tools**: update lint-md-dependencies to rollup@3.8.1 (Node.js GitHub Bot) [#&#8203;45967](https://github.com/nodejs/node/pull/45967) - \[[`1282f7f656`](https://github.com/nodejs/node/commit/1282f7f656)] - **tools**: update GitHub workflow action (Mohammed Keyvanzadeh) [#&#8203;45937](https://github.com/nodejs/node/pull/45937) - \[[`f446af78e9`](https://github.com/nodejs/node/commit/f446af78e9)] - **tools**: update lint-md dependencies (Node.js GitHub Bot) [#&#8203;45813](https://github.com/nodejs/node/pull/45813) - \[[`794611ade9`](https://github.com/nodejs/node/commit/794611ade9)] - **tools**: enforce use of trailing commas in `tools/` (Antoine du Hamel) [#&#8203;45889](https://github.com/nodejs/node/pull/45889) - \[[`124c2b32d9`](https://github.com/nodejs/node/commit/124c2b32d9)] - **tools**: fix incorrect version history order (Fabien Michel) [#&#8203;45728](https://github.com/nodejs/node/pull/45728) - \[[`27cf389c22`](https://github.com/nodejs/node/commit/27cf389c22)] - **tools**: update eslint to 8.29.0 (Node.js GitHub Bot) [#&#8203;45733](https://github.com/nodejs/node/pull/45733) - \[[`ae842a40b5`](https://github.com/nodejs/node/commit/ae842a40b5)] - **util**: add fast path for text-decoder fatal flag (Yagiz Nizipli) [#&#8203;45803](https://github.com/nodejs/node/pull/45803) - \[[`389cc3e1d6`](https://github.com/nodejs/node/commit/389cc3e1d6)] - **vm**: refactor to use `validateStringArray` (Deokjin Kim) [#&#8203;46020](https://github.com/nodejs/node/pull/46020) - \[[`7bd6a2c258`](https://github.com/nodejs/node/commit/7bd6a2c258)] - **wasi**: fast calls (snek) [#&#8203;43697](https://github.com/nodejs/node/pull/43697) ### [`v19.3.0`](https://github.com/nodejs/node/releases/tag/v19.3.0): 2022-12-14, Version 19.3.0 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v19.2.0...v19.3.0) ##### Notable Changes ##### Updated npm to 9.2.0 Based on the [list of guidelines we've established on integrating `npm` and `node`](https://github.com/npm/cli/wiki/Integrating-with-node), here is a grouped list of the breaking changes with the reasoning as to why they fit within the guidelines linked above. Note that all the breaking changes were made in [9.0.0](https://github.com/npm/cli/releases/tag/v9.0.0). All subsequent minor and patch releases after `npm@9.0.0` do not contain any breaking changes. ##### Engines > Explanation: the node engines supported by `npm@9` make it safe to allow `npm@9` as the default in any LTS version of `14` or `16`, as well as anything later than or including `18.0.0` - `npm` is now compatible with the following semver range for node: `^14.17.0 || ^16.13.0 || >=18.0.0` ##### Filesystem > Explanation: when run as root previous versions of npm attempted to manage file ownership automatically on the user's behalf. this behavior was problematic in many cases and has been removed in favor of allowing users to manage their own filesystem permissions - `npm` will no longer attempt to modify ownership of files it creates. ##### Auth > Explanation: any errors thrown from users having unsupported auth configurations will show `npm config fix` in the remediation instructions, which will allow the user to automatically have their auth config fixed. - The presence of auth related settings that are not scoped to a specific registry found in a config file is no longer supported and will throw errors. ##### Login > Explanation: the default `auth-type` has changed and users can opt back into the old behavior with `npm config set auth-type=legacy`. `login` and `adduser` have also been seperated making each command more closely match it's name instead of being aliases for each other. - Legacy auth types `sso`, `saml` & `legacy` have been consolidated into `"legacy"`. - `auth-type` defaults to `"web"` - `login` and `adduser` are now separate commands that send different data to the registry. - `auth-type` config values `web` and `legacy` only try their respective methods, npm no longer tries them all and waits to see which one doesn't fail. ##### Tarball Packing > Explanation: previously using multiple ignore/allow lists when packing was an undefined behavior, and now the order of operations is strictly defined when packing a tarball making it easier to follow and should only affect users relying on the previously undefined behavior. - `npm pack` now follows a strict order of operations when applying ignore rules. If a `files` array is present in the `package.json`, then rules in `.gitignore` and `.npmignore` files from the root will be ignored. ##### Display/Debug/Timing Info > Explanation: these changes center around the display of information to the terminal including timing and debug log info. We do not anticipate these changes breaking any existing workflows. - Links generated from git urls will now use `HEAD` instead of `master` as the default ref. - `timing` has been removed as a value for `--loglevel`. - `--timing` will show timing information regardless of `--loglevel`, except when `--silent`. - When run with the `--timing` flag, `npm` now writes timing data to a file alongside the debug log data, respecting the `logs-dir` option and falling back to `<CACHE>/_logs/` dir, instead of directly inside the cache directory. - The timing file data is no longer newline delimited JSON, and instead each run will create a uniquely named `<ID>-timing.json` file, with the `<ID>` portion being the same as the debug log. - `npm` now outputs some json errors on stdout. Previously `npm` would output all json formatted errors on stderr, making it difficult to parse as the stderr stream usually has logs already written to it. ##### Config/Command Deprecations or Removals > Explanation: `install-links` is the only config or command in the list that has an effect on package installs. We fixed a number of issues that came up during prereleases with this change. It will also only be applied to new package trees created without a package-lock.json file. Any install with an existing lock file will not be changed. - Deprecate boolean install flags in favor of `--install-strategy`. - `npm config set` will no longer accept deprecated or invalid config options. - `install-links` config defaults to `"true"`. - `node-version` config has been removed. - `npm-version` config has been removed. - `npm access` subcommands have been renamed. - `npm birthday` has been removed. - `npm set-script` has been removed. - `npm bin` has been removed (use `npx` or `npm exec` to execute binaries). ##### Other notable changes - \[[`03db415540`](https://github.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#&#8203;45716](https://github.com/nodejs/node/pull/45716) - \[[`9f51b9e50d`](https://github.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#&#8203;45697](https://github.com/nodejs/node/pull/45697) - \[[`b010820c4e`](https://github.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael Gonzaga to the TSC (Michael Dawson) [#&#8203;45691](https://github.com/nodejs/node/pull/45691) - \[[`b8b13dccd9`](https://github.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#&#8203;44731](https://github.com/nodejs/node/pull/44731) - \[[`5d7cd363ab`](https://github.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#&#8203;45639](https://github.com/nodejs/node/pull/45639) - \[[`4165dcddf0`](https://github.com/nodejs/node/commit/95af851a25)] - **(SEMVER-MINOR)** **test_runner**: add t.after() hook (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792) - \[[`d1bd7796ad`](https://github.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test_runner**: don't use a symbol for runHook() (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792) - \[[`691f58e76c`](https://github.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#&#8203;45776](https://github.com/nodejs/node/pull/45776) ##### Commits - \[[`382efdf460`](https://github.com/nodejs/node/commit/382efdf460)] - **benchmark**: add variety of inputs to text-encoder (Yagiz Nizipli) [#&#8203;45787](https://github.com/nodejs/node/pull/45787) - \[[`102c2dc071`](https://github.com/nodejs/node/commit/102c2dc071)] - **benchmark**: make benchmarks runnable in older versions of Node.js (Joyee Cheung) [#&#8203;45746](https://github.com/nodejs/node/pull/45746) - \[[`e2caf7ced9`](https://github.com/nodejs/node/commit/e2caf7ced9)] - **bootstrap**: lazy load non-essential modules (Joyee Cheung) [#&#8203;45659](https://github.com/nodejs/node/pull/45659) - \[[`49840d443c`](https://github.com/nodejs/node/commit/49840d443c)] - **buffer**: remove unnecessary lazy loading (Antoine du Hamel) [#&#8203;45807](https://github.com/nodejs/node/pull/45807) - \[[`17847683dc`](https://github.com/nodejs/node/commit/17847683dc)] - **buffer**: make decodeUTF8 params loose (Yagiz Nizipli) [#&#8203;45610](https://github.com/nodejs/node/pull/45610) - \[[`03db415540`](https://github.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#&#8203;45716](https://github.com/nodejs/node/pull/45716) - \[[`95a23e24f3`](https://github.com/nodejs/node/commit/95a23e24f3)] - **build**: add python 3.11 support for android (Mohammed Keyvanzadeh) [#&#8203;45765](https://github.com/nodejs/node/pull/45765) - \[[`09bc89daba`](https://github.com/nodejs/node/commit/09bc89daba)] - **build**: rework gyp files for zlib (Richard Lau) [#&#8203;45589](https://github.com/nodejs/node/pull/45589) - \[[`b5b56b6b45`](https://github.com/nodejs/node/commit/b5b56b6b45)] - **crypto**: simplify lazy loading of internal modules (Antoine du Hamel) [#&#8203;45809](https://github.com/nodejs/node/pull/45809) - \[[`2e4d37e3f0`](https://github.com/nodejs/node/commit/2e4d37e3f0)] - **crypto**: fix CipherBase Update int32 overflow (Marco Ippolito) [#&#8203;45769](https://github.com/nodejs/node/pull/45769) - \[[`573eab9235`](https://github.com/nodejs/node/commit/573eab9235)] - **crypto**: refactor ArrayBuffer to bigint conversion utils (Antoine du Hamel) [#&#8203;45567](https://github.com/nodejs/node/pull/45567) - \[[`845f805490`](https://github.com/nodejs/node/commit/845f805490)] - **crypto**: refactor verify acceptable key usage functions (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`7cc9998737`](https://github.com/nodejs/node/commit/7cc9998737)] - **crypto**: fix ECDH webcrypto public CryptoKey usages (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`d030963f37`](https://github.com/nodejs/node/commit/d030963f37)] - **crypto**: validate CFRG webcrypto JWK import "d" and "x" are a pair (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`9cd106efdc`](https://github.com/nodejs/node/commit/9cd106efdc)] - **crypto**: use DataError for CFRG webcrypto raw and jwk import key checks (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`9e2e3de6ce`](https://github.com/nodejs/node/commit/9e2e3de6ce)] - **crypto**: use DataError for webcrypto keyData import failures (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`40037b4e79`](https://github.com/nodejs/node/commit/40037b4e79)] - **crypto**: fix X25519 and X448 webcrypto public CryptoKey usages (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`de2b6b97b9`](https://github.com/nodejs/node/commit/de2b6b97b9)] - **crypto**: ensure "x" is present when importing private CFRG webcrypto keys (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`75dbce9a07`](https://github.com/nodejs/node/commit/75dbce9a07)] - **deps**: upgrade npm to 9.2.0 (npm team) [#&#8203;45780](https://github.com/nodejs/node/pull/45780) - \[[`677eb62bf2`](https://github.com/nodejs/node/commit/677eb62bf2)] - **deps**: upgrade npm to 9.1.3 (npm team) [#&#8203;45693](https://github.com/nodejs/node/pull/45693) - \[[`1d823a6d30`](https://github.com/nodejs/node/commit/1d823a6d30)] - ***Revert*** "**deps**: fix zlib compilation for CPUs without SIMD features" (Luigi Pinca) [#&#8203;45589](https://github.com/nodejs/node/pull/45589) - \[[`6b15994597`](https://github.com/nodejs/node/commit/6b15994597)] - **deps**: update undici to 5.13.0 (Node.js GitHub Bot) [#&#8203;45634](https://github.com/nodejs/node/pull/45634) - \[[`fbd2d27789`](https://github.com/nodejs/node/commit/fbd2d27789)] - **deps**: update corepack to 0.15.2 (Node.js GitHub Bot) [#&#8203;45635](https://github.com/nodejs/node/pull/45635) - \[[`60c9ac5178`](https://github.com/nodejs/node/commit/60c9ac5178)] - **deps**: update nghttp2 to 1.51.0 (Yagiz Nizipli) [#&#8203;45537](https://github.com/nodejs/node/pull/45537) - \[[`c8421204b0`](https://github.com/nodejs/node/commit/c8421204b0)] - **deps**: patch V8 to 10.8.168.21 (Michaël Zasso) [#&#8203;45749](https://github.com/nodejs/node/pull/45749) - \[[`c5277417c9`](https://github.com/nodejs/node/commit/c5277417c9)] - **diagnostics_channel**: fix diagnostics channel memory leak (theanarkh) [#&#8203;45633](https://github.com/nodejs/node/pull/45633) - \[[`8a90f5c784`](https://github.com/nodejs/node/commit/8a90f5c784)] - **doc**: buffer.fill empty value (Marco Ippolito) [#&#8203;45794](https://github.com/nodejs/node/pull/45794) - \[[`9d6af617ea`](https://github.com/nodejs/node/commit/9d6af617ea)] - **doc**: add args of filter option of fs.cp (MURAKAMI Masahiko) [#&#8203;45739](https://github.com/nodejs/node/pull/45739) - \[[`8c728d2f02`](https://github.com/nodejs/node/commit/8c728d2f02)] - **doc**: disambiguate `native module` to `addon` (Daeyeon Jeong) [#&#8203;45673](https://github.com/nodejs/node/pull/45673) - \[[`7718ff82a4`](https://github.com/nodejs/node/commit/7718ff82a4)] - **doc**: using console.error for error cases in crypto and events (emirgoren) [#&#8203;45640](https://github.com/nodejs/node/pull/45640) - \[[`029060e6e4`](https://github.com/nodejs/node/commit/029060e6e4)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#&#8203;45656](https://github.com/nodejs/node/pull/45656) - \[[`9f51b9e50d`](https://github.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#&#8203;45697](https://github.com/nodejs/node/pull/45697) - \[[`801fe30488`](https://github.com/nodejs/node/commit/801fe30488)] - **doc**: add detail on how api docs are published (Michael Dawson) [#&#8203;45626](https://github.com/nodejs/node/pull/45626) - \[[`e124e2a6ee`](https://github.com/nodejs/node/commit/e124e2a6ee)] - **doc**: use console.error for error case in child_process and dgram (Deokjin Kim) [#&#8203;45690](https://github.com/nodejs/node/pull/45690) - \[[`1b920287b6`](https://github.com/nodejs/node/commit/1b920287b6)] - **doc**: move streaming instruc to doc/contributing (Michael Dawson) [#&#8203;45582](https://github.com/nodejs/node/pull/45582) - \[[`b010820c4e`](https://github.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael to the tsc (Michael Dawson) [#&#8203;45691](https://github.com/nodejs/node/pull/45691) - \[[`4fb7cf88e2`](https://github.com/nodejs/node/commit/4fb7cf88e2)] - **doc**: add missing line in debugger (Deokjin Kim) [#&#8203;45632](https://github.com/nodejs/node/pull/45632) - \[[`c0df265fea`](https://github.com/nodejs/node/commit/c0df265fea)] - **doc**: fix actual result of example is different in stream (Deokjin Kim) [#&#8203;45619](https://github.com/nodejs/node/pull/45619) - \[[`027e738064`](https://github.com/nodejs/node/commit/027e738064)] - **doc**: add `options` parameter to eventTarget.removeEventListener (Deokjin Kim) [#&#8203;45667](https://github.com/nodejs/node/pull/45667) - \[[`23ff5057b2`](https://github.com/nodejs/node/commit/23ff5057b2)] - **doc**: define "react-native" community condition (Alex Hunt) [#&#8203;45367](https://github.com/nodejs/node/pull/45367) - \[[`2e767bf18b`](https://github.com/nodejs/node/commit/2e767bf18b)] - **doc**: move os.machine() docs to sorted position (Colin Ihrig) [#&#8203;45647](https://github.com/nodejs/node/pull/45647) - \[[`aabfdef861`](https://github.com/nodejs/node/commit/aabfdef861)] - **doc**: use console.error for error case in fs, https, net and process (Deokjin Kim) [#&#8203;45606](https://github.com/nodejs/node/pull/45606) - \[[`3a02d50d35`](https://github.com/nodejs/node/commit/3a02d50d35)] - **doc**: add link to doc with social processes (Michael Dawson) [#&#8203;45584](https://github.com/nodejs/node/pull/45584) - \[[`e4316124fa`](https://github.com/nodejs/node/commit/e4316124fa)] - **fs**: fix `nonNativeWatcher` watching folder with existing files (Moshe Atlow) [#&#8203;45500](https://github.com/nodejs/node/pull/45500) - \[[`d272faa54d`](https://github.com/nodejs/node/commit/d272faa54d)] - **fs**: fix `nonNativeWatcher` leak of `StatWatchers` (Moshe Atlow) [#&#8203;45501](https://github.com/nodejs/node/pull/45501) - \[[`d64e773168`](https://github.com/nodejs/node/commit/d64e773168)] - **http**: make `OutgoingMessage` more streamlike (Robert Nagy) [#&#8203;45672](https://github.com/nodejs/node/pull/45672) - \[[`ed8ae88f30`](https://github.com/nodejs/node/commit/ed8ae88f30)] - **lib**: remove unnecessary lazy loading in `internal/encoding` (Antoine du Hamel) [#&#8203;45810](https://github.com/nodejs/node/pull/45810) - \[[`302c5240c5`](https://github.com/nodejs/node/commit/302c5240c5)] - **lib**: allow Writeable.toWeb() to work on http.Outgoing message (Debadree Chatterjee) [#&#8203;45642](https://github.com/nodejs/node/pull/45642) - \[[`e8745083b9`](https://github.com/nodejs/node/commit/e8745083b9)] - **lib**: check number of arguments in `EventTarget`'s function (Deokjin Kim) [#&#8203;45668](https://github.com/nodejs/node/pull/45668) - \[[`9f7bb5ce0e`](https://github.com/nodejs/node/commit/9f7bb5ce0e)] - **lib**: disambiguate `native module` to `binding` (Daeyeon Jeong) [#&#8203;45673](https://github.com/nodejs/node/pull/45673) - \[[`353339a552`](https://github.com/nodejs/node/commit/353339a552)] - **lib**: disambiguate `native module` to `builtin module` (Daeyeon Jeong) [#&#8203;45673](https://github.com/nodejs/node/pull/45673) - \[[`99410efd19`](https://github.com/nodejs/node/commit/99410efd19)] - **lib**: added SuiteContext class (Debadree Chatterjee) [#&#8203;45687](https://github.com/nodejs/node/pull/45687) - \[[`a79f37a0a7`](https://github.com/nodejs/node/commit/a79f37a0a7)] - **lib**: add missing type of removeEventListener in question (Deokjin Kim) [#&#8203;45676](https://github.com/nodejs/node/pull/45676) - \[[`e0750467e8`](https://github.com/nodejs/node/commit/e0750467e8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45814](https://github.com/nodejs/node/pull/45814) - \[[`376f3468b9`](https://github.com/nodejs/node/commit/376f3468b9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45732](https://github.com/nodejs/node/pull/45732) - \[[`a6e2cf2d6f`](https://github.com/nodejs/node/commit/a6e2cf2d6f)] - **meta**: add .mailmap entry for Stefan Stojanovic (Rich Trott) [#&#8203;45703](https://github.com/nodejs/node/pull/45703) - \[[`eb9a383d2a`](https://github.com/nodejs/node/commit/eb9a383d2a)] - **meta**: update AUTHORS info for nstepien (Nicolas Stepien) [#&#8203;45692](https://github.com/nodejs/node/pull/45692) - \[[`049ef342c6`](https://github.com/nodejs/node/commit/049ef342c6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45637](https://github.com/nodejs/node/pull/45637) - \[[`b9c2fc7623`](https://github.com/nodejs/node/commit/b9c2fc7623)] - **net**: check `autoSelectFamilyAttemptTimeout` is positive (Deokjin Kim) [#&#8203;45740](https://github.com/nodejs/node/pull/45740) - \[[`b8b13dccd9`](https://github.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#&#8203;44731](https://github.com/nodejs/node/pull/44731) - \[[`6962ef0df1`](https://github.com/nodejs/node/commit/6962ef0df1)] - **readline**: improve robustness against prototype mutation (Antoine du Hamel) [#&#8203;45614](https://github.com/nodejs/node/pull/45614) - \[[`7892e23e68`](https://github.com/nodejs/node/commit/7892e23e68)] - **repl**: do not define `wasi` on global with no flag (Kohei Ueno) [#&#8203;45595](https://github.com/nodejs/node/pull/45595) - \[[`349b4f8817`](https://github.com/nodejs/node/commit/349b4f8817)] - **src**: add internal isArrayBufferDetached (Yagiz Nizipli) [#&#8203;45568](https://github.com/nodejs/node/pull/45568) - \[[`5d7cd363ab`](https://github.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#&#8203;45639](https://github.com/nodejs/node/pull/45639) - \[[`8a03684018`](https://github.com/nodejs/node/commit/8a03684018)] - **src**: simplify NodeBIO::GetMethod initialization (Anna Henningsen) [#&#8203;45799](https://github.com/nodejs/node/pull/45799) - \[[`b35ebebc0e`](https://github.com/nodejs/node/commit/b35ebebc0e)] - **src**: make structuredClone work for process.env (Ben Noordhuis) [#&#8203;45698](https://github.com/nodejs/node/pull/45698) - \[[`81ab54035f`](https://github.com/nodejs/node/commit/81ab54035f)] - **src**: mark generated `snapshot_data` as `const` (Anna Henningsen) [#&#8203;45786](https://github.com/nodejs/node/pull/45786) - \[[`79edf257bb`](https://github.com/nodejs/node/commit/79edf257bb)] - **src**: cleanup on disambiguating native modules (Michael Dawson) [#&#8203;45665](https://github.com/nodejs/node/pull/45665) - \[[`c9cba2e873`](https://github.com/nodejs/node/commit/c9cba2e873)] - **src**: use `enum class` instead of `enum` in node_i18n (Deokjin Kim) [#&#8203;45646](https://github.com/nodejs/node/pull/45646) - \[[`818028caba`](https://github.com/nodejs/node/commit/818028caba)] - **src**: rename internal module declaration as internal bindings (Chengzhong Wu) [#&#8203;45551](https://github.com/nodejs/node/pull/45551) - \[[`2fbe2f9f0a`](https://github.com/nodejs/node/commit/2fbe2f9f0a)] - **src,lib**: group properties used as constants from `util` binding (Daeyeon Jeong) [#&#8203;45539](https://github.com/nodejs/node/pull/45539) - \[[`56eee72abb`](https://github.com/nodejs/node/commit/56eee72abb)] - **stream**: use structuredClone instead of v8 (Yagiz Nizipli) [#&#8203;45611](https://github.com/nodejs/node/pull/45611) - \[[`b297dd5393`](https://github.com/nodejs/node/commit/b297dd5393)] - **test**: remove flaky parallel/test-process-wrap test (Ben Noordhuis) [#&#8203;45806](https://github.com/nodejs/node/pull/45806) - \[[`924f6ab3a1`](https://github.com/nodejs/node/commit/924f6ab3a1)] - **test**: order list alphabetically in `test-bootstrap-modules` (Antoine du Hamel) [#&#8203;45808](https://github.com/nodejs/node/pull/45808) - \[[`5c4475dab9`](https://github.com/nodejs/node/commit/5c4475dab9)] - **test**: fix invalid output TAP if there newline in test name (Pulkit Gupta) [#&#8203;45742](https://github.com/nodejs/node/pull/45742) - \[[`4c51c5c97a`](https://github.com/nodejs/node/commit/4c51c5c97a)] - **test**: fix -Wunused-variable on report-fatalerror (Santiago Gimeno) [#&#8203;45747](https://github.com/nodejs/node/pull/45747) - \[[`764725040c`](https://github.com/nodejs/node/commit/764725040c)] - **test**: fix test-watch-mode (Stefan Stojanovic) [#&#8203;45585](https://github.com/nodejs/node/pull/45585) - \[[`cd36250fcb`](https://github.com/nodejs/node/commit/cd36250fcb)] - **test**: fix test-watch-mode-inspect (Stefan Stojanovic) [#&#8203;45586](https://github.com/nodejs/node/pull/45586) - \[[`b55bd6e8c1`](https://github.com/nodejs/node/commit/b55bd6e8c1)] - **test**: fix typos in test/parallel (Deokjin Kim) [#&#8203;45583](https://github.com/nodejs/node/pull/45583) - \[[`358e2fe217`](https://github.com/nodejs/node/commit/358e2fe217)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;45569](https://github.com/nodejs/node/pull/45569) - \[[`424419c2b4`](https://github.com/nodejs/node/commit/424419c2b4)] - **test_runner**: refactor `tap_lexer` to use more primordials (Antoine du Hamel) [#&#8203;45744](https://github.com/nodejs/node/pull/45744) - \[[`ffc0f3d7be`](https://github.com/nodejs/node/commit/ffc0f3d7be)] - **test_runner**: refactor `tap_parser` to use more primordials (Antoine du Hamel) [#&#8203;45745](https://github.com/nodejs/node/pull/45745) - \[[`4165dcddf0`](https://github.com/nodejs/node/commit/4165dcddf0)] - **(SEMVER-MINOR)** **test_runner**: add t.after() hook (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792) - \[[`d1bd7796ad`](https://github.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test_runner**: don't use a symbol for runHook() (Colin Ihrig) [#&#8203;45792](https://github.com/nodejs/node/pull/45792) - \[[`6bc7b7e6f4`](https://github.com/nodejs/node/commit/6bc7b7e6f4)] - **test_runner**: add resetCalls to MockFunctionContext (MURAKAMI Masahiko) [#&#8203;45710](https://github.com/nodejs/node/pull/45710) - \[[`3e485365ec`](https://github.com/nodejs/node/commit/3e485365ec)] - **test_runner**: don't parse TAP from stderr (Colin Ihrig) [#&#8203;45618](https://github.com/nodejs/node/pull/45618) - \[[`efc44567c9`](https://github.com/nodejs/node/commit/efc44567c9)] - **test_runner**: add getter and setter to MockTracker (MURAKAMI Masahiko) [#&#8203;45506](https://github.com/nodejs/node/pull/45506) - \[[`c9cbd1d396`](https://github.com/nodejs/node/commit/c9cbd1d396)] - **test_runner**: remove stdout and stderr from error (Colin Ihrig) [#&#8203;45592](https://github.com/nodejs/node/pull/45592) - \[[`691f58e76c`](https://github.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#&#8203;45776](https://github.com/nodejs/node/pull/45776) - \[[`d384b73f76`](https://github.com/nodejs/node/commit/d384b73f76)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;45730](https://github.com/nodejs/node/pull/45730) - \[[`324ae3d5dd`](https://github.com/nodejs/node/commit/324ae3d5dd)] - **tools**: add GitHub token permissions to label flaky-test issues (Gabriela Gutierrez) [#&#8203;45308](https://github.com/nodejs/node/pull/45308) - \[[`418ae9be56`](https://github.com/nodejs/node/commit/418ae9be56)] - **tools**: remove dependency vulnerability checker (Facundo Tuesca) [#&#8203;45675](https://github.com/nodejs/node/pull/45675) - \[[`238fc64c38`](https://github.com/nodejs/node/commit/238fc64c38)] - **tools**: update lint-md-dependencies to rollup@3.4.0 (Node.js GitHub Bot) [#&#8203;45638](https://github.com/nodejs/node/pull/45638) - \[[`1b98f17876`](https://github.com/nodejs/node/commit/1b98f17876)] - **tools**: update doc to highlight.js@11.7.0 (Node.js GitHub Bot) [#&#8203;45636](https://github.com/nodejs/node/pull/45636) - \[[`470384e7be`](https://github.com/nodejs/node/commit/470384e7be)] - **util**: use private symbols in JS land directly (Joyee Cheung) [#&#8203;45379](https://github.com/nodejs/node/pull/45379) - \[[`cee6f382d8`](https://github.com/nodejs/node/commit/cee6f382d8)] - **watch**: add CLI flag to preserve output (Debadree Chatterjee) [#&#8203;45717](https://github.com/nodejs/node/pull/45717) ### [`v19.2.0`](https://github.com/nodejs/node/releases/tag/v19.2.0): 2022-11-29, Version 19.2.0 (Current), @&#8203;ruyadorno [Compare Source](https://github.com/nodejs/node/compare/v19.1.0...v19.2.0) ##### Notable changes ##### Time zone update Time zone data has been updated to 2022f. This includes changes to Daylight Savings Time (DST) for Fiji and Mexico. For more information, see <https://mm.icann.org/pipermail/tz-announce/2022-October/000075.html>. ##### Other notable changes - **buffer** - (SEMVER-MINOR) introduce `File` class (Khafra) [#&#8203;45139](https://github.com/nodejs/node/pull/45139) - **deps** - update V8 to 10.8.168.20 (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - **doc** - deprecate use of invalid ports in `url.parse` (Antoine du Hamel) [#&#8203;45576](https://github.com/nodejs/node/pull/45576) - **util** - add fast path for utf8 encoding (Yagiz Nizipli) [#&#8203;45412](https://github.com/nodejs/node/pull/45412) ##### Commits - \[[`7cff1e14ba`](https://github.com/nodejs/node/commit/7cff1e14ba)] - **(SEMVER-MINOR)** **async_hooks**: add hook to stop propagation (Gerhard Stöbich) [#&#8203;45386](https://github.com/nodejs/node/pull/45386) - \[[`f08f6a64a3`](https://github.com/nodejs/node/commit/f08f6a64a3)] - **benchmark**: add v8 serialize benchmark (Yagiz Nizipli) [#&#8203;45476](https://github.com/nodejs/node/pull/45476) - \[[`26ad54c1a2`](https://github.com/nodejs/node/commit/26ad54c1a2)] - **benchmark**: add text-encoder benchmark (Yagiz Nizipli) [#&#8203;45450](https://github.com/nodejs/node/pull/45450) - \[[`6c56c9722b`](https://github.com/nodejs/node/commit/6c56c9722b)] - **(SEMVER-MINOR)** **buffer**: introduce File (Khafra) [#&#8203;45139](https://github.com/nodejs/node/pull/45139) - \[[`6e1e25d6dd`](https://github.com/nodejs/node/commit/6e1e25d6dd)] - **build**: avoid redefined macro (Michaël Zasso) [#&#8203;45544](https://github.com/nodejs/node/pull/45544) - \[[`5c9b2a7c82`](https://github.com/nodejs/node/commit/5c9b2a7c82)] - **build**: fix env.h for cpp20 (Jiawen Geng) [#&#8203;45516](https://github.com/nodejs/node/pull/45516) - \[[`54fd8a1966`](https://github.com/nodejs/node/commit/54fd8a1966)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`0f3cf7e5ce`](https://github.com/nodejs/node/commit/0f3cf7e5ce)] - ***Revert*** "**build**: remove precompiled header and debug information for host builds" (Stefan Stojanovic) [#&#8203;45432](https://github.com/nodejs/node/pull/45432) - \[[`62ef1eb4ff`](https://github.com/nodejs/node/commit/62ef1eb4ff)] - **build**: add --v8-disable-object-print flag (MURAKAMI Masahiko) [#&#8203;45458](https://github.com/nodejs/node/pull/45458) - \[[`1ce2f56cf6`](https://github.com/nodejs/node/commit/1ce2f56cf6)] - **build**: make scripts in gyp run with right python (Jiawen Geng) [#&#8203;45435](https://github.com/nodejs/node/pull/45435) - \[[`9ffe3c051a`](https://github.com/nodejs/node/commit/9ffe3c051a)] - **build,deps,src**: fix Intel VTune profiling support (Shi Lei) [#&#8203;45248](https://github.com/nodejs/node/pull/45248) - \[[`bd3accc7b2`](https://github.com/nodejs/node/commit/bd3accc7b2)] - **crypto**: clear OpenSSL error queue after calling X509\_check_private_key() (Filip Skokan) [#&#8203;45495](https://github.com/nodejs/node/pull/45495) - \[[`724addb293`](https://github.com/nodejs/node/commit/724addb293)] - **crypto**: update root certificates (Luigi Pinca) [#&#8203;45490](https://github.com/nodejs/node/pull/45490) - \[[`efe19eb7f5`](https://github.com/nodejs/node/commit/efe19eb7f5)] - **crypto**: clear OpenSSL error queue after calling X509\_verify() (Takuro Sato) [#&#8203;45377](https://github.com/nodejs/node/pull/45377) - \[[`f63ae525fa`](https://github.com/nodejs/node/commit/f63ae525fa)] - **deps**: V8: cherry-pick [`2ada52c`](https://github.com/nodejs/node/commit/2ada52cffbff) (Michaël Zasso) [#&#8203;45573](https://github.com/nodejs/node/pull/45573) - \[[`43e002e3d4`](https://github.com/nodejs/node/commit/43e002e3d4)] - **deps**: update base64 to 0.5.0 (Facundo Tuesca) [#&#8203;45509](https://github.com/nodejs/node/pull/45509) - \[[`aaa4ac7735`](https://github.com/nodejs/node/commit/aaa4ac7735)] - **deps**: V8: cherry-pick [`9df5ef7`](https://github.com/nodejs/node/commit/9df5ef70ff18) (Yagiz Nizipli) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`e70c3090ff`](https://github.com/nodejs/node/commit/e70c3090ff)] - **deps**: V8: cherry-pick [`f1c888e`](https://github.com/nodejs/node/commit/f1c888e7093e) (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`51eb323c50`](https://github.com/nodejs/node/commit/51eb323c50)] - **deps**: V8: cherry-pick [`92a7385`](https://github.com/nodejs/node/commit/92a7385171bb) (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`1370b1a769`](https://github.com/nodejs/node/commit/1370b1a769)] - **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`3cd6367e6a`](https://github.com/nodejs/node/commit/3cd6367e6a)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`9348bdd28d`](https://github.com/nodejs/node/commit/9348bdd28d)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`e9292544b0`](https://github.com/nodejs/node/commit/e9292544b0)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`a3b9967553`](https://github.com/nodejs/node/commit/a3b9967553)] - **deps**: update V8 to 10.8.168.20 (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`117efe98b0`](https://github.com/nodejs/node/commit/117efe98b0)] - **deps**: V8: cherry-pick [`9df5ef7`](https://github.com/nodejs/node/commit/9df5ef70ff18) (Yagiz Nizipli) [#&#8203;45474](https://github.com/nodejs/node/pull/45474) - \[[`628891d4dd`](https://github.com/nodejs/node/commit/628891d4dd)] - **deps**: update timezone to 2022f (Node.js GitHub Bot) [#&#8203;45289](https://github.com/nodejs/node/pull/45289) - \[[`45ba14b3be`](https://github.com/nodejs/node/commit/45ba14b3be)] - **deps**: fix zlib compilation for CPUs without SIMD features (Anna Henningsen) [#&#8203;45387](https://github.com/nodejs/node/pull/45387) - \[[`c41e67fe1d`](https://github.com/nodejs/node/commit/c41e67fe1d)] - **deps**: update zlib to upstream [`8bbd6c3`](https://github.com/nodejs/node/commit/8bbd6c31) (Luigi Pinca) [#&#8203;45387](https://github.com/nodejs/node/pull/45387) - \[[`413bf9ad39`](https://github.com/nodejs/node/commit/413bf9ad39)] - **deps**: patch V8 to 10.7.193.22 (Michaël Zasso) [#&#8203;45460](https://github.com/nodejs/node/pull/45460) - \[[`ad8da86b3f`](https://github.com/nodejs/node/commit/ad8da86b3f)] - **deps**: update acorn to 8.8.1 (Node.js GitHub Bot) [#&#8203;45441](https://github.com/nodejs/node/pull/45441) - \[[`17e6031bf0`](https://github.com/nodejs/node/commit/17e6031bf0)] - **deps**: V8: cherry-pick [`031b98b`](https://github.com/nodejs/node/commit/031b98b25cba) (Michaël Zasso) [#&#8203;45375](https://github.com/nodejs/node/pull/45375) - \[[`9e0e97c121`](https://github.com/nodejs/node/commit/9e0e97c121)] - **diagnostics_channel**: built-in channels should remain experimental (Stephen Belanger) [#&#8203;45423](https://github.com/nodejs/node/pull/45423) - \[[`44886e55e1`](https://github.com/nodejs/node/commit/44886e55e1)] - **diagnostics_channel**: mark as stable (Stephen Belanger) [#&#8203;45290](https://github.com/nodejs/node/pull/45290) - \[[`b6b5b51687`](https://github.com/nodejs/node/commit/b6b5b51687)] - **doc**: deprecate use of invalid ports in `url.parse` (Antoine du Hamel) [#&#8203;45576](https://github.com/nodejs/node/pull/45576) - \[[`d805d5a894`](https://github.com/nodejs/node/commit/d805d5a894)] - **doc**: clarify changes in readableFlowing (Kohei Ueno) [#&#8203;45554](https://github.com/nodejs/node/pull/45554) - \[[`015842f3d2`](https://github.com/nodejs/node/commit/015842f3d2)] - **doc**: use console.error for error case in http2 (Deokjin Kim) [#&#8203;45577](https://github.com/nodejs/node/pull/45577) - \[[`4345732900`](https://github.com/nodejs/node/commit/4345732900)] - **doc**: add version description about fsPromise.constants (chlorine) [#&#8203;45556](https://github.com/nodejs/node/pull/45556) - \[[`16643dbb19`](https://github.com/nodejs/node/commit/16643dbb19)] - **doc**: add missing documentation for paramEncoding (Tobias Nießen) [#&#8203;45523](https://github.com/nodejs/node/pull/45523) - \[[`246cd358b5`](https://github.com/nodejs/node/commit/246cd358b5)] - **doc**: fix typo in threat model (Tobias Nießen) [#&#8203;45558](https://github.com/nodejs/node/pull/45558) - \[[`5b1df22db0`](https://github.com/nodejs/node/commit/5b1df22db0)] - **doc**: add Node.js Threat Model (Rafael Gonzaga) [#&#8203;45223](https://github.com/nodejs/node/pull/45223) - \[[`19d8493c92`](https://github.com/nodejs/node/commit/19d8493c92)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;45553](https://github.com/nodejs/node/pull/45553) - \[[`6f0bc097ea`](https://github.com/nodejs/node/commit/6f0bc097ea)] - **doc**: add async_hooks migration note (Geoffrey Booth) [#&#8203;45335](https://github.com/nodejs/node/pull/45335) - \[[`118de4b44c`](https://github.com/nodejs/node/commit/118de4b44c)] - **doc**: fix RESOLVE_ESM_MATCH in modules.md (翠 / green) [#&#8203;45280](https://github.com/nodejs/node/pull/45280) - \[[`4de67d1ef4`](https://github.com/nodejs/node/commit/4de67d1ef4)] - **doc**: add arm64 to os.machine() (Carter Snook) [#&#8203;45374](https://github.com/nodejs/node/pull/45374) - \[[`1812a89c00`](https://github.com/nodejs/node/commit/1812a89c00)] - **doc**: add lint rule to enforce trailing commas (Antoine du Hamel) [#&#8203;45471](https://github.com/nodejs/node/pull/45471) - \[[`4128c27f66`](https://github.com/nodejs/node/commit/4128c27f66)] - **doc**: include v19.1.0 in `CHANGELOG.md` (Rafael Gonzaga) [#&#8203;45462](https://github.com/nodejs/node/pull/45462) - \[[`94a6a97ec6`](https://github.com/nodejs/node/commit/94a6a97ec6)] - **doc**: adjust wording to eliminate awkward typography (Konv) [#&#8203;45398](https://github.com/nodejs/node/pull/45398) - \[[`a6fe707b62`](https://github.com/nodejs/node/commit/a6fe707b62)] - **doc**: fix typo in maintaining-dependencies.md (Tobias Nießen) [#&#8203;45428](https://github.com/nodejs/node/pull/45428) - \[[`8906a4e58e`](https://github.com/nodejs/node/commit/8906a4e58e)] - **esm**: add JSDoc property descriptions for loader (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370) - \[[`4e5ad9df50`](https://github.com/nodejs/node/commit/4e5ad9df50)] - **esm**: add JSDoc property descriptions for fetch (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370) - \[[`2b760c339e`](https://github.com/nodejs/node/commit/2b760c339e)] - **fs**: fix fs.rm support for loop symlinks (Nathanael Ruf) [#&#8203;45439](https://github.com/nodejs/node/pull/45439) - \[[`e0a271e41b`](https://github.com/nodejs/node/commit/e0a271e41b)] - **gyp**: fix v8 canary build on aix (Vasili Skurydzin) [#&#8203;45496](https://github.com/nodejs/node/pull/45496) - \[[`eac26c0793`](https://github.com/nodejs/node/commit/eac26c0793)] - ***Revert*** "**http**: headers(Distinct), trailers(Distinct) setters to be no-op" (Rich Trott) [#&#8203;45527](https://github.com/nodejs/node/pull/45527) - \[[`f208db70a0`](https://github.com/nodejs/node/commit/f208db70a0)] - **http**: add debug log for ERR_UNESCAPED_CHARACTERS (Aidan Temple) [#&#8203;45420](https://github.com/nodejs/node/pull/45420) - \[[`b72b2bab72`](https://github.com/nodejs/node/commit/b72b2bab72)] - **http**: add JSDoc property descriptions (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370) - \[[`4c9159a830`](https://github.com/nodejs/node/commit/4c9159a830)] - **lib**: improve transferable abort controller exec (Yagiz Nizipli) [#&#8203;45525](https://github.com/nodejs/node/pull/45525) - \[[`5745bcbb41`](https://github.com/nodejs/node/commit/5745bcbb41)] - **lib**: improve AbortController creation duration (Yagiz Nizipli) [#&#8203;45525](https://github.com/nodejs/node/pull/45525) - \[[`38767b42fb`](https://github.com/nodejs/node/commit/38767b42fb)] - **lib**: do not throw if global property is no longer configurable (Antoine du Hamel) [#&#8203;45344](https://github.com/nodejs/node/pull/45344) - \[[`0d1b1c5df0`](https://github.com/nodejs/node/commit/0d1b1c5df0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45531](https://github.com/nodejs/node/pull/45531) - \[[`208ea1a58c`](https://github.com/nodejs/node/commit/208ea1a58c)] - **meta**: update VoltrexMaster's username (Mohammed Keyvanzadeh) [#&#8203;45503](https://github.com/nodejs/node/pull/45503) - \[[`d13ea68ef6`](https://github.com/nodejs/node/commit/d13ea68ef6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45443](https://github.com/nodejs/node/pull/45443) - \[[`6704e7814f`](https://github.com/nodejs/node/commit/6704e7814f)] - **meta**: be more proactive about removing from teams (Rich Trott) [#&#8203;45352](https://github.com/nodejs/node/pull/45352) - \[[`6fdd202c57`](https://github.com/nodejs/node/commit/6fdd202c57)] - **module**: require.resolve.paths returns null with node schema (MURAKAMI Masahiko) [#&#8203;45147](https://github.com/nodejs/node/pull/45147) - \[[`38f1ede379`](https://github.com/nodejs/node/commit/38f1ede379)] - **node-api**: address coverity warning (Michael Dawson) [#&#8203;45563](https://github.com/nodejs/node/pull/45563) - \[[`4a4f2802ec`](https://github.com/nodejs/node/commit/4a4f2802ec)] - **node-api**: declare type napi_cleanup_hook (Chengzhong Wu) [#&#8203;45391](https://github.com/nodejs/node/pull/45391) - \[[`8ff16fd8c0`](https://github.com/nodejs/node/commit/8ff16fd8c0)] - **node-api**: fix immediate napi_remove_wrap test (Chengzhong Wu) [#&#8203;45406](https://github.com/nodejs/node/pull/45406) - \[[`e7a5b3347b`](https://github.com/nodejs/node/commit/e7a5b3347b)] - **src**: address coverity warning in node_file.cc (Michael Dawson) [#&#8203;45565](https://github.com/nodejs/node/pull/45565) - \[[`128c9f6fac`](https://github.com/nodejs/node/commit/128c9f6fac)] - **src**: use qualified `std::move` call in node_http2 (Michaël Zasso) [#&#8203;45555](https://github.com/nodejs/node/pull/45555) - \[[`57bca94cb1`](https://github.com/nodejs/node/commit/57bca94cb1)] - **src**: avoid unused variables and functions (Michaël Zasso) [#&#8203;45542](https://github.com/nodejs/node/pull/45542) - \[[`649b31f5e5`](https://github.com/nodejs/node/commit/649b31f5e5)] - **src**: add missing include for `std::all_of` (Michaël Zasso) [#&#8203;45541](https://github.com/nodejs/node/pull/45541) - \[[`56f22ea47c`](https://github.com/nodejs/node/commit/56f22ea47c)] - **src**: set an appropriate thread pool size if given `--v8-pool-size=0` (Daeyeon Jeong) [#&#8203;45513](https://github.com/nodejs/node/pull/45513) - \[[`cce9e11d2d`](https://github.com/nodejs/node/commit/cce9e11d2d)] - **src**: move FsStatsOffset and kFsStatsBufferLength to node_file.h (Joyee Cheung) [#&#8203;45498](https://github.com/nodejs/node/pull/45498) - \[[`5e5bf0c236`](https://github.com/nodejs/node/commit/5e5bf0c236)] - **src**: don't run tasks on isolate termination (Santiago Gimeno) [#&#8203;45444](https://github.com/nodejs/node/pull/45444) - \[[`10e7c2a62c`](https://github.com/nodejs/node/commit/10e7c2a62c)] - **src**: remove the unused PackageConfig class (Joyee Cheung) [#&#8203;45478](https://github.com/nodejs/node/pull/45478) - \[[`459d4481d4`](https://github.com/nodejs/node/commit/459d4481d4)] - **src**: add --max-semi-space-size to the options allowed in NODE_OPTIONS (Emanuel Hoogeveen) [#&#8203;44436](https://github.com/nodejs/node/pull/44436) - \[[`a483d1291e`](https://github.com/nodejs/node/commit/a483d1291e)] - **src**: condense experimental warning message (Rich Trott) [#&#8203;45424](https://github.com/nodejs/node/pull/45424) - \[[`42507e68ab`](https://github.com/nodejs/node/commit/42507e68ab)] - **src,node-api**: update `napi_is_detached_arraybuffer` (Daeyeon Jeong) [#&#8203;45538](https://github.com/nodejs/node/pull/45538) - \[[`f720c5880e`](https://github.com/nodejs/node/commit/f720c5880e)] - **stream**: use ArrayBufferPrototypeGetByteLength (Yagiz Nizipli) [#&#8203;45528](https://github.com/nodejs/node/pull/45528) - \[[`c00258e24b`](https://github.com/nodejs/node/commit/c00258e24b)] - **stream**: add primordials to adapters (Yagiz Nizipli) [#&#8203;45511](https://github.com/nodejs/node/pull/45511) - \[[`5274a8f7db`](https://github.com/nodejs/node/commit/5274a8f7db)] - **stream**: avoid premature close when will not emit close (Robert Nagy) [#&#8203;45301](https://github.com/nodejs/node/pull/45301) - \[[`496912d722`](https://github.com/nodejs/node/commit/496912d722)] - **stream**: fix typo in `adapters.js` ([#&#8203;45515](https://github.com/nodejs/node/issues/45515)) (Kohei Ueno) [#&#8203;45515](https://github.com/nodejs/node/pull/45515) - \[[`8d96e2c723`](https://github.com/nodejs/node/commit/8d96e2c723)] - **stream**: add fast path for utf8 (Yagiz Nizipli) [#&#8203;45483](https://github.com/nodejs/node/pull/45483) - \[[`c3fe9072c6`](https://github.com/nodejs/node/commit/c3fe9072c6)] - **test**: add trailing commas in event tests (Rich Trott) [#&#8203;45466](https://github.com/nodejs/node/pull/45466) - \[[`bb4c293873`](https://github.com/nodejs/node/commit/bb4c293873)] - **test**: add trailing commas in async-hooks tests ([#&#8203;45549](https://github.com/nodejs/node/issues/45549)) (Antoine du Hamel) [#&#8203;45549](https://github.com/nodejs/node/pull/45549) - \[[`731e8741b2`](https://github.com/nodejs/node/commit/731e8741b2)] - **test**: add trailing commas in addons test ([#&#8203;45548](https://github.com/nodejs/node/issues/45548)) (Antoine du Hamel) [#&#8203;45548](https://github.com/nodejs/node/pull/45548) - \[[`d6c68ce346`](https://github.com/nodejs/node/commit/d6c68ce346)] - **test**: add trailing commas in `test/common` ([#&#8203;45550](https://github.com/nodejs/node/issues/45550)) (Antoine du Hamel) [#&#8203;45550](https://github.com/nodejs/node/pull/45550) - \[[`c9ba0b738d`](https://github.com/nodejs/node/commit/c9ba0b738d)] - **test**: revise pull request guide text about code (Rich Trott) [#&#8203;45519](https://github.com/nodejs/node/pull/45519) - \[[`076e9eeaeb`](https://github.com/nodejs/node/commit/076e9eeaeb)] - **test**: fix test-trace-gc-flag (Tony Gorez) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`72f2df2802`](https://github.com/nodejs/node/commit/72f2df2802)] - **test**: adapt test-v8-stats for V8 update (Michaël Zasso) [#&#8203;45230](https://github.com/nodejs/node/pull/45230) - \[[`b491504d77`](https://github.com/nodejs/node/commit/b491504d77)] - **test**: enable the WPT for `structuredClone` (Daeyeon Jeong) [#&#8203;45482](https://github.com/nodejs/node/pull/45482) - \[[`1277ffcb55`](https://github.com/nodejs/node/commit/1277ffcb55)] - **test**: add lint rule to enforce trailing commas (Antoine du Hamel) [#&#8203;45468](https://github.com/nodejs/node/pull/45468) - \[[`45b54eec55`](https://github.com/nodejs/node/commit/45b54eec55)] - **test**: update uses of \_jabber.\_tcp.google.com (Colin Ihrig) [#&#8203;45451](https://github.com/nodejs/node/pull/45451) - \[[`51213c24bd`](https://github.com/nodejs/node/commit/51213c24bd)] - **test**: add test to validate changelogs for releases (Richard Lau) [#&#8203;45325](https://github.com/nodejs/node/pull/45325) - \[[`00a3b5f7d5`](https://github.com/nodejs/node/commit/00a3b5f7d5)] - **test**: remove flaky designation for test-worker-http2-stream-terminate (Rich Trott) [#&#8203;45438](https://github.com/nodejs/node/pull/45438) - \[[`4fe5c4e167`](https://github.com/nodejs/node/commit/4fe5c4e167)] - **test**: fix flaky test-repl-sigint-nested-eval (Rich Trott) [#&#8203;45354](https://github.com/nodejs/node/pull/45354) - \[[`f79dd65333`](https://github.com/nodejs/node/commit/f79dd65333)] - **test**: add a test to ensure the correctness of timezone upgrades (Darshan Sen) [#&#8203;45299](https://github.com/nodejs/node/pull/45299) - \[[`016749ba5d`](https://github.com/nodejs/node/commit/016749ba5d)] - **test_runner**: add initial TAP parser (Wassim Chegham) [#&#8203;43525](https://github.com/nodejs/node/pull/43525) - \[[`e9760b4ae8`](https://github.com/nodejs/node/commit/e9760b4ae8)] - **test_runner**: support watch mode (Moshe Atlow) [#&#8203;45214](https://github.com/nodejs/node/pull/45214) - \[[`160c88ec77`](https://github.com/nodejs/node/commit/160c88ec77)] - **tools**: have test-asan use ubuntu-20.04 (Filip Skokan) [#&#8203;45581](https://github.com/nodejs/node/pull/45581) - \[[`81f63c2b28`](https://github.com/nodejs/node/commit/81f63c2b28)] - **tools**: update eslint to 8.28.0 (Node.js GitHub Bot) [#&#8203;45532](https://github.com/nodejs/node/pull/45532) - \[[`f3f1aed01a`](https://github.com/nodejs/node/commit/f3f1aed01a)] - **tools**: add automation for updating libuv dependency (Facundo Tuesca) [#&#8203;45362](https://github.com/nodejs/node/pull/45362) - \[[`d4f30f07b3`](https://github.com/nodejs/node/commit/d4f30f07b3)] - **tools**: add missing step in update-base64.sh script (Facundo Tuesca) [#&#8203;45509](https://github.com/nodejs/node/pull/45509) - \[[`cca20330cf`](https://github.com/nodejs/node/commit/cca20330cf)] - **tools**: update certdata.txt (Luigi Pinca) [#&#8203;45490](https://github.com/nodejs/node/pull/45490) - \[[`39e873139b`](https://github.com/nodejs/node/commit/39e873139b)] - **tools**: include current release in the list of released versions (Antoine du Hamel) [#&#8203;45463](https://github.com/nodejs/node/pull/45463) - \[[`8a34ef4897`](https://github.com/nodejs/node/commit/8a34ef4897)] - **tools**: update lint-md-dependencies to rollup@3.3.0 (Node.js GitHub Bot) [#&#8203;45442](https://github.com/nodejs/node/pull/45442) - \[[`bb36acff42`](https://github.com/nodejs/node/commit/bb36acff42)] - **tools**: do not run CQ on non-fast-tracked PRs open for less than 2 days (Moshe Atlow) [#&#8203;45407](https://github.com/nodejs/node/pull/45407) - \[[`93bc2ba509`](https://github.com/nodejs/node/commit/93bc2ba509)] - **tools**: simplify .eslintrc.js (Rich Trott) [#&#8203;45397](https://github.com/nodejs/node/pull/45397) - \[[`b7f8a44c64`](https://github.com/nodejs/node/commit/b7f8a44c64)] - **tools**: simplify regex in ESLint config (Rich Trott) [#&#8203;45399](https://github.com/nodejs/node/pull/45399) - \[[`36bf87fabf`](https://github.com/nodejs/node/commit/36bf87fabf)] - **tools**: enable jsdoc/require-property-description rule (Rich Trott) [#&#8203;45370](https://github.com/nodejs/node/pull/45370) - \[[`7c6281a7d2`](https://github.com/nodejs/node/commit/7c6281a7d2)] - **tools**: dynamically determine parallelism on GitHub Actions macOS (Rich Trott) [#&#8203;45350](https://github.com/nodejs/node/pull/45350) - \[[`f441b04c11`](https://github.com/nodejs/node/commit/f441b04c11)] - **trace_events**: add new categories (theanarkh) [#&#8203;45266](https://github.com/nodejs/node/pull/45266) - \[[`6bdd2c3884`](https://github.com/nodejs/node/commit/6bdd2c3884)] - ***Revert*** "**url**: improve port validation" (Rich Trott) [#&#8203;45517](https://github.com/nodejs/node/pull/45517) - \[[`bbba42fcb2`](https://github.com/nodejs/node/commit/bbba42fcb2)] - **url**: remove unnecessary object call to kFormat (Yagiz Nizipli) [#&#8203;45492](https://github.com/nodejs/node/pull/45492) - \[[`7c79ba7b27`](https://github.com/nodejs/node/commit/7c79ba7b27)] - **util**: add fast path for utf8 encoding (Yagiz Nizipli) [#&#8203;45412](https://github.com/nodejs/node/pull/45412) - \[[`f86f90f839`](https://github.com/nodejs/node/commit/f86f90f839)] - **util**: improve text decoder performance (Yagiz Nizipli) [#&#8203;45388](https://github.com/nodejs/node/pull/45388) - \[[`3263ceb21a`](https://github.com/nodejs/node/commit/3263ceb21a)] - **watch**: watch for missing dependencies (Moshe Atlow) [#&#8203;45348](https://github.com/nodejs/node/pull/45348) ### [`v19.1.0`](https://github.com/nodejs/node/releases/tag/v19.1.0): 2022-11-14, Version 19.1.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.0.1...v19.1.0) ##### Notable changes ##### Support function mocking on Node.js test runner The `node:test` module supports mocking during testing via a top-level `mock` object. ```js test('spies on an object method', (t) => { const number = { value: 5, add(a) { return this.value + a; }, }; t.mock.method(number, 'add'); assert.strictEqual(number.add(3), 8); assert.strictEqual(number.add.mock.calls.length, 1); }); ``` Contributed by Colin Ihrig in [#&#8203;45326](https://github.com/nodejs/node/pull/45326) ##### fs.watch recursive support on Linux `fs.watch` supports recursive watch using the `recursive: true` option. ```js const watcher = fs.watch(testDirectory, { recursive: true }); watcher.on('change', function(event, filename) { }); ``` Contributed by Yagiz Nizipli in [#&#8203;45098](https://github.com/nodejs/node/pull/45098) ##### Other notable changes - **deps** - update ICU to 72.1 (Michaël Zasso) [#&#8203;45068](https://github.com/nodejs/node/pull/45068) - **doc** - add lukekarrys to collaborators (Luke Karrys) [#&#8203;45180](https://github.com/nodejs/node/pull/45180) - add anonrig to collaborators (Yagiz Nizipli) [#&#8203;45002](https://github.com/nodejs/node/pull/45002) - **lib** - drop fetch experimental warning (Matteo Collina) [#&#8203;45287](https://github.com/nodejs/node/pull/45287) - **util** - (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#&#8203;21128](https://github.com/nodejs/node/pull/21128) - improve textdecoder decode performance (Yagiz Nizipli) [#&#8203;45294](https://github.com/nodejs/node/pull/45294) ##### Commits - \[[`c9cf399ec7`](https://github.com/nodejs/node/commit/c9cf399ec7)] - **benchmark**: add parameters to text-decoder benchmark (Yagiz Nizipli) [#&#8203;45363](https://github.com/nodejs/node/pull/45363) - \[[`79f6bb061d`](https://github.com/nodejs/node/commit/79f6bb061d)] - **benchmark**: fix text-decoder benchmark (Yagiz Nizipli) [#&#8203;45363](https://github.com/nodejs/node/pull/45363) - \[[`a27c994ced`](https://github.com/nodejs/node/commit/a27c994ced)] - **benchmark**: add blob benchmark (Yagiz Nizipli) [#&#8203;44990](https://github.com/nodejs/node/pull/44990) - \[[`c45b6aee78`](https://github.com/nodejs/node/commit/c45b6aee78)] - **bootstrap**: merge main thread and worker thread initializations (Joyee Cheung) [#&#8203;44869](https://github.com/nodejs/node/pull/44869) - \[[`33691208df`](https://github.com/nodejs/node/commit/33691208df)] - **buffer**: fix validation of options in `Blob` constructor (Antoine du Hamel) [#&#8203;45156](https://github.com/nodejs/node/pull/45156) - \[[`7b938df296`](https://github.com/nodejs/node/commit/7b938df296)] - **build**: support Python 3.11 (Luigi Pinca) [#&#8203;45191](https://github.com/nodejs/node/pull/45191) - \[[`75e0a2d109`](https://github.com/nodejs/node/commit/75e0a2d109)] - **build**: workaround for node-core-utils (Jiawen Geng) [#&#8203;45199](https://github.com/nodejs/node/pull/45199) - \[[`f598edbdf4`](https://github.com/nodejs/node/commit/f598edbdf4)] - **build**: fix icu-small build with ICU 72.1 (Steven R. Loomis) [#&#8203;45195](https://github.com/nodejs/node/pull/45195) - \[[`29b9f4f90c`](https://github.com/nodejs/node/commit/29b9f4f90c)] - **build**: remove unused language files (Ben Noordhuis) [#&#8203;45138](https://github.com/nodejs/node/pull/45138) - \[[`3a1ee940d1`](https://github.com/nodejs/node/commit/3a1ee940d1)] - **build**: add GitHub token to auto-start-ci workflow (Richard Lau) [#&#8203;45185](https://github.com/nodejs/node/pull/45185) - \[[`17349a2f42`](https://github.com/nodejs/node/commit/17349a2f42)] - **build**: restore Windows resource file (Richard Lau) [#&#8203;45042](https://github.com/nodejs/node/pull/45042) - \[[`24e24bd063`](https://github.com/nodejs/node/commit/24e24bd063)] - **build**: add version info to timezone update PR (Darshan Sen) [#&#8203;45021](https://github.com/nodejs/node/pull/45021) - \[[`8d7aa53e6b`](https://github.com/nodejs/node/commit/8d7aa53e6b)] - **build,win**: pass --debug-nghttp2 to configure (Santiago Gimeno) [#&#8203;45209](https://github.com/nodejs/node/pull/45209) - \[[`b2e60480f3`](https://github.com/nodejs/node/commit/b2e60480f3)] - **child_process**: validate arguments for null bytes (Darshan Sen) [#&#8203;44782](https://github.com/nodejs/node/pull/44782) - \[[`1f0edde412`](https://github.com/nodejs/node/commit/1f0edde412)] - **crypto**: handle more webcrypto errors with OperationError (Filip Skokan) [#&#8203;45320](https://github.com/nodejs/node/pull/45320) - \[[`13fb05e12b`](https://github.com/nodejs/node/commit/13fb05e12b)] - **crypto**: handle unsupported AES ciphers in webcrypto (Filip Skokan) [#&#8203;45321](https://github.com/nodejs/node/pull/45321) - \[[`c168cbfbb3`](https://github.com/nodejs/node/commit/c168cbfbb3)] - **deps**: V8: cherry-pick [`56816d7`](https://github.com/nodejs/node/commit/56816d76c121) (Shi Pujin) [#&#8203;45353](https://github.com/nodejs/node/pull/45353) - \[[`1432474abf`](https://github.com/nodejs/node/commit/1432474abf)] - **deps**: upgrade npm to 8.19.3 (npm team) [#&#8203;45322](https://github.com/nodejs/node/pull/45322) - \[[`f35d56200d`](https://github.com/nodejs/node/commit/f35d56200d)] - **deps**: update corepack to 0.15.1 (Node.js GitHub Bot) [#&#8203;45331](https://github.com/nodejs/node/pull/45331) - \[[`44de2321aa`](https://github.com/nodejs/node/commit/44de2321aa)] - **deps**: patch V8 to 10.7.193.20 (Michaël Zasso) [#&#8203;45228](https://github.com/nodejs/node/pull/45228) - \[[`bfe3819f08`](https://github.com/nodejs/node/commit/bfe3819f08)] - **deps**: upgrade to libuv 1.44.2 (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340) - \[[`0d41df96b3`](https://github.com/nodejs/node/commit/0d41df96b3)] - **deps**: update corepack to 0.15.0 (Node.js GitHub Bot) [#&#8203;45235](https://github.com/nodejs/node/pull/45235) - \[[`0d241638ca`](https://github.com/nodejs/node/commit/0d241638ca)] - **deps**: update undici to 5.12.0 (Node.js GitHub Bot) [#&#8203;45236](https://github.com/nodejs/node/pull/45236) - \[[`f58996188a`](https://github.com/nodejs/node/commit/f58996188a)] - ***Revert*** "**deps**: make V8 compilable with older glibc" (Michaël Zasso) [#&#8203;45162](https://github.com/nodejs/node/pull/45162) - \[[`8cda730e58`](https://github.com/nodejs/node/commit/8cda730e58)] - **deps**: update ICU to 72.1 (Michaël Zasso) [#&#8203;45068](https://github.com/nodejs/node/pull/45068) - \[[`0a6ed6f710`](https://github.com/nodejs/node/commit/0a6ed6f710)] - ***Revert*** "**deps**: V8: forward declaration of `Rtl*FunctionTable`" (Michaël Zasso) [#&#8203;45119](https://github.com/nodejs/node/pull/45119) - \[[`2f7518ada2`](https://github.com/nodejs/node/commit/2f7518ada2)] - **deps**: update timezone (Node.js GitHub Bot) [#&#8203;44950](https://github.com/nodejs/node/pull/44950) - \[[`3bfba6df79`](https://github.com/nodejs/node/commit/3bfba6df79)] - **deps**: patch V8 to 10.7.193.16 (Michaël Zasso) [#&#8203;45023](https://github.com/nodejs/node/pull/45023) - \[[`b5baaa61b3`](https://github.com/nodejs/node/commit/b5baaa61b3)] - **dns**: fix port validation (Antoine du Hamel) [#&#8203;45135](https://github.com/nodejs/node/pull/45135) - \[[`0e9bad97cc`](https://github.com/nodejs/node/commit/0e9bad97cc)] - **doc**: allow for holidays in triage response (Michael Dawson) [#&#8203;45267](https://github.com/nodejs/node/pull/45267) - \[[`d4aabb9d3d`](https://github.com/nodejs/node/commit/d4aabb9d3d)] - **doc**: include last security release date (Juan José Arboleda) [#&#8203;45368](https://github.com/nodejs/node/pull/45368) - \[[`ba45373164`](https://github.com/nodejs/node/commit/ba45373164)] - **doc**: fix email for Ashley (Michael Dawson) [#&#8203;45364](https://github.com/nodejs/node/pull/45364) - \[[`d5e5c75b13`](https://github.com/nodejs/node/commit/d5e5c75b13)] - **doc**: fix test runner's only tests section header (Colin Ihrig) [#&#8203;45343](https://github.com/nodejs/node/pull/45343) - \[[`a7c5f31c47`](https://github.com/nodejs/node/commit/a7c5f31c47)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;45349](https://github.com/nodejs/node/pull/45349) - \[[`3de125743e`](https://github.com/nodejs/node/commit/3de125743e)] - **doc**: add more info for timer.setInterval (theanarkh) [#&#8203;45232](https://github.com/nodejs/node/pull/45232) - \[[`5a1252d9b4`](https://github.com/nodejs/node/commit/5a1252d9b4)] - **doc**: use module names in stability overview table (Filip Skokan) [#&#8203;45312](https://github.com/nodejs/node/pull/45312) - \[[`4d38bf2c5f`](https://github.com/nodejs/node/commit/4d38bf2c5f)] - **doc**: add `node:` prefix for examples (Daeyeon Jeong) [#&#8203;45328](https://github.com/nodejs/node/pull/45328) - \[[`b4b6b95f48`](https://github.com/nodejs/node/commit/b4b6b95f48)] - **doc**: update name of Node.js core Slack channel (Rich Trott) [#&#8203;45293](https://github.com/nodejs/node/pull/45293) - \[[`7d7e7c316b`](https://github.com/nodejs/node/commit/7d7e7c316b)] - **doc**: fix "task_processor.js" typo (andreysoktoev) [#&#8203;45257](https://github.com/nodejs/node/pull/45257) - \[[`b9039a54af`](https://github.com/nodejs/node/commit/b9039a54af)] - **doc**: add history section to `fetch`-related globals (Antoine du Hamel) [#&#8203;45198](https://github.com/nodejs/node/pull/45198) - \[[`d9163f1632`](https://github.com/nodejs/node/commit/d9163f1632)] - **doc**: clarify moderation in `onboarding.md` (Benjamin Gruenbaum) [#&#8203;41930](https://github.com/nodejs/node/pull/41930) - \[[`c179c1478b`](https://github.com/nodejs/node/commit/c179c1478b)] - **doc**: change make lint to make lint-md (RafaelGSS) [#&#8203;45197](https://github.com/nodejs/node/pull/45197) - \[[`58bec56fab`](https://github.com/nodejs/node/commit/58bec56fab)] - **doc**: add more lts update steps to release guide (Ruy Adorno) [#&#8203;45177](https://github.com/nodejs/node/pull/45177) - \[[`8f8d7e76ac`](https://github.com/nodejs/node/commit/8f8d7e76ac)] - **doc**: add bmuenzenmeyer to triagers (Brian Muenzenmeyer) [#&#8203;45155](https://github.com/nodejs/node/pull/45155) - \[[`de2df550f6`](https://github.com/nodejs/node/commit/de2df550f6)] - **doc**: update process.release (Filip Skokan) [#&#8203;45170](https://github.com/nodejs/node/pull/45170) - \[[`916e8760ba`](https://github.com/nodejs/node/commit/916e8760ba)] - **doc**: add link to triage guide (Brian Muenzenmeyer) [#&#8203;45154](https://github.com/nodejs/node/pull/45154) - \[[`54d806853e`](https://github.com/nodejs/node/commit/54d806853e)] - **doc**: mark Node.js 12 as End-of-Life (Rafael Gonzaga) [#&#8203;45186](https://github.com/nodejs/node/pull/45186) - \[[`3a26347649`](https://github.com/nodejs/node/commit/3a26347649)] - **doc**: add lukekarrys to collaborators (Luke Karrys) [#&#8203;45180](https://github.com/nodejs/node/pull/45180) - \[[`85cb4d795c`](https://github.com/nodejs/node/commit/85cb4d795c)] - **doc**: update mark release line lts on release guide (Ruy Adorno) [#&#8203;45101](https://github.com/nodejs/node/pull/45101) - \[[`c23e023a2d`](https://github.com/nodejs/node/commit/c23e023a2d)] - **doc**: be more definite and present tense-y (Ben Noordhuis) [#&#8203;45120](https://github.com/nodejs/node/pull/45120) - \[[`519002152b`](https://github.com/nodejs/node/commit/519002152b)] - **doc**: add major version note to release guide (Ruy Adorno) [#&#8203;45054](https://github.com/nodejs/node/pull/45054) - \[[`809e8dcbd2`](https://github.com/nodejs/node/commit/809e8dcbd2)] - **doc**: fix v14.x link maintaining openssl guide (RafaelGSS) [#&#8203;45071](https://github.com/nodejs/node/pull/45071) - \[[`9d449d389d`](https://github.com/nodejs/node/commit/9d449d389d)] - **doc**: add note about latest GitHub release (Michaël Zasso) [#&#8203;45111](https://github.com/nodejs/node/pull/45111) - \[[`ee34a3a1bc`](https://github.com/nodejs/node/commit/ee34a3a1bc)] - **doc**: mention v18.x openssl maintaining guide (Rafael Gonzaga) [#&#8203;45070](https://github.com/nodejs/node/pull/45070) - \[[`3e4033a90d`](https://github.com/nodejs/node/commit/3e4033a90d)] - **doc**: fix display of "problematic" ASCII characters (John Gardner) [#&#8203;44373](https://github.com/nodejs/node/pull/44373) - \[[`533e38b0b8`](https://github.com/nodejs/node/commit/533e38b0b8)] - **doc**: mark Node.js v17.x as EOL (KaKa) [#&#8203;45110](https://github.com/nodejs/node/pull/45110) - \[[`93a34faa39`](https://github.com/nodejs/node/commit/93a34faa39)] - **doc**: update Node.js 16 End-of-Life date (Richard Lau) [#&#8203;45103](https://github.com/nodejs/node/pull/45103) - \[[`b4beddef79`](https://github.com/nodejs/node/commit/b4beddef79)] - **doc**: fix typo in parseArgs default value (Tobias Nießen) [#&#8203;45083](https://github.com/nodejs/node/pull/45083) - \[[`e8103fd33b`](https://github.com/nodejs/node/commit/e8103fd33b)] - **doc**: updated security stewards (Michael Dawson) [#&#8203;45005](https://github.com/nodejs/node/pull/45005) - \[[`5fbccae4f0`](https://github.com/nodejs/node/commit/5fbccae4f0)] - **doc**: fix http and http2 writeEarlyHints() parameter (Fabian Meyer) [#&#8203;45000](https://github.com/nodejs/node/pull/45000) - \[[`d47f83251a`](https://github.com/nodejs/node/commit/d47f83251a)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;45034](https://github.com/nodejs/node/pull/45034) - \[[`e6bbc5033d`](https://github.com/nodejs/node/commit/e6bbc5033d)] - **doc**: improve the workflow to test release binaries (Rafael Gonzaga) [#&#8203;45004](https://github.com/nodejs/node/pull/45004) - \[[`f0c18f04f0`](https://github.com/nodejs/node/commit/f0c18f04f0)] - **doc**: fix undici version in changelog (Michael Dawson) [#&#8203;44982](https://github.com/nodejs/node/pull/44982) - \[[`ffba3218ec`](https://github.com/nodejs/node/commit/ffba3218ec)] - **doc**: add info on fixup to security release process (Michael Dawson) [#&#8203;44807](https://github.com/nodejs/node/pull/44807) - \[[`edb92f4510`](https://github.com/nodejs/node/commit/edb92f4510)] - **doc**: add anonrig to collaborators (Yagiz Nizipli) [#&#8203;45002](https://github.com/nodejs/node/pull/45002) - \[[`58334a38e8`](https://github.com/nodejs/node/commit/58334a38e8)] - **doc, async_hooks**: improve and add migration hints (Gerhard Stöbich) [#&#8203;45369](https://github.com/nodejs/node/pull/45369) - \[[`7225a7d46b`](https://github.com/nodejs/node/commit/7225a7d46b)] - **doc, http**: add Uint8Array as allowed type (Gerhard Stöbich) [#&#8203;45167](https://github.com/nodejs/node/pull/45167) - \[[`40a5e22328`](https://github.com/nodejs/node/commit/40a5e22328)] - **esm**: protect ESM loader from prototype pollution (Antoine du Hamel) [#&#8203;45175](https://github.com/nodejs/node/pull/45175) - \[[`2e5d8e7239`](https://github.com/nodejs/node/commit/2e5d8e7239)] - **esm**: protect ESM loader from prototype pollution (Antoine du Hamel) [#&#8203;45044](https://github.com/nodejs/node/pull/45044) - \[[`c3dd696081`](https://github.com/nodejs/node/commit/c3dd696081)] - **events**: add unique events benchmark (Yagiz Nizipli) [#&#8203;44657](https://github.com/nodejs/node/pull/44657) - \[[`daff3b8b09`](https://github.com/nodejs/node/commit/daff3b8b09)] - **fs**: update todo message (Yagiz Nizipli) [#&#8203;45265](https://github.com/nodejs/node/pull/45265) - \[[`670def3d6f`](https://github.com/nodejs/node/commit/670def3d6f)] - **fs**: fix opts.filter issue in cpSync (Tho) [#&#8203;45143](https://github.com/nodejs/node/pull/45143) - \[[`34bfef91a9`](https://github.com/nodejs/node/commit/34bfef91a9)] - **(SEMVER-MINOR)** **fs**: add recursive watch to linux (Yagiz Nizipli) [#&#8203;45098](https://github.com/nodejs/node/pull/45098) - \[[`d89ca1b443`](https://github.com/nodejs/node/commit/d89ca1b443)] - **fs**: trace more fs api (theanarkh) [#&#8203;45095](https://github.com/nodejs/node/pull/45095) - \[[`1a04881494`](https://github.com/nodejs/node/commit/1a04881494)] - **http**: headers(Distinct), trailers(Distinct) setters to be no-op (Madhuri) [#&#8203;45176](https://github.com/nodejs/node/pull/45176) - \[[`8abc3f732a`](https://github.com/nodejs/node/commit/8abc3f732a)] - **http**: add priority to common http headers (James M Snell) [#&#8203;45045](https://github.com/nodejs/node/pull/45045) - \[[`316354e3d3`](https://github.com/nodejs/node/commit/316354e3d3)] - **http2**: improve session close/destroy procedures (Santiago Gimeno) [#&#8203;45115](https://github.com/nodejs/node/pull/45115) - \[[`1635140952`](https://github.com/nodejs/node/commit/1635140952)] - **http2**: fix crash on Http2Stream::diagnostic_name() (Santiago Gimeno) [#&#8203;45123](https://github.com/nodejs/node/pull/45123) - \[[`94b7f5338c`](https://github.com/nodejs/node/commit/94b7f5338c)] - **http2**: fix debugStream method (Santiago Gimeno) [#&#8203;45129](https://github.com/nodejs/node/pull/45129) - \[[`3db37e7d1b`](https://github.com/nodejs/node/commit/3db37e7d1b)] - **inspector**: refactor `inspector/promises` to be more robust (Antoine du Hamel) [#&#8203;45041](https://github.com/nodejs/node/pull/45041) - \[[`0478e4063f`](https://github.com/nodejs/node/commit/0478e4063f)] - **lib**: add options to the heap snapshot APIs (Joyee Cheung) [#&#8203;44989](https://github.com/nodejs/node/pull/44989) - \[[`a8e901555a`](https://github.com/nodejs/node/commit/a8e901555a)] - **lib**: fix JSDoc issues (Rich Trott) [#&#8203;45243](https://github.com/nodejs/node/pull/45243) - \[[`74352842bc`](https://github.com/nodejs/node/commit/74352842bc)] - **lib**: use process.nextTick() instead of setImmediate() (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340) - \[[`9f3d2f6879`](https://github.com/nodejs/node/commit/9f3d2f6879)] - **lib**: drop fetch experimental warning (Matteo Collina) [#&#8203;45287](https://github.com/nodejs/node/pull/45287) - \[[`e2181e057b`](https://github.com/nodejs/node/commit/e2181e057b)] - **lib**: fix eslint early return (RafaelGSS) [#&#8203;45409](https://github.com/nodejs/node/pull/45409) - \[[`d1726692ee`](https://github.com/nodejs/node/commit/d1726692ee)] - **lib**: fix TypeError when converting a detached buffer source (Kohei Ueno) [#&#8203;44020](https://github.com/nodejs/node/pull/44020) - \[[`d7470ad986`](https://github.com/nodejs/node/commit/d7470ad986)] - **lib**: fix `AbortSignal.timeout` parameter validation (dnalborczyk) [#&#8203;42856](https://github.com/nodejs/node/pull/42856) - \[[`c7b7f2bec2`](https://github.com/nodejs/node/commit/c7b7f2bec2)] - **lib**: add lint rule to protect against `Object.prototype.then` pollution (Antoine du Hamel) [#&#8203;45061](https://github.com/nodejs/node/pull/45061) - \[[`9ed9aa8233`](https://github.com/nodejs/node/commit/9ed9aa8233)] - **lib**: add ability to add separate event name to defineEventHandler (James M Snell) [#&#8203;45032](https://github.com/nodejs/node/pull/45032) - \[[`8b4a41e23d`](https://github.com/nodejs/node/commit/8b4a41e23d)] - **lib**: fix typo in `pre_execution.js` (Antoine du Hamel) [#&#8203;45039](https://github.com/nodejs/node/pull/45039) - \[[`cc2393c9fe`](https://github.com/nodejs/node/commit/cc2393c9fe)] - **lib**: promise version of streams.finished call clean up (Naor Tedgi (Abu Emma)) [#&#8203;44862](https://github.com/nodejs/node/pull/44862) - \[[`17ef1bbc8e`](https://github.com/nodejs/node/commit/17ef1bbc8e)] - **lib**: make properties on Blob and URL enumerable (Khafra) [#&#8203;44918](https://github.com/nodejs/node/pull/44918) - \[[`8199841e9c`](https://github.com/nodejs/node/commit/8199841e9c)] - **lib**: support more attributes for early hint link (Yagiz Nizipli) [#&#8203;44874](https://github.com/nodejs/node/pull/44874) - \[[`88c3bb609b`](https://github.com/nodejs/node/commit/88c3bb609b)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45333](https://github.com/nodejs/node/pull/45333) - \[[`a866e8c163`](https://github.com/nodejs/node/commit/a866e8c163)] - **meta**: update collaborator email address in README (Rich Trott) [#&#8203;45251](https://github.com/nodejs/node/pull/45251) - \[[`bfbfacad79`](https://github.com/nodejs/node/commit/bfbfacad79)] - **meta**: fix email address typo in README (Rich Trott) [#&#8203;45250](https://github.com/nodejs/node/pull/45250) - \[[`0d58bb9531`](https://github.com/nodejs/node/commit/0d58bb9531)] - **meta**: remove dont-land-on-v12 auto labeling (Moshe Atlow) [#&#8203;45233](https://github.com/nodejs/node/pull/45233) - \[[`b41b5ba658`](https://github.com/nodejs/node/commit/b41b5ba658)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45238](https://github.com/nodejs/node/pull/45238) - \[[`ad9a5bb61f`](https://github.com/nodejs/node/commit/ad9a5bb61f)] - **meta**: move a collaborator to emeritus (Rich Trott) [#&#8203;45160](https://github.com/nodejs/node/pull/45160) - \[[`ec8683052b`](https://github.com/nodejs/node/commit/ec8683052b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;45036](https://github.com/nodejs/node/pull/45036) - \[[`7900810fb3`](https://github.com/nodejs/node/commit/7900810fb3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#&#8203;45020](https://github.com/nodejs/node/pull/45020) - \[[`738144c311`](https://github.com/nodejs/node/commit/738144c311)] - **module**: ensure relative requires work from deleted directories (Bradley Farias) [#&#8203;42384](https://github.com/nodejs/node/pull/42384) - \[[`36acf8a13e`](https://github.com/nodejs/node/commit/36acf8a13e)] - **net**: remove \_readableState from debug statement (Rich Trott) [#&#8203;45063](https://github.com/nodejs/node/pull/45063) - \[[`aaca54c5c0`](https://github.com/nodejs/node/commit/aaca54c5c0)] - **node-api**: handle no support for external buffers (Michael Dawson) [#&#8203;45181](https://github.com/nodejs/node/pull/45181) - \[[`2105f099ea`](https://github.com/nodejs/node/commit/2105f099ea)] - **node-api,test**: fix test_reference_double_free crash (Vladimir Morozov) [#&#8203;44927](https://github.com/nodejs/node/pull/44927) - \[[`2fcf851a91`](https://github.com/nodejs/node/commit/2fcf851a91)] - **os**: convert uid and gid to 32-bit signed integers (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340) - \[[`dfe4237d77`](https://github.com/nodejs/node/commit/dfe4237d77)] - **perf_hooks**: align toStringTag with other Web Performance implementations (Daeyeon Jeong) [#&#8203;45157](https://github.com/nodejs/node/pull/45157) - \[[`9d15da3341`](https://github.com/nodejs/node/commit/9d15da3341)] - **report**: add more memory info (theanarkh) [#&#8203;45254](https://github.com/nodejs/node/pull/45254) - \[[`a2620acad7`](https://github.com/nodejs/node/commit/a2620acad7)] - **report**: add rss and use/kernel cpu usage fields (theanarkh) [#&#8203;45043](https://github.com/nodejs/node/pull/45043) - \[[`66e1dc4979`](https://github.com/nodejs/node/commit/66e1dc4979)] - **report,doc**: define report version semantics (Gireesh Punathil) [#&#8203;45050](https://github.com/nodejs/node/pull/45050) - \[[`86e22b4e19`](https://github.com/nodejs/node/commit/86e22b4e19)] - **src**: track contexts in the Environment instead of AsyncHooks (Joyee Cheung) [#&#8203;45282](https://github.com/nodejs/node/pull/45282) - \[[`326d19af3d`](https://github.com/nodejs/node/commit/326d19af3d)] - **src**: resolve TODO related to inspector CVEs (Tobias Nießen) [#&#8203;45341](https://github.com/nodejs/node/pull/45341) - \[[`4e45585ca2`](https://github.com/nodejs/node/commit/4e45585ca2)] - **src**: revert is_release to 0 (RafaelGSS) [#&#8203;45315](https://github.com/nodejs/node/pull/45315) - \[[`5d480118fb`](https://github.com/nodejs/node/commit/5d480118fb)] - **src**: print nghttp2 logs when using --debug-nghttp2 (Santiago Gimeno) [#&#8203;45209](https://github.com/nodejs/node/pull/45209) - \[[`3e46ebda3c`](https://github.com/nodejs/node/commit/3e46ebda3c)] - **src**: trace threadpool event (theanarkh) [#&#8203;44458](https://github.com/nodejs/node/pull/44458) - \[[`97547bcd14`](https://github.com/nodejs/node/commit/97547bcd14)] - **src**: lock-free init_process_flags (Jérémy Lal) [#&#8203;45221](https://github.com/nodejs/node/pull/45221) - \[[`42db84913b`](https://github.com/nodejs/node/commit/42db84913b)] - **src**: call uv_library_shutdown before DisposePlatform (theanarkh) [#&#8203;45226](https://github.com/nodejs/node/pull/45226) - \[[`aa4152a1b6`](https://github.com/nodejs/node/commit/aa4152a1b6)] - **src**: fix `crypto.privateEncrypt` fails first time (liuxingbaoyu) [#&#8203;42793](https://github.com/nodejs/node/pull/42793) - \[[`243c141b69`](https://github.com/nodejs/node/commit/243c141b69)] - **src**: clarify OptionEnvvarSettings member names (Chengzhong Wu) [#&#8203;45057](https://github.com/nodejs/node/pull/45057) - \[[`5335e29ce7`](https://github.com/nodejs/node/commit/5335e29ce7)] - **src**: let http2 streams end after session close (Santiago Gimeno) [#&#8203;45153](https://github.com/nodejs/node/pull/45153) - \[[`8d5682266e`](https://github.com/nodejs/node/commit/8d5682266e)] - **src**: remap invalid file descriptors using `dup2` (Obiwac) [#&#8203;44461](https://github.com/nodejs/node/pull/44461) - \[[`4e14ed8878`](https://github.com/nodejs/node/commit/4e14ed8878)] - **src**: remove unused `contextify_global_private_symbol` (Daeyeon Jeong) [#&#8203;45128](https://github.com/nodejs/node/pull/45128) - \[[`a8412f5677`](https://github.com/nodejs/node/commit/a8412f5677)] - **src**: forbid running watch mode in REPL (Moshe Atlow) [#&#8203;45058](https://github.com/nodejs/node/pull/45058) - \[[`162bf0ddff`](https://github.com/nodejs/node/commit/162bf0ddff)] - **src**: fix test runner coverage (Moshe Atlow) [#&#8203;45055](https://github.com/nodejs/node/pull/45055) - \[[`e5b1179630`](https://github.com/nodejs/node/commit/e5b1179630)] - **src**: optimize ALPN callback (Ben Noordhuis) [#&#8203;44875](https://github.com/nodejs/node/pull/44875) - \[[`9dc21a1f86`](https://github.com/nodejs/node/commit/9dc21a1f86)] - **src**: simplify ALPN code, remove indirection (Ben Noordhuis) [#&#8203;44875](https://github.com/nodejs/node/pull/44875) - \[[`5fce8e3495`](https://github.com/nodejs/node/commit/5fce8e3495)] - **src**: iwyu in cleanup_queue.cc (Shelley Vohr) [#&#8203;44983](https://github.com/nodejs/node/pull/44983) - \[[`824dcfc422`](https://github.com/nodejs/node/commit/824dcfc422)] - **src**: return void in InitializeInspector() (Joyee Cheung) [#&#8203;44903](https://github.com/nodejs/node/pull/44903) - \[[`7a31ae8ab1`](https://github.com/nodejs/node/commit/7a31ae8ab1)] - **src,lib**: retrieve parsed source map url from v8 (Chengzhong Wu) [#&#8203;44798](https://github.com/nodejs/node/pull/44798) - \[[`ccb1c1e9a2`](https://github.com/nodejs/node/commit/ccb1c1e9a2)] - **stream**: add compose operator (Raz Luvaton) [#&#8203;44937](https://github.com/nodejs/node/pull/44937) - \[[`e60d9053bc`](https://github.com/nodejs/node/commit/e60d9053bc)] - **stream**: fix duplexify premature destroy (Robert Nagy) [#&#8203;45133](https://github.com/nodejs/node/pull/45133) - \[[`bc0ae3e74e`](https://github.com/nodejs/node/commit/bc0ae3e74e)] - **stream**: fix web streams have no Symbol.toStringTag (Jithil P Ponnan) [#&#8203;45117](https://github.com/nodejs/node/pull/45117) - \[[`1655532fd2`](https://github.com/nodejs/node/commit/1655532fd2)] - **stream**: don't push null from closed promise [#&#8203;42694](https://github.com/nodejs/node/issues/42694) (David Halls) [#&#8203;45026](https://github.com/nodejs/node/pull/45026) - \[[`717db1d46a`](https://github.com/nodejs/node/commit/717db1d46a)] - **test**: skip test-fs-largefile if not enough disk space (Rich Trott) [#&#8203;45339](https://github.com/nodejs/node/pull/45339) - \[[`4a80aff16e`](https://github.com/nodejs/node/commit/4a80aff16e)] - **test**: fix catching failed assertion (Pavel Horal) [#&#8203;45222](https://github.com/nodejs/node/pull/45222) - \[[`66e7821506`](https://github.com/nodejs/node/commit/66e7821506)] - **test**: defer invocation checks (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340) - \[[`43db0fbd49`](https://github.com/nodejs/node/commit/43db0fbd49)] - **test**: fix test-socket-write-after-fin-error (Luigi Pinca) [#&#8203;42340](https://github.com/nodejs/node/pull/42340) - \[[`d5f4d98847`](https://github.com/nodejs/node/commit/d5f4d98847)] - **test**: make `test-eventemitter-asyncresource.js` shorter (Juan José) [#&#8203;45146](https://github.com/nodejs/node/pull/45146) - \[[`7428651100`](https://github.com/nodejs/node/commit/7428651100)] - **test**: convert test-debugger-pid to async/await (Luke Karrys) [#&#8203;45179](https://github.com/nodejs/node/pull/45179) - \[[`f10f2c1121`](https://github.com/nodejs/node/commit/f10f2c1121)] - **test**: fix textdecoder test for small-icu builds (Richard Lau) [#&#8203;45225](https://github.com/nodejs/node/pull/45225) - \[[`eed799bd31`](https://github.com/nodejs/node/commit/eed799bd31)] - **test**: improve test coverage in `test-event-capture-rejections.js` (Juan José) [#&#8203;45148](https://github.com/nodejs/node/pull/45148) - \[[`069747bfdd`](https://github.com/nodejs/node/commit/069747bfdd)] - **test**: fix timeout of test-heap-prof.js in riscv devices (Yu Gu) [#&#8203;42674](https://github.com/nodejs/node/pull/42674) - \[[`ddb7df76de`](https://github.com/nodejs/node/commit/ddb7df76de)] - **test**: deflake test-http2-empty-frame-without-eof (Santiago Gimeno) [#&#8203;45212](https://github.com/nodejs/node/pull/45212) - \[[`02ebde39d3`](https://github.com/nodejs/node/commit/02ebde39d3)] - **test**: use common/tmpdir in watch-mode ipc test (Richard Lau) [#&#8203;45211](https://github.com/nodejs/node/pull/45211) - \[[`f9bc40a1fc`](https://github.com/nodejs/node/commit/f9bc40a1fc)] - **test**: use uv_sleep() where possible (Santiago Gimeno) [#&#8203;45124](https://github.com/nodejs/node/pull/45124) - \[[`3c7ea23b8f`](https://github.com/nodejs/node/commit/3c7ea23b8f)] - **test**: fix typo in `test/parallel/test-fs-rm.js` (Tim Shilov) [#&#8203;44882](https://github.com/nodejs/node/pull/44882) - \[[`b39dcde056`](https://github.com/nodejs/node/commit/b39dcde056)] - **test**: remove a snapshot blob from test-inspect-address-in-use.js (Daeyeon Jeong) [#&#8203;45132](https://github.com/nodejs/node/pull/45132) - \[[`fabed9bdc8`](https://github.com/nodejs/node/commit/fabed9bdc8)] - **test**: add test for Module.\_stat (Darshan Sen) [#&#8203;44713](https://github.com/nodejs/node/pull/44713) - \[[`2b3b291c97`](https://github.com/nodejs/node/commit/2b3b291c97)] - **test**: watch mode inspect restart repeatedly (Moshe Atlow) [#&#8203;45060](https://github.com/nodejs/node/pull/45060) - \[[`17e86e4188`](https://github.com/nodejs/node/commit/17e86e4188)] - **test**: remove experimental-wasm-threads flag (Michaël Zasso) [#&#8203;45074](https://github.com/nodejs/node/pull/45074) - \[[`f0480d68e9`](https://github.com/nodejs/node/commit/f0480d68e9)] - **test**: remove unnecessary noop function args to `mustCall()` (Antoine du Hamel) [#&#8203;45047](https://github.com/nodejs/node/pull/45047) - \[[`82e6043118`](https://github.com/nodejs/node/commit/82e6043118)] - **test**: mark test-watch-mode\* as flaky on all platforms (Pierrick Bouvier) [#&#8203;45049](https://github.com/nodejs/node/pull/45049) - \[[`26a2ae2489`](https://github.com/nodejs/node/commit/26a2ae2489)] - **test**: wrap missing `common.mustCall` (Moshe Atlow) [#&#8203;45064](https://github.com/nodejs/node/pull/45064) - \[[`8662399cda`](https://github.com/nodejs/node/commit/8662399cda)] - **test**: remove mentions of `--experimental-async-stack-tagging-api` flag (Simon) [#&#8203;45051](https://github.com/nodejs/node/pull/45051) - \[[`71b8d506ed`](https://github.com/nodejs/node/commit/71b8d506ed)] - **test**: improve assertions in `test-repl-unsupported-option.js` (Juan José) [#&#8203;44953](https://github.com/nodejs/node/pull/44953) - \[[`dbc696d363`](https://github.com/nodejs/node/commit/dbc696d363)] - **test**: remove unnecessary noop function args to mustCall() (Rich Trott) [#&#8203;45027](https://github.com/nodejs/node/pull/45027) - \[[`c1ca19fb06`](https://github.com/nodejs/node/commit/c1ca19fb06)] - **test**: update WPT resources (Khaidi Chu) [#&#8203;44948](https://github.com/nodejs/node/pull/44948) - \[[`43677e5a34`](https://github.com/nodejs/node/commit/43677e5a34)] - **test**: skip test depending on `overlapped-checker` when not available (Antoine du Hamel) [#&#8203;45015](https://github.com/nodejs/node/pull/45015) - \[[`3519d74e87`](https://github.com/nodejs/node/commit/3519d74e87)] - **test**: improve test coverage for `os` package (Juan José) [#&#8203;44959](https://github.com/nodejs/node/pull/44959) - \[[`ea0cfc9a83`](https://github.com/nodejs/node/commit/ea0cfc9a83)] - **test**: add test to improve coverage in http2-compat-serverresponse (Cesar Mario Diaz) [#&#8203;44970](https://github.com/nodejs/node/pull/44970) - \[[`482578682c`](https://github.com/nodejs/node/commit/482578682c)] - **test**: improve test coverage in `test-child-process-spawn-argv0.js` (Juan José) [#&#8203;44955](https://github.com/nodejs/node/pull/44955) - \[[`a618dc3c3e`](https://github.com/nodejs/node/commit/a618dc3c3e)] - **test**: use CHECK instead of EXPECT where necessary (Tobias Nießen) [#&#8203;44795](https://github.com/nodejs/node/pull/44795) - \[[`c59d3b76e6`](https://github.com/nodejs/node/commit/c59d3b76e6)] - **test**: refactor promises to async/await (Madhuri) [#&#8203;44980](https://github.com/nodejs/node/pull/44980) - \[[`36c5927c60`](https://github.com/nodejs/node/commit/36c5927c60)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;45165](https://github.com/nodejs/node/pull/45165) - \[[`6158d740f3`](https://github.com/nodejs/node/commit/6158d740f3)] - **test_runner**: support function mocking (Colin Ihrig) [#&#8203;45326](https://github.com/nodejs/node/pull/45326) - \[[`920804dc46`](https://github.com/nodejs/node/commit/920804dc46)] - **test_runner**: avoid swallowing of asynchronously thrown errors (MURAKAMI Masahiko) [#&#8203;45264](https://github.com/nodejs/node/pull/45264) - \[[`8e7f9de45e`](https://github.com/nodejs/node/commit/8e7f9de45e)] - **test_runner**: fix afterEach not running on test failures (Jithil P Ponnan) [#&#8203;45204](https://github.com/nodejs/node/pull/45204) - \[[`0040030443`](https://github.com/nodejs/node/commit/0040030443)] - **test_runner**: report tap subtest in order (Moshe Atlow) [#&#8203;45220](https://github.com/nodejs/node/pull/45220) - \[[`afa8291c7c`](https://github.com/nodejs/node/commit/afa8291c7c)] - **test_runner**: call {before,after}Each() on suites (Colin Ihrig) [#&#8203;45161](https://github.com/nodejs/node/pull/45161) - \[[`ff174b0937`](https://github.com/nodejs/node/commit/ff174b0937)] - **test_runner**: add extra fields in AssertionError YAML (Bryan English) [#&#8203;44952](https://github.com/nodejs/node/pull/44952) - \[[`bf868fdfab`](https://github.com/nodejs/node/commit/bf868fdfab)] - **(SEMVER-MINOR)** **tls**: add "ca" property to certificate object (Ben Noordhuis) [#&#8203;44935](https://github.com/nodejs/node/pull/44935) - \[[`e8075fd1f8`](https://github.com/nodejs/node/commit/e8075fd1f8)] - **tools**: add automation for updating acorn dependency (Facundo Tuesca) [#&#8203;45357](https://github.com/nodejs/node/pull/45357) - \[[`9aa305ff3e`](https://github.com/nodejs/node/commit/9aa305ff3e)] - **tools**: add documentation regarding our api tooling (Claudio Wunder) [#&#8203;45270](https://github.com/nodejs/node/pull/45270) - \[[`76cbc07f9b`](https://github.com/nodejs/node/commit/76cbc07f9b)] - **tools**: allow scripts to run from anywhere (Luigi Pinca) [#&#8203;45361](https://github.com/nodejs/node/pull/45361) - \[[`aa875a4d6a`](https://github.com/nodejs/node/commit/aa875a4d6a)] - **tools**: update eslint to 8.27.0 (Node.js GitHub Bot) [#&#8203;45358](https://github.com/nodejs/node/pull/45358) - \[[`4b71db13ae`](https://github.com/nodejs/node/commit/4b71db13ae)] - **tools**: update eslint to 8.26.0 (Node.js GitHub Bot) [#&#8203;45243](https://github.com/nodejs/node/pull/45243) - \[[`63267dfefb`](https://github.com/nodejs/node/commit/63267dfefb)] - **tools**: update lint-md-dependencies to rollup@3.2.5 (Node.js GitHub Bot) [#&#8203;45332](https://github.com/nodejs/node/pull/45332) - \[[`e275859138`](https://github.com/nodejs/node/commit/e275859138)] - **tools**: fix stability index generation (Antoine du Hamel) [#&#8203;45346](https://github.com/nodejs/node/pull/45346) - \[[`97fe8bacb1`](https://github.com/nodejs/node/commit/97fe8bacb1)] - **tools**: increase macOS cores to 3 on GitHub CI (Rich Trott) [#&#8203;45340](https://github.com/nodejs/node/pull/45340) - \[[`eda4ae51ca`](https://github.com/nodejs/node/commit/eda4ae51ca)] - **tools**: add automation for updating base64 dependency (Facundo Tuesca) [#&#8203;45300](https://github.com/nodejs/node/pull/45300) - \[[`2ee052f794`](https://github.com/nodejs/node/commit/2ee052f794)] - **tools**: fix `request-ci-failed` comment (Antoine du Hamel) [#&#8203;45291](https://github.com/nodejs/node/pull/45291) - \[[`e118dd88fd`](https://github.com/nodejs/node/commit/e118dd88fd)] - **tools**: refactor dynamic strings creation in shell scripts (Antoine du Hamel) [#&#8203;45240](https://github.com/nodejs/node/pull/45240) - \[[`ba89cea683`](https://github.com/nodejs/node/commit/ba89cea683)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;45237](https://github.com/nodejs/node/pull/45237) - \[[`786f086800`](https://github.com/nodejs/node/commit/786f086800)] - **tools**: use Python 3.11 in GitHub Actions workflows (Luigi Pinca) [#&#8203;45191](https://github.com/nodejs/node/pull/45191) - \[[`0738d14fa4`](https://github.com/nodejs/node/commit/0738d14fa4)] - **tools**: fix `request-ci-failed` comment (Antoine du Hamel) [#&#8203;45218](https://github.com/nodejs/node/pull/45218) - \[[`49be13ccd8`](https://github.com/nodejs/node/commit/49be13ccd8)] - **tools**: keep Emeriti lists case-insensitive alphabetic (Rich Trott) [#&#8203;45159](https://github.com/nodejs/node/pull/45159) - \[[`6e30d2231b`](https://github.com/nodejs/node/commit/6e30d2231b)] - **tools**: update actions/setup-python to v4 (Yagiz Nizipli) [#&#8203;45178](https://github.com/nodejs/node/pull/45178) - \[[`a4158692d7`](https://github.com/nodejs/node/commit/a4158692d7)] - **tools**: update V8 gypfiles for RISC-V (Andreas Schwab) [#&#8203;45149](https://github.com/nodejs/node/pull/45149) - \[[`c43bc2169f`](https://github.com/nodejs/node/commit/c43bc2169f)] - **tools**: fix `create-or-update-pull-request-action` hash on GHA (Antoine du Hamel) [#&#8203;45166](https://github.com/nodejs/node/pull/45166) - \[[`2ccc03ec32`](https://github.com/nodejs/node/commit/2ccc03ec32)] - **tools**: update gr2m/create-or-update-pull-request-action (Luigi Pinca) [#&#8203;45022](https://github.com/nodejs/node/pull/45022) - \[[`a70b27629f`](https://github.com/nodejs/node/commit/a70b27629f)] - **tools**: do not use the set-output command in workflows (Luigi Pinca) [#&#8203;45024](https://github.com/nodejs/node/pull/45024) - \[[`025e616662`](https://github.com/nodejs/node/commit/025e616662)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;45019](https://github.com/nodejs/node/pull/45019) - \[[`732f9a78d3`](https://github.com/nodejs/node/commit/732f9a78d3)] - **trace_events**: fix getCategories (theanarkh) [#&#8203;45092](https://github.com/nodejs/node/pull/45092) - \[[`1bc84ce52c`](https://github.com/nodejs/node/commit/1bc84ce52c)] - **url**: remove \t \n \r in url.parse() similar to WHATWG (Rich Trott) [#&#8203;45116](https://github.com/nodejs/node/pull/45116) - \[[`84e7388160`](https://github.com/nodejs/node/commit/84e7388160)] - **url**: improve port validation (Rich Trott) [#&#8203;45012](https://github.com/nodejs/node/pull/45012) - \[[`02cff4a3d3`](https://github.com/nodejs/node/commit/02cff4a3d3)] - **url**: improve url.parse() compliance with WHATWG URL (Rich Trott) [#&#8203;45011](https://github.com/nodejs/node/pull/45011) - \[[`89390a6be2`](https://github.com/nodejs/node/commit/89390a6be2)] - **util**: improve text-decoder performance (Yagiz Nizipli) [#&#8203;45363](https://github.com/nodejs/node/pull/45363) - \[[`0deed8daeb`](https://github.com/nodejs/node/commit/0deed8daeb)] - **util**: improve textdecoder decode performance (Yagiz Nizipli) [#&#8203;45294](https://github.com/nodejs/node/pull/45294) - \[[`d41f8ffc36`](https://github.com/nodejs/node/commit/d41f8ffc36)] - **(SEMVER-MINOR)** **util**: add MIME utilities ([#&#8203;21128](https://github.com/nodejs/node/issues/21128)) (Bradley Farias) [#&#8203;21128](https://github.com/nodejs/node/pull/21128) ### [`v19.0.1`](https://github.com/nodejs/node/releases/tag/v19.0.1): 2022-11-04, Version 19.0.1 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v19.0.0...v19.0.1) This is a security release. ##### Notable changes The following CVEs are fixed in this release: - **[CVE-2022-3602](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3602)**: X.509 Email Address 4-byte Buffer Overflow (High) - **[CVE-2022-3786](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3786)**: X.509 Email Address Variable Length Buffer Overflow (High) - **[CVE-2022-43548](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43548)**: DNS rebinding in --inspect via invalid octal IP address (Medium) More detailed information on each of the vulnerabilities can be found in [November 2022 Security Releases](https://nodejs.org/en/blog/vulnerability/november-2022-security-releases/) blog post. ##### Commits - \[[`e58e8d70a8`](https://github.com/nodejs/node/commit/e58e8d70a8)] - **deps**: update archs files for quictls/openssl-3.0.7+quic (RafaelGSS) [#&#8203;45286](https://github.com/nodejs/node/pull/45286) - \[[`85f4548d57`](https://github.com/nodejs/node/commit/85f4548d57)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.7+quic (RafaelGSS) [#&#8203;45286](https://github.com/nodejs/node/pull/45286) - \[[`43403f56f7`](https://github.com/nodejs/node/commit/43403f56f7)] - **inspector**: harden IP address validation again (Tobias Nießen) [nodejs-private/node-private#354](https://github.com/nodejs-private/node-private/pull/354) ### [`v19.0.0`](https://github.com/nodejs/node/releases/tag/v19.0.0): 2022-10-18, Version 19.0.0 (Current), @&#8203;RafaelGSS and @&#8203;ruyadorno [Compare Source](https://github.com/nodejs/node/compare/v18.20.2...v19.0.0) Node.js 19 is here! Highlights include the update of the V8 JavaScript engine to 10.7, HTTP(s)/1.1 KeepAlive enabled by default, and ESM Resolution adjustments. Node.js 19 will replace Node.js 18 as our ‘Current’ release line when Node.js 18 enters long-term support (LTS) later this month. As per the release schedule, Node.js 19 will be ‘Current' release for the next 6 months, until April 2023. ##### Notable Changes ##### Deprecations and Removals - \[[`7dd2f41c73`](https://github.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#&#8203;44495](https://github.com/nodejs/node/pull/44495) - \[[`ada2d053ae`](https://github.com/nodejs/node/commit/ada2d053ae)] - **(SEMVER-MAJOR)** **process**: runtime deprecate coercion to integer in `process.exit()` (Daeyeon Jeong) [#&#8203;44711](https://github.com/nodejs/node/pull/44711) ##### HTTP(S)/1.1 KeepAlive by default Starting with this release, Node.js sets `keepAlive` to true by default. This means that any outgoing HTTP(s) connection will automatically use HTTP 1.1 Keep-Alive. The default waiting window is 5 seconds. Enable keep-alive will deliver better throughput as connections are reused by default. Additionally, the agent is now able to parse the response `Keep-Alive` which the servers might send. This header instructs the client on how much to stay connected. On the other side, the Node.js HTTP server will now automatically disconnect idle clients (which are using HTTP Keep-Alive to reuse the connection) when `close()` is invoked). Node.js HTTP(S)/1.1 requests may experience a better throughput/performance by default. Contributed by Paolo Insogna in [#&#8203;43522](https://github.com/nodejs/node/pull/43522) ##### DTrace/SystemTap/ETW Support were removed The main reason is the lack of resources from the Node.js team. The complexity to keep the support up-to-date has proved not worth it without a clear plan to support those tools. Hence, [an issue was raised](https://github.com/nodejs/node/issues/44550) in the Node.js repository to assess better support, for `DTrace` in specific. Contributed by Ben Noordhuis in [#&#8203;43651](https://github.com/nodejs/node/pull/43651) and [#&#8203;43652](https://github.com/nodejs/node/pull/43652) ##### V8 10.7 The V8 engine is updated to version 10.7, which is part of Chromium 107. This version include a new feature to the JavaScript API: `Intl.NumberFormat`. `Intl.NumberFormat` v3 API is a new [TC39 ECMA402 stage 3 proposal](https://github.com/tc39/proposal-intl-numberformat-v3) extend the pre-existing `Intl.NumberFormat`. The V8 update was a contribution by Michaël Zasso in [#&#8203;44741](https://github.com/nodejs/node/pull/44741). ##### llhttp 8.1.0 llhttp has been updated to version 8.1.0. Collectively, this version brings many updates to the llhttp API, introducing new callbacks and allow all callback to be pausable. Contributed by Paolo Insogna in [#&#8203;44967](https://github.com/nodejs/node/pull/44967) ##### Other Notable Changes - \[[`46a3afb579`](https://github.com/nodejs/node/commit/46a3afb579)] - **doc**: graduate webcrypto to stable (Filip Skokan) [#&#8203;44897](https://github.com/nodejs/node/pull/44897) - \[[`f594cc85b7`](https://github.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#&#8203;44859](https://github.com/nodejs/node/pull/44859) ##### Semver-Major Commits - \[[`53f73d1cfe`](https://github.com/nodejs/node/commit/53f73d1cfe)] - **(SEMVER-MAJOR)** **build**: enable V8's trap handler on Windows (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`06aaf8a1c4`](https://github.com/nodejs/node/commit/06aaf8a1c4)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`aa3a572e6b`](https://github.com/nodejs/node/commit/aa3a572e6b)] - **(SEMVER-MAJOR)** **build**: remove dtrace & etw support (Ben Noordhuis) [#&#8203;43652](https://github.com/nodejs/node/pull/43652) - \[[`38f1e2793c`](https://github.com/nodejs/node/commit/38f1e2793c)] - **(SEMVER-MAJOR)** **build**: remove systemtap support (Ben Noordhuis) [#&#8203;43651](https://github.com/nodejs/node/pull/43651) - \[[`2849283c4c`](https://github.com/nodejs/node/commit/2849283c4c)] - **(SEMVER-MAJOR)** **crypto**: remove non-standard `webcrypto.Crypto.prototype.CryptoKey` (Antoine du Hamel) [#&#8203;42083](https://github.com/nodejs/node/pull/42083) - \[[`a1653ac715`](https://github.com/nodejs/node/commit/a1653ac715)] - **(SEMVER-MAJOR)** **crypto**: do not allow to call setFips from the worker thread (Sergey Petushkov) [#&#8203;43624](https://github.com/nodejs/node/pull/43624) - \[[`fd36a8dadb`](https://github.com/nodejs/node/commit/fd36a8dadb)] - **(SEMVER-MAJOR)** **deps**: update llhttp to 8.1.0 (Paolo Insogna) [#&#8203;44967](https://github.com/nodejs/node/pull/44967) - \[[`89ecdddaab`](https://github.com/nodejs/node/commit/89ecdddaab)] - **(SEMVER-MAJOR)** **deps**: bump minimum ICU version to 71 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`66fe446efd`](https://github.com/nodejs/node/commit/66fe446efd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0cccb6f`](https://github.com/nodejs/node/commit/0cccb6f27d78) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`88ed027d57`](https://github.com/nodejs/node/commit/88ed027d57)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`7ddb839`](https://github.com/nodejs/node/commit/7ddb8399f9f1) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`26c651c34e`](https://github.com/nodejs/node/commit/26c651c34e)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`1b3a4f0`](https://github.com/nodejs/node/commit/1b3a4f0c34a1) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`c8ff2dfd11`](https://github.com/nodejs/node/commit/c8ff2dfd11)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`b161a08`](https://github.com/nodejs/node/commit/b161a0823165) (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`7a8fa2d517`](https://github.com/nodejs/node/commit/7a8fa2d517)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`83b0aaa800`](https://github.com/nodejs/node/commit/83b0aaa800)] - **(SEMVER-MAJOR)** **deps**: fix V8 build on SmartOS (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`7a952e8ea5`](https://github.com/nodejs/node/commit/7a952e8ea5)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`6bd756d7c6`](https://github.com/nodejs/node/commit/6bd756d7c6)] - **(SEMVER-MAJOR)** **deps**: update V8 to 10.7.193.13 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`03fb789fb9`](https://github.com/nodejs/node/commit/03fb789fb9)] - **(SEMVER-MAJOR)** **events**: add null check for the signal of EventTarget (Masashi Hirano) [#&#8203;43153](https://github.com/nodejs/node/pull/43153) - \[[`a4fa526ddc`](https://github.com/nodejs/node/commit/a4fa526ddc)] - **(SEMVER-MAJOR)** **fs**: add directory autodetection to fsPromises.symlink() (Livia Medeiros) [#&#8203;42894](https://github.com/nodejs/node/pull/42894) - \[[`bb4891d8d4`](https://github.com/nodejs/node/commit/bb4891d8d4)] - **(SEMVER-MAJOR)** **fs**: add validateBuffer to improve error (Hirotaka Tagawa / wafuwafu13) [#&#8203;44769](https://github.com/nodejs/node/pull/44769) - \[[`950a4411fa`](https://github.com/nodejs/node/commit/950a4411fa)] - **(SEMVER-MAJOR)** **fs**: remove coercion to string in writing methods (Livia Medeiros) [#&#8203;42796](https://github.com/nodejs/node/pull/42796) - \[[`41a6d82968`](https://github.com/nodejs/node/commit/41a6d82968)] - **(SEMVER-MAJOR)** **fs**: harden fs.readSync(buffer, options) typecheck (LiviaMedeiros) [#&#8203;42772](https://github.com/nodejs/node/pull/42772) - \[[`2275faac2b`](https://github.com/nodejs/node/commit/2275faac2b)] - **(SEMVER-MAJOR)** **fs**: harden fs.read(params, callback) typecheck (LiviaMedeiros) [#&#8203;42772](https://github.com/nodejs/node/pull/42772) - \[[`29953a0b88`](https://github.com/nodejs/node/commit/29953a0b88)] - **(SEMVER-MAJOR)** **fs**: harden filehandle.read(params) typecheck (LiviaMedeiros) [#&#8203;42772](https://github.com/nodejs/node/pull/42772) - \[[`4267b92604`](https://github.com/nodejs/node/commit/4267b92604)] - **(SEMVER-MAJOR)** **http**: use Keep-Alive by default in global agents (Paolo Insogna) [#&#8203;43522](https://github.com/nodejs/node/pull/43522) - \[[`0324529e0f`](https://github.com/nodejs/node/commit/0324529e0f)] - **(SEMVER-MAJOR)** **inspector**: introduce inspector/promises API (Erick Wendel) [#&#8203;44250](https://github.com/nodejs/node/pull/44250) - \[[`80270994d6`](https://github.com/nodejs/node/commit/80270994d6)] - **(SEMVER-MAJOR)** **lib**: enable global CustomEvent by default (Daeyeon Jeong) [#&#8203;44860](https://github.com/nodejs/node/pull/44860) - \[[`f529f73bd7`](https://github.com/nodejs/node/commit/f529f73bd7)] - **(SEMVER-MAJOR)** **lib**: brand check event handler property receivers (Chengzhong Wu) [#&#8203;44483](https://github.com/nodejs/node/pull/44483) - \[[`6de2673a9f`](https://github.com/nodejs/node/commit/6de2673a9f)] - **(SEMVER-MAJOR)** **lib**: enable global WebCrypto by default (Antoine du Hamel) [#&#8203;42083](https://github.com/nodejs/node/pull/42083) - \[[`73ba8830d5`](https://github.com/nodejs/node/commit/73ba8830d5)] - **(SEMVER-MAJOR)** **lib**: use private field in AbortController (Joyee Cheung) [#&#8203;43820](https://github.com/nodejs/node/pull/43820) - \[[`7dd2f41c73`](https://github.com/nodejs/node/commit/7dd2f41c73)] - **(SEMVER-MAJOR)** **module**: runtime deprecate exports double slash maps (Guy Bedford) [#&#8203;44495](https://github.com/nodejs/node/pull/44495) - \[[`22c39b1ddd`](https://github.com/nodejs/node/commit/22c39b1ddd)] - **(SEMVER-MAJOR)** **path**: the dot will be added(path.format) if it is not specified in `ext` (theanarkh) [#&#8203;44349](https://github.com/nodejs/node/pull/44349) - \[[`587367d107`](https://github.com/nodejs/node/commit/587367d107)] - **(SEMVER-MAJOR)** **perf_hooks**: expose webperf global scope interfaces (Chengzhong Wu) [#&#8203;44483](https://github.com/nodejs/node/pull/44483) - \[[`364c0e196c`](https://github.com/nodejs/node/commit/364c0e196c)] - **(SEMVER-MAJOR)** **perf_hooks**: fix webperf idlharness (Chengzhong Wu) [#&#8203;44483](https://github.com/nodejs/node/pull/44483) - \[[`ada2d053ae`](https://github.com/nodejs/node/commit/ada2d053ae)] - **(SEMVER-MAJOR)** **process**: runtime deprecate coercion to integer in `process.exit()` (Daeyeon Jeong) [#&#8203;44711](https://github.com/nodejs/node/pull/44711) - \[[`e0ab8dd637`](https://github.com/nodejs/node/commit/e0ab8dd637)] - **(SEMVER-MAJOR)** **process**: make process.config read only (Sergey Petushkov) [#&#8203;43627](https://github.com/nodejs/node/pull/43627) - \[[`481a959adb`](https://github.com/nodejs/node/commit/481a959adb)] - **(SEMVER-MAJOR)** **readline**: remove `question` method from `InterfaceConstructor` (Antoine du Hamel) [#&#8203;44606](https://github.com/nodejs/node/pull/44606) - \[[`c9602ce212`](https://github.com/nodejs/node/commit/c9602ce212)] - **(SEMVER-MAJOR)** **src**: use new v8::OOMErrorCallback API (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`19a70c11e4`](https://github.com/nodejs/node/commit/19a70c11e4)] - **(SEMVER-MAJOR)** **src**: override CreateJob instead of PostJob (Clemens Backes) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`fd52c62bee`](https://github.com/nodejs/node/commit/fd52c62bee)] - **(SEMVER-MAJOR)** **src**: use V8\_ENABLE_SANDBOX macro (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`c10988db44`](https://github.com/nodejs/node/commit/c10988db44)] - **(SEMVER-MAJOR)** **src**: use non-deprecated V8 inspector API (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`3efe901dd6`](https://github.com/nodejs/node/commit/3efe901dd6)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 111 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`77e585657f`](https://github.com/nodejs/node/commit/77e585657f)] - **(SEMVER-MAJOR)** **src**: turn embedder api overload into default argument (Alena Khineika) [#&#8203;43629](https://github.com/nodejs/node/pull/43629) - \[[`dabda03ea9`](https://github.com/nodejs/node/commit/dabda03ea9)] - **(SEMVER-MAJOR)** **src**: per-environment time origin value (Chengzhong Wu) [#&#8203;43781](https://github.com/nodejs/node/pull/43781) - \[[`2e49b99cc2`](https://github.com/nodejs/node/commit/2e49b99cc2)] - **(SEMVER-MAJOR)** **src,test**: disable freezing V8 flags on initialization (Clemens Backes) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`2b32985c62`](https://github.com/nodejs/node/commit/2b32985c62)] - **(SEMVER-MAJOR)** **stream**: use null for the error argument (Luigi Pinca) [#&#8203;44312](https://github.com/nodejs/node/pull/44312) - \[[`36805e8524`](https://github.com/nodejs/node/commit/36805e8524)] - **(SEMVER-MAJOR)** **test**: adapt test-repl for V8 update (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`96ef25793d`](https://github.com/nodejs/node/commit/96ef25793d)] - **(SEMVER-MAJOR)** **test**: adapt test-repl-pretty-\*stack to V8 changes (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`71c193e581`](https://github.com/nodejs/node/commit/71c193e581)] - **(SEMVER-MAJOR)** **test**: adapt to new JSON SyntaxError messages (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`b5f1564880`](https://github.com/nodejs/node/commit/b5f1564880)] - **(SEMVER-MAJOR)** **test**: rename always-opt flag to always-turbofan (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`1acf0339dd`](https://github.com/nodejs/node/commit/1acf0339dd)] - **(SEMVER-MAJOR)** **test**: fix test-hash-seed for new V8 versions (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) - \[[`57ff476c33`](https://github.com/nodejs/node/commit/57ff476c33)] - **(SEMVER-MAJOR)** **test**: remove duplicate test (Luigi Pinca) [#&#8203;44051](https://github.com/nodejs/node/pull/44051) - \[[`77def91bf9`](https://github.com/nodejs/node/commit/77def91bf9)] - **(SEMVER-MAJOR)** **tls,http2**: send fatal alert on ALPN mismatch (Tobias Nießen) [#&#8203;44031](https://github.com/nodejs/node/pull/44031) - \[[`4860ad99b9`](https://github.com/nodejs/node/commit/4860ad99b9)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 10.7 (Michaël Zasso) [#&#8203;44741](https://github.com/nodejs/node/pull/44741) ##### Semver-Minor Commits - \[[`af0921d877`](https://github.com/nodejs/node/commit/af0921d877)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#&#8203;43942](https://github.com/nodejs/node/pull/43942) - \[[`0633e9a0b5`](https://github.com/nodejs/node/commit/0633e9a0b5)] - **(SEMVER-MINOR)** **lib**: add diagnostics channel for process and worker (theanarkh) [#&#8203;44045](https://github.com/nodejs/node/pull/44045) - \[[`ca5be26b31`](https://github.com/nodejs/node/commit/ca5be26b31)] - **(SEMVER-MINOR)** **src**: add support for externally shared js builtins (Michael Dawson) [#&#8203;44376](https://github.com/nodejs/node/pull/44376) - \[[`e86a638305`](https://github.com/nodejs/node/commit/e86a638305)] - **(SEMVER-MINOR)** **src**: add initial shadow realm support (Chengzhong Wu) [#&#8203;42869](https://github.com/nodejs/node/pull/42869) - \[[`71ca6d7d6a`](https://github.com/nodejs/node/commit/71ca6d7d6a)] - **(SEMVER-MINOR)** **util**: add `maxArrayLength` option to Set and Map (Kohei Ueno) [#&#8203;43576](https://github.com/nodejs/node/pull/43576) ##### Semver-Patch Commits - \[[`78508028e3`](https://github.com/nodejs/node/commit/78508028e3)] - **bootstrap**: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) [#&#8203;44488](https://github.com/nodejs/node/pull/44488) - \[[`5291096ca2`](https://github.com/nodejs/node/commit/5291096ca2)] - **bootstrap**: check more metadata when loading the snapshot (Joyee Cheung) [#&#8203;44132](https://github.com/nodejs/node/pull/44132) - \[[`d0f73d383d`](https://github.com/nodejs/node/commit/d0f73d383d)] - **build**: go faster, drop -fno-omit-frame-pointer (Ben Noordhuis) [#&#8203;44452](https://github.com/nodejs/node/pull/44452) - \[[`214354fc9f`](https://github.com/nodejs/node/commit/214354fc9f)] - **crypto**: fix webcrypto HMAC "get key length" in deriveKey and generateKey (Filip Skokan) [#&#8203;44917](https://github.com/nodejs/node/pull/44917) - \[[`40a0757b21`](https://github.com/nodejs/node/commit/40a0757b21)] - **crypto**: remove webcrypto HKDF and PBKDF2 default-applied lengths (Filip Skokan) [#&#8203;44945](https://github.com/nodejs/node/pull/44945) - \[[`eeec3eb16a`](https://github.com/nodejs/node/commit/eeec3eb16a)] - **crypto**: simplify webcrypto ECDH deriveBits (Filip Skokan) [#&#8203;44946](https://github.com/nodejs/node/pull/44946) - \[[`0be1c57281`](https://github.com/nodejs/node/commit/0be1c57281)] - **deps**: V8: cherry-pick [`c2792e5`](https://github.com/nodejs/node/commit/c2792e58035f) (Jiawen Geng) [#&#8203;44961](https://github.com/nodejs/node/pull/44961) - \[[`488474618c`](https://github.com/nodejs/node/commit/488474618c)] - **deps**: V8: cherry-pick [`c3dffe6`](https://github.com/nodejs/node/commit/c3dffe6e2bda) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958) - \[[`34ba631a0b`](https://github.com/nodejs/node/commit/34ba631a0b)] - **deps**: V8: cherry-pick [`e7f0f26`](https://github.com/nodejs/node/commit/e7f0f26f5ef3) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958) - \[[`690a837f4f`](https://github.com/nodejs/node/commit/690a837f4f)] - **deps**: V8: cherry-pick [`3d59a3c`](https://github.com/nodejs/node/commit/3d59a3c2c164) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958) - \[[`bab8b3aad6`](https://github.com/nodejs/node/commit/bab8b3aad6)] - **deps**: V8: cherry-pick [`8b87039`](https://github.com/nodejs/node/commit/8b8703953616) (Michaël Zasso) [#&#8203;44958](https://github.com/nodejs/node/pull/44958) - \[[`37e5152245`](https://github.com/nodejs/node/commit/37e5152245)] - **doc**: add notable changes to latest v18.x release changelog (Danielle Adams) [#&#8203;44996](https://github.com/nodejs/node/pull/44996) - \[[`19a909902a`](https://github.com/nodejs/node/commit/19a909902a)] - **doc**: deprecate url.parse() (Rich Trott) [#&#8203;44919](https://github.com/nodejs/node/pull/44919) - \[[`6686d9000b`](https://github.com/nodejs/node/commit/6686d9000b)] - **doc**: fix backticks in fs API docs (Livia Medeiros) [#&#8203;44962](https://github.com/nodejs/node/pull/44962) - \[[`46a3afb579`](https://github.com/nodejs/node/commit/46a3afb579)] - **doc**: graduate webcrypto to stable (Filip Skokan) [#&#8203;44897](https://github.com/nodejs/node/pull/44897) - \[[`6e3c55cc35`](https://github.com/nodejs/node/commit/6e3c55cc35)] - **doc**: fix v16.17.1 security release changelog (Ruy Adorno) [#&#8203;44759](https://github.com/nodejs/node/pull/44759) - \[[`77cb88b91c`](https://github.com/nodejs/node/commit/77cb88b91c)] - **doc**: mark `--import` as experimental (Moshe Atlow) [#&#8203;44067](https://github.com/nodejs/node/pull/44067) - \[[`46dcfb3c7b`](https://github.com/nodejs/node/commit/46dcfb3c7b)] - **doc,crypto**: update webcrypto docs for global access (Filip Skokan) [#&#8203;44723](https://github.com/nodejs/node/pull/44723) - \[[`f594cc85b7`](https://github.com/nodejs/node/commit/f594cc85b7)] - **esm**: remove specifier resolution flag (Geoffrey Booth) [#&#8203;44859](https://github.com/nodejs/node/pull/44859) - \[[`3c040348fe`](https://github.com/nodejs/node/commit/3c040348fe)] - ***Revert*** "**esm**: convert `resolve` hook to synchronous" (Jacob Smith) [#&#8203;43526](https://github.com/nodejs/node/pull/43526) - \[[`90b634a5a5`](https://github.com/nodejs/node/commit/90b634a5a5)] - **esm**: convert `resolve` hook to synchronous (Jacob Smith) [#&#8203;43363](https://github.com/nodejs/node/pull/43363) - \[[`7c06eab1dc`](https://github.com/nodejs/node/commit/7c06eab1dc)] - ***Revert*** "**http**: do not leak error listeners" (Luigi Pinca) [#&#8203;44921](https://github.com/nodejs/node/pull/44921) - \[[`464d1c1558`](https://github.com/nodejs/node/commit/464d1c1558)] - **lib**: reset `RegExp` statics before running user code (Antoine du Hamel) [#&#8203;43741](https://github.com/nodejs/node/pull/43741) - \[[`15f10515e3`](https://github.com/nodejs/node/commit/15f10515e3)] - **module**: fix segment deprecation for imports field (Guy Bedford) [#&#8203;44883](https://github.com/nodejs/node/pull/44883) - \[[`7cdf745fdd`](https://github.com/nodejs/node/commit/7cdf745fdd)] - **perf_hooks**: convert maxSize to IDL value in setResourceTimingBufferSize (Chengzhong Wu) [#&#8203;44902](https://github.com/nodejs/node/pull/44902) - \[[`be525d7d04`](https://github.com/nodejs/node/commit/be525d7d04)] - **src**: consolidate exit codes in the code base (Joyee Cheung) [#&#8203;44746](https://github.com/nodejs/node/pull/44746) - \[[`d5ce285c8b`](https://github.com/nodejs/node/commit/d5ce285c8b)] - **src**: refactor BaseObject methods (Joyee Cheung) [#&#8203;44796](https://github.com/nodejs/node/pull/44796) - \[[`717465433c`](https://github.com/nodejs/node/commit/717465433c)] - **src**: create BaseObject with node::Realm (Chengzhong Wu) [#&#8203;44348](https://github.com/nodejs/node/pull/44348) - \[[`45f2258f74`](https://github.com/nodejs/node/commit/45f2258f74)] - **src**: restore IS_RELEASE to 0 (Bryan English) [#&#8203;44758](https://github.com/nodejs/node/pull/44758) - \[[`1f54fc25cb`](https://github.com/nodejs/node/commit/1f54fc25cb)] - **src**: use automatic memory mgmt in SecretKeyGen (Tobias Nießen) [#&#8203;44479](https://github.com/nodejs/node/pull/44479) - \[[`7371d335ac`](https://github.com/nodejs/node/commit/7371d335ac)] - **src**: use V8 entropy source if RAND_bytes() != 1 (Tobias Nießen) [#&#8203;44493](https://github.com/nodejs/node/pull/44493) - \[[`81d9cdb8cd`](https://github.com/nodejs/node/commit/81d9cdb8cd)] - **src**: introduce node::Realm (Chengzhong Wu) [#&#8203;44179](https://github.com/nodejs/node/pull/44179) - \[[`ad41c919df`](https://github.com/nodejs/node/commit/ad41c919df)] - **src**: remove v8abbr.h (Tobias Nießen) [#&#8203;44402](https://github.com/nodejs/node/pull/44402) - \[[`fddc701d3c`](https://github.com/nodejs/node/commit/fddc701d3c)] - **src**: support diagnostics channel in the snapshot (Joyee Cheung) [#&#8203;44193](https://github.com/nodejs/node/pull/44193) - \[[`d70aab663c`](https://github.com/nodejs/node/commit/d70aab663c)] - **src**: support WeakReference in snapshot (Joyee Cheung) [#&#8203;44193](https://github.com/nodejs/node/pull/44193) - \[[`4ca398a617`](https://github.com/nodejs/node/commit/4ca398a617)] - **src**: iterate over base objects to prepare for snapshot (Joyee Cheung) [#&#8203;44192](https://github.com/nodejs/node/pull/44192) - \[[`8b0e5b19bd`](https://github.com/nodejs/node/commit/8b0e5b19bd)] - **src**: fix cppgc incompatibility in v8 (Shelley Vohr) [#&#8203;43521](https://github.com/nodejs/node/pull/43521) - \[[`3fdf6cfad9`](https://github.com/nodejs/node/commit/3fdf6cfad9)] - **stream**: fix `size` function returned from QueuingStrategies (Daeyeon Jeong) [#&#8203;44867](https://github.com/nodejs/node/pull/44867) - \[[`331088f4a4`](https://github.com/nodejs/node/commit/331088f4a4)] - ***Revert*** "**tools**: refactor `tools/license2rtf` to ESM" (Richard Lau) [#&#8203;43214](https://github.com/nodejs/node/pull/43214) - \[[`30cb1bf8b8`](https://github.com/nodejs/node/commit/30cb1bf8b8)] - **tools**: refactor `tools/license2rtf` to ESM (Feng Yu) [#&#8203;43101](https://github.com/nodejs/node/pull/43101) - \[[`a3ff4bfc66`](https://github.com/nodejs/node/commit/a3ff4bfc66)] - **url**: revert "validate ipv4 part length" (Antoine du Hamel) [#&#8203;42940](https://github.com/nodejs/node/pull/42940) - \[[`87d0d7a069`](https://github.com/nodejs/node/commit/87d0d7a069)] - **url**: validate ipv4 part length (Yagiz Nizipli) [#&#8203;42915](https://github.com/nodejs/node/pull/42915) - \[[`5b1bcf82f1`](https://github.com/nodejs/node/commit/5b1bcf82f1)] - **vm**: make ContextifyContext a BaseObject (Joyee Cheung) [#&#8203;44796](https://github.com/nodejs/node/pull/44796) ### [`v18.20.2`](https://github.com/nodejs/node/releases/tag/v18.20.2): 2024-04-10, Version 18.20.2 &#x27;Hydrogen&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v18.20.1...v18.20.2) This is a security release. ##### Notable Changes - CVE-2024-27980 - Command injection via args parameter of `child_process.spawn` without shell option enabled on Windows ##### Commits - \[[`6627222409`](https://github.com/nodejs/node/commit/6627222409)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#564](https://github.com/nodejs-private/node-private/pull/564) ### [`v18.20.1`](https://github.com/nodejs/node/releases/tag/v18.20.1): 2024-04-03, Version 18.20.1 &#x27;Hydrogen&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v18.20.0...v18.20.1) This is a security release. ##### Notable Changes - CVE-2024-27983 - Assertion failed in node::http2::Http2Session::~Http2Session() leads to HTTP/2 server crash- (High) - CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium) - llhttp version 9.2.1 - undici version 5.28.4 ##### Commits - \[[`60d24938de`](https://github.com/nodejs/node/commit/60d24938de)] - **deps**: update undici to v5.28.4 (Matteo Collina) [nodejs-private/node-private#577](https://github.com/nodejs-private/node-private/pull/577) - \[[`5d4d5848cf`](https://github.com/nodejs/node/commit/5d4d5848cf)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-private#558](https://github.com/nodejs-private/node-private/pull/558) - \[[`0fb816dbcc`](https://github.com/nodejs/node/commit/0fb816dbcc)] - **src**: ensure to close stream when destroying session (Anna Henningsen) [nodejs-private/node-private#561](https://github.com/nodejs-private/node-private/pull/561) ### [`v18.20.0`](https://github.com/nodejs/node/releases/tag/v18.20.0): 2024-03-26, Version 18.20.0 &#x27;Hydrogen&#x27; (LTS), @&#8203;richardlau [Compare Source](https://github.com/nodejs/node/compare/v18.19.1...v18.20.0) ##### Notable Changes ##### Added support for import attributes Support has been added for import attributes, to replace the old import assertions syntax. This will aid migration by making the new syntax available across all currently supported Node.js release lines. This adds the `with` keyword which should be used in place of the previous `assert` keyword, which will be removed in a future semver-major Node.js release. For example, ```console import "foo" assert { ... } ``` should be replaced with ```console import "foo" with { ... } ``` For more details, see - [#&#8203;50134](https://github.com/nodejs/node/issues/50134) - [#&#8203;51622](https://github.com/nodejs/node/issues/51622) Contributed by Nicolò Ribaudo in [#&#8203;51136](https://github.com/nodejs/node/pull/51136) and Antoine du Hamel in [#&#8203;50140](https://github.com/nodejs/node/pull/50140). ##### Doc deprecation for `dirent.path` Please use newly added `dirent.parentPath` instead. Contributed by Antoine du Hamel in [#&#8203;50976](https://github.com/nodejs/node/pull/50976) and [#&#8203;51020](https://github.com/nodejs/node/pull/51020). ##### Experimental node-api feature flags Introduces an experimental feature to segregate finalizers that affect GC state. A new type called `node_api_nogc_env` has been introduced as the const version of `napi_env` and `node_api_nogc_finalize` as a variant of `napi_finalize` that accepts a `node_api_nogc_env` as its first argument. This feature can be turned off by defining `NODE_API_EXPERIMENTAL_NOGC_ENV_OPT_OUT`. Contributed by Gabriel Schulhof in [#&#8203;50060](https://github.com/nodejs/node/pull/50060). ##### Root certificates updated to NSS 3.98 Certificates added: - Telekom Security TLS ECC Root 2020 - Telekom Security TLS RSA Root 2023 Certificates removed: - Security Communication Root CA ##### Updated dependencies - ada updated to 2.7.6. - base64 updated to 0.5.2. - c-ares updated to 1.27.0. - corepack updated to 0.25.2. - ICU updated to 74.2. Includes CLDR 44.1 and Unicode 15.1. - npm updated to 10.5.0. Fixes a regression in signals not being passed onto child processes. - simdutf8 updated to 4.0.8. - Timezone updated to 2024a. - zlib updated to 1.3.0.1-motley-40e35a7. ##### vm: fix V8 compilation cache support for vm.Script Previously repeated compilation of the same source code using `vm.Script` stopped hitting the V8 compilation cache after v16.x when support for `importModuleDynamically` was added to `vm.Script`, resulting in a performance regression that blocked users (in particular Jest users) from upgrading from v16.x. The recent fixes allow the compilation cache to be hit again for `vm.Script` when `--experimental-vm-modules` is not used even in the presence of the `importModuleDynamically` option, so that users affected by the performance regression can now upgrade. Ongoing work is also being done to enable compilation cache support for `vm.CompileFunction`. Contributed by Joyee Cheung in [#&#8203;49950](https://github.com/nodejs/node/pull/49950) and [#&#8203;50137](https://github.com/nodejs/node/pull/50137). ##### Commits - \[[`c70383b8d4`](https://github.com/nodejs/node/commit/c70383b8d4)] - **build**: support Python 3.12 (Shi Pujin) [#&#8203;50209](https://github.com/nodejs/node/pull/50209) - \[[`4b960c3a4a`](https://github.com/nodejs/node/commit/4b960c3a4a)] - **build**: fix incorrect g++ warning message (Richard Lau) [#&#8203;51695](https://github.com/nodejs/node/pull/51695) - \[[`8fdea67694`](https://github.com/nodejs/node/commit/8fdea67694)] - **crypto**: update root certificates to NSS 3.98 (Node.js GitHub Bot) [#&#8203;51794](https://github.com/nodejs/node/pull/51794) - \[[`812b126dd9`](https://github.com/nodejs/node/commit/812b126dd9)] - **deps**: V8: cherry-pick [`d90d453`](https://github.com/nodejs/node/commit/d90d4533b053) (Michaël Zasso) [#&#8203;50077](https://github.com/nodejs/node/pull/50077) - \[[`9ab8c3db87`](https://github.com/nodejs/node/commit/9ab8c3db87)] - **deps**: update c-ares to 1.27.0 (Node.js GitHub Bot) [#&#8203;51846](https://github.com/nodejs/node/pull/51846) - \[[`c688680387`](https://github.com/nodejs/node/commit/c688680387)] - **deps**: update c-ares to 1.26.0 (Node.js GitHub Bot) [#&#8203;51582](https://github.com/nodejs/node/pull/51582) - \[[`9498ac8a47`](https://github.com/nodejs/node/commit/9498ac8a47)] - **deps**: compile c-ares with C11 support (Michaël Zasso) [#&#8203;51410](https://github.com/nodejs/node/pull/51410) - \[[`8fb743642f`](https://github.com/nodejs/node/commit/8fb743642f)] - **deps**: update c-ares to 1.25.0 (Node.js GitHub Bot) [#&#8203;51385](https://github.com/nodejs/node/pull/51385) - \[[`7bea2d7c12`](https://github.com/nodejs/node/commit/7bea2d7c12)] - **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) [#&#8203;51274](https://github.com/nodejs/node/pull/51274) - \[[`57a38c8f75`](https://github.com/nodejs/node/commit/57a38c8f75)] - **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) [#&#8203;51105](https://github.com/nodejs/node/pull/51105) - \[[`b0ca084a6b`](https://github.com/nodejs/node/commit/b0ca084a6b)] - **deps**: update zlib to 1.3-22124f5 (Node.js GitHub Bot) [#&#8203;50910](https://github.com/nodejs/node/pull/50910) - \[[`4b43823f37`](https://github.com/nodejs/node/commit/4b43823f37)] - **deps**: update zlib to 1.2.13.1-motley-5daffc7 (Node.js GitHub Bot) [#&#8203;50803](https://github.com/nodejs/node/pull/50803) - \[[`f0da591812`](https://github.com/nodejs/node/commit/f0da591812)] - **deps**: update zlib to 1.2.13.1-motley-dfc48fc (Node.js GitHub Bot) [#&#8203;50456](https://github.com/nodejs/node/pull/50456) - \[[`16d28a883a`](https://github.com/nodejs/node/commit/16d28a883a)] - **deps**: update base64 to 0.5.2 (Node.js GitHub Bot) [#&#8203;51455](https://github.com/nodejs/node/pull/51455) - \[[`13a9e81cb6`](https://github.com/nodejs/node/commit/13a9e81cb6)] - **deps**: update base64 to 0.5.1 (Node.js GitHub Bot) [#&#8203;50629](https://github.com/nodejs/node/pull/50629) - \[[`b4502d3ac5`](https://github.com/nodejs/node/commit/b4502d3ac5)] - **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot) [#&#8203;51000](https://github.com/nodejs/node/pull/51000) - \[[`183cf8a74a`](https://github.com/nodejs/node/commit/183cf8a74a)] - **deps**: update simdutf to 4.0.4 (Node.js GitHub Bot) [#&#8203;50772](https://github.com/nodejs/node/pull/50772) - \[[`11ba8593ea`](https://github.com/nodejs/node/commit/11ba8593ea)] - **deps**: update ada to 2.7.6 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542) - \[[`73a946d55c`](https://github.com/nodejs/node/commit/73a946d55c)] - **deps**: update ada to 2.7.5 (Node.js GitHub Bot) [#&#8203;51542](https://github.com/nodejs/node/pull/51542) - \[[`cc434c1a39`](https://github.com/nodejs/node/commit/cc434c1a39)] - **deps**: update ada to 2.7.4 (Node.js GitHub Bot) [#&#8203;50815](https://github.com/nodejs/node/pull/50815) - \[[`3a3808a6ae`](https://github.com/nodejs/node/commit/3a3808a6ae)] - **deps**: upgrade npm to 10.5.0 (npm team) [#&#8203;51913](https://github.com/nodejs/node/pull/51913) - \[[`c8876d765c`](https://github.com/nodejs/node/commit/c8876d765c)] - **deps**: upgrade npm to 10.3.0 (npm team) [#&#8203;51431](https://github.com/nodejs/node/pull/51431) - \[[`5aec3af460`](https://github.com/nodejs/node/commit/5aec3af460)] - **deps**: update corepack to 0.25.2 (Node.js GitHub Bot) [#&#8203;51810](https://github.com/nodejs/node/pull/51810) - \[[`a593985326`](https://github.com/nodejs/node/commit/a593985326)] - **deps**: update corepack to 0.24.1 (Node.js GitHub Bot) [#&#8203;51459](https://github.com/nodejs/node/pull/51459) - \[[`d1a9237bf5`](https://github.com/nodejs/node/commit/d1a9237bf5)] - **deps**: update corepack to 0.24.0 (Node.js GitHub Bot) [#&#8203;51318](https://github.com/nodejs/node/pull/51318) - \[[`adac0c7a63`](https://github.com/nodejs/node/commit/adac0c7a63)] - **deps**: update corepack to 0.23.0 (Node.js GitHub Bot) [#&#8203;50563](https://github.com/nodejs/node/pull/50563) - \[[`4a6f83e32a`](https://github.com/nodejs/node/commit/4a6f83e32a)] - **deps**: escape Python strings correctly (Michaël Zasso) [#&#8203;50695](https://github.com/nodejs/node/pull/50695) - \[[`c13969e52a`](https://github.com/nodejs/node/commit/c13969e52a)] - **deps**: V8: cherry-pick [`ea996ad`](https://github.com/nodejs/node/commit/ea996ad04a68) (Nicolò Ribaudo) [#&#8203;51136](https://github.com/nodejs/node/pull/51136) - \[[`6fbf0ba5c3`](https://github.com/nodejs/node/commit/6fbf0ba5c3)] - **deps**: V8: cherry-pick [`a0fd320`](https://github.com/nodejs/node/commit/a0fd3209dda8) (Nicolò Ribaudo) [#&#8203;51136](https://github.com/nodejs/node/pull/51136) - \[[`68fd7516e1`](https://github.com/nodejs/node/commit/68fd7516e1)] - **deps**: update timezone to 2024a (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723) - \[[`f9b229ebe1`](https://github.com/nodejs/node/commit/f9b229ebe1)] - **deps**: update icu to 74.2 (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723) - \[[`90c73d2eb4`](https://github.com/nodejs/node/commit/90c73d2eb4)] - **deps**: update timezone to 2023d (Node.js GitHub Bot) [#&#8203;51461](https://github.com/nodejs/node/pull/51461) - \[[`2a2bf57028`](https://github.com/nodejs/node/commit/2a2bf57028)] - **deps**: update icu to 74.1 (Node.js GitHub Bot) [#&#8203;50515](https://github.com/nodejs/node/pull/50515) - \[[`425e011e52`](https://github.com/nodejs/node/commit/425e011e52)] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#&#8203;49874](https://github.com/nodejs/node/pull/49874) - \[[`58c70344a2`](https://github.com/nodejs/node/commit/58c70344a2)] - **deps**: V8: cherry-pick [`705e374`](https://github.com/nodejs/node/commit/705e374124ae) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`b0e88899e1`](https://github.com/nodejs/node/commit/b0e88899e1)] - **deps**: V8: cherry-pick [`1fada6b`](https://github.com/nodejs/node/commit/1fada6b36f8d) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`d87a810b81`](https://github.com/nodejs/node/commit/d87a810b81)] - **deps**: V8: cherry-pick [`3dd9576`](https://github.com/nodejs/node/commit/3dd9576ce336) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`6d50966876`](https://github.com/nodejs/node/commit/6d50966876)] - **deps**: V8: cherry-pick [`94e8282`](https://github.com/nodejs/node/commit/94e8282325a1) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`fafbacdfec`](https://github.com/nodejs/node/commit/fafbacdfec)] - **deps**: V8: cherry-pick [`9a98f96`](https://github.com/nodejs/node/commit/9a98f96b6d68) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`d4a530ed8d`](https://github.com/nodejs/node/commit/d4a530ed8d)] - **deps**: V8: cherry-pick [`7f5daed`](https://github.com/nodejs/node/commit/7f5daed62d47) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`1ce901b164`](https://github.com/nodejs/node/commit/1ce901b164)] - **deps**: V8: cherry-pick [`c400af4`](https://github.com/nodejs/node/commit/c400af48b5ef) (Joyee Cheung) [#&#8203;51004](https://github.com/nodejs/node/pull/51004) - \[[`f232064f35`](https://github.com/nodejs/node/commit/f232064f35)] - **doc**: fix historical experimental fetch flag (Kenrick) [#&#8203;51506](https://github.com/nodejs/node/pull/51506) - \[[`194ff6a40f`](https://github.com/nodejs/node/commit/194ff6a40f)] - **(SEMVER-MINOR)** **doc**: add deprecation notice to `dirent.path` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976) - \[[`0f09267dc6`](https://github.com/nodejs/node/commit/0f09267dc6)] - **(SEMVER-MINOR)** **doc**: deprecate `dirent.path` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976) - \[[`8bfb8f5b2f`](https://github.com/nodejs/node/commit/8bfb8f5b2f)] - **doc,crypto**: further clarify RSA_PKCS1\_PADDING support (Tobias Nießen) [#&#8203;51799](https://github.com/nodejs/node/pull/51799) - \[[`c7baf7b274`](https://github.com/nodejs/node/commit/c7baf7b274)] - **doc,crypto**: add changelog and note about disabled RSA_PKCS1\_PADDING (Filip Skokan) [#&#8203;51782](https://github.com/nodejs/node/pull/51782) - \[[`a193be3dc2`](https://github.com/nodejs/node/commit/a193be3dc2)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140) - \[[`26e8f7793e`](https://github.com/nodejs/node/commit/26e8f7793e)] - **(SEMVER-MINOR)** **fs**: introduce `dirent.parentPath` (Antoine du Hamel) [#&#8203;50976](https://github.com/nodejs/node/pull/50976) - \[[`5b5e5192f7`](https://github.com/nodejs/node/commit/5b5e5192f7)] - **lib**: fix compileFunction throws range error for negative numbers (Jithil P Ponnan) [#&#8203;49855](https://github.com/nodejs/node/pull/49855) - \[[`7552de6806`](https://github.com/nodejs/node/commit/7552de6806)] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`2e05cf1c60`](https://github.com/nodejs/node/commit/2e05cf1c60)] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`a86a2e14a3`](https://github.com/nodejs/node/commit/a86a2e14a3)] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#&#8203;48510](https://github.com/nodejs/node/pull/48510) - \[[`32906ddcac`](https://github.com/nodejs/node/commit/32906ddcac)] - **node-api**: segregate nogc APIs from rest via type system (Gabriel Schulhof) [#&#8203;50060](https://github.com/nodejs/node/pull/50060) - \[[`1aa71c26ff`](https://github.com/nodejs/node/commit/1aa71c26ff)] - **node-api**: factor out common code into macros (Gabriel Schulhof) [#&#8203;50664](https://github.com/nodejs/node/pull/50664) - \[[`3d0b233f52`](https://github.com/nodejs/node/commit/3d0b233f52)] - **node-api**: introduce experimental feature flags (Gabriel Schulhof) [#&#8203;50991](https://github.com/nodejs/node/pull/50991) - \[[`96514a8b9f`](https://github.com/nodejs/node/commit/96514a8b9f)] - **src**: iterate on import attributes array correctly (Michaël Zasso) [#&#8203;50703](https://github.com/nodejs/node/pull/50703) - \[[`2c2892bf88`](https://github.com/nodejs/node/commit/2c2892bf88)] - **src**: set ModuleWrap internal fields only once (Joyee Cheung) [#&#8203;49391](https://github.com/nodejs/node/pull/49391) - \[[`ff334cb774`](https://github.com/nodejs/node/commit/ff334cb774)] - **src**: cast v8::Object::GetInternalField() return value to v8::Value (Joyee Cheung) [#&#8203;48943](https://github.com/nodejs/node/pull/48943) - \[[`270b519971`](https://github.com/nodejs/node/commit/270b519971)] - **stream**: do not defer construction by one microtick (Matteo Collina) [#&#8203;52005](https://github.com/nodejs/node/pull/52005) - \[[`95d7a75084`](https://github.com/nodejs/node/commit/95d7a75084)] - **test**: fix dns test case failures after c-ares update to 1.21.0+ (Brad House) [#&#8203;50743](https://github.com/nodejs/node/pull/50743) - \[[`cd613e5167`](https://github.com/nodejs/node/commit/cd613e5167)] - **test**: handle relative https redirect (Richard Lau) [#&#8203;51121](https://github.com/nodejs/node/pull/51121) - \[[`40f10eafcf`](https://github.com/nodejs/node/commit/40f10eafcf)] - **test**: fix `internet/test-inspector-help-page` (Richard Lau) [#&#8203;51693](https://github.com/nodejs/node/pull/51693) - \[[`5e426511b1`](https://github.com/nodejs/node/commit/5e426511b1)] - **test**: deflake test-vm-contextified-script-leak (Joyee Cheung) [#&#8203;49710](https://github.com/nodejs/node/pull/49710) - \[[`0b156c6d28`](https://github.com/nodejs/node/commit/0b156c6d28)] - **test**: use checkIfCollectable in vm leak tests (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671) - \[[`1586c11b3c`](https://github.com/nodejs/node/commit/1586c11b3c)] - **test**: add checkIfCollectable to test/common/gc.js (Joyee Cheung) [#&#8203;49671](https://github.com/nodejs/node/pull/49671) - \[[`902d8b3d4b`](https://github.com/nodejs/node/commit/902d8b3d4b)] - **test**: fix flaky http-chunk-extensions-limit test (Ethan Arrowood) [#&#8203;51943](https://github.com/nodejs/node/pull/51943) - \[[`1743d2bdc1`](https://github.com/nodejs/node/commit/1743d2bdc1)] - **test**: test surrogate pair filenames on windows (Mert Can Altın) [#&#8203;51800](https://github.com/nodejs/node/pull/51800) - \[[`1c1a7ec22d`](https://github.com/nodejs/node/commit/1c1a7ec22d)] - **test**: increase platform timeout zlib-brotli-16gb (Rafael Gonzaga) [#&#8203;51792](https://github.com/nodejs/node/pull/51792) - \[[`931d02fe3e`](https://github.com/nodejs/node/commit/931d02fe3e)] - **test, v8**: fix wrong import attributes test (Nicolò Ribaudo) [#&#8203;52184](https://github.com/nodejs/node/pull/52184) - \[[`d9ea6c1f8d`](https://github.com/nodejs/node/commit/d9ea6c1f8d)] - **tls**: fix order of setting cipher before setting cert and key (Kumar Rishav) [#&#8203;50186](https://github.com/nodejs/node/pull/50186) - \[[`3184befa2e`](https://github.com/nodejs/node/commit/3184befa2e)] - **tools**: fix update-icu.sh (Michaël Zasso) [#&#8203;51723](https://github.com/nodejs/node/pull/51723) - \[[`06646e11be`](https://github.com/nodejs/node/commit/06646e11be)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141) - \[[`fe66e9d06e`](https://github.com/nodejs/node/commit/fe66e9d06e)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137) - \[[`052e095c6b`](https://github.com/nodejs/node/commit/052e095c6b)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137) - \[[`9f7899ed0a`](https://github.com/nodejs/node/commit/9f7899ed0a)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#&#8203;50137](https://github.com/nodejs/node/pull/50137) - \[[`6291c107d0`](https://github.com/nodejs/node/commit/6291c107d0)] - **vm**: use default HDO when importModuleDynamically is not set (Joyee Cheung) [#&#8203;49950](https://github.com/nodejs/node/pull/49950) ### [`v18.19.1`](https://github.com/nodejs/node/releases/tag/v18.19.1): 2024-02-14, Version 18.19.1 &#x27;Hydrogen&#x27; (LTS), @&#8203;RafaelGSS prepared by @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v18.19.0...v18.19.1) ##### Notable changes This is a security release. ##### Notable changes - CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High) - CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High) - CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against [PKCS#1](https://github.com/PKCS/node/issues/1) v1.5 padding) - (Medium) - CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium) - undici version 5.28.3 - npm version 10.2.4 ##### Commits - \[[`69e0a1dba8`](https://github.com/nodejs/node/commit/69e0a1dba8)] - **crypto**: update root certificates to NSS 3.95 (Node.js GitHub Bot) [#&#8203;50805](https://github.com/nodejs/node/pull/50805) - \[[`d3d357ab09`](https://github.com/nodejs/node/commit/d3d357ab09)] - **crypto**: disable [PKCS#1](https://github.com/PKCS/node/issues/1) padding for privateDecrypt (Michael Dawson) [nodejs-private/node-private#525](https://github.com/nodejs-private/node-private/pull/525) - \[[`3d27175c42`](https://github.com/nodejs/node/commit/3d27175c42)] - **deps**: fix GHSA-f74f-cvh7-c6q6/CVE-2024-24806 (Santiago Gimeno) [#&#8203;51614](https://github.com/nodejs/node/pull/51614) - \[[`331558b8ab`](https://github.com/nodejs/node/commit/331558b8ab)] - **deps**: update archs files for openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614) - \[[`99b77dfb9c`](https://github.com/nodejs/node/commit/99b77dfb9c)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.13+quic1 (Node.js GitHub Bot) [#&#8203;51614](https://github.com/nodejs/node/pull/51614) - \[[`6cdc71bff1`](https://github.com/nodejs/node/commit/6cdc71bff1)] - **deps**: upgrade npm to 10.2.4 (npm team) [#&#8203;50751](https://github.com/nodejs/node/pull/50751) - \[[`911cb33cda`](https://github.com/nodejs/node/commit/911cb33cda)] - **http**: add maximum chunk extension size (Paolo Insogna) [nodejs-private/node-private#520](https://github.com/nodejs-private/node-private/pull/520) - \[[`f48b89689d`](https://github.com/nodejs/node/commit/f48b89689d)] - **lib**: update undici to v5.28.3 (Matteo Collina) [nodejs-private/node-private#536](https://github.com/nodejs-private/node-private/pull/536) - \[[`e6b4c105e0`](https://github.com/nodejs/node/commit/e6b4c105e0)] - **src**: fix HasOnly(capability) in node::credentials (Tobias Nießen) [nodejs-private/node-private#505](https://github.com/nodejs-private/node-private/pull/505) - \[[`97c49076cd`](https://github.com/nodejs/node/commit/97c49076cd)] - **test**: skip test-child-process-stdio-reuse-readable-stdio on Windows (Joyee Cheung) [#&#8203;49621](https://github.com/nodejs/node/pull/49621) - \[[`60affdde8e`](https://github.com/nodejs/node/commit/60affdde8e)] - **tools**: add macOS notarization verification step (Ulises Gascón) [#&#8203;50833](https://github.com/nodejs/node/pull/50833) - \[[`ccc676a327`](https://github.com/nodejs/node/commit/ccc676a327)] - **tools**: use macOS keychain to notarize the releases (Ulises Gascón) [#&#8203;50715](https://github.com/nodejs/node/pull/50715) - \[[`31f1ceb380`](https://github.com/nodejs/node/commit/31f1ceb380)] - **tools**: remove unused file (Ulises Gascon) [#&#8203;50622](https://github.com/nodejs/node/pull/50622) - \[[`bd5f6fb92a`](https://github.com/nodejs/node/commit/bd5f6fb92a)] - **tools**: add macOS notarization stapler (Ulises Gascón) [#&#8203;50625](https://github.com/nodejs/node/pull/50625) - \[[`4168c4f71b`](https://github.com/nodejs/node/commit/4168c4f71b)] - **tools**: improve macOS notarization process output readability (Ulises Gascón) [#&#8203;50389](https://github.com/nodejs/node/pull/50389) - \[[`4622f775aa`](https://github.com/nodejs/node/commit/4622f775aa)] - **tools**: remove unused `version` function (Ulises Gascón) [#&#8203;50390](https://github.com/nodejs/node/pull/50390) - \[[`b90804b1e7`](https://github.com/nodejs/node/commit/b90804b1e7)] - **win,tools**: upgrade Windows signing to smctl (Stefan Stojanovic) [#&#8203;50956](https://github.com/nodejs/node/pull/50956) - \[[`f31d47e135`](https://github.com/nodejs/node/commit/f31d47e135)] - **zlib**: pause stream if outgoing buffer is full (Matteo Collina) [nodejs-private/node-private#542](https://github.com/nodejs-private/node-private/pull/542) ### [`v18.19.0`](https://github.com/nodejs/node/releases/tag/v18.19.0): 2023-11-29, Version 18.19.0 &#x27;Hydrogen&#x27; (LTS), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v18.18.2...v18.19.0) ##### Notable Changes ##### npm updated to v10 After two months of baking time in Node.js 20, npm 10 is backported, so that all release lines include a supported version of npm. This release includes npm v10.2.3. Refer to [nodejs/Release#884](https://github.com/nodejs/Release/issues/884) for the plan to land npm 10. ##### ESM and customization hook changes ##### Leverage loaders when resolving subsequent loaders Loaders now apply to subsequent loaders, for example: `--experimental-loader ts-node --experimental-loader loader-written-in-typescript`. Contributed by Maël Nison in [#&#8203;43772](https://github.com/nodejs/node/pull/43772). ##### New `node:module` API `register` for module customization hooks; new `initialize` hook There is a new API `register` available on `node:module` to specify a file that exports module customization hooks, and pass data to the hooks, and establish communication channels with them. The “define the file with the hooks” part was previously handled by a flag `--experimental-loader`, but when the hooks moved into a dedicated thread in 20.0.0 there was a need to provide a way to communicate between the main (application) thread and the hooks thread. This can now be done by calling `register` from the main thread and passing data, including `MessageChannel` instances. We encourage users to migrate to an approach that uses [`--import`](https://nodejs.org/api/cli.html#--importmodule) with `register`, such as: ```bash node --import ./file-that-calls-register.js ./app.js ``` Using `--import` ensures that the customization hooks are registered before any application code runs, even the entry point. Contributed by João Lenon and Jacob Smith in [#&#8203;46826](https://github.com/nodejs/node/pull/46826), Izaak Schroeder and Jacob Smith in [#&#8203;48842](https://github.com/nodejs/node/pull/48842) and [#&#8203;48559](https://github.com/nodejs/node/pull/48559). ##### `import.meta.resolve` unflagged In ES modules, [`import.meta.resolve(specifier)`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve) can be used to get an absolute URL string to which `specifier` resolves, similar to `require.resolve` in CommonJS. This aligns Node.js with browsers and other server-side runtimes. Contributed by Guy Bedford in [#&#8203;49028](https://github.com/nodejs/node/pull/49028). ##### `--experimental-default-type` flag to flip module defaults The new flag `--experimental-default-type` can be used to flip the default module system used by Node.js. Input that is already explicitly defined as ES modules or CommonJS, such as by a `package.json` `"type"` field or `.mjs`/`.cjs` file extension or the `--input-type` flag, is unaffected. What is currently implicitly CommonJS would instead be interpreted as ES modules under `--experimental-default-type=module`: - String input provided via `--eval` or STDIN, if `--input-type` is unspecified. - Files ending in `.js` or with no extension, if there is no `package.json` file present in the same folder or any parent folder. - Files ending in `.js` or with no extension, if the nearest parent `package.json` field lacks a `type` field; unless the folder is inside a `node_modules` folder. In addition, extensionless files are interpreted as Wasm if `--experimental-wasm-modules` is passed and the file contains the "magic bytes" Wasm header. Contributed by Geoffrey Booth in [#&#8203;49869](https://github.com/nodejs/node/pull/49869). ##### Other ESM-related changes - \[[`ed2d46f4cc`](https://github.com/nodejs/node/commit/ed2d46f4cc)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261) - \[[`92734d4480`](https://github.com/nodejs/node/commit/92734d4480)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140) - \[[`e96f7ef881`](https://github.com/nodejs/node/commit/e96f7ef881)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141) ##### Test runner changes Many changes to the built-in test runner have been backported. This includes the following additions: - \[[`b283ae4238`](https://github.com/nodejs/node/commit/b283ae4238)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753) - \[[`059b1945d8`](https://github.com/nodejs/node/commit/059b1945d8)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614) - \[[`d61a505546`](https://github.com/nodejs/node/commit/d61a505546)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975) - \[[`b55eb2a8d1`](https://github.com/nodejs/node/commit/b55eb2a8d1)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639) - \[[`05e7f28b40`](https://github.com/nodejs/node/commit/05e7f28b40)] - **(SEMVER-MINOR)** **test_runner**: add initial draft for fakeTimers (Erick Wendel) [#&#8203;47775](https://github.com/nodejs/node/pull/47775) - \[[`428301ad27`](https://github.com/nodejs/node/commit/428301ad27)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996) ##### Other notable changes - \[[`0c4a84e8e9`](https://github.com/nodejs/node/commit/0c4a84e8e9)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908) - \[[`fae60c5841`](https://github.com/nodejs/node/commit/fae60c5841)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745) - \[[`17246be158`](https://github.com/nodejs/node/commit/17246be158)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391) - \[[`2e9f7284a1`](https://github.com/nodejs/node/commit/2e9f7284a1)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics_channel (Stephen Belanger) [#&#8203;44943](https://github.com/nodejs/node/pull/44943) - \[[`cc7bf1f641`](https://github.com/nodejs/node/commit/cc7bf1f641)] - **(SEMVER-MINOR)** **src**: add cjs_module_lexer_version base64\_version (Jithil P Ponnan) [#&#8203;45629](https://github.com/nodejs/node/pull/45629) - \[[`b5d16cd8f0`](https://github.com/nodejs/node/commit/b5d16cd8f0)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190) ##### Commits - \[[`0d0eb47e2a`](https://github.com/nodejs/node/commit/0d0eb47e2a)] - **benchmark**: add benchmarks for the test_runner (Raz Luvaton) [#&#8203;48931](https://github.com/nodejs/node/pull/48931) - \[[`8bb03d10f4`](https://github.com/nodejs/node/commit/8bb03d10f4)] - **benchmark**: differentiate whatwg and legacy url (Yagiz Nizipli) [#&#8203;47377](https://github.com/nodejs/node/pull/47377) - \[[`3d7734cbe3`](https://github.com/nodejs/node/commit/3d7734cbe3)] - **benchmark**: lower URL.canParse runs (Khafra) [#&#8203;47351](https://github.com/nodejs/node/pull/47351) - \[[`24d3fcf415`](https://github.com/nodejs/node/commit/24d3fcf415)] - **benchmark**: stablize encode benchmark (Joyee Cheung) [#&#8203;46658](https://github.com/nodejs/node/pull/46658) - \[[`e08fd98bcc`](https://github.com/nodejs/node/commit/e08fd98bcc)] - **bootstrap**: use correct descriptor for Symbol.{dispose,asyncDispose} (Jordan Harband) [#&#8203;48703](https://github.com/nodejs/node/pull/48703) - \[[`cf9ddcd6c8`](https://github.com/nodejs/node/commit/cf9ddcd6c8)] - **bootstrap**: simplify initialization of source map handlers (Joyee Cheung) [#&#8203;48304](https://github.com/nodejs/node/pull/48304) - \[[`12d731e431`](https://github.com/nodejs/node/commit/12d731e431)] - **bootstrap**: log isolate data info in mksnapshot debug logs (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768) - \[[`d66873871a`](https://github.com/nodejs/node/commit/d66873871a)] - **bootstrap**: store internal loaders in C++ via a binding (Joyee Cheung) [#&#8203;47215](https://github.com/nodejs/node/pull/47215) - \[[`1a499c5082`](https://github.com/nodejs/node/commit/1a499c5082)] - **bootstrap**: optimize modules loaded in the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`e0e09caafe`](https://github.com/nodejs/node/commit/e0e09caafe)] - **bootstrap**: make CJS loader snapshotable (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`5f37decd56`](https://github.com/nodejs/node/commit/5f37decd56)] - **bootstrap**: include event_target into the built-in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`c3f56a3dee`](https://github.com/nodejs/node/commit/c3f56a3dee)] - **bootstrap**: support module_wrap binding in snapshot (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`6466acbc89`](https://github.com/nodejs/node/commit/6466acbc89)] - **bootstrap**: lazy load non-essential modules (Joyee Cheung) [#&#8203;45659](https://github.com/nodejs/node/pull/45659) - \[[`a0d4b69df4`](https://github.com/nodejs/node/commit/a0d4b69df4)] - **bootstrap**: lazy-load Performance.prototype.timeOrigin (Joyee Cheung) [#&#8203;46425](https://github.com/nodejs/node/pull/46425) - \[[`c1bc8118e3`](https://github.com/nodejs/node/commit/c1bc8118e3)] - **bootstrap**: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) [#&#8203;44488](https://github.com/nodejs/node/pull/44488) - \[[`075c57e88b`](https://github.com/nodejs/node/commit/075c57e88b)] - **build**: add symlink to `compile_commands.json` file if needed (Juan José) [#&#8203;49260](https://github.com/nodejs/node/pull/49260) - \[[`9e1c531b8d`](https://github.com/nodejs/node/commit/9e1c531b8d)] - **build**: expand when we run internet tests (Michael Dawson) [#&#8203;49218](https://github.com/nodejs/node/pull/49218) - \[[`a781d24624`](https://github.com/nodejs/node/commit/a781d24624)] - **build**: fix typo `libray` -> `library` (configure.py) (michalbiesek) [#&#8203;49106](https://github.com/nodejs/node/pull/49106) - \[[`f2eccb7a04`](https://github.com/nodejs/node/commit/f2eccb7a04)] - **build**: fix `configure --link-module` (Richard Lau) [#&#8203;48522](https://github.com/nodejs/node/pull/48522) - \[[`a44d555494`](https://github.com/nodejs/node/commit/a44d555494)] - **build**: fix IBM i build with Python 3.9 (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056) - \[[`7f68e14ea2`](https://github.com/nodejs/node/commit/7f68e14ea2)] - **child_process**: improve spawn performance on Linux (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523) - \[[`76e4d4117c`](https://github.com/nodejs/node/commit/76e4d4117c)] - **crypto**: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) [#&#8203;50234](https://github.com/nodejs/node/pull/50234) - \[[`7af54279b5`](https://github.com/nodejs/node/commit/7af54279b5)] - **deps**: V8: cherry-pick [`70caf33`](https://github.com/nodejs/node/commit/70caf337c3f6) (kxxt) [#&#8203;50506](https://github.com/nodejs/node/pull/50506) - \[[`49c5495339`](https://github.com/nodejs/node/commit/49c5495339)] - **deps**: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) [#&#8203;50085](https://github.com/nodejs/node/pull/50085) - \[[`e0fd52bf07`](https://github.com/nodejs/node/commit/e0fd52bf07)] - **deps**: update googletest to [`2dd1c13`](https://github.com/nodejs/node/commit/2dd1c13) (Node.js GitHub Bot) [#&#8203;50081](https://github.com/nodejs/node/pull/50081) - \[[`1b103cc567`](https://github.com/nodejs/node/commit/1b103cc567)] - **deps**: update googletest to [`e47544a`](https://github.com/nodejs/node/commit/e47544a) (Node.js GitHub Bot) [#&#8203;49982](https://github.com/nodejs/node/pull/49982) - \[[`736c869eeb`](https://github.com/nodejs/node/commit/736c869eeb)] - **deps**: update googletest to [`d1467f5`](https://github.com/nodejs/node/commit/d1467f5) (Node.js GitHub Bot) [#&#8203;49676](https://github.com/nodejs/node/pull/49676) - \[[`cd99ee1f35`](https://github.com/nodejs/node/commit/cd99ee1f35)] - **deps**: update googletest to [`8a6feab`](https://github.com/nodejs/node/commit/8a6feab) (Node.js GitHub Bot) [#&#8203;49463](https://github.com/nodejs/node/pull/49463) - \[[`5c338573ff`](https://github.com/nodejs/node/commit/5c338573ff)] - **deps**: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) [#&#8203;49252](https://github.com/nodejs/node/pull/49252) - \[[`374ec3d623`](https://github.com/nodejs/node/commit/374ec3d623)] - **deps**: update googletest to [`7e33b6a`](https://github.com/nodejs/node/commit/7e33b6a) (Node.js GitHub Bot) [#&#8203;49034](https://github.com/nodejs/node/pull/49034) - \[[`c15dd6679b`](https://github.com/nodejs/node/commit/c15dd6679b)] - **deps**: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) [#&#8203;49033](https://github.com/nodejs/node/pull/49033) - \[[`588bd5e524`](https://github.com/nodejs/node/commit/588bd5e524)] - **deps**: update googletest to [`c875c4e`](https://github.com/nodejs/node/commit/c875c4e) (Node.js GitHub Bot) [#&#8203;48964](https://github.com/nodejs/node/pull/48964) - \[[`6059b59018`](https://github.com/nodejs/node/commit/6059b59018)] - **deps**: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) [#&#8203;48788](https://github.com/nodejs/node/pull/48788) - \[[`e455dd4003`](https://github.com/nodejs/node/commit/e455dd4003)] - **deps**: update googletest to [`cc36671`](https://github.com/nodejs/node/commit/cc36671) (Node.js GitHub Bot) [#&#8203;48789](https://github.com/nodejs/node/pull/48789) - \[[`747fbb49ca`](https://github.com/nodejs/node/commit/747fbb49ca)] - **deps**: V8: cherry-pick [`1a782f6`](https://github.com/nodejs/node/commit/1a782f6543ae) (Keyhan Vakil) [#&#8203;48523](https://github.com/nodejs/node/pull/48523) - \[[`272e55c66f`](https://github.com/nodejs/node/commit/272e55c66f)] - **deps**: upgrade npm to 10.2.3 (npm team) [#&#8203;50531](https://github.com/nodejs/node/pull/50531) - \[[`3f6dcc62e5`](https://github.com/nodejs/node/commit/3f6dcc62e5)] - **deps**: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411) - \[[`da26cdbe84`](https://github.com/nodejs/node/commit/da26cdbe84)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) [#&#8203;50411](https://github.com/nodejs/node/pull/50411) - \[[`23069c34b2`](https://github.com/nodejs/node/commit/23069c34b2)] - **deps**: V8: cherry-pick [`d69c793`](https://github.com/nodejs/node/commit/d69c7937c99d) (Michaël Zasso) [#&#8203;46425](https://github.com/nodejs/node/pull/46425) - \[[`5f852cc9fe`](https://github.com/nodejs/node/commit/5f852cc9fe)] - **deps**: V8: cherry-pick [`f7d000a`](https://github.com/nodejs/node/commit/f7d000a7ae7b) (Luke Albao) [#&#8203;50344](https://github.com/nodejs/node/pull/50344) - \[[`0c4a84e8e9`](https://github.com/nodejs/node/commit/0c4a84e8e9)] - **(SEMVER-MINOR)** **deps**: update uvwasi to 0.0.19 (Node.js GitHub Bot) [#&#8203;49908](https://github.com/nodejs/node/pull/49908) - \[[`8682b90d02`](https://github.com/nodejs/node/commit/8682b90d02)] - **deps**: update simdutf to 3.2.18 (Node.js GitHub Bot) [#&#8203;50091](https://github.com/nodejs/node/pull/50091) - \[[`11ecd06aeb`](https://github.com/nodejs/node/commit/11ecd06aeb)] - **deps**: update simdutf to 3.2.17 (Node.js GitHub Bot) [#&#8203;49019](https://github.com/nodejs/node/pull/49019) - \[[`43bfe5f020`](https://github.com/nodejs/node/commit/43bfe5f020)] - **deps**: upgrade npm to 10.2.0 (npm team) [#&#8203;50027](https://github.com/nodejs/node/pull/50027) - \[[`a140bc284b`](https://github.com/nodejs/node/commit/a140bc284b)] - **deps**: upgrade npm to 10.1.0 (npm team) [#&#8203;49570](https://github.com/nodejs/node/pull/49570) - \[[`65ca41c276`](https://github.com/nodejs/node/commit/65ca41c276)] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#&#8203;49423](https://github.com/nodejs/node/pull/49423) - \[[`df1ff8e3da`](https://github.com/nodejs/node/commit/df1ff8e3da)] - **deps**: fix call to undeclared functions 'ntohl' and 'htons' (MatteoBax) [#&#8203;49979](https://github.com/nodejs/node/pull/49979) - \[[`f228dc7955`](https://github.com/nodejs/node/commit/f228dc7955)] - **deps**: update corepack to 0.22.0 (Node.js GitHub Bot) [#&#8203;50325](https://github.com/nodejs/node/pull/50325) - \[[`4324ebab67`](https://github.com/nodejs/node/commit/4324ebab67)] - **deps**: update corepack to 0.21.0 (Node.js GitHub Bot) [#&#8203;50088](https://github.com/nodejs/node/pull/50088) - \[[`1cabb77659`](https://github.com/nodejs/node/commit/1cabb77659)] - **deps**: update corepack to 0.20.0 (Node.js GitHub Bot) [#&#8203;49464](https://github.com/nodejs/node/pull/49464) - \[[`04227b287e`](https://github.com/nodejs/node/commit/04227b287e)] - **deps**: update c-ares to 1.20.1 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082) - \[[`13e69ee11c`](https://github.com/nodejs/node/commit/13e69ee11c)] - **deps**: update c-ares to 1.20.0 (Node.js GitHub Bot) [#&#8203;50082](https://github.com/nodejs/node/pull/50082) - \[[`ac717df17e`](https://github.com/nodejs/node/commit/ac717df17e)] - **deps**: update ada to 2.7.2 (Node.js GitHub Bot) [#&#8203;50338](https://github.com/nodejs/node/pull/50338) - \[[`6885fc9386`](https://github.com/nodejs/node/commit/6885fc9386)] - **deps**: update ada to 2.6.10 (Node.js GitHub Bot) [#&#8203;49984](https://github.com/nodejs/node/pull/49984) - \[[`76c5f4039f`](https://github.com/nodejs/node/commit/76c5f4039f)] - **deps**: update ada to 2.6.9 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`597ea77422`](https://github.com/nodejs/node/commit/597ea77422)] - **deps**: update ada to 2.6.8 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`8e7dcba553`](https://github.com/nodejs/node/commit/8e7dcba553)] - **deps**: update ada to 2.6.7 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`9f2037e8ee`](https://github.com/nodejs/node/commit/9f2037e8ee)] - **deps**: update ada to 2.6.5 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`4723976703`](https://github.com/nodejs/node/commit/4723976703)] - **deps**: update ada to 2.6.3 (Node.js GitHub Bot) [#&#8203;49340](https://github.com/nodejs/node/pull/49340) - \[[`7ccb478664`](https://github.com/nodejs/node/commit/7ccb478664)] - **deps**: update undici to 5.26.4 (Node.js GitHub Bot) [#&#8203;50274](https://github.com/nodejs/node/pull/50274) - \[[`88f9ebb770`](https://github.com/nodejs/node/commit/88f9ebb770)] - **diagnostics_channel**: fix ref counting bug when reaching zero subscribers (Stephen Belanger) [#&#8203;47520](https://github.com/nodejs/node/pull/47520) - \[[`284a869540`](https://github.com/nodejs/node/commit/284a869540)] - **dns**: call `ada::idna::to_ascii` directly from c++ (Yagiz Nizipli) [#&#8203;47920](https://github.com/nodejs/node/pull/47920) - \[[`10968370b5`](https://github.com/nodejs/node/commit/10968370b5)] - **doc**: drop github actions check in sec release process (Rafael Gonzaga) [#&#8203;48978](https://github.com/nodejs/node/pull/48978) - \[[`07c3b88c74`](https://github.com/nodejs/node/commit/07c3b88c74)] - **doc**: remove `@anonrig` from performance initiative (Yagiz Nizipli) [#&#8203;49641](https://github.com/nodejs/node/pull/49641) - \[[`e26b89e8be`](https://github.com/nodejs/node/commit/e26b89e8be)] - **doc**: fix node-api call example (Chengzhong Wu) [#&#8203;49395](https://github.com/nodejs/node/pull/49395) - \[[`4c93905f6c`](https://github.com/nodejs/node/commit/4c93905f6c)] - **doc**: add news issue for Diagnostics WG (Michael Dawson) [#&#8203;49306](https://github.com/nodejs/node/pull/49306) - \[[`3f1a237a8f`](https://github.com/nodejs/node/commit/3f1a237a8f)] - **doc**: add print results for examples in `StringDecoder` (Jungku Lee) [#&#8203;49326](https://github.com/nodejs/node/pull/49326) - \[[`45caad82bb`](https://github.com/nodejs/node/commit/45caad82bb)] - **doc**: update outdated reference to NIST SP 800-131A (Tobias Nießen) [#&#8203;49316](https://github.com/nodejs/node/pull/49316) - \[[`62f823d5a2`](https://github.com/nodejs/node/commit/62f823d5a2)] - **doc**: use `cjs` as block code's type in `MockTimers` (Deokjin Kim) [#&#8203;49309](https://github.com/nodejs/node/pull/49309) - \[[`0dda724d3f`](https://github.com/nodejs/node/commit/0dda724d3f)] - **doc**: update `options.filter` description for `fs.cp` (Shubham Pandey) [#&#8203;49289](https://github.com/nodejs/node/pull/49289) - \[[`4ba11e352b`](https://github.com/nodejs/node/commit/4ba11e352b)] - **doc**: avoid "not currently recommended" (Tobias Nießen) [#&#8203;49300](https://github.com/nodejs/node/pull/49300) - \[[`9ca85b58b3`](https://github.com/nodejs/node/commit/9ca85b58b3)] - **doc**: modify param description for end(),write() in `StringDecoder` (Jungku Lee) [#&#8203;49285](https://github.com/nodejs/node/pull/49285) - \[[`3f771cab67`](https://github.com/nodejs/node/commit/3f771cab67)] - **doc**: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) [#&#8203;49268](https://github.com/nodejs/node/pull/49268) - \[[`f181c37e75`](https://github.com/nodejs/node/commit/f181c37e75)] - **doc**: fix typo in `stream.finished` documentation (Antoine du Hamel) [#&#8203;49271](https://github.com/nodejs/node/pull/49271) - \[[`c70945ddc2`](https://github.com/nodejs/node/commit/c70945ddc2)] - **doc**: update description for `percent_encode` sets in `WHATWG API` (Jungku Lee) [#&#8203;49258](https://github.com/nodejs/node/pull/49258) - \[[`f9c2a3fb3e`](https://github.com/nodejs/node/commit/f9c2a3fb3e)] - **doc**: clarify use of Uint8Array for n-api (Fedor Indutny) [#&#8203;48742](https://github.com/nodejs/node/pull/48742) - \[[`bf22a5f66e`](https://github.com/nodejs/node/commit/bf22a5f66e)] - **doc**: use same name in the doc as in the code (Hyunjin Kim) [#&#8203;49216](https://github.com/nodejs/node/pull/49216) - \[[`72bd527fb6`](https://github.com/nodejs/node/commit/72bd527fb6)] - **doc**: add notable-change label mention to PR template (Rafael Gonzaga) [#&#8203;49188](https://github.com/nodejs/node/pull/49188) - \[[`2247e52fe0`](https://github.com/nodejs/node/commit/2247e52fe0)] - **doc**: add h1 summary to security release process (Rafael Gonzaga) [#&#8203;49112](https://github.com/nodejs/node/pull/49112) - \[[`3b82e9aed1`](https://github.com/nodejs/node/commit/3b82e9aed1)] - **doc**: fix wording in napi_async_init (Tobias Nießen) [#&#8203;49180](https://github.com/nodejs/node/pull/49180) - \[[`55171d88a0`](https://github.com/nodejs/node/commit/55171d88a0)] - **doc**: fix `Type` notation in webstreams (Deokjin Kim) [#&#8203;49121](https://github.com/nodejs/node/pull/49121) - \[[`79c0497398`](https://github.com/nodejs/node/commit/79c0497398)] - **doc**: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) [#&#8203;49114](https://github.com/nodejs/node/pull/49114) - \[[`7ee26fb8df`](https://github.com/nodejs/node/commit/7ee26fb8df)] - **doc**: update with latest security release (Rafael Gonzaga) [#&#8203;49085](https://github.com/nodejs/node/pull/49085) - \[[`9ce73964be`](https://github.com/nodejs/node/commit/9ce73964be)] - **doc**: add description for `--port` flag of `node inspect` (Michael Bianco) [#&#8203;48785](https://github.com/nodejs/node/pull/48785) - \[[`633b8cd181`](https://github.com/nodejs/node/commit/633b8cd181)] - **doc**: add missing period (Rich Trott) [#&#8203;49094](https://github.com/nodejs/node/pull/49094) - \[[`6daa9ec2a4`](https://github.com/nodejs/node/commit/6daa9ec2a4)] - **doc**: add ESM examples in http.md (btea) [#&#8203;47763](https://github.com/nodejs/node/pull/47763) - \[[`12b83e81b9`](https://github.com/nodejs/node/commit/12b83e81b9)] - **doc**: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) [#&#8203;43529](https://github.com/nodejs/node/pull/43529) - \[[`ead654f976`](https://github.com/nodejs/node/commit/ead654f976)] - **doc**: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) [#&#8203;49008](https://github.com/nodejs/node/pull/49008) - \[[`4047947838`](https://github.com/nodejs/node/commit/4047947838)] - **doc**: remove v14 mention (Rafael Gonzaga) [#&#8203;49005](https://github.com/nodejs/node/pull/49005) - \[[`833c643eb4`](https://github.com/nodejs/node/commit/833c643eb4)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48898](https://github.com/nodejs/node/pull/48898) - \[[`cb43717c97`](https://github.com/nodejs/node/commit/cb43717c97)] - **doc**: add ver of 18.x where Node-api 9 is supported (Michael Dawson) [#&#8203;48876](https://github.com/nodejs/node/pull/48876) - \[[`a8d5c16a2a`](https://github.com/nodejs/node/commit/a8d5c16a2a)] - **doc**: include experimental features assessment (Rafael Gonzaga) [#&#8203;48824](https://github.com/nodejs/node/pull/48824) - \[[`e6d8735e2b`](https://github.com/nodejs/node/commit/e6d8735e2b)] - **doc**: add new TSC members (Michael Dawson) [#&#8203;48841](https://github.com/nodejs/node/pull/48841) - \[[`d4fe00d0c7`](https://github.com/nodejs/node/commit/d4fe00d0c7)] - **doc**: refactor node-api support matrix (Michael Dawson) [#&#8203;48774](https://github.com/nodejs/node/pull/48774) - \[[`629132d84c`](https://github.com/nodejs/node/commit/629132d84c)] - **doc**: declare `path` on example of `async_hooks.executionAsyncId()` (Deokjin Kim) [#&#8203;48556](https://github.com/nodejs/node/pull/48556) - \[[`dfd368ac9f`](https://github.com/nodejs/node/commit/dfd368ac9f)] - **doc**: remove the . in the end to reduce confusing (Jason) [#&#8203;48719](https://github.com/nodejs/node/pull/48719) - \[[`74d8f96413`](https://github.com/nodejs/node/commit/74d8f96413)] - **doc**: nodejs-social over nodejs/tweet (Rafael Gonzaga) [#&#8203;48769](https://github.com/nodejs/node/pull/48769) - \[[`73a7e00d06`](https://github.com/nodejs/node/commit/73a7e00d06)] - **doc**: add missing history info for `import.meta.resolve` (Antoine du Hamel) [#&#8203;49700](https://github.com/nodejs/node/pull/49700) - \[[`c20fdb4e52`](https://github.com/nodejs/node/commit/c20fdb4e52)] - **doc**: edit `import.meta.resolve` documentation (Antoine du Hamel) [#&#8203;49247](https://github.com/nodejs/node/pull/49247) - \[[`1ac389ecef`](https://github.com/nodejs/node/commit/1ac389ecef)] - **doc**: update module hooks docs (Geoffrey Booth) [#&#8203;49265](https://github.com/nodejs/node/pull/49265) - \[[`ed2d46f4cc`](https://github.com/nodejs/node/commit/ed2d46f4cc)] - **doc**: move and rename loaders section (Geoffrey Booth) [#&#8203;49261](https://github.com/nodejs/node/pull/49261) - \[[`258df0e72d`](https://github.com/nodejs/node/commit/258df0e72d)] - **doc**: add signature for `module.register` (Geoffrey Booth) [#&#8203;49251](https://github.com/nodejs/node/pull/49251) - \[[`58eaf3f6ae`](https://github.com/nodejs/node/commit/58eaf3f6ae)] - **doc**: caveat unavailability of `import.meta.resolve` in custom loaders (Jacob Smith) [#&#8203;49242](https://github.com/nodejs/node/pull/49242) - \[[`2fef28b2b9`](https://github.com/nodejs/node/commit/2fef28b2b9)] - **doc**: fix name of the flag in `initialize()` docs (Antoine du Hamel) [#&#8203;49158](https://github.com/nodejs/node/pull/49158) - \[[`15280fb42c`](https://github.com/nodejs/node/commit/15280fb42c)] - **doc**: add steps about signing the binary in single-executable docs (Darshan Sen) [#&#8203;46764](https://github.com/nodejs/node/pull/46764) - \[[`e374ba296c`](https://github.com/nodejs/node/commit/e374ba296c)] - **doc**: add "type" to test runner event details (Phil Nash) [#&#8203;49014](https://github.com/nodejs/node/pull/49014) - \[[`ec0a6c1f1b`](https://github.com/nodejs/node/commit/ec0a6c1f1b)] - **doc**: add new reporter events to custom reporter examples (Chemi Atlow) [#&#8203;48903](https://github.com/nodejs/node/pull/48903) - \[[`e8a32fb49b`](https://github.com/nodejs/node/commit/e8a32fb49b)] - **doc**: change duration to duration_ms on test documentation (Ardi_Nugraha) [#&#8203;48892](https://github.com/nodejs/node/pull/48892) - \[[`2b30c8b8a3`](https://github.com/nodejs/node/commit/2b30c8b8a3)] - **doc**: fix `globalPreload` example (bmacnaughton) [#&#8203;50300](https://github.com/nodejs/node/pull/50300) - \[[`8a57182769`](https://github.com/nodejs/node/commit/8a57182769)] - **doc,test**: extend the list of platforms supported by single-executables (Darshan Sen) [#&#8203;47026](https://github.com/nodejs/node/pull/47026) - \[[`92734d4480`](https://github.com/nodejs/node/commit/92734d4480)] - **esm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50140](https://github.com/nodejs/node/pull/50140) - \[[`c3c945e654`](https://github.com/nodejs/node/commit/c3c945e654)] - **esm**: bypass CommonJS loader under --default-type (Geoffrey Booth) [#&#8203;49986](https://github.com/nodejs/node/pull/49986) - \[[`fe691984b2`](https://github.com/nodejs/node/commit/fe691984b2)] - **esm**: unflag extensionless javascript and wasm in module scope (Geoffrey Booth) [#&#8203;49974](https://github.com/nodejs/node/pull/49974) - \[[`56bd9a88ac`](https://github.com/nodejs/node/commit/56bd9a88ac)] - **esm**: --experimental-default-type flag to flip module defaults (Geoffrey Booth) [#&#8203;49869](https://github.com/nodejs/node/pull/49869) - \[[`72644d62e7`](https://github.com/nodejs/node/commit/72644d62e7)] - **esm**: improve JSDoc annotation of internal functions (Antoine du Hamel) [#&#8203;49959](https://github.com/nodejs/node/pull/49959) - \[[`957725f601`](https://github.com/nodejs/node/commit/957725f601)] - **esm**: require braces for modules code (Geoffrey Booth) [#&#8203;49657](https://github.com/nodejs/node/pull/49657) - \[[`c12685f82d`](https://github.com/nodejs/node/commit/c12685f82d)] - **esm**: fix cache collision on JSON files using file: URL (Antoine du Hamel) [#&#8203;49887](https://github.com/nodejs/node/pull/49887) - \[[`ed8dd33493`](https://github.com/nodejs/node/commit/ed8dd33493)] - **esm**: identify parent importing a url with invalid host (Jacob Smith) [#&#8203;49736](https://github.com/nodejs/node/pull/49736) - \[[`46d730ab75`](https://github.com/nodejs/node/commit/46d730ab75)] - **esm**: fix return type of `import.meta.resolve` (Antoine du Hamel) [#&#8203;49698](https://github.com/nodejs/node/pull/49698) - \[[`12cb700478`](https://github.com/nodejs/node/commit/12cb700478)] - **esm**: update loaders warning (Geoffrey Booth) [#&#8203;49633](https://github.com/nodejs/node/pull/49633) - \[[`47193a347e`](https://github.com/nodejs/node/commit/47193a347e)] - **esm**: fix support for `URL` instances in `register` (Antoine du Hamel) [#&#8203;49655](https://github.com/nodejs/node/pull/49655) - \[[`51ced0f1a1`](https://github.com/nodejs/node/commit/51ced0f1a1)] - **esm**: clarify ERR_REQUIRE_ESM errors (Daniel Compton) [#&#8203;49521](https://github.com/nodejs/node/pull/49521) - \[[`4be5612bae`](https://github.com/nodejs/node/commit/4be5612bae)] - **esm**: remove return value for `Module.register` (Antoine du Hamel) [#&#8203;49529](https://github.com/nodejs/node/pull/49529) - \[[`0875867e27`](https://github.com/nodejs/node/commit/0875867e27)] - **esm**: refactor test-esm-loader-resolve-type (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493) - \[[`9b7c9d93e9`](https://github.com/nodejs/node/commit/9b7c9d93e9)] - **esm**: refactor test-esm-named-exports (Geoffrey Booth) [#&#8203;49493](https://github.com/nodejs/node/pull/49493) - \[[`d1f5514917`](https://github.com/nodejs/node/commit/d1f5514917)] - **esm**: refactor mocking test (Geoffrey Booth) [#&#8203;49465](https://github.com/nodejs/node/pull/49465) - \[[`01ca6d277d`](https://github.com/nodejs/node/commit/01ca6d277d)] - **esm**: fix `globalPreload` warning (Antoine du Hamel) [#&#8203;49069](https://github.com/nodejs/node/pull/49069) - \[[`c1a84398b4`](https://github.com/nodejs/node/commit/c1a84398b4)] - **esm**: unflag import.meta.resolve (Guy Bedford) [#&#8203;49028](https://github.com/nodejs/node/pull/49028) - \[[`ef43f084e9`](https://github.com/nodejs/node/commit/ef43f084e9)] - **esm**: import.meta.resolve exact module not found errors should return (Guy Bedford) [#&#8203;49038](https://github.com/nodejs/node/pull/49038) - \[[`385f24c9cc`](https://github.com/nodejs/node/commit/385f24c9cc)] - **esm**: protect `ERR_UNSUPPORTED_DIR_IMPORT` against prototype pollution (Antoine du Hamel) [#&#8203;49060](https://github.com/nodejs/node/pull/49060) - \[[`10e7c3a376`](https://github.com/nodejs/node/commit/10e7c3a376)] - **esm**: add `initialize` hook, integrate with `register` (Izaak Schroeder) [#&#8203;48842](https://github.com/nodejs/node/pull/48842) - \[[`f96b610268`](https://github.com/nodejs/node/commit/f96b610268)] - **esm**: fix typo `parentUrl` -> `parentURL` (Antoine du Hamel) [#&#8203;48999](https://github.com/nodejs/node/pull/48999) - \[[`03c1b5e647`](https://github.com/nodejs/node/commit/03c1b5e647)] - **esm**: unflag `Module.register` and allow nested loader `import()` (Izaak Schroeder) [#&#8203;48559](https://github.com/nodejs/node/pull/48559) - \[[`63aa5d7270`](https://github.com/nodejs/node/commit/63aa5d7270)] - **esm**: add back `globalPreload` tests and fix failing ones (Antoine du Hamel) [#&#8203;48779](https://github.com/nodejs/node/pull/48779) - \[[`1c7be606f1`](https://github.com/nodejs/node/commit/1c7be606f1)] - **esm**: remove support for arrays in `import` internal method (Antoine du Hamel) [#&#8203;48296](https://github.com/nodejs/node/pull/48296) - \[[`655111fa00`](https://github.com/nodejs/node/commit/655111fa00)] - **esm**: handle `globalPreload` hook returning a nullish value (Antoine du Hamel) [#&#8203;48249](https://github.com/nodejs/node/pull/48249) - \[[`9938a8bf13`](https://github.com/nodejs/node/commit/9938a8bf13)] - **esm**: handle more error types thrown from the loader thread (Antoine du Hamel) [#&#8203;48247](https://github.com/nodejs/node/pull/48247) - \[[`8cab32a5d1`](https://github.com/nodejs/node/commit/8cab32a5d1)] - **esm**: do not use `'beforeExit'` on the main thread (Antoine du Hamel) [#&#8203;47964](https://github.com/nodejs/node/pull/47964) - \[[`b61efcce95`](https://github.com/nodejs/node/commit/b61efcce95)] - **esm**: rename `URLCanParse` to be consistent (Antoine du Hamel) [#&#8203;47668](https://github.com/nodejs/node/pull/47668) - \[[`ca20f5931d`](https://github.com/nodejs/node/commit/ca20f5931d)] - **esm**: remove support for deprecated hooks (Antoine du Hamel) [#&#8203;47580](https://github.com/nodejs/node/pull/47580) - \[[`5de37a1e37`](https://github.com/nodejs/node/commit/5de37a1e37)] - **esm**: initialize `import.meta` on eval (Antoine du Hamel) [#&#8203;47551](https://github.com/nodejs/node/pull/47551) - \[[`39fbce7313`](https://github.com/nodejs/node/commit/39fbce7313)] - **esm**: propagate `process.exit` from the loader thread to the main thread (Antoine du Hamel) [#&#8203;47548](https://github.com/nodejs/node/pull/47548) - \[[`2a528b76e6`](https://github.com/nodejs/node/commit/2a528b76e6)] - **esm**: avoid try/catch when validating urls (Yagiz Nizipli) [#&#8203;47541](https://github.com/nodejs/node/pull/47541) - \[[`bac9b1758f`](https://github.com/nodejs/node/commit/bac9b1758f)] - **esm**: move hook execution to separate thread (Jacob Smith) [#&#8203;44710](https://github.com/nodejs/node/pull/44710) - \[[`dfa444477a`](https://github.com/nodejs/node/commit/dfa444477a)] - **esm**: skip file: URL conversion to path when possible (Antoine du Hamel) [#&#8203;46305](https://github.com/nodejs/node/pull/46305) - \[[`45de8d1bd7`](https://github.com/nodejs/node/commit/45de8d1bd7)] - **esm**: allow resolve to return import assertions (Geoffrey Booth) [#&#8203;46153](https://github.com/nodejs/node/pull/46153) - \[[`5ffc90a06b`](https://github.com/nodejs/node/commit/5ffc90a06b)] - **esm**: move hooks handling into separate class (Geoffrey Booth) [#&#8203;45869](https://github.com/nodejs/node/pull/45869) - \[[`490b598dbf`](https://github.com/nodejs/node/commit/490b598dbf)] - **esm**: leverage loaders when resolving subsequent loaders (Maël Nison) [#&#8203;43772](https://github.com/nodejs/node/pull/43772) - \[[`acd987287c`](https://github.com/nodejs/node/commit/acd987287c)] - **events**: remove weak listener for event target (Raz Luvaton) [#&#8203;48952](https://github.com/nodejs/node/pull/48952) - \[[`69b7f91a92`](https://github.com/nodejs/node/commit/69b7f91a92)] - **fs**: remove redundant code in readableWebStream() (Deokjin Kim) [#&#8203;49298](https://github.com/nodejs/node/pull/49298) - \[[`ae8bb162b4`](https://github.com/nodejs/node/commit/ae8bb162b4)] - **fs**: remove redundant `nullCheck` (Livia Medeiros) [#&#8203;48826](https://github.com/nodejs/node/pull/48826) - \[[`48c25b154b`](https://github.com/nodejs/node/commit/48c25b154b)] - **fs**: make `mkdtemp` accept buffers and URL (LiviaMedeiros) [#&#8203;48828](https://github.com/nodejs/node/pull/48828) - \[[`edf46c1b59`](https://github.com/nodejs/node/commit/edf46c1b59)] - **fs**: move fs_use_promises_symbol to per-isolate symbols (Joyee Cheung) [#&#8203;47768](https://github.com/nodejs/node/pull/47768) - \[[`fe41d22afc`](https://github.com/nodejs/node/commit/fe41d22afc)] - **fs**: use kResistStopPropagation (Chemi Atlow) [#&#8203;48521](https://github.com/nodejs/node/pull/48521) - \[[`7c758f60ab`](https://github.com/nodejs/node/commit/7c758f60ab)] - **fs**: fix readdir recursive sync & callback (Ethan Arrowood) [#&#8203;48698](https://github.com/nodejs/node/pull/48698) - \[[`8874b2e11d`](https://github.com/nodejs/node/commit/8874b2e11d)] - **http**: start connections checking interval on listen (Paolo Insogna) [#&#8203;48611](https://github.com/nodejs/node/pull/48611) - \[[`29697229b6`](https://github.com/nodejs/node/commit/29697229b6)] - **https**: fix connection checking interval not clearing on server close (Nitzan Uziely) [#&#8203;48383](https://github.com/nodejs/node/pull/48383) - \[[`981aa7866d`](https://github.com/nodejs/node/commit/981aa7866d)] - **lib**: fix MIME overmatch in data URLs (André Alves) [#&#8203;49104](https://github.com/nodejs/node/pull/49104) - \[[`fe26f8a860`](https://github.com/nodejs/node/commit/fe26f8a860)] - **lib**: merge cjs and esm package json reader caches (Yagiz Nizipli) [#&#8203;48477](https://github.com/nodejs/node/pull/48477) - \[[`17246be158`](https://github.com/nodejs/node/commit/17246be158)] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#&#8203;46391](https://github.com/nodejs/node/pull/46391) - \[[`2e9f7284a1`](https://github.com/nodejs/node/commit/2e9f7284a1)] - **(SEMVER-MINOR)** **lib**: add tracing channel to diagnostics_channel (Stephen Belanger) [#&#8203;44943](https://github.com/nodejs/node/pull/44943) - \[[`04dad9c2f6`](https://github.com/nodejs/node/commit/04dad9c2f6)] - **lib**: fix BroadcastChannel initialization location (Shelley Vohr) [#&#8203;46864](https://github.com/nodejs/node/pull/46864) - \[[`671d2c0067`](https://github.com/nodejs/node/commit/671d2c0067)] - **lib**: fix DOMException property descriptors after being lazy loaded (Filip Skokan) [#&#8203;46799](https://github.com/nodejs/node/pull/46799) - \[[`9a4b57d6d4`](https://github.com/nodejs/node/commit/9a4b57d6d4)] - **lib**: improve esm resolve performance (Yagiz Nizipli) [#&#8203;46652](https://github.com/nodejs/node/pull/46652) - \[[`c6b2f56723`](https://github.com/nodejs/node/commit/c6b2f56723)] - **lib**: lazy-load deps in modules/run_main.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`baa280a4f6`](https://github.com/nodejs/node/commit/baa280a4f6)] - **lib**: lazy-load deps in source_map_cache.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`00bdb72b6e`](https://github.com/nodejs/node/commit/00bdb72b6e)] - **lib**: add getLazy() method to internal/util (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`b77a6b2376`](https://github.com/nodejs/node/commit/b77a6b2376)] - **loader**: use default loader as cascaded loader in the in loader worker (Joyee Cheung) [#&#8203;47620](https://github.com/nodejs/node/pull/47620) - \[[`7778e190b0`](https://github.com/nodejs/node/commit/7778e190b0)] - **meta**: move Trott to TSC regular member (Rich Trott) [#&#8203;50297](https://github.com/nodejs/node/pull/50297) - \[[`5b9575dd30`](https://github.com/nodejs/node/commit/5b9575dd30)] - **meta**: ping TSC for offboarding (Tobias Nießen) [#&#8203;50147](https://github.com/nodejs/node/pull/50147) - \[[`d24c3a0692`](https://github.com/nodejs/node/commit/d24c3a0692)] - **meta**: update website team with new name (Rich Trott) [#&#8203;49883](https://github.com/nodejs/node/pull/49883) - \[[`332d2aedb4`](https://github.com/nodejs/node/commit/332d2aedb4)] - **meta**: fix linter error (Antoine du Hamel) [#&#8203;49755](https://github.com/nodejs/node/pull/49755) - \[[`dc70c444f4`](https://github.com/nodejs/node/commit/dc70c444f4)] - **meta**: add primordials strategic initiative (Benjamin Gruenbaum) [#&#8203;49706](https://github.com/nodejs/node/pull/49706) - \[[`213a9f8a4b`](https://github.com/nodejs/node/commit/213a9f8a4b)] - **meta**: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot\[bot]) [#&#8203;49437](https://github.com/nodejs/node/pull/49437) - \[[`2827779faa`](https://github.com/nodejs/node/commit/2827779faa)] - **meta**: remove modules team from CODEOWNERS (Benjamin Gruenbaum) [#&#8203;49412](https://github.com/nodejs/node/pull/49412) - \[[`5d6daf0d01`](https://github.com/nodejs/node/commit/5d6daf0d01)] - **meta**: add test/reporters to codeowners (Chemi Atlow) [#&#8203;49186](https://github.com/nodejs/node/pull/49186) - \[[`dee7dc5d54`](https://github.com/nodejs/node/commit/dee7dc5d54)] - **meta**: bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot\[bot]) [#&#8203;50000](https://github.com/nodejs/node/pull/50000) - \[[`98294fdeee`](https://github.com/nodejs/node/commit/98294fdeee)] - **meta**: bump actions/cache from 3.3.1 to 3.3.2 (dependabot\[bot]) [#&#8203;50003](https://github.com/nodejs/node/pull/50003) - \[[`79270327d0`](https://github.com/nodejs/node/commit/79270327d0)] - **meta**: bump github/codeql-action from 2.21.5 to 2.21.9 (dependabot\[bot]) [#&#8203;50002](https://github.com/nodejs/node/pull/50002) - \[[`6591a03c89`](https://github.com/nodejs/node/commit/6591a03c89)] - **meta**: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot\[bot]) [#&#8203;49438](https://github.com/nodejs/node/pull/49438) - \[[`3a107f80bc`](https://github.com/nodejs/node/commit/3a107f80bc)] - **meta**: bump actions/checkout from 3.6.0 to 4.1.0 (dependabot\[bot]) [#&#8203;50001](https://github.com/nodejs/node/pull/50001) - \[[`26c5c3c4a2`](https://github.com/nodejs/node/commit/26c5c3c4a2)] - **meta**: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot\[bot]) [#&#8203;49436](https://github.com/nodejs/node/pull/49436) - \[[`0fc0b88d97`](https://github.com/nodejs/node/commit/0fc0b88d97)] - **meta**: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot\[bot]) [#&#8203;49435](https://github.com/nodejs/node/pull/49435) - \[[`dad5785d5d`](https://github.com/nodejs/node/commit/dad5785d5d)] - **meta**: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot\[bot]) [#&#8203;49434](https://github.com/nodejs/node/pull/49434) - \[[`155a275acb`](https://github.com/nodejs/node/commit/155a275acb)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;49264](https://github.com/nodejs/node/pull/49264) - \[[`bd17f0b992`](https://github.com/nodejs/node/commit/bd17f0b992)] - **meta**: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) [#&#8203;49189](https://github.com/nodejs/node/pull/49189) - \[[`f6e68a0238`](https://github.com/nodejs/node/commit/f6e68a0238)] - **meta**: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot\[bot]) [#&#8203;48986](https://github.com/nodejs/node/pull/48986) - \[[`5c352eeecb`](https://github.com/nodejs/node/commit/5c352eeecb)] - **meta**: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot\[bot]) [#&#8203;48985](https://github.com/nodejs/node/pull/48985) - \[[`42ac5a6e5f`](https://github.com/nodejs/node/commit/42ac5a6e5f)] - **meta**: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot\[bot]) [#&#8203;48984](https://github.com/nodejs/node/pull/48984) - \[[`b0d769fe7c`](https://github.com/nodejs/node/commit/b0d769fe7c)] - **meta**: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot\[bot]) [#&#8203;48983](https://github.com/nodejs/node/pull/48983) - \[[`f62b24276c`](https://github.com/nodejs/node/commit/f62b24276c)] - **meta**: add mailmap entry for atlowChemi (Chemi Atlow) [#&#8203;48810](https://github.com/nodejs/node/pull/48810) - \[[`8c55f317a3`](https://github.com/nodejs/node/commit/8c55f317a3)] - **module**: move helpers out of cjs loader (Geoffrey Booth) [#&#8203;49912](https://github.com/nodejs/node/pull/49912) - \[[`14e148ee6c`](https://github.com/nodejs/node/commit/14e148ee6c)] - **module**: ensure successful import returns the same result (Antoine du Hamel) [#&#8203;46662](https://github.com/nodejs/node/pull/46662) - \[[`65dfe85f03`](https://github.com/nodejs/node/commit/65dfe85f03)] - **module**: implement `register` utility (João Lenon) [#&#8203;46826](https://github.com/nodejs/node/pull/46826) - \[[`6f0458d0a6`](https://github.com/nodejs/node/commit/6f0458d0a6)] - **module**: refactor to use `normalizeRequirableId` in the CJS module loader (Darshan Sen) [#&#8203;47896](https://github.com/nodejs/node/pull/47896) - \[[`89ed24b94a`](https://github.com/nodejs/node/commit/89ed24b94a)] - **module**: do less CJS module loader initialization at run time (Joyee Cheung) [#&#8203;47194](https://github.com/nodejs/node/pull/47194) - \[[`939c8764b8`](https://github.com/nodejs/node/commit/939c8764b8)] - **module**: move callbacks and conditions into modules/esm/utils.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`a3b0f4cf55`](https://github.com/nodejs/node/commit/a3b0f4cf55)] - **module**: move modules/cjs/helpers.js to modules/helpers.js (Joyee Cheung) [#&#8203;45849](https://github.com/nodejs/node/pull/45849) - \[[`97579895f2`](https://github.com/nodejs/node/commit/97579895f2)] - **module, esm**: jsdoc for modules files (Geoffrey Booth) [#&#8203;49523](https://github.com/nodejs/node/pull/49523) - \[[`daca87bbef`](https://github.com/nodejs/node/commit/daca87bbef)] - **net**: use asserts in JS Socket Stream to catch races in future (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400) - \[[`03063bd022`](https://github.com/nodejs/node/commit/03063bd022)] - **net**: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) [#&#8203;49400](https://github.com/nodejs/node/pull/49400) - \[[`67fe7d8822`](https://github.com/nodejs/node/commit/67fe7d8822)] - **net**: fix setting of value in 'setDefaultAutoSelectFamilyAttemptTimeout' (Deokjin Kim) [#&#8203;47012](https://github.com/nodejs/node/pull/47012) - \[[`f449b222fd`](https://github.com/nodejs/node/commit/f449b222fd)] - **node-api**: update headers for better wasm support (Toyo Li) [#&#8203;49037](https://github.com/nodejs/node/pull/49037) - \[[`5148f030b8`](https://github.com/nodejs/node/commit/5148f030b8)] - **node-api**: run finalizers directly from GC (Vladimir Morozov) [#&#8203;42651](https://github.com/nodejs/node/pull/42651) - \[[`edef4fa668`](https://github.com/nodejs/node/commit/edef4fa668)] - **node-api**: enable uncaught exceptions policy by default (Chengzhong Wu) [#&#8203;49313](https://github.com/nodejs/node/pull/49313) - \[[`48a1b9336b`](https://github.com/nodejs/node/commit/48a1b9336b)] - **node-api**: fix compiler warning in node_api.h (Michael Graeb) [#&#8203;49103](https://github.com/nodejs/node/pull/49103) - \[[`57966318fe`](https://github.com/nodejs/node/commit/57966318fe)] - **node-api**: avoid macro redefinition (Tobias Nießen) [#&#8203;48879](https://github.com/nodejs/node/pull/48879) - \[[`d4f26f4651`](https://github.com/nodejs/node/commit/d4f26f4651)] - **policy**: fix path to URL conversion (Antoine du Hamel) [#&#8203;49133](https://github.com/nodejs/node/pull/49133) - \[[`a625f22acb`](https://github.com/nodejs/node/commit/a625f22acb)] - **readline**: add paste bracket mode (Jakub Jankiewicz) [#&#8203;47150](https://github.com/nodejs/node/pull/47150) - \[[`bbafd42d75`](https://github.com/nodejs/node/commit/bbafd42d75)] - **repl**: display dynamic import variant in static import error messages (Hemanth HM) [#&#8203;48129](https://github.com/nodejs/node/pull/48129) - \[[`b8634eeb16`](https://github.com/nodejs/node/commit/b8634eeb16)] - **sea**: allow requiring core modules with the "node:" prefix (Darshan Sen) [#&#8203;47779](https://github.com/nodejs/node/pull/47779) - \[[`066d9d4492`](https://github.com/nodejs/node/commit/066d9d4492)] - **src**: remove unused function `GetName()` in node_perf (Jungku Lee) [#&#8203;49244](https://github.com/nodejs/node/pull/49244) - \[[`158c91a38a`](https://github.com/nodejs/node/commit/158c91a38a)] - **src**: use ARES_SUCCESS instead of 0 (Jungku Lee) [#&#8203;49048](https://github.com/nodejs/node/pull/49048) - \[[`8c33731ac6`](https://github.com/nodejs/node/commit/8c33731ac6)] - **src**: add a condition if the argument of `DomainToUnicode` is empty (Jungku Lee) [#&#8203;49097](https://github.com/nodejs/node/pull/49097) - \[[`67dba57d77`](https://github.com/nodejs/node/commit/67dba57d77)] - **src**: use ARES_SUCCESS instead of 0 (Hyunjin Kim) [#&#8203;48834](https://github.com/nodejs/node/pull/48834) - \[[`97d87495c7`](https://github.com/nodejs/node/commit/97d87495c7)] - **src**: remove unnecessary temporary creation (Jason) [#&#8203;48734](https://github.com/nodejs/node/pull/48734) - \[[`f5384c3262`](https://github.com/nodejs/node/commit/f5384c3262)] - **src**: fix nullptr access on realm (Jan Olaf Krems) [#&#8203;48802](https://github.com/nodejs/node/pull/48802) - \[[`358273d77f`](https://github.com/nodejs/node/commit/358273d77f)] - **src**: remove OnScopeLeaveImpl's move assignment overload (Jason) [#&#8203;48732](https://github.com/nodejs/node/pull/48732) - \[[`cc7bf1f641`](https://github.com/nodejs/node/commit/cc7bf1f641)] - **(SEMVER-MINOR)** **src**: add cjs_module_lexer_version base64\_version (Jithil P Ponnan) [#&#8203;45629](https://github.com/nodejs/node/pull/45629) - \[[`0a950c3752`](https://github.com/nodejs/node/commit/0a950c3752)] - **src**: add missing to_ascii method in dns queries (Daniel Lemire) [#&#8203;48354](https://github.com/nodejs/node/pull/48354) - \[[`3552afb904`](https://github.com/nodejs/node/commit/3552afb904)] - **src**: fix duplication of externalized builtin code (Keyhan Vakil) [#&#8203;47079](https://github.com/nodejs/node/pull/47079) - \[[`66e4ba5062`](https://github.com/nodejs/node/commit/66e4ba5062)] - **src**: fix AliasedBuffer memory attribution in heap snapshots (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817) - \[[`946f19b5e3`](https://github.com/nodejs/node/commit/946f19b5e3)] - **src**: move AliasedBuffer implementation to -inl.h (Joyee Cheung) [#&#8203;46817](https://github.com/nodejs/node/pull/46817) - \[[`d35f8702c9`](https://github.com/nodejs/node/commit/d35f8702c9)] - **src**: bootstrap prepare stack trace callback in shadow realm (Chengzhong Wu) [#&#8203;47107](https://github.com/nodejs/node/pull/47107) - \[[`3551a19205`](https://github.com/nodejs/node/commit/3551a19205)] - **src**: make BuiltinLoader threadsafe and non-global (Anna Henningsen) [#&#8203;45942](https://github.com/nodejs/node/pull/45942) - \[[`92311a0801`](https://github.com/nodejs/node/commit/92311a0801)] - **src**: define per-isolate internal bindings registration callback (Chengzhong Wu) [#&#8203;45547](https://github.com/nodejs/node/pull/45547) - \[[`629fc774ca`](https://github.com/nodejs/node/commit/629fc774ca)] - **src**: use an array for faster binding data lookup (Joyee Cheung) [#&#8203;46620](https://github.com/nodejs/node/pull/46620) - \[[`62e2e590fc`](https://github.com/nodejs/node/commit/62e2e590fc)] - **src**: fix TLSWrap lifetime bug in ALPN callback (Ben Noordhuis) [#&#8203;49635](https://github.com/nodejs/node/pull/49635) - \[[`fae60c5841`](https://github.com/nodejs/node/commit/fae60c5841)] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#&#8203;49745](https://github.com/nodejs/node/pull/49745) - \[[`ee4fc7d78c`](https://github.com/nodejs/node/commit/ee4fc7d78c)] - **stream**: use Buffer.from when constructor is a Buffer (Matthew Aitken) [#&#8203;49250](https://github.com/nodejs/node/pull/49250) - \[[`651e4504ce`](https://github.com/nodejs/node/commit/651e4504ce)] - **stream**: add `highWaterMark` for the map operator (Raz Luvaton) [#&#8203;49249](https://github.com/nodejs/node/pull/49249) - \[[`d585d13127`](https://github.com/nodejs/node/commit/d585d13127)] - **stream**: improve WebStreams performance (Raz Luvaton) [#&#8203;49089](https://github.com/nodejs/node/pull/49089) - \[[`7f39f8e805`](https://github.com/nodejs/node/commit/7f39f8e805)] - **test**: replace forEach with for..of in test-http-perf_hooks.js (Niya Shiyas) [#&#8203;49818](https://github.com/nodejs/node/pull/49818) - \[[`2f0ffde842`](https://github.com/nodejs/node/commit/2f0ffde842)] - **test**: replace forEach with for..of in test-net-isipv4.js (Niya Shiyas) [#&#8203;49822](https://github.com/nodejs/node/pull/49822) - \[[`bbd302b5ab`](https://github.com/nodejs/node/commit/bbd302b5ab)] - **test**: replace forEach with for..of in test-http2-server (Niya Shiyas) [#&#8203;49819](https://github.com/nodejs/node/pull/49819) - \[[`128ca3e213`](https://github.com/nodejs/node/commit/128ca3e213)] - **test**: replace forEach with for..of in test-http2-client-destroy.js (Niya Shiyas) [#&#8203;49820](https://github.com/nodejs/node/pull/49820) - \[[`a2ca1a605f`](https://github.com/nodejs/node/commit/a2ca1a605f)] - **test**: print instruction for creating missing snapshot in assertSnapshot (Raz Luvaton) [#&#8203;48914](https://github.com/nodejs/node/pull/48914) - \[[`a0bb30cdca`](https://github.com/nodejs/node/commit/a0bb30cdca)] - **test**: set `test-watch-mode-inspect` as flaky (Yagiz Nizipli) [#&#8203;50259](https://github.com/nodejs/node/pull/50259) - \[[`1047d95698`](https://github.com/nodejs/node/commit/1047d95698)] - **test**: set `test-emit-after-on-destroyed` as flaky (Yagiz Nizipli) [#&#8203;50246](https://github.com/nodejs/node/pull/50246) - \[[`91a3b57962`](https://github.com/nodejs/node/commit/91a3b57962)] - **test**: set inspector async stack test as flaky (Yagiz Nizipli) [#&#8203;50244](https://github.com/nodejs/node/pull/50244) - \[[`b41aa7b82a`](https://github.com/nodejs/node/commit/b41aa7b82a)] - **test**: set test-worker-nearheaplimit-deadlock flaky (StefanStojanovic) [#&#8203;50277](https://github.com/nodejs/node/pull/50277) - \[[`e81b066fb1`](https://github.com/nodejs/node/commit/e81b066fb1)] - **test**: set `test-cli-node-options` as flaky (Yagiz Nizipli) [#&#8203;50296](https://github.com/nodejs/node/pull/50296) - \[[`0c05c25c4e`](https://github.com/nodejs/node/commit/0c05c25c4e)] - **test**: set crypto-timing test as flaky (Yagiz Nizipli) [#&#8203;50232](https://github.com/nodejs/node/pull/50232) - \[[`83e339dbba`](https://github.com/nodejs/node/commit/83e339dbba)] - **test**: set `test-structuredclone-*` as flaky (Yagiz Nizipli) [#&#8203;50261](https://github.com/nodejs/node/pull/50261) - \[[`866a399488`](https://github.com/nodejs/node/commit/866a399488)] - **test**: set inspector async hook test as flaky (Yagiz Nizipli) [#&#8203;50252](https://github.com/nodejs/node/pull/50252) - \[[`cb0bd2116b`](https://github.com/nodejs/node/commit/cb0bd2116b)] - **test**: set parallel http server test as flaky (Yagiz Nizipli) [#&#8203;50227](https://github.com/nodejs/node/pull/50227) - \[[`54f3d877ae`](https://github.com/nodejs/node/commit/54f3d877ae)] - **test**: set test-worker-nearheaplimit-deadlock flaky (Stefan Stojanovic) [#&#8203;50238](https://github.com/nodejs/node/pull/50238) - \[[`5953a255b6`](https://github.com/nodejs/node/commit/5953a255b6)] - **test**: set `test-runner-watch-mode` as flaky (Yagiz Nizipli) [#&#8203;50221](https://github.com/nodejs/node/pull/50221) - \[[`5820d7e14d`](https://github.com/nodejs/node/commit/5820d7e14d)] - **test**: deflake test-runner-output (Moshe Atlow) [#&#8203;49878](https://github.com/nodejs/node/pull/49878) - \[[`1d75da43f2`](https://github.com/nodejs/node/commit/1d75da43f2)] - ***Revert*** "**test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky" (Luigi Pinca) [#&#8203;49708](https://github.com/nodejs/node/pull/49708) - \[[`5df23520e7`](https://github.com/nodejs/node/commit/5df23520e7)] - **test**: mark test-runner-watch-mode as flaky (Joyee Cheung) [#&#8203;49627](https://github.com/nodejs/node/pull/49627) - \[[`7e714e6497`](https://github.com/nodejs/node/commit/7e714e6497)] - **test**: remove --no-warnings flag in test_runner fixtures (Raz Luvaton) [#&#8203;48989](https://github.com/nodejs/node/pull/48989) - \[[`0fea550641`](https://github.com/nodejs/node/commit/0fea550641)] - **test**: reorder test files fixtures for better understanding (Raz Luvaton) [#&#8203;48787](https://github.com/nodejs/node/pull/48787) - \[[`c5857bde42`](https://github.com/nodejs/node/commit/c5857bde42)] - **test**: avoid copying test source files (Chengzhong Wu) [#&#8203;49515](https://github.com/nodejs/node/pull/49515) - \[[`67cb6f9a34`](https://github.com/nodejs/node/commit/67cb6f9a34)] - **test**: reduce length in crypto keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221) - \[[`958e114655`](https://github.com/nodejs/node/commit/958e114655)] - **test**: split JWK async elliptic curve keygen tests (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221) - \[[`344592dc00`](https://github.com/nodejs/node/commit/344592dc00)] - **test**: split test-crypto-keygen.js (Joyee Cheung) [#&#8203;49221](https://github.com/nodejs/node/pull/49221) - \[[`5f1a1aeeed`](https://github.com/nodejs/node/commit/5f1a1aeeed)] - **test**: rename test-crypto-modp1-error (Tobias Nießen) [#&#8203;49348](https://github.com/nodejs/node/pull/49348) - \[[`107015b45d`](https://github.com/nodejs/node/commit/107015b45d)] - **test**: migrate message source map tests from Python to JS (Yiyun Lei) [#&#8203;49238](https://github.com/nodejs/node/pull/49238) - \[[`ddebd29515`](https://github.com/nodejs/node/commit/ddebd29515)] - **test**: fix compiler warning in NodeCryptoEnv (Tobias Nießen) [#&#8203;49206](https://github.com/nodejs/node/pull/49206) - \[[`0261c5de56`](https://github.com/nodejs/node/commit/0261c5de56)] - **test**: make test-perf-hooks more robust and work with workers (Joyee Cheung) [#&#8203;49197](https://github.com/nodejs/node/pull/49197) - \[[`e18de802c8`](https://github.com/nodejs/node/commit/e18de802c8)] - **test**: use gcUntil() in test-v8-serialize-leak (Joyee Cheung) [#&#8203;49168](https://github.com/nodejs/node/pull/49168) - \[[`52d5dd8dba`](https://github.com/nodejs/node/commit/52d5dd8dba)] - **test**: add expectSyncExitWithoutError() and expectSyncExit() utils (Joyee Cheung) [#&#8203;49020](https://github.com/nodejs/node/pull/49020) - \[[`67925bb914`](https://github.com/nodejs/node/commit/67925bb914)] - **test**: add Symbol.dispose support to mock timers (Benjamin Gruenbaum) [#&#8203;48549](https://github.com/nodejs/node/pull/48549) - \[[`00c08539b6`](https://github.com/nodejs/node/commit/00c08539b6)] - **test**: fix edge snapshot stack traces (Geoffrey Booth) [#&#8203;49659](https://github.com/nodejs/node/pull/49659) - \[[`48f6d9a975`](https://github.com/nodejs/node/commit/48f6d9a975)] - **test**: refactor `test-node-output-errors` (Antoine du Hamel) [#&#8203;48992](https://github.com/nodejs/node/pull/48992) - \[[`c1a8ae38c0`](https://github.com/nodejs/node/commit/c1a8ae38c0)] - **test**: deflake `test-loaders-workers-spawned` (Antoine du Hamel) [#&#8203;50251](https://github.com/nodejs/node/pull/50251) - \[[`d5cc5d7956`](https://github.com/nodejs/node/commit/d5cc5d7956)] - **test**: deflake `test-esm-loader-resolve-type` (Antoine du Hamel) [#&#8203;50273](https://github.com/nodejs/node/pull/50273) - \[[`866d646b0e`](https://github.com/nodejs/node/commit/866d646b0e)] - **test**: increase coverage of `Module.register` and `initialize` hook (Antoine du Hamel) [#&#8203;49532](https://github.com/nodejs/node/pull/49532) - \[[`65201ab36b`](https://github.com/nodejs/node/commit/65201ab36b)] - **test**: isolate `globalPreload` tests (Geoffrey Booth) [#&#8203;49545](https://github.com/nodejs/node/pull/49545) - \[[`65058d9a35`](https://github.com/nodejs/node/commit/65058d9a35)] - **test**: add `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49040](https://github.com/nodejs/node/pull/49040) - \[[`e1c6f46926`](https://github.com/nodejs/node/commit/e1c6f46926)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49248](https://github.com/nodejs/node/pull/49248) - \[[`e8d475ffc4`](https://github.com/nodejs/node/commit/e8d475ffc4)] - **test**: refactor `test-esm-loader-hooks` for easier debugging (Antoine du Hamel) [#&#8203;49131](https://github.com/nodejs/node/pull/49131) - \[[`26f01669fc`](https://github.com/nodejs/node/commit/26f01669fc)] - **test**: reduce flakiness of `test-esm-loader-hooks` (Antoine du Hamel) [#&#8203;49105](https://github.com/nodejs/node/pull/49105) - \[[`d5a1153970`](https://github.com/nodejs/node/commit/d5a1153970)] - **test**: use `fixtures.fileURL` when appropriate (Antoine du Hamel) [#&#8203;48990](https://github.com/nodejs/node/pull/48990) - \[[`3424793013`](https://github.com/nodejs/node/commit/3424793013)] - **test**: fix snapshot tests when cwd contains spaces or backslashes (Antoine du Hamel) [#&#8203;48959](https://github.com/nodejs/node/pull/48959) - \[[`a9347a4635`](https://github.com/nodejs/node/commit/a9347a4635)] - **test**: order `common.mjs` in ASCII order (Antoine du Hamel) [#&#8203;48960](https://github.com/nodejs/node/pull/48960) - \[[`adb9280d8e`](https://github.com/nodejs/node/commit/adb9280d8e)] - **test**: fix some assumptions in tests (Antoine du Hamel) [#&#8203;48958](https://github.com/nodejs/node/pull/48958) - \[[`f02637e805`](https://github.com/nodejs/node/commit/f02637e805)] - **test**: fix `es-module/test-esm-initialization` (Antoine du Hamel) [#&#8203;48880](https://github.com/nodejs/node/pull/48880) - \[[`8c918e5e59`](https://github.com/nodejs/node/commit/8c918e5e59)] - **test**: relax version check with shared OpenSSL (Luigi Pinca) [#&#8203;50505](https://github.com/nodejs/node/pull/50505) - \[[`c6caf13ad5`](https://github.com/nodejs/node/commit/c6caf13ad5)] - **test**: fix crypto-dh error message for OpenSSL 3.x (Kerem Kat) [#&#8203;50395](https://github.com/nodejs/node/pull/50395) - \[[`65b41ebd1f`](https://github.com/nodejs/node/commit/65b41ebd1f)] - **test**: split test-crypto-dh to avoid timeout on slow machines in the CI (Joyee Cheung) [#&#8203;49492](https://github.com/nodejs/node/pull/49492) - \[[`7606921e1d`](https://github.com/nodejs/node/commit/7606921e1d)] - **test**: fix testsuite against zlib version 1.3 (Dominique Leuenberger) [#&#8203;50364](https://github.com/nodejs/node/pull/50364) - \[[`4f78233254`](https://github.com/nodejs/node/commit/4f78233254)] - **test**: verify tracePromise does not do runStores (Stephen Belanger) [#&#8203;47349](https://github.com/nodejs/node/pull/47349) - \[[`cb6ef74cf2`](https://github.com/nodejs/node/commit/cb6ef74cf2)] - **test**: fix IPv6 checks on IBM i (Abdirahim Musse) [#&#8203;46546](https://github.com/nodejs/node/pull/46546) - \[[`bcf97ab1b2`](https://github.com/nodejs/node/commit/bcf97ab1b2)] - **test**: fix flaky test-runner-exit-code.js (Colin Ihrig) [#&#8203;46138](https://github.com/nodejs/node/pull/46138) - \[[`f0e8ff90eb`](https://github.com/nodejs/node/commit/f0e8ff90eb)] - **test**: use an array for WPT gloablThis initialization scripts (Joyee Cheung) [#&#8203;46425](https://github.com/nodejs/node/pull/46425) - \[[`0e0dd1fe90`](https://github.com/nodejs/node/commit/0e0dd1fe90)] - **test**: adapt tests for OpenSSL 3.1 (OttoHollmann) [#&#8203;47859](https://github.com/nodejs/node/pull/47859) - \[[`e3ea906988`](https://github.com/nodejs/node/commit/e3ea906988)] - **test**: disambiguate AIX and IBM i (Richard Lau) [#&#8203;48056](https://github.com/nodejs/node/pull/48056) - \[[`088460d80c`](https://github.com/nodejs/node/commit/088460d80c)] - **test**: add os setPriority, getPriority test coverage (Wael) [#&#8203;38771](https://github.com/nodejs/node/pull/38771) - \[[`b011a498c5`](https://github.com/nodejs/node/commit/b011a498c5)] - **test,benchmark**: use `tmpdir.fileURL()` (Livia Medeiros) [#&#8203;49138](https://github.com/nodejs/node/pull/49138) - \[[`54168b7364`](https://github.com/nodejs/node/commit/54168b7364)] - **test_runner**: add test location for FileTests (Colin Ihrig) [#&#8203;49999](https://github.com/nodejs/node/pull/49999) - \[[`1d9c37161d`](https://github.com/nodejs/node/commit/1d9c37161d)] - **test_runner**: replace spurious if with else (Colin Ihrig) [#&#8203;49943](https://github.com/nodejs/node/pull/49943) - \[[`b283ae4238`](https://github.com/nodejs/node/commit/b283ae4238)] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#&#8203;49753](https://github.com/nodejs/node/pull/49753) - \[[`103c4a088a`](https://github.com/nodejs/node/commit/103c4a088a)] - **test_runner**: catch reporter errors (Moshe Atlow) [#&#8203;49646](https://github.com/nodejs/node/pull/49646) - \[[`e459598cf2`](https://github.com/nodejs/node/commit/e459598cf2)] - **test_runner**: fix test runner watch mode when no positional arguments (Moshe Atlow) [#&#8203;49578](https://github.com/nodejs/node/pull/49578) - \[[`059b1945d8`](https://github.com/nodejs/node/commit/059b1945d8)] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#&#8203;49614](https://github.com/nodejs/node/pull/49614) - \[[`76a35632d3`](https://github.com/nodejs/node/commit/76a35632d3)] - **test_runner**: add jsdocs to mock.js (Caio Borghi) [#&#8203;49555](https://github.com/nodejs/node/pull/49555) - \[[`ba57c24fde`](https://github.com/nodejs/node/commit/ba57c24fde)] - **test_runner**: fix invalid timer call (Erick Wendel) [#&#8203;49477](https://github.com/nodejs/node/pull/49477) - \[[`5949ae016f`](https://github.com/nodejs/node/commit/5949ae016f)] - **test_runner**: add jsdocs to MockTimers (Erick Wendel) [#&#8203;49476](https://github.com/nodejs/node/pull/49476) - \[[`429846f258`](https://github.com/nodejs/node/commit/429846f258)] - **test_runner**: fix typescript coverage (Moshe Atlow) [#&#8203;49406](https://github.com/nodejs/node/pull/49406) - \[[`760c98280e`](https://github.com/nodejs/node/commit/760c98280e)] - **test_runner**: preserve original property descriptor (Erick Wendel) [#&#8203;49433](https://github.com/nodejs/node/pull/49433) - \[[`95cc98e14b`](https://github.com/nodejs/node/commit/95cc98e14b)] - **test_runner**: expose spec reporter as newable function (Chemi Atlow) [#&#8203;49184](https://github.com/nodejs/node/pull/49184) - \[[`d83964031b`](https://github.com/nodejs/node/commit/d83964031b)] - **test_runner**: reland run global after() hook earlier (Colin Ihrig) [#&#8203;49116](https://github.com/nodejs/node/pull/49116) - \[[`d61a505546`](https://github.com/nodejs/node/commit/d61a505546)] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#&#8203;48975](https://github.com/nodejs/node/pull/48975) - \[[`00c70e12f7`](https://github.com/nodejs/node/commit/00c70e12f7)] - **test_runner**: dont set exit code on todo tests (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929) - \[[`71f7ed728d`](https://github.com/nodejs/node/commit/71f7ed728d)] - **test_runner**: fix global after not failing the tests (Raz Luvaton) [#&#8203;48913](https://github.com/nodejs/node/pull/48913) - \[[`11fbd924ed`](https://github.com/nodejs/node/commit/11fbd924ed)] - **test_runner**: add support for setImmediate (Erick Wendel) [#&#8203;49397](https://github.com/nodejs/node/pull/49397) - \[[`fb64d415be`](https://github.com/nodejs/node/commit/fb64d415be)] - **test_runner**: fix timeout in \*Each hook failing further tests (Raz Luvaton) [#&#8203;48925](https://github.com/nodejs/node/pull/48925) - \[[`67d7faddb2`](https://github.com/nodejs/node/commit/67d7faddb2)] - **test_runner**: cleanup test timeout abort listener (Raz Luvaton) [#&#8203;48915](https://github.com/nodejs/node/pull/48915) - \[[`d217435cd3`](https://github.com/nodejs/node/commit/d217435cd3)] - **test_runner**: fix todo and only in spec reporter (Moshe Atlow) [#&#8203;48929](https://github.com/nodejs/node/pull/48929) - \[[`9f122be15a`](https://github.com/nodejs/node/commit/9f122be15a)] - **test_runner**: unwrap error message in TAP reporter (Colin Ihrig) [#&#8203;48942](https://github.com/nodejs/node/pull/48942) - \[[`3a74316624`](https://github.com/nodejs/node/commit/3a74316624)] - **test_runner**: add `__proto__` null (Raz Luvaton) [#&#8203;48663](https://github.com/nodejs/node/pull/48663) - \[[`66ea9bdb4d`](https://github.com/nodejs/node/commit/66ea9bdb4d)] - **test_runner**: fix global before not called when no global test exists (Raz Luvaton) [#&#8203;48877](https://github.com/nodejs/node/pull/48877) - \[[`0bd9704018`](https://github.com/nodejs/node/commit/0bd9704018)] - **test_runner**: use os.availableParallelism() (Colin Ihrig) [#&#8203;45969](https://github.com/nodejs/node/pull/45969) - \[[`b55eb2a8d1`](https://github.com/nodejs/node/commit/b55eb2a8d1)] - **(SEMVER-MINOR)** **test_runner**: add shards support (Raz Luvaton) [#&#8203;48639](https://github.com/nodejs/node/pull/48639) - \[[`c2575c8db0`](https://github.com/nodejs/node/commit/c2575c8db0)] - **test_runner**: fix test_runner `test:fail` event type (Ethan Arrowood) [#&#8203;48854](https://github.com/nodejs/node/pull/48854) - \[[`6b186d41cd`](https://github.com/nodejs/node/commit/6b186d41cd)] - **test_runner**: fix async callback in describe not awaited (Raz Luvaton) [#&#8203;48856](https://github.com/nodejs/node/pull/48856) - \[[`2d4511baab`](https://github.com/nodejs/node/commit/2d4511baab)] - **test_runner**: call abort on test finish (Raz Luvaton) [#&#8203;48827](https://github.com/nodejs/node/pull/48827) - \[[`05e7f28b40`](https://github.com/nodejs/node/commit/05e7f28b40)] - **(SEMVER-MINOR)** **test_runner**: add initial draft for fakeTimers (Erick Wendel) [#&#8203;47775](https://github.com/nodejs/node/pull/47775) - \[[`428301ad27`](https://github.com/nodejs/node/commit/428301ad27)] - **(SEMVER-MINOR)** **test_runner, cli**: add --test-concurrency flag (Colin Ihrig) [#&#8203;49996](https://github.com/nodejs/node/pull/49996) - \[[`4b2e258c76`](https://github.com/nodejs/node/commit/4b2e258c76)] - **test_runner,test**: fix flaky test-runner-cli-concurrency.js (Colin Ihrig) [#&#8203;50108](https://github.com/nodejs/node/pull/50108) - \[[`b5d16cd8f0`](https://github.com/nodejs/node/commit/b5d16cd8f0)] - **(SEMVER-MINOR)** **tls**: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) [#&#8203;45190](https://github.com/nodejs/node/pull/45190) - \[[`a1c94037ab`](https://github.com/nodejs/node/commit/a1c94037ab)] - **tools**: fix --v8-non-optimized-debug for v18.x (Joyee Cheung) [#&#8203;50612](https://github.com/nodejs/node/pull/50612) - \[[`3b65c61f5c`](https://github.com/nodejs/node/commit/3b65c61f5c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;50083](https://github.com/nodejs/node/pull/50083) - \[[`07941a3609`](https://github.com/nodejs/node/commit/07941a3609)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49983](https://github.com/nodejs/node/pull/49983) - \[[`ad6e7a6270`](https://github.com/nodejs/node/commit/ad6e7a6270)] - **tools**: update lint-md-dependencies to rollup@3.29.2 (Node.js GitHub Bot) [#&#8203;49679](https://github.com/nodejs/node/pull/49679) - \[[`3511b13c94`](https://github.com/nodejs/node/commit/3511b13c94)] - **tools**: update lint-md-dependencies to rollup@3.29.0 unified@11.0.3 (Node.js GitHub Bot) [#&#8203;49584](https://github.com/nodejs/node/pull/49584) - \[[`b6522a2b6b`](https://github.com/nodejs/node/commit/b6522a2b6b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49342](https://github.com/nodejs/node/pull/49342) - \[[`01b2588acf`](https://github.com/nodejs/node/commit/01b2588acf)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49253](https://github.com/nodejs/node/pull/49253) - \[[`0cb42ccb5c`](https://github.com/nodejs/node/commit/0cb42ccb5c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;49122](https://github.com/nodejs/node/pull/49122) - \[[`caa7ecca30`](https://github.com/nodejs/node/commit/caa7ecca30)] - **tools**: update lint-md-dependencies to rollup@3.27.2 (Node.js GitHub Bot) [#&#8203;49035](https://github.com/nodejs/node/pull/49035) - \[[`42846a02b3`](https://github.com/nodejs/node/commit/42846a02b3)] - **tools**: limit the number of auto start CIs (Antoine du Hamel) [#&#8203;49067](https://github.com/nodejs/node/pull/49067) - \[[`9cc3b2061f`](https://github.com/nodejs/node/commit/9cc3b2061f)] - **tools**: update lint-md-dependencies to rollup@3.27.0 (Node.js GitHub Bot) [#&#8203;48965](https://github.com/nodejs/node/pull/48965) - \[[`1cbb186039`](https://github.com/nodejs/node/commit/1cbb186039)] - **tools**: update lint-md-dependencies to rollup@3.26.3 (Node.js GitHub Bot) [#&#8203;48888](https://github.com/nodejs/node/pull/48888) - \[[`f7d6e9ba43`](https://github.com/nodejs/node/commit/f7d6e9ba43)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;25](https://github.com/25).0.3 (Node.js GitHub Bot) [#&#8203;48791](https://github.com/nodejs/node/pull/48791) - \[[`a98addb626`](https://github.com/nodejs/node/commit/a98addb626)] - **tools**: skip ruff on tools/node_modules (Moshe Atlow) [#&#8203;49838](https://github.com/nodejs/node/pull/49838) - \[[`6cf8dd95d1`](https://github.com/nodejs/node/commit/6cf8dd95d1)] - **tools**: update eslint to 8.51.0 (Node.js GitHub Bot) [#&#8203;50084](https://github.com/nodejs/node/pull/50084) - \[[`b8d2a29ff5`](https://github.com/nodejs/node/commit/b8d2a29ff5)] - **tools**: update eslint to 8.50.0 (Node.js GitHub Bot) [#&#8203;49989](https://github.com/nodejs/node/pull/49989) - \[[`1c1cbf06f0`](https://github.com/nodejs/node/commit/1c1cbf06f0)] - **tools**: update eslint to 8.49.0 (Node.js GitHub Bot) [#&#8203;49586](https://github.com/nodejs/node/pull/49586) - \[[`92d21864c5`](https://github.com/nodejs/node/commit/92d21864c5)] - **tools**: update eslint to 8.48.0 (Node.js GitHub Bot) [#&#8203;49343](https://github.com/nodejs/node/pull/49343) - \[[`0940de36ee`](https://github.com/nodejs/node/commit/0940de36ee)] - **tools**: update eslint to 8.47.0 (Node.js GitHub Bot) [#&#8203;49124](https://github.com/nodejs/node/pull/49124) - \[[`4880a05fa2`](https://github.com/nodejs/node/commit/4880a05fa2)] - **tools**: update eslint to 8.46.0 (Node.js GitHub Bot) [#&#8203;48966](https://github.com/nodejs/node/pull/48966) - \[[`e9632454cd`](https://github.com/nodejs/node/commit/e9632454cd)] - **tools**: update eslint to 8.45.0 (Node.js GitHub Bot) [#&#8203;48793](https://github.com/nodejs/node/pull/48793) - \[[`ae49f319c4`](https://github.com/nodejs/node/commit/ae49f319c4)] - **tools**: drop support for osx notarization with gon (Ulises Gascón) [#&#8203;50291](https://github.com/nodejs/node/pull/50291) - \[[`014b65e9b7`](https://github.com/nodejs/node/commit/014b65e9b7)] - **tools**: use osx notarytool for future releases (Ulises Gascon) [#&#8203;48701](https://github.com/nodejs/node/pull/48701) - \[[`71c386a25c`](https://github.com/nodejs/node/commit/71c386a25c)] - **typings**: update JSDoc for `cwd` in `child_process` (LiviaMedeiros) [#&#8203;49029](https://github.com/nodejs/node/pull/49029) - \[[`4d70a2c344`](https://github.com/nodejs/node/commit/4d70a2c344)] - **typings**: sync JSDoc with the actual implementation (Hyunjin Kim) [#&#8203;48853](https://github.com/nodejs/node/pull/48853) - \[[`945609487c`](https://github.com/nodejs/node/commit/945609487c)] - **typings**: fix missing property in `ExportedHooks` (Antoine du Hamel) [#&#8203;49567](https://github.com/nodejs/node/pull/49567) - \[[`2ef80f12b9`](https://github.com/nodejs/node/commit/2ef80f12b9)] - **typings**: fix JSDoc in ESM loader modules (Antoine du Hamel) [#&#8203;48424](https://github.com/nodejs/node/pull/48424) - \[[`7fc15b6d42`](https://github.com/nodejs/node/commit/7fc15b6d42)] - **url**: fix `isURL` detection by checking `path` (Zhuo Zhang) [#&#8203;48928](https://github.com/nodejs/node/pull/48928) - \[[`916a63b124`](https://github.com/nodejs/node/commit/916a63b124)] - **url**: improve `isURL` detection (Yagiz Nizipli) [#&#8203;47886](https://github.com/nodejs/node/pull/47886) - \[[`ac27431372`](https://github.com/nodejs/node/commit/ac27431372)] - **url**: validate `pathToFileURL(path)` argument as string (LiviaMedeiros) [#&#8203;49161](https://github.com/nodejs/node/pull/49161) - \[[`f256b160bf`](https://github.com/nodejs/node/commit/f256b160bf)] - **url**: handle unicode hostname if empty (Yagiz Nizipli) [#&#8203;49396](https://github.com/nodejs/node/pull/49396) - \[[`2441415c68`](https://github.com/nodejs/node/commit/2441415c68)] - **url**: reduce `pathToFileURL` cpp calls (Yagiz Nizipli) [#&#8203;48709](https://github.com/nodejs/node/pull/48709) - \[[`227e749888`](https://github.com/nodejs/node/commit/227e749888)] - **url**: validate URL constructor arg length (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513) - \[[`bf4ee17d18`](https://github.com/nodejs/node/commit/bf4ee17d18)] - **url**: validate argument length in canParse (Matthew Aitken) [#&#8203;47513](https://github.com/nodejs/node/pull/47513) - \[[`a67fa2a107`](https://github.com/nodejs/node/commit/a67fa2a107)] - **util**: add `getCwdSafe` internal util fn (João Lenon) [#&#8203;48434](https://github.com/nodejs/node/pull/48434) - \[[`e96f7ef881`](https://github.com/nodejs/node/commit/e96f7ef881)] - **(SEMVER-MINOR)** **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#&#8203;50141](https://github.com/nodejs/node/pull/50141) - \[[`525de686a7`](https://github.com/nodejs/node/commit/525de686a7)] - **(SEMVER-MINOR)** **wasi**: updates required for latest uvwasi version (Michael Dawson) [#&#8203;49908](https://github.com/nodejs/node/pull/49908) - \[[`f27d505805`](https://github.com/nodejs/node/commit/f27d505805)] - **watch**: decrease debounce rate (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926) - \[[`83a6d20d70`](https://github.com/nodejs/node/commit/83a6d20d70)] - **watch**: use debounce instead of throttle (Moshe Atlow) [#&#8203;48926](https://github.com/nodejs/node/pull/48926) - \[[`879b958184`](https://github.com/nodejs/node/commit/879b958184)] - **worker**: protect against user mutating well-known prototypes (Antoine du Hamel) [#&#8203;49270](https://github.com/nodejs/node/pull/49270) ### [`v18.18.2`](https://github.com/nodejs/node/releases/tag/v18.18.2): 2023-10-13, Version 18.18.2 &#x27;Hydrogen&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v18.18.1...v18.18.2) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - [CVE-2023-44487](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487): `nghttp2` Security Release (High) - [CVE-2023-45143](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-45143): `undici` Security Release (High) - [CVE-2023-38552](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38552): Integrity checks according to policies can be circumvented (Medium) - [CVE-2023-39333](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39333): Code injection via WebAssembly export names (Low) More detailed information on each of the vulnerabilities can be found in [October 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/october-2023-security-releases/) blog post. ##### Commits - \[[`55028468db`](https://github.com/nodejs/node/commit/55028468db)] - **deps**: update undici to v5.26.3 (Matteo Collina) [#&#8203;50153](https://github.com/nodejs/node/pull/50153) - \[[`a792bbc515`](https://github.com/nodejs/node/commit/a792bbc515)] - **deps**: update nghttp2 to 1.57.0 (James M Snell) [#&#8203;50121](https://github.com/nodejs/node/pull/50121) - \[[`f6444defa4`](https://github.com/nodejs/node/commit/f6444defa4)] - **deps**: update nghttp2 to 1.56.0 (Node.js GitHub Bot) [#&#8203;49582](https://github.com/nodejs/node/pull/49582) - \[[`7e9b08dfd4`](https://github.com/nodejs/node/commit/7e9b08dfd4)] - **deps**: update nghttp2 to 1.55.1 (Node.js GitHub Bot) [#&#8203;48790](https://github.com/nodejs/node/pull/48790) - \[[`85672c153f`](https://github.com/nodejs/node/commit/85672c153f)] - **deps**: update nghttp2 to 1.55.0 (Node.js GitHub Bot) [#&#8203;48746](https://github.com/nodejs/node/pull/48746) - \[[`300a902422`](https://github.com/nodejs/node/commit/300a902422)] - **deps**: update nghttp2 to 1.53.0 (Node.js GitHub Bot) [#&#8203;47997](https://github.com/nodejs/node/pull/47997) - \[[`7d83ed0bf6`](https://github.com/nodejs/node/commit/7d83ed0bf6)] - ***Revert*** "**deps**: update nghttp2 to 1.55.0" (Richard Lau) [#&#8203;50151](https://github.com/nodejs/node/pull/50151) - \[[`1193ca5fdb`](https://github.com/nodejs/node/commit/1193ca5fdb)] - **lib**: let deps require `node` prefixed modules (Matthew Aitken) [#&#8203;50047](https://github.com/nodejs/node/pull/50047) - \[[`eaf9083cf1`](https://github.com/nodejs/node/commit/eaf9083cf1)] - **module**: fix code injection through export names (Tobias Nießen) [nodejs-private/node-private#461](https://github.com/nodejs-private/node-private/pull/461) - \[[`1c538938cc`](https://github.com/nodejs/node/commit/1c538938cc)] - **policy**: use tamper-proof integrity check function (Tobias Nießen) [nodejs-private/node-private#462](https://github.com/nodejs-private/node-private/pull/462) ### [`v18.18.1`](https://github.com/nodejs/node/releases/tag/v18.18.1): 2023-10-10, Version 18.18.1 &#x27;Hydrogen&#x27; (LTS), @&#8203;richardlau [Compare Source](https://github.com/nodejs/node/compare/v18.18.0...v18.18.1) ##### Notable Changes This release addresses some regressions that appeared in Node.js 18.18.0: - (Windows) FS can not handle certain characters in file name [#&#8203;48673](https://github.com/nodejs/node/issues/48673) - 18 and 20 node images give error - Text file busy (after re-build images) [nodejs/docker-node#1968](https://github.com/nodejs/docker-node/issues/1968) - libuv update in 18.18.0 breaks webpack's thread-loader [#&#8203;49911](https://github.com/nodejs/node/issues/49911) The libuv 1.45.0 and 1.46.0 updates that were released in Node.js 18.18.0 have been temporarily reverted. ##### Commits - \[[`3e3a75cc46`](https://github.com/nodejs/node/commit/3e3a75cc46)] - ***Revert*** "**build**: sync libuv header change" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036) - \[[`14ece2c479`](https://github.com/nodejs/node/commit/14ece2c479)] - ***Revert*** "**deps**: upgrade to libuv 1.45.0" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036) - \[[`022352acbe`](https://github.com/nodejs/node/commit/022352acbe)] - ***Revert*** "**deps**: upgrade to libuv 1.46.0" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036) - \[[`d9f138189c`](https://github.com/nodejs/node/commit/d9f138189c)] - ***Revert*** "**deps**: add missing thread-common.c in uv.gyp" (Richard Lau) [#&#8203;50036](https://github.com/nodejs/node/pull/50036) - \[[`7a3e1ffbb8`](https://github.com/nodejs/node/commit/7a3e1ffbb8)] - **fs**: make sure to write entire buffer (Robert Nagy) [#&#8203;49211](https://github.com/nodejs/node/pull/49211) - \[[`04cba95a67`](https://github.com/nodejs/node/commit/04cba95a67)] - **test**: add `tmpdir.resolve()` (Livia Medeiros) [#&#8203;49079](https://github.com/nodejs/node/pull/49079) ### [`v18.18.0`](https://github.com/nodejs/node/releases/tag/v18.18.0): 2023-09-18, Version 18.18.0 &#x27;Hydrogen&#x27; (LTS), @&#8203;ruyadorno [Compare Source](https://github.com/nodejs/node/compare/v18.17.1...v18.18.0) ##### Notable Changes - \[[`7dc731d4bf`](https://github.com/nodejs/node/commit/7dc731d4bf)] - **build**: sync libuv header change (Jiawen Geng) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`490fc004b0`](https://github.com/nodejs/node/commit/490fc004b0)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341) - \[[`dd8cd97d4d`](https://github.com/nodejs/node/commit/dd8cd97d4d)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416) - \[[`ea23870bec`](https://github.com/nodejs/node/commit/ea23870bec)] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`88855e0b1b`](https://github.com/nodejs/node/commit/88855e0b1b)] - **deps**: upgrade to libuv 1.46.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`fb2b80fca0`](https://github.com/nodejs/node/commit/fb2b80fca0)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`249879e46c`](https://github.com/nodejs/node/commit/249879e46c)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757) - \[[`e8dc7bde6a`](https://github.com/nodejs/node/commit/e8dc7bde6a)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527) - \[[`a30f2fbcc1`](https://github.com/nodejs/node/commit/a30f2fbcc1)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449) - \[[`c39b7c240e`](https://github.com/nodejs/node/commit/c39b7c240e)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#&#8203;43942](https://github.com/nodejs/node/pull/43942) - \[[`a68a67f54d`](https://github.com/nodejs/node/commit/a68a67f54d)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596) - \[[`3a8586bee2`](https://github.com/nodejs/node/commit/3a8586bee2)] - **fs, stream**: initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) [#&#8203;48518](https://github.com/nodejs/node/pull/48518) - \[[`863bdb785d`](https://github.com/nodejs/node/commit/863bdb785d)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777) - \[[`c59ae86ba0`](https://github.com/nodejs/node/commit/c59ae86ba0)] - **(SEMVER-MINOR)** **url**: add value argument to has and delete methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885) ##### Commits - \[[`d1f43317ea`](https://github.com/nodejs/node/commit/d1f43317ea)] - **benchmark**: add bar.R (Rafael Gonzaga) [#&#8203;47729](https://github.com/nodejs/node/pull/47729) - \[[`4f74be3c92`](https://github.com/nodejs/node/commit/4f74be3c92)] - **benchmark**: refactor crypto oneshot (Filip Skokan) [#&#8203;48267](https://github.com/nodejs/node/pull/48267) - \[[`fe9da9df0f`](https://github.com/nodejs/node/commit/fe9da9df0f)] - **benchmark**: add crypto.create\*Key (Filip Skokan) [#&#8203;48284](https://github.com/nodejs/node/pull/48284) - \[[`9cb18b3e9d`](https://github.com/nodejs/node/commit/9cb18b3e9d)] - **build**: do not pass target toolchain flags to host toolchain (Ivan Trubach) [#&#8203;48597](https://github.com/nodejs/node/pull/48597) - \[[`7dc731d4bf`](https://github.com/nodejs/node/commit/7dc731d4bf)] - **build**: sync libuv header change (Jiawen Geng) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`211a4f88a9`](https://github.com/nodejs/node/commit/211a4f88a9)] - **build**: update action to close stale PRs (Michael Dawson) [#&#8203;48196](https://github.com/nodejs/node/pull/48196) - \[[`cc33a1864b`](https://github.com/nodejs/node/commit/cc33a1864b)] - **child_process**: harden against prototype pollution (Livia Medeiros) [#&#8203;48726](https://github.com/nodejs/node/pull/48726) - \[[`b5df084e1e`](https://github.com/nodejs/node/commit/b5df084e1e)] - **child_process**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`611db8df1a`](https://github.com/nodejs/node/commit/611db8df1a)] - **child_process**: support `Symbol.dispose` (Moshe Atlow) [#&#8203;48551](https://github.com/nodejs/node/pull/48551) - \[[`490fc004b0`](https://github.com/nodejs/node/commit/490fc004b0)] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#&#8203;49341](https://github.com/nodejs/node/pull/49341) - \[[`dd8cd97d4d`](https://github.com/nodejs/node/commit/dd8cd97d4d)] - **crypto**: update root certificates to NSS 3.90 (Node.js GitHub Bot) [#&#8203;48416](https://github.com/nodejs/node/pull/48416) - \[[`b2bc839d4c`](https://github.com/nodejs/node/commit/b2bc839d4c)] - **crypto**: remove OPENSSL_FIPS guard for OpenSSL 3 (Richard Lau) [#&#8203;48392](https://github.com/nodejs/node/pull/48392) - \[[`c8da8c80b9`](https://github.com/nodejs/node/commit/c8da8c80b9)] - **deps**: update nghttp2 to 1.55.0 (Node.js GitHub Bot) [#&#8203;48746](https://github.com/nodejs/node/pull/48746) - \[[`7e04242dcb`](https://github.com/nodejs/node/commit/7e04242dcb)] - **deps**: update minimatch to 9.0.3 (Node.js GitHub Bot) [#&#8203;48704](https://github.com/nodejs/node/pull/48704) - \[[`ea23870bec`](https://github.com/nodejs/node/commit/ea23870bec)] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`88855e0b1b`](https://github.com/nodejs/node/commit/88855e0b1b)] - **deps**: upgrade to libuv 1.46.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`fb2b80fca0`](https://github.com/nodejs/node/commit/fb2b80fca0)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`59fca4e09a`](https://github.com/nodejs/node/commit/59fca4e09a)] - **deps**: update acorn to 8.10.0 (Node.js GitHub Bot) [#&#8203;48713](https://github.com/nodejs/node/pull/48713) - \[[`bcb255d5a8`](https://github.com/nodejs/node/commit/bcb255d5a8)] - **deps**: V8: cherry-pick [`cb00db4`](https://github.com/nodejs/node/commit/cb00db4dba6c) (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671) - \[[`65a6c90fc6`](https://github.com/nodejs/node/commit/65a6c90fc6)] - **deps**: update acorn to 8.9.0 (Node.js GitHub Bot) [#&#8203;48484](https://github.com/nodejs/node/pull/48484) - \[[`6b6d5d91e9`](https://github.com/nodejs/node/commit/6b6d5d91e9)] - **deps**: update zlib to 1.2.13.1-motley-f81f385 (Node.js GitHub Bot) [#&#8203;48541](https://github.com/nodejs/node/pull/48541) - \[[`56249b0770`](https://github.com/nodejs/node/commit/56249b0770)] - **deps**: update googletest to [`ec4fed9`](https://github.com/nodejs/node/commit/ec4fed9) (Node.js GitHub Bot) [#&#8203;48538](https://github.com/nodejs/node/pull/48538) - \[[`8914a5204a`](https://github.com/nodejs/node/commit/8914a5204a)] - **deps**: update minimatch to 9.0.2 (Node.js GitHub Bot) [#&#8203;48542](https://github.com/nodejs/node/pull/48542) - \[[`1b960d9988`](https://github.com/nodejs/node/commit/1b960d9988)] - **deps**: update icu to 73.2 (Node.js GitHub Bot) [#&#8203;48502](https://github.com/nodejs/node/pull/48502) - \[[`f0e2e3c549`](https://github.com/nodejs/node/commit/f0e2e3c549)] - **deps**: update zlib to 1.2.13.1-motley-3ca9f16 (Node.js GitHub Bot) [#&#8203;48413](https://github.com/nodejs/node/pull/48413) - \[[`9cf8fe6b93`](https://github.com/nodejs/node/commit/9cf8fe6b93)] - **deps**: upgrade npm to 9.8.1 (npm team) [#&#8203;48838](https://github.com/nodejs/node/pull/48838) - \[[`d9ff473ff3`](https://github.com/nodejs/node/commit/d9ff473ff3)] - **deps**: upgrade npm to 9.8.0 (npm team) [#&#8203;48665](https://github.com/nodejs/node/pull/48665) - \[[`4a6177daad`](https://github.com/nodejs/node/commit/4a6177daad)] - **deps**: upgrade npm to 9.7.2 (npm team) [#&#8203;48514](https://github.com/nodejs/node/pull/48514) - \[[`104b58feb1`](https://github.com/nodejs/node/commit/104b58feb1)] - **deps**: update ada to 2.6.0 (Node.js GitHub Bot) [#&#8203;48896](https://github.com/nodejs/node/pull/48896) - \[[`7f7a125d78`](https://github.com/nodejs/node/commit/7f7a125d78)] - **deps**: update corepack to 0.19.0 (Node.js GitHub Bot) [#&#8203;48540](https://github.com/nodejs/node/pull/48540) - \[[`5e1eb451d1`](https://github.com/nodejs/node/commit/5e1eb451d1)] - **deps**: update corepack to 0.18.1 (Node.js GitHub Bot) [#&#8203;48483](https://github.com/nodejs/node/pull/48483) - \[[`3be53358bc`](https://github.com/nodejs/node/commit/3be53358bc)] - **deps**: add loong64 config into openssl gypi (Shi Pujin) [#&#8203;48043](https://github.com/nodejs/node/pull/48043) - \[[`555982c59e`](https://github.com/nodejs/node/commit/555982c59e)] - **deps**: upgrade npm to 9.7.1 (npm team) [#&#8203;48378](https://github.com/nodejs/node/pull/48378) - \[[`3c03ec0832`](https://github.com/nodejs/node/commit/3c03ec0832)] - **deps**: update simdutf to 3.2.14 (Node.js GitHub Bot) [#&#8203;48344](https://github.com/nodejs/node/pull/48344) - \[[`a2964a4583`](https://github.com/nodejs/node/commit/a2964a4583)] - **deps**: update ada to 2.5.1 (Node.js GitHub Bot) [#&#8203;48319](https://github.com/nodejs/node/pull/48319) - \[[`38f6e0d8cd`](https://github.com/nodejs/node/commit/38f6e0d8cd)] - **deps**: update zlib to [`982b036`](https://github.com/nodejs/node/commit/982b036) (Node.js GitHub Bot) [#&#8203;48327](https://github.com/nodejs/node/pull/48327) - \[[`f4617a4f81`](https://github.com/nodejs/node/commit/f4617a4f81)] - **deps**: add loongarch64 into openssl Makefile and gen openssl-loongarch64 (Shi Pujin) [#&#8203;46401](https://github.com/nodejs/node/pull/46401) - \[[`573eb4be12`](https://github.com/nodejs/node/commit/573eb4be12)] - **dgram**: socket add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717) - \[[`f3c4300e00`](https://github.com/nodejs/node/commit/f3c4300e00)] - **dgram**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`d3041df738`](https://github.com/nodejs/node/commit/d3041df738)] - **doc**: expand on squashing and rebasing to land a PR (Chengzhong Wu) [#&#8203;48751](https://github.com/nodejs/node/pull/48751) - \[[`249879e46c`](https://github.com/nodejs/node/commit/249879e46c)] - **doc**: add atlowChemi to collaborators (atlowChemi) [#&#8203;48757](https://github.com/nodejs/node/pull/48757) - \[[`42ecd46d1f`](https://github.com/nodejs/node/commit/42ecd46d1f)] - **doc**: fix ambiguity in http.md and https.md (an5er) [#&#8203;48692](https://github.com/nodejs/node/pull/48692) - \[[`e78824e053`](https://github.com/nodejs/node/commit/e78824e053)] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#&#8203;49196](https://github.com/nodejs/node/pull/49196) - \[[`1aa798d69f`](https://github.com/nodejs/node/commit/1aa798d69f)] - **doc**: clarify transform.\_transform() callback argument logic (Rafael Sofi-zada) [#&#8203;48680](https://github.com/nodejs/node/pull/48680) - \[[`d723e870a2`](https://github.com/nodejs/node/commit/d723e870a2)] - **doc**: mention git node release prepare (Rafael Gonzaga) [#&#8203;48644](https://github.com/nodejs/node/pull/48644) - \[[`a9a1394388`](https://github.com/nodejs/node/commit/a9a1394388)] - **doc**: fix options order (Luigi Pinca) [#&#8203;48617](https://github.com/nodejs/node/pull/48617) - \[[`989ea6858f`](https://github.com/nodejs/node/commit/989ea6858f)] - **doc**: update security release stewards (Rafael Gonzaga) [#&#8203;48569](https://github.com/nodejs/node/pull/48569) - \[[`f436ac1803`](https://github.com/nodejs/node/commit/f436ac1803)] - **doc**: update return type for describe (Shrujal Shah) [#&#8203;48572](https://github.com/nodejs/node/pull/48572) - \[[`fbe89e6320`](https://github.com/nodejs/node/commit/fbe89e6320)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48552](https://github.com/nodejs/node/pull/48552) - \[[`f18b287bc3`](https://github.com/nodejs/node/commit/f18b287bc3)] - **doc**: add description of autoAllocateChunkSize in ReadableStream (Debadree Chatterjee) [#&#8203;48004](https://github.com/nodejs/node/pull/48004) - \[[`e2f3ed1444`](https://github.com/nodejs/node/commit/e2f3ed1444)] - **doc**: fix `filename` type in `watch` result (Dmitry Semigradsky) [#&#8203;48032](https://github.com/nodejs/node/pull/48032) - \[[`1fe75dc2b0`](https://github.com/nodejs/node/commit/1fe75dc2b0)] - **doc**: unnest `mime` and `MIMEParams` from MIMEType constructor (Dmitry Semigradsky) [#&#8203;47950](https://github.com/nodejs/node/pull/47950) - \[[`e1339d58e8`](https://github.com/nodejs/node/commit/e1339d58e8)] - **doc**: update security-release-process.md (Rafael Gonzaga) [#&#8203;48504](https://github.com/nodejs/node/pull/48504) - \[[`e8dc7bde6a`](https://github.com/nodejs/node/commit/e8dc7bde6a)] - **doc**: add vmoroz to collaborators (Vladimir Morozov) [#&#8203;48527](https://github.com/nodejs/node/pull/48527) - \[[`f8ba672c7b`](https://github.com/nodejs/node/commit/f8ba672c7b)] - **doc**: link to Runtime Keys in export conditions (Jacob Hummer) [#&#8203;48408](https://github.com/nodejs/node/pull/48408) - \[[`0056cb93e9`](https://github.com/nodejs/node/commit/0056cb93e9)] - **doc**: update fs flags documentation (sinkhaha) [#&#8203;48463](https://github.com/nodejs/node/pull/48463) - \[[`3cf3fb9479`](https://github.com/nodejs/node/commit/3cf3fb9479)] - **doc**: revise `error.md` introduction (Antoine du Hamel) [#&#8203;48423](https://github.com/nodejs/node/pull/48423) - \[[`7575d8b90e`](https://github.com/nodejs/node/commit/7575d8b90e)] - **doc**: add preveen-stack to triagers (Preveen P) [#&#8203;48387](https://github.com/nodejs/node/pull/48387) - \[[`820aa550a4`](https://github.com/nodejs/node/commit/820aa550a4)] - **doc**: refine when file is undefined in test events (Moshe Atlow) [#&#8203;48451](https://github.com/nodejs/node/pull/48451) - \[[`a30f2fbcc1`](https://github.com/nodejs/node/commit/a30f2fbcc1)] - **doc**: add kvakil to collaborators (Keyhan Vakil) [#&#8203;48449](https://github.com/nodejs/node/pull/48449) - \[[`239b4ea66f`](https://github.com/nodejs/node/commit/239b4ea66f)] - **doc**: mark `--import` as experimental (Moshe Atlow) [#&#8203;44067](https://github.com/nodejs/node/pull/44067) - \[[`2a561aefe2`](https://github.com/nodejs/node/commit/2a561aefe2)] - **doc**: add additional info on TSFN dispatch (Michael Dawson) [#&#8203;48367](https://github.com/nodejs/node/pull/48367) - \[[`5cc6eee30d`](https://github.com/nodejs/node/commit/5cc6eee30d)] - **doc**: add link for news from security wg (Michael Dawson) [#&#8203;48396](https://github.com/nodejs/node/pull/48396) - \[[`ffece88452`](https://github.com/nodejs/node/commit/ffece88452)] - **doc**: fix typo in events.md (Darshan Sen) [#&#8203;48436](https://github.com/nodejs/node/pull/48436) - \[[`06513585dc`](https://github.com/nodejs/node/commit/06513585dc)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;48336](https://github.com/nodejs/node/pull/48336) - \[[`d9a800ee5c`](https://github.com/nodejs/node/commit/d9a800ee5c)] - **esm**: fix emit deprecation on legacy main resolve (Antoine du Hamel) [#&#8203;48664](https://github.com/nodejs/node/pull/48664) - \[[`c39b7c240e`](https://github.com/nodejs/node/commit/c39b7c240e)] - **(SEMVER-MINOR)** **esm**: add `--import` flag (Moshe Atlow) [#&#8203;43942](https://github.com/nodejs/node/pull/43942) - \[[`a00464ee06`](https://github.com/nodejs/node/commit/a00464ee06)] - **esm**: fix specifier resolution and symlinks (Zack Newsham) [#&#8203;47674](https://github.com/nodejs/node/pull/47674) - \[[`3b8ec348b0`](https://github.com/nodejs/node/commit/3b8ec348b0)] - **events**: fix bug listenerCount don't compare wrapped listener (yuzheng14) [#&#8203;48592](https://github.com/nodejs/node/pull/48592) - \[[`a68a67f54d`](https://github.com/nodejs/node/commit/a68a67f54d)] - **(SEMVER-MINOR)** **events**: allow safely adding listener to abortSignal (Chemi Atlow) [#&#8203;48596](https://github.com/nodejs/node/pull/48596) - \[[`5354af3dab`](https://github.com/nodejs/node/commit/5354af3dab)] - **fs**: call the callback with an error if writeSync fails (killa) [#&#8203;47949](https://github.com/nodejs/node/pull/47949) - \[[`c3a27d1d3d`](https://github.com/nodejs/node/commit/c3a27d1d3d)] - **fs**: remove unneeded return statement (Luigi Pinca) [#&#8203;48526](https://github.com/nodejs/node/pull/48526) - \[[`3a8586bee2`](https://github.com/nodejs/node/commit/3a8586bee2)] - **fs, stream**: initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) [#&#8203;48518](https://github.com/nodejs/node/pull/48518) - \[[`01746c71df`](https://github.com/nodejs/node/commit/01746c71df)] - **http**: null the joinDuplicateHeaders property on cleanup (Luigi Pinca) [#&#8203;48608](https://github.com/nodejs/node/pull/48608) - \[[`d47eb73a85`](https://github.com/nodejs/node/commit/d47eb73a85)] - **http**: remove useless ternary in test (geekreal) [#&#8203;48481](https://github.com/nodejs/node/pull/48481) - \[[`977e9a38b4`](https://github.com/nodejs/node/commit/977e9a38b4)] - **http**: fix for handling on boot timers headers and request (Franciszek Koltuniuk) [#&#8203;48291](https://github.com/nodejs/node/pull/48291) - \[[`be88f7cd22`](https://github.com/nodejs/node/commit/be88f7cd22)] - **http2**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`7c7230a85c`](https://github.com/nodejs/node/commit/7c7230a85c)] - **http2**: send RST code 8 on AbortController signal (Devraj Mehta) [#&#8203;48573](https://github.com/nodejs/node/pull/48573) - \[[`f74c2fc72a`](https://github.com/nodejs/node/commit/f74c2fc72a)] - **lib**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`db355d1f37`](https://github.com/nodejs/node/commit/db355d1f37)] - **lib**: add option to force handling stopped events (Chemi Atlow) [#&#8203;48301](https://github.com/nodejs/node/pull/48301) - \[[`5d682c55a5`](https://github.com/nodejs/node/commit/5d682c55a5)] - **lib**: reduce url getters on `makeRequireFunction` (Yagiz Nizipli) [#&#8203;48492](https://github.com/nodejs/node/pull/48492) - \[[`5260f53e55`](https://github.com/nodejs/node/commit/5260f53e55)] - **lib**: add support for inherited custom inspection methods (Antoine du Hamel) [#&#8203;48306](https://github.com/nodejs/node/pull/48306) - \[[`69aaf8b1d1`](https://github.com/nodejs/node/commit/69aaf8b1d1)] - **lib**: remove invalid parameter to toASCII (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878) - \[[`51863b80e4`](https://github.com/nodejs/node/commit/51863b80e4)] - **meta**: bump actions/checkout from 3.5.2 to 3.5.3 (dependabot\[bot]) [#&#8203;48625](https://github.com/nodejs/node/pull/48625) - \[[`7ec370991d`](https://github.com/nodejs/node/commit/7ec370991d)] - **meta**: bump step-security/harden-runner from 2.4.0 to 2.4.1 (dependabot\[bot]) [#&#8203;48626](https://github.com/nodejs/node/pull/48626) - \[[`34b8e980d4`](https://github.com/nodejs/node/commit/34b8e980d4)] - **meta**: bump ossf/scorecard-action from 2.1.3 to 2.2.0 (dependabot\[bot]) [#&#8203;48628](https://github.com/nodejs/node/pull/48628) - \[[`dfed9a7da9`](https://github.com/nodejs/node/commit/dfed9a7da9)] - **meta**: bump github/codeql-action from 2.3.6 to 2.20.1 (dependabot\[bot]) [#&#8203;48627](https://github.com/nodejs/node/pull/48627) - \[[`071eaadc5a`](https://github.com/nodejs/node/commit/071eaadc5a)] - **module**: add SourceMap.findOrigin (Isaac Z. Schlueter) [#&#8203;47790](https://github.com/nodejs/node/pull/47790) - \[[`bf1525c549`](https://github.com/nodejs/node/commit/bf1525c549)] - **module**: reduce url invocations in esm/load.js (Yagiz Nizipli) [#&#8203;48337](https://github.com/nodejs/node/pull/48337) - \[[`f8921630a2`](https://github.com/nodejs/node/commit/f8921630a2)] - **net**: server add `asyncDispose` (atlowChemi) [#&#8203;48717](https://github.com/nodejs/node/pull/48717) - \[[`b5f53d9a0b`](https://github.com/nodejs/node/commit/b5f53d9a0b)] - **net**: fix family autoselection SSL connection handling (Paolo Insogna) [#&#8203;48189](https://github.com/nodejs/node/pull/48189) - \[[`267439fc34`](https://github.com/nodejs/node/commit/267439fc34)] - **net**: rework autoSelectFamily implementation (Paolo Insogna) [#&#8203;46587](https://github.com/nodejs/node/pull/46587) - \[[`d3637cdbbf`](https://github.com/nodejs/node/commit/d3637cdbbf)] - **net**: fix address iteration with autoSelectFamily (Fedor Indutny) [#&#8203;48258](https://github.com/nodejs/node/pull/48258) - \[[`e8289a83f1`](https://github.com/nodejs/node/commit/e8289a83f1)] - **net**: fix family autoselection timeout handling (Paolo Insogna) [#&#8203;47860](https://github.com/nodejs/node/pull/47860) - \[[`863bdb785d`](https://github.com/nodejs/node/commit/863bdb785d)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#&#8203;45777](https://github.com/nodejs/node/pull/45777) - \[[`04dc090bfa`](https://github.com/nodejs/node/commit/04dc090bfa)] - **node-api**: provide napi_define_properties fast path (Gabriel Schulhof) [#&#8203;48440](https://github.com/nodejs/node/pull/48440) - \[[`feb6a54dc3`](https://github.com/nodejs/node/commit/feb6a54dc3)] - **node-api**: implement external strings (Gabriel Schulhof) [#&#8203;48339](https://github.com/nodejs/node/pull/48339) - \[[`121f74c463`](https://github.com/nodejs/node/commit/121f74c463)] - **perf_hooks**: convert maxSize to IDL value in setResourceTimingBufferSize (Chengzhong Wu) [#&#8203;44902](https://github.com/nodejs/node/pull/44902) - \[[`804d880589`](https://github.com/nodejs/node/commit/804d880589)] - **permission**: fix data types in PrintTree (Tobias Nießen) [#&#8203;48770](https://github.com/nodejs/node/pull/48770) - \[[`7aaecce9bf`](https://github.com/nodejs/node/commit/7aaecce9bf)] - **permission**: add debug log when inserting fs nodes (Rafael Gonzaga) [#&#8203;48677](https://github.com/nodejs/node/pull/48677) - \[[`cb51ef2905`](https://github.com/nodejs/node/commit/cb51ef2905)] - **readline**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`07065d0814`](https://github.com/nodejs/node/commit/07065d0814)] - **report**: disable js stack when no context is entered (Chengzhong Wu) [#&#8203;48495](https://github.com/nodejs/node/pull/48495) - \[[`572b82ffef`](https://github.com/nodejs/node/commit/572b82ffef)] - **src**: make BaseObject iteration order deterministic (Joyee Cheung) [#&#8203;48702](https://github.com/nodejs/node/pull/48702) - \[[`3f65598a41`](https://github.com/nodejs/node/commit/3f65598a41)] - **src**: remove kEagerCompile for CompileFunction (Keyhan Vakil) [#&#8203;48671](https://github.com/nodejs/node/pull/48671) - \[[`f43eacac9b`](https://github.com/nodejs/node/commit/f43eacac9b)] - **src**: deduplicate X509 getter implementations (Tobias Nießen) [#&#8203;48563](https://github.com/nodejs/node/pull/48563) - \[[`0c19621bdc`](https://github.com/nodejs/node/commit/0c19621bdc)] - **src**: fix uninitialized field access in AsyncHooks (Jan Olaf Krems) [#&#8203;48566](https://github.com/nodejs/node/pull/48566) - \[[`0c38184d62`](https://github.com/nodejs/node/commit/0c38184d62)] - **src**: fix Coverity issue regarding unnecessary copy (Yagiz Nizipli) [#&#8203;48565](https://github.com/nodejs/node/pull/48565) - \[[`0d73009ba3`](https://github.com/nodejs/node/commit/0d73009ba3)] - **src**: refactor `SplitString` in util (Yagiz Nizipli) [#&#8203;48491](https://github.com/nodejs/node/pull/48491) - \[[`6c72622df9`](https://github.com/nodejs/node/commit/6c72622df9)] - **src**: handle wasm out of bound in osx will raise SIGBUS correctly (Congcong Cai) [#&#8203;46561](https://github.com/nodejs/node/pull/46561) - \[[`e4261809b0`](https://github.com/nodejs/node/commit/e4261809b0)] - **src**: replace idna functions with ada::idna (Yagiz Nizipli) [#&#8203;47735](https://github.com/nodejs/node/pull/47735) - \[[`3dd82b1820`](https://github.com/nodejs/node/commit/3dd82b1820)] - **stream**: use addAbortListener (atlowChemi) [#&#8203;48550](https://github.com/nodejs/node/pull/48550) - \[[`786fbdb824`](https://github.com/nodejs/node/commit/786fbdb824)] - **stream**: fix premature pipeline end (Robert Nagy) [#&#8203;48435](https://github.com/nodejs/node/pull/48435) - \[[`c224e1b255`](https://github.com/nodejs/node/commit/c224e1b255)] - **stream**: fix deadlock when pipeing to full sink (Robert Nagy) [#&#8203;48691](https://github.com/nodejs/node/pull/48691) - \[[`2c75b9ece2`](https://github.com/nodejs/node/commit/2c75b9ece2)] - **test**: fix flaky test-string-decode.js on x86 (Stefan Stojanovic) [#&#8203;48750](https://github.com/nodejs/node/pull/48750) - \[[`279c4f64c1`](https://github.com/nodejs/node/commit/279c4f64c1)] - **test**: mark test-http-regr-[gh-2928](https://github.com/nodejs/node/issues/2928) as flaky (Joyee Cheung) [#&#8203;49565](https://github.com/nodejs/node/pull/49565) - \[[`01eacccd9a`](https://github.com/nodejs/node/commit/01eacccd9a)] - **test**: deflake test-net-throttle (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599) - \[[`33886b271c`](https://github.com/nodejs/node/commit/33886b271c)] - **test**: move test-net-throttle to parallel (Luigi Pinca) [#&#8203;48599](https://github.com/nodejs/node/pull/48599) - \[[`a79112b5f4`](https://github.com/nodejs/node/commit/a79112b5f4)] - ***Revert*** "**test**: remove test-crypto-keygen flaky designation" (Luigi Pinca) [#&#8203;48652](https://github.com/nodejs/node/pull/48652) - \[[`6ec57984db`](https://github.com/nodejs/node/commit/6ec57984db)] - **test**: add missing assertions to test-runner-cli (Moshe Atlow) [#&#8203;48593](https://github.com/nodejs/node/pull/48593) - \[[`dd1805e802`](https://github.com/nodejs/node/commit/dd1805e802)] - **test**: remove test-crypto-keygen flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575) - \[[`df9a9afc99`](https://github.com/nodejs/node/commit/df9a9afc99)] - **test**: remove test-timers-immediate-queue flaky designation (Luigi Pinca) [#&#8203;48575](https://github.com/nodejs/node/pull/48575) - \[[`3ae96ae380`](https://github.com/nodejs/node/commit/3ae96ae380)] - **test**: make IsolateData per-isolate in cctest (Joyee Cheung) [#&#8203;48450](https://github.com/nodejs/node/pull/48450) - \[[`f2ce8e0c06`](https://github.com/nodejs/node/commit/f2ce8e0c06)] - **test**: define NAPI_VERSION before including node_api.h (Chengzhong Wu) [#&#8203;48376](https://github.com/nodejs/node/pull/48376) - \[[`13ac0a5e26`](https://github.com/nodejs/node/commit/13ac0a5e26)] - **test**: remove unnecessary noop function args to `mustNotCall()` (Antoine du Hamel) [#&#8203;48513](https://github.com/nodejs/node/pull/48513) - \[[`8fdd4c55b3`](https://github.com/nodejs/node/commit/8fdd4c55b3)] - **test**: skip test-runner-watch-mode on IBMi (Moshe Atlow) [#&#8203;48473](https://github.com/nodejs/node/pull/48473) - \[[`9d90409241`](https://github.com/nodejs/node/commit/9d90409241)] - **test**: fix flaky test-watch-mode (Moshe Atlow) [#&#8203;48147](https://github.com/nodejs/node/pull/48147) - \[[`27a4bc7c32`](https://github.com/nodejs/node/commit/27a4bc7c32)] - **test**: add missing \<algorithm> include for std::find (Sam James) [#&#8203;48380](https://github.com/nodejs/node/pull/48380) - \[[`cb92c4b9fe`](https://github.com/nodejs/node/commit/cb92c4b9fe)] - **test**: update url web-platform tests (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319) - \[[`f35c4d3190`](https://github.com/nodejs/node/commit/f35c4d3190)] - **test**: ignore the copied entry_point.c (Luigi Pinca) [#&#8203;48297](https://github.com/nodejs/node/pull/48297) - \[[`41d1e6888f`](https://github.com/nodejs/node/commit/41d1e6888f)] - **test**: refactor test-gc-http-client-timeout (Luigi Pinca) [#&#8203;48292](https://github.com/nodejs/node/pull/48292) - \[[`125bca621a`](https://github.com/nodejs/node/commit/125bca621a)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;48320](https://github.com/nodejs/node/pull/48320) - \[[`e9ac111d02`](https://github.com/nodejs/node/commit/e9ac111d02)] - **test**: update FileAPI web-platform tests (Yagiz Nizipli) [#&#8203;48322](https://github.com/nodejs/node/pull/48322) - \[[`3da57d17f5`](https://github.com/nodejs/node/commit/3da57d17f5)] - **test**: update user-timing web-platform tests (Yagiz Nizipli) [#&#8203;48321](https://github.com/nodejs/node/pull/48321) - \[[`c728b8a29b`](https://github.com/nodejs/node/commit/c728b8a29b)] - **test**: fix `test-net-autoselectfamily` for kernel without IPv6 support (Livia Medeiros) [#&#8203;45856](https://github.com/nodejs/node/pull/45856) - \[[`6de7aa1d19`](https://github.com/nodejs/node/commit/6de7aa1d19)] - **test**: move `test-tls-autoselectfamily-servername` to `test/internet` (Antoine du Hamel) [#&#8203;47029](https://github.com/nodejs/node/pull/47029) - \[[`2de9868292`](https://github.com/nodejs/node/commit/2de9868292)] - **test**: validate host with commas on url.parse (Yagiz Nizipli) [#&#8203;48878](https://github.com/nodejs/node/pull/48878) - \[[`e7d2e8ef2a`](https://github.com/nodejs/node/commit/e7d2e8ef2a)] - **test**: delete test-net-bytes-per-incoming-chunk-overhead (Michaël Zasso) [#&#8203;48811](https://github.com/nodejs/node/pull/48811) - \[[`f5494fa1b0`](https://github.com/nodejs/node/commit/f5494fa1b0)] - **test_runner**: fixed `test` shorthands return type (Shocker) [#&#8203;48555](https://github.com/nodejs/node/pull/48555) - \[[`7051cafdfa`](https://github.com/nodejs/node/commit/7051cafdfa)] - **test_runner**: make `--test-name-pattern` recursive (Moshe Atlow) [#&#8203;48382](https://github.com/nodejs/node/pull/48382) - \[[`f302286442`](https://github.com/nodejs/node/commit/f302286442)] - **test_runner**: refactor coverage report output for readability (Damien Seguin) [#&#8203;47791](https://github.com/nodejs/node/pull/47791) - \[[`7822a541e5`](https://github.com/nodejs/node/commit/7822a541e5)] - **timers**: support Symbol.dispose (Moshe Atlow) [#&#8203;48633](https://github.com/nodejs/node/pull/48633) - \[[`3eeca52db1`](https://github.com/nodejs/node/commit/3eeca52db1)] - **tls**: fix bugs of double TLS (rogertyang) [#&#8203;48969](https://github.com/nodejs/node/pull/48969) - \[[`4826379516`](https://github.com/nodejs/node/commit/4826379516)] - **tools**: run fetch_deps.py with Python 3 (Richard Lau) [#&#8203;48729](https://github.com/nodejs/node/pull/48729) - \[[`e2688c8d79`](https://github.com/nodejs/node/commit/e2688c8d79)] - **tools**: update doc to unist-util-select@5.0.0 unist-util-visit@5.0.0 (Node.js GitHub Bot) [#&#8203;48714](https://github.com/nodejs/node/pull/48714) - \[[`7399481096`](https://github.com/nodejs/node/commit/7399481096)] - **tools**: update lint-md-dependencies to rollup@3.26.2 (Node.js GitHub Bot) [#&#8203;48705](https://github.com/nodejs/node/pull/48705) - \[[`31c07153ce`](https://github.com/nodejs/node/commit/31c07153ce)] - **tools**: update eslint to 8.44.0 (Node.js GitHub Bot) [#&#8203;48632](https://github.com/nodejs/node/pull/48632) - \[[`4e53f51e24`](https://github.com/nodejs/node/commit/4e53f51e24)] - **tools**: update lint-md-dependencies to rollup@3.26.0 (Node.js GitHub Bot) [#&#8203;48631](https://github.com/nodejs/node/pull/48631) - \[[`7d52950a96`](https://github.com/nodejs/node/commit/7d52950a96)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48544](https://github.com/nodejs/node/pull/48544) - \[[`e168eab3ee`](https://github.com/nodejs/node/commit/e168eab3ee)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48486](https://github.com/nodejs/node/pull/48486) - \[[`9711bc24f6`](https://github.com/nodejs/node/commit/9711bc24f6)] - **tools**: replace sed with perl (Luigi Pinca) [#&#8203;48499](https://github.com/nodejs/node/pull/48499) - \[[`9c1937c0a7`](https://github.com/nodejs/node/commit/9c1937c0a7)] - **tools**: update eslint to 8.43.0 (Node.js GitHub Bot) [#&#8203;48487](https://github.com/nodejs/node/pull/48487) - \[[`9449f05ab1`](https://github.com/nodejs/node/commit/9449f05ab1)] - **tools**: update doc to to-vfile@8.0.0 (Node.js GitHub Bot) [#&#8203;48485](https://github.com/nodejs/node/pull/48485) - \[[`79dcd968b1`](https://github.com/nodejs/node/commit/79dcd968b1)] - **tools**: prepare tools/doc for to-vfile 8.0.0 (Rich Trott) [#&#8203;48485](https://github.com/nodejs/node/pull/48485) - \[[`538f388ac0`](https://github.com/nodejs/node/commit/538f388ac0)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48417](https://github.com/nodejs/node/pull/48417) - \[[`01bc10dcd5`](https://github.com/nodejs/node/commit/01bc10dcd5)] - **tools**: update create-or-update-pull-request-action (Richard Lau) [#&#8203;48398](https://github.com/nodejs/node/pull/48398) - \[[`590a072657`](https://github.com/nodejs/node/commit/590a072657)] - **tools**: update eslint-plugin-jsdoc (Richard Lau) [#&#8203;48393](https://github.com/nodejs/node/pull/48393) - \[[`6a5805491e`](https://github.com/nodejs/node/commit/6a5805491e)] - **tools**: update eslint to 8.42.0 (Node.js GitHub Bot) [#&#8203;48328](https://github.com/nodejs/node/pull/48328) - \[[`2eb13e3986`](https://github.com/nodejs/node/commit/2eb13e3986)] - **tools**: disable jsdoc/no-defaults rule (Luigi Pinca) [#&#8203;48328](https://github.com/nodejs/node/pull/48328) - \[[`3363cfa6c7`](https://github.com/nodejs/node/commit/3363cfa6c7)] - **typings**: remove unused primordials (Yagiz Nizipli) [#&#8203;48509](https://github.com/nodejs/node/pull/48509) - \[[`c59ae86ba0`](https://github.com/nodejs/node/commit/c59ae86ba0)] - **(SEMVER-MINOR)** **url**: add value argument to has and delete methods (Sankalp Shubham) [#&#8203;47885](https://github.com/nodejs/node/pull/47885) - \[[`f59c9636f4`](https://github.com/nodejs/node/commit/f59c9636f4)] - **url**: conform to origin getter spec changes (Yagiz Nizipli) [#&#8203;48319](https://github.com/nodejs/node/pull/48319) - \[[`0beb5ab93d`](https://github.com/nodejs/node/commit/0beb5ab93d)] - **url**: ensure getter access do not mutate observable symbols (Antoine du Hamel) [#&#8203;48897](https://github.com/nodejs/node/pull/48897) - \[[`0a022c496d`](https://github.com/nodejs/node/commit/0a022c496d)] - **util**: use `primordials.ArrayPrototypeIndexOf` instead of mutable method (DaisyDogs07) [#&#8203;48586](https://github.com/nodejs/node/pull/48586) ### [`v18.17.1`](https://github.com/nodejs/node/releases/tag/v18.17.1): 2023-08-09, Version 18.17.1 &#x27;Hydrogen&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v18.17.0...v18.17.1) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - [CVE-2023-32002](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32002): Policies can be bypassed via Module.\_load (High) - [CVE-2023-32006](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32006): Policies can be bypassed by module.constructor.createRequire (Medium) - [CVE-2023-32559](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32559): Policies can be bypassed via process.binding (Medium) - OpenSSL Security Releases - [OpenSSL security advisory 14th July](https://mta.openssl.org/pipermail/openssl-announce/2023-July/000264.html). - [OpenSSL security advisory 19th July](https://mta.openssl.org/pipermail/openssl-announce/2023-July/000265.html). - [OpenSSL security advisory 31st July](https://mta.openssl.org/pipermail/openssl-announce/2023-July/000267.html) More detailed information on each of the vulnerabilities can be found in [August 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/august-2023-security-releases/) blog post. ##### Commits - \[[`fe3abdf82e`](https://github.com/nodejs/node/commit/fe3abdf82e)] - **deps**: update archs files for openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036) - \[[`2c5a522d9c`](https://github.com/nodejs/node/commit/2c5a522d9c)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.10+quic1 (Node.js GitHub Bot) [#&#8203;49036](https://github.com/nodejs/node/pull/49036) - \[[`15bced0bde`](https://github.com/nodejs/node/commit/15bced0bde)] - **policy**: handle Module.constructor and main.extensions bypass (RafaelGSS) [nodejs-private/node-private#417](https://github.com/nodejs-private/node-private/pull/417) - \[[`d4570fae35`](https://github.com/nodejs/node/commit/d4570fae35)] - **policy**: disable process.binding() when enabled (Tobias Nießen) [nodejs-private/node-private#460](https://github.com/nodejs-private/node-private/pull/460) ### [`v18.17.0`](https://github.com/nodejs/node/releases/tag/v18.17.0): 2023-07-18, Version 18.17.0 &#x27;Hydrogen&#x27; (LTS), @&#8203;danielleadams [Compare Source](https://github.com/nodejs/node/compare/v18.16.1...v18.17.0) ##### Notable Changes ##### Ada 2.0 Node.js v18.17.0 comes with the latest version of the URL parser, Ada. This update brings significant performance improvements to URL parsing, including enhancements to the url.domainToASCII and url.domainToUnicode functions in node:url. Ada 2.0 has been integrated into the Node.js codebase, ensuring that all parts of the application can benefit from the improved performance. Additionally, Ada 2.0 features a significant performance boost over its predecessor, Ada 1.0.4, while also eliminating the need for the ICU requirement for URL hostname parsing. Contributed by Yagiz Nizipli and Daniel Lemire in [#&#8203;47339](https://github.com/nodejs/node/pull/47339) ##### Web Crypto API Web Crypto API functions' arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations. This further improves interoperability with other implementations of Web Crypto API. Contributed by Filip Skokan in [#&#8203;46067](https://github.com/nodejs/node/pull/46067) - **crypto**: - update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659) - **dns**: - **(SEMVER-MINOR)** expose getDefaultResultOrder (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973) - **doc**: - add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844) - add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510) - **events**: - **(SEMVER-MINOR)** add getMaxListeners method (Matthew Aitken) [#&#8203;47039](https://github.com/nodejs/node/pull/47039) - **fs**: - **(SEMVER-MINOR)** add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084) - **(SEMVER-MINOR)** add recursive option to readdir and opendir (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439) - **(SEMVER-MINOR)** add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084) - **(SEMVER-MINOR)** implement byob mode for readableWebStream() (Debadree Chatterjee) [#&#8203;46933](https://github.com/nodejs/node/pull/46933) - **http**: - **(SEMVER-MINOR)** prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732) - **(SEMVER-MINOR)** remove internal error in assignSocket (Matteo Collina) [#&#8203;47723](https://github.com/nodejs/node/pull/47723) - **(SEMVER-MINOR)** add highWaterMark opt in http.createServer (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405) - **lib**: - **(SEMVER-MINOR)** add webstreams to Duplex.from() (Debadree Chatterjee) [#&#8203;46190](https://github.com/nodejs/node/pull/46190) - **(SEMVER-MINOR)** implement AbortSignal.any() (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821) - **module**: - change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824) - **node-api**: - **(SEMVER-MINOR)** define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151) - **(SEMVER-MINOR)** deprecate napi_module_register (Vladimir Morozov) [#&#8203;46319](https://github.com/nodejs/node/pull/46319) - **stream**: - **(SEMVER-MINOR)** preserve object mode in compose (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413) - **(SEMVER-MINOR)** add setter & getter for default highWaterMark ([#&#8203;46929](https://github.com/nodejs/node/issues/46929)) (Robert Nagy) [#&#8203;46929](https://github.com/nodejs/node/pull/46929) - **test**: - unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - **test_runner**: - **(SEMVER-MINOR)** add shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909) - **(SEMVER-MINOR)** support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686) - **(SEMVER-MINOR)** execute before hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586) - **(SEMVER-MINOR)** expose reporter for use in run api (Chemi Atlow) [#&#8203;47238](https://github.com/nodejs/node/pull/47238) - **tools**: - update LICENSE and license-builder.sh (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - **url**: - **(SEMVER-MINOR)** implement URL.canParse (Matthew Aitken) [#&#8203;47179](https://github.com/nodejs/node/pull/47179) - **wasi**: - **(SEMVER-MINOR)** no longer require flag to enable wasi (Michael Dawson) [#&#8203;47286](https://github.com/nodejs/node/pull/47286) ##### Commits - \[[`2ba08ac002`](https://github.com/nodejs/node/commit/2ba08ac002)] - **benchmark**: use `cluster.isPrimary` instead of `cluster.isMaster` (Deokjin Kim) [#&#8203;48002](https://github.com/nodejs/node/pull/48002) - \[[`60ca69d96c`](https://github.com/nodejs/node/commit/60ca69d96c)] - **benchmark**: add eventtarget creation bench (Rafael Gonzaga) [#&#8203;47774](https://github.com/nodejs/node/pull/47774) - \[[`d8233d96bb`](https://github.com/nodejs/node/commit/d8233d96bb)] - **benchmark**: add a benchmark for `defaultResolve` (Antoine du Hamel) [#&#8203;47543](https://github.com/nodejs/node/pull/47543) - \[[`a1aabb6912`](https://github.com/nodejs/node/commit/a1aabb6912)] - **benchmark**: fix invalid requirementsURL (Deokjin Kim) [#&#8203;47378](https://github.com/nodejs/node/pull/47378) - \[[`394c61caf9`](https://github.com/nodejs/node/commit/394c61caf9)] - **bootstrap**: support namespaced builtins in snapshot scripts (Joyee Cheung) [#&#8203;47467](https://github.com/nodejs/node/pull/47467) - \[[`0165a765a0`](https://github.com/nodejs/node/commit/0165a765a0)] - **bootstrap**: do not expand process.argv\[1] for snapshot entry points (Joyee Cheung) [#&#8203;47466](https://github.com/nodejs/node/pull/47466) - \[[`cca557cdd9`](https://github.com/nodejs/node/commit/cca557cdd9)] - **buffer**: combine checking range of sourceStart in `buf.copy` (Deokjin Kim) [#&#8203;47758](https://github.com/nodejs/node/pull/47758) - \[[`4c69be467c`](https://github.com/nodejs/node/commit/4c69be467c)] - **buffer**: use private properties for brand checks in File (Matthew Aitken) [#&#8203;47154](https://github.com/nodejs/node/pull/47154) - \[[`d002f9b6e2`](https://github.com/nodejs/node/commit/d002f9b6e2)] - **build**: revert unkonwn ruff selector (Moshe Atlow) [#&#8203;48753](https://github.com/nodejs/node/pull/48753) - \[[`93f77cb762`](https://github.com/nodejs/node/commit/93f77cb762)] - **build**: set v8\_enable_webassembly=false when lite mode is enabled (Cheng Shao) [#&#8203;48248](https://github.com/nodejs/node/pull/48248) - \[[`1662e894f3`](https://github.com/nodejs/node/commit/1662e894f3)] - **build**: add action to close stale PRs (Michael Dawson) [#&#8203;48051](https://github.com/nodejs/node/pull/48051) - \[[`5ca437b288`](https://github.com/nodejs/node/commit/5ca437b288)] - **build**: use pathlib for paths (Mohammed Keyvanzadeh) [#&#8203;47581](https://github.com/nodejs/node/pull/47581) - \[[`72443bc54b`](https://github.com/nodejs/node/commit/72443bc54b)] - **build**: refactor configure.py (Mohammed Keyvanzadeh) [#&#8203;47667](https://github.com/nodejs/node/pull/47667) - \[[`d4eecb5be9`](https://github.com/nodejs/node/commit/d4eecb5be9)] - **build**: add devcontainer configuration (Tierney Cyren) [#&#8203;40825](https://github.com/nodejs/node/pull/40825) - \[[`803ed41144`](https://github.com/nodejs/node/commit/803ed41144)] - **build**: bump ossf/scorecard-action from 2.1.2 to 2.1.3 (dependabot\[bot]) [#&#8203;47367](https://github.com/nodejs/node/pull/47367) - \[[`48468c4413`](https://github.com/nodejs/node/commit/48468c4413)] - **build**: replace Python linter flake8 with ruff (Christian Clauss) [#&#8203;47519](https://github.com/nodejs/node/pull/47519) - \[[`3ceb2c4387`](https://github.com/nodejs/node/commit/3ceb2c4387)] - **build**: add node-core-utils to setup (Jiawen Geng) [#&#8203;47442](https://github.com/nodejs/node/pull/47442) - \[[`fdc59b8e14`](https://github.com/nodejs/node/commit/fdc59b8e14)] - **build**: bump github/codeql-action from 2.2.6 to 2.2.9 (dependabot\[bot]) [#&#8203;47366](https://github.com/nodejs/node/pull/47366) - \[[`3924893023`](https://github.com/nodejs/node/commit/3924893023)] - **build**: update stale action from v7 to v8 (Rich Trott) [#&#8203;47357](https://github.com/nodejs/node/pull/47357) - \[[`753185c5b0`](https://github.com/nodejs/node/commit/753185c5b0)] - **build**: remove Python pip `--no-user` option (Christian Clauss) [#&#8203;47372](https://github.com/nodejs/node/pull/47372) - \[[`67af0a6a2b`](https://github.com/nodejs/node/commit/67af0a6a2b)] - **build**: avoid usage of pipes library (Mohammed Keyvanzadeh) [#&#8203;47271](https://github.com/nodejs/node/pull/47271) - \[[`db910dd6b2`](https://github.com/nodejs/node/commit/db910dd6b2)] - **build, deps, tools**: avoid excessive LTO (Konstantin Demin) [#&#8203;47313](https://github.com/nodejs/node/pull/47313) - \[[`35d1def891`](https://github.com/nodejs/node/commit/35d1def891)] - **child_process**: use signal.reason in child process abort (Debadree Chatterjee) [#&#8203;47817](https://github.com/nodejs/node/pull/47817) - \[[`7692d2e7b9`](https://github.com/nodejs/node/commit/7692d2e7b9)] - **cluster**: use ObjectPrototypeHasOwnProperty (Daeyeon Jeong) [#&#8203;48141](https://github.com/nodejs/node/pull/48141) - \[[`7617772762`](https://github.com/nodejs/node/commit/7617772762)] - **crypto**: use openssl's own memory BIOs in crypto_context.cc (GauriSpears) [#&#8203;47160](https://github.com/nodejs/node/pull/47160) - \[[`8cabfe7c6e`](https://github.com/nodejs/node/commit/8cabfe7c6e)] - **crypto**: fix setEngine() when OPENSSL_NO_ENGINE set (Tobias Nießen) [#&#8203;47977](https://github.com/nodejs/node/pull/47977) - \[[`de1338da05`](https://github.com/nodejs/node/commit/de1338da05)] - **crypto**: fix webcrypto private/secret import with empty usages (Filip Skokan) [#&#8203;47877](https://github.com/nodejs/node/pull/47877) - \[[`27a696fda9`](https://github.com/nodejs/node/commit/27a696fda9)] - **crypto**: update root certificates to NSS 3.89 (Node.js GitHub Bot) [#&#8203;47659](https://github.com/nodejs/node/pull/47659) - \[[`e2292f936e`](https://github.com/nodejs/node/commit/e2292f936e)] - **crypto**: remove INT_MAX restriction in randomBytes (Tobias Nießen) [#&#8203;47559](https://github.com/nodejs/node/pull/47559) - \[[`a5f214c00c`](https://github.com/nodejs/node/commit/a5f214c00c)] - **crypto**: replace THROW with CHECK for scrypt keylen (Tobias Nießen) [#&#8203;47407](https://github.com/nodejs/node/pull/47407) - \[[`dd42214fd4`](https://github.com/nodejs/node/commit/dd42214fd4)] - **crypto**: unify validation of checkPrime checks (Tobias Nießen) [#&#8203;47165](https://github.com/nodejs/node/pull/47165) - \[[`76e4d12fb3`](https://github.com/nodejs/node/commit/76e4d12fb3)] - **crypto**: re-add padding for AES-KW wrapped JWKs (Filip Skokan) [#&#8203;46563](https://github.com/nodejs/node/pull/46563) - \[[`9d894c17dd`](https://github.com/nodejs/node/commit/9d894c17dd)] - **crypto**: use WebIDL converters in WebCryptoAPI (Filip Skokan) [#&#8203;46067](https://github.com/nodejs/node/pull/46067) - \[[`6f3a8b45a5`](https://github.com/nodejs/node/commit/6f3a8b45a5)] - **deps**: update ada to 2.5.0 (Node.js GitHub Bot) [#&#8203;48223](https://github.com/nodejs/node/pull/48223) - \[[`075b6db919`](https://github.com/nodejs/node/commit/075b6db919)] - **deps**: update ada to 2.4.2 (Node.js GitHub Bot) [#&#8203;48092](https://github.com/nodejs/node/pull/48092) - \[[`a4ee1f652c`](https://github.com/nodejs/node/commit/a4ee1f652c)] - **deps**: update ada to 2.4.1 (Node.js GitHub Bot) [#&#8203;48036](https://github.com/nodejs/node/pull/48036) - \[[`81b514d3f0`](https://github.com/nodejs/node/commit/81b514d3f0)] - **deps**: update ada to 2.4.0 (Node.js GitHub Bot) [#&#8203;47922](https://github.com/nodejs/node/pull/47922) - \[[`575ddf694f`](https://github.com/nodejs/node/commit/575ddf694f)] - **deps**: update ada to 2.3.1 (Node.js GitHub Bot) [#&#8203;47893](https://github.com/nodejs/node/pull/47893) - \[[`2d03d5f458`](https://github.com/nodejs/node/commit/2d03d5f458)] - **deps**: update ada to 2.3.0 (Node.js GitHub Bot) [#&#8203;47737](https://github.com/nodejs/node/pull/47737) - \[[`42e690f2d5`](https://github.com/nodejs/node/commit/42e690f2d5)] - **deps**: update ada to 2.2.0 (Node.js GitHub Bot) [#&#8203;47678](https://github.com/nodejs/node/pull/47678) - \[[`08dd271521`](https://github.com/nodejs/node/commit/08dd271521)] - **deps**: update ada to 2.1.0 (Node.js GitHub Bot) [#&#8203;47598](https://github.com/nodejs/node/pull/47598) - \[[`96c50ba71f`](https://github.com/nodejs/node/commit/96c50ba71f)] - **deps**: update ada to 2.0.0 (Node.js GitHub Bot) [#&#8203;47339](https://github.com/nodejs/node/pull/47339) - \[[`4d1c38b758`](https://github.com/nodejs/node/commit/4d1c38b758)] - **deps**: update zlib to [`337322d`](https://github.com/nodejs/node/commit/337322d) (Node.js GitHub Bot) [#&#8203;48218](https://github.com/nodejs/node/pull/48218) - \[[`74206b2549`](https://github.com/nodejs/node/commit/74206b2549)] - **deps**: update histogram 0.11.8 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742) - \[[`fbb4b3775d`](https://github.com/nodejs/node/commit/fbb4b3775d)] - **deps**: update histogram to 0.11.7 (Marco Ippolito) [#&#8203;47742](https://github.com/nodejs/node/pull/47742) - \[[`e88c079022`](https://github.com/nodejs/node/commit/e88c079022)] - **deps**: update simdutf to 3.2.12 (Node.js GitHub Bot) [#&#8203;48118](https://github.com/nodejs/node/pull/48118) - \[[`48bd1248b9`](https://github.com/nodejs/node/commit/48bd1248b9)] - **deps**: update minimatch to 9.0.1 (Node.js GitHub Bot) [#&#8203;48094](https://github.com/nodejs/node/pull/48094) - \[[`d4572d31fa`](https://github.com/nodejs/node/commit/d4572d31fa)] - **deps**: update corepack to 0.18.0 (Node.js GitHub Bot) [#&#8203;48091](https://github.com/nodejs/node/pull/48091) - \[[`8090d29dc4`](https://github.com/nodejs/node/commit/8090d29dc4)] - **deps**: update uvwasi to 0.0.18 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866) - \[[`169c8eea2e`](https://github.com/nodejs/node/commit/169c8eea2e)] - **deps**: update uvwasi to 0.0.17 (Node.js GitHub Bot) [#&#8203;47866](https://github.com/nodejs/node/pull/47866) - \[[`6acbb23380`](https://github.com/nodejs/node/commit/6acbb23380)] - **deps**: upgrade npm to 9.6.7 (npm team) [#&#8203;48062](https://github.com/nodejs/node/pull/48062) - \[[`e8f2c0a58b`](https://github.com/nodejs/node/commit/e8f2c0a58b)] - **deps**: update undici to 5.22.1 (Node.js GitHub Bot) [#&#8203;47994](https://github.com/nodejs/node/pull/47994) - \[[`9309fd3120`](https://github.com/nodejs/node/commit/9309fd3120)] - **deps**: update simdutf to 3.2.9 (Node.js GitHub Bot) [#&#8203;47983](https://github.com/nodejs/node/pull/47983) - \[[`b796d3560a`](https://github.com/nodejs/node/commit/b796d3560a)] - **deps**: upgrade npm to 9.6.6 (npm team) [#&#8203;47862](https://github.com/nodejs/node/pull/47862) - \[[`cce372e14e`](https://github.com/nodejs/node/commit/cce372e14e)] - **deps**: V8: cherry-pick [`c5ab3e4`](https://github.com/nodejs/node/commit/c5ab3e4f0c5a) (Richard Lau) [#&#8203;47736](https://github.com/nodejs/node/pull/47736) - \[[`7283486adb`](https://github.com/nodejs/node/commit/7283486adb)] - **deps**: update undici to 5.22.0 (Node.js GitHub Bot) [#&#8203;47679](https://github.com/nodejs/node/pull/47679) - \[[`2ea6e03003`](https://github.com/nodejs/node/commit/2ea6e03003)] - **deps**: add minimatch as a dependency (Moshe Atlow) [#&#8203;47499](https://github.com/nodejs/node/pull/47499) - \[[`261e1d23d1`](https://github.com/nodejs/node/commit/261e1d23d1)] - **deps**: update ICU to 73.1 release (Steven R. Loomis) [#&#8203;47456](https://github.com/nodejs/node/pull/47456) - \[[`f532f9df5f`](https://github.com/nodejs/node/commit/f532f9df5f)] - **deps**: update undici to 5.21.2 (Node.js GitHub Bot) [#&#8203;47508](https://github.com/nodejs/node/pull/47508) - \[[`dcb8c038b9`](https://github.com/nodejs/node/commit/dcb8c038b9)] - **deps**: update simdutf to 3.2.8 (Node.js GitHub Bot) [#&#8203;47507](https://github.com/nodejs/node/pull/47507) - \[[`6c8456d61f`](https://github.com/nodejs/node/commit/6c8456d61f)] - **deps**: update undici to 5.21.1 (Node.js GitHub Bot) [#&#8203;47488](https://github.com/nodejs/node/pull/47488) - \[[`d3b2e8a438`](https://github.com/nodejs/node/commit/d3b2e8a438)] - **deps**: update simdutf to 3.2.7 (Node.js GitHub Bot) [#&#8203;47473](https://github.com/nodejs/node/pull/47473) - \[[`64a5fe0499`](https://github.com/nodejs/node/commit/64a5fe0499)] - **deps**: update corepack to 0.17.2 (Node.js GitHub Bot) [#&#8203;47474](https://github.com/nodejs/node/pull/47474) - \[[`6f0f61a7d3`](https://github.com/nodejs/node/commit/6f0f61a7d3)] - **deps**: upgrade npm to 9.6.4 (npm team) [#&#8203;47432](https://github.com/nodejs/node/pull/47432) - \[[`443a72e207`](https://github.com/nodejs/node/commit/443a72e207)] - **deps**: update zlib to upstream [`5edb52d`](https://github.com/nodejs/node/commit/5edb52d4) (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151) - \[[`dc3bc46914`](https://github.com/nodejs/node/commit/dc3bc46914)] - **deps**: update simdutf to 3.2.3 (Node.js GitHub Bot) [#&#8203;47331](https://github.com/nodejs/node/pull/47331) - \[[`b2f2bebbc2`](https://github.com/nodejs/node/commit/b2f2bebbc2)] - **deps**: update timezone to 2023c (Node.js GitHub Bot) [#&#8203;47302](https://github.com/nodejs/node/pull/47302) - \[[`c10729ffa7`](https://github.com/nodejs/node/commit/c10729ffa7)] - **deps**: upgrade npm to 9.6.3 (npm team) [#&#8203;47325](https://github.com/nodejs/node/pull/47325) - \[[`420deac1de`](https://github.com/nodejs/node/commit/420deac1de)] - **deps**: update corepack to 0.17.1 (Node.js GitHub Bot) [#&#8203;47156](https://github.com/nodejs/node/pull/47156) - \[[`966ba28491`](https://github.com/nodejs/node/commit/966ba28491)] - **deps**: V8: cherry-pick [`3e4952c`](https://github.com/nodejs/node/commit/3e4952cb2a59) (Richard Lau) [#&#8203;47236](https://github.com/nodejs/node/pull/47236) - \[[`fc6ab26824`](https://github.com/nodejs/node/commit/fc6ab26824)] - **deps**: update timezone to 2023b (Node.js GitHub Bot) [#&#8203;47256](https://github.com/nodejs/node/pull/47256) - \[[`2700e70215`](https://github.com/nodejs/node/commit/2700e70215)] - **deps**: upgrade npm to 9.6.2 (npm team) [#&#8203;47108](https://github.com/nodejs/node/pull/47108) - \[[`29ba98a0a5`](https://github.com/nodejs/node/commit/29ba98a0a5)] - **deps**: V8: cherry-pick [`975ff4d`](https://github.com/nodejs/node/commit/975ff4dbfd1b) (Debadree Chatterjee) [#&#8203;47209](https://github.com/nodejs/node/pull/47209) - \[[`be34777be8`](https://github.com/nodejs/node/commit/be34777be8)] - **deps**: cherry-pick win/arm64/clang fixes (Cheng Zhao) [#&#8203;47011](https://github.com/nodejs/node/pull/47011) - \[[`b52aacb614`](https://github.com/nodejs/node/commit/b52aacb614)] - **deps**: update uvwasi to v0.0.16 (Michael Dawson) [#&#8203;46434](https://github.com/nodejs/node/pull/46434) - \[[`27a76cf5e0`](https://github.com/nodejs/node/commit/27a76cf5e0)] - **deps,test**: update postject to 1.0.0-alpha.6 (Node.js GitHub Bot) [#&#8203;48072](https://github.com/nodejs/node/pull/48072) - \[[`b171c1a3a4`](https://github.com/nodejs/node/commit/b171c1a3a4)] - **dgram**: convert macro to template (Tobias Nießen) [#&#8203;47891](https://github.com/nodejs/node/pull/47891) - \[[`709bf1c758`](https://github.com/nodejs/node/commit/709bf1c758)] - **(SEMVER-MINOR)** **dns**: expose getDefaultResultOrder (btea) [#&#8203;46973](https://github.com/nodejs/node/pull/46973) - \[[`2f202c93e7`](https://github.com/nodejs/node/commit/2f202c93e7)] - **doc**: clarify array args to Buffer.from() (Bryan English) [#&#8203;48274](https://github.com/nodejs/node/pull/48274) - \[[`27f195f8d8`](https://github.com/nodejs/node/commit/27f195f8d8)] - **doc**: document watch option for node:test run() (Moshe Atlow) [#&#8203;48256](https://github.com/nodejs/node/pull/48256) - \[[`7558ef350a`](https://github.com/nodejs/node/commit/7558ef350a)] - **doc**: update documentation for FIPS support (Richard Lau) [#&#8203;48194](https://github.com/nodejs/node/pull/48194) - \[[`f2bb1919e5`](https://github.com/nodejs/node/commit/f2bb1919e5)] - **doc**: improve the documentation of the stdio option (Kumar Arnav) [#&#8203;48110](https://github.com/nodejs/node/pull/48110) - \[[`a2aa52ba92`](https://github.com/nodejs/node/commit/a2aa52ba92)] - **doc**: update Buffer.allocUnsafe description (sinkhaha) [#&#8203;48183](https://github.com/nodejs/node/pull/48183) - \[[`19ad471d52`](https://github.com/nodejs/node/commit/19ad471d52)] - **doc**: update codeowners with website team (Claudio Wunder) [#&#8203;48197](https://github.com/nodejs/node/pull/48197) - \[[`67b2c2a98f`](https://github.com/nodejs/node/commit/67b2c2a98f)] - **doc**: fix broken link to new folder doc/contributing/maintaining (Andrea Fassina) [#&#8203;48205](https://github.com/nodejs/node/pull/48205) - \[[`795ca70815`](https://github.com/nodejs/node/commit/795ca70815)] - **doc**: add atlowChemi to triagers (Chemi Atlow) [#&#8203;48104](https://github.com/nodejs/node/pull/48104) - \[[`e437a0aff1`](https://github.com/nodejs/node/commit/e437a0aff1)] - **doc**: fix typo in readline completer function section (Vadym) [#&#8203;48188](https://github.com/nodejs/node/pull/48188) - \[[`92e0ea496d`](https://github.com/nodejs/node/commit/92e0ea496d)] - **doc**: remove broken link for keygen (Rich Trott) [#&#8203;48176](https://github.com/nodejs/node/pull/48176) - \[[`fe15dae8e6`](https://github.com/nodejs/node/commit/fe15dae8e6)] - **doc**: add `auto` intrinsic height to prevent jitter/flicker (Daniel Holbert) [#&#8203;48195](https://github.com/nodejs/node/pull/48195) - \[[`230335e21f`](https://github.com/nodejs/node/commit/230335e21f)] - **doc**: add version info on the SEA docs (Antoine du Hamel) [#&#8203;48173](https://github.com/nodejs/node/pull/48173) - \[[`e6f37d1b80`](https://github.com/nodejs/node/commit/e6f37d1b80)] - **doc**: add Ruy to list of TSC members (Michael Dawson) [#&#8203;48172](https://github.com/nodejs/node/pull/48172) - \[[`69205a250c`](https://github.com/nodejs/node/commit/69205a250c)] - **doc**: update socket.remote\* properties documentation (Saba Kharanauli) [#&#8203;48139](https://github.com/nodejs/node/pull/48139) - \[[`e4a5d6298c`](https://github.com/nodejs/node/commit/e4a5d6298c)] - **doc**: update outdated section on TLSv1.3-PSK (Tobias Nießen) [#&#8203;48123](https://github.com/nodejs/node/pull/48123) - \[[`d14018ed99`](https://github.com/nodejs/node/commit/d14018ed99)] - **doc**: improve HMAC key recommendations (Tobias Nießen) [#&#8203;48121](https://github.com/nodejs/node/pull/48121) - \[[`e9d4baf770`](https://github.com/nodejs/node/commit/e9d4baf770)] - **doc**: clarify mkdir() recursive behavior (Stephen Odogwu) [#&#8203;48109](https://github.com/nodejs/node/pull/48109) - \[[`3e4a469139`](https://github.com/nodejs/node/commit/3e4a469139)] - **doc**: fix typo in crypto legacy streams API section (Tobias Nießen) [#&#8203;48122](https://github.com/nodejs/node/pull/48122) - \[[`bdf366ab88`](https://github.com/nodejs/node/commit/bdf366ab88)] - **doc**: update SEA source link (Rich Trott) [#&#8203;48080](https://github.com/nodejs/node/pull/48080) - \[[`2a4f79a75f`](https://github.com/nodejs/node/commit/2a4f79a75f)] - **doc**: clarify tty.isRaw (Roberto Vidal) [#&#8203;48055](https://github.com/nodejs/node/pull/48055) - \[[`98c6e4be03`](https://github.com/nodejs/node/commit/98c6e4be03)] - **doc**: use secure key length for HMAC generateKey (Tobias Nießen) [#&#8203;48052](https://github.com/nodejs/node/pull/48052) - \[[`8ae5c8cf9d`](https://github.com/nodejs/node/commit/8ae5c8cf9d)] - **doc**: update broken EVP_BytesToKey link (Rich Trott) [#&#8203;48064](https://github.com/nodejs/node/pull/48064) - \[[`3c713e7caa`](https://github.com/nodejs/node/commit/3c713e7caa)] - **doc**: update broken spkac link (Rich Trott) [#&#8203;48063](https://github.com/nodejs/node/pull/48063) - \[[`c22f739e94`](https://github.com/nodejs/node/commit/c22f739e94)] - **doc**: document node-api version process (Chengzhong Wu) [#&#8203;47972](https://github.com/nodejs/node/pull/47972) - \[[`ce859f9f9f`](https://github.com/nodejs/node/commit/ce859f9f9f)] - **doc**: fix typo in binding functions (Deokjin Kim) [#&#8203;48003](https://github.com/nodejs/node/pull/48003) - \[[`070c3457b7`](https://github.com/nodejs/node/commit/070c3457b7)] - **doc**: mark Node.js 14 as End-of-Life (Richard Lau) [#&#8203;48023](https://github.com/nodejs/node/pull/48023) - \[[`3611027d8e`](https://github.com/nodejs/node/commit/3611027d8e)] - **doc**: clarify CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED (Tobias Nießen) [#&#8203;47976](https://github.com/nodejs/node/pull/47976) - \[[`dbffad958c`](https://github.com/nodejs/node/commit/dbffad958c)] - **doc**: add missing deprecated blocks to cluster (Tobias Nießen) [#&#8203;47981](https://github.com/nodejs/node/pull/47981) - \[[`035356f711`](https://github.com/nodejs/node/commit/035356f711)] - **doc**: update description of global (Tobias Nießen) [#&#8203;47969](https://github.com/nodejs/node/pull/47969) - \[[`081a6ffaea`](https://github.com/nodejs/node/commit/081a6ffaea)] - **doc**: update measure memory rejection information (Yash Ladha) [#&#8203;41639](https://github.com/nodejs/node/pull/41639) - \[[`3460cf9c23`](https://github.com/nodejs/node/commit/3460cf9c23)] - **doc**: fix broken link to TC39 import attributes proposal (Rich Trott) [#&#8203;47954](https://github.com/nodejs/node/pull/47954) - \[[`3b018c8aa9`](https://github.com/nodejs/node/commit/3b018c8aa9)] - **doc**: fix broken link (Rich Trott) [#&#8203;47953](https://github.com/nodejs/node/pull/47953) - \[[`244db960a9`](https://github.com/nodejs/node/commit/244db960a9)] - **doc**: remove broken link (Rich Trott) [#&#8203;47942](https://github.com/nodejs/node/pull/47942) - \[[`2cc8715bb9`](https://github.com/nodejs/node/commit/2cc8715bb9)] - **doc**: document make lint-md-clean (Matteo Collina) [#&#8203;47926](https://github.com/nodejs/node/pull/47926) - \[[`b80e006c17`](https://github.com/nodejs/node/commit/b80e006c17)] - **doc**: mark global object as legacy (Mert Can Altın) [#&#8203;47819](https://github.com/nodejs/node/pull/47819) - \[[`bf4eb058f3`](https://github.com/nodejs/node/commit/bf4eb058f3)] - **doc**: ntfs junction points must link to directories (Ben Noordhuis) [#&#8203;47907](https://github.com/nodejs/node/pull/47907) - \[[`49875f0d69`](https://github.com/nodejs/node/commit/49875f0d69)] - **doc**: fix params names (Dmitry Semigradsky) [#&#8203;47853](https://github.com/nodejs/node/pull/47853) - \[[`94b5eaaf17`](https://github.com/nodejs/node/commit/94b5eaaf17)] - **doc**: update supported version of FreeBSD to 12.4 (Michaël Zasso) [#&#8203;47838](https://github.com/nodejs/node/pull/47838) - \[[`0114201825`](https://github.com/nodejs/node/commit/0114201825)] - **doc**: swap Matteo with Rafael in the stewards (Rafael Gonzaga) [#&#8203;47841](https://github.com/nodejs/node/pull/47841) - \[[`8bcfcc0af9`](https://github.com/nodejs/node/commit/8bcfcc0af9)] - **doc**: add valgrind suppression details (Kevin Eady) [#&#8203;47760](https://github.com/nodejs/node/pull/47760) - \[[`75d397ecab`](https://github.com/nodejs/node/commit/75d397ecab)] - **doc**: replace EOL versions in README (Tobias Nießen) [#&#8203;47833](https://github.com/nodejs/node/pull/47833) - \[[`2b0c57cb80`](https://github.com/nodejs/node/commit/2b0c57cb80)] - **doc**: add ovflowd to collaborators (Claudio Wunder) [#&#8203;47844](https://github.com/nodejs/node/pull/47844) - \[[`be4966977c`](https://github.com/nodejs/node/commit/be4966977c)] - **doc**: update BUILDING.md previous versions links (Tobias Nießen) [#&#8203;47835](https://github.com/nodejs/node/pull/47835) - \[[`a9e8a20fb8`](https://github.com/nodejs/node/commit/a9e8a20fb8)] - **doc**: create maintaining folder for deps (Marco Ippolito) [#&#8203;47589](https://github.com/nodejs/node/pull/47589) - \[[`fd0f362d7c`](https://github.com/nodejs/node/commit/fd0f362d7c)] - **doc**: remove MoLow from Triagers (Moshe Atlow) [#&#8203;47792](https://github.com/nodejs/node/pull/47792) - \[[`0927c67ab6`](https://github.com/nodejs/node/commit/0927c67ab6)] - **doc**: fix typo in webstreams.md (Christian Takle) [#&#8203;47766](https://github.com/nodejs/node/pull/47766) - \[[`994be578da`](https://github.com/nodejs/node/commit/994be578da)] - **doc**: move BethGriggs to regular member (Rich Trott) [#&#8203;47776](https://github.com/nodejs/node/pull/47776) - \[[`64d19f4678`](https://github.com/nodejs/node/commit/64d19f4678)] - **doc**: move addaleax to TSC emeriti (Anna Henningsen) [#&#8203;47752](https://github.com/nodejs/node/pull/47752) - \[[`33ec10e6b8`](https://github.com/nodejs/node/commit/33ec10e6b8)] - **doc**: add link to news for Node.js core (Michael Dawson) [#&#8203;47704](https://github.com/nodejs/node/pull/47704) - \[[`2a682b5efe`](https://github.com/nodejs/node/commit/2a682b5efe)] - **doc**: async_hooks asynchronous content example add mjs code (btea) [#&#8203;47401](https://github.com/nodejs/node/pull/47401) - \[[`4f541c3ca3`](https://github.com/nodejs/node/commit/4f541c3ca3)] - **doc**: clarify concurrency model of test runner (Tobias Nießen) [#&#8203;47642](https://github.com/nodejs/node/pull/47642) - \[[`ffcff68f0d`](https://github.com/nodejs/node/commit/ffcff68f0d)] - **doc**: fix typos (Mohammed Keyvanzadeh) [#&#8203;47685](https://github.com/nodejs/node/pull/47685) - \[[`290b2b7afc`](https://github.com/nodejs/node/commit/290b2b7afc)] - **doc**: fix capitalization of ASan (Mohammed Keyvanzadeh) [#&#8203;47676](https://github.com/nodejs/node/pull/47676) - \[[`b4ca788878`](https://github.com/nodejs/node/commit/b4ca788878)] - **doc**: fix typos in SECURITY.md (Mohammed Keyvanzadeh) [#&#8203;47677](https://github.com/nodejs/node/pull/47677) - \[[`971c545a47`](https://github.com/nodejs/node/commit/971c545a47)] - **doc**: update error code of buffer (Deokjin Kim) [#&#8203;47617](https://github.com/nodejs/node/pull/47617) - \[[`ec5c919928`](https://github.com/nodejs/node/commit/ec5c919928)] - **doc**: change offset of example in `Buffer.copyBytesFrom` (Deokjin Kim) [#&#8203;47606](https://github.com/nodejs/node/pull/47606) - \[[`980bf052c7`](https://github.com/nodejs/node/commit/980bf052c7)] - **doc**: remove markdown link from heading (Tobias Nießen) [#&#8203;47585](https://github.com/nodejs/node/pull/47585) - \[[`e96451ec5e`](https://github.com/nodejs/node/commit/e96451ec5e)] - **doc**: fix release-post script location (Rafael Gonzaga) [#&#8203;47517](https://github.com/nodejs/node/pull/47517) - \[[`61ea15339c`](https://github.com/nodejs/node/commit/61ea15339c)] - **doc**: add link for news from uvwasi team (Michael Dawson) [#&#8203;47531](https://github.com/nodejs/node/pull/47531) - \[[`d40bcdd73e`](https://github.com/nodejs/node/commit/d40bcdd73e)] - **doc**: add missing setEncoding call in ESM example (Anna Henningsen) [#&#8203;47558](https://github.com/nodejs/node/pull/47558) - \[[`924dc909b3`](https://github.com/nodejs/node/commit/924dc909b3)] - **doc**: fix typo in util.types.isNativeError() (Julian Dax) [#&#8203;47532](https://github.com/nodejs/node/pull/47532) - \[[`a24d72a6fb`](https://github.com/nodejs/node/commit/a24d72a6fb)] - **doc**: add KhafraDev to collaborators (Matthew Aitken) [#&#8203;47510](https://github.com/nodejs/node/pull/47510) - \[[`b0196378b6`](https://github.com/nodejs/node/commit/b0196378b6)] - **doc**: create maintaining-brotli.md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380) - \[[`3902be8fe8`](https://github.com/nodejs/node/commit/3902be8fe8)] - **doc**: info on handling unintended breaking changes (Michael Dawson) [#&#8203;47426](https://github.com/nodejs/node/pull/47426) - \[[`670f9a591d`](https://github.com/nodejs/node/commit/670f9a591d)] - **doc**: add performance initiative (Yagiz Nizipli) [#&#8203;47424](https://github.com/nodejs/node/pull/47424) - \[[`89a5d04a8e`](https://github.com/nodejs/node/commit/89a5d04a8e)] - **doc**: do not create a backup file (Luigi Pinca) [#&#8203;47151](https://github.com/nodejs/node/pull/47151) - \[[`7f2bccc5d6`](https://github.com/nodejs/node/commit/7f2bccc5d6)] - **doc**: add MoLow to the TSC (Colin Ihrig) [#&#8203;47436](https://github.com/nodejs/node/pull/47436) - \[[`7db2e889ac`](https://github.com/nodejs/node/commit/7db2e889ac)] - **doc**: add a note about os.cpus() returning an empty list (codedokode) [#&#8203;47363](https://github.com/nodejs/node/pull/47363) - \[[`289a8e30d6`](https://github.com/nodejs/node/commit/289a8e30d6)] - **doc**: clarify reports are only evaluated on active versions (Rafael Gonzaga) [#&#8203;47341](https://github.com/nodejs/node/pull/47341) - \[[`dc22edb4d2`](https://github.com/nodejs/node/commit/dc22edb4d2)] - **doc**: remove Vladimir de Turckheim from Security release stewards (Vladimir de Turckheim) [#&#8203;47318](https://github.com/nodejs/node/pull/47318) - \[[`3e74a74da3`](https://github.com/nodejs/node/commit/3e74a74da3)] - **doc**: add importing util to example of \`process.report.getReport' (Deokjin Kim) [#&#8203;47298](https://github.com/nodejs/node/pull/47298) - \[[`ece029f64e`](https://github.com/nodejs/node/commit/ece029f64e)] - **doc**: vm.SourceTextModule() without context option (Axel Kittenberger) [#&#8203;47295](https://github.com/nodejs/node/pull/47295) - \[[`c7227204cc`](https://github.com/nodejs/node/commit/c7227204cc)] - **doc**: document process for sharing project news (Michael Dawson) [#&#8203;47189](https://github.com/nodejs/node/pull/47189) - \[[`2865cbb4bd`](https://github.com/nodejs/node/commit/2865cbb4bd)] - **doc**: revise example of assert.CallTracker (Deokjin Kim) [#&#8203;47252](https://github.com/nodejs/node/pull/47252) - \[[`81ebaf2670`](https://github.com/nodejs/node/commit/81ebaf2670)] - **doc**: fix typo in SECURITY.md (Rich Trott) [#&#8203;47282](https://github.com/nodejs/node/pull/47282) - \[[`faabd48f11`](https://github.com/nodejs/node/commit/faabd48f11)] - **doc**: use serial comma in cli docs (Tobias Nießen) [#&#8203;47262](https://github.com/nodejs/node/pull/47262) - \[[`3a85794089`](https://github.com/nodejs/node/commit/3a85794089)] - **doc**: improve example for Error.captureStackTrace() (Julian Dax) [#&#8203;46886](https://github.com/nodejs/node/pull/46886) - \[[`2114fa472b`](https://github.com/nodejs/node/commit/2114fa472b)] - **doc**: clarify http error events after calling destroy() (Zach Bjornson) [#&#8203;46903](https://github.com/nodejs/node/pull/46903) - \[[`d15f522d1f`](https://github.com/nodejs/node/commit/d15f522d1f)] - **doc**: update output of example in AbortController (Deokjin Kim) [#&#8203;47227](https://github.com/nodejs/node/pull/47227) - \[[`ab6588e343`](https://github.com/nodejs/node/commit/ab6588e343)] - **doc**: drop one-week branch sync on major releases (Rafael Gonzaga) [#&#8203;47149](https://github.com/nodejs/node/pull/47149) - \[[`6ac52e3061`](https://github.com/nodejs/node/commit/6ac52e3061)] - **doc**: fix grammar in the collaborator guide (Mohammed Keyvanzadeh) [#&#8203;47245](https://github.com/nodejs/node/pull/47245) - \[[`13175774a6`](https://github.com/nodejs/node/commit/13175774a6)] - **doc**: update stream.reduce concurrency note (Raz Luvaton) [#&#8203;47166](https://github.com/nodejs/node/pull/47166) - \[[`1e97ccd6d4`](https://github.com/nodejs/node/commit/1e97ccd6d4)] - **doc**: remove use of DEFAULT_ENCODING in PBKDF2 docs (Tobias Nießen) [#&#8203;47181](https://github.com/nodejs/node/pull/47181) - \[[`d562a7c461`](https://github.com/nodejs/node/commit/d562a7c461)] - **doc**: fix typos in async_context.md (Shubham Sharma) [#&#8203;47155](https://github.com/nodejs/node/pull/47155) - \[[`9a11788cdf`](https://github.com/nodejs/node/commit/9a11788cdf)] - **doc**: update collaborator guide to reflect TSC changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126) - \[[`5fc2bb763f`](https://github.com/nodejs/node/commit/5fc2bb763f)] - **doc**: clarify that `fs.create{Read,Write}Stream` support `AbortSignal` (Antoine du Hamel) [#&#8203;47122](https://github.com/nodejs/node/pull/47122) - \[[`2dd3b0213e`](https://github.com/nodejs/node/commit/2dd3b0213e)] - **doc**: improve documentation for util.types.isNativeError() (Julian Dax) [#&#8203;46840](https://github.com/nodejs/node/pull/46840) - \[[`ce4636e36b`](https://github.com/nodejs/node/commit/ce4636e36b)] - **doc**: rename the startup performance initiative to startup snapshot ([#&#8203;47111](https://github.com/nodejs/node/issues/47111)) (Joyee Cheung) - \[[`309d017f15`](https://github.com/nodejs/node/commit/309d017f15)] - **doc**: fix "maintaining dependencies" heading typos (Keyhan Vakil) [#&#8203;47082](https://github.com/nodejs/node/pull/47082) - \[[`230a984eb3`](https://github.com/nodejs/node/commit/230a984eb3)] - **doc**: include webstreams in finished() and Duplex.from() parameters (Debadree Chatterjee) [#&#8203;46312](https://github.com/nodejs/node/pull/46312) - \[[`8651ea822e`](https://github.com/nodejs/node/commit/8651ea822e)] - **doc,fs**: update description of fs.stat() method (Mert Can Altın) [#&#8203;47654](https://github.com/nodejs/node/pull/47654) - \[[`e4539e1f19`](https://github.com/nodejs/node/commit/e4539e1f19)] - **doc,test**: update the v8.startupSnapshot doc and test the example (Joyee Cheung) [#&#8203;47468](https://github.com/nodejs/node/pull/47468) - \[[`3dddc0175f`](https://github.com/nodejs/node/commit/3dddc0175f)] - **doc,test**: fix concurrency option of test() (Tobias Nießen) [#&#8203;47734](https://github.com/nodejs/node/pull/47734) - \[[`563f9fe06a`](https://github.com/nodejs/node/commit/563f9fe06a)] - **doc,vm**: clarify usage of cachedData in vm.compileFunction() (Darshan Sen) [#&#8203;48193](https://github.com/nodejs/node/pull/48193) - \[[`316016ffac`](https://github.com/nodejs/node/commit/316016ffac)] - **esm**: avoid accessing lazy getters for urls (Yagiz Nizipli) [#&#8203;47542](https://github.com/nodejs/node/pull/47542) - \[[`e5e385d2b2`](https://github.com/nodejs/node/commit/e5e385d2b2)] - **esm**: increase test coverage of edge cases (Antoine du Hamel) [#&#8203;47033](https://github.com/nodejs/node/pull/47033) - \[[`061fb20660`](https://github.com/nodejs/node/commit/061fb20660)] - **(SEMVER-MINOR)** **events**: add getMaxListeners method (Matthew Aitken) [#&#8203;47039](https://github.com/nodejs/node/pull/47039) - \[[`ed0b62cc01`](https://github.com/nodejs/node/commit/ed0b62cc01)] - **(SEMVER-MINOR)** **fs**: add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084) - \[[`9b44c56c9a`](https://github.com/nodejs/node/commit/9b44c56c9a)] - **fs**: make readdir recursive algorithm iterative (Ethan Arrowood) [#&#8203;47650](https://github.com/nodejs/node/pull/47650) - \[[`7273ef53b3`](https://github.com/nodejs/node/commit/7273ef53b3)] - **(SEMVER-MINOR)** **fs**: add recursive option to readdir and opendir (Ethan Arrowood) [#&#8203;41439](https://github.com/nodejs/node/pull/41439) - \[[`3f0636d2c1`](https://github.com/nodejs/node/commit/3f0636d2c1)] - **(SEMVER-MINOR)** **fs**: add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) [#&#8203;47084](https://github.com/nodejs/node/pull/47084) - \[[`a0b9853251`](https://github.com/nodejs/node/commit/a0b9853251)] - **(SEMVER-MINOR)** **fs**: implement byob mode for readableWebStream() (Debadree Chatterjee) [#&#8203;46933](https://github.com/nodejs/node/pull/46933) - \[[`709e368708`](https://github.com/nodejs/node/commit/709e368708)] - **http**: send implicit headers on HEAD with no body (Matteo Collina) [#&#8203;48108](https://github.com/nodejs/node/pull/48108) - \[[`dc318f26c0`](https://github.com/nodejs/node/commit/dc318f26c0)] - **(SEMVER-MINOR)** **http**: prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) [#&#8203;47732](https://github.com/nodejs/node/pull/47732) - \[[`4b2a015642`](https://github.com/nodejs/node/commit/4b2a015642)] - **(SEMVER-MINOR)** **http**: remove internal error in assignSocket (Matteo Collina) [#&#8203;47723](https://github.com/nodejs/node/pull/47723) - \[[`7cef6aa721`](https://github.com/nodejs/node/commit/7cef6aa721)] - **(SEMVER-MINOR)** **http**: add highWaterMark opt in http.createServer (HinataKah0) [#&#8203;47405](https://github.com/nodejs/node/pull/47405) - \[[`9186f3a0ef`](https://github.com/nodejs/node/commit/9186f3a0ef)] - **http2**: improve nghttp2 error callback (Tobias Nießen) [#&#8203;47840](https://github.com/nodejs/node/pull/47840) - \[[`cc7e5dd4cd`](https://github.com/nodejs/node/commit/cc7e5dd4cd)] - **inspector**: add tips for Session (theanarkh) [#&#8203;47195](https://github.com/nodejs/node/pull/47195) - \[[`70c0e882d3`](https://github.com/nodejs/node/commit/70c0e882d3)] - **inspector**: log response and requests in the inspector for debugging (Joyee Cheung) [#&#8203;46941](https://github.com/nodejs/node/pull/46941) - \[[`6099d2d08b`](https://github.com/nodejs/node/commit/6099d2d08b)] - **inspector**: fix session.disconnect crash (theanarkh) [#&#8203;46942](https://github.com/nodejs/node/pull/46942) - \[[`156292d44a`](https://github.com/nodejs/node/commit/156292d44a)] - **lib**: create weakRef only if any signals provided (Chemi Atlow) [#&#8203;48448](https://github.com/nodejs/node/pull/48448) - \[[`efaa073303`](https://github.com/nodejs/node/commit/efaa073303)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.any() (Chemi Atlow) [#&#8203;47821](https://github.com/nodejs/node/pull/47821) - \[[`c46b31f3bf`](https://github.com/nodejs/node/commit/c46b31f3bf)] - **lib**: support FORCE_COLOR for non TTY streams (Moshe Atlow) [#&#8203;48034](https://github.com/nodejs/node/pull/48034) - \[[`286c358832`](https://github.com/nodejs/node/commit/286c358832)] - **lib**: do not disable linter for entire files (Antoine du Hamel) [#&#8203;48299](https://github.com/nodejs/node/pull/48299) - \[[`a2552ab7c0`](https://github.com/nodejs/node/commit/a2552ab7c0)] - **lib**: use existing `isWindows` variable (sinkhaha) [#&#8203;48134](https://github.com/nodejs/node/pull/48134) - \[[`2b65625281`](https://github.com/nodejs/node/commit/2b65625281)] - **lib**: update comment (sinkhaha) [#&#8203;47884](https://github.com/nodejs/node/pull/47884) - \[[`fa447b5120`](https://github.com/nodejs/node/commit/fa447b5120)] - **lib**: use webidl DOMString converter in EventTarget (Matthew Aitken) [#&#8203;47514](https://github.com/nodejs/node/pull/47514) - \[[`33f32dc318`](https://github.com/nodejs/node/commit/33f32dc318)] - **lib**: define Event.isTrusted in the prototype (Santiago Gimeno) [#&#8203;46974](https://github.com/nodejs/node/pull/46974) - \[[`50789a5e4a`](https://github.com/nodejs/node/commit/50789a5e4a)] - **lib**: refactor to use `validateBuffer` (Deokjin Kim) [#&#8203;46489](https://github.com/nodejs/node/pull/46489) - \[[`3658abea26`](https://github.com/nodejs/node/commit/3658abea26)] - **(SEMVER-MINOR)** **lib**: add webstreams to Duplex.from() (Debadree Chatterjee) [#&#8203;46190](https://github.com/nodejs/node/pull/46190) - \[[`fcf3781d22`](https://github.com/nodejs/node/commit/fcf3781d22)] - **lib,src,test**: lint codebase according new rules for v18.x (Juan José Arboleda) [#&#8203;48697](https://github.com/nodejs/node/pull/48697) - \[[`b55dc53422`](https://github.com/nodejs/node/commit/b55dc53422)] - **meta**: bump github/codeql-action from 2.3.3 to 2.3.6 (dependabot\[bot]) [#&#8203;48287](https://github.com/nodejs/node/pull/48287) - \[[`8ac4579d85`](https://github.com/nodejs/node/commit/8ac4579d85)] - **meta**: bump actions/setup-python from 4.6.0 to 4.6.1 (dependabot\[bot]) [#&#8203;48286](https://github.com/nodejs/node/pull/48286) - \[[`b1854fe9c1`](https://github.com/nodejs/node/commit/b1854fe9c1)] - **meta**: bump codecov/codecov-action from 3.1.3 to 3.1.4 (dependabot\[bot]) [#&#8203;48285](https://github.com/nodejs/node/pull/48285) - \[[`d9448b8d93`](https://github.com/nodejs/node/commit/d9448b8d93)] - **meta**: remove dont-land-on-v14 auto labeling (Shrujal Shah) [#&#8203;48031](https://github.com/nodejs/node/pull/48031) - \[[`bb859768b6`](https://github.com/nodejs/node/commit/bb859768b6)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;48010](https://github.com/nodejs/node/pull/48010) - \[[`af90fb939b`](https://github.com/nodejs/node/commit/af90fb939b)] - **meta**: bump step-security/harden-runner from 2.3.1 to 2.4.0 (Rich Trott) [#&#8203;47980](https://github.com/nodejs/node/pull/47980) - \[[`4dcf5e2052`](https://github.com/nodejs/node/commit/4dcf5e2052)] - **meta**: bump github/codeql-action from 2.3.2 to 2.3.3 (Rich Trott) [#&#8203;47979](https://github.com/nodejs/node/pull/47979) - \[[`dab3186ea2`](https://github.com/nodejs/node/commit/dab3186ea2)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (Rich Trott) [#&#8203;47968](https://github.com/nodejs/node/pull/47968) - \[[`546224c13c`](https://github.com/nodejs/node/commit/546224c13c)] - **meta**: add security-wg ping to permission.js (Rafael Gonzaga) [#&#8203;47941](https://github.com/nodejs/node/pull/47941) - \[[`353dfbd2d6`](https://github.com/nodejs/node/commit/353dfbd2d6)] - **meta**: bump step-security/harden-runner from 2.2.1 to 2.3.1 (dependabot\[bot]) [#&#8203;47808](https://github.com/nodejs/node/pull/47808) - \[[`20a5cc27ec`](https://github.com/nodejs/node/commit/20a5cc27ec)] - **meta**: bump actions/setup-python from 4.5.0 to 4.6.0 (dependabot\[bot]) [#&#8203;47806](https://github.com/nodejs/node/pull/47806) - \[[`eef6442d8d`](https://github.com/nodejs/node/commit/eef6442d8d)] - **meta**: bump actions/checkout from 3.3.0 to 3.5.2 (dependabot\[bot]) [#&#8203;47805](https://github.com/nodejs/node/pull/47805) - \[[`e30e6a718a`](https://github.com/nodejs/node/commit/e30e6a718a)] - **meta**: remove extra space in scorecard workflow (Mestery) [#&#8203;47805](https://github.com/nodejs/node/pull/47805) - \[[`2d13cdebc4`](https://github.com/nodejs/node/commit/2d13cdebc4)] - **meta**: bump github/codeql-action from 2.2.9 to 2.3.2 (dependabot\[bot]) [#&#8203;47809](https://github.com/nodejs/node/pull/47809) - \[[`f0d8352ed8`](https://github.com/nodejs/node/commit/f0d8352ed8)] - **meta**: bump codecov/codecov-action from 3.1.1 to 3.1.3 (dependabot\[bot]) [#&#8203;47807](https://github.com/nodejs/node/pull/47807) - \[[`7e95fba0ff`](https://github.com/nodejs/node/commit/7e95fba0ff)] - **meta**: fix dependabot commit message (Mestery) [#&#8203;47810](https://github.com/nodejs/node/pull/47810) - \[[`d31d9c7c28`](https://github.com/nodejs/node/commit/d31d9c7c28)] - **meta**: ping nodejs/startup for startup test changes (Joyee Cheung) [#&#8203;47771](https://github.com/nodejs/node/pull/47771) - \[[`077686055b`](https://github.com/nodejs/node/commit/077686055b)] - **meta**: add mailmap entry for KhafraDev (Rich Trott) [#&#8203;47512](https://github.com/nodejs/node/pull/47512) - \[[`e50eb6570a`](https://github.com/nodejs/node/commit/e50eb6570a)] - **meta**: ping security-wg team on permission model changes (Rafael Gonzaga) [#&#8203;47483](https://github.com/nodejs/node/pull/47483) - \[[`2df1a36214`](https://github.com/nodejs/node/commit/2df1a36214)] - **meta**: ping startup and realm team on src/node_realm\* changes (Joyee Cheung) [#&#8203;47448](https://github.com/nodejs/node/pull/47448) - \[[`c7dc6e321b`](https://github.com/nodejs/node/commit/c7dc6e321b)] - **meta**: fix notable-change comment label url (Filip Skokan) [#&#8203;47300](https://github.com/nodejs/node/pull/47300) - \[[`e859ca44d5`](https://github.com/nodejs/node/commit/e859ca44d5)] - **meta**: clarify the threat model to explain the JSON.parse case (Matteo Collina) [#&#8203;47276](https://github.com/nodejs/node/pull/47276) - \[[`1f08f4848d`](https://github.com/nodejs/node/commit/1f08f4848d)] - **meta**: update link to collaborators discussion page (Michaël Zasso) [#&#8203;47211](https://github.com/nodejs/node/pull/47211) - \[[`3b524cbf86`](https://github.com/nodejs/node/commit/3b524cbf86)] - **meta**: automate description requests when notable change label is added (Danielle Adams) [#&#8203;47078](https://github.com/nodejs/node/pull/47078) - \[[`da16ca7c59`](https://github.com/nodejs/node/commit/da16ca7c59)] - **meta**: move TSC voting member(s) to regular member(s) (Node.js GitHub Bot) [#&#8203;47180](https://github.com/nodejs/node/pull/47180) - \[[`0c80e60d7e`](https://github.com/nodejs/node/commit/0c80e60d7e)] - **meta**: move TSC voting member to regular membership (Node.js GitHub Bot) [#&#8203;46985](https://github.com/nodejs/node/pull/46985) - \[[`0edcfed895`](https://github.com/nodejs/node/commit/0edcfed895)] - **meta**: update GOVERNANCE.md to reflect TSC charter changes (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126) - \[[`baada5d035`](https://github.com/nodejs/node/commit/baada5d035)] - **meta**: ask expected behavior reason in bug template (Ben Noordhuis) [#&#8203;47049](https://github.com/nodejs/node/pull/47049) - \[[`5d75ec402e`](https://github.com/nodejs/node/commit/5d75ec402e)] - **module**: reduce the number of URL initializations (Yagiz Nizipli) [#&#8203;48272](https://github.com/nodejs/node/pull/48272) - \[[`c5af5a4f4f`](https://github.com/nodejs/node/commit/c5af5a4f4f)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#&#8203;47824](https://github.com/nodejs/node/pull/47824) - \[[`cf8845d001`](https://github.com/nodejs/node/commit/cf8845d001)] - **module**: block requiring `test/reporters` without scheme (Moshe Atlow) [#&#8203;47831](https://github.com/nodejs/node/pull/47831) - \[[`ce7e6c6765`](https://github.com/nodejs/node/commit/ce7e6c6765)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#&#8203;48151](https://github.com/nodejs/node/pull/48151) - \[[`53c02b20b8`](https://github.com/nodejs/node/commit/53c02b20b8)] - **node-api**: add status napi_cannot_run_js (Gabriel Schulhof) [#&#8203;47986](https://github.com/nodejs/node/pull/47986) - \[[`4b280d5361`](https://github.com/nodejs/node/commit/4b280d5361)] - **node-api**: napi_ref on all types is experimental (Vladimir Morozov) [#&#8203;47975](https://github.com/nodejs/node/pull/47975) - \[[`e2553b12e7`](https://github.com/nodejs/node/commit/e2553b12e7)] - **(NODE-API-SEMVER-MAJOR)** **node-api**: get Node API version used by addon (Vladimir Morozov) [#&#8203;45715](https://github.com/nodejs/node/pull/45715) - \[[`beaad7f692`](https://github.com/nodejs/node/commit/beaad7f692)] - **node-api**: test passing NULL to napi_define_class (Gabriel Schulhof) [#&#8203;47567](https://github.com/nodejs/node/pull/47567) - \[[`6ab892780c`](https://github.com/nodejs/node/commit/6ab892780c)] - **node-api**: test passing NULL to number APIs (Gabriel Schulhof) [#&#8203;47549](https://github.com/nodejs/node/pull/47549) - \[[`a67e5ea89c`](https://github.com/nodejs/node/commit/a67e5ea89c)] - **node-api**: remove unused mark_arraybuffer_as_untransferable (Chengzhong Wu) [#&#8203;47557](https://github.com/nodejs/node/pull/47557) - \[[`7019d48ba1`](https://github.com/nodejs/node/commit/7019d48ba1)] - **(SEMVER-MINOR)** **node-api**: deprecate napi_module_register (Vladimir Morozov) [#&#8203;46319](https://github.com/nodejs/node/pull/46319) - \[[`395c56bd7c`](https://github.com/nodejs/node/commit/395c56bd7c)] - **node-api**: extend type-tagging to externals (Gabriel Schulhof) [#&#8203;47141](https://github.com/nodejs/node/pull/47141) - \[[`6e66371eee`](https://github.com/nodejs/node/commit/6e66371eee)] - **node-api**: document node-api shutdown finalization (Chengzhong Wu) [#&#8203;45903](https://github.com/nodejs/node/pull/45903) - \[[`d8d2d33efb`](https://github.com/nodejs/node/commit/d8d2d33efb)] - **node-api**: verify cleanup hooks order (Chengzhong Wu) [#&#8203;46692](https://github.com/nodejs/node/pull/46692) - \[[`b34eaf393e`](https://github.com/nodejs/node/commit/b34eaf393e)] - **path**: indicate index of wrong resolve() parameter (sosoba) [#&#8203;47660](https://github.com/nodejs/node/pull/47660) - \[[`13bc5488a1`](https://github.com/nodejs/node/commit/13bc5488a1)] - **permission**: remove unused function declaration (Deokjin Kim) [#&#8203;47957](https://github.com/nodejs/node/pull/47957) - \[[`5f8aef477e`](https://github.com/nodejs/node/commit/5f8aef477e)] - **quic**: address recent coverity warning (Michael Dawson) [#&#8203;47753](https://github.com/nodejs/node/pull/47753) - \[[`75d7024ecd`](https://github.com/nodejs/node/commit/75d7024ecd)] - **quic**: add more QUIC implementation (James M Snell) [#&#8203;47494](https://github.com/nodejs/node/pull/47494) - \[[`24840832bd`](https://github.com/nodejs/node/commit/24840832bd)] - **quic**: add more QUIC impl (James M Snell) [#&#8203;47348](https://github.com/nodejs/node/pull/47348) - \[[`114b8479b4`](https://github.com/nodejs/node/commit/114b8479b4)] - **readline**: fix issue with newline-less last line (Ian Harris) [#&#8203;47317](https://github.com/nodejs/node/pull/47317) - \[[`e668efac6b`](https://github.com/nodejs/node/commit/e668efac6b)] - **repl**: preserve preview on ESCAPE key press (Xuguang Mei) [#&#8203;46878](https://github.com/nodejs/node/pull/46878) - \[[`7306b0f733`](https://github.com/nodejs/node/commit/7306b0f733)] - **sea**: fix memory leak detected by asan (Darshan Sen) [#&#8203;47309](https://github.com/nodejs/node/pull/47309) - \[[`1f2c91f98a`](https://github.com/nodejs/node/commit/1f2c91f98a)] - **src**: use std::array for passing argv in node::url (Anna Henningsen) [#&#8203;47035](https://github.com/nodejs/node/pull/47035) - \[[`36bf06904f`](https://github.com/nodejs/node/commit/36bf06904f)] - **src**: add Realm document in the src README.md (Chengzhong Wu) [#&#8203;47932](https://github.com/nodejs/node/pull/47932) - \[[`5445835671`](https://github.com/nodejs/node/commit/5445835671)] - **src**: check node_extra_ca_certs after openssl cfg (Raghu Saxena) [#&#8203;48159](https://github.com/nodejs/node/pull/48159) - \[[`eb96856555`](https://github.com/nodejs/node/commit/eb96856555)] - **src**: include missing header in node_sea.h (Joyee Cheung) [#&#8203;48152](https://github.com/nodejs/node/pull/48152) - \[[`2a35462045`](https://github.com/nodejs/node/commit/2a35462045)] - **src**: deduplicate X509Certificate::Fingerprint\* (Tobias Nießen) [#&#8203;47978](https://github.com/nodejs/node/pull/47978) - \[[`4c556816bd`](https://github.com/nodejs/node/commit/4c556816bd)] - **src**: move BlobSerializerDeserializer to a separate header file (Darshan Sen) [#&#8203;47933](https://github.com/nodejs/node/pull/47933) - \[[`4bad757012`](https://github.com/nodejs/node/commit/4bad757012)] - **src**: rename SKIP_CHECK_SIZE to SKIP_CHECK_STRLEN (Tobias Nießen) [#&#8203;47845](https://github.com/nodejs/node/pull/47845) - \[[`33daa89dac`](https://github.com/nodejs/node/commit/33daa89dac)] - **src**: register ext reference for Fingerprint512 (Tobias Nießen) [#&#8203;47892](https://github.com/nodejs/node/pull/47892) - \[[`30b7133008`](https://github.com/nodejs/node/commit/30b7133008)] - **src**: clarify the parameter name in `Permission::Apply` (Daeyeon Jeong) [#&#8203;47874](https://github.com/nodejs/node/pull/47874) - \[[`274c0f2e0a`](https://github.com/nodejs/node/commit/274c0f2e0a)] - **src**: avoid strcmp() with Utf8Value (Tobias Nießen) [#&#8203;47827](https://github.com/nodejs/node/pull/47827) - \[[`559c98f468`](https://github.com/nodejs/node/commit/559c98f468)] - **src**: prefer data accessor of string and vector (Mohammed Keyvanzadeh) [#&#8203;47750](https://github.com/nodejs/node/pull/47750) - \[[`933673de61`](https://github.com/nodejs/node/commit/933673de61)] - **src**: avoid copying string in fs_permission (Yagiz Nizipli) [#&#8203;47746](https://github.com/nodejs/node/pull/47746) - \[[`77f2b97197`](https://github.com/nodejs/node/commit/77f2b97197)] - **src**: fix typo in comment in quic/sessionticket.cc (Tobias Nießen) [#&#8203;47754](https://github.com/nodejs/node/pull/47754) - \[[`8e6af9fcf4`](https://github.com/nodejs/node/commit/8e6af9fcf4)] - **src**: mark fatal error functions as noreturn (Chengzhong Wu) [#&#8203;47695](https://github.com/nodejs/node/pull/47695) - \[[`d0ad873b0e`](https://github.com/nodejs/node/commit/d0ad873b0e)] - **src**: prevent changing FunctionTemplateInfo after publish (Shelley Vohr) [#&#8203;46979](https://github.com/nodejs/node/pull/46979) - \[[`71fb476781`](https://github.com/nodejs/node/commit/71fb476781)] - **src**: use v8::Boolean(b) over b ? True() : False() (Tobias Nießen) [#&#8203;47554](https://github.com/nodejs/node/pull/47554) - \[[`175b78bc02`](https://github.com/nodejs/node/commit/175b78bc02)] - **src**: fix typo in process.env accessor error message (Moritz Raho) [#&#8203;47014](https://github.com/nodejs/node/pull/47014) - \[[`2c2b6d1661`](https://github.com/nodejs/node/commit/2c2b6d1661)] - **src**: replace static const string_view by static constexpr (Daniel Lemire) [#&#8203;47524](https://github.com/nodejs/node/pull/47524) - \[[`3840bb586e`](https://github.com/nodejs/node/commit/3840bb586e)] - **src**: fix CSPRNG when length exceeds INT_MAX (Tobias Nießen) [#&#8203;47515](https://github.com/nodejs/node/pull/47515) - \[[`f6aa38dc5f`](https://github.com/nodejs/node/commit/f6aa38dc5f)] - **src**: use correct variable in node_builtins.cc (Michaël Zasso) [#&#8203;47343](https://github.com/nodejs/node/pull/47343) - \[[`e88e249838`](https://github.com/nodejs/node/commit/e88e249838)] - **src**: slim down stream_base-inl.h (lilsweetcaligula) [#&#8203;46972](https://github.com/nodejs/node/pull/46972) - \[[`b34de64442`](https://github.com/nodejs/node/commit/b34de64442)] - **src**: allow simdutf::convert_\* functions to return zero (Daniel Lemire) [#&#8203;47471](https://github.com/nodejs/node/pull/47471) - \[[`ded4a5eb8f`](https://github.com/nodejs/node/commit/ded4a5eb8f)] - **src**: remove usage of `std::shared_ptr<T>::unique()` (Darshan Sen) [#&#8203;47315](https://github.com/nodejs/node/pull/47315) - \[[`0fbfb28cf5`](https://github.com/nodejs/node/commit/0fbfb28cf5)] - **src**: use stricter compile-time guidance (Tobias Nießen) [#&#8203;46509](https://github.com/nodejs/node/pull/46509) - \[[`a8430ad211`](https://github.com/nodejs/node/commit/a8430ad211)] - **src**: remove unused variable in crypto_x509.cc (Michaël Zasso) [#&#8203;47344](https://github.com/nodejs/node/pull/47344) - \[[`24dabf8965`](https://github.com/nodejs/node/commit/24dabf8965)] - **src**: don't reset embeder signal handlers (Dmitry Vyukov) [#&#8203;47188](https://github.com/nodejs/node/pull/47188) - \[[`4add36872c`](https://github.com/nodejs/node/commit/4add36872c)] - **src**: replace impossible THROW with CHECK (Tobias Nießen) [#&#8203;47168](https://github.com/nodejs/node/pull/47168) - \[[`e1007ff6a8`](https://github.com/nodejs/node/commit/e1007ff6a8)] - **src**: remove dead comments about return_code_cache (Keyhan Vakil) [#&#8203;47083](https://github.com/nodejs/node/pull/47083) - \[[`5501d12713`](https://github.com/nodejs/node/commit/5501d12713)] - **src**: remove SSL_CTX_get_tlsext_ticket_keys guards (Tobias Nießen) [#&#8203;47068](https://github.com/nodejs/node/pull/47068) - \[[`716d289874`](https://github.com/nodejs/node/commit/716d289874)] - **src**: fix clang 14 linker error (Keyhan Vakil) [#&#8203;47057](https://github.com/nodejs/node/pull/47057) - \[[`8809adfdb6`](https://github.com/nodejs/node/commit/8809adfdb6)] - **src**: clarify OptionEnvvarSettings member names (Chengzhong Wu) [#&#8203;45057](https://github.com/nodejs/node/pull/45057) - \[[`05f5c79574`](https://github.com/nodejs/node/commit/05f5c79574)] - **src**: per-realm binding data (Chengzhong Wu) [#&#8203;46556](https://github.com/nodejs/node/pull/46556) - \[[`a7620d19c8`](https://github.com/nodejs/node/commit/a7620d19c8)] - **src,http2**: ensure cleanup if a frame is not sent (ywave620) [#&#8203;47244](https://github.com/nodejs/node/pull/47244) - \[[`585d62848e`](https://github.com/nodejs/node/commit/585d62848e)] - **stream**: deprecate asIndexedPairs (Chemi Atlow) [#&#8203;48102](https://github.com/nodejs/node/pull/48102) - \[[`d3449ca010`](https://github.com/nodejs/node/commit/d3449ca010)] - **stream**: prevent pipeline hang with generator functions (Debadree Chatterjee) [#&#8203;47712](https://github.com/nodejs/node/pull/47712) - \[[`5e4b2434a6`](https://github.com/nodejs/node/commit/5e4b2434a6)] - **(SEMVER-MINOR)** **stream**: preserve object mode in compose (Raz Luvaton) [#&#8203;47413](https://github.com/nodejs/node/pull/47413) - \[[`912eb308ab`](https://github.com/nodejs/node/commit/912eb308ab)] - **(SEMVER-MINOR)** **stream**: add setter & getter for default highWaterMark ([#&#8203;46929](https://github.com/nodejs/node/issues/46929)) (Robert Nagy) [#&#8203;46929](https://github.com/nodejs/node/pull/46929) - \[[`c59887744a`](https://github.com/nodejs/node/commit/c59887744a)] - **stream**: expose stream symbols (Robert Nagy) [#&#8203;45671](https://github.com/nodejs/node/pull/45671) - \[[`4edc1abf0b`](https://github.com/nodejs/node/commit/4edc1abf0b)] - **stream**: dont wait for next item in take when finished (Raz Luvaton) [#&#8203;47132](https://github.com/nodejs/node/pull/47132) - \[[`cfb18d816d`](https://github.com/nodejs/node/commit/cfb18d816d)] - **stream**: remove brandchecks from stream duplexify (Debadree Chatterjee) [#&#8203;46315](https://github.com/nodejs/node/pull/46315) - \[[`9d4025c411`](https://github.com/nodejs/node/commit/9d4025c411)] - **test**: mark test-child-process-pipe-dataflow as flaky (Moshe Atlow) [#&#8203;48334](https://github.com/nodejs/node/pull/48334) - \[[`c29b6874d4`](https://github.com/nodejs/node/commit/c29b6874d4)] - **test**: unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`0e3312b01b`](https://github.com/nodejs/node/commit/0e3312b01b)] - **test**: fix zlib version regex (Luigi Pinca) [#&#8203;48227](https://github.com/nodejs/node/pull/48227) - \[[`a9d0b8d005`](https://github.com/nodejs/node/commit/a9d0b8d005)] - **test**: use lower security level in s_client (Luigi Pinca) [#&#8203;48192](https://github.com/nodejs/node/pull/48192) - \[[`7250d8c2f1`](https://github.com/nodejs/node/commit/7250d8c2f1)] - ***Revert*** "**test**: unskip negative-settimeout.any.js WPT" (Filip Skokan) [#&#8203;48182](https://github.com/nodejs/node/pull/48182) - \[[`18476697bd`](https://github.com/nodejs/node/commit/18476697bd)] - **test**: mark test_cannot_run_js as flaky (Keyhan Vakil) [#&#8203;48181](https://github.com/nodejs/node/pull/48181) - \[[`446f6118ff`](https://github.com/nodejs/node/commit/446f6118ff)] - **test**: fix flaky test-runner-watch-mode (Moshe Atlow) [#&#8203;48144](https://github.com/nodejs/node/pull/48144) - \[[`7fa144e3fe`](https://github.com/nodejs/node/commit/7fa144e3fe)] - **test**: skip test-http-pipeline-flood on IBM i (Abdirahim Musse) [#&#8203;48048](https://github.com/nodejs/node/pull/48048) - \[[`5c5b1d2867`](https://github.com/nodejs/node/commit/5c5b1d2867)] - **test**: ignore helper files in WPTs (Filip Skokan) [#&#8203;48079](https://github.com/nodejs/node/pull/48079) - \[[`3b2cee071b`](https://github.com/nodejs/node/commit/3b2cee071b)] - **test**: move `test-cluster-primary-error` flaky test (Yagiz Nizipli) [#&#8203;48039](https://github.com/nodejs/node/pull/48039) - \[[`7b816b4922`](https://github.com/nodejs/node/commit/7b816b4922)] - **test**: fix suite signal (Benjamin Gruenbaum) [#&#8203;47800](https://github.com/nodejs/node/pull/47800) - \[[`ca4a0e3717`](https://github.com/nodejs/node/commit/ca4a0e3717)] - **test**: fix parsing test flags (Daeyeon Jeong) [#&#8203;48012](https://github.com/nodejs/node/pull/48012) - \[[`a3f0504556`](https://github.com/nodejs/node/commit/a3f0504556)] - **test**: mark test-esm-loader-http-imports as flaky (Tobias Nießen) [#&#8203;47987](https://github.com/nodejs/node/pull/47987) - \[[`ab36a30143`](https://github.com/nodejs/node/commit/ab36a30143)] - **test**: unskip negative-settimeout.any.js WPT (Filip Skokan) [#&#8203;47946](https://github.com/nodejs/node/pull/47946) - \[[`7c80439b21`](https://github.com/nodejs/node/commit/7c80439b21)] - **test**: use appropriate usages for a negative import test (Filip Skokan) [#&#8203;47878](https://github.com/nodejs/node/pull/47878) - \[[`81d8d95ba0`](https://github.com/nodejs/node/commit/81d8d95ba0)] - **test**: fix webcrypto wrap unwrap tests (Filip Skokan) [#&#8203;47876](https://github.com/nodejs/node/pull/47876) - \[[`1b84e85576`](https://github.com/nodejs/node/commit/1b84e85576)] - **test**: fix output tests when path includes node version (Moshe Atlow) [#&#8203;47843](https://github.com/nodejs/node/pull/47843) - \[[`95972aac8d`](https://github.com/nodejs/node/commit/95972aac8d)] - **test**: migrate a pseudo_tty test to use assertSnapshot (Moshe Atlow) [#&#8203;47803](https://github.com/nodejs/node/pull/47803) - \[[`f1e131283d`](https://github.com/nodejs/node/commit/f1e131283d)] - **test**: fix WPT state when process exits but workers are still running (Filip Skokan) [#&#8203;47826](https://github.com/nodejs/node/pull/47826) - \[[`03dcf7bc94`](https://github.com/nodejs/node/commit/03dcf7bc94)] - **test**: migrate message tests to use assertSnapshot (Moshe Atlow) [#&#8203;47498](https://github.com/nodejs/node/pull/47498) - \[[`dedbeee336`](https://github.com/nodejs/node/commit/dedbeee336)] - **test**: refactor to use `getEventListeners` in timers (Deokjin Kim) [#&#8203;47759](https://github.com/nodejs/node/pull/47759) - \[[`11a2d1c4e4`](https://github.com/nodejs/node/commit/11a2d1c4e4)] - **test**: add and use tmpdir.hasEnoughSpace() (Tobias Nießen) [#&#8203;47767](https://github.com/nodejs/node/pull/47767) - \[[`d669714e57`](https://github.com/nodejs/node/commit/d669714e57)] - **test**: remove spaces from test runner test names (Tobias Nießen) [#&#8203;47733](https://github.com/nodejs/node/pull/47733) - \[[`3a9c43a6d7`](https://github.com/nodejs/node/commit/3a9c43a6d7)] - **test**: mark test-cluster-primary-error flaky on asan (Yagiz Nizipli) [#&#8203;47422](https://github.com/nodejs/node/pull/47422) - \[[`bd1eb14cb0`](https://github.com/nodejs/node/commit/bd1eb14cb0)] - **test**: remove unnecessary status check on test-release-npm (RafaelGSS) [#&#8203;47516](https://github.com/nodejs/node/pull/47516) - \[[`914f68d953`](https://github.com/nodejs/node/commit/914f68d953)] - **test**: mark test/parallel/test-file-write-stream4 as flaky (Yagiz Nizipli) [#&#8203;47423](https://github.com/nodejs/node/pull/47423) - \[[`7c4178cb11`](https://github.com/nodejs/node/commit/7c4178cb11)] - **test**: remove unused callback variables (angellovc) [#&#8203;47167](https://github.com/nodejs/node/pull/47167) - \[[`d0bda902dc`](https://github.com/nodejs/node/commit/d0bda902dc)] - **test**: migrate test runner message tests to snapshot (Moshe Atlow) [#&#8203;47392](https://github.com/nodejs/node/pull/47392) - \[[`095ca5ccf2`](https://github.com/nodejs/node/commit/095ca5ccf2)] - **test**: remove stale entry from known_issues.status (Richard Lau) [#&#8203;47454](https://github.com/nodejs/node/pull/47454) - \[[`8820d5415b`](https://github.com/nodejs/node/commit/8820d5415b)] - **test**: move more inspector sequential tests to parallel (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`f6ef5c4ad3`](https://github.com/nodejs/node/commit/f6ef5c4ad3)] - **test**: use random port in test-inspector-enabled (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`e97ceeca69`](https://github.com/nodejs/node/commit/e97ceeca69)] - **test**: use random port in test-inspector-debug-brk-flag (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`a2e4643981`](https://github.com/nodejs/node/commit/a2e4643981)] - **test**: use random port in NodeInstance.startViaSignal() (Joyee Cheung) [#&#8203;47412](https://github.com/nodejs/node/pull/47412) - \[[`a779261732`](https://github.com/nodejs/node/commit/a779261732)] - **test**: fix flaky test-watch-mode-inspect (Moshe Atlow) [#&#8203;47403](https://github.com/nodejs/node/pull/47403) - \[[`116df2ad3e`](https://github.com/nodejs/node/commit/116df2ad3e)] - **test**: move debugger tests with --port=0 to parallel (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274) - \[[`016b8bd27d`](https://github.com/nodejs/node/commit/016b8bd27d)] - **test**: use --port=0 in debugger tests that do not have to work on 9229 (Joyee Cheung) [#&#8203;47274](https://github.com/nodejs/node/pull/47274) - \[[`3c157cb7a3`](https://github.com/nodejs/node/commit/3c157cb7a3)] - **test**: run doctool tests in parallel (Joyee Cheung) [#&#8203;47273](https://github.com/nodejs/node/pull/47273) - \[[`44f08ed941`](https://github.com/nodejs/node/commit/44f08ed941)] - **test**: move test-shadow-realm-gc.js to known_issues (Joyee Cheung) [#&#8203;47355](https://github.com/nodejs/node/pull/47355) - \[[`e2b5d968c3`](https://github.com/nodejs/node/commit/e2b5d968c3)] - **test**: update wasm/jsapi WPT (Michaël Zasso) [#&#8203;47210](https://github.com/nodejs/node/pull/47210) - \[[`53d9eb5950`](https://github.com/nodejs/node/commit/53d9eb5950)] - **test**: skip test-wasm-web-api on ARM (Michaël Zasso) [#&#8203;47299](https://github.com/nodejs/node/pull/47299) - \[[`b620f5fcd6`](https://github.com/nodejs/node/commit/b620f5fcd6)] - **test**: skip instantiateStreaming-bad-imports WPT (Michaël Zasso) [#&#8203;47292](https://github.com/nodejs/node/pull/47292) - \[[`1e6fe56333`](https://github.com/nodejs/node/commit/1e6fe56333)] - **test**: fix test-child-process-exec-cwd (Stefan Stojanovic) [#&#8203;47235](https://github.com/nodejs/node/pull/47235) - \[[`0dc4971aab`](https://github.com/nodejs/node/commit/0dc4971aab)] - **test**: skip broken tests win arm64 (Stefan Stojanovic) [#&#8203;47020](https://github.com/nodejs/node/pull/47020) - \[[`6fee6050e3`](https://github.com/nodejs/node/commit/6fee6050e3)] - **test**: fix 'checks' validation test for checkPrime (Tobias Nießen) [#&#8203;47139](https://github.com/nodejs/node/pull/47139) - \[[`6b85472f01`](https://github.com/nodejs/node/commit/6b85472f01)] - **test**: update URL web-platform-tests (Yagiz Nizipli) [#&#8203;47135](https://github.com/nodejs/node/pull/47135) - \[[`732a98e1ba`](https://github.com/nodejs/node/commit/732a98e1ba)] - **test**: reduce flakiness of test-http-remove-header-stays-removed.js (Debadree Chatterjee) [#&#8203;46855](https://github.com/nodejs/node/pull/46855) - \[[`713b412ee9`](https://github.com/nodejs/node/commit/713b412ee9)] - **test**: mark test-http-max-sockets as flaky on win32 (Tobias Nießen) [#&#8203;47134](https://github.com/nodejs/node/pull/47134) - \[[`b3b7dbc395`](https://github.com/nodejs/node/commit/b3b7dbc395)] - **test**: update web-platform tests for url (Xuguang Mei) [#&#8203;46860](https://github.com/nodejs/node/pull/46860) - \[[`2edd0fdb5b`](https://github.com/nodejs/node/commit/2edd0fdb5b)] - **test**: mark test-child-process-stdio-reuse-readable-stdio flaky (Luigi Pinca) [#&#8203;48537](https://github.com/nodejs/node/pull/48537) - \[[`fae240e492`](https://github.com/nodejs/node/commit/fae240e492)] - **test**: mark test-child-process-pipe-dataflow as flaky (Moshe Atlow) [#&#8203;48334](https://github.com/nodejs/node/pull/48334) - \[[`9ca3cc0f2a`](https://github.com/nodejs/node/commit/9ca3cc0f2a)] - **test**: remove useless require('../common') from WPTs (Filip Skokan) [#&#8203;46796](https://github.com/nodejs/node/pull/46796) - \[[`4bece055a5`](https://github.com/nodejs/node/commit/4bece055a5)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47921](https://github.com/nodejs/node/pull/47921) - \[[`7ef169b706`](https://github.com/nodejs/node/commit/7ef169b706)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47222](https://github.com/nodejs/node/pull/47222) - \[[`873606b355`](https://github.com/nodejs/node/commit/873606b355)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;47131](https://github.com/nodejs/node/pull/47131) - \[[`8f1fc0bc99`](https://github.com/nodejs/node/commit/8f1fc0bc99)] - **test,doc,sea**: run SEA tests on ppc64 (Darshan Sen) [#&#8203;48111](https://github.com/nodejs/node/pull/48111) - \[[`5d910ca389`](https://github.com/nodejs/node/commit/5d910ca389)] - **test_runner**: add enqueue and dequeue events (Moshe Atlow) [#&#8203;48428](https://github.com/nodejs/node/pull/48428) - \[[`d795c0ab0c`](https://github.com/nodejs/node/commit/d795c0ab0c)] - **test_runner**: dont split lines on `test:stdout` (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057) - \[[`04eb1f85da`](https://github.com/nodejs/node/commit/04eb1f85da)] - **test_runner**: pass FORCE_COLOR to child process (Moshe Atlow) [#&#8203;48057](https://github.com/nodejs/node/pull/48057) - \[[`2262653148`](https://github.com/nodejs/node/commit/2262653148)] - **test_runner**: apply `runOnly` on suites (Moshe Atlow) [#&#8203;48279](https://github.com/nodejs/node/pull/48279) - \[[`033d0bb3e1`](https://github.com/nodejs/node/commit/033d0bb3e1)] - **test_runner**: emit `test:watch:drained` event (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259) - \[[`618a9e1c09`](https://github.com/nodejs/node/commit/618a9e1c09)] - **test_runner**: stop watch mode when abortSignal aborted (Moshe Atlow) [#&#8203;48259](https://github.com/nodejs/node/pull/48259) - \[[`6a82fbd006`](https://github.com/nodejs/node/commit/6a82fbd006)] - **test_runner**: fix global after hook (Moshe Atlow) [#&#8203;48231](https://github.com/nodejs/node/pull/48231) - \[[`d1295d7b10`](https://github.com/nodejs/node/commit/d1295d7b10)] - **test_runner**: remove redundant check from coverage (Colin Ihrig) [#&#8203;48070](https://github.com/nodejs/node/pull/48070) - \[[`47602fe73b`](https://github.com/nodejs/node/commit/47602fe73b)] - **test_runner**: fix test deserialize edge cases (Moshe Atlow) [#&#8203;48106](https://github.com/nodejs/node/pull/48106) - \[[`b18a78cd0b`](https://github.com/nodejs/node/commit/b18a78cd0b)] - **test_runner**: delegate stderr and stdout formatting to reporter (Shiba) [#&#8203;48045](https://github.com/nodejs/node/pull/48045) - \[[`e0d0b19c30`](https://github.com/nodejs/node/commit/e0d0b19c30)] - **test_runner**: display dot report as wide as the terminal width (Raz Luvaton) [#&#8203;48038](https://github.com/nodejs/node/pull/48038) - \[[`bdca468a79`](https://github.com/nodejs/node/commit/bdca468a79)] - **test_runner**: use v8.serialize instead of TAP (Moshe Atlow) [#&#8203;47867](https://github.com/nodejs/node/pull/47867) - \[[`866ed6a887`](https://github.com/nodejs/node/commit/866ed6a887)] - **(SEMVER-MINOR)** **test_runner**: add shorthands to `test` (Chemi Atlow) [#&#8203;47909](https://github.com/nodejs/node/pull/47909) - \[[`4737314865`](https://github.com/nodejs/node/commit/4737314865)] - **test_runner**: fix ordering of test hooks (Phil Nash) [#&#8203;47931](https://github.com/nodejs/node/pull/47931) - \[[`ea543d95f6`](https://github.com/nodejs/node/commit/ea543d95f6)] - **test_runner**: omit inaccessible files from coverage (Colin Ihrig) [#&#8203;47850](https://github.com/nodejs/node/pull/47850) - \[[`8398bca842`](https://github.com/nodejs/node/commit/8398bca842)] - **test_runner**: fix --require with --experimental-loader (Moshe Atlow) [#&#8203;47751](https://github.com/nodejs/node/pull/47751) - \[[`4c0036ba1b`](https://github.com/nodejs/node/commit/4c0036ba1b)] - **(SEMVER-MINOR)** **test_runner**: support combining coverage reports (Colin Ihrig) [#&#8203;47686](https://github.com/nodejs/node/pull/47686) - \[[`cb3abda9aa`](https://github.com/nodejs/node/commit/cb3abda9aa)] - **test_runner**: remove no-op validation (Colin Ihrig) [#&#8203;47687](https://github.com/nodejs/node/pull/47687) - \[[`323881f60b`](https://github.com/nodejs/node/commit/323881f60b)] - **test_runner**: fix test runner concurrency (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675) - \[[`3bbb1fc990`](https://github.com/nodejs/node/commit/3bbb1fc990)] - **test_runner**: fix test counting (Moshe Atlow) [#&#8203;47675](https://github.com/nodejs/node/pull/47675) - \[[`0ea63717ba`](https://github.com/nodejs/node/commit/0ea63717ba)] - **test_runner**: fix nested hooks (Moshe Atlow) [#&#8203;47648](https://github.com/nodejs/node/pull/47648) - \[[`fa18b17d88`](https://github.com/nodejs/node/commit/fa18b17d88)] - **test_runner**: add testNamePatterns to run api (atlowChemi) [#&#8203;47648](https://github.com/nodejs/node/pull/47648) - \[[`2033691bfc`](https://github.com/nodejs/node/commit/2033691bfc)] - **test_runner**: support coverage of unnamed functions (Colin Ihrig) [#&#8203;47652](https://github.com/nodejs/node/pull/47652) - \[[`882c6127ae`](https://github.com/nodejs/node/commit/882c6127ae)] - **test_runner**: move coverage collection to root.postRun() (Colin Ihrig) [#&#8203;47651](https://github.com/nodejs/node/pull/47651) - \[[`e97eefa538`](https://github.com/nodejs/node/commit/e97eefa538)] - **(SEMVER-MINOR)** **test_runner**: execute before hook on test (Chemi Atlow) [#&#8203;47586](https://github.com/nodejs/node/pull/47586) - \[[`4bce39108c`](https://github.com/nodejs/node/commit/4bce39108c)] - **test_runner**: avoid reporting parents of failing tests in summary (Moshe Atlow) [#&#8203;47579](https://github.com/nodejs/node/pull/47579) - \[[`688078b93a`](https://github.com/nodejs/node/commit/688078b93a)] - **test_runner**: fix spec skip detection (Moshe Atlow) [#&#8203;47537](https://github.com/nodejs/node/pull/47537) - \[[`0b32a8c8a3`](https://github.com/nodejs/node/commit/0b32a8c8a3)] - **test_runner**: color errors only when colors are available (Moshe Atlow) [#&#8203;47394](https://github.com/nodejs/node/pull/47394) - \[[`d5fc8236bf`](https://github.com/nodejs/node/commit/d5fc8236bf)] - **test_runner**: hide failing tests title when all tests pass (Moshe Atlow) [#&#8203;47370](https://github.com/nodejs/node/pull/47370) - \[[`1d453e4d31`](https://github.com/nodejs/node/commit/1d453e4d31)] - **test_runner**: stringify AssertError expected and actual (Moshe Atlow) [#&#8203;47088](https://github.com/nodejs/node/pull/47088) - \[[`99312a55f2`](https://github.com/nodejs/node/commit/99312a55f2)] - **test_runner**: add code coverage support to spec reporter (Pulkit Gupta) [#&#8203;46674](https://github.com/nodejs/node/pull/46674) - \[[`2091b4718f`](https://github.com/nodejs/node/commit/2091b4718f)] - **(SEMVER-MINOR)** **test_runner**: expose reporter for use in run api (Chemi Atlow) [#&#8203;47238](https://github.com/nodejs/node/pull/47238) - \[[`9cbf89717e`](https://github.com/nodejs/node/commit/9cbf89717e)] - **test_runner**: report failing tests after summary (HinataKah0) [#&#8203;47164](https://github.com/nodejs/node/pull/47164) - \[[`460bcc042e`](https://github.com/nodejs/node/commit/460bcc042e)] - **test_runner**: count nested tests (Moshe Atlow) [#&#8203;47094](https://github.com/nodejs/node/pull/47094) - \[[`c62e6b2e54`](https://github.com/nodejs/node/commit/c62e6b2e54)] - **test_runner**: accept \x1b as a escape symbol (Debadree Chatterjee) [#&#8203;47050](https://github.com/nodejs/node/pull/47050) - \[[`ddf819f810`](https://github.com/nodejs/node/commit/ddf819f810)] - **test_runner**: support defining test reporter in NODE_OPTIONS (Steve Herzog) [#&#8203;46688](https://github.com/nodejs/node/pull/46688) - \[[`e049ce296a`](https://github.com/nodejs/node/commit/e049ce296a)] - **tls**: reapply servername on happy eyeballs connect (Fedor Indutny) [#&#8203;48255](https://github.com/nodejs/node/pull/48255) - \[[`19b0f244b2`](https://github.com/nodejs/node/commit/19b0f244b2)] - **tls**: accept SecureContext object in server.addContext() (HinataKah0) [#&#8203;47570](https://github.com/nodejs/node/pull/47570) - \[[`7786d7cece`](https://github.com/nodejs/node/commit/7786d7cece)] - **tools**: pin ruff version number (Rich Trott) [#&#8203;48505](https://github.com/nodejs/node/pull/48505) - \[[`a2bfe02289`](https://github.com/nodejs/node/commit/a2bfe02289)] - **tools**: remove non-existing file from CODEOWNERS file (Juan José Arboleda) [#&#8203;48697](https://github.com/nodejs/node/pull/48697) - \[[`87562c9af0`](https://github.com/nodejs/node/commit/87562c9af0)] - **tools**: update rollup lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48329](https://github.com/nodejs/node/pull/48329) - \[[`1cde4a4299`](https://github.com/nodejs/node/commit/1cde4a4299)] - ***Revert*** "**tools**: open issue when update workflow fails" (Marco Ippolito) [#&#8203;48312](https://github.com/nodejs/node/pull/48312) - \[[`361cf8cffc`](https://github.com/nodejs/node/commit/361cf8cffc)] - **tools**: don't gitignore base64 config.h (Ben Noordhuis) [#&#8203;48174](https://github.com/nodejs/node/pull/48174) - \[[`0cfdb3affa`](https://github.com/nodejs/node/commit/0cfdb3affa)] - **tools**: update LICENSE and license-builder.sh (Santiago Gimeno) [#&#8203;48078](https://github.com/nodejs/node/pull/48078) - \[[`715cf81b4a`](https://github.com/nodejs/node/commit/715cf81b4a)] - **tools**: automate histogram update (Marco Ippolito) [#&#8203;48171](https://github.com/nodejs/node/pull/48171) - \[[`d9afffab03`](https://github.com/nodejs/node/commit/d9afffab03)] - **tools**: use shasum instead of sha256sum (Luigi Pinca) [#&#8203;48229](https://github.com/nodejs/node/pull/48229) - \[[`1a5cddfc1f`](https://github.com/nodejs/node/commit/1a5cddfc1f)] - **tools**: harmonize `dep_updaters` scripts (Antoine du Hamel) [#&#8203;48201](https://github.com/nodejs/node/pull/48201) - \[[`24abe07dda`](https://github.com/nodejs/node/commit/24abe07dda)] - **tools**: log and verify sha256sum (Andrea Fassina) [#&#8203;48088](https://github.com/nodejs/node/pull/48088) - \[[`9aed8683aa`](https://github.com/nodejs/node/commit/9aed8683aa)] - **tools**: open issue when update workflow fails (Marco Ippolito) [#&#8203;48018](https://github.com/nodejs/node/pull/48018) - \[[`4c5c63fd82`](https://github.com/nodejs/node/commit/4c5c63fd82)] - **tools**: alphabetize CODEOWNERS (Rich Trott) [#&#8203;48124](https://github.com/nodejs/node/pull/48124) - \[[`9b849a7270`](https://github.com/nodejs/node/commit/9b849a7270)] - **tools**: use latest upstream commit for zlib updates (Andrea Fassina) [#&#8203;48054](https://github.com/nodejs/node/pull/48054) - \[[`e18c1258ae`](https://github.com/nodejs/node/commit/e18c1258ae)] - **tools**: add security-wg as dep updaters owner (Marco Ippolito) [#&#8203;48113](https://github.com/nodejs/node/pull/48113) - \[[`999a289dd9`](https://github.com/nodejs/node/commit/999a289dd9)] - **tools**: fix race condition when npm installing (Tobias Nießen) [#&#8203;48101](https://github.com/nodejs/node/pull/48101) - \[[`25b0033b86`](https://github.com/nodejs/node/commit/25b0033b86)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#&#8203;48098](https://github.com/nodejs/node/pull/48098) - \[[`87b36b3a8a`](https://github.com/nodejs/node/commit/87b36b3a8a)] - **tools**: update cpplint to 1.6.1 (Yagiz Nizipli) [#&#8203;48098](https://github.com/nodejs/node/pull/48098) - \[[`64ff6fe443`](https://github.com/nodejs/node/commit/64ff6fe443)] - **tools**: update eslint to 8.41.0 (Node.js GitHub Bot) [#&#8203;48097](https://github.com/nodejs/node/pull/48097) - \[[`739c314851`](https://github.com/nodejs/node/commit/739c314851)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;48096](https://github.com/nodejs/node/pull/48096) - \[[`6674ed1901`](https://github.com/nodejs/node/commit/6674ed1901)] - **tools**: update doc to remark-parse@10.0.2 (Node.js GitHub Bot) [#&#8203;48095](https://github.com/nodejs/node/pull/48095) - \[[`0b0818caab`](https://github.com/nodejs/node/commit/0b0818caab)] - **tools**: add debug logs (Marco Ippolito) [#&#8203;48060](https://github.com/nodejs/node/pull/48060) - \[[`168d080f40`](https://github.com/nodejs/node/commit/168d080f40)] - **tools**: fix zconf.h path (Luigi Pinca) [#&#8203;48089](https://github.com/nodejs/node/pull/48089) - \[[`ccd2795f42`](https://github.com/nodejs/node/commit/ccd2795f42)] - **tools**: update remark-preset-lint-node to 4.0.0 (Node.js GitHub Bot) [#&#8203;47995](https://github.com/nodejs/node/pull/47995) - \[[`89e068a550`](https://github.com/nodejs/node/commit/89e068a550)] - **tools**: debug log for nghttp3 (Marco Ippolito) [#&#8203;47992](https://github.com/nodejs/node/pull/47992) - \[[`3bf2bd4ec6`](https://github.com/nodejs/node/commit/3bf2bd4ec6)] - **tools**: automate icu-small update (Marco Ippolito) [#&#8203;47727](https://github.com/nodejs/node/pull/47727) - \[[`fdf9681dc0`](https://github.com/nodejs/node/commit/fdf9681dc0)] - **tools**: update lint-md-dependencies to rollup@3.21.5 (Node.js GitHub Bot) [#&#8203;47903](https://github.com/nodejs/node/pull/47903) - \[[`52532c2cb1`](https://github.com/nodejs/node/commit/52532c2cb1)] - **tools**: update eslint to 8.40.0 (Node.js GitHub Bot) [#&#8203;47906](https://github.com/nodejs/node/pull/47906) - \[[`951cc7b624`](https://github.com/nodejs/node/commit/951cc7b624)] - **tools**: update eslint to 8.39.0 (Node.js GitHub Bot) [#&#8203;47789](https://github.com/nodejs/node/pull/47789) - \[[`706c87db50`](https://github.com/nodejs/node/commit/706c87db50)] - **tools**: fix jsdoc lint (Moshe Atlow) [#&#8203;47789](https://github.com/nodejs/node/pull/47789) - \[[`8eef5f5f5f`](https://github.com/nodejs/node/commit/8eef5f5f5f)] - **tools**: update doc to highlight.js@11.8.0 (Node.js GitHub Bot) [#&#8203;47786](https://github.com/nodejs/node/pull/47786) - \[[`899eea6237`](https://github.com/nodejs/node/commit/899eea6237)] - **tools**: update lint-md-dependencies to rollup@3.21.1 (Node.js GitHub Bot) [#&#8203;47787](https://github.com/nodejs/node/pull/47787) - \[[`8ca50b6ac9`](https://github.com/nodejs/node/commit/8ca50b6ac9)] - **tools**: move update-npm to dep updaters (Marco Ippolito) [#&#8203;47619](https://github.com/nodejs/node/pull/47619) - \[[`5ee554397d`](https://github.com/nodejs/node/commit/5ee554397d)] - **tools**: fix update-v8-patch cache (Marco Ippolito) [#&#8203;47725](https://github.com/nodejs/node/pull/47725) - \[[`4e0d19e1bd`](https://github.com/nodejs/node/commit/4e0d19e1bd)] - **tools**: automate v8 patch update (Marco Ippolito) [#&#8203;47594](https://github.com/nodejs/node/pull/47594) - \[[`64c3154bdf`](https://github.com/nodejs/node/commit/64c3154bdf)] - **tools**: fix skip message in update-cjs-module-lexer (Tobias Nießen) [#&#8203;47701](https://github.com/nodejs/node/pull/47701) - \[[`6535ab90d9`](https://github.com/nodejs/node/commit/6535ab90d9)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-commonjs](https://github.com/rollup/plugin-commonjs)[@&#8203;24](https://github.com/24).1.0 (Node.js GitHub Bot) [#&#8203;47577](https://github.com/nodejs/node/pull/47577) - \[[`7cfc00d072`](https://github.com/nodejs/node/commit/7cfc00d072)] - **tools**: keep PR titles/description up-to-date (Tobias Nießen) [#&#8203;47621](https://github.com/nodejs/node/pull/47621) - \[[`d6b555e2c8`](https://github.com/nodejs/node/commit/d6b555e2c8)] - **tools**: fix updating root certificates (Richard Lau) [#&#8203;47607](https://github.com/nodejs/node/pull/47607) - \[[`0d3e3ddea6`](https://github.com/nodejs/node/commit/0d3e3ddea6)] - **tools**: update PR label config (Mohammed Keyvanzadeh) [#&#8203;47593](https://github.com/nodejs/node/pull/47593) - \[[`fa52c472b8`](https://github.com/nodejs/node/commit/fa52c472b8)] - **tools**: add execution permission to uvwasi script (Mert Can Altın) [#&#8203;47600](https://github.com/nodejs/node/pull/47600) - \[[`f6955a6b0c`](https://github.com/nodejs/node/commit/f6955a6b0c)] - **tools**: add update script for googletest (Tobias Nießen) [#&#8203;47482](https://github.com/nodejs/node/pull/47482) - \[[`4e1d87e752`](https://github.com/nodejs/node/commit/4e1d87e752)] - **tools**: add option to run workflow with specific tool id (Michaël Zasso) [#&#8203;47591](https://github.com/nodejs/node/pull/47591) - \[[`e605402590`](https://github.com/nodejs/node/commit/e605402590)] - **tools**: automate zlib update (Marco Ippolito) [#&#8203;47417](https://github.com/nodejs/node/pull/47417) - \[[`b6ca57e8d0`](https://github.com/nodejs/node/commit/b6ca57e8d0)] - **tools**: add url and whatwg-url labels automatically (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545) - \[[`d5c9bc4f8e`](https://github.com/nodejs/node/commit/d5c9bc4f8e)] - **tools**: add performance label to benchmark changes (Yagiz Nizipli) [#&#8203;47545](https://github.com/nodejs/node/pull/47545) - \[[`c5227628a9`](https://github.com/nodejs/node/commit/c5227628a9)] - **tools**: automate uvwasi dependency update (Ranieri Innocenti Spada) [#&#8203;47509](https://github.com/nodejs/node/pull/47509) - \[[`5ffdb57302`](https://github.com/nodejs/node/commit/5ffdb57302)] - **tools**: add missing pinned dependencies (Mateo Nunez) [#&#8203;47346](https://github.com/nodejs/node/pull/47346) - \[[`c7b898d4e4`](https://github.com/nodejs/node/commit/c7b898d4e4)] - **tools**: automate ngtcp2 and nghttp3 update (Marco Ippolito) [#&#8203;47402](https://github.com/nodejs/node/pull/47402) - \[[`e696a48225`](https://github.com/nodejs/node/commit/e696a48225)] - **tools**: move update-undici.sh to dep_updaters and create maintain md (Marco Ippolito) [#&#8203;47380](https://github.com/nodejs/node/pull/47380) - \[[`056067286a`](https://github.com/nodejs/node/commit/056067286a)] - **tools**: make `js2c.py` usable for other build systems (Cheng Zhao) [#&#8203;46930](https://github.com/nodejs/node/pull/46930) - \[[`d11c6ba2eb`](https://github.com/nodejs/node/commit/d11c6ba2eb)] - **tools**: move update-acorn.sh to dep_updaters and create maintaining md (Marco Ippolito) [#&#8203;47382](https://github.com/nodejs/node/pull/47382) - \[[`0a65c7c300`](https://github.com/nodejs/node/commit/0a65c7c300)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475) - \[[`60dc249cd5`](https://github.com/nodejs/node/commit/60dc249cd5)] - **tools**: update eslint to 8.38.0 (Node.js GitHub Bot) [#&#8203;47475](https://github.com/nodejs/node/pull/47475) - \[[`1271b0eded`](https://github.com/nodejs/node/commit/1271b0eded)] - **tools**: automate cjs-module-lexer dependency update (Marco Ippolito) [#&#8203;47446](https://github.com/nodejs/node/pull/47446) - \[[`26905572d4`](https://github.com/nodejs/node/commit/26905572d4)] - **tools**: fix notify-on-push Slack messages (Antoine du Hamel) [#&#8203;47453](https://github.com/nodejs/node/pull/47453) - \[[`3c62663797`](https://github.com/nodejs/node/commit/3c62663797)] - **tools**: update lint-md-dependencies to [@&#8203;rollup/plugin-node-resolve](https://github.com/rollup/plugin-node-resolve)[@&#8203;15](https://github.com/15).0.2 (Node.js GitHub Bot) [#&#8203;47431](https://github.com/nodejs/node/pull/47431) - \[[`c57dabe360`](https://github.com/nodejs/node/commit/c57dabe360)] - **tools**: add root certificate update script (Richard Lau) [#&#8203;47425](https://github.com/nodejs/node/pull/47425) - \[[`f27680e37c`](https://github.com/nodejs/node/commit/f27680e37c)] - **tools**: fix update-openssl.yml compare version (Marco Ippolito) [#&#8203;47384](https://github.com/nodejs/node/pull/47384) - \[[`35e6cf2944`](https://github.com/nodejs/node/commit/35e6cf2944)] - **tools**: use ref_name to get branch pushed on (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358) - \[[`28935a86f8`](https://github.com/nodejs/node/commit/28935a86f8)] - **tools**: add a at here tag for slack messages (Debadree Chatterjee) [#&#8203;47358](https://github.com/nodejs/node/pull/47358) - \[[`e1846ee4f1`](https://github.com/nodejs/node/commit/e1846ee4f1)] - **tools**: disable Codecov commit statuses (Michaël Zasso) [#&#8203;47306](https://github.com/nodejs/node/pull/47306) - \[[`d1c8229da4`](https://github.com/nodejs/node/commit/d1c8229da4)] - **tools**: update eslint to 8.37.0 (Node.js GitHub Bot) [#&#8203;47333](https://github.com/nodejs/node/pull/47333) - \[[`6ab22151c4`](https://github.com/nodejs/node/commit/6ab22151c4)] - **tools**: fix duration_ms to be milliseconds (Moshe Atlow) [#&#8203;44490](https://github.com/nodejs/node/pull/44490) - \[[`5d46c594a7`](https://github.com/nodejs/node/commit/5d46c594a7)] - **tools**: automate brotli update (Marco Ippolito) [#&#8203;47205](https://github.com/nodejs/node/pull/47205) - \[[`d324c15227`](https://github.com/nodejs/node/commit/d324c15227)] - **tools**: fix typo in nghttp2 path (Marco Ippolito) [#&#8203;47330](https://github.com/nodejs/node/pull/47330) - \[[`b1bcdceef5`](https://github.com/nodejs/node/commit/b1bcdceef5)] - **tools**: add scorecard workflow (Mateo Nunez) [#&#8203;47254](https://github.com/nodejs/node/pull/47254) - \[[`281362bcc2`](https://github.com/nodejs/node/commit/281362bcc2)] - **tools**: pin actions by hash for auto-start-ci.yml (Gabriela Gutierrez) [#&#8203;46820](https://github.com/nodejs/node/pull/46820) - \[[`6cae1bd377`](https://github.com/nodejs/node/commit/6cae1bd377)] - **tools**: standardize base64 update (Marco Ippolito) [#&#8203;47201](https://github.com/nodejs/node/pull/47201) - \[[`a682bd0714`](https://github.com/nodejs/node/commit/a682bd0714)] - **tools**: update codecov branch (Rich Trott) [#&#8203;47285](https://github.com/nodejs/node/pull/47285) - \[[`1061e17c66`](https://github.com/nodejs/node/commit/1061e17c66)] - **tools**: standardize update-llhttp.sh (Marco Ippolito) [#&#8203;47198](https://github.com/nodejs/node/pull/47198) - \[[`9781185943`](https://github.com/nodejs/node/commit/9781185943)] - **tools**: upgrade Windows digital signature to SHA256 (Tobias Nießen) [#&#8203;47206](https://github.com/nodejs/node/pull/47206) - \[[`37638e43c5`](https://github.com/nodejs/node/commit/37638e43c5)] - **tools**: add button to copy code example to clipboard (jakecastelli) [#&#8203;46928](https://github.com/nodejs/node/pull/46928) - \[[`05cb503f02`](https://github.com/nodejs/node/commit/05cb503f02)] - **tools**: standardize update-nghttp2.sh (Marco Ippolito) [#&#8203;47197](https://github.com/nodejs/node/pull/47197) - \[[`816e215701`](https://github.com/nodejs/node/commit/816e215701)] - **tools**: fix Slack notification action (Antoine du Hamel) [#&#8203;47237](https://github.com/nodejs/node/pull/47237) - \[[`9ac01ecc59`](https://github.com/nodejs/node/commit/9ac01ecc59)] - **tools**: notify on Slack when invalid commit lands (Antoine du Hamel) [#&#8203;47178](https://github.com/nodejs/node/pull/47178) - \[[`13eb029b4f`](https://github.com/nodejs/node/commit/13eb029b4f)] - **tools**: update daily wpt actions summary (Filip Skokan) [#&#8203;47138](https://github.com/nodejs/node/pull/47138) - \[[`e0a00ebfc5`](https://github.com/nodejs/node/commit/e0a00ebfc5)] - **tools**: allow test tap output to include unicode characters (Moshe Atlow) [#&#8203;47175](https://github.com/nodejs/node/pull/47175) - \[[`fca3391d0b`](https://github.com/nodejs/node/commit/fca3391d0b)] - **tools**: update lint-md-dependencies to rollup@3.19.1 (Node.js GitHub Bot) [#&#8203;47045](https://github.com/nodejs/node/pull/47045) - \[[`c0fd6a3721`](https://github.com/nodejs/node/commit/c0fd6a3721)] - **tools**: update eslint to 8.36.0 (Node.js GitHub Bot) [#&#8203;47046](https://github.com/nodejs/node/pull/47046) - \[[`7d971daf29`](https://github.com/nodejs/node/commit/7d971daf29)] - **tools,meta**: update README and tools to reflect changes in TSC charter (Rich Trott) [#&#8203;47126](https://github.com/nodejs/node/pull/47126) - \[[`d078d66bdc`](https://github.com/nodejs/node/commit/d078d66bdc)] - **typings**: fix syntax error in tsconfig (Mohammed Keyvanzadeh) [#&#8203;47584](https://github.com/nodejs/node/pull/47584) - \[[`889730512c`](https://github.com/nodejs/node/commit/889730512c)] - **url**: handle URL.canParse without base parameter (Yagiz Nizipli) [#&#8203;47547](https://github.com/nodejs/node/pull/47547) - \[[`0dc485eb28`](https://github.com/nodejs/node/commit/0dc485eb28)] - **url**: drop ICU requirement for parsing hostnames (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339) - \[[`b395b16c40`](https://github.com/nodejs/node/commit/b395b16c40)] - **url**: use ada::url_aggregator for parsing urls (Yagiz Nizipli) [#&#8203;47339](https://github.com/nodejs/node/pull/47339) - \[[`11f48e02a8`](https://github.com/nodejs/node/commit/11f48e02a8)] - **(SEMVER-MINOR)** **url**: implement URL.canParse (Matthew Aitken) [#&#8203;47179](https://github.com/nodejs/node/pull/47179) - \[[`977a8bad35`](https://github.com/nodejs/node/commit/977a8bad35)] - **url**: fix array overrun in node:url::SetArgs() (Yagiz Nizipli) [#&#8203;47001](https://github.com/nodejs/node/pull/47001) - \[[`4784e64850`](https://github.com/nodejs/node/commit/4784e64850)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#&#8203;46989](https://github.com/nodejs/node/pull/46989) - \[[`f495cb6bf4`](https://github.com/nodejs/node/commit/f495cb6bf4)] - **url**: backport non-major changes from [#&#8203;46904](https://github.com/nodejs/node/issues/46904) (Yagiz Nizipli) [#&#8203;46904](https://github.com/nodejs/node/pull/46904) - \[[`aa4f485388`](https://github.com/nodejs/node/commit/aa4f485388)] - **url**: set `formatUrl` method as no side effect (Yagiz Nizipli) [#&#8203;46884](https://github.com/nodejs/node/pull/46884) - \[[`c79e1b72f2`](https://github.com/nodejs/node/commit/c79e1b72f2)] - **url**: offload `URLSearchParams` initialization (Yagiz Nizipli) [#&#8203;46867](https://github.com/nodejs/node/pull/46867) - \[[`3db235b822`](https://github.com/nodejs/node/commit/3db235b822)] - **url**: remove unused `kFormat` from url (Yagiz Nizipli) [#&#8203;46867](https://github.com/nodejs/node/pull/46867) - \[[`b9df1a9668`](https://github.com/nodejs/node/commit/b9df1a9668)] - **url**: clean vertical alignment of docs (Robin Ury) [#&#8203;48037](https://github.com/nodejs/node/pull/48037) - \[[`9a2354d4a9`](https://github.com/nodejs/node/commit/9a2354d4a9)] - **url**: do not use object as hashmap (Timothy Gu) [#&#8203;47415](https://github.com/nodejs/node/pull/47415) - \[[`4850ba4bd4`](https://github.com/nodejs/node/commit/4850ba4bd4)] - **url**: improve URLSearchParams creation performance (Yagiz Nizipli) [#&#8203;47190](https://github.com/nodejs/node/pull/47190) - \[[`7fb1980fd9`](https://github.com/nodejs/node/commit/7fb1980fd9)] - **url**: add pending-deprecation to `url.parse()` (Yagiz Nizipli) [#&#8203;47203](https://github.com/nodejs/node/pull/47203) - \[[`b04ea5aa9b`](https://github.com/nodejs/node/commit/b04ea5aa9b)] - **url**: allow extension of user provided URL objects (Antoine du Hamel) [#&#8203;46989](https://github.com/nodejs/node/pull/46989) - \[[`972c851918`](https://github.com/nodejs/node/commit/972c851918)] - **url**: remove unnecessary call to `FunctionPrototypeBind` (Antoine du Hamel) [#&#8203;46870](https://github.com/nodejs/node/pull/46870) - \[[`87ef1b2859`](https://github.com/nodejs/node/commit/87ef1b2859)] - **util**: fix inspecting error with a throwing getter for `cause` (Antoine du Hamel) [#&#8203;47163](https://github.com/nodejs/node/pull/47163) - \[[`4729d30c1e`](https://github.com/nodejs/node/commit/4729d30c1e)] - **v8**: fix ERR_NOT_BUILDING_SNAPSHOT is not a constructor (Chengzhong Wu) [#&#8203;47721](https://github.com/nodejs/node/pull/47721) - \[[`d9a68b821e`](https://github.com/nodejs/node/commit/d9a68b821e)] - **vm**: properly handle defining symbol props (Nicolas DUBIEN) [#&#8203;47572](https://github.com/nodejs/node/pull/47572) - \[[`0d0fad8f0a`](https://github.com/nodejs/node/commit/0d0fad8f0a)] - **vm**: fix crash when setting \__proto\_\_ on context's globalThis (Feng Yu) [#&#8203;47939](https://github.com/nodejs/node/pull/47939) - \[[`fb90b6b3fb`](https://github.com/nodejs/node/commit/fb90b6b3fb)] - **vm**: properly handle defining props on any value (Nicolas DUBIEN) [#&#8203;46615](https://github.com/nodejs/node/pull/46615) - \[[`4b2aa3d27c`](https://github.com/nodejs/node/commit/4b2aa3d27c)] - **vm,lib**: refactor microtaskQueue assignment logic (Khaidi Chu) [#&#8203;47765](https://github.com/nodejs/node/pull/47765) - \[[`58afcc27f6`](https://github.com/nodejs/node/commit/58afcc27f6)] - **(SEMVER-MINOR)** **wasi**: no longer require flag to enable wasi (Michael Dawson) [#&#8203;47286](https://github.com/nodejs/node/pull/47286) - \[[`407af51cf5`](https://github.com/nodejs/node/commit/407af51cf5)] - **wasi**: add wasi sock_accept stub (Michael Dawson) [#&#8203;46434](https://github.com/nodejs/node/pull/46434) - \[[`d3e0229948`](https://github.com/nodejs/node/commit/d3e0229948)] - **watch**: fix watch path with equals (Moshe Atlow) [#&#8203;47369](https://github.com/nodejs/node/pull/47369) - \[[`78972d4696`](https://github.com/nodejs/node/commit/78972d4696)] - **worker**: support more cases when (de)serializing errors (Moshe Atlow) [#&#8203;47925](https://github.com/nodejs/node/pull/47925) ### [`v18.16.1`](https://github.com/nodejs/node/releases/tag/v18.16.1): 2023-06-20, Version 18.16.1 &#x27;Hydrogen&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v18.16.0...v18.16.1) This is a security release. ##### Notable Changes The following CVEs are fixed in this release: - [CVE-2023-30581](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30581): `mainModule.__proto__` Bypass Experimental Policy Mechanism (High) - [CVE-2023-30585](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30585): Privilege escalation via Malicious Registry Key manipulation during Node.js installer repair process (Medium) - [CVE-2023-30588](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30588): Process interuption due to invalid Public Key information in x509 certificates (Medium) - [CVE-2023-30589](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30589): HTTP Request Smuggling via Empty headers separated by CR (Medium) - [CVE-2023-30590](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30590): DiffieHellman does not generate keys after setting a private key (Medium) - OpenSSL Security Releases - [OpenSSL security advisory 28th March](https://www.openssl.org/news/secadv/20230328.txt). - [OpenSSL security advisory 20th April](https://www.openssl.org/news/secadv/20230420.txt). - [OpenSSL security advisory 30th May](https://www.openssl.org/news/secadv/20230530.txt) - c-ares vulnerabilities: - [GHSA-9g78-jv2r-p7vc](https://github.com/c-ares/c-ares/security/advisories/GHSA-9g78-jv2r-p7vc) - [GHSA-8r8p-23f3-64c2](https://github.com/c-ares/c-ares/security/advisories/GHSA-8r8p-23f3-64c2) - [GHSA-54xr-f67r-4pc4](https://github.com/c-ares/c-ares/security/advisories/GHSA-54xr-f67r-4pc4) - [GHSA-x6mf-cxr9-8q6v](https://github.com/c-ares/c-ares/security/advisories/GHSA-x6mf-cxr9-8q6v) More detailed information on each of the vulnerabilities can be found in [June 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/june-2023-security-releases/) blog post. ##### Commits - \[[`bf3e2c8928`](https://github.com/nodejs/node/commit/bf3e2c8928)] - **crypto**: handle cert with invalid SPKI gracefully (Tobias Nießen) [nodejs-private/node-private#393](https://github.com/nodejs-private/node-private/pull/393) - \[[`70f9449072`](https://github.com/nodejs/node/commit/70f9449072)] - **deps**: set `CARES_RANDOM_FILE` for c-ares (Richard Lau) [#&#8203;48156](https://github.com/nodejs/node/pull/48156) - \[[`35d4efb57b`](https://github.com/nodejs/node/commit/35d4efb57b)] - **deps**: update c-ares to 1.19.1 (RafaelGSS) [#&#8203;48115](https://github.com/nodejs/node/pull/48115) - \[[`392dfedc77`](https://github.com/nodejs/node/commit/392dfedc77)] - **deps**: update archs files for openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402) - \[[`46cd5fe38b`](https://github.com/nodejs/node/commit/46cd5fe38b)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.9-quic1 (Node.js GitHub Bot) [#&#8203;48402](https://github.com/nodejs/node/pull/48402) - \[[`7e3d2d85c2`](https://github.com/nodejs/node/commit/7e3d2d85c2)] - **doc,test**: clarify behavior of DH generateKeys (Tobias Nießen) [nodejs-private/node-private#426](https://github.com/nodejs-private/node-private/pull/426) - \[[`4ff6ba050a`](https://github.com/nodejs/node/commit/4ff6ba050a)] - **http**: disable request smuggling via rempty headers (Paolo Insogna) [nodejs-private/node-private#428](https://github.com/nodejs-private/node-private/pull/428) - \[[`ab269129a6`](https://github.com/nodejs/node/commit/ab269129a6)] - **msi**: do not create AppData\Roaming\npm (Tobias Nießen) [nodejs-private/node-private#408](https://github.com/nodejs-private/node-private/pull/408) - \[[`925e8f5619`](https://github.com/nodejs/node/commit/925e8f5619)] - **policy**: handle mainModule.\__proto\_\_ bypass (RafaelGSS) [nodejs-private/node-private#416](https://github.com/nodejs-private/node-private/pull/416) - \[[`d6fae8e47e`](https://github.com/nodejs/node/commit/d6fae8e47e)] - **test**: allow SIGBUS in signal-handler abort test (Michaël Zasso) [#&#8203;47851](https://github.com/nodejs/node/pull/47851) ### [`v18.16.0`](https://github.com/nodejs/node/releases/tag/v18.16.0): 2023-04-12, Version 18.16.0 &#x27;Hydrogen&#x27; (LTS), @&#8203;danielleadams [Compare Source](https://github.com/nodejs/node/compare/v18.15.0...v18.16.0) ##### Notable changes ##### Add initial support for single executable applications Compile a JavaScript file into a single executable application: ```console $ echo 'console.log(`Hello, ${process.argv[2]}!`);' > hello.js $ cp $(command -v node) hello ### On systems other than macOS: $ npx postject hello NODE_JS_CODE hello.js \ --sentinel-fuse NODE_JS_FUSE_fce680ab2cc467b6e072b8b5df1996b2 ### On macOS: $ npx postject hello NODE_JS_CODE hello.js \ --sentinel-fuse NODE_JS_FUSE_fce680ab2cc467b6e072b8b5df1996b2 \ --macho-segment-name NODE_JS $ ./hello world Hello, world! ``` Contributed by Darshan Sen in [#&#8203;45038](https://github.com/nodejs/node/pull/45038) ##### Replace url parser with Ada Node.js gets a new URL parser called Ada that is compliant with the WHATWG URL Specification and provides more than 100% performance improvement to the existing implementation. Contributed by Yagiz Nizipli in [#&#8203;46410](https://github.com/nodejs/node/pull/46410) ##### Other notable changes - **buffer**: - **(SEMVER-MINOR)** add Buffer.copyBytesFrom(...) (James M Snell) [#&#8203;46500](https://github.com/nodejs/node/pull/46500) - **doc**: - add marco-ippolito to collaborators (Marco Ippolito) [#&#8203;46816](https://github.com/nodejs/node/pull/46816) - add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716) - add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444) - **events**: - **(SEMVER-MINOR)** add listener argument to listenerCount (Paolo Insogna) [#&#8203;46523](https://github.com/nodejs/node/pull/46523) - **lib**: - **(SEMVER-MINOR)** add AsyncLocalStorage.bind() and .snapshot() (flakey5) [#&#8203;46387](https://github.com/nodejs/node/pull/46387) - **(SEMVER-MINOR)** add aborted() utility function (Debadree Chatterjee) [#&#8203;46494](https://github.com/nodejs/node/pull/46494) - **src**: - **(SEMVER-MINOR)** allow optional Isolate termination in node::Stop() (Shelley Vohr) [#&#8203;46583](https://github.com/nodejs/node/pull/46583) - **(SEMVER-MINOR)** allow embedder control of code generation policy (Shelley Vohr) [#&#8203;46368](https://github.com/nodejs/node/pull/46368) - **stream**: - **(SEMVER-MINOR)** add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) [#&#8203;46273](https://github.com/nodejs/node/pull/46273) - **tls**: - **(SEMVER-MINOR)** support automatic DHE (Tobias Nießen) [#&#8203;46978](https://github.com/nodejs/node/pull/46978) - **url**: - **(SEMVER-MINOR)** implement URLSearchParams size getter (James M Snell) [#&#8203;46308](https://github.com/nodejs/node/pull/46308) - **worker**: - **(SEMVER-MINOR)** add support for worker name in inspector and trace_events (Debadree Chatterjee) [#&#8203;46832](https://github.com/nodejs/node/pull/46832) ##### Commits - \[[`c742493b61`](https://github.com/nodejs/node/commit/c742493b61)] - **assert**: fix exception message for assert(0) on try catch block (hidecology) [#&#8203;46760](https://github.com/nodejs/node/pull/46760) - \[[`0ddf73ae7c`](https://github.com/nodejs/node/commit/0ddf73ae7c)] - **assert**: remove deprecated getFunction() usage (Ruben Bridgewater) [#&#8203;46661](https://github.com/nodejs/node/pull/46661) - \[[`97ad72f19f`](https://github.com/nodejs/node/commit/97ad72f19f)] - **async_hooks**: add async local storage propagation benchmarks (Chengzhong Wu) [#&#8203;46414](https://github.com/nodejs/node/pull/46414) - \[[`b1bde69574`](https://github.com/nodejs/node/commit/b1bde69574)] - **async_hooks**: remove experimental onPropagate option (James M Snell) [#&#8203;46386](https://github.com/nodejs/node/pull/46386) - \[[`b5db3b579a`](https://github.com/nodejs/node/commit/b5db3b579a)] - **benchmark**: add a benchmark for URLSearchParams creation and toString() (Debadree Chatterjee) [#&#8203;46810](https://github.com/nodejs/node/pull/46810) - \[[`ff94f9ffbe`](https://github.com/nodejs/node/commit/ff94f9ffbe)] - **benchmark**: replace table in docs with description of file tree structure (Theodor Steiner) [#&#8203;46991](https://github.com/nodejs/node/pull/46991) - \[[`d4af671f09`](https://github.com/nodejs/node/commit/d4af671f09)] - **benchmark**: split `Buffer.byteLength` benchmark (Joyee Cheung) [#&#8203;46616](https://github.com/nodejs/node/pull/46616) - \[[`5f647fb7b4`](https://github.com/nodejs/node/commit/5f647fb7b4)] - **benchmark**: add benchmark for EventTarget add and remove (Debadree Chatterjee) [#&#8203;46779](https://github.com/nodejs/node/pull/46779) - \[[`d7d634bd67`](https://github.com/nodejs/node/commit/d7d634bd67)] - **benchmark**: fix worker startup benchmark (Joyee Cheung) [#&#8203;46680](https://github.com/nodejs/node/pull/46680) - \[[`f7c4796c56`](https://github.com/nodejs/node/commit/f7c4796c56)] - **benchmark**: add trailing commas in `benchmark/path` (Antoine du Hamel) [#&#8203;46628](https://github.com/nodejs/node/pull/46628) - \[[`9b0d5030a5`](https://github.com/nodejs/node/commit/9b0d5030a5)] - **benchmark**: add trailing commas in `benchmark/http` (Antoine du Hamel) [#&#8203;46609](https://github.com/nodejs/node/pull/46609) - \[[`e0f436041e`](https://github.com/nodejs/node/commit/e0f436041e)] - **benchmark**: add trailing commas in `benchmark/crypto` (Antoine du Hamel) [#&#8203;46553](https://github.com/nodejs/node/pull/46553) - \[[`a383aee386`](https://github.com/nodejs/node/commit/a383aee386)] - **benchmark**: add trailing commas in `benchmark/url` (Antoine du Hamel) [#&#8203;46551](https://github.com/nodejs/node/pull/46551) - \[[`a10c3558c6`](https://github.com/nodejs/node/commit/a10c3558c6)] - **benchmark**: add trailing commas in `benchmark/http2` (Antoine du Hamel) [#&#8203;46552](https://github.com/nodejs/node/pull/46552) - \[[`8036583f1f`](https://github.com/nodejs/node/commit/8036583f1f)] - **benchmark**: add trailing commas in `benchmark/process` (Antoine du Hamel) [#&#8203;46481](https://github.com/nodejs/node/pull/46481) - \[[`1497244078`](https://github.com/nodejs/node/commit/1497244078)] - **benchmark**: add trailing commas in `benchmark/misc` (Antoine du Hamel) [#&#8203;46474](https://github.com/nodejs/node/pull/46474) - \[[`057e3f5309`](https://github.com/nodejs/node/commit/057e3f5309)] - **benchmark**: add trailing commas in `benchmark/buffers` (Antoine du Hamel) [#&#8203;46473](https://github.com/nodejs/node/pull/46473) - \[[`26e1a81243`](https://github.com/nodejs/node/commit/26e1a81243)] - **benchmark**: add trailing commas in `benchmark/module` (Antoine du Hamel) [#&#8203;46461](https://github.com/nodejs/node/pull/46461) - \[[`bd6c828cf3`](https://github.com/nodejs/node/commit/bd6c828cf3)] - **benchmark**: add trailing commas in `benchmark/net` (Antoine du Hamel) [#&#8203;46439](https://github.com/nodejs/node/pull/46439) - \[[`01cf87aca7`](https://github.com/nodejs/node/commit/01cf87aca7)] - **benchmark**: add trailing commas in `benchmark/util` (Antoine du Hamel) [#&#8203;46438](https://github.com/nodejs/node/pull/46438) - \[[`f006b2f9dc`](https://github.com/nodejs/node/commit/f006b2f9dc)] - **benchmark**: add trailing commas in `benchmark/async_hooks` (Antoine du Hamel) [#&#8203;46424](https://github.com/nodejs/node/pull/46424) - \[[`f969cc30ab`](https://github.com/nodejs/node/commit/f969cc30ab)] - **benchmark**: add trailing commas in `benchmark/fs` (Antoine du Hamel) [#&#8203;46426](https://github.com/nodejs/node/pull/46426) - \[[`5202b84382`](https://github.com/nodejs/node/commit/5202b84382)] - **bootstrap**: print stack trace during environment creation failure (Joyee Cheung) [#&#8203;46533](https://github.com/nodejs/node/pull/46533) - \[[`c6e722aca4`](https://github.com/nodejs/node/commit/c6e722aca4)] - **(SEMVER-MINOR)** **buffer**: add Buffer.copyBytesFrom(...) (James M Snell) [#&#8203;46500](https://github.com/nodejs/node/pull/46500) - \[[`886504fdf8`](https://github.com/nodejs/node/commit/886504fdf8)] - **build**: fix Visual Studio installation detection for Arm64 (Radek Bartoň) [#&#8203;46420](https://github.com/nodejs/node/pull/46420) - \[[`2b72a453cf`](https://github.com/nodejs/node/commit/2b72a453cf)] - **build**: add GitHub Action for coverage with --without-intl (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954) - \[[`ff07aa7fe3`](https://github.com/nodejs/node/commit/ff07aa7fe3)] - **build**: do not disable inspector when intl is disabled (Rich Trott) [#&#8203;37954](https://github.com/nodejs/node/pull/37954) - \[[`4b25b98bd8`](https://github.com/nodejs/node/commit/4b25b98bd8)] - **build,test**: add proper support for IBM i (Xu Meng) [#&#8203;46739](https://github.com/nodejs/node/pull/46739) - \[[`535311097c`](https://github.com/nodejs/node/commit/535311097c)] - **child_process**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46758](https://github.com/nodejs/node/pull/46758) - \[[`d2692c65df`](https://github.com/nodejs/node/commit/d2692c65df)] - **cluster**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46695](https://github.com/nodejs/node/pull/46695) - \[[`effdca8b10`](https://github.com/nodejs/node/commit/effdca8b10)] - **crypto**: don't assume FIPS is disabled by default (Michael Dawson) [#&#8203;46532](https://github.com/nodejs/node/pull/46532) - \[[`bce37c60ce`](https://github.com/nodejs/node/commit/bce37c60ce)] - **debugger**: improve validations and documents for watch and unwatch (Eungyu Lee) [#&#8203;46947](https://github.com/nodejs/node/pull/46947) - \[[`51253bae83`](https://github.com/nodejs/node/commit/51253bae83)] - **debugger**: add a command to set which lines to check for context (Eungyu Lee) [#&#8203;46812](https://github.com/nodejs/node/pull/46812) - \[[`44375c6a3c`](https://github.com/nodejs/node/commit/44375c6a3c)] - **debugger**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46714](https://github.com/nodejs/node/pull/46714) - \[[`e5c4d69681`](https://github.com/nodejs/node/commit/e5c4d69681)] - **deps**: update ada to 1.0.4 (Node.js GitHub Bot) [#&#8203;46853](https://github.com/nodejs/node/pull/46853) - \[[`94f83536d7`](https://github.com/nodejs/node/commit/94f83536d7)] - **deps**: update ada to 1.0.3 (Node.js GitHub Bot) [#&#8203;46784](https://github.com/nodejs/node/pull/46784) - \[[`484c4f6674`](https://github.com/nodejs/node/commit/484c4f6674)] - **deps**: update ada to v1.0.1 (Yagiz Nizipli) [#&#8203;46550](https://github.com/nodejs/node/pull/46550) - \[[`0bc4c17e57`](https://github.com/nodejs/node/commit/0bc4c17e57)] - **deps**: add ada as a dependency (Yagiz Nizipli) [#&#8203;46410](https://github.com/nodejs/node/pull/46410) - \[[`956f786499`](https://github.com/nodejs/node/commit/956f786499)] - **deps**: update undici to 5.21.0 (Node.js GitHub Bot) [#&#8203;47063](https://github.com/nodejs/node/pull/47063) - \[[`73be4f8ef5`](https://github.com/nodejs/node/commit/73be4f8ef5)] - **deps**: update simdutf to 3.2.2 (Node.js GitHub Bot) [#&#8203;46841](https://github.com/nodejs/node/pull/46841) - \[[`0e78fd5883`](https://github.com/nodejs/node/commit/0e78fd5883)] - **deps**: update corepack to 0.17.0 (Node.js GitHub Bot) [#&#8203;46842](https://github.com/nodejs/node/pull/46842) - \[[`61c9433d8a`](https://github.com/nodejs/node/commit/61c9433d8a)] - **deps**: update simdutf to 3.2.1 (Node.js GitHub Bot) [#&#8203;46800](https://github.com/nodejs/node/pull/46800) - \[[`63a62ed532`](https://github.com/nodejs/node/commit/63a62ed532)] - **deps**: upgrade npm to 9.5.1 (npm team) [#&#8203;46783](https://github.com/nodejs/node/pull/46783) - \[[`c8974d678a`](https://github.com/nodejs/node/commit/c8974d678a)] - **deps**: update nghttp2 to 1.52.0 (Michaël Zasso) [#&#8203;46636](https://github.com/nodejs/node/pull/46636) - \[[`2b439a2cdf`](https://github.com/nodejs/node/commit/2b439a2cdf)] - **deps**: fix libuv for android (Julian Dropmann) [#&#8203;46746](https://github.com/nodejs/node/pull/46746) - \[[`d5eb1df869`](https://github.com/nodejs/node/commit/d5eb1df869)] - **deps**: update simdutf to 3.2.0 (Node.js GitHub Bot) [#&#8203;46621](https://github.com/nodejs/node/pull/46621) - \[[`dd97b05aeb`](https://github.com/nodejs/node/commit/dd97b05aeb)] - **deps**: update corepack to 0.16.0 (Node.js GitHub Bot) [#&#8203;46710](https://github.com/nodejs/node/pull/46710) - \[[`65b877de45`](https://github.com/nodejs/node/commit/65b877de45)] - **deps**: copy `postject-api.h` and `LICENSE` to the `deps` folder (Darshan Sen) [#&#8203;46582](https://github.com/nodejs/node/pull/46582) - \[[`a918ac886e`](https://github.com/nodejs/node/commit/a918ac886e)] - **deps**: update c-ares to 1.19.0 (Michaël Zasso) [#&#8203;46415](https://github.com/nodejs/node/pull/46415) - \[[`1ac639a240`](https://github.com/nodejs/node/commit/1ac639a240)] - **deps**: V8: cherry-pick [`9ec4e90`](https://github.com/nodejs/node/commit/9ec4e9095a25) (Kleis Auke Wolthuizen) [#&#8203;47092](https://github.com/nodejs/node/pull/47092) - \[[`f8d4bf8540`](https://github.com/nodejs/node/commit/f8d4bf8540)] - **deps,test**: update postject to 1.0.0-alpha.5 (Node.js GitHub Bot) [#&#8203;46934](https://github.com/nodejs/node/pull/46934) - \[[`8646b06c1b`](https://github.com/nodejs/node/commit/8646b06c1b)] - **dgram**: fix unhandled exception aborting a closed udp socket (Ramana Venkata) [#&#8203;46770](https://github.com/nodejs/node/pull/46770) - \[[`e435199ccc`](https://github.com/nodejs/node/commit/e435199ccc)] - **doc**: remove remaining SSL_OP_NETSCAPE_\*\_BUG (Tobias Nießen) [#&#8203;47066](https://github.com/nodejs/node/pull/47066) - \[[`01d82670c7`](https://github.com/nodejs/node/commit/01d82670c7)] - **doc**: fix typo in test.md (Victor Hiairrassary) [#&#8203;47053](https://github.com/nodejs/node/pull/47053) - \[[`0e3077dc48`](https://github.com/nodejs/node/commit/0e3077dc48)] - **doc**: amend support tier qualifier (Gireesh Punathil) [#&#8203;42805](https://github.com/nodejs/node/pull/42805) - \[[`a5bf6693b9`](https://github.com/nodejs/node/commit/a5bf6693b9)] - **doc**: fix typo on esm loaders example (Ruy Adorno) [#&#8203;47015](https://github.com/nodejs/node/pull/47015) - \[[`6a0c1d053e`](https://github.com/nodejs/node/commit/6a0c1d053e)] - **doc**: add missing test runner flags to man page (Colin Ihrig) [#&#8203;46982](https://github.com/nodejs/node/pull/46982) - \[[`43b94b0f13`](https://github.com/nodejs/node/commit/43b94b0f13)] - **doc**: fix history information for `node:diagnostics_channel` (Thomas Hunter II) [#&#8203;46984](https://github.com/nodejs/node/pull/46984) - \[[`b37d53a1ba`](https://github.com/nodejs/node/commit/b37d53a1ba)] - **doc**: fix myUrl is not defined in url (Youngmin Yoo) [#&#8203;46968](https://github.com/nodejs/node/pull/46968) - \[[`257c5ac1fa`](https://github.com/nodejs/node/commit/257c5ac1fa)] - **doc**: remove useless SSL_OP_\* options (Tobias Nießen) [#&#8203;46954](https://github.com/nodejs/node/pull/46954) - \[[`09c5e6a9f3`](https://github.com/nodejs/node/commit/09c5e6a9f3)] - **doc**: fix description of TLS dhparam option (Tobias Nießen) [#&#8203;46949](https://github.com/nodejs/node/pull/46949) - \[[`8907732fcf`](https://github.com/nodejs/node/commit/8907732fcf)] - **doc**: improve fs code example quality (jakecastelli) [#&#8203;46948](https://github.com/nodejs/node/pull/46948) - \[[`17a25f1153`](https://github.com/nodejs/node/commit/17a25f1153)] - **doc**: fix port of destination server is not defined in http2 (Deokjin Kim) [#&#8203;46940](https://github.com/nodejs/node/pull/46940) - \[[`ad06168a5c`](https://github.com/nodejs/node/commit/ad06168a5c)] - **doc**: use number which is bigger than 1024 as port in http2 (Deokjin Kim) [#&#8203;46938](https://github.com/nodejs/node/pull/46938) - \[[`4e6dda5be4`](https://github.com/nodejs/node/commit/4e6dda5be4)] - **doc**: add release key for Juan Arboleda (Juan José) [#&#8203;46922](https://github.com/nodejs/node/pull/46922) - \[[`f49c6e64ba`](https://github.com/nodejs/node/commit/f49c6e64ba)] - **doc**: fix links to SSL_CTX_set_options (Tobias Nießen) [#&#8203;46953](https://github.com/nodejs/node/pull/46953) - \[[`ea7fb16e5c`](https://github.com/nodejs/node/commit/ea7fb16e5c)] - **doc**: fix fs missing import (jakecastelli) [#&#8203;46907](https://github.com/nodejs/node/pull/46907) - \[[`11885a7351`](https://github.com/nodejs/node/commit/11885a7351)] - **doc**: add request to hold off publicising sec releases (Michael Dawson) [#&#8203;46702](https://github.com/nodejs/node/pull/46702) - \[[`0254fd1da6`](https://github.com/nodejs/node/commit/0254fd1da6)] - **doc**: fix stream iterator helpers examples (Benjamin Gruenbaum) [#&#8203;46897](https://github.com/nodejs/node/pull/46897) - \[[`0a983f7125`](https://github.com/nodejs/node/commit/0a983f7125)] - **doc**: add history info for `node:test` (Antoine du Hamel) [#&#8203;46851](https://github.com/nodejs/node/pull/46851) - \[[`810d393ded`](https://github.com/nodejs/node/commit/810d393ded)] - **doc**: sort import order (jakecastelli) [#&#8203;46847](https://github.com/nodejs/node/pull/46847) - \[[`6e03499437`](https://github.com/nodejs/node/commit/6e03499437)] - **doc**: use destructing import (jakecastelli) [#&#8203;46847](https://github.com/nodejs/node/pull/46847) - \[[`8b636c3cd6`](https://github.com/nodejs/node/commit/8b636c3cd6)] - **doc**: add marco-ippolito to collaborators (Marco Ippolito) [#&#8203;46816](https://github.com/nodejs/node/pull/46816) - \[[`7e08ca125a`](https://github.com/nodejs/node/commit/7e08ca125a)] - **doc**: document how to use the tls.DEFAULT_CIPHERS (Andreas Martens) [#&#8203;46482](https://github.com/nodejs/node/pull/46482) - \[[`3dae6f2f81`](https://github.com/nodejs/node/commit/3dae6f2f81)] - **doc**: add document for profiling and heap snapshot (cola119) [#&#8203;46787](https://github.com/nodejs/node/pull/46787) - \[[`eef30513b9`](https://github.com/nodejs/node/commit/eef30513b9)] - **doc**: add test:coverage event to custom reporter examples (Richie McColl) [#&#8203;46752](https://github.com/nodejs/node/pull/46752) - \[[`e6db6bedf7`](https://github.com/nodejs/node/commit/e6db6bedf7)] - **doc**: include context on .toWeb() parameters (Debadree Chatterjee) [#&#8203;46617](https://github.com/nodejs/node/pull/46617) - \[[`a24350e49f`](https://github.com/nodejs/node/commit/a24350e49f)] - **doc**: add in security steward for recent release (Michael Dawson) [#&#8203;46701](https://github.com/nodejs/node/pull/46701) - \[[`55360e9386`](https://github.com/nodejs/node/commit/55360e9386)] - **doc**: clarify semver-minor notable changes approach (Beth Griggs) [#&#8203;46592](https://github.com/nodejs/node/pull/46592) - \[[`a384dd42ff`](https://github.com/nodejs/node/commit/a384dd42ff)] - **doc**: maintaining nghttp2 (Marco Ippolito) [#&#8203;46539](https://github.com/nodejs/node/pull/46539) - \[[`45fccc9737`](https://github.com/nodejs/node/commit/45fccc9737)] - **doc**: add emit to NodeEventTarget (Deokjin Kim) [#&#8203;46356](https://github.com/nodejs/node/pull/46356) - \[[`760616890c`](https://github.com/nodejs/node/commit/760616890c)] - **doc**: add debadree25 to collaborators (Debadree Chatterjee) [#&#8203;46716](https://github.com/nodejs/node/pull/46716) - \[[`b9dd876e7c`](https://github.com/nodejs/node/commit/b9dd876e7c)] - **doc**: move bcoe to emeriti (Benjamin Coe) [#&#8203;46703](https://github.com/nodejs/node/pull/46703) - \[[`3afbb92bb4`](https://github.com/nodejs/node/commit/3afbb92bb4)] - **doc**: add response.strictContentLength to documentation (Marco Ippolito) [#&#8203;46627](https://github.com/nodejs/node/pull/46627) - \[[`2c0e1aa095`](https://github.com/nodejs/node/commit/2c0e1aa095)] - **doc**: remove unused functions from example of `streamConsumers.text` (Deokjin Kim) [#&#8203;46581](https://github.com/nodejs/node/pull/46581) - \[[`61268303fc`](https://github.com/nodejs/node/commit/61268303fc)] - **doc**: fix test runner examples (Richie McColl) [#&#8203;46565](https://github.com/nodejs/node/pull/46565) - \[[`2b702c98c2`](https://github.com/nodejs/node/commit/2b702c98c2)] - **doc**: update test concurrency description / default values (richiemccoll) [#&#8203;46457](https://github.com/nodejs/node/pull/46457) - \[[`f1de3f7a31`](https://github.com/nodejs/node/commit/f1de3f7a31)] - **doc**: enrich test command with executable (Tony Gorez) [#&#8203;44347](https://github.com/nodejs/node/pull/44347) - \[[`68b5cf8e38`](https://github.com/nodejs/node/commit/68b5cf8e38)] - **doc**: fix wrong location of `requestTimeout`'s default value (Deokjin Kim) [#&#8203;46423](https://github.com/nodejs/node/pull/46423) - \[[`4d5d6d2193`](https://github.com/nodejs/node/commit/4d5d6d2193)] - **doc**: add deokjinkim to collaborators (Deokjin Kim) [#&#8203;46444](https://github.com/nodejs/node/pull/46444) - \[[`de7f6182be`](https://github.com/nodejs/node/commit/de7f6182be)] - **doc**: fix -C flag usage (三咲智子 Kevin Deng) [#&#8203;46388](https://github.com/nodejs/node/pull/46388) - \[[`4165cf34ba`](https://github.com/nodejs/node/commit/4165cf34ba)] - **doc**: add note about major release rotation (Rafael Gonzaga) [#&#8203;46436](https://github.com/nodejs/node/pull/46436) - \[[`f088ce2dc7`](https://github.com/nodejs/node/commit/f088ce2dc7)] - **doc**: update threat model based on discussions (Michael Dawson) [#&#8203;46373](https://github.com/nodejs/node/pull/46373) - \[[`5b94e2bcdb`](https://github.com/nodejs/node/commit/5b94e2bcdb)] - **esm**: fix import assertion warning (Antoine du Hamel) [#&#8203;46971](https://github.com/nodejs/node/pull/46971) - \[[`96a39d1a99`](https://github.com/nodejs/node/commit/96a39d1a99)] - **esm**: add a runtime warning when using import assertions (Antoine du Hamel) [#&#8203;46901](https://github.com/nodejs/node/pull/46901) - \[[`320a8adb45`](https://github.com/nodejs/node/commit/320a8adb45)] - **esm**: misc test refactors (Geoffrey Booth) [#&#8203;46631](https://github.com/nodejs/node/pull/46631) - \[[`b08687f739`](https://github.com/nodejs/node/commit/b08687f739)] - **events**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46759](https://github.com/nodejs/node/pull/46759) - \[[`cc6deeaf7a`](https://github.com/nodejs/node/commit/cc6deeaf7a)] - **(SEMVER-MINOR)** **events**: add listener argument to listenerCount (Paolo Insogna) [#&#8203;46523](https://github.com/nodejs/node/pull/46523) - \[[`efc24097a6`](https://github.com/nodejs/node/commit/efc24097a6)] - **fs**: add trailing commas in source files (Antoine du Hamel) [#&#8203;46696](https://github.com/nodejs/node/pull/46696) - \[[`80b4e6da53`](https://github.com/nodejs/node/commit/80b4e6da53)] - **http**: use listenerCount when adding noop event (Paolo Insogna) [#&#8203;46769](https://github.com/nodejs/node/pull/46769) - \[[`3538521bf6`](https://github.com/nodejs/node/commit/3538521bf6)] - **http**: correctly calculate strict content length (Robert Nagy) [#&#8203;46601](https://github.com/nodejs/node/pull/46601) - \[[`9582c8ef3a`](https://github.com/nodejs/node/commit/9582c8ef3a)] - **http**: fix validation of "Link" header (Steve Herzog) [#&#8203;46466](https://github.com/nodejs/node/pull/46466) - \[[`23c1e2fa52`](https://github.com/nodejs/node/commit/23c1e2fa52)] - **http**: unify header treatment (Marco Ippolito) [#&#8203;46528](https://github.com/nodejs/node/pull/46528) - \[[`abeee994c4`](https://github.com/nodejs/node/commit/abeee994c4)] - **http**: add note about clientError event (Paolo Insogna) [#&#8203;46584](https://github.com/nodejs/node/pull/46584) - \[[`3d0602c96c`](https://github.com/nodejs/node/commit/3d0602c96c)] - **http**: use v8::Array::New() with a prebuilt vector (Joyee Cheung) [#&#8203;46447](https://github.com/nodejs/node/pull/46447) - \[[`62cbddd86f`](https://github.com/nodejs/node/commit/62cbddd86f)] - **lib**: fix trailing commas and leftover function from rebasing (Danielle Adams) [#&#8203;47503](https://github.com/nodejs/node/pull/47503) - \[[`c463f133bd`](https://github.com/nodejs/node/commit/c463f133bd)] - **lib**: enforce use of trailing commas (Antoine du Hamel) [#&#8203;46881](https://github.com/nodejs/node/pull/46881) - \[[`0f33bb0961`](https://github.com/nodejs/node/commit/0f33bb0961)] - **lib**: add trailing commas to all public core modules (Antoine du Hamel) [#&#8203;46848](https://github.com/nodejs/node/pull/46848) - \[[`06e0dd3e15`](https://github.com/nodejs/node/commit/06e0dd3e15)] - **lib**: rename internal module declaration as internal bindings (okmttdhr, okp) [#&#8203;46663](https://github.com/nodejs/node/pull/46663) - \[[`31578ab1b4`](https://github.com/nodejs/node/commit/31578ab1b4)] - **lib**: add trailing commas to more internal files (Antoine du Hamel) [#&#8203;46811](https://github.com/nodejs/node/pull/46811) - \[[`ad510d9029`](https://github.com/nodejs/node/commit/ad510d9029)] - **lib**: update punycode to 2.3.0 (Yagiz Nizipli) [#&#8203;46719](https://github.com/nodejs/node/pull/46719) - \[[`4cf3de8b02`](https://github.com/nodejs/node/commit/4cf3de8b02)] - **lib**: add trailing commas in `internal/perf` (Antoine du Hamel) [#&#8203;46697](https://github.com/nodejs/node/pull/46697) - \[[`f1b79828bc`](https://github.com/nodejs/node/commit/f1b79828bc)] - **(SEMVER-MINOR)** **lib**: add AsyncLocalStorage.bind() and .snapshot() (flakey5) [#&#8203;46387](https://github.com/nodejs/node/pull/46387) - \[[`48cd712c0d`](https://github.com/nodejs/node/commit/48cd712c0d)] - **lib**: add trailing commas in `internal/process` (Antoine du Hamel) [#&#8203;46687](https://github.com/nodejs/node/pull/46687) - \[[`46a22ab601`](https://github.com/nodejs/node/commit/46a22ab601)] - **lib**: do not crash using workers with disabled shared array buffers (Ruben Bridgewater) [#&#8203;41023](https://github.com/nodejs/node/pull/41023) - \[[`1395e36e64`](https://github.com/nodejs/node/commit/1395e36e64)] - **lib**: delete module findPath unused params (sinkhaha) [#&#8203;45371](https://github.com/nodejs/node/pull/45371) - \[[`c410572620`](https://github.com/nodejs/node/commit/c410572620)] - **lib**: enforce use of trailing commas in more files (Antoine du Hamel) [#&#8203;46655](https://github.com/nodejs/node/pull/46655) - \[[`36e080cd13`](https://github.com/nodejs/node/commit/36e080cd13)] - **lib**: enforce use of trailing commas for functions (Antoine du Hamel) [#&#8203;46629](https://github.com/nodejs/node/pull/46629) - \[[`71249a6c00`](https://github.com/nodejs/node/commit/71249a6c00)] - **lib**: predeclare Event.isTr </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - 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, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40Ni4wIiwidXBkYXRlZEluVmVyIjoiMzcuMjgwLjAiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIifQ==-->
renovate-bot force-pushed renovate/node-20.x from 5cb1860687 to 9838cee6c1 2023-11-21 10:04:39 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 9838cee6c1 to 42f4f2ba38 2023-11-21 17:05:24 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 42f4f2ba38 to 682b3e21ff 2023-11-21 20:04:50 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 682b3e21ff to e85f4f2a07 2023-11-22 01:04:35 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from e85f4f2a07 to fb2fa0aead 2023-11-22 04:04:43 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from fb2fa0aead to 691c45eea7 2023-11-23 11:04:38 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 691c45eea7 to 9898d77063 2023-11-23 12:04:40 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 9898d77063 to 4b6b57a1ad 2023-12-19 09:05:30 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 4b6b57a1ad to 3b2aa153fd 2023-12-19 15:05:14 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 3b2aa153fd to 8a346f3ba4 2023-12-19 18:05:12 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 8a346f3ba4 to 2ce8b01578 2023-12-19 19:05:19 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 2ce8b01578 to 796d9a42c3 2023-12-19 20:05:02 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 796d9a42c3 to a5b6db0157 2024-01-10 23:04:05 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from a5b6db0157 to c63f169f41 2024-01-11 00:04:02 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from c63f169f41 to ee0c97a787 2024-01-11 01:04:07 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from ee0c97a787 to 07d7837bca 2024-01-11 07:04:11 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 07d7837bca to c328969c75 2024-01-11 08:04:14 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from c328969c75 to 9e3ae21bbf 2024-01-11 14:04:14 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 9e3ae21bbf to c65c86db35 2024-01-11 16:04:08 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from c65c86db35 to 5f259b4e56 2024-01-11 18:04:10 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 9ccb310138 to 1361f0bb84 2024-02-01 02:04:06 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 1361f0bb84 to 32a7535af0 2024-02-01 03:04:07 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 32a7535af0 to 8ca31718fc 2024-02-01 08:04:08 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 8ca31718fc to 679011eeee 2024-02-01 09:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 679011eeee to 99209db1ca 2024-02-01 15:04:05 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 99209db1ca to b4729fd631 2024-02-13 04:04:13 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from b4729fd631 to c91ee387f6 2024-02-13 06:04:13 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from c91ee387f6 to 61adbb777a 2024-02-13 09:04:15 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 61adbb777a to e42e8d8021 2024-02-13 18:04:13 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from e42e8d8021 to 00a2baa794 2024-02-15 23:04:13 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 00a2baa794 to 89f4947e94 2024-02-16 00:04:13 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 89f4947e94 to 2895c08876 2024-02-16 02:04:14 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 2895c08876 to dd7b214b07 2024-02-16 03:04:14 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from dd7b214b07 to 8d739c115d 2024-02-16 04:04:19 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 8d739c115d to 9c7d803221 2024-02-16 06:04:14 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 9c7d803221 to 621ab57896 2024-03-12 04:04:19 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 621ab57896 to b2757a9078 2024-03-12 05:04:24 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from b2757a9078 to 7cfa93da80 2024-03-12 11:04:20 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 7cfa93da80 to 876433d7af 2024-03-12 13:04:17 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 876433d7af to fc61f3af09 2024-03-27 15:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from fc61f3af09 to 1cc28896c7 2024-03-27 16:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 1cc28896c7 to 28c26792d7 2024-03-27 17:04:05 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 28c26792d7 to 0843e42587 2024-03-27 18:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 0843e42587 to fb1c481887 2024-04-04 15:04:05 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from fb1c481887 to 19356a4169 2024-04-04 18:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 19356a4169 to 950edec319 2024-04-04 21:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 950edec319 to db2690300d 2024-04-06 07:04:03 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from db2690300d to 6701f6196b 2024-04-10 08:03:56 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 6701f6196b to e1cc27aeca 2024-04-10 12:04:02 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from e1cc27aeca to ccd49b3e20 2024-04-10 14:04:22 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from ccd49b3e20 to 164feee5de 2024-04-11 13:03:59 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 164feee5de to 0027f0523a 2024-04-11 17:03:59 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 0027f0523a to e02acf7e3c 2024-04-11 20:04:02 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from e02acf7e3c to a5450f4039 2024-04-24 01:03:59 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from a5450f4039 to f20dc94fd2 2024-04-24 07:04:02 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from f20dc94fd2 to decbdc53d8 2024-04-24 08:04:04 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from decbdc53d8 to d45d4fa7f6 2024-04-24 09:04:03 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from d45d4fa7f6 to 2e6c6104d6 2024-04-24 15:04:01 +00:00 Compare
renovate-bot force-pushed renovate/node-20.x from 2e6c6104d6 to 556466144c 2024-04-24 16:04:01 +00:00 Compare
All checks were successful
continuous-integration/drone/pr Build is passing
This pull request can be merged automatically.
You are not authorized to merge this pull request.
You can also view command line instructions.

Step 1:

From your project repository, check out a new branch and test the changes.
git checkout -b renovate/node-20.x master
git pull origin renovate/node-20.x

Step 2:

Merge the changes and update on Gitea.
git checkout master
git merge --no-ff renovate/node-20.x
git push origin master
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#264
No description provided.