chore(deps): update all dependencies #11

Open
kjuulh wants to merge 1 commits from renovate/all into main
Owner

This PR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies major 17.0.35 -> 22.9.3
graphql dependencies minor 16.6.0 -> 16.9.0
node (source) final major 16-alpine -> 22-alpine
node (source) stage major 16-alpine -> 22-alpine
postcss (source) devDependencies patch 8.4.16 -> 8.4.49
tailwindcss (source) devDependencies minor 3.1.8 -> 3.4.15
typescript (source) devDependencies major 4.7.2 -> 5.7.2

Release Notes

graphql/graphql-js (graphql)

v16.9.0

Compare Source

v16.9.0 (2024-06-21)

New Feature 🚀
  • #​4119 backport[v16]: Introduce "recommended" validation rules (@​benjie)
  • #​4122 backport[v16]: Enable passing values configuration to GraphQLEnumType as a thunk (@​benjie)
  • #​4124 backport[v16]: Implement OneOf Input Objects via @oneOf directive (@​benjie)
Committers: 1

v16.8.2

Compare Source

v16.8.2 (2024-06-12)

Bug Fix 🐞
Internal 🏠
Committers: 2

v16.8.1

Compare Source

v16.8.1 (2023-09-19)

Bug Fix 🐞
Committers: 1

v16.8.0

Compare Source

v16.8.0 (2023-08-14)

New Feature 🚀
Committers: 1

v16.7.1

Compare Source

v16.7.1 (2023-06-22)

📢 Big shout out to @​phryneas, who managed to reproduce this issue and come up with this fix.

Bug Fix 🐞
Committers: 1

v16.7.0

Compare Source

v16.7.0 (2023-06-21)

New Feature 🚀
Bug Fix 🐞
Committers: 3
nodejs/node (node)

v22.11.0: 2024-10-29, Version 22.11.0 'Jod' (LTS), @​richardlau

Compare Source

Notable Changes

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

Other than updating metadata, such as the process.release object, to reflect
that the release is LTS, no further changes from Node.js 22.10.0 are included.

OpenSSL 3.x

Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more
specifically, the quictls OpenSSL fork).
OpenSSL 3.0.x is the currently designated long term support version that is
scheduled to be supported until 7th September 2026, which is within the expected
lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a
successor long term support version prior to that date and since OpenSSL now
follows a semantic versioning-like versioning scheme we expect to be able to
update to the next long term supported version of OpenSSL during the lifetime of
Node.js 22.x.

v22.10.0: 2024-10-16, Version 22.10.0 (Current), @​aduh95

Compare Source

Notable Changes
New "module-sync" exports condition

This release introduces a "module-sync" exports condition that's enabled when
require(esm) is enabled, so packages can supply a synchronous ES module to the
Node.js module loader, no matter if it's being required or imported. This is
similar to the "module" condition that bundlers have been using to support
require(esm) in Node.js, and allows dual-package authors to opt into ESM-first
only on newer versions of Node.js that supports require(esm) to avoid the
dual-package hazard.

{
  "type": "module",
  "exports": {
    "node": {
      // On new version of Node.js, both require() and import get
      // the ESM version
      "module-sync": "./index.js",
      // On older version of Node.js, where "module-sync" and require(esm) are
      // not supported, use the CJS version to avoid dual-package hazard.
      // When package authors think it's time to drop support for older versions of
      // Node.js, they can remove the exports conditions and just use "main": "index.js".
      "default": "./dist/index.cjs"
    },
    // On any other environment, use the ESM version.
    "default": "./index.js"
  }
}

Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have require(esm):

{
  "type": "module",
  "exports": {
    // On new version of Node.js, both require() and import get the ESM version
    "module-sync": "./index.js",
    // On older version of Node.js, where "module-sync" and require(esm) are
    // not supported, use the CJS version to avoid dual-package hazard.
    // When package authors think it's time to drop support for older versions of
    // Node.js, they can remove the exports conditions and just use "main": "index.js".
    "default": "./dist/index.cjs"
  }
}

For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support require(esm) while some older ones don't.
When all active Node.js LTS lines support require(esm), packages can simplify
their distributions by bumping the major version, dropping their CJS exports,
and removing the module-sync exports condition (with only main or default
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync and module and point them to the same ESM file. If the package
already doesn't want to support older versions of Node.js that doesn't support
require(esm), don't use this export condition.

For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both module/module-sync conditions during the
transition period, and can drop module-sync+module when they no longer need
to support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.

We ended up implementing a condition with a different name instead of reusing
"module", because existing code in the ecosystem using the "module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding import './noext' or import './directory'), so it would be
breaking to implement a "module" condition without implementing the forbidden
ESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.

Contributed by Joyee Cheung in #​54648.

node --run is now stable

This CLI flag runs a specified command from a package.json's "scripts" object.

For the following package.json:

{
  "scripts": {
    "test": "node --test-reporter junit --test ./test"
  }
}

You can run node --run test and that would start the test suite.

Contributed by Yagiz Nizipli in #​53763.

Other notable changes
  • [`f0b441230a`](https://github.com/nodejs/node/commit/f0b441230a)] - **(SEMVER-MINOR)** **crypto**: add `KeyObject.prototype.toCryptoKey` (Filip Skokan) [#​55262](https://github.com/nodejs/node/pull/55262)
    
  • [`349d2ed07b`](https://github.com/nodejs/node/commit/349d2ed07b)] - **(SEMVER-MINOR)** **crypto**: add Date fields for `validTo` and `validFrom` (Andrew Moon) [#​54159](https://github.com/nodejs/node/pull/54159)
    
  • [`bebc95ed58`](https://github.com/nodejs/node/commit/bebc95ed58)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#​55086](https://github.com/nodejs/node/pull/55086)
    
  • [`914db60159`](https://github.com/nodejs/node/commit/914db60159)] - **(SEMVER-MINOR)** **http2**: expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) [#​54875](https://github.com/nodejs/node/pull/54875)
    
  • [`f7c3b03759`](https://github.com/nodejs/node/commit/f7c3b03759)] - **(SEMVER-MINOR)** **lib**: propagate aborted state to dependent signals before firing events (jazelly) [#​54826](https://github.com/nodejs/node/pull/54826)
    
  • [`32261fc98a`](https://github.com/nodejs/node/commit/32261fc98a)] - **(SEMVER-MINOR)** **module**: support loading entrypoint as url (RedYetiDev) [#​54933](https://github.com/nodejs/node/pull/54933)
    
  • [`06957ff355`](https://github.com/nodejs/node/commit/06957ff355)] - **(SEMVER-MINOR)** **module**: implement `flushCompileCache()` (Joyee Cheung) [#​54971](https://github.com/nodejs/node/pull/54971)
    
  • [`2dcf70c347`](https://github.com/nodejs/node/commit/2dcf70c347)] - **(SEMVER-MINOR)** **module**: throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) [#​54971](https://github.com/nodejs/node/pull/54971)
    
  • [`f9b19d7c44`](https://github.com/nodejs/node/commit/f9b19d7c44)] - **(SEMVER-MINOR)** **module**: write compile cache to temporary file and then rename it (Joyee Cheung) [#​54971](https://github.com/nodejs/node/pull/54971)
    
  • [`e95163b170`](https://github.com/nodejs/node/commit/e95163b170)] - **(SEMVER-MINOR)** **process**: add `process.features.require_module` (Joyee Cheung) [#​55241](https://github.com/nodejs/node/pull/55241)
    
  • [`4050f68e5d`](https://github.com/nodejs/node/commit/4050f68e5d)] - **(SEMVER-MINOR)** **process**: add `process.features.typescript` (Aviv Keller) [#​54295](https://github.com/nodejs/node/pull/54295)
    
  • [`86f7cb802d`](https://github.com/nodejs/node/commit/86f7cb802d)] - **(SEMVER-MINOR)** **test_runner**: support custom arguments in `run()` (Aviv Keller) [#​55126](https://github.com/nodejs/node/pull/55126)
    
  • [`b62f2f8259`](https://github.com/nodejs/node/commit/b62f2f8259)] - **(SEMVER-MINOR)** **test_runner**: add `'test:summary'` event (Colin Ihrig) [#​54851](https://github.com/nodejs/node/pull/54851)
    
  • [`d7c708aec5`](https://github.com/nodejs/node/commit/d7c708aec5)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage via `run()` (Chemi Atlow) [#​53937](https://github.com/nodejs/node/pull/53937)
    
  • [`5fda4a1498`](https://github.com/nodejs/node/commit/5fda4a1498)] - **(SEMVER-MINOR)** **worker**: add `markAsUncloneable` api (Jason Zhang) [#​55234](https://github.com/nodejs/node/pull/55234)
    
    
Commits
  • [`e3619510c8`](https://github.com/nodejs/node/commit/e3619510c8)] - **assert**: show the diff when deep comparing data with a custom message (Giovanni) [#​54759](https://github.com/nodejs/node/pull/54759)
    
  • [`39c7a9e70c`](https://github.com/nodejs/node/commit/39c7a9e70c)] - **benchmark**: adjust config for deepEqual object (Rafael Gonzaga) [#​55254](https://github.com/nodejs/node/pull/55254)
    
  • [`263526d5d0`](https://github.com/nodejs/node/commit/263526d5d0)] - **benchmark**: rewrite detect-esm-syntax benchmark (Joyee Cheung) [#​55238](https://github.com/nodejs/node/pull/55238)
    
  • [`cd0795fb00`](https://github.com/nodejs/node/commit/cd0795fb00)] - **benchmark**: add no-warnings to process.has bench (Rafael Gonzaga) [#​55159](https://github.com/nodejs/node/pull/55159)
    
  • [`4352d9cc31`](https://github.com/nodejs/node/commit/4352d9cc31)] - **benchmark**: create benchmark for typescript (Marco Ippolito) [#​54904](https://github.com/nodejs/node/pull/54904)
    
  • [`452bc9b48d`](https://github.com/nodejs/node/commit/452bc9b48d)] - **benchmark**: add webstorage benchmark (jakecastelli) [#​55040](https://github.com/nodejs/node/pull/55040)
    
  • [`d4d5ba3a9b`](https://github.com/nodejs/node/commit/d4d5ba3a9b)] - **benchmark**: include ascii to fs/readfile (Rafael Gonzaga) [#​54988](https://github.com/nodejs/node/pull/54988)
    
  • [`23b628db65`](https://github.com/nodejs/node/commit/23b628db65)] - **benchmark**: add dotenv benchmark (Aviv Keller) [#​54278](https://github.com/nodejs/node/pull/54278)
    
  • [`b1ebb0d8ca`](https://github.com/nodejs/node/commit/b1ebb0d8ca)] - **buffer**: coerce extrema to int in `blob.slice` (Antoine du Hamel) [#​55141](https://github.com/nodejs/node/pull/55141)
    
  • [`3a6e72483f`](https://github.com/nodejs/node/commit/3a6e72483f)] - **buffer**: extract Blob's .arrayBuffer() & webidl changes (Matthew Aitken) [#​53372](https://github.com/nodejs/node/pull/53372)
    
  • [`d109f1c4ff`](https://github.com/nodejs/node/commit/d109f1c4ff)] - **buffer**: use simdutf convert_latin1\_to_utf8\_safe (Robert Nagy) [#​54798](https://github.com/nodejs/node/pull/54798)
    
  • [`77f8a3f9c2`](https://github.com/nodejs/node/commit/77f8a3f9c2)] - **build**: fix notify-on-review-wanted action (Rafael Gonzaga) [#​55304](https://github.com/nodejs/node/pull/55304)
    
  • [`0d93b1ed0c`](https://github.com/nodejs/node/commit/0d93b1ed0c)] - **build**: fix not valid json in coverage (jakecastelli) [#​55179](https://github.com/nodejs/node/pull/55179)
    
  • [`f89664d890`](https://github.com/nodejs/node/commit/f89664d890)] - **build**: include `.nycrc` in coverage workflows (Wuli Zuo) [#​55210](https://github.com/nodejs/node/pull/55210)
    
  • [`d7a9df6417`](https://github.com/nodejs/node/commit/d7a9df6417)] - **build**: notify via slack when review-wanted (Rafael Gonzaga) [#​55102](https://github.com/nodejs/node/pull/55102)
    
  • [`68822cc861`](https://github.com/nodejs/node/commit/68822cc861)] - **build**: add more information to Makefile help (Aviv Keller) [#​53381](https://github.com/nodejs/node/pull/53381)
    
  • [`f3ca9c669b`](https://github.com/nodejs/node/commit/f3ca9c669b)] - **build**: update ruff and add `lint-py-fix` (Aviv Keller) [#​54410](https://github.com/nodejs/node/pull/54410)
    
  • [`d99ae548d7`](https://github.com/nodejs/node/commit/d99ae548d7)] - **build**: remove -v flag to reduce noise (iwuliz) [#​55025](https://github.com/nodejs/node/pull/55025)
    
  • [`d3dfbe7ff9`](https://github.com/nodejs/node/commit/d3dfbe7ff9)] - **build**: display free disk space after build in the test-macOS workflow (iwuliz) [#​55025](https://github.com/nodejs/node/pull/55025)
    
  • [`3077f6a5b7`](https://github.com/nodejs/node/commit/3077f6a5b7)] - **build**: support up to python 3.13 in android-configure (Aviv Keller) [#​54529](https://github.com/nodejs/node/pull/54529)
    
  • [`a929c71281`](https://github.com/nodejs/node/commit/a929c71281)] - **build**: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) [#​52279](https://github.com/nodejs/node/pull/52279)
    
  • [`a81f368b99`](https://github.com/nodejs/node/commit/a81f368b99)] - **build**: fix eslint makefile target (Aviv Keller) [#​54999](https://github.com/nodejs/node/pull/54999)
    
  • [`c8b7a645ae`](https://github.com/nodejs/node/commit/c8b7a645ae)] - ***Revert*** "**build**: upgrade clang-format to v18" (Chengzhong Wu) [#​54994](https://github.com/nodejs/node/pull/54994)
    
  • [`7861ca5dc3`](https://github.com/nodejs/node/commit/7861ca5dc3)] - **build**: print `Running XYZ linter...` for py and yml (Aviv Keller) [#​54386](https://github.com/nodejs/node/pull/54386)
    
  • [`aaea3944e5`](https://github.com/nodejs/node/commit/aaea3944e5)] - **build,win**: add winget config to set up env (Hüseyin Açacak) [#​54729](https://github.com/nodejs/node/pull/54729)
    
  • [`30d47220bb`](https://github.com/nodejs/node/commit/30d47220bb)] - **build,win**: float VS 17.11 compilation patch (Stefan Stojanovic) [#​54970](https://github.com/nodejs/node/pull/54970)
    
  • [`048a1ab350`](https://github.com/nodejs/node/commit/048a1ab350)] - **cli**: ensure --run has proper pwd (Yagiz Nizipli) [#​54949](https://github.com/nodejs/node/pull/54949)
    
  • [`a97841ee10`](https://github.com/nodejs/node/commit/a97841ee10)] - **cli**: fix spacing for port range error (Aviv Keller) [#​54495](https://github.com/nodejs/node/pull/54495)
    
  • [`1dcc5eedff`](https://github.com/nodejs/node/commit/1dcc5eedff)] - ***Revert*** "**console**: colorize console error and warn" (Aviv Keller) [#​54677](https://github.com/nodejs/node/pull/54677)
    
  • [`f0b441230a`](https://github.com/nodejs/node/commit/f0b441230a)] - **(SEMVER-MINOR)** **crypto**: add KeyObject.prototype.toCryptoKey (Filip Skokan) [#​55262](https://github.com/nodejs/node/pull/55262)
    
  • [`d3f8c35320`](https://github.com/nodejs/node/commit/d3f8c35320)] - **crypto**: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) [#​55041](https://github.com/nodejs/node/pull/55041)
    
  • [`349d2ed07b`](https://github.com/nodejs/node/commit/349d2ed07b)] - **(SEMVER-MINOR)** **crypto**: add Date fields for `validTo` and `validFrom` (Andrew Moon) [#​54159](https://github.com/nodejs/node/pull/54159)
    
  • [`34ca36a397`](https://github.com/nodejs/node/commit/34ca36a397)] - **deps**: update undici to 6.20.0 (Node.js GitHub Bot) [#​55329](https://github.com/nodejs/node/pull/55329)
    
  • [`f703652e84`](https://github.com/nodejs/node/commit/f703652e84)] - **deps**: upgrade npm to 10.9.0 (npm team) [#​55255](https://github.com/nodejs/node/pull/55255)
    
  • [`b533a51856`](https://github.com/nodejs/node/commit/b533a51856)] - **deps**: V8: backport [`0d5d6e7`](https://github.com/nodejs/node/commit/0d5d6e71bbb0) (Yagiz Nizipli) [#​55115](https://github.com/nodejs/node/pull/55115)
    
  • [`2f65b3fd07`](https://github.com/nodejs/node/commit/2f65b3fd07)] - **deps**: V8: partially cherry-pick [`8953e49`](https://github.com/nodejs/node/commit/8953e49478) (Ben Noordhuis) [#​55274](https://github.com/nodejs/node/pull/55274)
    
  • [`bb9f77d53a`](https://github.com/nodejs/node/commit/bb9f77d53a)] - **deps**: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) [#​55184](https://github.com/nodejs/node/pull/55184)
    
  • [`63d51c82fe`](https://github.com/nodejs/node/commit/63d51c82fe)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) [#​55184](https://github.com/nodejs/node/pull/55184)
    
  • [`29e6484f3c`](https://github.com/nodejs/node/commit/29e6484f3c)] - **deps**: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) [#​54336](https://github.com/nodejs/node/pull/54336)
    
  • [`283927ec88`](https://github.com/nodejs/node/commit/283927ec88)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) [#​54336](https://github.com/nodejs/node/pull/54336)
    
  • [`b0636a1e88`](https://github.com/nodejs/node/commit/b0636a1e88)] - **deps**: update timezone to 2024b (Node.js GitHub Bot) [#​55056](https://github.com/nodejs/node/pull/55056)
    
  • [`173464d76f`](https://github.com/nodejs/node/commit/173464d76f)] - **deps**: update acorn-walk to 8.3.4 (Node.js GitHub Bot) [#​54950](https://github.com/nodejs/node/pull/54950)
    
  • [`0d4536543b`](https://github.com/nodejs/node/commit/0d4536543b)] - **deps**: update corepack to 0.29.4 (Node.js GitHub Bot) [#​54845](https://github.com/nodejs/node/pull/54845)
    
  • [`1de5512383`](https://github.com/nodejs/node/commit/1de5512383)] - **deps**: V8: cherry-pick [`217457d`](https://github.com/nodejs/node/commit/217457d0a560) (Michaël Zasso) [#​54883](https://github.com/nodejs/node/pull/54883)
    
  • [`1921d7a37c`](https://github.com/nodejs/node/commit/1921d7a37c)] - **doc**: add release key for aduh95 (Antoine du Hamel) [#​55349](https://github.com/nodejs/node/pull/55349)
    
  • [`d8e42be1b2`](https://github.com/nodejs/node/commit/d8e42be1b2)] - **doc**: move `ERR_INVALID_PERFORMANCE_MARK` to legacy errors (Antoine du Hamel) [#​55247](https://github.com/nodejs/node/pull/55247)
    
  • [`5ea8aa183c`](https://github.com/nodejs/node/commit/5ea8aa183c)] - **doc**: fix Markdown linter (Antoine du Hamel) [#​55344](https://github.com/nodejs/node/pull/55344)
    
  • [`873588888d`](https://github.com/nodejs/node/commit/873588888d)] - ***Revert*** "**doc**: update test context.assert" (Antoine du Hamel) [#​55344](https://github.com/nodejs/node/pull/55344)
    
  • [`707e7cc702`](https://github.com/nodejs/node/commit/707e7cc702)] - **doc**: add pmarchini to collaborators (Pietro Marchini) [#​55331](https://github.com/nodejs/node/pull/55331)
    
  • [`b03272b9a1`](https://github.com/nodejs/node/commit/b03272b9a1)] - **doc**: fix `events.once()` example using `AbortSignal` (Ivo Janssen) [#​55144](https://github.com/nodejs/node/pull/55144)
    
  • [`85b765953d`](https://github.com/nodejs/node/commit/85b765953d)] - **doc**: add onboarding details for ambassador program (Marco Ippolito) [#​55284](https://github.com/nodejs/node/pull/55284)
    
  • [`5d41b8a8b0`](https://github.com/nodejs/node/commit/5d41b8a8b0)] - **doc**: update `require(ESM)` history and stability status (Antoine du Hamel) [#​55199](https://github.com/nodejs/node/pull/55199)
    
  • [`195df659e9`](https://github.com/nodejs/node/commit/195df659e9)] - **doc**: move `ERR_NAPI_TSFN_START/STOP_IDLE_LOOP` to legacy errors (Antoine du Hamel) [#​55248](https://github.com/nodejs/node/pull/55248)
    
  • [`8eae0d3f3c`](https://github.com/nodejs/node/commit/8eae0d3f3c)] - **doc**: fix initial default value of autoSelectFamily (Ihor Rohovets) [#​55245](https://github.com/nodejs/node/pull/55245)
    
  • [`297cb0da5a`](https://github.com/nodejs/node/commit/297cb0da5a)] - **doc**: tweak onboarding instructions (Michael Dawson) [#​55212](https://github.com/nodejs/node/pull/55212)
    
  • [`7ddbfe8c2b`](https://github.com/nodejs/node/commit/7ddbfe8c2b)] - **doc**: update test context.assert (Pietro Marchini) [#​55186](https://github.com/nodejs/node/pull/55186)
    
  • [`8a57550d20`](https://github.com/nodejs/node/commit/8a57550d20)] - **doc**: fix unordered error anchors (Antoine du Hamel) [#​55242](https://github.com/nodejs/node/pull/55242)
    
  • [`286ea4ed3d`](https://github.com/nodejs/node/commit/286ea4ed3d)] - **doc**: mention addons to experimental permission (Rafael Gonzaga) [#​55166](https://github.com/nodejs/node/pull/55166)
    
  • [`7c9ceabf38`](https://github.com/nodejs/node/commit/7c9ceabf38)] - **doc**: use correct dash in stability status (Antoine du Hamel) [#​55200](https://github.com/nodejs/node/pull/55200)
    
  • [`781ffd8ba1`](https://github.com/nodejs/node/commit/781ffd8ba1)] - **doc**: fix link in `test/README.md` (Livia Medeiros) [#​55165](https://github.com/nodejs/node/pull/55165)
    
  • [`61b9ed3bf2`](https://github.com/nodejs/node/commit/61b9ed3bf2)] - **doc**: add esm examples to node:net (Alfredo González) [#​55134](https://github.com/nodejs/node/pull/55134)
    
  • [`bb3499038d`](https://github.com/nodejs/node/commit/bb3499038d)] - **doc**: remove outdated https import reference (Edigleysson Silva (Edy)) [#​55111](https://github.com/nodejs/node/pull/55111)
    
  • [`6cc49518c7`](https://github.com/nodejs/node/commit/6cc49518c7)] - **doc**: move the YAML changes element (sendoru) [#​55112](https://github.com/nodejs/node/pull/55112)
    
  • [`b12b4a23e4`](https://github.com/nodejs/node/commit/b12b4a23e4)] - **doc**: remove random horizontal separators in `process.md` (Antoine du Hamel) [#​55149](https://github.com/nodejs/node/pull/55149)
    
  • [`7186ede388`](https://github.com/nodejs/node/commit/7186ede388)] - **doc**: put --env-file-if-exists=config right under --env-file=config (Edigleysson Silva (Edy)) [#​55131](https://github.com/nodejs/node/pull/55131)
    
  • [`8ad0dfff10`](https://github.com/nodejs/node/commit/8ad0dfff10)] - **doc**: fix the require resolve algorithm in `modules.md` (chirsz) [#​55117](https://github.com/nodejs/node/pull/55117)
    
  • [`fd40f0873f`](https://github.com/nodejs/node/commit/fd40f0873f)] - **doc**: update style guide (Aviv Keller) [#​53223](https://github.com/nodejs/node/pull/53223)
    
  • [`12c9d9780f`](https://github.com/nodejs/node/commit/12c9d9780f)] - **doc**: add missing `:` to `run()`'s `globPatterns` (Aviv Keller) [#​55135](https://github.com/nodejs/node/pull/55135)
    
  • [`73b05cfb04`](https://github.com/nodejs/node/commit/73b05cfb04)] - **doc**: correct `cleanup` option in stream.(promises.)finished (René) [#​55043](https://github.com/nodejs/node/pull/55043)
    
  • [`bebc95ed58`](https://github.com/nodejs/node/commit/bebc95ed58)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#​55086](https://github.com/nodejs/node/pull/55086)
    
  • [`a97c80c6ae`](https://github.com/nodejs/node/commit/a97c80c6ae)] - **doc**: add note about `--expose-internals` (Aviv Keller) [#​52861](https://github.com/nodejs/node/pull/52861)
    
  • [`89aeae63bd`](https://github.com/nodejs/node/commit/89aeae63bd)] - **doc**: remove `parseREPLKeyword` from REPL documentation (Aviv Keller) [#​54749](https://github.com/nodejs/node/pull/54749)
    
  • [`b3e0490b8b`](https://github.com/nodejs/node/commit/b3e0490b8b)] - **doc**: add missing EventSource docs to globals (Matthew Aitken) [#​55022](https://github.com/nodejs/node/pull/55022)
    
  • [`516c775fa5`](https://github.com/nodejs/node/commit/516c775fa5)] - **doc**: cover --experimental-test-module-mocks flag (Jonathan Sharpe) [#​55021](https://github.com/nodejs/node/pull/55021)
    
  • [`4244f1a269`](https://github.com/nodejs/node/commit/4244f1a269)] - **doc**: add more details for localStorage and sessionStorage (Batuhan Tomo) [#​53881](https://github.com/nodejs/node/pull/53881)
    
  • [`39a728c2e3`](https://github.com/nodejs/node/commit/39a728c2e3)] - **doc**: change backporting guide with updated info (Aviv Keller) [#​53746](https://github.com/nodejs/node/pull/53746)
    
  • [`3a5fe95ad7`](https://github.com/nodejs/node/commit/3a5fe95ad7)] - **doc**: add missing definitions to `internal-api.md` (Aviv Keller) [#​53303](https://github.com/nodejs/node/pull/53303)
    
  • [`f2d74a26a3`](https://github.com/nodejs/node/commit/f2d74a26a3)] - **doc**: fix history of `process.features` (Antoine du Hamel) [#​54982](https://github.com/nodejs/node/pull/54982)
    
  • [`29866ca438`](https://github.com/nodejs/node/commit/29866ca438)] - **doc**: fix typo callsite.lineNumber (Rafael Gonzaga) [#​54969](https://github.com/nodejs/node/pull/54969)
    
  • [`c1d73abd29`](https://github.com/nodejs/node/commit/c1d73abd29)] - **doc**: update documentation for externalizing deps (Michael Dawson) [#​54792](https://github.com/nodejs/node/pull/54792)
    
  • [`eca9668231`](https://github.com/nodejs/node/commit/eca9668231)] - **doc**: add documentation for process.features (Marco Ippolito) [#​54897](https://github.com/nodejs/node/pull/54897)
    
  • [`0fb446e207`](https://github.com/nodejs/node/commit/0fb446e207)] - **esm**: do not interpret `"main"` as a URL (Antoine du Hamel) [#​55003](https://github.com/nodejs/node/pull/55003)
    
  • [`be2fe4b249`](https://github.com/nodejs/node/commit/be2fe4b249)] - **events**: allow null/undefined eventInitDict (Matthew Aitken) [#​54643](https://github.com/nodejs/node/pull/54643)
    
  • [`cb47e169a0`](https://github.com/nodejs/node/commit/cb47e169a0)] - **events**: return `currentTarget` when dispatching (Matthew Aitken) [#​54642](https://github.com/nodejs/node/pull/54642)
    
  • [`dbfae3fe14`](https://github.com/nodejs/node/commit/dbfae3fe14)] - **fs**: acknowledge `signal` option in `filehandle.createReadStream()` (Livia Medeiros) [#​55148](https://github.com/nodejs/node/pull/55148)
    
  • [`1c94725c07`](https://github.com/nodejs/node/commit/1c94725c07)] - **fs**: check subdir correctly in cpSync (Jason Zhang) [#​55033](https://github.com/nodejs/node/pull/55033)
    
  • [`79ffefab2a`](https://github.com/nodejs/node/commit/79ffefab2a)] - **fs**: convert to u8 string for filesystem path (Jason Zhang) [#​54653](https://github.com/nodejs/node/pull/54653)
    
  • [`914db60159`](https://github.com/nodejs/node/commit/914db60159)] - **(SEMVER-MINOR)** **http2**: expose nghttp2\_option_set_stream_reset_rate_limit as an option (Maël Nison) [#​54875](https://github.com/nodejs/node/pull/54875)
    
  • [`08b5e6c794`](https://github.com/nodejs/node/commit/08b5e6c794)] - **lib**: fix module print timing when specifier includes `"` (Antoine du Hamel) [#​55150](https://github.com/nodejs/node/pull/55150)
    
  • [`bf7d7aef4b`](https://github.com/nodejs/node/commit/bf7d7aef4b)] - **lib**: fix typos (Nathan Baulch) [#​55065](https://github.com/nodejs/node/pull/55065)
    
  • [`d803355d92`](https://github.com/nodejs/node/commit/d803355d92)] - **lib**: prefer optional chaining (Aviv Keller) [#​55045](https://github.com/nodejs/node/pull/55045)
    
  • [`d4873bcd6d`](https://github.com/nodejs/node/commit/d4873bcd6d)] - **lib**: remove lib/internal/idna.js (Yagiz Nizipli) [#​55050](https://github.com/nodejs/node/pull/55050)
    
  • [`f7c3b03759`](https://github.com/nodejs/node/commit/f7c3b03759)] - **(SEMVER-MINOR)** **lib**: propagate aborted state to dependent signals before firing events (jazelly) [#​54826](https://github.com/nodejs/node/pull/54826)
    
  • [`397ae418db`](https://github.com/nodejs/node/commit/397ae418db)] - **lib**: the REPL should survive deletion of Array.prototype methods (Jordan Harband) [#​31457](https://github.com/nodejs/node/pull/31457)
    
  • [`566179c9ec`](https://github.com/nodejs/node/commit/566179c9ec)] - **lib, tools**: remove duplicate requires (Aviv Keller) [#​54987](https://github.com/nodejs/node/pull/54987)
    
  • [`c9a1bbbef2`](https://github.com/nodejs/node/commit/c9a1bbbef2)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​55300](https://github.com/nodejs/node/pull/55300)
    
  • [`d7b73bbd1d`](https://github.com/nodejs/node/commit/d7b73bbd1d)] - **meta**: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot\[bot]) [#​55225](https://github.com/nodejs/node/pull/55225)
    
  • [`0f4269faa9`](https://github.com/nodejs/node/commit/0f4269faa9)] - **meta**: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot\[bot]) [#​55224](https://github.com/nodejs/node/pull/55224)
    
  • [`33be1990d8`](https://github.com/nodejs/node/commit/33be1990d8)] - **meta**: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot\[bot]) [#​55223](https://github.com/nodejs/node/pull/55223)
    
  • [`f5b4ae5bf8`](https://github.com/nodejs/node/commit/f5b4ae5bf8)] - **meta**: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot\[bot]) [#​55219](https://github.com/nodejs/node/pull/55219)
    
  • [`1985d9016e`](https://github.com/nodejs/node/commit/1985d9016e)] - **meta**: add mailmap entry for abmusse (Abdirahim Musse) [#​55182](https://github.com/nodejs/node/pull/55182)
    
  • [`93b215d5e6`](https://github.com/nodejs/node/commit/93b215d5e6)] - **meta**: add more information about nightly releases (Aviv Keller) [#​55084](https://github.com/nodejs/node/pull/55084)
    
  • [`aeae5973c3`](https://github.com/nodejs/node/commit/aeae5973c3)] - **meta**: add `linux` to OS labels in collaborator guide (Aviv Keller) [#​54986](https://github.com/nodejs/node/pull/54986)
    
  • [`4fb2c3baa8`](https://github.com/nodejs/node/commit/4fb2c3baa8)] - **meta**: remove never-used workflow trigger (Aviv Keller) [#​54983](https://github.com/nodejs/node/pull/54983)
    
  • [`e1f36d0da8`](https://github.com/nodejs/node/commit/e1f36d0da8)] - **meta**: remove unneeded ignore rules from ruff (Aviv Keller) [#​54360](https://github.com/nodejs/node/pull/54360)
    
  • [`ce0d0c1ec8`](https://github.com/nodejs/node/commit/ce0d0c1ec8)] - **meta**: remove `build-windows.yml` (Aviv Keller) [#​54662](https://github.com/nodejs/node/pull/54662)
    
  • [`ca67c97f33`](https://github.com/nodejs/node/commit/ca67c97f33)] - **meta**: add links to alternative issue trackers (Aviv Keller) [#​54401](https://github.com/nodejs/node/pull/54401)
    
  • [`6fcac73738`](https://github.com/nodejs/node/commit/6fcac73738)] - **module**: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX (Marco Ippolito) [#​55316](https://github.com/nodejs/node/pull/55316)
    
  • [`0412ac8bf3`](https://github.com/nodejs/node/commit/0412ac8bf3)] - **module**: add internal type def for `flushCompileCache` (Jacob Smith) [#​55226](https://github.com/nodejs/node/pull/55226)
    
  • [`32261fc98a`](https://github.com/nodejs/node/commit/32261fc98a)] - **(SEMVER-MINOR)** **module**: support loading entrypoint as url (RedYetiDev) [#​54933](https://github.com/nodejs/node/pull/54933)
    
  • [`111261e245`](https://github.com/nodejs/node/commit/111261e245)] - **(SEMVER-MINOR)** **module**: implement the "module-sync" exports condition (Joyee Cheung) [#​54648](https://github.com/nodejs/node/pull/54648)
    
  • [`b6fc9adf5b`](https://github.com/nodejs/node/commit/b6fc9adf5b)] - **module**: remove duplicated import (Aviv Keller) [#​54942](https://github.com/nodejs/node/pull/54942)
    
  • [`06957ff355`](https://github.com/nodejs/node/commit/06957ff355)] - **(SEMVER-MINOR)** **module**: implement flushCompileCache() (Joyee Cheung) [#​54971](https://github.com/nodejs/node/pull/54971)
    
  • [`2dcf70c347`](https://github.com/nodejs/node/commit/2dcf70c347)] - **(SEMVER-MINOR)** **module**: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) [#​54971](https://github.com/nodejs/node/pull/54971)
    
  • [`f9b19d7c44`](https://github.com/nodejs/node/commit/f9b19d7c44)] - **(SEMVER-MINOR)** **module**: write compile cache to temporary file and then rename it (Joyee Cheung) [#​54971](https://github.com/nodejs/node/pull/54971)
    
  • [`1d169764db`](https://github.com/nodejs/node/commit/1d169764db)] - **module**: report unfinished TLA in ambiguous modules (Antoine du Hamel) [#​54980](https://github.com/nodejs/node/pull/54980)
    
  • [`c89c93496d`](https://github.com/nodejs/node/commit/c89c93496d)] - **module**: refator ESM loader for adding future synchronous hooks (Joyee Cheung) [#​54769](https://github.com/nodejs/node/pull/54769)
    
  • [`108cef22e6`](https://github.com/nodejs/node/commit/108cef22e6)] - **module**: remove bogus assertion in CJS entrypoint handling with --import (Joyee Cheung) [#​54592](https://github.com/nodejs/node/pull/54592)
    
  • [`67ecb10c78`](https://github.com/nodejs/node/commit/67ecb10c78)] - **module**: fix discrepancy between .ts and .js (Marco Ippolito) [#​54461](https://github.com/nodejs/node/pull/54461)
    
  • [`3300d5990f`](https://github.com/nodejs/node/commit/3300d5990f)] - **os**: use const with early return for path (Trivikram Kamat) [#​54959](https://github.com/nodejs/node/pull/54959)
    
  • [`90cce6ec7c`](https://github.com/nodejs/node/commit/90cce6ec7c)] - **path**: remove repetitive conditional operator in `posix.resolve` (Wiyeong Seo) [#​54835](https://github.com/nodejs/node/pull/54835)
    
  • [`cbfc980f89`](https://github.com/nodejs/node/commit/cbfc980f89)] - **perf_hooks**: add missing type argument to getEntriesByName (Luke Taher) [#​54767](https://github.com/nodejs/node/pull/54767)
    
  • [`e95163b170`](https://github.com/nodejs/node/commit/e95163b170)] - **(SEMVER-MINOR)** **process**: add process.features.require_module (Joyee Cheung) [#​55241](https://github.com/nodejs/node/pull/55241)
    
  • [`0655d3a384`](https://github.com/nodejs/node/commit/0655d3a384)] - **process**: fix `process.features.typescript` when Amaro is unavailable (Antoine du Hamel) [#​55323](https://github.com/nodejs/node/pull/55323)
    
  • [`4050f68e5d`](https://github.com/nodejs/node/commit/4050f68e5d)] - **(SEMVER-MINOR)** **process**: add `process.features.typescript` (Aviv Keller) [#​54295](https://github.com/nodejs/node/pull/54295)
    
  • [`75073c50ae`](https://github.com/nodejs/node/commit/75073c50ae)] - **quic**: start adding in the internal quic js api (James M Snell) [#​53256](https://github.com/nodejs/node/pull/53256)
    
  • [`538b1eb5b0`](https://github.com/nodejs/node/commit/538b1eb5b0)] - **repl**: catch `\v` and `\r` in new-line detection (Aviv Keller) [#​54512](https://github.com/nodejs/node/pull/54512)
    
  • [`57a9d3f15e`](https://github.com/nodejs/node/commit/57a9d3f15e)] - **sqlite**: disable DQS misfeature by default (Tobias Nießen) [#​55297](https://github.com/nodejs/node/pull/55297)
    
  • [`c126543374`](https://github.com/nodejs/node/commit/c126543374)] - **sqlite**: make sourceSQL and expandedSQL string-valued properties (Tobias Nießen) [#​54721](https://github.com/nodejs/node/pull/54721)
    
  • [`67f5f46c56`](https://github.com/nodejs/node/commit/67f5f46c56)] - **sqlite**: enable foreign key constraints by default (Tobias Nießen) [#​54777](https://github.com/nodejs/node/pull/54777)
    
  • [`09999491bf`](https://github.com/nodejs/node/commit/09999491bf)] - **src**: handle errors correctly in webstorage (Michaël Zasso) [#​54544](https://github.com/nodejs/node/pull/54544)
    
  • [`295c17c4ea`](https://github.com/nodejs/node/commit/295c17c4ea)] - **src**: make minor tweaks to quic c++ for c++20 (James M Snell) [#​53256](https://github.com/nodejs/node/pull/53256)
    
  • [`b1d47d06f9`](https://github.com/nodejs/node/commit/b1d47d06f9)] - **src**: apply getCallSite optimization (RafaelGSS) [#​55174](https://github.com/nodejs/node/pull/55174)
    
  • [`d6bcc44829`](https://github.com/nodejs/node/commit/d6bcc44829)] - **src**: modernize likely/unlikely hints (Yagiz Nizipli) [#​55155](https://github.com/nodejs/node/pull/55155)
    
  • [`1af5ad61ca`](https://github.com/nodejs/node/commit/1af5ad61ca)] - **src**: fixup Error.stackTraceLimit during snapshot building (Joyee Cheung) [#​55121](https://github.com/nodejs/node/pull/55121)
    
  • [`b229083235`](https://github.com/nodejs/node/commit/b229083235)] - **src**: parse --stack-trace-limit and use it in --trace-\* flags (Joyee Cheung) [#​55121](https://github.com/nodejs/node/pull/55121)
    
  • [`942ad54e08`](https://github.com/nodejs/node/commit/942ad54e08)] - **src**: move more key handling to ncrypto (James M Snell) [#​55108](https://github.com/nodejs/node/pull/55108)
    
  • [`0bb5584288`](https://github.com/nodejs/node/commit/0bb5584288)] - **src**: add receiver to fast api callback methods (Carlos Espa) [#​54408](https://github.com/nodejs/node/pull/54408)
    
  • [`706e9611f0`](https://github.com/nodejs/node/commit/706e9611f0)] - **src**: fix typos (Nathan Baulch) [#​55064](https://github.com/nodejs/node/pull/55064)
    
  • [`a96d5d1bcc`](https://github.com/nodejs/node/commit/a96d5d1bcc)] - **src**: move more stuff over to use Maybe\<void> (James M Snell) [#&#8203;54831](https://github.com/nodejs/node/pull/54831)
    
  • [`ee0a98b5a2`](https://github.com/nodejs/node/commit/ee0a98b5a2)] - **src**: decode native error messages as UTF-8 (Joyee Cheung) [#&#8203;55024](https://github.com/nodejs/node/pull/55024)
    
  • [`1fc8edecf8`](https://github.com/nodejs/node/commit/1fc8edecf8)] - **src**: update clang-tidy and focus on modernization (Yagiz Nizipli) [#&#8203;53757](https://github.com/nodejs/node/pull/53757)
    
  • [`3a1485a1a3`](https://github.com/nodejs/node/commit/3a1485a1a3)] - **src**: move evp stuff to ncrypto (James M Snell) [#&#8203;54911](https://github.com/nodejs/node/pull/54911)
    
  • [`9ae80e1e4d`](https://github.com/nodejs/node/commit/9ae80e1e4d)] - **src**: revert filesystem::path changes (Yagiz Nizipli) [#&#8203;55015](https://github.com/nodejs/node/pull/55015)
    
  • [`465d05018a`](https://github.com/nodejs/node/commit/465d05018a)] - **src**: mark node --run as stable (Yagiz Nizipli) [#&#8203;53763](https://github.com/nodejs/node/pull/53763)
    
  • [`ef546c872c`](https://github.com/nodejs/node/commit/ef546c872c)] - **src**: cleanup per env handles directly without a list (Chengzhong Wu) [#&#8203;54993](https://github.com/nodejs/node/pull/54993)
    
  • [`0876f78411`](https://github.com/nodejs/node/commit/0876f78411)] - **src**: add unistd.h import if node posix credentials is defined (Jonas) [#&#8203;54528](https://github.com/nodejs/node/pull/54528)
    
  • [`284db53866`](https://github.com/nodejs/node/commit/284db53866)] - **src**: remove duplicate code setting AF_INET (He Yang) [#&#8203;54939](https://github.com/nodejs/node/pull/54939)
    
  • [`f332c4c4fc`](https://github.com/nodejs/node/commit/f332c4c4fc)] - **src**: use `Maybe<void>` where bool isn't needed (Michaël Zasso) [#&#8203;54575](https://github.com/nodejs/node/pull/54575)
    
  • [`c7ed2ff920`](https://github.com/nodejs/node/commit/c7ed2ff920)] - **stream**: handle undefined chunks correctly in decode stream (devstone) [#&#8203;55153](https://github.com/nodejs/node/pull/55153)
    
  • [`a9675a0cbc`](https://github.com/nodejs/node/commit/a9675a0cbc)] - **stream**: treat null asyncIterator as undefined (Jason Zhang) [#&#8203;55119](https://github.com/nodejs/node/pull/55119)
    
  • [`bf69ae1406`](https://github.com/nodejs/node/commit/bf69ae1406)] - **stream**: set stream prototype to closest transferable superclass (Jason Zhang) [#&#8203;55067](https://github.com/nodejs/node/pull/55067)
    
  • [`3273707a3a`](https://github.com/nodejs/node/commit/3273707a3a)] - **test**: fix tests when Amaro is unavailable (Richard Lau) [#&#8203;55320](https://github.com/nodejs/node/pull/55320)
    
  • [`ff3cc3b2ab`](https://github.com/nodejs/node/commit/ff3cc3b2ab)] - **test**: use more informative errors in `test-runner-cli` (Antoine du Hamel) [#&#8203;55321](https://github.com/nodejs/node/pull/55321)
    
  • [`17d2f9de6d`](https://github.com/nodejs/node/commit/17d2f9de6d)] - **test**: make `test-loaders-workers-spawned` less flaky (Antoine du Hamel) [#&#8203;55172](https://github.com/nodejs/node/pull/55172)
    
  • [`1b1104e69b`](https://github.com/nodejs/node/commit/1b1104e69b)] - **test**: add resource to internal module stat test (RafaelGSS) [#&#8203;55157](https://github.com/nodejs/node/pull/55157)
    
  • [`b36f8c2146`](https://github.com/nodejs/node/commit/b36f8c2146)] - **test**: update multiple assert tests to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585)
    
  • [`1b30f7fdd6`](https://github.com/nodejs/node/commit/1b30f7fdd6)] - **test**: move coverage source map tests to new file (Aviv Keller) [#&#8203;55123](https://github.com/nodejs/node/pull/55123)
    
  • [`ce67e7b5b3`](https://github.com/nodejs/node/commit/ce67e7b5b3)] - **test**: adding more tests for strip-types (Kevin Toshihiro Uehara) [#&#8203;54929](https://github.com/nodejs/node/pull/54929)
    
  • [`a57c8ba3ef`](https://github.com/nodejs/node/commit/a57c8ba3ef)] - **test**: update wpt test for encoding (devstone) [#&#8203;55151](https://github.com/nodejs/node/pull/55151)
    
  • [`65fbe94d45`](https://github.com/nodejs/node/commit/65fbe94d45)] - **test**: add `escapePOSIXShell` util (Antoine du Hamel) [#&#8203;55125](https://github.com/nodejs/node/pull/55125)
    
  • [`cc8838252e`](https://github.com/nodejs/node/commit/cc8838252e)] - **test**: remove unnecessary `await` in test-watch-mode (Wuli) [#&#8203;55142](https://github.com/nodejs/node/pull/55142)
    
  • [`9aeba48bf0`](https://github.com/nodejs/node/commit/9aeba48bf0)] - **test**: fix typos (Nathan Baulch) [#&#8203;55063](https://github.com/nodejs/node/pull/55063)
    
  • [`0999b5e493`](https://github.com/nodejs/node/commit/0999b5e493)] - **test**: remove duplicated test descriptions (Christos Koutsiaris) [#&#8203;54140](https://github.com/nodejs/node/pull/54140)
    
  • [`e99d4a4cb8`](https://github.com/nodejs/node/commit/e99d4a4cb8)] - **test**: deflake test/pummel/test-timers.js (jakecastelli) [#&#8203;55098](https://github.com/nodejs/node/pull/55098)
    
  • [`fb8470afd7`](https://github.com/nodejs/node/commit/fb8470afd7)] - **test**: deflake test-http-remove-header-stays-removed (Luigi Pinca) [#&#8203;55004](https://github.com/nodejs/node/pull/55004)
    
  • [`e879c5edf2`](https://github.com/nodejs/node/commit/e879c5edf2)] - **test**: fix test-tls-junk-closes-server (Michael Dawson) [#&#8203;55089](https://github.com/nodejs/node/pull/55089)
    
  • [`b885f0583c`](https://github.com/nodejs/node/commit/b885f0583c)] - **test**: fix more tests that fail when path contains a space (Antoine du Hamel) [#&#8203;55088](https://github.com/nodejs/node/pull/55088)
    
  • [`85f1187942`](https://github.com/nodejs/node/commit/85f1187942)] - **test**: fix `assertSnapshot` when path contains a quote (Antoine du Hamel) [#&#8203;55087](https://github.com/nodejs/node/pull/55087)
    
  • [`fdae57f1e1`](https://github.com/nodejs/node/commit/fdae57f1e1)] - **test**: fix some tests when path contains `%` (Antoine du Hamel) [#&#8203;55082](https://github.com/nodejs/node/pull/55082)
    
  • [`36c9ea8912`](https://github.com/nodejs/node/commit/36c9ea8912)] - ***Revert*** "**test**: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) [#&#8203;55079](https://github.com/nodejs/node/pull/55079)
    
  • [`80da5993cc`](https://github.com/nodejs/node/commit/80da5993cc)] - **test**: remove interval and give more time to unsync (Pietro Marchini) [#&#8203;55006](https://github.com/nodejs/node/pull/55006)
    
  • [`93c23e74b3`](https://github.com/nodejs/node/commit/93c23e74b3)] - **test**: deflake test-inspector-strip-types (Luigi Pinca) [#&#8203;55058](https://github.com/nodejs/node/pull/55058)
    
  • [`43bbca2c08`](https://github.com/nodejs/node/commit/43bbca2c08)] - **test**: make `test-runner-assert` more robust (Aviv Keller) [#&#8203;55036](https://github.com/nodejs/node/pull/55036)
    
  • [`268f1ec08f`](https://github.com/nodejs/node/commit/268f1ec08f)] - **test**: update tls test to support OpenSSL32 (Michael Dawson) [#&#8203;55030](https://github.com/nodejs/node/pull/55030)
    
  • [`a50dd21423`](https://github.com/nodejs/node/commit/a50dd21423)] - **test**: do not assume `process.execPath` contains no spaces (Antoine du Hamel) [#&#8203;55028](https://github.com/nodejs/node/pull/55028)
    
  • [`c56e324cb8`](https://github.com/nodejs/node/commit/c56e324cb8)] - **test**: fix `test-vm-context-dont-contextify` when path contains a space (Antoine du Hamel) [#&#8203;55026](https://github.com/nodejs/node/pull/55026)
    
  • [`6d42e44264`](https://github.com/nodejs/node/commit/6d42e44264)] - **test**: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) [#&#8203;55016](https://github.com/nodejs/node/pull/55016)
    
  • [`22e601a76c`](https://github.com/nodejs/node/commit/22e601a76c)] - **test**: add `util.stripVTControlCharacters` test (RedYetiDev) [#&#8203;54865](https://github.com/nodejs/node/pull/54865)
    
  • [`a6796696d7`](https://github.com/nodejs/node/commit/a6796696d7)] - **test**: improve coverage for timer promises schedular (Aviv Keller) [#&#8203;53370](https://github.com/nodejs/node/pull/53370)
    
  • [`9506f77b3e`](https://github.com/nodejs/node/commit/9506f77b3e)] - **test**: remove `getCallSite` from common (RedYetiDev) [#&#8203;54947](https://github.com/nodejs/node/pull/54947)
    
  • [`20d3a806ea`](https://github.com/nodejs/node/commit/20d3a806ea)] - **test**: remove unused common utilities (RedYetiDev) [#&#8203;54825](https://github.com/nodejs/node/pull/54825)
    
  • [`341b6d9b94`](https://github.com/nodejs/node/commit/341b6d9b94)] - **test**: deflake test-http-header-overflow (Luigi Pinca) [#&#8203;54978](https://github.com/nodejs/node/pull/54978)
    
  • [`1e53c10853`](https://github.com/nodejs/node/commit/1e53c10853)] - **test**: fix `soucre` to `source` (Aviv Keller) [#&#8203;55038](https://github.com/nodejs/node/pull/55038)
    
  • [`6843ca7e0d`](https://github.com/nodejs/node/commit/6843ca7e0d)] - **test**: add asserts to validate test assumptions (Michael Dawson) [#&#8203;54997](https://github.com/nodejs/node/pull/54997)
    
  • [`98ff615c5e`](https://github.com/nodejs/node/commit/98ff615c5e)] - **test**: add runner watch mode isolation tests (Pietro Marchini) [#&#8203;54888](https://github.com/nodejs/node/pull/54888)
    
  • [`327a8f7b59`](https://github.com/nodejs/node/commit/327a8f7b59)] - **test**: fix invalid wasm test (Aviv Keller) [#&#8203;54935](https://github.com/nodejs/node/pull/54935)
    
  • [`5b012f544c`](https://github.com/nodejs/node/commit/5b012f544c)] - **test**: move test-http-max-sockets to parallel (Luigi Pinca) [#&#8203;54977](https://github.com/nodejs/node/pull/54977)
    
  • [`22b413910e`](https://github.com/nodejs/node/commit/22b413910e)] - **test**: remove test-http-max-sockets flaky designation (Luigi Pinca) [#&#8203;54976](https://github.com/nodejs/node/pull/54976)
    
  • [`62b8640550`](https://github.com/nodejs/node/commit/62b8640550)] - **test**: refactor test-whatwg-webstreams-encoding to be shorter (David Dong) [#&#8203;54569](https://github.com/nodejs/node/pull/54569)
    
  • [`1f11d68173`](https://github.com/nodejs/node/commit/1f11d68173)] - **test**: adjust key sizes to support OpenSSL32 (Michael Dawson) [#&#8203;54972](https://github.com/nodejs/node/pull/54972)
    
  • [`90a87ca8f7`](https://github.com/nodejs/node/commit/90a87ca8f7)] - **test**: update test to support OpenSSL32 (Michael Dawson) [#&#8203;54968](https://github.com/nodejs/node/pull/54968)
    
  • [`9b7834536a`](https://github.com/nodejs/node/commit/9b7834536a)] - **test**: update DOM events web platform tests (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642)
    
  • [`1c001550a2`](https://github.com/nodejs/node/commit/1c001550a2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;55029](https://github.com/nodejs/node/pull/55029)
    
  • [`800f7c44ed`](https://github.com/nodejs/node/commit/800f7c44ed)] - **test_runner**: throw on invalid source map (Aviv Keller) [#&#8203;55055](https://github.com/nodejs/node/pull/55055)
    
  • [`0f7e3f017f`](https://github.com/nodejs/node/commit/0f7e3f017f)] - **test_runner**: assert entry is a valid object (Edigleysson Silva (Edy)) [#&#8203;55231](https://github.com/nodejs/node/pull/55231)
    
  • [`c308862d2e`](https://github.com/nodejs/node/commit/c308862d2e)] - **test_runner**: avoid spread operator on arrays (Antoine du Hamel) [#&#8203;55143](https://github.com/nodejs/node/pull/55143)
    
  • [`12401972b7`](https://github.com/nodejs/node/commit/12401972b7)] - **test_runner**: support typescript files in default glob (Aviv Keller) [#&#8203;55081](https://github.com/nodejs/node/pull/55081)
    
  • [`19cfa3140f`](https://github.com/nodejs/node/commit/19cfa3140f)] - **test_runner**: close and flush destinations on forced exit (Colin Ihrig) [#&#8203;55099](https://github.com/nodejs/node/pull/55099)
    
  • [`86f7cb802d`](https://github.com/nodejs/node/commit/86f7cb802d)] - **(SEMVER-MINOR)** **test_runner**: support custom arguments in `run()` (Aviv Keller) [#&#8203;55126](https://github.com/nodejs/node/pull/55126)
    
  • [`7eaeba499a`](https://github.com/nodejs/node/commit/7eaeba499a)] - **test_runner**: fix mocking modules with quote in their URL (Antoine du Hamel) [#&#8203;55083](https://github.com/nodejs/node/pull/55083)
    
  • [`8818c6c88a`](https://github.com/nodejs/node/commit/8818c6c88a)] - **test_runner**: report error on missing sourcemap source (Aviv Keller) [#&#8203;55037](https://github.com/nodejs/node/pull/55037)
    
  • [`b62f2f8259`](https://github.com/nodejs/node/commit/b62f2f8259)] - **(SEMVER-MINOR)** **test_runner**: add 'test:summary' event (Colin Ihrig) [#&#8203;54851](https://github.com/nodejs/node/pull/54851)
    
  • [`449dad0db0`](https://github.com/nodejs/node/commit/449dad0db0)] - **test_runner**: use `test:` symbol on second print of parent test (RedYetiDev) [#&#8203;54956](https://github.com/nodejs/node/pull/54956)
    
  • [`4b962a78c7`](https://github.com/nodejs/node/commit/4b962a78c7)] - **test_runner**: replace ansi clear with ansi reset (Pietro Marchini) [#&#8203;55013](https://github.com/nodejs/node/pull/55013)
    
  • [`d7c708aec5`](https://github.com/nodejs/node/commit/d7c708aec5)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage via run() (Chemi Atlow) [#&#8203;53937](https://github.com/nodejs/node/pull/53937)
    
  • [`93c6c90219`](https://github.com/nodejs/node/commit/93c6c90219)] - **test_runner**: support typescript module mocking (Marco Ippolito) [#&#8203;54878](https://github.com/nodejs/node/pull/54878)
    
  • [`1daec9a63f`](https://github.com/nodejs/node/commit/1daec9a63f)] - **test_runner**: avoid coverage report partial file names (Pietro Marchini) [#&#8203;54379](https://github.com/nodejs/node/pull/54379)
    
  • [`d51e5a8667`](https://github.com/nodejs/node/commit/d51e5a8667)] - **tools**: enforce errors to not be documented in legacy section (Aviv Keller) [#&#8203;55218](https://github.com/nodejs/node/pull/55218)
    
  • [`6a7d201b80`](https://github.com/nodejs/node/commit/6a7d201b80)] - **tools**: update gyp-next to 0.18.2 (Node.js GitHub Bot) [#&#8203;55160](https://github.com/nodejs/node/pull/55160)
    
  • [`c988e7e2e5`](https://github.com/nodejs/node/commit/c988e7e2e5)] - **tools**: bump the eslint group in /tools/eslint with 4 updates (dependabot\[bot]) [#&#8203;55227](https://github.com/nodejs/node/pull/55227)
    
  • [`7982d3d4ed`](https://github.com/nodejs/node/commit/7982d3d4ed)] - **tools**: only check teams on the default branch (Antoine du Hamel) [#&#8203;55124](https://github.com/nodejs/node/pull/55124)
    
  • [`60a35eddb0`](https://github.com/nodejs/node/commit/60a35eddb0)] - **tools**: make `choco install` script more readable (Aviv Keller) [#&#8203;54002](https://github.com/nodejs/node/pull/54002)
    
  • [`b7b1fa6dd3`](https://github.com/nodejs/node/commit/b7b1fa6dd3)] - **tools**: bump Rollup from 4.18.1 to 4.22.4 for `lint-md` (dependabot\[bot]) [#&#8203;55093](https://github.com/nodejs/node/pull/55093)
    
  • [`3304bf387f`](https://github.com/nodejs/node/commit/3304bf387f)] - **tools**: unlock versions of irrelevant DB deps (Michaël Zasso) [#&#8203;55042](https://github.com/nodejs/node/pull/55042)
    
  • [`65c376a819`](https://github.com/nodejs/node/commit/65c376a819)] - **tools**: remove redudant code from eslint require rule (Aviv Keller) [#&#8203;54892](https://github.com/nodejs/node/pull/54892)
    
  • [`295f684b69`](https://github.com/nodejs/node/commit/295f684b69)] - **tools**: update error message for ICU in license-builder (Aviv Keller) [#&#8203;54742](https://github.com/nodejs/node/pull/54742)
    
  • [`ce4b6e403d`](https://github.com/nodejs/node/commit/ce4b6e403d)] - **tools**: refactor js2c.cc to use c++20 (Yagiz Nizipli) [#&#8203;54849](https://github.com/nodejs/node/pull/54849)
    
  • [`31f0ef6ea3`](https://github.com/nodejs/node/commit/31f0ef6ea3)] - **tools**: bump the eslint group in /tools/eslint with 7 updates (dependabot\[bot]) [#&#8203;54821](https://github.com/nodejs/node/pull/54821)
    
  • [`676d0a09a0`](https://github.com/nodejs/node/commit/676d0a09a0)] - **tools**: update github_reporter to 1.7.1 (Node.js GitHub Bot) [#&#8203;54951](https://github.com/nodejs/node/pull/54951)
    
  • [`0f01f38aea`](https://github.com/nodejs/node/commit/0f01f38aea)] - **tty**: fix links for terminal colors (Aviv Keller) [#&#8203;54596](https://github.com/nodejs/node/pull/54596)
    
  • [`d264639f5f`](https://github.com/nodejs/node/commit/d264639f5f)] - **util**: update ansi regex (Aviv Keller) [#&#8203;54865](https://github.com/nodejs/node/pull/54865)
    
  • [`ea7aaf37bf`](https://github.com/nodejs/node/commit/ea7aaf37bf)] - **v8**: out of bounds copy (Robert Nagy) [#&#8203;55261](https://github.com/nodejs/node/pull/55261)
    
  • [`fa695facf5`](https://github.com/nodejs/node/commit/fa695facf5)] - **watch**: preserve output when gracefully restarted (Théo LUDWIG) [#&#8203;54323](https://github.com/nodejs/node/pull/54323)
    
  • [`5fda4a1498`](https://github.com/nodejs/node/commit/5fda4a1498)] - **(SEMVER-MINOR)** **worker**: add `markAsUncloneable` api (Jason Zhang) [#&#8203;55234](https://github.com/nodejs/node/pull/55234)
    
  • [`d65334c454`](https://github.com/nodejs/node/commit/d65334c454)] - **worker**: throw InvalidStateError in postMessage after close (devstone) [#&#8203;55206](https://github.com/nodejs/node/pull/55206)
    
  • [`fc90d7c63a`](https://github.com/nodejs/node/commit/fc90d7c63a)] - **worker**: handle `--input-type` more consistently (Antoine du Hamel) [#&#8203;54979](https://github.com/nodejs/node/pull/54979)
    
  • [`a9fa2da870`](https://github.com/nodejs/node/commit/a9fa2da870)] - **zlib**: throw brotli initialization error from c++ (Yagiz Nizipli) [#&#8203;54698](https://github.com/nodejs/node/pull/54698)
    
  • [`9abd1c7288`](https://github.com/nodejs/node/commit/9abd1c7288)] - **zlib**: remove prototype primordials usage (Yagiz Nizipli) [#&#8203;54695](https://github.com/nodejs/node/pull/54695)
    
    

v22.9.0: 2024-09-17, Version 22.9.0 (Current), @​RafaelGSS

Compare Source

New API to retrieve execution Stack Trace

A new API getCallSite has been introduced to the util module. This API allows users
to retrieve the stacktrace of the current execution. Example:

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

function exampleFunction() {
  const callSites = util.getCallSite();

  console.log('Call Sites:');
  callSites.forEach((callSite, index) => {
    console.log(`CallSite ${index + 1}:`);
    console.log(`Function Name: ${callSite.functionName}`);
    console.log(`Script Name: ${callSite.scriptName}`);
    console.log(`Line Number: ${callSite.lineNumber}`);
    console.log(`Column Number: ${callSite.column}`);
  });
  // CallSite 1:
  // Function Name: exampleFunction
  // Script Name: /home/example.js
  // Line Number: 5
  // Column Number: 26

  // CallSite 2:
  // Function Name: anotherFunction
  // Script Name: /home/example.js
  // Line Number: 22
  // Column Number: 3

  // ...
}

// A function to simulate another stack layer
function anotherFunction() {
  exampleFunction();
}

anotherFunction();

Thanks to Rafael Gonzaga for making this work on #​54380.

Disable V8 Maglev

We have seen several crashes/unexpected JS behaviors with maglev on v22
(which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for
users to work around them or even figure out where the bugs are coming from.
Some bugs are fixed in the upstream while some others probably remain.

As v22 will get stuck with V8 v12.4 as LTS, it will be increasingly difficult to
backport patches for them even if the bugs are fixed. So disable it by default
on v22 to reduce the churn and troubles for users.

Thanks to Joyee Cheung for making this work on #​54384

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext

This releases introduces a new option to the API tls.createSecureContext. For
now on users can use tls.createSecureContext({ allowPartialTrustChain: true })
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.

Thanks to Anna Henningsen for making this work on #​54790

Other Notable Changes
  • [`5c9599af5a`](https://github.com/nodejs/node/commit/5c9599af5a)] - **src**: create handle scope in FastInternalModuleStat (Joyee Cheung) [#&#8203;54384](https://github.com/nodejs/node/pull/54384)
    
  • [`e2307d87e8`](https://github.com/nodejs/node/commit/e2307d87e8)] - **(SEMVER-MINOR)** **stream**: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) [#&#8203;54032](https://github.com/nodejs/node/pull/54032)
    
    
Deprecations
  • [`8433032948`](https://github.com/nodejs/node/commit/8433032948)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842)
    
  • [`8c4c85cf31`](https://github.com/nodejs/node/commit/8c4c85cf31)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708)
    
    
Commits
  • [`027b0ffe84`](https://github.com/nodejs/node/commit/027b0ffe84)] - **async_hooks**: add an InactiveAsyncContextFrame class (Bryan English) [#&#8203;54510](https://github.com/nodejs/node/pull/54510)
    
  • [`022767028e`](https://github.com/nodejs/node/commit/022767028e)] - **benchmark**: --no-warnings to avoid DEP/ExpWarn log (Rafael Gonzaga) [#&#8203;54928](https://github.com/nodejs/node/pull/54928)
    
  • [`af1988c147`](https://github.com/nodejs/node/commit/af1988c147)] - **benchmark**: add buffer.isAscii benchmark (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740)
    
  • [`40c6849964`](https://github.com/nodejs/node/commit/40c6849964)] - **benchmark**: add buffer.isUtf8 bench (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740)
    
  • [`237d7dfbde`](https://github.com/nodejs/node/commit/237d7dfbde)] - **benchmark**: add access async version to bench (Rafael Gonzaga) [#&#8203;54747](https://github.com/nodejs/node/pull/54747)
    
  • [`ebe91db827`](https://github.com/nodejs/node/commit/ebe91db827)] - **benchmark**: enhance dc publish benchmark (Rafael Gonzaga) [#&#8203;54745](https://github.com/nodejs/node/pull/54745)
    
  • [`060164485b`](https://github.com/nodejs/node/commit/060164485b)] - **benchmark**: add match and doesNotMatch bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`2844180c7e`](https://github.com/nodejs/node/commit/2844180c7e)] - **benchmark**: add rejects and doesNotReject bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`af7689ed02`](https://github.com/nodejs/node/commit/af7689ed02)] - **benchmark**: add throws and doesNotThrow bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`456a1fe222`](https://github.com/nodejs/node/commit/456a1fe222)] - **benchmark**: add strictEqual and notStrictEqual bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`721c63c858`](https://github.com/nodejs/node/commit/721c63c858)] - **benchmark**: adds groups to better separate benchmarks (Giovanni Bucci) [#&#8203;54393](https://github.com/nodejs/node/pull/54393)
    
  • [`68e45b406e`](https://github.com/nodejs/node/commit/68e45b406e)] - **benchmark,doc**: add CPU scaling governor to perf (Rafael Gonzaga) [#&#8203;54723](https://github.com/nodejs/node/pull/54723)
    
  • [`d19efd7a50`](https://github.com/nodejs/node/commit/d19efd7a50)] - **benchmark,doc**: mention bar.R to the list of scripts (Rafael Gonzaga) [#&#8203;54722](https://github.com/nodejs/node/pull/54722)
    
  • [`1fb67afa2f`](https://github.com/nodejs/node/commit/1fb67afa2f)] - **buffer**: fix out of range for toString (Jason Zhang) [#&#8203;54553](https://github.com/nodejs/node/pull/54553)
    
  • [`85b5ed5d41`](https://github.com/nodejs/node/commit/85b5ed5d41)] - **buffer**: re-enable Fast API for Buffer.write (Robert Nagy) [#&#8203;54526](https://github.com/nodejs/node/pull/54526)
    
  • [`9a075279ec`](https://github.com/nodejs/node/commit/9a075279ec)] - **build**: upgrade clang-format to v18 (Aviv Keller) [#&#8203;53957](https://github.com/nodejs/node/pull/53957)
    
  • [`69ec9d8d2b`](https://github.com/nodejs/node/commit/69ec9d8d2b)] - **build**: fix conflicting V8 object print flags (Daeyeon Jeong) [#&#8203;54785](https://github.com/nodejs/node/pull/54785)
    
  • [`948bba396c`](https://github.com/nodejs/node/commit/948bba396c)] - **build**: do not build with code cache for core coverage collection (Joyee Cheung) [#&#8203;54633](https://github.com/nodejs/node/pull/54633)
    
  • [`6200cf4fb6`](https://github.com/nodejs/node/commit/6200cf4fb6)] - **build**: don't store eslint locally (Aviv Keller) [#&#8203;54231](https://github.com/nodejs/node/pull/54231)
    
  • [`3b5ed97fe9`](https://github.com/nodejs/node/commit/3b5ed97fe9)] - **build**: turn off `-Wrestrict` (Richard Lau) [#&#8203;54737](https://github.com/nodejs/node/pull/54737)
    
  • [`e38e305a35`](https://github.com/nodejs/node/commit/e38e305a35)] - **build,win**: enable clang-cl compilation (Stefan Stojanovic) [#&#8203;54655](https://github.com/nodejs/node/pull/54655)
    
  • [`5bba0781b0`](https://github.com/nodejs/node/commit/5bba0781b0)] - **crypto**: reject dh,x25519,x448 in {Sign,Verify}Final (Huáng Jùnliàng) [#&#8203;53774](https://github.com/nodejs/node/pull/53774)
    
  • [`3981853c00`](https://github.com/nodejs/node/commit/3981853c00)] - **crypto**: return a clearer error when loading an unsupported pkcs12 (Tim Perry) [#&#8203;54485](https://github.com/nodejs/node/pull/54485)
    
  • [`02ac5376b9`](https://github.com/nodejs/node/commit/02ac5376b9)] - **crypto**: remove unused `kHashTypes` internal (Antoine du Hamel) [#&#8203;54627](https://github.com/nodejs/node/pull/54627)
    
  • [`323d9da3c9`](https://github.com/nodejs/node/commit/323d9da3c9)] - **deps**: update cjs-module-lexer to 1.4.1 (Node.js GitHub Bot) [#&#8203;54846](https://github.com/nodejs/node/pull/54846)
    
  • [`bf4bf7cc6b`](https://github.com/nodejs/node/commit/bf4bf7cc6b)] - **deps**: update simdutf to 5.5.0 (Node.js GitHub Bot) [#&#8203;54434](https://github.com/nodejs/node/pull/54434)
    
  • [`61047dd130`](https://github.com/nodejs/node/commit/61047dd130)] - **deps**: upgrade npm to 10.8.3 (npm team) [#&#8203;54619](https://github.com/nodejs/node/pull/54619)
    
  • [`2351da5034`](https://github.com/nodejs/node/commit/2351da5034)] - **deps**: update cjs-module-lexer to 1.4.0 (Node.js GitHub Bot) [#&#8203;54713](https://github.com/nodejs/node/pull/54713)
    
  • [`0659516823`](https://github.com/nodejs/node/commit/0659516823)] - **deps**: allow amaro to be externalizable (Michael Dawson) [#&#8203;54646](https://github.com/nodejs/node/pull/54646)
    
  • [`6a32645dbc`](https://github.com/nodejs/node/commit/6a32645dbc)] - **deps**: fix sign-compare warning in ncrypto (Cheng) [#&#8203;54624](https://github.com/nodejs/node/pull/54624)
    
  • [`8f62f19197`](https://github.com/nodejs/node/commit/8f62f19197)] - **doc**: fix broken Android building link (Niklas Wenzel) [#&#8203;54922](https://github.com/nodejs/node/pull/54922)
    
  • [`440c256d76`](https://github.com/nodejs/node/commit/440c256d76)] - **doc**: add support link for aduh95 (Antoine du Hamel) [#&#8203;54866](https://github.com/nodejs/node/pull/54866)
    
  • [`56aca2a1ca`](https://github.com/nodejs/node/commit/56aca2a1ca)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;54854](https://github.com/nodejs/node/pull/54854)
    
  • [`8931f569c6`](https://github.com/nodejs/node/commit/8931f569c6)] - **doc**: experimental flag for global accessible APIs (Chengzhong Wu) [#&#8203;54330](https://github.com/nodejs/node/pull/54330)
    
  • [`6f8a6e9eb6`](https://github.com/nodejs/node/commit/6f8a6e9eb6)] - **doc**: add `ERR_INVALID_ADDRESS` to `errors.md` (Aviv Keller) [#&#8203;54661](https://github.com/nodejs/node/pull/54661)
    
  • [`c1b92e05e7`](https://github.com/nodejs/node/commit/c1b92e05e7)] - **doc**: add support link for mcollina (Matteo Collina) [#&#8203;54786](https://github.com/nodejs/node/pull/54786)
    
  • [`1def18122a`](https://github.com/nodejs/node/commit/1def18122a)] - **doc**: mark `--conditions` CLI flag as stable (Guy Bedford) [#&#8203;54209](https://github.com/nodejs/node/pull/54209)
    
  • [`b8ae36b6c3`](https://github.com/nodejs/node/commit/b8ae36b6c3)] - **doc**: fix typo in recognizing-contributors (Tobias Nießen) [#&#8203;54822](https://github.com/nodejs/node/pull/54822)
    
  • [`2c2ae80924`](https://github.com/nodejs/node/commit/2c2ae80924)] - **doc**: clarify `--max-old-space-size` and `--max-semi-space-size` units (Alexandre ABRIOUX) [#&#8203;54477](https://github.com/nodejs/node/pull/54477)
    
  • [`5bd4be5ce7`](https://github.com/nodejs/node/commit/5bd4be5ce7)] - **doc**: replace --allow-fs-read by --allow-fs-write in related section (M1CK431) [#&#8203;54427](https://github.com/nodejs/node/pull/54427)
    
  • [`c0f3e4603f`](https://github.com/nodejs/node/commit/c0f3e4603f)] - **doc**: add support link for marco-ippolito (Marco Ippolito) [#&#8203;54789](https://github.com/nodejs/node/pull/54789)
    
  • [`dc69eb8276`](https://github.com/nodejs/node/commit/dc69eb8276)] - **doc**: fix typo in module.md (Tobias Nießen) [#&#8203;54794](https://github.com/nodejs/node/pull/54794)
    
  • [`de225f5db9`](https://github.com/nodejs/node/commit/de225f5db9)] - **doc**: specify that preloaded modules affect subprocesses (Aviv Keller) [#&#8203;52939](https://github.com/nodejs/node/pull/52939)
    
  • [`62b0007cbe`](https://github.com/nodejs/node/commit/62b0007cbe)] - **doc**: clarify expandedSQL behavior (Tobias Nießen) [#&#8203;54685](https://github.com/nodejs/node/pull/54685)
    
  • [`1c7bdf95db`](https://github.com/nodejs/node/commit/1c7bdf95db)] - **doc**: render type references in SQLite docs (Tobias Nießen) [#&#8203;54684](https://github.com/nodejs/node/pull/54684)
    
  • [`5555095531`](https://github.com/nodejs/node/commit/5555095531)] - **doc**: fix typo (Michael Dawson) [#&#8203;54640](https://github.com/nodejs/node/pull/54640)
    
  • [`754baa4efa`](https://github.com/nodejs/node/commit/754baa4efa)] - **doc**: fix webcrypto.md AES-GCM backticks (Filip Skokan) [#&#8203;54621](https://github.com/nodejs/node/pull/54621)
    
  • [`5bfb4bcf45`](https://github.com/nodejs/node/commit/5bfb4bcf45)] - **doc**: add documentation about os.tmpdir() overrides (Joyee Cheung) [#&#8203;54613](https://github.com/nodejs/node/pull/54613)
    
  • [`22d873208e`](https://github.com/nodejs/node/commit/22d873208e)] - **doc, build**: fixup build docs (Aviv Keller) [#&#8203;54899](https://github.com/nodejs/node/pull/54899)
    
  • [`5e081a12b6`](https://github.com/nodejs/node/commit/5e081a12b6)] - **doc, child_process**: add esm snippets (Aviv Keller) [#&#8203;53616](https://github.com/nodejs/node/pull/53616)
    
  • [`2b68c30a26`](https://github.com/nodejs/node/commit/2b68c30a26)] - **doc, meta**: fix broken link in `onboarding.md` (Aviv Keller) [#&#8203;54886](https://github.com/nodejs/node/pull/54886)
    
  • [`a624002fff`](https://github.com/nodejs/node/commit/a624002fff)] - **esm**: throw `ERR_REQUIRE_ESM` instead of `ERR_INTERNAL_ASSERTION` (Antoine du Hamel) [#&#8203;54868](https://github.com/nodejs/node/pull/54868)
    
  • [`31d4ef91ee`](https://github.com/nodejs/node/commit/31d4ef91ee)] - **esm**: fix support for `URL` instances in `import.meta.resolve` (Antoine du Hamel) [#&#8203;54690](https://github.com/nodejs/node/pull/54690)
    
  • [`40ba89e452`](https://github.com/nodejs/node/commit/40ba89e452)] - **esm**: use Undici/`fetch` `data:` URL parser (Matthew Aitken) [#&#8203;54748](https://github.com/nodejs/node/pull/54748)
    
  • [`93116dd7b1`](https://github.com/nodejs/node/commit/93116dd7b1)] - **fs**: translate error code properly in cpSync (Jason Zhang) [#&#8203;54906](https://github.com/nodejs/node/pull/54906)
    
  • [`375cbb592e`](https://github.com/nodejs/node/commit/375cbb592e)] - **fs**: refactor rimraf to avoid using primordials (Yagiz Nizipli) [#&#8203;54834](https://github.com/nodejs/node/pull/54834)
    
  • [`ee89c3149e`](https://github.com/nodejs/node/commit/ee89c3149e)] - **fs**: respect dereference when copy symlink directory (Jason Zhang) [#&#8203;54732](https://github.com/nodejs/node/pull/54732)
    
  • [`7123bf7ca4`](https://github.com/nodejs/node/commit/7123bf7ca4)] - **http**: reduce likelihood of race conditions on keep-alive timeout (jazelly) [#&#8203;54863](https://github.com/nodejs/node/pull/54863)
    
  • [`04ef3e4afd`](https://github.com/nodejs/node/commit/04ef3e4afd)] - **https**: only use default ALPNProtocols when appropriate (Brian White) [#&#8203;54411](https://github.com/nodejs/node/pull/54411)
    
  • [`dc5593ba1e`](https://github.com/nodejs/node/commit/dc5593ba1e)] - **lib**: remove unnecessary async (jakecastelli) [#&#8203;54829](https://github.com/nodejs/node/pull/54829)
    
  • [`2b9a6373da`](https://github.com/nodejs/node/commit/2b9a6373da)] - **lib**: make WeakRef safe in abort_controller (jazelly) [#&#8203;54791](https://github.com/nodejs/node/pull/54791)
    
  • [`5f02e1b850`](https://github.com/nodejs/node/commit/5f02e1b850)] - **lib**: move `Symbol[Async]Dispose` polyfills to `internal/util` (Antoine du Hamel) [#&#8203;54853](https://github.com/nodejs/node/pull/54853)
    
  • [`fc78ced7e4`](https://github.com/nodejs/node/commit/fc78ced7e4)] - **lib**: convert signals to array before validation (Jason Zhang) [#&#8203;54714](https://github.com/nodejs/node/pull/54714)
    
  • [`21fef34a53`](https://github.com/nodejs/node/commit/21fef34a53)] - **lib**: add note about removing `node:sys` module (Rafael Gonzaga) [#&#8203;54743](https://github.com/nodejs/node/pull/54743)
    
  • [`a37d805489`](https://github.com/nodejs/node/commit/a37d805489)] - **(SEMVER-MINOR)** **lib**: add util.getCallSite() API (Rafael Gonzaga) [#&#8203;54380](https://github.com/nodejs/node/pull/54380)
    
  • [`2a1f56cce6`](https://github.com/nodejs/node/commit/2a1f56cce6)] - **lib**: ensure no holey array in fixed_queue (Jason Zhang) [#&#8203;54537](https://github.com/nodejs/node/pull/54537)
    
  • [`540b1dbaf6`](https://github.com/nodejs/node/commit/540b1dbaf6)] - **lib**: refactor SubtleCrypto experimental warnings (Filip Skokan) [#&#8203;54620](https://github.com/nodejs/node/pull/54620)
    
  • [`b59c8b88c7`](https://github.com/nodejs/node/commit/b59c8b88c7)] - **lib,src**: use built-in array buffer detach, transfer (Yagiz Nizipli) [#&#8203;54837](https://github.com/nodejs/node/pull/54837)
    
  • [`c1cc046de9`](https://github.com/nodejs/node/commit/c1cc046de9)] - **meta**: bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 (dependabot\[bot]) [#&#8203;54820](https://github.com/nodejs/node/pull/54820)
    
  • [`82c08ef483`](https://github.com/nodejs/node/commit/82c08ef483)] - **meta**: add `Windows ARM64` to flaky-tests list (Aviv Keller) [#&#8203;54693](https://github.com/nodejs/node/pull/54693)
    
  • [`df30e8efa1`](https://github.com/nodejs/node/commit/df30e8efa1)] - **meta**: ping [@&#8203;nodejs/performance](https://github.com/nodejs/performance) on bench changes (Rafael Gonzaga) [#&#8203;54752](https://github.com/nodejs/node/pull/54752)
    
  • [`bdd9fbb905`](https://github.com/nodejs/node/commit/bdd9fbb905)] - **meta**: bump actions/setup-python from 5.1.1 to 5.2.0 (Rich Trott) [#&#8203;54691](https://github.com/nodejs/node/pull/54691)
    
  • [`19574a8403`](https://github.com/nodejs/node/commit/19574a8403)] - **meta**: update sccache to v0.8.1 (Aviv Keller) [#&#8203;54720](https://github.com/nodejs/node/pull/54720)
    
  • [`9ebcfb2b28`](https://github.com/nodejs/node/commit/9ebcfb2b28)] - **meta**: bump step-security/harden-runner from 2.9.0 to 2.9.1 (dependabot\[bot]) [#&#8203;54704](https://github.com/nodejs/node/pull/54704)
    
  • [`ea58feb959`](https://github.com/nodejs/node/commit/ea58feb959)] - **meta**: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot\[bot]) [#&#8203;54703](https://github.com/nodejs/node/pull/54703)
    
  • [`c6bd9e443e`](https://github.com/nodejs/node/commit/c6bd9e443e)] - **meta**: bump github/codeql-action from 3.25.15 to 3.26.6 (dependabot\[bot]) [#&#8203;54702](https://github.com/nodejs/node/pull/54702)
    
  • [`79b358af2e`](https://github.com/nodejs/node/commit/79b358af2e)] - **meta**: fix links in `SECURITY.md` (Aviv Keller) [#&#8203;54696](https://github.com/nodejs/node/pull/54696)
    
  • [`6c8a20d650`](https://github.com/nodejs/node/commit/6c8a20d650)] - **meta**: fix `contributing` codeowners (Aviv Keller) [#&#8203;54641](https://github.com/nodejs/node/pull/54641)
    
  • [`b7284ed099`](https://github.com/nodejs/node/commit/b7284ed099)] - **module**: do not warn for typeless package.json when there isn't one (Joyee Cheung) [#&#8203;54045](https://github.com/nodejs/node/pull/54045)
    
  • [`ddd24a6e63`](https://github.com/nodejs/node/commit/ddd24a6e63)] - **node-api**: add external buffer creation benchmark (Chengzhong Wu) [#&#8203;54877](https://github.com/nodejs/node/pull/54877)
    
  • [`4a7576efae`](https://github.com/nodejs/node/commit/4a7576efae)] - **node-api**: add support for UTF-8 and Latin-1 property keys (Mert Can Altin) [#&#8203;52984](https://github.com/nodejs/node/pull/52984)
    
  • [`461e523498`](https://github.com/nodejs/node/commit/461e523498)] - **os**: improve `tmpdir` performance (Yagiz Nizipli) [#&#8203;54709](https://github.com/nodejs/node/pull/54709)
    
  • [`94fb7ab2e7`](https://github.com/nodejs/node/commit/94fb7ab2e7)] - **path**: remove `StringPrototypeCharCodeAt` from `posix.extname` (Aviv Keller) [#&#8203;54546](https://github.com/nodejs/node/pull/54546)
    
  • [`67b1d4cb45`](https://github.com/nodejs/node/commit/67b1d4cb45)] - **repl**: avoid interpreting 'npm' as a command when errors are recoverable (Shima Ryuhei) [#&#8203;54848](https://github.com/nodejs/node/pull/54848)
    
  • [`8433032948`](https://github.com/nodejs/node/commit/8433032948)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842)
    
  • [`7766349dd0`](https://github.com/nodejs/node/commit/7766349dd0)] - **sqlite**: fix segfault in expandedSQL (Tobias Nießen) [#&#8203;54687](https://github.com/nodejs/node/pull/54687)
    
  • [`4c1b98ba2b`](https://github.com/nodejs/node/commit/4c1b98ba2b)] - **sqlite**: remove unnecessary auto assignment (Tobias Nießen) [#&#8203;54686](https://github.com/nodejs/node/pull/54686)
    
  • [`77d162adb6`](https://github.com/nodejs/node/commit/77d162adb6)] - **src**: add `--env-file-if-exists` flag (Bosco Domingo) [#&#8203;53060](https://github.com/nodejs/node/pull/53060)
    
  • [`424bdc03b4`](https://github.com/nodejs/node/commit/424bdc03b4)] - **src**: add Cleanable class to Environment (Gabriel Schulhof) [#&#8203;54880](https://github.com/nodejs/node/pull/54880)
    
  • [`fbd08e3a9f`](https://github.com/nodejs/node/commit/fbd08e3a9f)] - **src**: switch crypto APIs to use Maybe\<void> (James M Snell) [#&#8203;54775](https://github.com/nodejs/node/pull/54775)
    
  • [`5e72bd3545`](https://github.com/nodejs/node/commit/5e72bd3545)] - **src**: eliminate ManagedEVPPkey (James M Snell) [#&#8203;54751](https://github.com/nodejs/node/pull/54751)
    
  • [`97cbcfbb43`](https://github.com/nodejs/node/commit/97cbcfbb43)] - **src**: fix unhandled error in structuredClone (Daeyeon Jeong) [#&#8203;54764](https://github.com/nodejs/node/pull/54764)
    
  • [`b89cd8d19a`](https://github.com/nodejs/node/commit/b89cd8d19a)] - **src**: move hkdf, scrypto, pbkdf2 impl to ncrypto (James M Snell) [#&#8203;54651](https://github.com/nodejs/node/pull/54651)
    
  • [`5c9599af5a`](https://github.com/nodejs/node/commit/5c9599af5a)] - **src**: create handle scope in FastInternalModuleStat (Joyee Cheung) [#&#8203;54384](https://github.com/nodejs/node/pull/54384)
    
  • [`e2307d87e8`](https://github.com/nodejs/node/commit/e2307d87e8)] - **(SEMVER-MINOR)** **stream**: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) [#&#8203;54032](https://github.com/nodejs/node/pull/54032)
    
  • [`ff54cabef6`](https://github.com/nodejs/node/commit/ff54cabef6)] - **test**: adjust test-tls-junk-server for OpenSSL32 (Michael Dawson) [#&#8203;54926](https://github.com/nodejs/node/pull/54926)
    
  • [`23fb03beed`](https://github.com/nodejs/node/commit/23fb03beed)] - **test**: remove duplicate skip AIX (Wuli) [#&#8203;54917](https://github.com/nodejs/node/pull/54917)
    
  • [`2b5e70816a`](https://github.com/nodejs/node/commit/2b5e70816a)] - **test**: adjust tls test for OpenSSL32 (Michael Dawson) [#&#8203;54909](https://github.com/nodejs/node/pull/54909)
    
  • [`cefa692dcb`](https://github.com/nodejs/node/commit/cefa692dcb)] - **test**: fix test-http2-socket-close.js (Hüseyin Açacak) [#&#8203;54900](https://github.com/nodejs/node/pull/54900)
    
  • [`097f6d3e7e`](https://github.com/nodejs/node/commit/097f6d3e7e)] - **test**: improve test-internal-fs-syncwritestream (Sunghoon) [#&#8203;54671](https://github.com/nodejs/node/pull/54671)
    
  • [`ed736a689f`](https://github.com/nodejs/node/commit/ed736a689f)] - **test**: deflake test-dns (Luigi Pinca) [#&#8203;54902](https://github.com/nodejs/node/pull/54902)
    
  • [`bb4849f595`](https://github.com/nodejs/node/commit/bb4849f595)] - **test**: fix test test-tls-dhe for OpenSSL32 (Michael Dawson) [#&#8203;54903](https://github.com/nodejs/node/pull/54903)
    
  • [`d9264bceca`](https://github.com/nodejs/node/commit/d9264bceca)] - **test**: use correct file naming syntax for `util-parse-env` (Aviv Keller) [#&#8203;53705](https://github.com/nodejs/node/pull/53705)
    
  • [`115a7ca42a`](https://github.com/nodejs/node/commit/115a7ca42a)] - **test**: add missing await (Luigi Pinca) [#&#8203;54828](https://github.com/nodejs/node/pull/54828)
    
  • [`7a1d633d77`](https://github.com/nodejs/node/commit/7a1d633d77)] - **test**: move more url tests to `node:test` (Yagiz Nizipli) [#&#8203;54636](https://github.com/nodejs/node/pull/54636)
    
  • [`ee385d62b9`](https://github.com/nodejs/node/commit/ee385d62b9)] - **test**: strip color chars in `test-runner-run` (Giovanni Bucci) [#&#8203;54552](https://github.com/nodejs/node/pull/54552)
    
  • [`2efec6221c`](https://github.com/nodejs/node/commit/2efec6221c)] - **test**: deflake test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54872](https://github.com/nodejs/node/pull/54872)
    
  • [`b198a91404`](https://github.com/nodejs/node/commit/b198a91404)] - **test**: remove dead code in test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54860](https://github.com/nodejs/node/pull/54860)
    
  • [`194cb83f39`](https://github.com/nodejs/node/commit/194cb83f39)] - **test**: reduce test-esm-loader-hooks-inspect-wait flakiness (Luigi Pinca) [#&#8203;54827](https://github.com/nodejs/node/pull/54827)
    
  • [`4b53558e8b`](https://github.com/nodejs/node/commit/4b53558e8b)] - **test**: reduce the allocation size in test-worker-arraybuffer-zerofill (James M Snell) [#&#8203;54839](https://github.com/nodejs/node/pull/54839)
    
  • [`c968d65d6d`](https://github.com/nodejs/node/commit/c968d65d6d)] - **test**: fix test-tls-client-mindhsize for OpenSSL32 (Michael Dawson) [#&#8203;54739](https://github.com/nodejs/node/pull/54739)
    
  • [`b998bb0933`](https://github.com/nodejs/node/commit/b998bb0933)] - **test**: remove need to make fs call for zlib test (Yagiz Nizipli) [#&#8203;54814](https://github.com/nodejs/node/pull/54814)
    
  • [`f084ea2e01`](https://github.com/nodejs/node/commit/f084ea2e01)] - **test**: use platform timeout (jakecastelli) [#&#8203;54591](https://github.com/nodejs/node/pull/54591)
    
  • [`b10e434cf3`](https://github.com/nodejs/node/commit/b10e434cf3)] - **test**: add platform timeout support for riscv64 (jakecastelli) [#&#8203;54591](https://github.com/nodejs/node/pull/54591)
    
  • [`b875f2d7de`](https://github.com/nodejs/node/commit/b875f2d7de)] - **test**: reduce stack size for test-error-serdes (James M Snell) [#&#8203;54840](https://github.com/nodejs/node/pull/54840)
    
  • [`d1a411480a`](https://github.com/nodejs/node/commit/d1a411480a)] - **test**: reduce fs calls in test-fs-existssync-false (Yagiz Nizipli) [#&#8203;54815](https://github.com/nodejs/node/pull/54815)
    
  • [`b96ee30a09`](https://github.com/nodejs/node/commit/b96ee30a09)] - **test**: use `node:test` in `test-cli-syntax.bad` (Aviv Keller) [#&#8203;54513](https://github.com/nodejs/node/pull/54513)
    
  • [`5278b8b7a1`](https://github.com/nodejs/node/commit/5278b8b7a1)] - **test**: move test-http-server-request-timeouts-mixed (James M Snell) [#&#8203;54841](https://github.com/nodejs/node/pull/54841)
    
  • [`8345a60d3a`](https://github.com/nodejs/node/commit/8345a60d3a)] - **test**: fix Windows async-context-frame memory failure (Stephen Belanger) [#&#8203;54823](https://github.com/nodejs/node/pull/54823)
    
  • [`cad404e1a1`](https://github.com/nodejs/node/commit/cad404e1a1)] - **test**: fix volatile for CauseSegfault with clang (Ivan Trubach) [#&#8203;54325](https://github.com/nodejs/node/pull/54325)
    
  • [`41682c7286`](https://github.com/nodejs/node/commit/41682c7286)] - **test**: set `test-http2-socket-close` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`1e1ac48711`](https://github.com/nodejs/node/commit/1e1ac48711)] - **test**: set `test-worker-arraybuffer-zerofill` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`56238debff`](https://github.com/nodejs/node/commit/56238debff)] - **test**: set `test-runner-run-watch` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`8291de1540`](https://github.com/nodejs/node/commit/8291de1540)] - **test**: set `test-http-server-request-timeouts-mixed` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`32d340e6b3`](https://github.com/nodejs/node/commit/32d340e6b3)] - **test**: set `test-single-executable-application-empty` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`6a2da4c4ca`](https://github.com/nodejs/node/commit/6a2da4c4ca)] - **test**: set `test-macos-app-sandbox` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`2f408847a0`](https://github.com/nodejs/node/commit/2f408847a0)] - **test**: set `test-fs-utimes` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`e3b7c40ffc`](https://github.com/nodejs/node/commit/e3b7c40ffc)] - **test**: set `test-runner-run-watch` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`d2ede46946`](https://github.com/nodejs/node/commit/d2ede46946)] - **test**: set `test-sqlite-statement-sync` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`b9f3385808`](https://github.com/nodejs/node/commit/b9f3385808)] - **test**: set `test-writewrap` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`d55fec8f40`](https://github.com/nodejs/node/commit/d55fec8f40)] - **test**: set `test-async-context-frame` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`3dfb525f3e`](https://github.com/nodejs/node/commit/3dfb525f3e)] - **test**: set `test-esm-loader-hooks-inspect-wait` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`b0458a88b4`](https://github.com/nodejs/node/commit/b0458a88b4)] - **test**: set `test-http2-large-file` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`5f6f8757e5`](https://github.com/nodejs/node/commit/5f6f8757e5)] - **test**: set `test-runner-watch-mode-complex` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`4231af336d`](https://github.com/nodejs/node/commit/4231af336d)] - **test**: set `test-performance-function` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`45ef2a868e`](https://github.com/nodejs/node/commit/45ef2a868e)] - **test**: set `test-debugger-heap-profiler` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`b5137f6405`](https://github.com/nodejs/node/commit/b5137f6405)] - **test**: fix `test-process-load-env-file` when path contains `'` (Antoine du Hamel) [#&#8203;54511](https://github.com/nodejs/node/pull/54511)
    
  • [`960116905a`](https://github.com/nodejs/node/commit/960116905a)] - **test**: refactor fs-watch tests due to macOS issue (Santiago Gimeno) [#&#8203;54498](https://github.com/nodejs/node/pull/54498)
    
  • [`f074d74bf3`](https://github.com/nodejs/node/commit/f074d74bf3)] - **test**: refactor `test-esm-type-field-errors` (Giovanni Bucci) [#&#8203;54368](https://github.com/nodejs/node/pull/54368)
    
  • [`67e30deced`](https://github.com/nodejs/node/commit/67e30deced)] - **test**: move more zlib tests to node:test (Yagiz Nizipli) [#&#8203;54609](https://github.com/nodejs/node/pull/54609)
    
  • [`fdb65111a3`](https://github.com/nodejs/node/commit/fdb65111a3)] - **test**: improve output of child process utilities (Joyee Cheung) [#&#8203;54622](https://github.com/nodejs/node/pull/54622)
    
  • [`55a12a4190`](https://github.com/nodejs/node/commit/55a12a4190)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;54925](https://github.com/nodejs/node/pull/54925)
    
  • [`de0f445a7f`](https://github.com/nodejs/node/commit/de0f445a7f)] - **test_runner**: reimplement `assert.ok` to allow stack parsing (Aviv Keller) [#&#8203;54776](https://github.com/nodejs/node/pull/54776)
    
  • [`a52c199d9d`](https://github.com/nodejs/node/commit/a52c199d9d)] - **(SEMVER-MINOR)** **test_runner**: report coverage thresholds in `test:coverage` (Aviv Keller) [#&#8203;54813](https://github.com/nodejs/node/pull/54813)
    
  • [`6552fddef5`](https://github.com/nodejs/node/commit/6552fddef5)] - **test_runner**: update kPatterns (Pietro Marchini) [#&#8203;54728](https://github.com/nodejs/node/pull/54728)
    
  • [`3396a4954d`](https://github.com/nodejs/node/commit/3396a4954d)] - **test_runner**: detect only tests when isolation is off (Colin Ihrig) [#&#8203;54832](https://github.com/nodejs/node/pull/54832)
    
  • [`021f59b6bc`](https://github.com/nodejs/node/commit/021f59b6bc)] - **test_runner**: apply filtering when tests begin (Colin Ihrig) [#&#8203;54832](https://github.com/nodejs/node/pull/54832)
    
  • [`36da793350`](https://github.com/nodejs/node/commit/36da793350)] - **test_runner**: allow `--import` with no isolation (Aviv Keller) [#&#8203;54697](https://github.com/nodejs/node/pull/54697)
    
  • [`de73d1ee4b`](https://github.com/nodejs/node/commit/de73d1ee4b)] - **test_runner**: improve code coverage cleanup (Colin Ihrig) [#&#8203;54856](https://github.com/nodejs/node/pull/54856)
    
  • [`3d478728f2`](https://github.com/nodejs/node/commit/3d478728f2)] - **timers**: avoid generating holey internal arrays (Gürgün Dayıoğlu) [#&#8203;54771](https://github.com/nodejs/node/pull/54771)
    
  • [`b3d567ae0f`](https://github.com/nodejs/node/commit/b3d567ae0f)] - **timers**: document ref option for scheduler.wait (Paolo Insogna) [#&#8203;54605](https://github.com/nodejs/node/pull/54605)
    
  • [`c2bf0134ce`](https://github.com/nodejs/node/commit/c2bf0134ce)] - **(SEMVER-MINOR)** **tls**: add `allowPartialTrustChain` flag (Anna Henningsen) [#&#8203;54790](https://github.com/nodejs/node/pull/54790)
    
  • [`608a611132`](https://github.com/nodejs/node/commit/608a611132)] - **tools**: add readability/fn_size to filter (Rafael Gonzaga) [#&#8203;54744](https://github.com/nodejs/node/pull/54744)
    
  • [`93fab49099`](https://github.com/nodejs/node/commit/93fab49099)] - **tools**: add util scripts to land and rebase PRs (Antoine du Hamel) [#&#8203;54656](https://github.com/nodejs/node/pull/54656)
    
  • [`d6df542ff8`](https://github.com/nodejs/node/commit/d6df542ff8)] - **tools**: remove readability/fn_size rule (Rafael Gonzaga) [#&#8203;54663](https://github.com/nodejs/node/pull/54663)
    
  • [`689d127ee7`](https://github.com/nodejs/node/commit/689d127ee7)] - **typings**: fix TypedArray to a global type (1ilsang) [#&#8203;54063](https://github.com/nodejs/node/pull/54063)
    
  • [`071dff1d34`](https://github.com/nodejs/node/commit/071dff1d34)] - **typings**: correct param type of `SafePromisePrototypeFinally` (Wuli) [#&#8203;54727](https://github.com/nodejs/node/pull/54727)
    
  • [`5243e3240c`](https://github.com/nodejs/node/commit/5243e3240c)] - ***Revert*** "**v8**: enable maglev on supported architectures" (Joyee Cheung) [#&#8203;54384](https://github.com/nodejs/node/pull/54384)
    
  • [`ade9da5b3a`](https://github.com/nodejs/node/commit/ade9da5b3a)] - **vm**: add vm proto property lookup test (Chengzhong Wu) [#&#8203;54606](https://github.com/nodejs/node/pull/54606)
    
  • [`8385958b60`](https://github.com/nodejs/node/commit/8385958b60)] - **zlib**: add typings for better dx (Yagiz Nizipli) [#&#8203;54699](https://github.com/nodejs/node/pull/54699)
    
  • [`8c4c85cf31`](https://github.com/nodejs/node/commit/8c4c85cf31)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708)
    
    

v22.8.0: 2024-09-03, Version 22.8.0 (Current), @​RafaelGSS

Compare Source

New JS API for compile cache

This release adds a new API module.enableCompileCache() that can be used to enable on-disk code caching of all modules loaded after this API is called.
Previously this could only be enabled by the NODE_COMPILE_CACHE environment variable, so it could only set by end-users.
This API allows tooling and library authors to enable caching of their own code.
This is a built-in alternative to the v8-compile-cache/v8-compile-cache-lib packages,
but have better performance and supports ESM.

Thanks to Joyee Cheung for working on this.

New option for vm.createContext() to create a context with a freezable globalThis

Node.js implements a flavor of vm.createContext() and friends that creates a context without contextifying its global
object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context
(impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they
don't need the interceptor behavior.

Thanks to Joyee Cheung for working on this.

Support for coverage thresholds

Node.js now supports requiring code coverage to meet a specific threshold before the process exits successfully.
To use this feature, you need to enable the --experimental-test-coverage flag.

You can set thresholds for the following types of coverage:

  • Branch coverage: Use --test-coverage-branches=<threshold>
  • Function coverage: Use --test-coverage-functions=<threshold>
  • Line coverage: Use --test-coverage-lines=<threshold>

<threshold> should be an integer between 0 and 100. If an invalid value is provided, a TypeError will be thrown.

If the code coverage fails to meet the specified thresholds for any category, the process will exit with code 1.

For instance, to enforce a minimum of 80% line coverage and 60% branch coverage, you can run:

$ node --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=60 example.js

Thanks Aviv Keller for working on this.

Other Notable Changes
  • [`1f2cc2fa47`](https://github.com/nodejs/node/commit/1f2cc2fa47)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413)
    
  • [`1e01bdc0d0`](https://github.com/nodejs/node/commit/1e01bdc0d0)] - **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) [#&#8203;54264](https://github.com/nodejs/node/pull/54264)
    
  • [`97fa075c2e`](https://github.com/nodejs/node/commit/97fa075c2e)] - **(SEMVER-MINOR)** **test_runner**: support running tests in process (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927)
    
  • [`858b583c88`](https://github.com/nodejs/node/commit/858b583c88)] - **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run() (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927)
    
    
Commits
  • [`94985df9d6`](https://github.com/nodejs/node/commit/94985df9d6)] - **benchmark**: fix benchmark for file path and URL conversion (Early Riser) [#&#8203;54190](https://github.com/nodejs/node/pull/54190)
    
  • [`ac178b094b`](https://github.com/nodejs/node/commit/ac178b094b)] - **buffer**: truncate instead of throw when writing beyond buffer (Robert Nagy) [#&#8203;54524](https://github.com/nodejs/node/pull/54524)
    
  • [`afd8c1eb4f`](https://github.com/nodejs/node/commit/afd8c1eb4f)] - **buffer**: allow invalid encoding in from (Robert Nagy) [#&#8203;54533](https://github.com/nodejs/node/pull/54533)
    
  • [`6f0cf35cd3`](https://github.com/nodejs/node/commit/6f0cf35cd3)] - **build**: reclaim disk space on macOS GHA runner (jakecastelli) [#&#8203;54658](https://github.com/nodejs/node/pull/54658)
    
  • [`467ac3aec4`](https://github.com/nodejs/node/commit/467ac3aec4)] - **build**: don't clean obj.target directory if it doesn't exist (Joyee Cheung) [#&#8203;54337](https://github.com/nodejs/node/pull/54337)
    
  • [`71fdf961df`](https://github.com/nodejs/node/commit/71fdf961df)] - **build**: update required python version to 3.8 (Aviv Keller) [#&#8203;54358](https://github.com/nodejs/node/pull/54358)
    
  • [`73604cf1c5`](https://github.com/nodejs/node/commit/73604cf1c5)] - **deps**: update nghttp2 to 1.63.0 (Node.js GitHub Bot) [#&#8203;54589](https://github.com/nodejs/node/pull/54589)
    
  • [`b00c087285`](https://github.com/nodejs/node/commit/b00c087285)] - **deps**: V8: cherry-pick [`e74d0f4`](https://github.com/nodejs/node/commit/e74d0f437fcd) (Joyee Cheung) [#&#8203;54279](https://github.com/nodejs/node/pull/54279)
    
  • [`33a6b3c7a9`](https://github.com/nodejs/node/commit/33a6b3c7a9)] - **deps**: backport ICU-22787 to fix ClangCL on Windows (Stefan Stojanovic) [#&#8203;54502](https://github.com/nodejs/node/pull/54502)
    
  • [`fe56949cbb`](https://github.com/nodejs/node/commit/fe56949cbb)] - **deps**: update c-ares to v1.33.1 (Node.js GitHub Bot) [#&#8203;54549](https://github.com/nodejs/node/pull/54549)
    
  • [`290f6ce619`](https://github.com/nodejs/node/commit/290f6ce619)] - **deps**: update amaro to 0.1.8 (Node.js GitHub Bot) [#&#8203;54520](https://github.com/nodejs/node/pull/54520)
    
  • [`b5843568b4`](https://github.com/nodejs/node/commit/b5843568b4)] - **deps**: update amaro to 0.1.7 (Node.js GitHub Bot) [#&#8203;54473](https://github.com/nodejs/node/pull/54473)
    
  • [`9c709209b4`](https://github.com/nodejs/node/commit/9c709209b4)] - **deps**: update undici to 6.19.8 (Node.js GitHub Bot) [#&#8203;54456](https://github.com/nodejs/node/pull/54456)
    
  • [`a5ce24181b`](https://github.com/nodejs/node/commit/a5ce24181b)] - **deps**: sqlite: fix Windows compilation (Colin Ihrig) [#&#8203;54433](https://github.com/nodejs/node/pull/54433)
    
  • [`3caf29ea88`](https://github.com/nodejs/node/commit/3caf29ea88)] - **deps**: update sqlite to 3.46.1 (Node.js GitHub Bot) [#&#8203;54433](https://github.com/nodejs/node/pull/54433)
    
  • [`68758d4b08`](https://github.com/nodejs/node/commit/68758d4b08)] - **doc**: add support me link for anonrig (Yagiz Nizipli) [#&#8203;54611](https://github.com/nodejs/node/pull/54611)
    
  • [`f5c5529266`](https://github.com/nodejs/node/commit/f5c5529266)] - **doc**: add alert on REPL from TCP socket (Rafael Gonzaga) [#&#8203;54594](https://github.com/nodejs/node/pull/54594)
    
  • [`bf824483cd`](https://github.com/nodejs/node/commit/bf824483cd)] - **doc**: fix typo in styleText description (Rafael Gonzaga) [#&#8203;54616](https://github.com/nodejs/node/pull/54616)
    
  • [`825d933fd4`](https://github.com/nodejs/node/commit/825d933fd4)] - **doc**: add getHeapStatistics() property descriptions (Benji Marinacci) [#&#8203;54584](https://github.com/nodejs/node/pull/54584)
    
  • [`80e5150160`](https://github.com/nodejs/node/commit/80e5150160)] - **doc**: fix module compile cache description (沈鸿飞) [#&#8203;54625](https://github.com/nodejs/node/pull/54625)
    
  • [`7fd033fe56`](https://github.com/nodejs/node/commit/7fd033fe56)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;54562](https://github.com/nodejs/node/pull/54562)
    
  • [`c499913732`](https://github.com/nodejs/node/commit/c499913732)] - **doc**: fix information about including coverage files (Aviv Keller) [#&#8203;54527](https://github.com/nodejs/node/pull/54527)
    
  • [`c3dc83befc`](https://github.com/nodejs/node/commit/c3dc83befc)] - **doc**: support collaborators - talk amplification (Michael Dawson) [#&#8203;54508](https://github.com/nodejs/node/pull/54508)
    
  • [`fc57beaad3`](https://github.com/nodejs/node/commit/fc57beaad3)] - **doc**: add note about shasum generation failure (Marco Ippolito) [#&#8203;54487](https://github.com/nodejs/node/pull/54487)
    
  • [`1800a58f49`](https://github.com/nodejs/node/commit/1800a58f49)] - **doc**: update websocket flag description to reflect stable API status (Yelim Koo) [#&#8203;54482](https://github.com/nodejs/node/pull/54482)
    
  • [`61affd77a7`](https://github.com/nodejs/node/commit/61affd77a7)] - **doc**: fix capitalization in module.md (shallow-beach) [#&#8203;54488](https://github.com/nodejs/node/pull/54488)
    
  • [`25419915c7`](https://github.com/nodejs/node/commit/25419915c7)] - **doc**: add esm examples to node:https (Alfredo González) [#&#8203;54399](https://github.com/nodejs/node/pull/54399)
    
  • [`83b5efeb54`](https://github.com/nodejs/node/commit/83b5efeb54)] - **doc**: reserve ABI 130 for Electron 33 (Calvin) [#&#8203;54383](https://github.com/nodejs/node/pull/54383)
    
  • [`6ccbd32ae8`](https://github.com/nodejs/node/commit/6ccbd32ae8)] - **doc, meta**: add missing `,` to `BUILDING.md` (Aviv Keller) [#&#8203;54409](https://github.com/nodejs/node/pull/54409)
    
  • [`fc08a9b0cd`](https://github.com/nodejs/node/commit/fc08a9b0cd)] - **fs**: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) [#&#8203;54369](https://github.com/nodejs/node/pull/54369)
    
  • [`4a664b5fcb`](https://github.com/nodejs/node/commit/4a664b5fcb)] - **lib**: respect terminal capabilities on styleText (Rafael Gonzaga) [#&#8203;54389](https://github.com/nodejs/node/pull/54389)
    
  • [`a9ce2b6a28`](https://github.com/nodejs/node/commit/a9ce2b6a28)] - **lib**: fix emit warning for debuglog.time when disabled (Vinicius Lourenço) [#&#8203;54275](https://github.com/nodejs/node/pull/54275)
    
  • [`b5a23c9783`](https://github.com/nodejs/node/commit/b5a23c9783)] - **meta**: remind users to use a supported version in bug reports (Aviv Keller) [#&#8203;54481](https://github.com/nodejs/node/pull/54481)
    
  • [`0d7171d8e9`](https://github.com/nodejs/node/commit/0d7171d8e9)] - **meta**: add more labels to dep-updaters (Aviv Keller) [#&#8203;54454](https://github.com/nodejs/node/pull/54454)
    
  • [`c4996c189f`](https://github.com/nodejs/node/commit/c4996c189f)] - **meta**: run coverage-windows when `vcbuild.bat` updated (Aviv Keller) [#&#8203;54412](https://github.com/nodejs/node/pull/54412)
    
  • [`3cf645768e`](https://github.com/nodejs/node/commit/3cf645768e)] - **module**: use amaro default transform values (Marco Ippolito) [#&#8203;54517](https://github.com/nodejs/node/pull/54517)
    
  • [`336496b90e`](https://github.com/nodejs/node/commit/336496b90e)] - **module**: add sourceURL magic comment hinting generated source (Chengzhong Wu) [#&#8203;54402](https://github.com/nodejs/node/pull/54402)
    
  • [`04f83b50ad`](https://github.com/nodejs/node/commit/04f83b50ad)] - ***Revert*** "**net**: validate host name for server listen" (jakecastelli) [#&#8203;54554](https://github.com/nodejs/node/pull/54554)
    
  • [`1e01bdc0d0`](https://github.com/nodejs/node/commit/1e01bdc0d0)] - **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) [#&#8203;54264](https://github.com/nodejs/node/pull/54264)
    
  • [`3cd10a3f40`](https://github.com/nodejs/node/commit/3cd10a3f40)] - **node-api**: remove RefBase and CallbackWrapper (Vladimir Morozov) [#&#8203;53590](https://github.com/nodejs/node/pull/53590)
    
  • [`72c554abab`](https://github.com/nodejs/node/commit/72c554abab)] - **sqlite**: return results with null prototype (Michaël Zasso) [#&#8203;54350](https://github.com/nodejs/node/pull/54350)
    
  • [`e071651bb2`](https://github.com/nodejs/node/commit/e071651bb2)] - **src**: disable fast methods for `buffer.write` (Michaël Zasso) [#&#8203;54565](https://github.com/nodejs/node/pull/54565)
    
  • [`f8cbbc685a`](https://github.com/nodejs/node/commit/f8cbbc685a)] - **src**: use v8::Isolate::GetDefaultLocale() to compute navigator.language (Joyee Cheung) [#&#8203;54279](https://github.com/nodejs/node/pull/54279)
    
  • [`4baf4637eb`](https://github.com/nodejs/node/commit/4baf4637eb)] - **(SEMVER-MINOR)** **src**: add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE (Joyee Cheung) [#&#8203;54501](https://github.com/nodejs/node/pull/54501)
    
  • [`101e299656`](https://github.com/nodejs/node/commit/101e299656)] - **src**: move more crypto_dh.cc code to ncrypto (James M Snell) [#&#8203;54459](https://github.com/nodejs/node/pull/54459)
    
  • [`e6e1f4e8bd`](https://github.com/nodejs/node/commit/e6e1f4e8bd)] - **src**: remove redundant AESCipherMode (Tobias Nießen) [#&#8203;54438](https://github.com/nodejs/node/pull/54438)
    
  • [`1ff3f63f5e`](https://github.com/nodejs/node/commit/1ff3f63f5e)] - **src**: handle errors correctly in `permission.cc` (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541)
    
  • [`4938188682`](https://github.com/nodejs/node/commit/4938188682)] - **src**: return `v8::Object` from error constructors (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541)
    
  • [`4578e9485b`](https://github.com/nodejs/node/commit/4578e9485b)] - **src**: use better return types in KVStore (Michaël Zasso) [#&#8203;54539](https://github.com/nodejs/node/pull/54539)
    
  • [`7d9e994791`](https://github.com/nodejs/node/commit/7d9e994791)] - **src**: change SetEncodedValue to return Maybe\<void> (Tobias Nießen) [#&#8203;54443](https://github.com/nodejs/node/pull/54443)
    
  • [`eef303028f`](https://github.com/nodejs/node/commit/eef303028f)] - **src**: remove cached data tag from snapshot metadata (Joyee Cheung) [#&#8203;54122](https://github.com/nodejs/node/pull/54122)
    
  • [`3a74c400d5`](https://github.com/nodejs/node/commit/3a74c400d5)] - **src**: improve `buffer.transcode` performance (Yagiz Nizipli) [#&#8203;54153](https://github.com/nodejs/node/pull/54153)
    
  • [`909c5320fd`](https://github.com/nodejs/node/commit/909c5320fd)] - **src**: move more crypto code to ncrypto (James M Snell) [#&#8203;54320](https://github.com/nodejs/node/pull/54320)
    
  • [`9ba75faf5f`](https://github.com/nodejs/node/commit/9ba75faf5f)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413)
    
  • [`fffc300c6d`](https://github.com/nodejs/node/commit/fffc300c6d)] - **stream**: change stream to use index instead of `for...of` (Wiyeong Seo) [#&#8203;54474](https://github.com/nodejs/node/pull/54474)
    
  • [`a4a6ef8d29`](https://github.com/nodejs/node/commit/a4a6ef8d29)] - **test**: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) [#&#8203;54610](https://github.com/nodejs/node/pull/54610)
    
  • [`76345a5d7c`](https://github.com/nodejs/node/commit/76345a5d7c)] - **test**: update TLS test for OpenSSL 3.2 (Richard Lau) [#&#8203;54612](https://github.com/nodejs/node/pull/54612)
    
  • [`522d5a359d`](https://github.com/nodejs/node/commit/522d5a359d)] - **test**: run V8 Fast API tests in release mode too (Michaël Zasso) [#&#8203;54570](https://github.com/nodejs/node/pull/54570)
    
  • [`edbecf5209`](https://github.com/nodejs/node/commit/edbecf5209)] - **test**: increase key size for ca2-cert.pem (Michael Dawson) [#&#8203;54599](https://github.com/nodejs/node/pull/54599)
    
  • [`bc976cfc93`](https://github.com/nodejs/node/commit/bc976cfc93)] - **test**: update test-abortsignal-cloneable to use node:test (James M Snell) [#&#8203;54581](https://github.com/nodejs/node/pull/54581)
    
  • [`9f1ce732a8`](https://github.com/nodejs/node/commit/9f1ce732a8)] - **test**: update test-assert-typedarray-deepequal to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585)
    
  • [`c74f2aeb92`](https://github.com/nodejs/node/commit/c74f2aeb92)] - **test**: update test-assert to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585)
    
  • [`a0be95e4cc`](https://github.com/nodejs/node/commit/a0be95e4cc)] - **test**: merge ongc and gcutil into gc.js (tannal) [#&#8203;54355](https://github.com/nodejs/node/pull/54355)
    
  • [`c10aff665e`](https://github.com/nodejs/node/commit/c10aff665e)] - **test**: move a couple of tests over to using node:test (James M Snell) [#&#8203;54582](https://github.com/nodejs/node/pull/54582)
    
  • [`dbbc790949`](https://github.com/nodejs/node/commit/dbbc790949)] - **test**: update test-aborted-util to use node:test (James M Snell) [#&#8203;54578](https://github.com/nodejs/node/pull/54578)
    
  • [`64442fce6b`](https://github.com/nodejs/node/commit/64442fce6b)] - **test**: refactor test-abortcontroller to use node:test (James M Snell) [#&#8203;54574](https://github.com/nodejs/node/pull/54574)
    
  • [`72345dee1c`](https://github.com/nodejs/node/commit/72345dee1c)] - **test**: fix embedding test for Windows (Vladimir Morozov) [#&#8203;53659](https://github.com/nodejs/node/pull/53659)
    
  • [`846e2b2896`](https://github.com/nodejs/node/commit/846e2b2896)] - **test**: refactor test_runner tests to change default reporter (Colin Ihrig) [#&#8203;54547](https://github.com/nodejs/node/pull/54547)
    
  • [`b5eb24c86a`](https://github.com/nodejs/node/commit/b5eb24c86a)] - **test**: force spec reporter in test-runner-watch-mode.mjs (Colin Ihrig) [#&#8203;54538](https://github.com/nodejs/node/pull/54538)
    
  • [`66ae9f4c0a`](https://github.com/nodejs/node/commit/66ae9f4c0a)] - **test**: use valid hostnames (Luigi Pinca) [#&#8203;54556](https://github.com/nodejs/node/pull/54556)
    
  • [`02d664b75f`](https://github.com/nodejs/node/commit/02d664b75f)] - **test**: fix improper path to URL conversion (Antoine du Hamel) [#&#8203;54509](https://github.com/nodejs/node/pull/54509)
    
  • [`8a4f8a9eff`](https://github.com/nodejs/node/commit/8a4f8a9eff)] - **test**: add tests for runner coverage with different stdout column widths (Pietro Marchini) [#&#8203;54494](https://github.com/nodejs/node/pull/54494)
    
  • [`b0ed8dbb2f`](https://github.com/nodejs/node/commit/b0ed8dbb2f)] - **test**: prevent V8 from writing into the system's tmpdir (Michaël Zasso) [#&#8203;54395](https://github.com/nodejs/node/pull/54395)
    
  • [`5ee234a5a6`](https://github.com/nodejs/node/commit/5ee234a5a6)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;54593](https://github.com/nodejs/node/pull/54593)
    
  • [`a4bebf8559`](https://github.com/nodejs/node/commit/a4bebf8559)] - **test_runner**: ensure test watcher picks up new test files (Pietro Marchini) [#&#8203;54225](https://github.com/nodejs/node/pull/54225)
    
  • [`d4310fe9c1`](https://github.com/nodejs/node/commit/d4310fe9c1)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage thresholds (Aviv Keller) [#&#8203;54429](https://github.com/nodejs/node/pull/54429)
    
  • [`0cf78aa24b`](https://github.com/nodejs/node/commit/0cf78aa24b)] - **test_runner**: refactor `mock_loader` (Antoine du Hamel) [#&#8203;54223](https://github.com/nodejs/node/pull/54223)
    
  • [`97fa075c2e`](https://github.com/nodejs/node/commit/97fa075c2e)] - **(SEMVER-MINOR)** **test_runner**: support running tests in process (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927)
    
  • [`858b583c88`](https://github.com/nodejs/node/commit/858b583c88)] - **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run() (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927)
    
  • [`45b0250692`](https://github.com/nodejs/node/commit/45b0250692)] - **test_runner**: account for newline in source maps (Colin Ihrig) [#&#8203;54444](https://github.com/nodejs/node/pull/54444)
    
  • [`1c29e74d30`](https://github.com/nodejs/node/commit/1c29e74d30)] - **test_runner**: make `mock.module`'s `specifier` consistent with `import()` (Antoine du Hamel) [#&#8203;54416](https://github.com/nodejs/node/pull/54416)
    
  • [`cbe30a02a3`](https://github.com/nodejs/node/commit/cbe30a02a3)] - **test_runner**: finish build phase before running tests (Colin Ihrig) [#&#8203;54423](https://github.com/nodejs/node/pull/54423)
    
  • [`8a4b26f00c`](https://github.com/nodejs/node/commit/8a4b26f00c)] - **timers**: fix validation (Paolo Insogna) [#&#8203;54404](https://github.com/nodejs/node/pull/54404)
    
  • [`38798140c4`](https://github.com/nodejs/node/commit/38798140c4)] - **tools**: remove unused python files (Aviv Keller) [#&#8203;53928](https://github.com/nodejs/node/pull/53928)
    
  • [`da6c61def8`](https://github.com/nodejs/node/commit/da6c61def8)] - **tools**: add swc license (Marco Ippolito) [#&#8203;54462](https://github.com/nodejs/node/pull/54462)
    
  • [`16d4c437e1`](https://github.com/nodejs/node/commit/16d4c437e1)] - **typings**: provide internal types for wasi bindings (Andrew Moon) [#&#8203;54119](https://github.com/nodejs/node/pull/54119)
    
  • [`fe5666f006`](https://github.com/nodejs/node/commit/fe5666f006)] - **vm**: return all own names and symbols in property enumerator interceptor (Chengzhong Wu) [#&#8203;54522](https://github.com/nodejs/node/pull/54522)
    
  • [`db80eac496`](https://github.com/nodejs/node/commit/db80eac496)] - **(SEMVER-MINOR)** **vm**: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) [#&#8203;54394](https://github.com/nodejs/node/pull/54394)
    
  • [`8ffdd1e2b2`](https://github.com/nodejs/node/commit/8ffdd1e2b2)] - **zlib**: simplify validators (Yagiz Nizipli) [#&#8203;54442](https://github.com/nodejs/node/pull/54442)
    
    

v22.7.0: 2024-08-22, Version 22.7.0 (Current), @​RafaelGSS

Compare Source

Experimental transform types support

With the new flag --experimental-transform-types it is possible to enable the
transformation of TypeScript-only syntax into JavaScript code.

This feature allows Node.js to support TypeScript syntax such as Enum and namespace.

Thanks to Marco Ippolito for making this work on #​54283.

Module syntax detection is now enabled by default.

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Performance Improvements to Buffer

Performance of Node.js Buffers have been optimized through multiple PR's with significant
improvements to the Buffer.copy and Buffer.write methods. These are used throughout
the codebase and should give a nice boost across the board.

Thanks to Robert Nagy for making this work on #​54311,
#​54324, and #​54087.

Other Notable Changes
  • [`911de7dd6d`](https://github.com/nodejs/node/commit/911de7dd6d)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#&#8203;54246](https://github.com/nodejs/node/pull/54246)
    
  • [`9ee4b16bd8`](https://github.com/nodejs/node/commit/9ee4b16bd8)] - **(SEMVER-MINOR)** **lib**: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) [#&#8203;48528](https://github.com/nodejs/node/pull/48528)
    
    
Commits
  • [`c6544ff5a6`](https://github.com/nodejs/node/commit/c6544ff5a6)] - **benchmark**: use assert.ok searchparams (Rafael Gonzaga) [#&#8203;54334](https://github.com/nodejs/node/pull/54334)
    
  • [`51b8576897`](https://github.com/nodejs/node/commit/51b8576897)] - **benchmark**: add stream.compose benchmark (jakecastelli) [#&#8203;54308](https://github.com/nodejs/node/pull/54308)
    
  • [`c166036515`](https://github.com/nodejs/node/commit/c166036515)] - **benchmark**: rename count to n (Rafael Gonzaga) [#&#8203;54271](https://github.com/nodejs/node/pull/54271)
    
  • [`1be0ee76ef`](https://github.com/nodejs/node/commit/1be0ee76ef)] - **benchmark**: change assert() to assert.ok() (Rafael Gonzaga) [#&#8203;54254](https://github.com/nodejs/node/pull/54254)
    
  • [`4dd229f546`](https://github.com/nodejs/node/commit/4dd229f546)] - **benchmark**: support --help in CLI (Aviv Keller) [#&#8203;53358](https://github.com/nodejs/node/pull/53358)
    
  • [`a5a320cd5b`](https://github.com/nodejs/node/commit/a5a320cd5b)] - **benchmark**: remove force option as force defaults to true (Yelim Koo) [#&#8203;54203](https://github.com/nodejs/node/pull/54203)
    
  • [`db0a80a0eb`](https://github.com/nodejs/node/commit/db0a80a0eb)] - **benchmark**: use assert.ok instead of assert (Rafael Gonzaga) [#&#8203;54176](https://github.com/nodejs/node/pull/54176)
    
  • [`8ba53ae7b7`](https://github.com/nodejs/node/commit/8ba53ae7b7)] - **buffer**: properly apply dst offset and src length on fast path (Robert Nagy) [#&#8203;54391](https://github.com/nodejs/node/pull/54391)
    
  • [`a5a60e6823`](https://github.com/nodejs/node/commit/a5a60e6823)] - **buffer**: use fast API for writing one-byte strings (Robert Nagy) [#&#8203;54311](https://github.com/nodejs/node/pull/54311)
    
  • [`7b641bc2bd`](https://github.com/nodejs/node/commit/7b641bc2bd)] - **buffer**: optimize byteLength for short strings (Robert Nagy) [#&#8203;54345](https://github.com/nodejs/node/pull/54345)
    
  • [`28ca678f81`](https://github.com/nodejs/node/commit/28ca678f81)] - **buffer**: optimize byteLength for common encodings (Robert Nagy) [#&#8203;54342](https://github.com/nodejs/node/pull/54342)
    
  • [`12785559be`](https://github.com/nodejs/node/commit/12785559be)] - **buffer**: optimize createFromString (Robert Nagy) [#&#8203;54324](https://github.com/nodejs/node/pull/54324)
    
  • [`f7f7b0c498`](https://github.com/nodejs/node/commit/f7f7b0c498)] - **buffer**: optimize for common encodings (Robert Nagy) [#&#8203;54319](https://github.com/nodejs/node/pull/54319)
    
  • [`37631f826b`](https://github.com/nodejs/node/commit/37631f826b)] - **buffer**: add JSDoc to blob bytes method (Roberto Simonini) [#&#8203;54117](https://github.com/nodejs/node/pull/54117)
    
  • [`ab6fae9dbf`](https://github.com/nodejs/node/commit/ab6fae9dbf)] - **buffer**: faster type check (Robert Nagy) [#&#8203;54088](https://github.com/nodejs/node/pull/54088)
    
  • [`9f8f26eb2f`](https://github.com/nodejs/node/commit/9f8f26eb2f)] - **buffer**: use native copy impl (Robert Nagy) [#&#8203;54087](https://github.com/nodejs/node/pull/54087)
    
  • [`019ebf03c1`](https://github.com/nodejs/node/commit/019ebf03c1)] - **buffer**: use faster integer argument check (Robert Nagy) [#&#8203;54089](https://github.com/nodejs/node/pull/54089)
    
  • [`c640a2f24c`](https://github.com/nodejs/node/commit/c640a2f24c)] - **build**: always disable strict aliasing (Michaël Zasso) [#&#8203;54339](https://github.com/nodejs/node/pull/54339)
    
  • [`6aa1d9e855`](https://github.com/nodejs/node/commit/6aa1d9e855)] - **build**: update `ruff` to `0.5.2` (Aviv Keller) [#&#8203;53909](https://github.com/nodejs/node/pull/53909)
    
  • [`350e699443`](https://github.com/nodejs/node/commit/350e699443)] - **build**: support `lint-js-fix` in `vcbuild.bat` (Aviv Keller) [#&#8203;53695](https://github.com/nodejs/node/pull/53695)
    
  • [`98fed763f7`](https://github.com/nodejs/node/commit/98fed763f7)] - **build**: add `--without-amaro` build flag (Antoine du Hamel) [#&#8203;54136](https://github.com/nodejs/node/pull/54136)
    
  • [`1ca598c5ce`](https://github.com/nodejs/node/commit/1ca598c5ce)] - **cli**: allow `--test-[name/skip]-pattern` in `NODE_OPTIONS` (Aviv Keller) [#&#8203;53001](https://github.com/nodejs/node/pull/53001)
    
  • [`37960a67ae`](https://github.com/nodejs/node/commit/37960a67ae)] - **console**: use validateOneOf for colorMode validation (HEESEUNG) [#&#8203;54245](https://github.com/nodejs/node/pull/54245)
    
  • [`d52f515bab`](https://github.com/nodejs/node/commit/d52f515bab)] - **crypto**: include NODE_EXTRA_CA_CERTS in all secure contexts by default (Eric Bickle) [#&#8203;44529](https://github.com/nodejs/node/pull/44529)
    
  • [`b6a3e61353`](https://github.com/nodejs/node/commit/b6a3e61353)] - **deps**: update amaro to 0.1.6 (Node.js GitHub Bot) [#&#8203;54374](https://github.com/nodejs/node/pull/54374)
    
  • [`0d716ad3f3`](https://github.com/nodejs/node/commit/0d716ad3f3)] - **deps**: update simdutf to 5.3.4 (Node.js GitHub Bot) [#&#8203;54312](https://github.com/nodejs/node/pull/54312)
    
  • [`18bfea5f33`](https://github.com/nodejs/node/commit/18bfea5f33)] - **deps**: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`d0c23f332f`](https://github.com/nodejs/node/commit/d0c23f332f)] - **deps**: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`e7db63972c`](https://github.com/nodejs/node/commit/e7db63972c)] - **deps**: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`713ae95555`](https://github.com/nodejs/node/commit/713ae95555)] - **deps**: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`758c9df36e`](https://github.com/nodejs/node/commit/758c9df36e)] - **deps**: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`fe7e6c9563`](https://github.com/nodejs/node/commit/fe7e6c9563)] - **deps**: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`35722b7bca`](https://github.com/nodejs/node/commit/35722b7bca)] - **deps**: update simdjson to 3.10.0 (Node.js GitHub Bot) [#&#8203;54197](https://github.com/nodejs/node/pull/54197)
    
  • [`a2a41557db`](https://github.com/nodejs/node/commit/a2a41557db)] - **deps**: fix GN build warning in ncrypto (Cheng) [#&#8203;54222](https://github.com/nodejs/node/pull/54222)
    
  • [`869da204d7`](https://github.com/nodejs/node/commit/869da204d7)] - **deps**: update c-ares to v1.33.0 (Node.js GitHub Bot) [#&#8203;54198](https://github.com/nodejs/node/pull/54198)
    
  • [`e0d503a715`](https://github.com/nodejs/node/commit/e0d503a715)] - **deps**: update nbytes to 0.1.1 (Node.js GitHub Bot) [#&#8203;54277](https://github.com/nodejs/node/pull/54277)
    
  • [`b0c768dae1`](https://github.com/nodejs/node/commit/b0c768dae1)] - **deps**: update undici to 6.19.7 (Node.js GitHub Bot) [#&#8203;54286](https://github.com/nodejs/node/pull/54286)
    
  • [`ef9a950cb9`](https://github.com/nodejs/node/commit/ef9a950cb9)] - **deps**: update acorn to 8.12.1 (Node.js GitHub Bot) [#&#8203;53465](https://github.com/nodejs/node/pull/53465)
    
  • [`1597a1139a`](https://github.com/nodejs/node/commit/1597a1139a)] - **deps**: update undici to 6.19.5 (Node.js GitHub Bot) [#&#8203;54076](https://github.com/nodejs/node/pull/54076)
    
  • [`103e4db3e0`](https://github.com/nodejs/node/commit/103e4db3e0)] - **deps**: update simdutf to 5.3.1 (Node.js GitHub Bot) [#&#8203;54196](https://github.com/nodejs/node/pull/54196)
    
  • [`9f115ba9e9`](https://github.com/nodejs/node/commit/9f115ba9e9)] - **doc**: fix error description of the max header size (Egawa Ryo) [#&#8203;54125](https://github.com/nodejs/node/pull/54125)
    
  • [`f967ab3810`](https://github.com/nodejs/node/commit/f967ab3810)] - **doc**: add git node security --cleanup (Rafael Gonzaga) [#&#8203;54381](https://github.com/nodejs/node/pull/54381)
    
  • [`8883c01afa`](https://github.com/nodejs/node/commit/8883c01afa)] - **doc**: add note on weakness of permission model (Tobias Nießen) [#&#8203;54268](https://github.com/nodejs/node/pull/54268)
    
  • [`824bd58bc5`](https://github.com/nodejs/node/commit/824bd58bc5)] - **doc**: add versions when `--watch-preserve-output` was added (Théo LUDWIG) [#&#8203;54328](https://github.com/nodejs/node/pull/54328)
    
  • [`33795cfd49`](https://github.com/nodejs/node/commit/33795cfd49)] - **doc**: replace v19 mention in Current release (Rafael Gonzaga) [#&#8203;54361](https://github.com/nodejs/node/pull/54361)
    
  • [`aa6e770ea5`](https://github.com/nodejs/node/commit/aa6e770ea5)] - **doc**: correct peformance entry types (Jason Zhang) [#&#8203;54263](https://github.com/nodejs/node/pull/54263)
    
  • [`4b099ce1bd`](https://github.com/nodejs/node/commit/4b099ce1bd)] - **doc**: fix typo in method name in the sea doc (Eliyah Sundström) [#&#8203;54027](https://github.com/nodejs/node/pull/54027)
    
  • [`8a8d1d2281`](https://github.com/nodejs/node/commit/8a8d1d2281)] - **doc**: mark process.nextTick legacy (Marco Ippolito) [#&#8203;51280](https://github.com/nodejs/node/pull/51280)
    
  • [`6f4b5d998e`](https://github.com/nodejs/node/commit/6f4b5d998e)] - **doc**: add esm examples to node:http2 (Alfredo González) [#&#8203;54292](https://github.com/nodejs/node/pull/54292)
    
  • [`1535469c12`](https://github.com/nodejs/node/commit/1535469c12)] - **doc**: explicitly mention node:fs module restriction (Rafael Gonzaga) [#&#8203;54269](https://github.com/nodejs/node/pull/54269)
    
  • [`26c37f7910`](https://github.com/nodejs/node/commit/26c37f7910)] - **doc**: remove module-based permission doc (Rafael Gonzaga) [#&#8203;54266](https://github.com/nodejs/node/pull/54266)
    
  • [`971b9f31f5`](https://github.com/nodejs/node/commit/971b9f31f5)] - **doc**: update `buffer.constants.MAX_LENGTH` size (Samuli Asmala) [#&#8203;54207](https://github.com/nodejs/node/pull/54207)
    
  • [`3106149965`](https://github.com/nodejs/node/commit/3106149965)] - **doc**: warn for windows build bug (Jason Zhang) [#&#8203;54217](https://github.com/nodejs/node/pull/54217)
    
  • [`55f8ac3e89`](https://github.com/nodejs/node/commit/55f8ac3e89)] - **doc**: make some parameters optional in `tracingChannel.traceCallback` (Deokjin Kim) [#&#8203;54068](https://github.com/nodejs/node/pull/54068)
    
  • [`e3e2f22cab`](https://github.com/nodejs/node/commit/e3e2f22cab)] - **doc**: add esm examples to node:dns (Alfredo González) [#&#8203;54172](https://github.com/nodejs/node/pull/54172)
    
  • [`0429b1eb9d`](https://github.com/nodejs/node/commit/0429b1eb9d)] - **doc**: add KevinEady as a triager (Chengzhong Wu) [#&#8203;54179](https://github.com/nodejs/node/pull/54179)
    
  • [`4bfa7d8e54`](https://github.com/nodejs/node/commit/4bfa7d8e54)] - **doc**: add esm examples to node:console (Alfredo González) [#&#8203;54108](https://github.com/nodejs/node/pull/54108)
    
  • [`2f5309fc22`](https://github.com/nodejs/node/commit/2f5309fc22)] - **doc**: fix sea assets example (Sadzurami) [#&#8203;54192](https://github.com/nodejs/node/pull/54192)
    
  • [`88aef5a39d`](https://github.com/nodejs/node/commit/88aef5a39d)] - **doc**: add links to security steward companies (Aviv Keller) [#&#8203;52981](https://github.com/nodejs/node/pull/52981)
    
  • [`5175903c23`](https://github.com/nodejs/node/commit/5175903c23)] - **doc**: move `onread` option from `socket.connect()` to `new net.socket()` (sendoru) [#&#8203;54194](https://github.com/nodejs/node/pull/54194)
    
  • [`144637e845`](https://github.com/nodejs/node/commit/144637e845)] - **doc**: move release key for Myles Borins (Richard Lau) [#&#8203;54059](https://github.com/nodejs/node/pull/54059)
    
  • [`358fdacec6`](https://github.com/nodejs/node/commit/358fdacec6)] - **doc**: refresh instructions for building node from source (Liran Tal) [#&#8203;53768](https://github.com/nodejs/node/pull/53768)
    
  • [`11fdaa6ad2`](https://github.com/nodejs/node/commit/11fdaa6ad2)] - **doc**: add documentation for blob.bytes() method (jaexxin) [#&#8203;54114](https://github.com/nodejs/node/pull/54114)
    
  • [`db3b0df42c`](https://github.com/nodejs/node/commit/db3b0df42c)] - **doc**: add missing new lines to custom test reporter examples (Eddie Abbondanzio) [#&#8203;54152](https://github.com/nodejs/node/pull/54152)
    
  • [`1cafefd2cf`](https://github.com/nodejs/node/commit/1cafefd2cf)] - **doc**: fix worker threadId/destination typo (Thomas Hunter II) [#&#8203;53933](https://github.com/nodejs/node/pull/53933)
    
  • [`7772b46038`](https://github.com/nodejs/node/commit/7772b46038)] - **doc**: update list of Triagers on the `README.md` (Antoine du Hamel) [#&#8203;54138](https://github.com/nodejs/node/pull/54138)
    
  • [`af99ba3dc9`](https://github.com/nodejs/node/commit/af99ba3dc9)] - **doc**: remove unused imports from worker_threads.md (Yelim Koo) [#&#8203;54147](https://github.com/nodejs/node/pull/54147)
    
  • [`826edc4341`](https://github.com/nodejs/node/commit/826edc4341)] - **doc**: expand troubleshooting section (Liran Tal) [#&#8203;53808](https://github.com/nodejs/node/pull/53808)
    
  • [`923195b624`](https://github.com/nodejs/node/commit/923195b624)] - **doc**: clarify `useCodeCache` setting for cross-platform SEA generation (Yelim Koo) [#&#8203;53994](https://github.com/nodejs/node/pull/53994)
    
  • [`7c305a4900`](https://github.com/nodejs/node/commit/7c305a4900)] - **doc, meta**: replace command with link to keys (Aviv Keller) [#&#8203;53745](https://github.com/nodejs/node/pull/53745)
    
  • [`6f986e0ee6`](https://github.com/nodejs/node/commit/6f986e0ee6)] - **doc, test**: simplify test README table (Aviv Keller) [#&#8203;53971](https://github.com/nodejs/node/pull/53971)
    
  • [`112228c15a`](https://github.com/nodejs/node/commit/112228c15a)] - **fs**: remove unnecessary option argument validation (Jonas) [#&#8203;53958](https://github.com/nodejs/node/pull/53958)
    
  • [`911de7dd6d`](https://github.com/nodejs/node/commit/911de7dd6d)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#&#8203;54246](https://github.com/nodejs/node/pull/54246)
    
  • [`1e825915d5`](https://github.com/nodejs/node/commit/1e825915d5)] - **inspector**: provide detailed info to fix DevTools frontend errors (Kohei Ueno) [#&#8203;54156](https://github.com/nodejs/node/pull/54156)
    
  • [`417120a3a3`](https://github.com/nodejs/node/commit/417120a3a3)] - **lib**: replace spread operator with primordials function (YoonSoo_Shin) [#&#8203;54053](https://github.com/nodejs/node/pull/54053)
    
  • [`09f411e6f6`](https://github.com/nodejs/node/commit/09f411e6f6)] - **lib**: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) [#&#8203;54258](https://github.com/nodejs/node/pull/54258)
    
  • [`b8970570b0`](https://github.com/nodejs/node/commit/b8970570b0)] - **lib**: improve async_context_frame structure (Stephen Belanger) [#&#8203;54239](https://github.com/nodejs/node/pull/54239)
    
  • [`783322fa16`](https://github.com/nodejs/node/commit/783322fa16)] - **lib**: fix unhandled errors in webstream adapters (Fedor Indutny) [#&#8203;54206](https://github.com/nodejs/node/pull/54206)
    
  • [`425b9562b9`](https://github.com/nodejs/node/commit/425b9562b9)] - **lib**: fix typos in comments within internal/streams (YoonSoo_Shin) [#&#8203;54093](https://github.com/nodejs/node/pull/54093)
    
  • [`9ee4b16bd8`](https://github.com/nodejs/node/commit/9ee4b16bd8)] - **(SEMVER-MINOR)** **lib**: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) [#&#8203;48528](https://github.com/nodejs/node/pull/48528)
    
  • [`8c9a4ae12b`](https://github.com/nodejs/node/commit/8c9a4ae12b)] - **lib,permission**: support Buffer to permission.has (Rafael Gonzaga) [#&#8203;54104](https://github.com/nodejs/node/pull/54104)
    
  • [`c8e358c96c`](https://github.com/nodejs/node/commit/c8e358c96c)] - **meta**: add test-permission-\* CODEOWNERS (Rafael Gonzaga) [#&#8203;54267](https://github.com/nodejs/node/pull/54267)
    
  • [`581c155cf8`](https://github.com/nodejs/node/commit/581c155cf8)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;54210](https://github.com/nodejs/node/pull/54210)
    
  • [`3f0d7344e3`](https://github.com/nodejs/node/commit/3f0d7344e3)] - **meta**: add module label for the lib/internal/modules folder (Aviv Keller) [#&#8203;52858](https://github.com/nodejs/node/pull/52858)
    
  • [`0157ec6bbd`](https://github.com/nodejs/node/commit/0157ec6bbd)] - **meta**: bump `actions/upload-artifact` from 4.3.3 to 4.3.4 (dependabot\[bot]) [#&#8203;54166](https://github.com/nodejs/node/pull/54166)
    
  • [`7fa95d2360`](https://github.com/nodejs/node/commit/7fa95d2360)] - **meta**: bump `actions/download-artifact` from 4.1.7 to 4.1.8 (dependabot\[bot]) [#&#8203;54167](https://github.com/nodejs/node/pull/54167)
    
  • [`acc5b9a0c5`](https://github.com/nodejs/node/commit/acc5b9a0c5)] - **meta**: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot\[bot]) [#&#8203;54165](https://github.com/nodejs/node/pull/54165)
    
  • [`dede30a8d0`](https://github.com/nodejs/node/commit/dede30a8d0)] - **meta**: bump `step-security/harden-runner` from 2.8.1 to 2.9.0 (dependabot\[bot]) [#&#8203;54169](https://github.com/nodejs/node/pull/54169)
    
  • [`b733854eac`](https://github.com/nodejs/node/commit/b733854eac)] - **meta**: bump `actions/setup-node` from 4.0.2 to 4.0.3 (dependabot\[bot]) [#&#8203;54170](https://github.com/nodejs/node/pull/54170)
    
  • [`6a9f168cc6`](https://github.com/nodejs/node/commit/6a9f168cc6)] - **meta**: bump `github/codeql-action` from 3.25.11 to 3.25.15 (dependabot\[bot]) [#&#8203;54168](https://github.com/nodejs/node/pull/54168)
    
  • [`9bbd85e4fe`](https://github.com/nodejs/node/commit/9bbd85e4fe)] - **meta**: bump `ossf/scorecard-action` from 2.3.3 to 2.4.0 (dependabot\[bot]) [#&#8203;54171](https://github.com/nodejs/node/pull/54171)
    
  • [`33633eebd9`](https://github.com/nodejs/node/commit/33633eebd9)] - **meta**: add typescript team to codeowners (Marco Ippolito) [#&#8203;54101](https://github.com/nodejs/node/pull/54101)
    
  • [`240d9296c1`](https://github.com/nodejs/node/commit/240d9296c1)] - **(SEMVER-MINOR)** **module**: add --experimental-transform-types flag (Marco Ippolito) [#&#8203;54283](https://github.com/nodejs/node/pull/54283)
    
  • [`66dcb2a571`](https://github.com/nodejs/node/commit/66dcb2a571)] - **(SEMVER-MINOR)** **module**: unflag detect-module (Geoffrey Booth) [#&#8203;53619](https://github.com/nodejs/node/pull/53619)
    
  • [`100225fbe1`](https://github.com/nodejs/node/commit/100225fbe1)] - **module**: do not attempt to strip type when there's no source (Antoine du Hamel) [#&#8203;54287](https://github.com/nodejs/node/pull/54287)
    
  • [`1ba2000703`](https://github.com/nodejs/node/commit/1ba2000703)] - **module**: refactor ts parser loading (Marco Ippolito) [#&#8203;54243](https://github.com/nodejs/node/pull/54243)
    
  • [`13cc480030`](https://github.com/nodejs/node/commit/13cc480030)] - **module**: remove outdated comment (Michaël Zasso) [#&#8203;54118](https://github.com/nodejs/node/pull/54118)
    
  • [`e676d98435`](https://github.com/nodejs/node/commit/e676d98435)] - **module,win**: fix long path resolve (Hüseyin Açacak) [#&#8203;53294](https://github.com/nodejs/node/pull/53294)
    
  • [`9aec536083`](https://github.com/nodejs/node/commit/9aec536083)] - **path**: change `posix.join` to use array (Wiyeong Seo) [#&#8203;54331](https://github.com/nodejs/node/pull/54331)
    
  • [`8a770cf5c9`](https://github.com/nodejs/node/commit/8a770cf5c9)] - **path**: fix relative on Windows (Hüseyin Açacak) [#&#8203;53991](https://github.com/nodejs/node/pull/53991)
    
  • [`267cd7f361`](https://github.com/nodejs/node/commit/267cd7f361)] - **path**: use the correct name in `validateString` (Benjamin Pasero) [#&#8203;53669](https://github.com/nodejs/node/pull/53669)
    
  • [`31adeea855`](https://github.com/nodejs/node/commit/31adeea855)] - **sea**: don't set code cache flags when snapshot is used (Joyee Cheung) [#&#8203;54120](https://github.com/nodejs/node/pull/54120)
    
  • [`7f1bf1ce24`](https://github.com/nodejs/node/commit/7f1bf1ce24)] - **sqlite**: split up large test file (Colin Ihrig) [#&#8203;54014](https://github.com/nodejs/node/pull/54014)
    
  • [`94e2ea6f5c`](https://github.com/nodejs/node/commit/94e2ea6f5c)] - **sqlite**: ensure statement finalization on db close (Colin Ihrig) [#&#8203;54014](https://github.com/nodejs/node/pull/54014)
    
  • [`e077ff1f38`](https://github.com/nodejs/node/commit/e077ff1f38)] - **src**: update compile cache storage structure (Joyee Cheung) [#&#8203;54291](https://github.com/nodejs/node/pull/54291)
    
  • [`4e4d1def7e`](https://github.com/nodejs/node/commit/4e4d1def7e)] - **src**: refactor http parser binding initialization (Joyee Cheung) [#&#8203;54276](https://github.com/nodejs/node/pull/54276)
    
  • [`409d9eb09b`](https://github.com/nodejs/node/commit/409d9eb09b)] - **src**: shift even moar x509 to ncrypto (James M Snell) [#&#8203;54340](https://github.com/nodejs/node/pull/54340)
    
  • [`f87aa27274`](https://github.com/nodejs/node/commit/f87aa27274)] - **src**: don't match after `--` in `Dotenv::GetPathFromArgs` (Aviv Keller) [#&#8203;54237](https://github.com/nodejs/node/pull/54237)
    
  • [`b6927dd981`](https://github.com/nodejs/node/commit/b6927dd981)] - **src**: move some X509Certificate stuff to ncrypto (James M Snell) [#&#8203;54241](https://github.com/nodejs/node/pull/54241)
    
  • [`a394219fa5`](https://github.com/nodejs/node/commit/a394219fa5)] - **src**: skip inspector wait in internal workers (Chengzhong Wu) [#&#8203;54219](https://github.com/nodejs/node/pull/54219)
    
  • [`8daeccfe92`](https://github.com/nodejs/node/commit/8daeccfe92)] - **src**: shift more crypto impl details to ncrypto (James M Snell) [#&#8203;54028](https://github.com/nodejs/node/pull/54028)
    
  • [`e619133ac9`](https://github.com/nodejs/node/commit/e619133ac9)] - **src**: move spkac methods to ncrypto (James M Snell) [#&#8203;53985](https://github.com/nodejs/node/pull/53985)
    
  • [`b52c2fff75`](https://github.com/nodejs/node/commit/b52c2fff75)] - **src**: account for OpenSSL unexpected version (Shelley Vohr) [#&#8203;54038](https://github.com/nodejs/node/pull/54038)
    
  • [`0b16af1689`](https://github.com/nodejs/node/commit/0b16af1689)] - **src,test**: track `URL.canParse` fast API calls (Michaël Zasso) [#&#8203;54356](https://github.com/nodejs/node/pull/54356)
    
  • [`2be78b03c3`](https://github.com/nodejs/node/commit/2be78b03c3)] - **src,test**: ensure that V8 fast APIs are called (Michaël Zasso) [#&#8203;54317](https://github.com/nodejs/node/pull/54317)
    
  • [`9297d29cdb`](https://github.com/nodejs/node/commit/9297d29cdb)] - **stream**: make checking pendingcb on WritableStream backward compatible (jakecastelli) [#&#8203;54142](https://github.com/nodejs/node/pull/54142)
    
  • [`2a6a12e493`](https://github.com/nodejs/node/commit/2a6a12e493)] - **stream**: throw TypeError when criteria fulfilled in getIterator (jakecastelli) [#&#8203;53825](https://github.com/nodejs/node/pull/53825)
    
  • [`7f68cc0f7f`](https://github.com/nodejs/node/commit/7f68cc0f7f)] - **test**: make snapshot comparison more flexible (Shelley Vohr) [#&#8203;54375](https://github.com/nodejs/node/pull/54375)
    
  • [`3df7938832`](https://github.com/nodejs/node/commit/3df7938832)] - **test**: make sure current run result is pushed and reset (jakecastelli) [#&#8203;54332](https://github.com/nodejs/node/pull/54332)
    
  • [`3e25be7b28`](https://github.com/nodejs/node/commit/3e25be7b28)] - **test**: use relative paths in test-cli-permission tests (sendoru) [#&#8203;54188](https://github.com/nodejs/node/pull/54188)
    
  • [`f49f1bb3e9`](https://github.com/nodejs/node/commit/f49f1bb3e9)] - **test**: unmark test-sqlite as flaky (Colin Ihrig) [#&#8203;54014](https://github.com/nodejs/node/pull/54014)
    
  • [`2f68a74702`](https://github.com/nodejs/node/commit/2f68a74702)] - **test**: fix timeout not being cleared (Isaac-yz-Liu) [#&#8203;54242](https://github.com/nodejs/node/pull/54242)
    
  • [`f5cfa4454e`](https://github.com/nodejs/node/commit/f5cfa4454e)] - **test**: refactor `test-runner-module-mocking` (Antoine du Hamel) [#&#8203;54233](https://github.com/nodejs/node/pull/54233)
    
  • [`b85b13b418`](https://github.com/nodejs/node/commit/b85b13b418)] - **test**: use assert.{s,deepS}trictEqual() (Luigi Pinca) [#&#8203;54208](https://github.com/nodejs/node/pull/54208)
    
  • [`6bcbfcd7bc`](https://github.com/nodejs/node/commit/6bcbfcd7bc)] - **test**: add subtests to test-node-run (sungpaks) [#&#8203;54204](https://github.com/nodejs/node/pull/54204)
    
  • [`dafe97548f`](https://github.com/nodejs/node/commit/dafe97548f)] - **test**: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) [#&#8203;54115](https://github.com/nodejs/node/pull/54115)
    
  • [`be61793db5`](https://github.com/nodejs/node/commit/be61793db5)] - **test**: update wpt test for streams (devstone) [#&#8203;54129](https://github.com/nodejs/node/pull/54129)
    
  • [`670c796449`](https://github.com/nodejs/node/commit/670c796449)] - **test**: fix typo in test (Sonny) [#&#8203;54137](https://github.com/nodejs/node/pull/54137)
    
  • [`1a15f3f613`](https://github.com/nodejs/node/commit/1a15f3f613)] - **test**: add initial pull delay and prototype pollution prevention tests (Sonny) [#&#8203;54061](https://github.com/nodejs/node/pull/54061)
    
  • [`5dbff81b71`](https://github.com/nodejs/node/commit/5dbff81b71)] - **test**: add coverage for webstorage quota (jakecastelli) [#&#8203;53964](https://github.com/nodejs/node/pull/53964)
    
  • [`141e9fe7cc`](https://github.com/nodejs/node/commit/141e9fe7cc)] - **test_runner**: use validateStringArray for `timers.enable()` (Deokjin Kim) [#&#8203;49534](https://github.com/nodejs/node/pull/49534)
    
  • [`e70711e190`](https://github.com/nodejs/node/commit/e70711e190)] - **test_runner**: report failures in filtered suites (Colin Ihrig) [#&#8203;54387](https://github.com/nodejs/node/pull/54387)
    
  • [`7766c1dc9b`](https://github.com/nodejs/node/commit/7766c1dc9b)] - **test_runner**: remove parseCommandLine() from test.js (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353)
    
  • [`961cbf0be0`](https://github.com/nodejs/node/commit/961cbf0be0)] - **test_runner**: refactor hook creation (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353)
    
  • [`69c78ca2f5`](https://github.com/nodejs/node/commit/69c78ca2f5)] - **test_runner**: return setup() from parseCommandLine() (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353)
    
  • [`ed1ede8c26`](https://github.com/nodejs/node/commit/ed1ede8c26)] - **test_runner**: pass global options to createTestTree() (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353)
    
  • [`1e88045a69`](https://github.com/nodejs/node/commit/1e88045a69)] - **test_runner**: pass harness object as option to root test (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353)
    
  • [`e3378f0679`](https://github.com/nodejs/node/commit/e3378f0679)] - **test_runner**: use run() argument names in parseCommandLine() (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353)
    
  • [`676bbd5c09`](https://github.com/nodejs/node/commit/676bbd5c09)] - **test_runner**: fix delete test file cause dependency file not watched (jakecastelli) [#&#8203;53533](https://github.com/nodejs/node/pull/53533)
    
  • [`fe793a6103`](https://github.com/nodejs/node/commit/fe793a6103)] - **test_runner**: do not expose internal loader (Antoine du Hamel) [#&#8203;54106](https://github.com/nodejs/node/pull/54106)
    
  • [`7fad771bbf`](https://github.com/nodejs/node/commit/7fad771bbf)] - **test_runner**: fix erroneous diagnostic warning when only: false (Pietro Marchini) [#&#8203;54116](https://github.com/nodejs/node/pull/54116)
    
  • [`dc465736fb`](https://github.com/nodejs/node/commit/dc465736fb)] - **test_runner**: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) [#&#8203;53846](https://github.com/nodejs/node/pull/53846)
    
  • [`5a1afb2139`](https://github.com/nodejs/node/commit/5a1afb2139)] - **test_runner**: remove outdated comment (Colin Ihrig) [#&#8203;54146](https://github.com/nodejs/node/pull/54146)
    
  • [`20a01fcc39`](https://github.com/nodejs/node/commit/20a01fcc39)] - **test_runner**: run after hooks even if test is aborted (Colin Ihrig) [#&#8203;54151](https://github.com/nodejs/node/pull/54151)
    
  • [`df428adb6c`](https://github.com/nodejs/node/commit/df428adb6c)] - **tools**: remove header from c-ares license (Aviv Keller) [#&#8203;54335](https://github.com/nodejs/node/pull/54335)
    
  • [`b659fc0f2b`](https://github.com/nodejs/node/commit/b659fc0f2b)] - **tools**: add find pyenv path on windows (Marco Ippolito) [#&#8203;54314](https://github.com/nodejs/node/pull/54314)
    
  • [`b93c6d9f38`](https://github.com/nodejs/node/commit/b93c6d9f38)] - **tools**: make undici updater build wasm from src (Michael Dawson) [#&#8203;54128](https://github.com/nodejs/node/pull/54128)
    
  • [`3835131559`](https://github.com/nodejs/node/commit/3835131559)] - **tools**: add workflow to ensure `README` lists are in sync with gh teams (Antoine du Hamel) [#&#8203;53901](https://github.com/nodejs/node/pull/53901)
    
  • [`e218b7ca8a`](https://github.com/nodejs/node/commit/e218b7ca8a)] - **tools**: add strip-types to label system (Marco Ippolito) [#&#8203;54185](https://github.com/nodejs/node/pull/54185)
    
  • [`8b35f0e601`](https://github.com/nodejs/node/commit/8b35f0e601)] - **tools**: update eslint to 9.8.0 (Node.js GitHub Bot) [#&#8203;54073](https://github.com/nodejs/node/pull/54073)
    
  • [`d83421fbe5`](https://github.com/nodejs/node/commit/d83421fbe5)] - **tty**: initialize winSize array with values (Michaël Zasso) [#&#8203;54281](https://github.com/nodejs/node/pull/54281)
    
  • [`a4768374f2`](https://github.com/nodejs/node/commit/a4768374f2)] - **typings**: add util.styleText type definition (Rafael Gonzaga) [#&#8203;54252](https://github.com/nodejs/node/pull/54252)
    
  • [`a4aecd2755`](https://github.com/nodejs/node/commit/a4aecd2755)] - **typings**: add missing binding function `writeFileUtf8()` (Jungku Lee) [#&#8203;54110](https://github.com/nodejs/node/pull/54110)
    
  • [`0bed600df9`](https://github.com/nodejs/node/commit/0bed600df9)] - **url**: modify pathToFileURL to handle extended UNC path (Early Riser) [#&#8203;54262](https://github.com/nodejs/node/pull/54262)
    
  • [`037672f15d`](https://github.com/nodejs/node/commit/037672f15d)] - **url**: improve resolveObject with ObjectAssign (Early Riser) [#&#8203;54092](https://github.com/nodejs/node/pull/54092)
    
  • [`4d8b53e475`](https://github.com/nodejs/node/commit/4d8b53e475)] - **watch**: reload changes in contents of --env-file (Marek Piechut) [#&#8203;54109](https://github.com/nodejs/node/pull/54109)
    
    

v22.6.0: 2024-08-06, Version 22.6.0 (Current), @​RafaelGSS

Compare Source

Experimental TypeScript support via strip types

Node.js introduces the --experimental-strip-types flag for initial TypeScript support.
This feature strips type annotations from .ts files, allowing them to run
without transforming TypeScript-specific syntax. Current limitations include:

  • Supports only inline type annotations, not features like enums or namespaces.
  • Requires explicit file extensions in import and require statements.
  • Enforces the use of the type keyword for type imports to avoid runtime errors.
  • Disabled for TypeScript in node_modules by default.

Thanks Marco Ippolito for working on this.

Experimental Network Inspection Support in Node.js

This update introduces the initial support for network inspection in Node.js.
Currently, this is an experimental feature, so you need to enable it using the --experimental-network-inspection flag.
With this feature enabled, you can inspect network activities occurring within a JavaScript application.

To use network inspection, start your Node.js application with the following command:

$ node --inspect-wait --experimental-network-inspection index.js

Please note that the network inspection capabilities are in active development.
We are actively working on enhancing this feature and will continue to expand its functionality in future updates.

Thanks Kohei Ueno for working on this.

Other Notable Changes
  • [`15a94e67b1`](https://github.com/nodejs/node/commit/15a94e67b1)] - **lib,src**: drop --experimental-network-imports (Rafael Gonzaga) [#&#8203;53822](https://github.com/nodejs/node/pull/53822)
    
  • [`68e444d2d8`](https://github.com/nodejs/node/commit/68e444d2d8)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054)
    
  • [`2d982d3dee`](https://github.com/nodejs/node/commit/2d982d3dee)] - **(SEMVER-MINOR)** **deps**: V8: backport [`7857eb3`](https://github.com/nodejs/node/commit/7857eb34db42) (Stephen Belanger) [#&#8203;53997](https://github.com/nodejs/node/pull/53997)
    
  • [`15816bd0dd`](https://github.com/nodejs/node/commit/15816bd0dd)] - **(SEMVER-MINOR)** **stream**: expose DuplexPair API (Austin Wright) [#&#8203;34111](https://github.com/nodejs/node/pull/34111)
    
  • [`893c864542`](https://github.com/nodejs/node/commit/893c864542)] - **(SEMVER-MINOR)** **test_runner**: fix support watch with run(), add globPatterns option (Matteo Collina) [#&#8203;53866](https://github.com/nodejs/node/pull/53866)
    
  • [`048d421ad1`](https://github.com/nodejs/node/commit/048d421ad1)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004)
    
  • [`6ad6e01bf3`](https://github.com/nodejs/node/commit/6ad6e01bf3)] - **(SEMVER-MINOR)** **test_runner**: refactor snapshots to get file from context (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853)
    
  • [`698e44f8e7`](https://github.com/nodejs/node/commit/698e44f8e7)] - **(SEMVER-MINOR)** **test_runner**: add context.filePath (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853)
    
    
Commits
  • [`063f46dc2a`](https://github.com/nodejs/node/commit/063f46dc2a)] - **assert**: use isError instead of instanceof in innerOk (Pietro Marchini) [#&#8203;53980](https://github.com/nodejs/node/pull/53980)
    
  • [`10bea42f81`](https://github.com/nodejs/node/commit/10bea42f81)] - **build**: update gcovr to 7.2 and codecov config (Benjamin E. Coe) [#&#8203;54019](https://github.com/nodejs/node/pull/54019)
    
  • [`7c417c6cf4`](https://github.com/nodejs/node/commit/7c417c6cf4)] - **build**: avoid compiling with VS v17.10 (Hüseyin Açacak) [#&#8203;53863](https://github.com/nodejs/node/pull/53863)
    
  • [`ee97c045b4`](https://github.com/nodejs/node/commit/ee97c045b4)] - **build**: ensure v8\_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) [#&#8203;53884](https://github.com/nodejs/node/pull/53884)
    
  • [`bfbed0afd5`](https://github.com/nodejs/node/commit/bfbed0afd5)] - **build**: fix conflict gyp configs (Chengzhong Wu) [#&#8203;53605](https://github.com/nodejs/node/pull/53605)
    
  • [`0f1fe63e32`](https://github.com/nodejs/node/commit/0f1fe63e32)] - **build**: trigger coverage ci when updating codecov (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929)
    
  • [`ad62b945f0`](https://github.com/nodejs/node/commit/ad62b945f0)] - **build**: update codecov coverage build count (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929)
    
  • [`3c40868fd3`](https://github.com/nodejs/node/commit/3c40868fd3)] - **build**: disable test-asan workflow (Michaël Zasso) [#&#8203;53844](https://github.com/nodejs/node/pull/53844)
    
  • [`2a62d6ca57`](https://github.com/nodejs/node/commit/2a62d6ca57)] - **build, tools**: drop leading `/` from `r2dir` (Richard Lau) [#&#8203;53951](https://github.com/nodejs/node/pull/53951)
    
  • [`9c7b009f47`](https://github.com/nodejs/node/commit/9c7b009f47)] - **build,tools**: simplify upload of shasum signatures (Michaël Zasso) [#&#8203;53892](https://github.com/nodejs/node/pull/53892)
    
  • [`057bd44f9f`](https://github.com/nodejs/node/commit/057bd44f9f)] - **child_process**: fix incomplete prototype pollution hardening (Liran Tal) [#&#8203;53781](https://github.com/nodejs/node/pull/53781)
    
  • [`66f7c595c7`](https://github.com/nodejs/node/commit/66f7c595c7)] - **cli**: document `--inspect` port `0` behavior (Aviv Keller) [#&#8203;53782](https://github.com/nodejs/node/pull/53782)
    
  • [`fad3e74b47`](https://github.com/nodejs/node/commit/fad3e74b47)] - **console**: fix issues with frozen intrinsics (Vinicius Lourenço) [#&#8203;54070](https://github.com/nodejs/node/pull/54070)
    
  • [`e685ecd7ae`](https://github.com/nodejs/node/commit/e685ecd7ae)] - **deps**: update corepack to 0.29.3 (Node.js GitHub Bot) [#&#8203;54072](https://github.com/nodejs/node/pull/54072)
    
  • [`e5f7250e6d`](https://github.com/nodejs/node/commit/e5f7250e6d)] - **deps**: update amaro to 0.0.6 (Node.js GitHub Bot) [#&#8203;54199](https://github.com/nodejs/node/pull/54199)
    
  • [`2c1e9082e8`](https://github.com/nodejs/node/commit/2c1e9082e8)] - **deps**: update amaro to 0.0.5 (Node.js GitHub Bot) [#&#8203;54199](https://github.com/nodejs/node/pull/54199)
    
  • [`2d982d3dee`](https://github.com/nodejs/node/commit/2d982d3dee)] - **(SEMVER-MINOR)** **deps**: V8: backport [`7857eb3`](https://github.com/nodejs/node/commit/7857eb34db42) (Stephen Belanger) [#&#8203;53997](https://github.com/nodejs/node/pull/53997)
    
  • [`1061898462`](https://github.com/nodejs/node/commit/1061898462)] - **deps**: update c-ares to v1.32.3 (Node.js GitHub Bot) [#&#8203;54020](https://github.com/nodejs/node/pull/54020)
    
  • [`f4a7ac5e18`](https://github.com/nodejs/node/commit/f4a7ac5e18)] - **deps**: V8: cherry-pick [`35888fe`](https://github.com/nodejs/node/commit/35888fee7bba) (Joyee Cheung) [#&#8203;53728](https://github.com/nodejs/node/pull/53728)
    
  • [`1176310226`](https://github.com/nodejs/node/commit/1176310226)] - **deps**: add gn build files for ncrypto (Cheng) [#&#8203;53940](https://github.com/nodejs/node/pull/53940)
    
  • [`7a1d5a4f84`](https://github.com/nodejs/node/commit/7a1d5a4f84)] - **deps**: update c-ares to v1.32.2 (Node.js GitHub Bot) [#&#8203;53865](https://github.com/nodejs/node/pull/53865)
    
  • [`66f6a2aec9`](https://github.com/nodejs/node/commit/66f6a2aec9)] - **deps**: V8: cherry-pick [`9812cb4`](https://github.com/nodejs/node/commit/9812cb486e2b) (Michaël Zasso) [#&#8203;53966](https://github.com/nodejs/node/pull/53966)
    
  • [`8e66a18ef0`](https://github.com/nodejs/node/commit/8e66a18ef0)] - **deps**: start working on ncrypto dep (James M Snell) [#&#8203;53803](https://github.com/nodejs/node/pull/53803)
    
  • [`c114082b12`](https://github.com/nodejs/node/commit/c114082b12)] - **deps**: fix include_dirs of nbytes (Cheng) [#&#8203;53862](https://github.com/nodejs/node/pull/53862)
    
  • [`b7315281be`](https://github.com/nodejs/node/commit/b7315281be)] - **doc**: move numCPUs require to top of file in cluster CJS example (Alfredo González) [#&#8203;53932](https://github.com/nodejs/node/pull/53932)
    
  • [`8e7c30c2a4`](https://github.com/nodejs/node/commit/8e7c30c2a4)] - **doc**: update security-release process to automated one (Rafael Gonzaga) [#&#8203;53877](https://github.com/nodejs/node/pull/53877)
    
  • [`52a4206be2`](https://github.com/nodejs/node/commit/52a4206be2)] - **doc**: fix typo in technical-priorities.md (YoonSoo_Shin) [#&#8203;54094](https://github.com/nodejs/node/pull/54094)
    
  • [`30e18a04a3`](https://github.com/nodejs/node/commit/30e18a04a3)] - **doc**: fix typo in diagnostic tooling support tiers document (Taejin Kim) [#&#8203;54058](https://github.com/nodejs/node/pull/54058)
    
  • [`58aebfd31e`](https://github.com/nodejs/node/commit/58aebfd31e)] - **doc**: move GeoffreyBooth to TSC regular member (Geoffrey Booth) [#&#8203;54047](https://github.com/nodejs/node/pull/54047)
    
  • [`c1634c7213`](https://github.com/nodejs/node/commit/c1634c7213)] - **doc**: correct typescript stdin support (Marco Ippolito) [#&#8203;54036](https://github.com/nodejs/node/pull/54036)
    
  • [`64812d5c22`](https://github.com/nodejs/node/commit/64812d5c22)] - **doc**: fix typo in recognizing-contributors (Marco Ippolito) [#&#8203;53990](https://github.com/nodejs/node/pull/53990)
    
  • [`6b35994b6f`](https://github.com/nodejs/node/commit/6b35994b6f)] - **doc**: fix documentation for `--run` (Aviv Keller) [#&#8203;53976](https://github.com/nodejs/node/pull/53976)
    
  • [`04d203a233`](https://github.com/nodejs/node/commit/04d203a233)] - **doc**: update boxstarter README (Aviv Keller) [#&#8203;53785](https://github.com/nodejs/node/pull/53785)
    
  • [`86fa46db1c`](https://github.com/nodejs/node/commit/86fa46db1c)] - **doc**: add info about prefix-only modules to `module.builtinModules` (Grigory) [#&#8203;53954](https://github.com/nodejs/node/pull/53954)
    
  • [`defdc3c568`](https://github.com/nodejs/node/commit/defdc3c568)] - **doc**: remove `scroll-behavior: smooth;` (Cloyd Lau) [#&#8203;53942](https://github.com/nodejs/node/pull/53942)
    
  • [`e907236dd9`](https://github.com/nodejs/node/commit/e907236dd9)] - **doc**: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) [#&#8203;53926](https://github.com/nodejs/node/pull/53926)
    
  • [`8bf9960b98`](https://github.com/nodejs/node/commit/8bf9960b98)] - **doc**: add `--experimental-sqlite` note (Aviv Keller) [#&#8203;53907](https://github.com/nodejs/node/pull/53907)
    
  • [`d7615004d8`](https://github.com/nodejs/node/commit/d7615004d8)] - **doc**: update `api_assets` README for new files (Aviv Keller) [#&#8203;53676](https://github.com/nodejs/node/pull/53676)
    
  • [`63cf715aa0`](https://github.com/nodejs/node/commit/63cf715aa0)] - **doc**: add MattiasBuelens to collaborators (Mattias Buelens) [#&#8203;53895](https://github.com/nodejs/node/pull/53895)
    
  • [`5b8dd78112`](https://github.com/nodejs/node/commit/5b8dd78112)] - **doc**: fix release date for 22.5.0 (Antoine du Hamel) [#&#8203;53889](https://github.com/nodejs/node/pull/53889)
    
  • [`dd2c0f349a`](https://github.com/nodejs/node/commit/dd2c0f349a)] - **doc**: fix casing of GitHub handle for two collaborators (Antoine du Hamel) [#&#8203;53857](https://github.com/nodejs/node/pull/53857)
    
  • [`b47c2308e1`](https://github.com/nodejs/node/commit/b47c2308e1)] - **doc**: update release-post nodejs.org script (Rafael Gonzaga) [#&#8203;53762](https://github.com/nodejs/node/pull/53762)
    
  • [`88539527d5`](https://github.com/nodejs/node/commit/88539527d5)] - **doc, test**: tracing channel hasSubscribers getter (Thomas Hunter II) [#&#8203;52908](https://github.com/nodejs/node/pull/52908)
    
  • [`44a08f75b0`](https://github.com/nodejs/node/commit/44a08f75b0)] - **doc,tools**: enforce use of `node:` prefix (Antoine du Hamel) [#&#8203;53950](https://github.com/nodejs/node/pull/53950)
    
  • [`87bab76df2`](https://github.com/nodejs/node/commit/87bab76df2)] - **doc,tty**: add documentation for ReadStream and WriteStream (jakecastelli) [#&#8203;53567](https://github.com/nodejs/node/pull/53567)
    
  • [`dcca9ba560`](https://github.com/nodejs/node/commit/dcca9ba560)] - **esm**: refactor `get_format` (Antoine du Hamel) [#&#8203;53872](https://github.com/nodejs/node/pull/53872)
    
  • [`5e03c17aae`](https://github.com/nodejs/node/commit/5e03c17aae)] - **fs**: optimize `fs.cpSync` js calls (Yagiz Nizipli) [#&#8203;53614](https://github.com/nodejs/node/pull/53614)
    
  • [`e0054ee0a7`](https://github.com/nodejs/node/commit/e0054ee0a7)] - **fs**: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) [#&#8203;53776](https://github.com/nodejs/node/pull/53776)
    
  • [`8086337ea9`](https://github.com/nodejs/node/commit/8086337ea9)] - **fs**: remove unnecessary option argument validation (Jonas) [#&#8203;53861](https://github.com/nodejs/node/pull/53861)
    
  • [`b377b93a3f`](https://github.com/nodejs/node/commit/b377b93a3f)] - **fs**: correctly pass dirent to exclude `withFileTypes` (RedYetiDev) [#&#8203;53823](https://github.com/nodejs/node/pull/53823)
    
  • [`68e444d2d8`](https://github.com/nodejs/node/commit/68e444d2d8)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054)
    
  • [`de1fbc292f`](https://github.com/nodejs/node/commit/de1fbc292f)] - **(SEMVER-MINOR)** **inspector**: add initial support for network inspection (Kohei Ueno) [#&#8203;53593](https://github.com/nodejs/node/pull/53593)
    
  • [`744df0be24`](https://github.com/nodejs/node/commit/744df0be24)] - **lib**: support dynamic trace events on debugWithTimer (Vinicius Lourenço) [#&#8203;53913](https://github.com/nodejs/node/pull/53913)
    
  • [`546dab29c1`](https://github.com/nodejs/node/commit/546dab29c1)] - **lib**: optimize copyError with ObjectAssign in primordials (HEESEUNG) [#&#8203;53999](https://github.com/nodejs/node/pull/53999)
    
  • [`494df9835a`](https://github.com/nodejs/node/commit/494df9835a)] - **lib**: improve cluster/primary code (Ehsan Khakifirooz) [#&#8203;53756](https://github.com/nodejs/node/pull/53756)
    
  • [`03f353293b`](https://github.com/nodejs/node/commit/03f353293b)] - **lib**: improve error message when index not found on cjs (Vinicius Lourenço) [#&#8203;53859](https://github.com/nodejs/node/pull/53859)
    
  • [`d8375d6236`](https://github.com/nodejs/node/commit/d8375d6236)] - **lib**: decorate async stack trace in source maps (Chengzhong Wu) [#&#8203;53860](https://github.com/nodejs/node/pull/53860)
    
  • [`15a94e67b1`](https://github.com/nodejs/node/commit/15a94e67b1)] - **lib,src**: drop --experimental-network-imports (Rafael Gonzaga) [#&#8203;53822](https://github.com/nodejs/node/pull/53822)
    
  • [`a6eedc401d`](https://github.com/nodejs/node/commit/a6eedc401d)] - **meta**: add `sqlite` to js subsystems (Alex Yang) [#&#8203;53911](https://github.com/nodejs/node/pull/53911)
    
  • [`21098856de`](https://github.com/nodejs/node/commit/21098856de)] - **meta**: move tsc member to emeritus (Michael Dawson) [#&#8203;54029](https://github.com/nodejs/node/pull/54029)
    
  • [`048d421ad1`](https://github.com/nodejs/node/commit/048d421ad1)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004)
    
  • [`20a8c96c41`](https://github.com/nodejs/node/commit/20a8c96c41)] - **meta**: remove license for hljs (Aviv Keller) [#&#8203;53970](https://github.com/nodejs/node/pull/53970)
    
  • [`2fd4ac4859`](https://github.com/nodejs/node/commit/2fd4ac4859)] - **meta**: make more bug-report information required (Aviv Keller) [#&#8203;53718](https://github.com/nodejs/node/pull/53718)
    
  • [`b312ec0b0c`](https://github.com/nodejs/node/commit/b312ec0b0c)] - **meta**: reword linter messages (Aviv Keller) [#&#8203;53949](https://github.com/nodejs/node/pull/53949)
    
  • [`d2526126a9`](https://github.com/nodejs/node/commit/d2526126a9)] - **meta**: store actions secrets in environment (Aviv Keller) [#&#8203;53930](https://github.com/nodejs/node/pull/53930)
    
  • [`1688f00dce`](https://github.com/nodejs/node/commit/1688f00dce)] - **meta**: move anonrig to tsc voting members (Yagiz Nizipli) [#&#8203;53888](https://github.com/nodejs/node/pull/53888)
    
  • [`c20e8418de`](https://github.com/nodejs/node/commit/c20e8418de)] - **module**: fix strip-types interaction with detect-module (Marco Ippolito) [#&#8203;54164](https://github.com/nodejs/node/pull/54164)
    
  • [`ab1f0b415f`](https://github.com/nodejs/node/commit/ab1f0b415f)] - **module**: fix extensionless typescript in cjs loader (Marco Ippolito) [#&#8203;54062](https://github.com/nodejs/node/pull/54062)
    
  • [`92439fc160`](https://github.com/nodejs/node/commit/92439fc160)] - **(SEMVER-MINOR)** **module**: add --experimental-strip-types (Marco Ippolito) [#&#8203;53725](https://github.com/nodejs/node/pull/53725)
    
  • [`f755d31bec`](https://github.com/nodejs/node/commit/f755d31bec)] - **node-api**: add property keys benchmark (Chengzhong Wu) [#&#8203;54012](https://github.com/nodejs/node/pull/54012)
    
  • [`7382eefae5`](https://github.com/nodejs/node/commit/7382eefae5)] - **node-api**: rename nogc to basic (Gabriel Schulhof) [#&#8203;53830](https://github.com/nodejs/node/pull/53830)
    
  • [`2c4470625b`](https://github.com/nodejs/node/commit/2c4470625b)] - **process**: unify experimental warning messages (Aviv Keller) [#&#8203;53704](https://github.com/nodejs/node/pull/53704)
    
  • [`98a7ad2e0d`](https://github.com/nodejs/node/commit/98a7ad2e0d)] - **src**: expose LookupAndCompile with parameters (Shelley Vohr) [#&#8203;53886](https://github.com/nodejs/node/pull/53886)
    
  • [`dd3c66be0a`](https://github.com/nodejs/node/commit/dd3c66be0a)] - **src**: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) [#&#8203;53890](https://github.com/nodejs/node/pull/53890)
    
  • [`ee82f224ff`](https://github.com/nodejs/node/commit/ee82f224ff)] - **src**: remove redundant RsaPointer (use RSAPointer) (James M Snell) [#&#8203;54003](https://github.com/nodejs/node/pull/54003)
    
  • [`2d77bd2929`](https://github.com/nodejs/node/commit/2d77bd2929)] - **src**: fix -Wshadow warning (Shelley Vohr) [#&#8203;53885](https://github.com/nodejs/node/pull/53885)
    
  • [`bd4a9ffe8c`](https://github.com/nodejs/node/commit/bd4a9ffe8c)] - **src**: start using ncrypto for CSPRNG calls (James M Snell) [#&#8203;53984](https://github.com/nodejs/node/pull/53984)
    
  • [`3fdcf7a47d`](https://github.com/nodejs/node/commit/3fdcf7a47d)] - **src**: return `undefined` if no rows are returned in SQLite (Deokjin Kim) [#&#8203;53981](https://github.com/nodejs/node/pull/53981)
    
  • [`ca6854443d`](https://github.com/nodejs/node/commit/ca6854443d)] - **src**: fix slice of slice of file-backed Blob (Josh Lee) [#&#8203;53972](https://github.com/nodejs/node/pull/53972)
    
  • [`c457f9ed5a`](https://github.com/nodejs/node/commit/c457f9ed5a)] - **src**: cache invariant code motion (Rafael Gonzaga) [#&#8203;53879](https://github.com/nodejs/node/pull/53879)
    
  • [`fd0da6c2cf`](https://github.com/nodejs/node/commit/fd0da6c2cf)] - **src**: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53813](https://github.com/nodejs/node/pull/53813)
    
  • [`fbf74bcf99`](https://github.com/nodejs/node/commit/fbf74bcf99)] - **src**: switch from ToLocalChecked to ToLocal in node_webstorage (James M Snell) [#&#8203;53959](https://github.com/nodejs/node/pull/53959)
    
  • [`04bb6778e5`](https://github.com/nodejs/node/commit/04bb6778e5)] - **src**: move `ToNamespacedPath` call of webstorage (Yagiz Nizipli) [#&#8203;53875](https://github.com/nodejs/node/pull/53875)
    
  • [`9ffaf763e9`](https://github.com/nodejs/node/commit/9ffaf763e9)] - **src**: use Maybe\<void> in SecureContext (Tobias Nießen) [#&#8203;53883](https://github.com/nodejs/node/pull/53883)
    
  • [`a94c3ae06f`](https://github.com/nodejs/node/commit/a94c3ae06f)] - **src**: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) [#&#8203;53869](https://github.com/nodejs/node/pull/53869)
    
  • [`55461be05f`](https://github.com/nodejs/node/commit/55461be05f)] - **src**: refactor webstorage implementation (Yagiz Nizipli) [#&#8203;53876](https://github.com/nodejs/node/pull/53876)
    
  • [`c53cf449a6`](https://github.com/nodejs/node/commit/c53cf449a6)] - **src**: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) [#&#8203;53786](https://github.com/nodejs/node/pull/53786)
    
  • [`bac3a485f6`](https://github.com/nodejs/node/commit/bac3a485f6)] - **src**: fix potential segmentation fault in SQLite (Tobias Nießen) [#&#8203;53850](https://github.com/nodejs/node/pull/53850)
    
  • [`df5083e5f9`](https://github.com/nodejs/node/commit/df5083e5f9)] - **src,lib**: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) [#&#8203;53602](https://github.com/nodejs/node/pull/53602)
    
  • [`8664b9ad60`](https://github.com/nodejs/node/commit/8664b9ad60)] - **src,test**: disallow unsafe integer coercion in SQLite (Tobias Nießen) [#&#8203;53851](https://github.com/nodejs/node/pull/53851)
    
  • [`15816bd0dd`](https://github.com/nodejs/node/commit/15816bd0dd)] - **(SEMVER-MINOR)** **stream**: expose DuplexPair API (Austin Wright) [#&#8203;34111](https://github.com/nodejs/node/pull/34111)
    
  • [`718f6bc78c`](https://github.com/nodejs/node/commit/718f6bc78c)] - **test**: do not swallow uncaughtException errors in exit code tests (Meghan Denny) [#&#8203;54039](https://github.com/nodejs/node/pull/54039)
    
  • [`c6656c9251`](https://github.com/nodejs/node/commit/c6656c9251)] - **test**: move shared module to `test/common` (Rich Trott) [#&#8203;54042](https://github.com/nodejs/node/pull/54042)
    
  • [`e471e32d46`](https://github.com/nodejs/node/commit/e471e32d46)] - **test**: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) [#&#8203;53996](https://github.com/nodejs/node/pull/53996)
    
  • [`61971ec929`](https://github.com/nodejs/node/commit/61971ec929)] - **test**: remove unnecessary console log (KAYYY) [#&#8203;53812](https://github.com/nodejs/node/pull/53812)
    
  • [`1344bd2d6f`](https://github.com/nodejs/node/commit/1344bd2d6f)] - **test**: add comments and rename test for timer robustness (Rich Trott) [#&#8203;54008](https://github.com/nodejs/node/pull/54008)
    
  • [`da3573409c`](https://github.com/nodejs/node/commit/da3573409c)] - **test**: add test for one arg timers to increase coverage (Carlos Espa) [#&#8203;54007](https://github.com/nodejs/node/pull/54007)
    
  • [`fc67abd97e`](https://github.com/nodejs/node/commit/fc67abd97e)] - **test**: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) [#&#8203;54031](https://github.com/nodejs/node/pull/54031)
    
  • [`aa0ac3b57c`](https://github.com/nodejs/node/commit/aa0ac3b57c)] - **test**: mark test-pipe-file-to-http as flaky (jakecastelli) [#&#8203;53751](https://github.com/nodejs/node/pull/53751)
    
  • [`52bc8ec360`](https://github.com/nodejs/node/commit/52bc8ec360)] - **test**: compare paths on Windows without considering case (Early Riser) [#&#8203;53993](https://github.com/nodejs/node/pull/53993)
    
  • [`7e8a609579`](https://github.com/nodejs/node/commit/7e8a609579)] - **test**: skip sea tests in large debug builds (Chengzhong Wu) [#&#8203;53918](https://github.com/nodejs/node/pull/53918)
    
  • [`30a94ca0c4`](https://github.com/nodejs/node/commit/30a94ca0c4)] - **test**: skip --title check on IBM i (Abdirahim Musse) [#&#8203;53952](https://github.com/nodejs/node/pull/53952)
    
  • [`5cea7ed706`](https://github.com/nodejs/node/commit/5cea7ed706)] - **test**: reduce flakiness of `test-assert-esm-cjs-message-verify` (Antoine du Hamel) [#&#8203;53967](https://github.com/nodejs/node/pull/53967)
    
  • [`58cb0dd8a6`](https://github.com/nodejs/node/commit/58cb0dd8a6)] - **test**: use `PYTHON` executable from env in `assertSnapshot` (Antoine du Hamel) [#&#8203;53938](https://github.com/nodejs/node/pull/53938)
    
  • [`c247582591`](https://github.com/nodejs/node/commit/c247582591)] - **test**: deflake test-blob-file-backed (Luigi Pinca) [#&#8203;53920](https://github.com/nodejs/node/pull/53920)
    
  • [`3999021653`](https://github.com/nodejs/node/commit/3999021653)] - **test_runner**: switched to internal readline interface (Emil Tayeb) [#&#8203;54000](https://github.com/nodejs/node/pull/54000)
    
  • [`3fb97a90ee`](https://github.com/nodejs/node/commit/3fb97a90ee)] - **test_runner**: remove redundant bootstrap boolean (Colin Ihrig) [#&#8203;54013](https://github.com/nodejs/node/pull/54013)
    
  • [`edd80e2bdc`](https://github.com/nodejs/node/commit/edd80e2bdc)] - **test_runner**: do not throw on mocked clearTimeout() (Aksinya Bykova) [#&#8203;54005](https://github.com/nodejs/node/pull/54005)
    
  • [`893c864542`](https://github.com/nodejs/node/commit/893c864542)] - **(SEMVER-MINOR)** **test_runner**: fix support watch with run(), add globPatterns option (Matteo Collina) [#&#8203;53866](https://github.com/nodejs/node/pull/53866)
    
  • [`4887213f2e`](https://github.com/nodejs/node/commit/4887213f2e)] - **test_runner**: added colors to dot reporter (Giovanni) [#&#8203;53450](https://github.com/nodejs/node/pull/53450)
    
  • [`c4848c53e6`](https://github.com/nodejs/node/commit/c4848c53e6)] - **test_runner**: cleanup global event listeners after run (Eddie Abbondanzio) [#&#8203;53878](https://github.com/nodejs/node/pull/53878)
    
  • [`876e7b3226`](https://github.com/nodejs/node/commit/876e7b3226)] - **test_runner**: refactor coverage to pass in config options (Colin Ihrig) [#&#8203;53931](https://github.com/nodejs/node/pull/53931)
    
  • [`f45edb4b5e`](https://github.com/nodejs/node/commit/f45edb4b5e)] - **test_runner**: refactor and simplify internals (Colin Ihrig) [#&#8203;53921](https://github.com/nodejs/node/pull/53921)
    
  • [`6ad6e01bf3`](https://github.com/nodejs/node/commit/6ad6e01bf3)] - **(SEMVER-MINOR)** **test_runner**: refactor snapshots to get file from context (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853)
    
  • [`698e44f8e7`](https://github.com/nodejs/node/commit/698e44f8e7)] - **(SEMVER-MINOR)** **test_runner**: add context.filePath (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853)
    
  • [`97da7ca11b`](https://github.com/nodejs/node/commit/97da7ca11b)] - **test_runner**: consolidate option parsing (Colin Ihrig) [#&#8203;53849](https://github.com/nodejs/node/pull/53849)
    
  • [`43afcbf9dd`](https://github.com/nodejs/node/commit/43afcbf9dd)] - **tools**: fix `SLACK_TITLE` in invalid commit workflow (Antoine du Hamel) [#&#8203;53912](https://github.com/nodejs/node/pull/53912)
    
  • [`eed0963391`](https://github.com/nodejs/node/commit/eed0963391)] - **typings**: apply lint (1ilsang) [#&#8203;54065](https://github.com/nodejs/node/pull/54065)
    
  • [`e8ea49b256`](https://github.com/nodejs/node/commit/e8ea49b256)] - **typings**: fix typo on quic onSessionDatagram (1ilsang) [#&#8203;54064](https://github.com/nodejs/node/pull/54064)
    
    

v22.5.1: 2024-07-19, Version 22.5.1 (Current), @​richardlau

Compare Source

Notable Changes

This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms:

  • Crash with FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available #​53902
  • npm errors with npm error Exit handler never called! npm/cli#7657
  • yarn hangs or outputs Usage Error: Couldn't find the node_modules state file - running an install might help (findPackageLocation) yarnpkg/berry#6398
Commits
  • [`e2deeedc6e`](https://github.com/nodejs/node/commit/e2deeedc6e)] - ***Revert*** "**fs**: add v8 fast api to closeSync" (Aviv Keller) [#&#8203;53904](https://github.com/nodejs/node/pull/53904)
    
    

v22.5.0: 2024-07-17, Version 22.5.0 (Current), @​RafaelGSS prepared by @​aduh95

Compare Source

Notable Changes
  • [`1367c5558e`](https://github.com/nodejs/node/commit/1367c5558e)] - **(SEMVER-MINOR)** **http**: expose websockets (Natalia Venditto) [#&#8203;53721](https://github.com/nodejs/node/pull/53721)
    
  • [`b31394920d`](https://github.com/nodejs/node/commit/b31394920d)] - **(SEMVER-MINOR)** **lib**: add `node:sqlite` module (Colin Ihrig) [#&#8203;53752](https://github.com/nodejs/node/pull/53752)
    
  • [`aa7df9551d`](https://github.com/nodejs/node/commit/aa7df9551d)] - **module**: add `__esModule` to `require()`'d ESM (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166)
    
  • [`8743c4d65a`](https://github.com/nodejs/node/commit/8743c4d65a)] - **(SEMVER-MINOR)** **path**: add `matchesGlob` method (Aviv Keller) [#&#8203;52881](https://github.com/nodejs/node/pull/52881)
    
  • [`77936c3d24`](https://github.com/nodejs/node/commit/77936c3d24)] - **(SEMVER-MINOR)** **process**: port on-exit-leak-free to core (Vinicius Lourenço) [#&#8203;53239](https://github.com/nodejs/node/pull/53239)
    
  • [`82d88a83f8`](https://github.com/nodejs/node/commit/82d88a83f8)] - **(SEMVER-MINOR)** **stream**: pipeline wait for close before calling the callback (jakecastelli) [#&#8203;53462](https://github.com/nodejs/node/pull/53462)
    
  • [`3a0fcbb17a`](https://github.com/nodejs/node/commit/3a0fcbb17a)] - **test_runner**: support glob matching coverage files (Aviv Keller) [#&#8203;53553](https://github.com/nodejs/node/pull/53553)
    
  • [`22ca334090`](https://github.com/nodejs/node/commit/22ca334090)] - **(SEMVER-MINOR)** **worker**: add `postMessageToThread` (Paolo Insogna) [#&#8203;53682](https://github.com/nodejs/node/pull/53682)
    
    
Commits
  • [`eb4e370933`](https://github.com/nodejs/node/commit/eb4e370933)] - **benchmark**: add require-esm benchmark (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166)
    
  • [`4d4a8338db`](https://github.com/nodejs/node/commit/4d4a8338db)] - **benchmark**: add cpSync benchmark (Yagiz Nizipli) [#&#8203;53612](https://github.com/nodejs/node/pull/53612)
    
  • [`3d60b38afa`](https://github.com/nodejs/node/commit/3d60b38afa)] - **build**: fix build warning of c-ares under GN build (Cheng) [#&#8203;53750](https://github.com/nodejs/node/pull/53750)
    
  • [`a45c801048`](https://github.com/nodejs/node/commit/a45c801048)] - **build**: fix build error in sqlite under GN build (Cheng) [#&#8203;53686](https://github.com/nodejs/node/pull/53686)
    
  • [`40032eb623`](https://github.com/nodejs/node/commit/40032eb623)] - **build**: add gn files for deps/nbytes (Cheng) [#&#8203;53685](https://github.com/nodejs/node/pull/53685)
    
  • [`082799debb`](https://github.com/nodejs/node/commit/082799debb)] - **build**: fix mac build error of c-ares under GN (Cheng) [#&#8203;53687](https://github.com/nodejs/node/pull/53687)
    
  • [`b05394ea6a`](https://github.com/nodejs/node/commit/b05394ea6a)] - **build**: add version-specific library path for AIX (Richard Lau) [#&#8203;53585](https://github.com/nodejs/node/pull/53585)
    
  • [`6237172eaf`](https://github.com/nodejs/node/commit/6237172eaf)] - **cli**: update `node.1` to reflect Atom's sunset (Aviv Keller) [#&#8203;53734](https://github.com/nodejs/node/pull/53734)
    
  • [`5697938cb7`](https://github.com/nodejs/node/commit/5697938cb7)] - **crypto**: avoid std::function (Tobias Nießen) [#&#8203;53683](https://github.com/nodejs/node/pull/53683)
    
  • [`3cc01aa314`](https://github.com/nodejs/node/commit/3cc01aa314)] - **crypto**: make deriveBits length parameter optional and nullable (Filip Skokan) [#&#8203;53601](https://github.com/nodejs/node/pull/53601)
    
  • [`f82e20fdea`](https://github.com/nodejs/node/commit/f82e20fdea)] - **crypto**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53460](https://github.com/nodejs/node/pull/53460)
    
  • [`ad1e5610ec`](https://github.com/nodejs/node/commit/ad1e5610ec)] - **deps**: update googletest to [`4b21f1a`](https://github.com/nodejs/node/commit/4b21f1a) (Node.js GitHub Bot) [#&#8203;53842](https://github.com/nodejs/node/pull/53842)
    
  • [`d285d610a0`](https://github.com/nodejs/node/commit/d285d610a0)] - **deps**: update minimatch to 10.0.1 (Node.js GitHub Bot) [#&#8203;53841](https://github.com/nodejs/node/pull/53841)
    
  • [`70f5209c9f`](https://github.com/nodejs/node/commit/70f5209c9f)] - **deps**: update corepack to 0.29.2 (Node.js GitHub Bot) [#&#8203;53838](https://github.com/nodejs/node/pull/53838)
    
  • [`4930e12a45`](https://github.com/nodejs/node/commit/4930e12a45)] - **deps**: update simdutf to 5.3.0 (Node.js GitHub Bot) [#&#8203;53837](https://github.com/nodejs/node/pull/53837)
    
  • [`d346833364`](https://github.com/nodejs/node/commit/d346833364)] - **deps**: update ada to 2.9.0 (Node.js GitHub Bot) [#&#8203;53748](https://github.com/nodejs/node/pull/53748)
    
  • [`ab8abb5367`](https://github.com/nodejs/node/commit/ab8abb5367)] - **deps**: upgrade npm to 10.8.2 (npm team) [#&#8203;53799](https://github.com/nodejs/node/pull/53799)
    
  • [`1ad664905a`](https://github.com/nodejs/node/commit/1ad664905a)] - **deps**: update nbytes and add update script (Yagiz Nizipli) [#&#8203;53790](https://github.com/nodejs/node/pull/53790)
    
  • [`a66f11e798`](https://github.com/nodejs/node/commit/a66f11e798)] - **deps**: update googletest to [`34ad51b`](https://github.com/nodejs/node/commit/34ad51b) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157)
    
  • [`9bf61d6a0d`](https://github.com/nodejs/node/commit/9bf61d6a0d)] - **deps**: update googletest to [`305e5a2`](https://github.com/nodejs/node/commit/305e5a2) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157)
    
  • [`8542ace488`](https://github.com/nodejs/node/commit/8542ace488)] - **deps**: V8: cherry-pick [`9ebca66`](https://github.com/nodejs/node/commit/9ebca66a5740) (Chengzhong Wu) [#&#8203;53755](https://github.com/nodejs/node/pull/53755)
    
  • [`29a734c21d`](https://github.com/nodejs/node/commit/29a734c21d)] - **deps**: V8: cherry-pick [`e061cf9`](https://github.com/nodejs/node/commit/e061cf9970d9) (Joyee Cheung) [#&#8203;53755](https://github.com/nodejs/node/pull/53755)
    
  • [`c7624af44a`](https://github.com/nodejs/node/commit/c7624af44a)] - **deps**: update c-ares to v1.32.1 (Node.js GitHub Bot) [#&#8203;53753](https://github.com/nodejs/node/pull/53753)
    
  • [`bbcec9e129`](https://github.com/nodejs/node/commit/bbcec9e129)] - **deps**: update minimatch to 9.0.5 (Node.js GitHub Bot) [#&#8203;53646](https://github.com/nodejs/node/pull/53646)
    
  • [`76032fd980`](https://github.com/nodejs/node/commit/76032fd980)] - **deps**: update c-ares to v1.32.0 (Node.js GitHub Bot) [#&#8203;53722](https://github.com/nodejs/node/pull/53722)
    
  • [`26386046ad`](https://github.com/nodejs/node/commit/26386046ad)] - **doc**: move MylesBorins to emeritus (Myles Borins) [#&#8203;53760](https://github.com/nodejs/node/pull/53760)
    
  • [`362875bda0`](https://github.com/nodejs/node/commit/362875bda0)] - **doc**: add Rafael to the last security release (Rafael Gonzaga) [#&#8203;53769](https://github.com/nodejs/node/pull/53769)
    
  • [`a1a5ad848d`](https://github.com/nodejs/node/commit/a1a5ad848d)] - **doc**: use mock.callCount() in examples (Sébastien Règne) [#&#8203;53754](https://github.com/nodejs/node/pull/53754)
    
  • [`bb960c5471`](https://github.com/nodejs/node/commit/bb960c5471)] - **doc**: clarify authenticity of plaintexts in update (Tobias Nießen) [#&#8203;53784](https://github.com/nodejs/node/pull/53784)
    
  • [`5dd3018eb4`](https://github.com/nodejs/node/commit/5dd3018eb4)] - **doc**: add option to have support me link (Michael Dawson) [#&#8203;53312](https://github.com/nodejs/node/pull/53312)
    
  • [`0f95ad3d7d`](https://github.com/nodejs/node/commit/0f95ad3d7d)] - **doc**: add OpenSSL security level to TLS docs (Afanasii Kurakin) [#&#8203;53647](https://github.com/nodejs/node/pull/53647)
    
  • [`2d92ec2831`](https://github.com/nodejs/node/commit/2d92ec2831)] - **doc**: update `scroll-padding-top` to 4rem (Cloyd Lau) [#&#8203;53662](https://github.com/nodejs/node/pull/53662)
    
  • [`933359a786`](https://github.com/nodejs/node/commit/933359a786)] - **doc**: mention v8.setFlagsFromString to pm (Rafael Gonzaga) [#&#8203;53731](https://github.com/nodejs/node/pull/53731)
    
  • [`e17c2618e3`](https://github.com/nodejs/node/commit/e17c2618e3)] - **doc**: remove the last \<pre> tag (Claudio W) [#&#8203;53741](https://github.com/nodejs/node/pull/53741)
    
  • [`7f18a5f47a`](https://github.com/nodejs/node/commit/7f18a5f47a)] - **doc**: exclude voting and regular TSC from spotlight (Michael Dawson) [#&#8203;53694](https://github.com/nodejs/node/pull/53694)
    
  • [`df3dcd1bd1`](https://github.com/nodejs/node/commit/df3dcd1bd1)] - **doc**: fix releases guide for recent Git versions (Michaël Zasso) [#&#8203;53709](https://github.com/nodejs/node/pull/53709)
    
  • [`50987ea833`](https://github.com/nodejs/node/commit/50987ea833)] - **doc**: require `node:process` in assert doc examples (Alfredo González) [#&#8203;53702](https://github.com/nodejs/node/pull/53702)
    
  • [`fa58d01497`](https://github.com/nodejs/node/commit/fa58d01497)] - **doc**: add additional explanation to the wildcard section in permissions (jakecastelli) [#&#8203;53664](https://github.com/nodejs/node/pull/53664)
    
  • [`28bf1e48ef`](https://github.com/nodejs/node/commit/28bf1e48ef)] - **doc**: mark NODE_MODULE_VERSION for Node.js 22.0.0 (Michaël Zasso) [#&#8203;53650](https://github.com/nodejs/node/pull/53650)
    
  • [`1cc0b41f00`](https://github.com/nodejs/node/commit/1cc0b41f00)] - **doc**: include node.module_timer on available categories (Vinicius Lourenço) [#&#8203;53638](https://github.com/nodejs/node/pull/53638)
    
  • [`d224e9eab5`](https://github.com/nodejs/node/commit/d224e9eab5)] - **doc**: fix module customization hook examples (Elliot Goodrich) [#&#8203;53637](https://github.com/nodejs/node/pull/53637)
    
  • [`2cf60964e6`](https://github.com/nodejs/node/commit/2cf60964e6)] - **doc**: fix doc for correct usage with plan & TestContext (Emil Tayeb) [#&#8203;53615](https://github.com/nodejs/node/pull/53615)
    
  • [`6df86ae056`](https://github.com/nodejs/node/commit/6df86ae056)] - **doc**: remove some news issues that are no longer (Michael Dawson) [#&#8203;53608](https://github.com/nodejs/node/pull/53608)
    
  • [`42b9408f3e`](https://github.com/nodejs/node/commit/42b9408f3e)] - **doc**: add issue for news from ambassadors (Michael Dawson) [#&#8203;53607](https://github.com/nodejs/node/pull/53607)
    
  • [`2d1ff91953`](https://github.com/nodejs/node/commit/2d1ff91953)] - **doc**: add esm example for os (Leonardo Peixoto) [#&#8203;53604](https://github.com/nodejs/node/pull/53604)
    
  • [`de99d69d75`](https://github.com/nodejs/node/commit/de99d69d75)] - **doc**: clarify usage of coverage reporters (Eliphaz Bouye) [#&#8203;53523](https://github.com/nodejs/node/pull/53523)
    
  • [`519c328dcf`](https://github.com/nodejs/node/commit/519c328dcf)] - **doc**: document addition testing options (Aviv Keller) [#&#8203;53569](https://github.com/nodejs/node/pull/53569)
    
  • [`c6166cdfe4`](https://github.com/nodejs/node/commit/c6166cdfe4)] - **doc**: clarify that fs.exists() may return false for existing symlink (Tobias Nießen) [#&#8203;53566](https://github.com/nodejs/node/pull/53566)
    
  • [`9139ab2848`](https://github.com/nodejs/node/commit/9139ab2848)] - **doc**: note http.closeAllConnections excludes upgraded sockets (Rob Hogan) [#&#8203;53560](https://github.com/nodejs/node/pull/53560)
    
  • [`19b3718ee1`](https://github.com/nodejs/node/commit/19b3718ee1)] - **doc, meta**: add PTAL to glossary (Aviv Keller) [#&#8203;53770](https://github.com/nodejs/node/pull/53770)
    
  • [`80c1f5ce8a`](https://github.com/nodejs/node/commit/80c1f5ce8a)] - **doc, typings**: events.once accepts symbol event type (René) [#&#8203;53542](https://github.com/nodejs/node/pull/53542)
    
  • [`1a21e0f61e`](https://github.com/nodejs/node/commit/1a21e0f61e)] - **esm**: improve `defaultResolve` performance (Yagiz Nizipli) [#&#8203;53711](https://github.com/nodejs/node/pull/53711)
    
  • [`262f2cb3b6`](https://github.com/nodejs/node/commit/262f2cb3b6)] - **esm**: remove unnecessary toNamespacedPath calls (Yagiz Nizipli) [#&#8203;53656](https://github.com/nodejs/node/pull/53656)
    
  • [`e29c9453a9`](https://github.com/nodejs/node/commit/e29c9453a9)] - **esm**: move hooks test with others (Geoffrey Booth) [#&#8203;53558](https://github.com/nodejs/node/pull/53558)
    
  • [`8368555289`](https://github.com/nodejs/node/commit/8368555289)] - **fs**: add v8 fast api to closeSync (Yagiz Nizipli) [#&#8203;53627](https://github.com/nodejs/node/pull/53627)
    
  • [`628a539810`](https://github.com/nodejs/node/commit/628a539810)] - **fs**: reduce throwing unnecessary errors on glob (Yagiz Nizipli) [#&#8203;53632](https://github.com/nodejs/node/pull/53632)
    
  • [`076e82ca40`](https://github.com/nodejs/node/commit/076e82ca40)] - **fs**: move `ToNamespacedPath` dir calls to c++ (Yagiz Nizipli) [#&#8203;53630](https://github.com/nodejs/node/pull/53630)
    
  • [`128e514d81`](https://github.com/nodejs/node/commit/128e514d81)] - **fs**: improve error performance of `fs.dir` (Yagiz Nizipli) [#&#8203;53667](https://github.com/nodejs/node/pull/53667)
    
  • [`603c2c5c08`](https://github.com/nodejs/node/commit/603c2c5c08)] - **fs**: fix typings (Yagiz Nizipli) [#&#8203;53626](https://github.com/nodejs/node/pull/53626)
    
  • [`1367c5558e`](https://github.com/nodejs/node/commit/1367c5558e)] - **(SEMVER-MINOR)** **http**: expose websockets (Natalia Venditto) [#&#8203;53721](https://github.com/nodejs/node/pull/53721)
    
  • [`7debb6c36e`](https://github.com/nodejs/node/commit/7debb6c36e)] - **http**: remove prototype primordials (Antoine du Hamel) [#&#8203;53698](https://github.com/nodejs/node/pull/53698)
    
  • [`b13aea5698`](https://github.com/nodejs/node/commit/b13aea5698)] - **http, readline**: replace sort with toSorted (Benjamin Gruenbaum) [#&#8203;53623](https://github.com/nodejs/node/pull/53623)
    
  • [`1397f5d9f4`](https://github.com/nodejs/node/commit/1397f5d9f4)] - **http2**: remove prototype primordials (Antoine du Hamel) [#&#8203;53696](https://github.com/nodejs/node/pull/53696)
    
  • [`f57d3cee2c`](https://github.com/nodejs/node/commit/f57d3cee2c)] - **lib**: make navigator not runtime-lookup process.version/arch/platform (Jordan Harband) [#&#8203;53765](https://github.com/nodejs/node/pull/53765)
    
  • [`0a01abbd45`](https://github.com/nodejs/node/commit/0a01abbd45)] - **lib**: refactor `platform` utility methods (Daniel Bayley) [#&#8203;53817](https://github.com/nodejs/node/pull/53817)
    
  • [`afe7f4f819`](https://github.com/nodejs/node/commit/afe7f4f819)] - **lib**: remove path.resolve from permissions.js (Rafael Gonzaga) [#&#8203;53729](https://github.com/nodejs/node/pull/53729)
    
  • [`cbe77b30ca`](https://github.com/nodejs/node/commit/cbe77b30ca)] - **lib**: move `ToNamespacedPath` call to c++ (Yagiz Nizipli) [#&#8203;53654](https://github.com/nodejs/node/pull/53654)
    
  • [`0f146aac2c`](https://github.com/nodejs/node/commit/0f146aac2c)] - **lib**: make navigator properties lazy (James M Snell) [#&#8203;53649](https://github.com/nodejs/node/pull/53649)
    
  • [`0540308bd7`](https://github.com/nodejs/node/commit/0540308bd7)] - **lib**: add toJSON to PerformanceMeasure (theanarkh) [#&#8203;53603](https://github.com/nodejs/node/pull/53603)
    
  • [`b31394920d`](https://github.com/nodejs/node/commit/b31394920d)] - **(SEMVER-MINOR)** **lib,src,test,doc**: add node:sqlite module (Colin Ihrig) [#&#8203;53752](https://github.com/nodejs/node/pull/53752)
    
  • [`1a7c2dc5ea`](https://github.com/nodejs/node/commit/1a7c2dc5ea)] - **meta**: remove redudant logging from dep updaters (Aviv Keller) [#&#8203;53783](https://github.com/nodejs/node/pull/53783)
    
  • [`ac5d7b709d`](https://github.com/nodejs/node/commit/ac5d7b709d)] - **meta**: change email address of anonrig (Yagiz Nizipli) [#&#8203;53829](https://github.com/nodejs/node/pull/53829)
    
  • [`085ec5533c`](https://github.com/nodejs/node/commit/085ec5533c)] - **meta**: add `node_sqlite.c` to PR label config (Aviv Keller) [#&#8203;53797](https://github.com/nodejs/node/pull/53797)
    
  • [`c68d873e99`](https://github.com/nodejs/node/commit/c68d873e99)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53758](https://github.com/nodejs/node/pull/53758)
    
  • [`5ae8ea489d`](https://github.com/nodejs/node/commit/5ae8ea489d)] - **meta**: use HTML entities in commit-queue comment (Aviv Keller) [#&#8203;53744](https://github.com/nodejs/node/pull/53744)
    
  • [`ecd8fceb68`](https://github.com/nodejs/node/commit/ecd8fceb68)] - **meta**: move regular TSC member to emeritus (Michael Dawson) [#&#8203;53693](https://github.com/nodejs/node/pull/53693)
    
  • [`05058f9809`](https://github.com/nodejs/node/commit/05058f9809)] - **meta**: bump codecov/codecov-action from 4.4.1 to 4.5.0 (dependabot\[bot]) [#&#8203;53675](https://github.com/nodejs/node/pull/53675)
    
  • [`e272ffa3d6`](https://github.com/nodejs/node/commit/e272ffa3d6)] - **meta**: bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 (dependabot\[bot]) [#&#8203;53674](https://github.com/nodejs/node/pull/53674)
    
  • [`a39407560c`](https://github.com/nodejs/node/commit/a39407560c)] - **meta**: bump github/codeql-action from 3.25.7 to 3.25.11 (dependabot\[bot]) [#&#8203;53673](https://github.com/nodejs/node/pull/53673)
    
  • [`e4ce92ee31`](https://github.com/nodejs/node/commit/e4ce92ee31)] - **meta**: bump actions/checkout from 4.1.6 to 4.1.7 (dependabot\[bot]) [#&#8203;53672](https://github.com/nodejs/node/pull/53672)
    
  • [`4cf98febe7`](https://github.com/nodejs/node/commit/4cf98febe7)] - **meta**: bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (dependabot\[bot]) [#&#8203;53671](https://github.com/nodejs/node/pull/53671)
    
  • [`c28af95bf5`](https://github.com/nodejs/node/commit/c28af95bf5)] - **meta**: bump step-security/harden-runner from 2.8.0 to 2.8.1 (dependabot\[bot]) [#&#8203;53670](https://github.com/nodejs/node/pull/53670)
    
  • [`dd2157bc83`](https://github.com/nodejs/node/commit/dd2157bc83)] - **meta**: move member from TSC regular to emeriti (Michael Dawson) [#&#8203;53599](https://github.com/nodejs/node/pull/53599)
    
  • [`508abfe178`](https://github.com/nodejs/node/commit/508abfe178)] - **meta**: warnings bypass deprecation cycle (Benjamin Gruenbaum) [#&#8203;53513](https://github.com/nodejs/node/pull/53513)
    
  • [`3c5ec839e3`](https://github.com/nodejs/node/commit/3c5ec839e3)] - **meta**: prevent constant references to issues in versioning (Aviv Keller) [#&#8203;53564](https://github.com/nodejs/node/pull/53564)
    
  • [`aa7df9551d`](https://github.com/nodejs/node/commit/aa7df9551d)] - **module**: add \__esModule to require()'d ESM (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166)
    
  • [`8743c4d65a`](https://github.com/nodejs/node/commit/8743c4d65a)] - **(SEMVER-MINOR)** **path**: add `matchesGlob` method (Aviv Keller) [#&#8203;52881](https://github.com/nodejs/node/pull/52881)
    
  • [`77936c3d24`](https://github.com/nodejs/node/commit/77936c3d24)] - **(SEMVER-MINOR)** **process**: port on-exit-leak-free to core (Vinicius Lourenço) [#&#8203;53239](https://github.com/nodejs/node/pull/53239)
    
  • [`5e4ca9fbb6`](https://github.com/nodejs/node/commit/5e4ca9fbb6)] - **src**: update outdated references to spec sections (Tobias Nießen) [#&#8203;53832](https://github.com/nodejs/node/pull/53832)
    
  • [`c22d9d5167`](https://github.com/nodejs/node/commit/c22d9d5167)] - **src**: use Maybe\<void> in ManagedEVPPKey (Tobias Nießen) [#&#8203;53811](https://github.com/nodejs/node/pull/53811)
    
  • [`d41ed44f49`](https://github.com/nodejs/node/commit/d41ed44f49)] - **src**: move `loadEnvFile` toNamespacedPath call (Yagiz Nizipli) [#&#8203;53658](https://github.com/nodejs/node/pull/53658)
    
  • [`dc99dd391f`](https://github.com/nodejs/node/commit/dc99dd391f)] - **src**: fix error handling in ExportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53767](https://github.com/nodejs/node/pull/53767)
    
  • [`ab1e03e8cd`](https://github.com/nodejs/node/commit/ab1e03e8cd)] - **src**: use Maybe\<void> in node::crypto::error (Tobias Nießen) [#&#8203;53766](https://github.com/nodejs/node/pull/53766)
    
  • [`9bde9b254d`](https://github.com/nodejs/node/commit/9bde9b254d)] - **src**: fix implementation of `PropertySetterCallback` (Igor Sheludko) [#&#8203;53576](https://github.com/nodejs/node/pull/53576)
    
  • [`021e2cf40f`](https://github.com/nodejs/node/commit/021e2cf40f)] - **src**: remove unused ContextifyContext::WeakCallback (Chengzhong Wu) [#&#8203;53517](https://github.com/nodejs/node/pull/53517)
    
  • [`87121a17c4`](https://github.com/nodejs/node/commit/87121a17c4)] - **src**: fix typo in node.h (Daeyeon Jeong) [#&#8203;53759](https://github.com/nodejs/node/pull/53759)
    
  • [`94c7054c8d`](https://github.com/nodejs/node/commit/94c7054c8d)] - **src**: document the Node.js context embedder data (Joyee Cheung) [#&#8203;53611](https://github.com/nodejs/node/pull/53611)
    
  • [`c181940e83`](https://github.com/nodejs/node/commit/c181940e83)] - **src**: zero-initialize data that are copied into the snapshot (Joyee Cheung) [#&#8203;53563](https://github.com/nodejs/node/pull/53563)
    
  • [`8cda2db64c`](https://github.com/nodejs/node/commit/8cda2db64c)] - ***Revert*** "**src**: make sure that memcpy-ed structs in snapshot have no padding" (Joyee Cheung) [#&#8203;53563](https://github.com/nodejs/node/pull/53563)
    
  • [`81767f6089`](https://github.com/nodejs/node/commit/81767f6089)] - **src**: fix Worker termination when '--inspect-brk' is passed (Daeyeon Jeong) [#&#8203;53724](https://github.com/nodejs/node/pull/53724)
    
  • [`a9db553935`](https://github.com/nodejs/node/commit/a9db553935)] - **src**: refactor embedded entrypoint loading (Joyee Cheung) [#&#8203;53573](https://github.com/nodejs/node/pull/53573)
    
  • [`3ab8aba478`](https://github.com/nodejs/node/commit/3ab8aba478)] - **src**: do not get string_view from temp string (Cheng) [#&#8203;53688](https://github.com/nodejs/node/pull/53688)
    
  • [`664bf6c28f`](https://github.com/nodejs/node/commit/664bf6c28f)] - **src**: replace `kPathSeparator` with std::filesystem (Yagiz Nizipli) [#&#8203;53063](https://github.com/nodejs/node/pull/53063)
    
  • [`cc1f49751a`](https://github.com/nodejs/node/commit/cc1f49751a)] - **src**: move `FromNamespacedPath` to path.cc (Yagiz Nizipli) [#&#8203;53540](https://github.com/nodejs/node/pull/53540)
    
  • [`e43a4e07ec`](https://github.com/nodejs/node/commit/e43a4e07ec)] - **src**: use `starts_with` in node_dotenv.cc (Yagiz Nizipli) [#&#8203;53539](https://github.com/nodejs/node/pull/53539)
    
  • [`19488fd4ce`](https://github.com/nodejs/node/commit/19488fd4ce)] - **src,test**: further cleanup references to osx (Daniel Bayley) [#&#8203;53820](https://github.com/nodejs/node/pull/53820)
    
  • [`4bf62f6cbd`](https://github.com/nodejs/node/commit/4bf62f6cbd)] - **stream**: improve inspector ergonomics (Benjamin Gruenbaum) [#&#8203;53800](https://github.com/nodejs/node/pull/53800)
    
  • [`82d88a83f8`](https://github.com/nodejs/node/commit/82d88a83f8)] - **(SEMVER-MINOR)** **stream**: pipeline wait for close before calling the callback (jakecastelli) [#&#8203;53462](https://github.com/nodejs/node/pull/53462)
    
  • [`53a7dd7790`](https://github.com/nodejs/node/commit/53a7dd7790)] - **test**: update wpt test (Mert Can Altin) [#&#8203;53814](https://github.com/nodejs/node/pull/53814)
    
  • [`bc480902ab`](https://github.com/nodejs/node/commit/bc480902ab)] - **test**: update WPT WebIDL interfaces (Filip Skokan) [#&#8203;53720](https://github.com/nodejs/node/pull/53720)
    
  • [`d13153d90f`](https://github.com/nodejs/node/commit/d13153d90f)] - **test**: un-set inspector-async-hook-setup-at-inspect-brk as flaky (Abdirahim Musse) [#&#8203;53692](https://github.com/nodejs/node/pull/53692)
    
  • [`ac9c2e6bf2`](https://github.com/nodejs/node/commit/ac9c2e6bf2)] - **test**: use python3 instead of python in pummel test (Mathis Wiehl) [#&#8203;53057](https://github.com/nodejs/node/pull/53057)
    
  • [`bac28678e6`](https://github.com/nodejs/node/commit/bac28678e6)] - **test**: do not assume cwd in snapshot tests (Antoine du Hamel) [#&#8203;53146](https://github.com/nodejs/node/pull/53146)
    
  • [`41e106c0c6`](https://github.com/nodejs/node/commit/41e106c0c6)] - **test**: use `Set.difference()` (Richard Lau) [#&#8203;53597](https://github.com/nodejs/node/pull/53597)
    
  • [`8aab680f66`](https://github.com/nodejs/node/commit/8aab680f66)] - **test**: fix OpenSSL version checks (Richard Lau) [#&#8203;53503](https://github.com/nodejs/node/pull/53503)
    
  • [`6aa4f0f266`](https://github.com/nodejs/node/commit/6aa4f0f266)] - **test**: refactor, add assertion to http-request-end (jakecastelli) [#&#8203;53411](https://github.com/nodejs/node/pull/53411)
    
  • [`fbc5cbb617`](https://github.com/nodejs/node/commit/fbc5cbb617)] - **test_runner**: remove plan option from run() (Colin Ihrig) [#&#8203;53834](https://github.com/nodejs/node/pull/53834)
    
  • [`c590828ad8`](https://github.com/nodejs/node/commit/c590828ad8)] - **test_runner**: fix escaping in snapshot tests (Julian Kniephoff) [#&#8203;53833](https://github.com/nodejs/node/pull/53833)
    
  • [`3a0fcbb17a`](https://github.com/nodejs/node/commit/3a0fcbb17a)] - **test_runner**: support glob matching coverage files (Aviv Keller) [#&#8203;53553](https://github.com/nodejs/node/pull/53553)
    
  • [`e6a1eeb73d`](https://github.com/nodejs/node/commit/e6a1eeb73d)] - **test_runner**: support module detection in module mocks (Geoffrey Booth) [#&#8203;53642](https://github.com/nodejs/node/pull/53642)
    
  • [`4d777de7d4`](https://github.com/nodejs/node/commit/4d777de7d4)] - **tls**: add setKeyCert() to tls.Socket (Brian White) [#&#8203;53636](https://github.com/nodejs/node/pull/53636)
    
  • [`ab9adfc42a`](https://github.com/nodejs/node/commit/ab9adfc42a)] - **tls**: remove prototype primordials (Antoine du Hamel) [#&#8203;53699](https://github.com/nodejs/node/pull/53699)
    
  • [`03d378ffb9`](https://github.com/nodejs/node/commit/03d378ffb9)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53840](https://github.com/nodejs/node/pull/53840)
    
  • [`06377b1b11`](https://github.com/nodejs/node/commit/06377b1b11)] - **tools**: update eslint to 9.7.0 (Node.js GitHub Bot) [#&#8203;53839](https://github.com/nodejs/node/pull/53839)
    
  • [`d6629a2d84`](https://github.com/nodejs/node/commit/d6629a2d84)] - **tools**: use v8\_features.json to populate config.gypi (Cheng) [#&#8203;53749](https://github.com/nodejs/node/pull/53749)
    
  • [`d3653fe8ac`](https://github.com/nodejs/node/commit/d3653fe8ac)] - **tools**: update eslint to 9.6.0 (Node.js GitHub Bot) [#&#8203;53645](https://github.com/nodejs/node/pull/53645)
    
  • [`1e930e93d4`](https://github.com/nodejs/node/commit/1e930e93d4)] - **tools**: update lint-md-dependencies to unified@11.0.5 (Node.js GitHub Bot) [#&#8203;53555](https://github.com/nodejs/node/pull/53555)
    
  • [`317a13b30f`](https://github.com/nodejs/node/commit/317a13b30f)] - **tools**: replace reference to NodeMainInstance with SnapshotBuilder (codediverdev) [#&#8203;53544](https://github.com/nodejs/node/pull/53544)
    
  • [`0e25faea0a`](https://github.com/nodejs/node/commit/0e25faea0a)] - **typings**: add `fs_dir` types (Yagiz Nizipli) [#&#8203;53631](https://github.com/nodejs/node/pull/53631)
    
  • [`7637f291be`](https://github.com/nodejs/node/commit/7637f291be)] - **url**: fix typo (KAYYY) [#&#8203;53827](https://github.com/nodejs/node/pull/53827)
    
  • [`2c6548afd1`](https://github.com/nodejs/node/commit/2c6548afd1)] - **url**: reduce unnecessary string copies (Yagiz Nizipli) [#&#8203;53628](https://github.com/nodejs/node/pull/53628)
    
  • [`0f2b57d1bc`](https://github.com/nodejs/node/commit/0f2b57d1bc)] - **url**: make URL.parse enumerable (Filip Skokan) [#&#8203;53720](https://github.com/nodejs/node/pull/53720)
    
  • [`1300169f80`](https://github.com/nodejs/node/commit/1300169f80)] - **url**: add missing documentation for `URL.parse()` (Yagiz Nizipli) [#&#8203;53733](https://github.com/nodejs/node/pull/53733)
    
  • [`c55e72ed8b`](https://github.com/nodejs/node/commit/c55e72ed8b)] - **util**: fix crashing when emitting new Buffer() deprecation warning [#&#8203;53075](https://github.com/nodejs/node/issues/53075) (Aras Abbasi) [#&#8203;53089](https://github.com/nodejs/node/pull/53089)
    
  • [`5aa216320e`](https://github.com/nodejs/node/commit/5aa216320e)] - **v8**: move `ToNamespacedPath` to c++ (Yagiz Nizipli) [#&#8203;53655](https://github.com/nodejs/node/pull/53655)
    
  • [`9fd976b09d`](https://github.com/nodejs/node/commit/9fd976b09d)] - **vm,src**: add property query interceptors (Chengzhong Wu) [#&#8203;53517](https://github.com/nodejs/node/pull/53517)
    
  • [`22ca334090`](https://github.com/nodejs/node/commit/22ca334090)] - **(SEMVER-MINOR)** **worker**: add postMessageToThread (Paolo Insogna) [#&#8203;53682](https://github.com/nodejs/node/pull/53682)
    
  • [`5aecbefbd5`](https://github.com/nodejs/node/commit/5aecbefbd5)] - **worker**: allow copied NODE_OPTIONS in the env setting (Joyee Cheung) [#&#8203;53596](https://github.com/nodejs/node/pull/53596)
    
    

v22.4.1: 2024-07-08, Version 22.4.1 (Current), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High)
  • CVE-2024-22020 - Bypass network import restriction via data URL (Medium)
  • CVE-2024-22018 - fs.lstat bypasses permission model (Low)
  • CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low)
  • CVE-2024-37372 - Permission model improperly processes UNC paths (Low)
Commits
  • [`110902ff5e`](https://github.com/nodejs/node/commit/110902ff5e)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522)
    
  • [`0a0de3d491`](https://github.com/nodejs/node/commit/0a0de3d491)] - **lib,permission**: support fs.lstat (RafaelGSS)
    
  • [`93574335ff`](https://github.com/nodejs/node/commit/93574335ff)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584)
    
  • [`09899e6302`](https://github.com/nodejs/node/commit/09899e6302)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596)
    
  • [`5d9c811634`](https://github.com/nodejs/node/commit/5d9c811634)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581)
    
    

v22.4.0: 2024-07-02, Version 22.4.0 (Current), @​targos

Compare Source

Notable Changes
Experimental Web Storage API
  • [`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#&#8203;52435](https://github.com/nodejs/node/pull/52435)
    
    
API stability updates
  • [`201266706b`](https://github.com/nodejs/node/commit/201266706b)] - **doc**: move `node --run` stability to rc (Yagiz Nizipli) [#&#8203;53433](https://github.com/nodejs/node/pull/53433)
    
  • [`16c0884d48`](https://github.com/nodejs/node/commit/16c0884d48)] - **doc**: mark WebSocket as stable (Matthew Aitken) [#&#8203;53352](https://github.com/nodejs/node/pull/53352)
    
  • [`cf375e73c1`](https://github.com/nodejs/node/commit/cf375e73c1)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343)
    
  • [`0160745057`](https://github.com/nodejs/node/commit/0160745057)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343)
    
    
Other Notable Changes
  • [`df4762722c`](https://github.com/nodejs/node/commit/df4762722c)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#&#8203;53329](https://github.com/nodejs/node/pull/53329)
    
  • [`ad5282e196`](https://github.com/nodejs/node/commit/ad5282e196)] - **inspector**: fix disable async hooks on `Debugger.setAsyncCallStackDepth` (Joyee Cheung) [#&#8203;53473](https://github.com/nodejs/node/pull/53473)
    
  • [`e95af740fc`](https://github.com/nodejs/node/commit/e95af740fc)] - **(SEMVER-MINOR)** **lib**: add diagnostics_channel events to module loading (RafaelGSS) [#&#8203;44340](https://github.com/nodejs/node/pull/44340)
    
  • [`50733a1abe`](https://github.com/nodejs/node/commit/50733a1abe)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107)
    
    
Commits
  • [`9f32002397`](https://github.com/nodejs/node/commit/9f32002397)] - **assert,util**: correct comparison when both contain same reference (Daniel Lemire) [#&#8203;53431](https://github.com/nodejs/node/pull/53431)
    
  • [`dfdc062111`](https://github.com/nodejs/node/commit/dfdc062111)] - **buffer**: make indexOf(byte) faster (Tobias Nießen) [#&#8203;53455](https://github.com/nodejs/node/pull/53455)
    
  • [`1de437527e`](https://github.com/nodejs/node/commit/1de437527e)] - **build**: configure with shared sqlite3 (Chengzhong Wu) [#&#8203;53519](https://github.com/nodejs/node/pull/53519)
    
  • [`c7d44ba1f3`](https://github.com/nodejs/node/commit/c7d44ba1f3)] - **build**: find version of Clang installed on Windows (Stefan Stojanovic) [#&#8203;53228](https://github.com/nodejs/node/pull/53228)
    
  • [`36aad8b204`](https://github.com/nodejs/node/commit/36aad8b204)] - **build**: fix spacing before NINJA_ARGS (jakecastelli) [#&#8203;53181](https://github.com/nodejs/node/pull/53181)
    
  • [`82092cdaa3`](https://github.com/nodejs/node/commit/82092cdaa3)] - **crypto**: improve GetECGroupBits signature (Tobias Nießen) [#&#8203;53364](https://github.com/nodejs/node/pull/53364)
    
  • [`073c231607`](https://github.com/nodejs/node/commit/073c231607)] - **deps**: update c-ares to v1.31.0 (Node.js GitHub Bot) [#&#8203;53554](https://github.com/nodejs/node/pull/53554)
    
  • [`977beab729`](https://github.com/nodejs/node/commit/977beab729)] - **(SEMVER-MINOR)** **deps**: sqlite: fix Windows compilation (Colin Ihrig) [#&#8203;52435](https://github.com/nodejs/node/pull/52435)
    
  • [`e69b8d202c`](https://github.com/nodejs/node/commit/e69b8d202c)] - **deps**: update undici to 6.19.2 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`c4a7e051c8`](https://github.com/nodejs/node/commit/c4a7e051c8)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`fa34f8fcf0`](https://github.com/nodejs/node/commit/fa34f8fcf0)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`0b40bfad43`](https://github.com/nodejs/node/commit/0b40bfad43)] - **deps**: update undici to 6.19.0 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`1877f22a79`](https://github.com/nodejs/node/commit/1877f22a79)] - **deps**: update simdjson to 3.9.4 (Node.js GitHub Bot) [#&#8203;53467](https://github.com/nodejs/node/pull/53467)
    
  • [`1b84964b8d`](https://github.com/nodejs/node/commit/1b84964b8d)] - **deps**: patch V8 to 12.4.254.21 (Node.js GitHub Bot) [#&#8203;53470](https://github.com/nodejs/node/pull/53470)
    
  • [`6acadeb59b`](https://github.com/nodejs/node/commit/6acadeb59b)] - **deps**: update acorn-walk to 8.3.3 (Node.js GitHub Bot) [#&#8203;53466](https://github.com/nodejs/node/pull/53466)
    
  • [`7a7f438841`](https://github.com/nodejs/node/commit/7a7f438841)] - **deps**: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) [#&#8203;53156](https://github.com/nodejs/node/pull/53156)
    
  • [`bf891bf64c`](https://github.com/nodejs/node/commit/bf891bf64c)] - **deps**: update c-ares to v1.30.0 (Node.js GitHub Bot) [#&#8203;53416](https://github.com/nodejs/node/pull/53416)
    
  • [`bd68888261`](https://github.com/nodejs/node/commit/bd68888261)] - **deps**: V8: cherry-pick [`a3cc852`](https://github.com/nodejs/node/commit/a3cc8522a4c8) (kxxt) [#&#8203;53412](https://github.com/nodejs/node/pull/53412)
    
  • [`2defaaf771`](https://github.com/nodejs/node/commit/2defaaf771)] - **deps**: V8: cherry-pick [`6ea594f`](https://github.com/nodejs/node/commit/6ea594ff7132) (kxxt) [#&#8203;53412](https://github.com/nodejs/node/pull/53412)
    
  • [`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#&#8203;52435](https://github.com/nodejs/node/pull/52435)
    
  • [`608cc05de1`](https://github.com/nodejs/node/commit/608cc05de1)] - **doc**: recommend not using libuv node-api function (Michael Dawson) [#&#8203;53521](https://github.com/nodejs/node/pull/53521)
    
  • [`30858eca59`](https://github.com/nodejs/node/commit/30858eca59)] - **doc**: add additional guidance for PRs to deps (Michael Dawson) [#&#8203;53499](https://github.com/nodejs/node/pull/53499)
    
  • [`a5852cc710`](https://github.com/nodejs/node/commit/a5852cc710)] - **doc**: only apply content-visibility on all.html (Filip Skokan) [#&#8203;53510](https://github.com/nodejs/node/pull/53510)
    
  • [`befabe5c58`](https://github.com/nodejs/node/commit/befabe5c58)] - **doc**: update the description of the return type for options.filter (Zhenwei Jin) [#&#8203;52742](https://github.com/nodejs/node/pull/52742)
    
  • [`5ed1a036ba`](https://github.com/nodejs/node/commit/5ed1a036ba)] - **doc**: remove first timer badge (Aviv Keller) [#&#8203;53338](https://github.com/nodejs/node/pull/53338)
    
  • [`201266706b`](https://github.com/nodejs/node/commit/201266706b)] - **doc**: move `node --run` stability to rc (Yagiz Nizipli) [#&#8203;53433](https://github.com/nodejs/node/pull/53433)
    
  • [`46a7681cc4`](https://github.com/nodejs/node/commit/46a7681cc4)] - **doc**: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) [#&#8203;52801](https://github.com/nodejs/node/pull/52801)
    
  • [`ec5364f6de`](https://github.com/nodejs/node/commit/ec5364f6de)] - **doc**: add initial text for ambassadors program (Michael Dawson) [#&#8203;52857](https://github.com/nodejs/node/pull/52857)
    
  • [`fa113b8fc7`](https://github.com/nodejs/node/commit/fa113b8fc7)] - **doc**: fix typo (EhsanKhaki) [#&#8203;53397](https://github.com/nodejs/node/pull/53397)
    
  • [`d9182d0086`](https://github.com/nodejs/node/commit/d9182d0086)] - **doc**: define more cases for stream event emissions (Aviv Keller) [#&#8203;53317](https://github.com/nodejs/node/pull/53317)
    
  • [`923d24b6f2`](https://github.com/nodejs/node/commit/923d24b6f2)] - **doc**: remove mentions of policy model from security info (Aviv Keller) [#&#8203;53249](https://github.com/nodejs/node/pull/53249)
    
  • [`48f78cd31b`](https://github.com/nodejs/node/commit/48f78cd31b)] - **doc**: fix mistakes in the module `load` hook api (István Donkó) [#&#8203;53349](https://github.com/nodejs/node/pull/53349)
    
  • [`16c0884d48`](https://github.com/nodejs/node/commit/16c0884d48)] - **doc**: mark WebSocket as stable (Matthew Aitken) [#&#8203;53352](https://github.com/nodejs/node/pull/53352)
    
  • [`df4762722c`](https://github.com/nodejs/node/commit/df4762722c)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#&#8203;53329](https://github.com/nodejs/node/pull/53329)
    
  • [`cf375e73c1`](https://github.com/nodejs/node/commit/cf375e73c1)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343)
    
  • [`0160745057`](https://github.com/nodejs/node/commit/0160745057)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343)
    
  • [`6e12d9f049`](https://github.com/nodejs/node/commit/6e12d9f049)] - **doc**: remove IRC from man page (Tobias Nießen) [#&#8203;53344](https://github.com/nodejs/node/pull/53344)
    
  • [`24c7a9415b`](https://github.com/nodejs/node/commit/24c7a9415b)] - **doc, http**: add `rejectNonStandardBodyWrites` option, clear its behaviour (jakecastelli) [#&#8203;53396](https://github.com/nodejs/node/pull/53396)
    
  • [`ec38f3dc6a`](https://github.com/nodejs/node/commit/ec38f3dc6a)] - **doc, meta**: organize contributing to Node-API guide (Aviv Keller) [#&#8203;53243](https://github.com/nodejs/node/pull/53243)
    
  • [`cf5a973c42`](https://github.com/nodejs/node/commit/cf5a973c42)] - **doc, meta**: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) [#&#8203;53235](https://github.com/nodejs/node/pull/53235)
    
  • [`105b006fd2`](https://github.com/nodejs/node/commit/105b006fd2)] - **fs**: move `ToNamespacedPath` to c++ (Yagiz Nizipli) [#&#8203;52135](https://github.com/nodejs/node/pull/52135)
    
  • [`568377f7f0`](https://github.com/nodejs/node/commit/568377f7f0)] - **fs**: do not crash if the watched file is removed while setting up watch (Matteo Collina) [#&#8203;53452](https://github.com/nodejs/node/pull/53452)
    
  • [`fad179307c`](https://github.com/nodejs/node/commit/fad179307c)] - **fs**: add fast api for `InternalModuleStat` (Yagiz Nizipli) [#&#8203;51344](https://github.com/nodejs/node/pull/51344)
    
  • [`41100b65f6`](https://github.com/nodejs/node/commit/41100b65f6)] - **http2**: reject failed http2.connect when used with promisify (ehsankhfr) [#&#8203;53475](https://github.com/nodejs/node/pull/53475)
    
  • [`ad5282e196`](https://github.com/nodejs/node/commit/ad5282e196)] - **inspector**: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) [#&#8203;53473](https://github.com/nodejs/node/pull/53473)
    
  • [`b5fc227344`](https://github.com/nodejs/node/commit/b5fc227344)] - **lib**: fix typo in comment (codediverdev) [#&#8203;53543](https://github.com/nodejs/node/pull/53543)
    
  • [`e95af740fc`](https://github.com/nodejs/node/commit/e95af740fc)] - **(SEMVER-MINOR)** **lib**: add diagnostics_channel events to module loading (RafaelGSS) [#&#8203;44340](https://github.com/nodejs/node/pull/44340)
    
  • [`123910f1de`](https://github.com/nodejs/node/commit/123910f1de)] - **lib**: remove the unused code (theanarkh) [#&#8203;53463](https://github.com/nodejs/node/pull/53463)
    
  • [`452011b719`](https://github.com/nodejs/node/commit/452011b719)] - **lib**: speed up MessageEvent creation internally (Matthew Aitken) [#&#8203;52951](https://github.com/nodejs/node/pull/52951)
    
  • [`710cf7758c`](https://github.com/nodejs/node/commit/710cf7758c)] - **lib**: reduce amount of caught URL errors (Yagiz Nizipli) [#&#8203;52658](https://github.com/nodejs/node/pull/52658)
    
  • [`45b59e58d1`](https://github.com/nodejs/node/commit/45b59e58d1)] - **lib**: fix naming convention of `Symbol` (Deokjin Kim) [#&#8203;53387](https://github.com/nodejs/node/pull/53387)
    
  • [`515dd24ee7`](https://github.com/nodejs/node/commit/515dd24ee7)] - **lib**: fix timer leak (theanarkh) [#&#8203;53337](https://github.com/nodejs/node/pull/53337)
    
  • [`77166137be`](https://github.com/nodejs/node/commit/77166137be)] - **meta**: use correct source for workflow in PR (Aviv Keller) [#&#8203;53490](https://github.com/nodejs/node/pull/53490)
    
  • [`d1c10fee53`](https://github.com/nodejs/node/commit/d1c10fee53)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53480](https://github.com/nodejs/node/pull/53480)
    
  • [`a5026386bf`](https://github.com/nodejs/node/commit/a5026386bf)] - **meta**: fix typo in dependency updates (Aviv Keller) [#&#8203;53471](https://github.com/nodejs/node/pull/53471)
    
  • [`0b9191da99`](https://github.com/nodejs/node/commit/0b9191da99)] - **meta**: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot\[bot]) [#&#8203;53245](https://github.com/nodejs/node/pull/53245)
    
  • [`49cfb9d001`](https://github.com/nodejs/node/commit/49cfb9d001)] - **src**: reset `process.versions` during pre-execution (Richard Lau) [#&#8203;53444](https://github.com/nodejs/node/pull/53444)
    
  • [`15df4edd22`](https://github.com/nodejs/node/commit/15df4edd22)] - **src**: use `args.This()` instead of `Holder` (Michaël Zasso) [#&#8203;53474](https://github.com/nodejs/node/pull/53474)
    
  • [`e16a04e852`](https://github.com/nodejs/node/commit/e16a04e852)] - **src**: fix dynamically linked OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456)
    
  • [`5961253824`](https://github.com/nodejs/node/commit/5961253824)] - **src**: remove `base64` from `process.versions` (Richard Lau) [#&#8203;53442](https://github.com/nodejs/node/pull/53442)
    
  • [`11dd15c0b5`](https://github.com/nodejs/node/commit/11dd15c0b5)] - **src**: remove `SetEncoding` from StringEncoder (Yagiz Nizipli) [#&#8203;53441](https://github.com/nodejs/node/pull/53441)
    
  • [`0c7e69acd2`](https://github.com/nodejs/node/commit/0c7e69acd2)] - **src**: simplify `size() == 0` checks (Yagiz Nizipli) [#&#8203;53440](https://github.com/nodejs/node/pull/53440)
    
  • [`f077afafda`](https://github.com/nodejs/node/commit/f077afafda)] - **src**: add utilities to help debugging reproducibility of snapshots (Joyee Cheung) [#&#8203;50983](https://github.com/nodejs/node/pull/50983)
    
  • [`004b9ea4c4`](https://github.com/nodejs/node/commit/004b9ea4c4)] - **src**: make sure that memcpy-ed structs in snapshot have no padding (Joyee Cheung) [#&#8203;50983](https://github.com/nodejs/node/pull/50983)
    
  • [`bfc5236423`](https://github.com/nodejs/node/commit/bfc5236423)] - **src**: return non-empty data in context data serializer (Joyee Cheung) [#&#8203;50983](https://github.com/nodejs/node/pull/50983)
    
  • [`955454ba4d`](https://github.com/nodejs/node/commit/955454ba4d)] - **src**: fix typo in env.cc (EhsanKhaki) [#&#8203;53418](https://github.com/nodejs/node/pull/53418)
    
  • [`7d8787768c`](https://github.com/nodejs/node/commit/7d8787768c)] - **src**: avoid strcmp in favor of operator== (Tobias Nießen) [#&#8203;53439](https://github.com/nodejs/node/pull/53439)
    
  • [`599e7c3d8e`](https://github.com/nodejs/node/commit/599e7c3d8e)] - **src**: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) [#&#8203;52910](https://github.com/nodejs/node/pull/52910)
    
  • [`f9075ff38e`](https://github.com/nodejs/node/commit/f9075ff38e)] - **src**: print v8::OOMDetails::detail when it's available (Joyee Cheung) [#&#8203;53360](https://github.com/nodejs/node/pull/53360)
    
  • [`4704270443`](https://github.com/nodejs/node/commit/4704270443)] - **src**: fix IsIPAddress for IPv6 (Hüseyin Açacak) [#&#8203;53400](https://github.com/nodejs/node/pull/53400)
    
  • [`63f62d76de`](https://github.com/nodejs/node/commit/63f62d76de)] - **src**: fix permission inspector crash (theanarkh) [#&#8203;53389](https://github.com/nodejs/node/pull/53389)
    
  • [`70bbc02dac`](https://github.com/nodejs/node/commit/70bbc02dac)] - **src, deps**: add nbytes library (James M Snell) [#&#8203;53507](https://github.com/nodejs/node/pull/53507)
    
  • [`8b877099d0`](https://github.com/nodejs/node/commit/8b877099d0)] - **stream**: update outdated highwatermark doc (Jay Kim) [#&#8203;53494](https://github.com/nodejs/node/pull/53494)
    
  • [`eded1e9768`](https://github.com/nodejs/node/commit/eded1e9768)] - **stream**: support dispose in writable (Benjamin Gruenbaum) [#&#8203;48547](https://github.com/nodejs/node/pull/48547)
    
  • [`b3372a8b0e`](https://github.com/nodejs/node/commit/b3372a8b0e)] - **stream**: callback should be called when pendingcb is 0 (jakecastelli) [#&#8203;53438](https://github.com/nodejs/node/pull/53438)
    
  • [`f4efb7f625`](https://github.com/nodejs/node/commit/f4efb7f625)] - **stream**: make sure \_destroy is called (jakecastelli) [#&#8203;53213](https://github.com/nodejs/node/pull/53213)
    
  • [`7dde37591c`](https://github.com/nodejs/node/commit/7dde37591c)] - **stream**: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) [#&#8203;53261](https://github.com/nodejs/node/pull/53261)
    
  • [`6e66d9763f`](https://github.com/nodejs/node/commit/6e66d9763f)] - **test**: mark `test-benchmark-crypto` as flaky (Antoine du Hamel) [#&#8203;52955](https://github.com/nodejs/node/pull/52955)
    
  • [`1eebcbf9bf`](https://github.com/nodejs/node/commit/1eebcbf9bf)] - **test**: skip reproducible snapshot test on 32-bit (Michaël Zasso) [#&#8203;53592](https://github.com/nodejs/node/pull/53592)
    
  • [`91b2850303`](https://github.com/nodejs/node/commit/91b2850303)] - **test**: extend env for `test-node-output-errors` (Richard Lau) [#&#8203;53535](https://github.com/nodejs/node/pull/53535)
    
  • [`bcad560726`](https://github.com/nodejs/node/commit/bcad560726)] - **test**: update `compression` web-platform tests (Yagiz Nizipli) [#&#8203;53478](https://github.com/nodejs/node/pull/53478)
    
  • [`b8f436c755`](https://github.com/nodejs/node/commit/b8f436c755)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;53477](https://github.com/nodejs/node/pull/53477)
    
  • [`d2c169a4f6`](https://github.com/nodejs/node/commit/d2c169a4f6)] - **test**: update `url` web-platform tests (Yagiz Nizipli) [#&#8203;53472](https://github.com/nodejs/node/pull/53472)
    
  • [`513e6aa4c7`](https://github.com/nodejs/node/commit/513e6aa4c7)] - **test**: check against run-time OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456)
    
  • [`602b9d63c4`](https://github.com/nodejs/node/commit/602b9d63c4)] - **test**: update tests for OpenSSL 3.0.14 (Richard Lau) [#&#8203;53373](https://github.com/nodejs/node/pull/53373)
    
  • [`4a3525bb08`](https://github.com/nodejs/node/commit/4a3525bb08)] - **test**: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) [#&#8203;53292](https://github.com/nodejs/node/pull/53292)
    
  • [`7349edb28b`](https://github.com/nodejs/node/commit/7349edb28b)] - **test**: update TLS tests for OpenSSL 3.2 (Richard Lau) [#&#8203;53384](https://github.com/nodejs/node/pull/53384)
    
  • [`a11a05763d`](https://github.com/nodejs/node/commit/a11a05763d)] - **tls**: check result of SSL_CTX_set_\*\_proto_version (Tobias Nießen) [#&#8203;53459](https://github.com/nodejs/node/pull/53459)
    
  • [`4b47f89eb2`](https://github.com/nodejs/node/commit/4b47f89eb2)] - **tls**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53436](https://github.com/nodejs/node/pull/53436)
    
  • [`ac8adeb99f`](https://github.com/nodejs/node/commit/ac8adeb99f)] - **tls**: use SSL_get_peer_tmp_key (Tobias Nießen) [#&#8203;53366](https://github.com/nodejs/node/pull/53366)
    
  • [`d5c380bb09`](https://github.com/nodejs/node/commit/d5c380bb09)] - **tools**: lock versions of irrelevant DB deps (Michaël Zasso) [#&#8203;53546](https://github.com/nodejs/node/pull/53546)
    
  • [`71321bb249`](https://github.com/nodejs/node/commit/71321bb249)] - **tools**: fix skip detection of test runner output (Richard Lau) [#&#8203;53545](https://github.com/nodejs/node/pull/53545)
    
  • [`ca198f4125`](https://github.com/nodejs/node/commit/ca198f4125)] - **tools**: update eslint to 9.5.0 (Node.js GitHub Bot) [#&#8203;53515](https://github.com/nodejs/node/pull/53515)
    
  • [`30fdd482a1`](https://github.com/nodejs/node/commit/30fdd482a1)] - **tools**: move ESLint to tools/eslint (Michaël Zasso) [#&#8203;53413](https://github.com/nodejs/node/pull/53413)
    
  • [`fe85e05ba9`](https://github.com/nodejs/node/commit/fe85e05ba9)] - **tools**: fix c-ares update script (Marco Ippolito) [#&#8203;53414](https://github.com/nodejs/node/pull/53414)
    
  • [`8eb7bdf81b`](https://github.com/nodejs/node/commit/8eb7bdf81b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53158](https://github.com/nodejs/node/pull/53158)
    
  • [`9ece63d415`](https://github.com/nodejs/node/commit/9ece63d415)] - **tools**: do not run Corepack code before it's reviewed (Antoine du Hamel) [#&#8203;53405](https://github.com/nodejs/node/pull/53405)
    
  • [`ab2021492b`](https://github.com/nodejs/node/commit/ab2021492b)] - **tools**: move ESLint tools to tools/eslint (Michaël Zasso) [#&#8203;53393](https://github.com/nodejs/node/pull/53393)
    
  • [`78a9037a6d`](https://github.com/nodejs/node/commit/78a9037a6d)] - **tools**: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) [#&#8203;53212](https://github.com/nodejs/node/pull/53212)
    
  • [`855eb25dad`](https://github.com/nodejs/node/commit/855eb25dad)] - **tools**: add stream label on PR when related files being changed in lib (jakecastelli) [#&#8203;53269](https://github.com/nodejs/node/pull/53269)
    
  • [`50733a1abe`](https://github.com/nodejs/node/commit/50733a1abe)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107)
    
    

v22.3.0: 2024-06-11, Version 22.3.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
  • [`5a41bcf9ca`](https://github.com/nodejs/node/commit/5a41bcf9ca)] - **(SEMVER-MINOR)** **src**: traverse parent folders while running `--run` (Yagiz Nizipli) [#&#8203;53154](https://github.com/nodejs/node/pull/53154)
    
  • [`1d5934524b`](https://github.com/nodejs/node/commit/1d5934524b)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221)
    
  • [`75e5612fae`](https://github.com/nodejs/node/commit/75e5612fae)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124)
    
  • [`b5c30e2f5e`](https://github.com/nodejs/node/commit/b5c30e2f5e)] - **(SEMVER-MINOR)** **module**: print amount of load time of a cjs module (Vinicius Lourenço) [#&#8203;52213](https://github.com/nodejs/node/pull/52213)
    
  • [`8c6dffc269`](https://github.com/nodejs/node/commit/8c6dffc269)] - **(SEMVER-MINOR)** **test_runner**: add snapshot testing (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`048478d351`](https://github.com/nodejs/node/commit/048478d351)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`f6d2af8ee7`](https://github.com/nodejs/node/commit/f6d2af8ee7)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`a0766bdf0e`](https://github.com/nodejs/node/commit/a0766bdf0e)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136)
    
  • [`374743cd4e`](https://github.com/nodejs/node/commit/374743cd4e)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`1eb55f3550`](https://github.com/nodejs/node/commit/1eb55f3550)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`6165894774`](https://github.com/nodejs/node/commit/6165894774)] - **fs**: mark recursive cp methods as stable (Théo LUDWIG) [#&#8203;53127](https://github.com/nodejs/node/pull/53127)
    
  • [`db5dd0c6df`](https://github.com/nodejs/node/commit/db5dd0c6df)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118)
    
  • [`cfcde78513`](https://github.com/nodejs/node/commit/cfcde78513)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_PACKAGE_JSON_PATH` env (Yagiz Nizipli) [#&#8203;53058](https://github.com/nodejs/node/pull/53058)
    
  • [`7a67ecf161`](https://github.com/nodejs/node/commit/7a67ecf161)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848)
    
  • [`ee56aecced`](https://github.com/nodejs/node/commit/ee56aecced)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575)
    
  • [`6413769bc7`](https://github.com/nodejs/node/commit/6413769bc7)] - **(SEMVER-MINOR)** **lib**: replace MessageEvent with undici's (Matthew Aitken) [#&#8203;52370](https://github.com/nodejs/node/pull/52370)
    
  • [`c70b2f7a76`](https://github.com/nodejs/node/commit/c70b2f7a76)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_SCRIPT_NAME` env to `node --run` (Yagiz Nizipli) [#&#8203;53032](https://github.com/nodejs/node/pull/53032)
    
  • [`badec0c38b`](https://github.com/nodejs/node/commit/badec0c38b)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#&#8203;53008](https://github.com/nodejs/node/pull/53008)
    
    
Commits
  • [`feb0ba2860`](https://github.com/nodejs/node/commit/feb0ba2860)] - **benchmark**: fix napi/ref addon (Michaël Zasso) [#&#8203;53233](https://github.com/nodejs/node/pull/53233)
    
  • [`bb844de4e1`](https://github.com/nodejs/node/commit/bb844de4e1)] - **benchmark**: fix api restriction for the permission category (Ryan Tsien) [#&#8203;51528](https://github.com/nodejs/node/pull/51528)
    
  • [`1d5934524b`](https://github.com/nodejs/node/commit/1d5934524b)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221)
    
  • [`d87f9af5aa`](https://github.com/nodejs/node/commit/d87f9af5aa)] - **buffer**: make compare/equals faster (Tobias Nießen) [#&#8203;52993](https://github.com/nodejs/node/pull/52993)
    
  • [`ec83431d71`](https://github.com/nodejs/node/commit/ec83431d71)] - **build**: generate binlog in out directories (Chengzhong Wu) [#&#8203;53325](https://github.com/nodejs/node/pull/53325)
    
  • [`0976439417`](https://github.com/nodejs/node/commit/0976439417)] - **build**: fix --v8-lite-mode build (Daeyeon Jeong) [#&#8203;52725](https://github.com/nodejs/node/pull/52725)
    
  • [`350c733ae6`](https://github.com/nodejs/node/commit/350c733ae6)] - **build**: support python 3.13 (Chengzhong Wu) [#&#8203;53190](https://github.com/nodejs/node/pull/53190)
    
  • [`74cefa55a2`](https://github.com/nodejs/node/commit/74cefa55a2)] - **build**: update ruff to v0.4.5 (Yagiz Nizipli) [#&#8203;53180](https://github.com/nodejs/node/pull/53180)
    
  • [`33242ff042`](https://github.com/nodejs/node/commit/33242ff042)] - **build**: add `--skip-tests` to `test-ci-js` target (Antoine du Hamel) [#&#8203;53105](https://github.com/nodejs/node/pull/53105)
    
  • [`edcadf7f8a`](https://github.com/nodejs/node/commit/edcadf7f8a)] - **build**: fix building embedtest in GN build (Cheng) [#&#8203;53145](https://github.com/nodejs/node/pull/53145)
    
  • [`d711942fce`](https://github.com/nodejs/node/commit/d711942fce)] - **build**: use broader detection for 'help' (Aviv Keller) [#&#8203;53045](https://github.com/nodejs/node/pull/53045)
    
  • [`ca655b61a7`](https://github.com/nodejs/node/commit/ca655b61a7)] - **build**: fix -j propagation to ninja (Tobias Nießen) [#&#8203;53088](https://github.com/nodejs/node/pull/53088)
    
  • [`5fba67ff9f`](https://github.com/nodejs/node/commit/5fba67ff9f)] - **build**: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) [#&#8203;52882](https://github.com/nodejs/node/pull/52882)
    
  • [`b7d7e9a084`](https://github.com/nodejs/node/commit/b7d7e9a084)] - **build**: fix `--enable-d8` builds (Richard Lau) [#&#8203;53106](https://github.com/nodejs/node/pull/53106)
    
  • [`14547c5d32`](https://github.com/nodejs/node/commit/14547c5d32)] - **build**: fix ./configure --help format error (Zhenwei Jin) [#&#8203;53066](https://github.com/nodejs/node/pull/53066)
    
  • [`f9490806d3`](https://github.com/nodejs/node/commit/f9490806d3)] - **build**: set "clang" in config.gypi in GN build (Cheng) [#&#8203;53004](https://github.com/nodejs/node/pull/53004)
    
  • [`638b510ce7`](https://github.com/nodejs/node/commit/638b510ce7)] - **cli**: add `--expose-gc` flag available to `NODE_OPTIONS` (Juan José) [#&#8203;53078](https://github.com/nodejs/node/pull/53078)
    
  • [`cfcde78513`](https://github.com/nodejs/node/commit/cfcde78513)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_PACKAGE_JSON_PATH` env (Yagiz Nizipli) [#&#8203;53058](https://github.com/nodejs/node/pull/53058)
    
  • [`c70b2f7a76`](https://github.com/nodejs/node/commit/c70b2f7a76)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_SCRIPT_NAME` env to `node --run` (Yagiz Nizipli) [#&#8203;53032](https://github.com/nodejs/node/pull/53032)
    
  • [`34f20983fd`](https://github.com/nodejs/node/commit/34f20983fd)] - **crypto**: fix propagation of "memory limit exceeded" (Tobias Nießen) [#&#8203;53300](https://github.com/nodejs/node/pull/53300)
    
  • [`fef067f4f4`](https://github.com/nodejs/node/commit/fef067f4f4)] - **deps**: update nghttp2 to 1.62.1 (Node.js GitHub Bot) [#&#8203;52966](https://github.com/nodejs/node/pull/52966)
    
  • [`fc949928ac`](https://github.com/nodejs/node/commit/fc949928ac)] - **deps**: update nghttp2 to 1.62.0 (Node.js GitHub Bot) [#&#8203;52966](https://github.com/nodejs/node/pull/52966)
    
  • [`4a17dda8dc`](https://github.com/nodejs/node/commit/4a17dda8dc)] - **deps**: update undici to 6.18.2 (Node.js GitHub Bot) [#&#8203;53255](https://github.com/nodejs/node/pull/53255)
    
  • [`e45cc2a551`](https://github.com/nodejs/node/commit/e45cc2a551)] - **deps**: update ada to 2.8.0 (Node.js GitHub Bot) [#&#8203;53254](https://github.com/nodejs/node/pull/53254)
    
  • [`77907a2619`](https://github.com/nodejs/node/commit/77907a2619)] - **deps**: update corepack to 0.28.2 (Node.js GitHub Bot) [#&#8203;53253](https://github.com/nodejs/node/pull/53253)
    
  • [`b688050778`](https://github.com/nodejs/node/commit/b688050778)] - **deps**: update simdjson to 3.9.3 (Node.js GitHub Bot) [#&#8203;53252](https://github.com/nodejs/node/pull/53252)
    
  • [`6303f19cbe`](https://github.com/nodejs/node/commit/6303f19cbe)] - **deps**: patch V8 to 12.4.254.20 (Node.js GitHub Bot) [#&#8203;53159](https://github.com/nodejs/node/pull/53159)
    
  • [`257004c68f`](https://github.com/nodejs/node/commit/257004c68f)] - **deps**: update c-ares to 1.29.0 (Node.js GitHub Bot) [#&#8203;53155](https://github.com/nodejs/node/pull/53155)
    
  • [`0b375a3e36`](https://github.com/nodejs/node/commit/0b375a3e36)] - **deps**: upgrade npm to 10.8.1 (npm team) [#&#8203;53207](https://github.com/nodejs/node/pull/53207)
    
  • [`728c861b1c`](https://github.com/nodejs/node/commit/728c861b1c)] - **deps**: fix FP16 bitcasts.h (Stefan Stojanovic) [#&#8203;53134](https://github.com/nodejs/node/pull/53134)
    
  • [`52a78737b1`](https://github.com/nodejs/node/commit/52a78737b1)] - **deps**: patch V8 to 12.4.254.19 (Node.js GitHub Bot) [#&#8203;53094](https://github.com/nodejs/node/pull/53094)
    
  • [`4d27b32e58`](https://github.com/nodejs/node/commit/4d27b32e58)] - **deps**: update undici to 6.18.1 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073)
    
  • [`b94199240b`](https://github.com/nodejs/node/commit/b94199240b)] - **deps**: update undici to 6.18.0 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073)
    
  • [`793af1b3e7`](https://github.com/nodejs/node/commit/793af1b3e7)] - **deps**: update undici to 6.17.0 (Node.js GitHub Bot) [#&#8203;53034](https://github.com/nodejs/node/pull/53034)
    
  • [`fe00becc03`](https://github.com/nodejs/node/commit/fe00becc03)] - **deps**: update undici to 6.16.1 (Node.js GitHub Bot) [#&#8203;52948](https://github.com/nodejs/node/pull/52948)
    
  • [`96f72ae54f`](https://github.com/nodejs/node/commit/96f72ae54f)] - **deps**: update undici to 6.15.0 (Matthew Aitken) [#&#8203;52763](https://github.com/nodejs/node/pull/52763)
    
  • [`af60fbb12b`](https://github.com/nodejs/node/commit/af60fbb12b)] - **deps**: update googletest to [`33af80a`](https://github.com/nodejs/node/commit/33af80a) (Node.js GitHub Bot) [#&#8203;53053](https://github.com/nodejs/node/pull/53053)
    
  • [`7b929df489`](https://github.com/nodejs/node/commit/7b929df489)] - **deps**: patch V8 to 12.4.254.18 (Node.js GitHub Bot) [#&#8203;53054](https://github.com/nodejs/node/pull/53054)
    
  • [`626037c0fc`](https://github.com/nodejs/node/commit/626037c0fc)] - **deps**: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) [#&#8203;53052](https://github.com/nodejs/node/pull/53052)
    
  • [`6d8589e558`](https://github.com/nodejs/node/commit/6d8589e558)] - **deps**: patch V8 to 12.4.254.17 (Node.js GitHub Bot) [#&#8203;52980](https://github.com/nodejs/node/pull/52980)
    
  • [`fd91eaab34`](https://github.com/nodejs/node/commit/fd91eaab34)] - **deps**: upgrade npm to 10.8.0 (npm team) [#&#8203;53014](https://github.com/nodejs/node/pull/53014)
    
  • [`133cae0732`](https://github.com/nodejs/node/commit/133cae0732)] - **doc**: fix broken link in `static-analysis.md` (Richard Lau) [#&#8203;53345](https://github.com/nodejs/node/pull/53345)
    
  • [`7bc5f964fd`](https://github.com/nodejs/node/commit/7bc5f964fd)] - **doc**: indicate requirement on VS 17.6 or newer (Chengzhong Wu) [#&#8203;53301](https://github.com/nodejs/node/pull/53301)
    
  • [`8c71522ced`](https://github.com/nodejs/node/commit/8c71522ced)] - **doc**: remove cases for keys not containing "\*" in PATTERN_KEY_COMPARE (Maarten Zuidhoorn) [#&#8203;53215](https://github.com/nodejs/node/pull/53215)
    
  • [`718a3ab1ab`](https://github.com/nodejs/node/commit/718a3ab1ab)] - **doc**: add err param to fs.cp callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234)
    
  • [`d89bde26ff`](https://github.com/nodejs/node/commit/d89bde26ff)] - **doc**: add `err` param to fs.copyFile callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234)
    
  • [`91971ee344`](https://github.com/nodejs/node/commit/91971ee344)] - **doc**: reserve 128 for Electron 32 (Keeley Hammond) [#&#8203;53203](https://github.com/nodejs/node/pull/53203)
    
  • [`812f0e9e14`](https://github.com/nodejs/node/commit/812f0e9e14)] - **doc**: add note to ninjia build for macOS using -jn flag (jakecastelli) [#&#8203;53187](https://github.com/nodejs/node/pull/53187)
    
  • [`048478d351`](https://github.com/nodejs/node/commit/048478d351)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`c391923445`](https://github.com/nodejs/node/commit/c391923445)] - **doc**: include ESM import for HTTP (Aviv Keller) [#&#8203;53165](https://github.com/nodejs/node/pull/53165)
    
  • [`1eb55f3550`](https://github.com/nodejs/node/commit/1eb55f3550)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`67a766f7d4`](https://github.com/nodejs/node/commit/67a766f7d4)] - **doc**: fix minor grammar and style issues in SECURITY.md (Rich Trott) [#&#8203;53168](https://github.com/nodejs/node/pull/53168)
    
  • [`afbfe8922a`](https://github.com/nodejs/node/commit/afbfe8922a)] - **doc**: mention pm is not enforced when using fd (Rafael Gonzaga) [#&#8203;53125](https://github.com/nodejs/node/pull/53125)
    
  • [`1702d2632e`](https://github.com/nodejs/node/commit/1702d2632e)] - **doc**: fix format in `esm.md` (Pop Moore) [#&#8203;53170](https://github.com/nodejs/node/pull/53170)
    
  • [`070577e7d7`](https://github.com/nodejs/node/commit/070577e7d7)] - **doc**: fix wrong variable name in example of `timers.tick()` (Deokjin Kim) [#&#8203;53147](https://github.com/nodejs/node/pull/53147)
    
  • [`7147c1df1f`](https://github.com/nodejs/node/commit/7147c1df1f)] - **doc**: fix wrong function name in example of `context.plan()` (Deokjin Kim) [#&#8203;53140](https://github.com/nodejs/node/pull/53140)
    
  • [`cf47384148`](https://github.com/nodejs/node/commit/cf47384148)] - **doc**: add note for windows users and symlinks (Aviv Keller) [#&#8203;53117](https://github.com/nodejs/node/pull/53117)
    
  • [`088dff1074`](https://github.com/nodejs/node/commit/088dff1074)] - **doc**: move all TLS-PSK documentation to its section (Alba Mendez) [#&#8203;35717](https://github.com/nodejs/node/pull/35717)
    
  • [`db5dd0c6df`](https://github.com/nodejs/node/commit/db5dd0c6df)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118)
    
  • [`0f0bc98ad7`](https://github.com/nodejs/node/commit/0f0bc98ad7)] - **doc**: improve ninja build for --built-in-modules-path (jakecastelli) [#&#8203;53007](https://github.com/nodejs/node/pull/53007)
    
  • [`4c65c52d30`](https://github.com/nodejs/node/commit/4c65c52d30)] - **doc**: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) [#&#8203;45131](https://github.com/nodejs/node/pull/45131)
    
  • [`63fcbcfd62`](https://github.com/nodejs/node/commit/63fcbcfd62)] - **doc**: remove unavailable youtube link in pull requests (Deokjin Kim) [#&#8203;52982](https://github.com/nodejs/node/pull/52982)
    
  • [`77fd504636`](https://github.com/nodejs/node/commit/77fd504636)] - **doc**: add missing supported timer values in `timers.enable()` (Deokjin Kim) [#&#8203;52969](https://github.com/nodejs/node/pull/52969)
    
  • [`6708536b03`](https://github.com/nodejs/node/commit/6708536b03)] - **fs**: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) [#&#8203;53150](https://github.com/nodejs/node/pull/53150)
    
  • [`6165894774`](https://github.com/nodejs/node/commit/6165894774)] - **fs**: mark recursive cp methods as stable (Théo LUDWIG) [#&#8203;53127](https://github.com/nodejs/node/pull/53127)
    
  • [`7940db7be1`](https://github.com/nodejs/node/commit/7940db7be1)] - **fs**: remove basename in favor of std::filesystem (Yagiz Nizipli) [#&#8203;53062](https://github.com/nodejs/node/pull/53062)
    
  • [`505e9a425b`](https://github.com/nodejs/node/commit/505e9a425b)] - **lib**: fix misleading argument of validateUint32 (Tobias Nießen) [#&#8203;53307](https://github.com/nodejs/node/pull/53307)
    
  • [`98ae1ebdd6`](https://github.com/nodejs/node/commit/98ae1ebdd6)] - **lib**: fix the name of the fetch global function (Gabriel Bota) [#&#8203;53227](https://github.com/nodejs/node/pull/53227)
    
  • [`fe007cd1b4`](https://github.com/nodejs/node/commit/fe007cd1b4)] - **lib**: allow CJS source map cache to be reclaimed (Chengzhong Wu) [#&#8203;51711](https://github.com/nodejs/node/pull/51711)
    
  • [`040be4a7b4`](https://github.com/nodejs/node/commit/040be4a7b4)] - **lib**: do not call callback if socket is closed (theanarkh) [#&#8203;52829](https://github.com/nodejs/node/pull/52829)
    
  • [`ee56aecced`](https://github.com/nodejs/node/commit/ee56aecced)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575)
    
  • [`6413769bc7`](https://github.com/nodejs/node/commit/6413769bc7)] - **(SEMVER-MINOR)** **lib**: replace MessageEvent with undici's (Matthew Aitken) [#&#8203;52370](https://github.com/nodejs/node/pull/52370)
    
  • [`879679e5a3`](https://github.com/nodejs/node/commit/879679e5a3)] - **lib,doc**: replace references to import assertions (Michaël Zasso) [#&#8203;52998](https://github.com/nodejs/node/pull/52998)
    
  • [`062a0c6f67`](https://github.com/nodejs/node/commit/062a0c6f67)] - **meta**: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot\[bot]) [#&#8203;53248](https://github.com/nodejs/node/pull/53248)
    
  • [`e59b744b30`](https://github.com/nodejs/node/commit/e59b744b30)] - **meta**: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot\[bot]) [#&#8203;53247](https://github.com/nodejs/node/pull/53247)
    
  • [`96924f48a0`](https://github.com/nodejs/node/commit/96924f48a0)] - **meta**: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot\[bot]) [#&#8203;53246](https://github.com/nodejs/node/pull/53246)
    
  • [`b7f5662dee`](https://github.com/nodejs/node/commit/b7f5662dee)] - **meta**: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot\[bot]) [#&#8203;53244](https://github.com/nodejs/node/pull/53244)
    
  • [`e079967eb4`](https://github.com/nodejs/node/commit/e079967eb4)] - **meta**: remove `initializeCommand` from devcontainer (Aviv Keller) [#&#8203;53137](https://github.com/nodejs/node/pull/53137)
    
  • [`3afeced572`](https://github.com/nodejs/node/commit/3afeced572)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53065](https://github.com/nodejs/node/pull/53065)
    
  • [`4b9cdea8a6`](https://github.com/nodejs/node/commit/4b9cdea8a6)] - ***Revert*** "**module**: have a single hooks thread for all workers" (Matteo Collina) [#&#8203;53183](https://github.com/nodejs/node/pull/53183)
    
  • [`b5c30e2f5e`](https://github.com/nodejs/node/commit/b5c30e2f5e)] - **(SEMVER-MINOR)** **module**: print amount of load time of a cjs module (Vinicius Lourenço) [#&#8203;52213](https://github.com/nodejs/node/pull/52213)
    
  • [`4cdb05a7a2`](https://github.com/nodejs/node/commit/4cdb05a7a2)] - **module**: do not set CJS variables for Worker eval (Antoine du Hamel) [#&#8203;53050](https://github.com/nodejs/node/pull/53050)
    
  • [`a0766bdf0e`](https://github.com/nodejs/node/commit/a0766bdf0e)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136)
    
  • [`374743cd4e`](https://github.com/nodejs/node/commit/374743cd4e)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`e66eb376a0`](https://github.com/nodejs/node/commit/e66eb376a0)] - **repl**: fix await object patterns without values (Luke Haas) [#&#8203;53331](https://github.com/nodejs/node/pull/53331)
    
  • [`cb1329a8cf`](https://github.com/nodejs/node/commit/cb1329a8cf)] - **src**: use v8::(Des|S)erializeInternalFieldsCallback (Joyee Cheung) [#&#8203;53217](https://github.com/nodejs/node/pull/53217)
    
  • [`1886fe99af`](https://github.com/nodejs/node/commit/1886fe99af)] - **src**: use \__FUNCSIG\_\_ on Windows in backtrace (Joyee Cheung) [#&#8203;53135](https://github.com/nodejs/node/pull/53135)
    
  • [`3bfce6c816`](https://github.com/nodejs/node/commit/3bfce6c816)] - **src**: use new V8 API to define stream accessor (Igor Sheludko) [#&#8203;53084](https://github.com/nodejs/node/pull/53084)
    
  • [`11f790d911`](https://github.com/nodejs/node/commit/11f790d911)] - **src**: do not use deprecated V8 API (ishell) [#&#8203;53084](https://github.com/nodejs/node/pull/53084)
    
  • [`6b1731cbcc`](https://github.com/nodejs/node/commit/6b1731cbcc)] - **src**: convert all endian checks to constexpr (Tobias Nießen) [#&#8203;52974](https://github.com/nodejs/node/pull/52974)
    
  • [`7aa9519ad4`](https://github.com/nodejs/node/commit/7aa9519ad4)] - **src**: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) [#&#8203;52905](https://github.com/nodejs/node/pull/52905)
    
  • [`838fe59787`](https://github.com/nodejs/node/commit/838fe59787)] - **src**: fix execArgv in worker (theanarkh) [#&#8203;53029](https://github.com/nodejs/node/pull/53029)
    
  • [`4a2c6ff05d`](https://github.com/nodejs/node/commit/4a2c6ff05d)] - **src**: reduce unnecessary `GetCwd` calls (Yagiz Nizipli) [#&#8203;53064](https://github.com/nodejs/node/pull/53064)
    
  • [`ec44965b49`](https://github.com/nodejs/node/commit/ec44965b49)] - **src**: simplify node modules traverse path (Yagiz Nizipli) [#&#8203;53061](https://github.com/nodejs/node/pull/53061)
    
  • [`190129b48e`](https://github.com/nodejs/node/commit/190129b48e)] - **src**: remove unused `base64_table_url` (Yagiz Nizipli) [#&#8203;53040](https://github.com/nodejs/node/pull/53040)
    
  • [`d750a3c5c4`](https://github.com/nodejs/node/commit/d750a3c5c4)] - **src**: remove calls to recently deprecated V8 APIs (Adam Klein) [#&#8203;52996](https://github.com/nodejs/node/pull/52996)
    
  • [`f1890abb18`](https://github.com/nodejs/node/commit/f1890abb18)] - **src**: replace deprecated GetImportAssertions V8 API (Michaël Zasso) [#&#8203;52997](https://github.com/nodejs/node/pull/52997)
    
  • [`4347bd2acb`](https://github.com/nodejs/node/commit/4347bd2acb)] - **src**: improve node::Dotenv declarations (Tobias Nießen) [#&#8203;52973](https://github.com/nodejs/node/pull/52973)
    
  • [`e26166f30b`](https://github.com/nodejs/node/commit/e26166f30b)] - **src,permission**: handle process.chdir on pm (Rafael Gonzaga) [#&#8203;53175](https://github.com/nodejs/node/pull/53175)
    
  • [`75e5612fae`](https://github.com/nodejs/node/commit/75e5612fae)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124)
    
  • [`7c66b27407`](https://github.com/nodejs/node/commit/7c66b27407)] - **stream**: micro-optimize writable condition (Orgad Shaneh) [#&#8203;53189](https://github.com/nodejs/node/pull/53189)
    
  • [`a656cf6bc8`](https://github.com/nodejs/node/commit/a656cf6bc8)] - **stream**: fix memory usage regression in writable (Orgad Shaneh) [#&#8203;53188](https://github.com/nodejs/node/pull/53188)
    
  • [`0e85a84fdc`](https://github.com/nodejs/node/commit/0e85a84fdc)] - **test**: fix test when compiled without engine support (Richard Lau) [#&#8203;53232](https://github.com/nodejs/node/pull/53232)
    
  • [`cebbd83e47`](https://github.com/nodejs/node/commit/cebbd83e47)] - **test**: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) [#&#8203;53229](https://github.com/nodejs/node/pull/53229)
    
  • [`45c1eb19f1`](https://github.com/nodejs/node/commit/45c1eb19f1)] - ***Revert*** "**test**: skip v8-updates/test-linux-perf-logger" (Luke Albao) [#&#8203;52869](https://github.com/nodejs/node/pull/52869)
    
  • [`c1138db3c1`](https://github.com/nodejs/node/commit/c1138db3c1)] - **test**: unskip v8-updates/test-linux-perf-logger (Luke Albao) [#&#8203;52869](https://github.com/nodejs/node/pull/52869)
    
  • [`65b64cf0f1`](https://github.com/nodejs/node/commit/65b64cf0f1)] - **test**: fix Windows native test suites (Stefan Stojanovic) [#&#8203;53173](https://github.com/nodejs/node/pull/53173)
    
  • [`9a47792cd1`](https://github.com/nodejs/node/commit/9a47792cd1)] - **test**: skip `test-setproctitle` when `ps` is not available (Antoine du Hamel) [#&#8203;53104](https://github.com/nodejs/node/pull/53104)
    
  • [`a371dea699`](https://github.com/nodejs/node/commit/a371dea699)] - **test**: increase allocation so it fails for the test (Adam Majer) [#&#8203;53099](https://github.com/nodejs/node/pull/53099)
    
  • [`3ce7a9a1b5`](https://github.com/nodejs/node/commit/3ce7a9a1b5)] - **test**: remove timers from test-tls-socket-close (Luigi Pinca) [#&#8203;53019](https://github.com/nodejs/node/pull/53019)
    
  • [`494fa542af`](https://github.com/nodejs/node/commit/494fa542af)] - **test**: replace `.substr` with `.slice` (Antoine du Hamel) [#&#8203;53070](https://github.com/nodejs/node/pull/53070)
    
  • [`3f7d55b7db`](https://github.com/nodejs/node/commit/3f7d55b7db)] - **test**: add AbortController to knownGlobals (Luigi Pinca) [#&#8203;53020](https://github.com/nodejs/node/pull/53020)
    
  • [`c61f909ab6`](https://github.com/nodejs/node/commit/c61f909ab6)] - **test,doc**: enable running embedtest for Windows (Vladimir Morozov) [#&#8203;52646](https://github.com/nodejs/node/pull/52646)
    
  • [`2d1ecbf827`](https://github.com/nodejs/node/commit/2d1ecbf827)] - **test_runner**: calculate executed lines using source map (Moshe Atlow) [#&#8203;53315](https://github.com/nodejs/node/pull/53315)
    
  • [`d4f5f80f6c`](https://github.com/nodejs/node/commit/d4f5f80f6c)] - **test_runner**: handle file rename and deletion under watch mode (jakecastelli) [#&#8203;53114](https://github.com/nodejs/node/pull/53114)
    
  • [`07c601e32f`](https://github.com/nodejs/node/commit/07c601e32f)] - **test_runner**: refactor to use min/max of `validateInteger` (Deokjin Kim) [#&#8203;53148](https://github.com/nodejs/node/pull/53148)
    
  • [`8c6dffc269`](https://github.com/nodejs/node/commit/8c6dffc269)] - **(SEMVER-MINOR)** **test_runner**: add snapshot testing (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`f6d2af8ee7`](https://github.com/nodejs/node/commit/f6d2af8ee7)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`7a67ecf161`](https://github.com/nodejs/node/commit/7a67ecf161)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848)
    
  • [`3ff174f2bf`](https://github.com/nodejs/node/commit/3ff174f2bf)] - **test_runner**: fix t.assert methods (Colin Ihrig) [#&#8203;53049](https://github.com/nodejs/node/pull/53049)
    
  • [`e2211a07c2`](https://github.com/nodejs/node/commit/e2211a07c2)] - **test_runner**: avoid error when coverage line not found (Moshe Atlow) [#&#8203;53000](https://github.com/nodejs/node/pull/53000)
    
  • [`c249289121`](https://github.com/nodejs/node/commit/c249289121)] - **test_runner,doc**: align documentation with actual stdout/stderr behavior (Moshe Atlow) [#&#8203;53131](https://github.com/nodejs/node/pull/53131)
    
  • [`5110b19a07`](https://github.com/nodejs/node/commit/5110b19a07)] - **tls**: fix negative sessionTimeout handling (Tobias Nießen) [#&#8203;53002](https://github.com/nodejs/node/pull/53002)
    
  • [`0ecb770331`](https://github.com/nodejs/node/commit/0ecb770331)] - **tools**: remove no-goma arg from make-v8 script (Michaël Zasso) [#&#8203;53336](https://github.com/nodejs/node/pull/53336)
    
  • [`e7f3a3c296`](https://github.com/nodejs/node/commit/e7f3a3c296)] - **tools**: use sccache Github action (Moshe Atlow) [#&#8203;53316](https://github.com/nodejs/node/pull/53316)
    
  • [`98cc094bc5`](https://github.com/nodejs/node/commit/98cc094bc5)] - **tools**: update eslint to 9.4.0 (Node.js GitHub Bot) [#&#8203;53298](https://github.com/nodejs/node/pull/53298)
    
  • [`6409b1fe65`](https://github.com/nodejs/node/commit/6409b1fe65)] - **tools**: update gyp-next to 0.18.1 (Node.js GitHub Bot) [#&#8203;53251](https://github.com/nodejs/node/pull/53251)
    
  • [`86e80dcb9b`](https://github.com/nodejs/node/commit/86e80dcb9b)] - **tools**: move webcrypto into no-restricted-properties (Zihong Qu) [#&#8203;53023](https://github.com/nodejs/node/pull/53023)
    
  • [`6022346f0e`](https://github.com/nodejs/node/commit/6022346f0e)] - **tools**: update error message for Type Error (Aviv Keller) [#&#8203;53047](https://github.com/nodejs/node/pull/53047)
    
  • [`c1b3e0ed6f`](https://github.com/nodejs/node/commit/c1b3e0ed6f)] - ***Revert*** "**tools**: add --certify-safe to nci-ci" (Antoine du Hamel) [#&#8203;53098](https://github.com/nodejs/node/pull/53098)
    
  • [`9f764a873c`](https://github.com/nodejs/node/commit/9f764a873c)] - **tools**: update ESLint to v9 and use flat config (Michaël Zasso) [#&#8203;52780](https://github.com/nodejs/node/pull/52780)
    
  • [`2859f4c027`](https://github.com/nodejs/node/commit/2859f4c027)] - **watch**: fix variable naming (jakecastelli) [#&#8203;53101](https://github.com/nodejs/node/pull/53101)
    
    

v22.2.0: 2024-05-15, Version 22.2.0 (Current), @​targos

Compare Source

Notable Changes
  • [`fb85d38e80`](https://github.com/nodejs/node/commit/fb85d38e80)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`23a0d3339f`](https://github.com/nodejs/node/commit/23a0d3339f)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874)
    
  • [`7d7a762156`](https://github.com/nodejs/node/commit/7d7a762156)] - **(SEMVER-MINOR)** **fs**: allow 'withFileTypes' to be used with globs (Aviv Keller) [#&#8203;52837](https://github.com/nodejs/node/pull/52837)
    
  • [`8748dd6477`](https://github.com/nodejs/node/commit/8748dd6477)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#&#8203;52734](https://github.com/nodejs/node/pull/52734)
    
  • [`9a7ae9b6c4`](https://github.com/nodejs/node/commit/9a7ae9b6c4)] - **lib,src**: remove --experimental-policy (Rafael Gonzaga) [#&#8203;52583](https://github.com/nodejs/node/pull/52583)
    
  • [`1f7c2a93fc`](https://github.com/nodejs/node/commit/1f7c2a93fc)] - **(SEMVER-MINOR)** **perf_hooks**: add `deliveryType` and `responseStatus` fields (Matthew Aitken) [#&#8203;51589](https://github.com/nodejs/node/pull/51589)
    
  • [`2f59529dc5`](https://github.com/nodejs/node/commit/2f59529dc5)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#&#8203;52860](https://github.com/nodejs/node/pull/52860)
    
  • [`6b4dac3eb5`](https://github.com/nodejs/node/commit/6b4dac3eb5)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#&#8203;52692](https://github.com/nodejs/node/pull/52692)
    
    
Commits
  • [`0f5716c364`](https://github.com/nodejs/node/commit/0f5716c364)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#&#8203;51805](https://github.com/nodejs/node/pull/51805)
    
  • [`2c7d7caa8a`](https://github.com/nodejs/node/commit/2c7d7caa8a)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#&#8203;51746](https://github.com/nodejs/node/pull/51746)
    
  • [`5db4c54bd6`](https://github.com/nodejs/node/commit/5db4c54bd6)] - **bootstrap**: print `--help` message using `console.log` (Jacob Hummer) [#&#8203;51463](https://github.com/nodejs/node/pull/51463)
    
  • [`67fcb6b85e`](https://github.com/nodejs/node/commit/67fcb6b85e)] - **buffer**: even faster atob (Daniel Lemire) [#&#8203;52443](https://github.com/nodejs/node/pull/52443)
    
  • [`a5d63f9052`](https://github.com/nodejs/node/commit/a5d63f9052)] - **buffer**: use size_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#&#8203;48033](https://github.com/nodejs/node/pull/48033)
    
  • [`f1bc994826`](https://github.com/nodejs/node/commit/f1bc994826)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#&#8203;52588](https://github.com/nodejs/node/pull/52588)
    
  • [`a97ff753ab`](https://github.com/nodejs/node/commit/a97ff753ab)] - **build**: add option to enable clang-cl on Windows (Michaël Zasso) [#&#8203;52870](https://github.com/nodejs/node/pull/52870)
    
  • [`f96466a92c`](https://github.com/nodejs/node/commit/f96466a92c)] - **build**: enable building with shared uvwasi lib (Pooja D P) [#&#8203;43987](https://github.com/nodejs/node/pull/43987)
    
  • [`b463385aa8`](https://github.com/nodejs/node/commit/b463385aa8)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#&#8203;52913](https://github.com/nodejs/node/pull/52913)
    
  • [`daeb7dbb3e`](https://github.com/nodejs/node/commit/daeb7dbb3e)] - **build**: sync V8 warning cflags with BUILD.gn (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873)
    
  • [`eed967430d`](https://github.com/nodejs/node/commit/eed967430d)] - **build**: harmonize Clang checks (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873)
    
  • [`e4b187433d`](https://github.com/nodejs/node/commit/e4b187433d)] - **build**: compile with C++20 support (Michaël Zasso) [#&#8203;52838](https://github.com/nodejs/node/pull/52838)
    
  • [`aea6ca25ba`](https://github.com/nodejs/node/commit/aea6ca25ba)] - **build**: drop base64 dep in GN build (Cheng) [#&#8203;52856](https://github.com/nodejs/node/pull/52856)
    
  • [`7f866a8225`](https://github.com/nodejs/node/commit/7f866a8225)] - **build**: make simdjson a public dep in GN build (Cheng) [#&#8203;52755](https://github.com/nodejs/node/pull/52755)
    
  • [`e1bd53c098`](https://github.com/nodejs/node/commit/e1bd53c098)] - **build**: define `NOMINMAX` in common.gypi (Chengzhong Wu) [#&#8203;52794](https://github.com/nodejs/node/pull/52794)
    
  • [`18c530f8f7`](https://github.com/nodejs/node/commit/18c530f8f7)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#&#8203;51394](https://github.com/nodejs/node/pull/51394)
    
  • [`fb85d38e80`](https://github.com/nodejs/node/commit/fb85d38e80)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`11e978916f`](https://github.com/nodejs/node/commit/11e978916f)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#&#8203;50317](https://github.com/nodejs/node/pull/50317)
    
  • [`db76c58d68`](https://github.com/nodejs/node/commit/db76c58d68)] - **console**: colorize console error and warn (Jithil P Ponnan) [#&#8203;51629](https://github.com/nodejs/node/pull/51629)
    
  • [`0d040a3035`](https://github.com/nodejs/node/commit/0d040a3035)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#&#8203;49030](https://github.com/nodejs/node/pull/49030)
    
  • [`ab7219f0b2`](https://github.com/nodejs/node/commit/ab7219f0b2)] - **deps**: update googletest to [`fa6de7f`](https://github.com/nodejs/node/commit/fa6de7f) (Node.js GitHub Bot) [#&#8203;52949](https://github.com/nodejs/node/pull/52949)
    
  • [`4ab096eccc`](https://github.com/nodejs/node/commit/4ab096eccc)] - **deps**: update simdjson to 3.9.2 (Node.js GitHub Bot) [#&#8203;52947](https://github.com/nodejs/node/pull/52947)
    
  • [`89f275b1df`](https://github.com/nodejs/node/commit/89f275b1df)] - **deps**: update corepack to 0.28.1 (Node.js GitHub Bot) [#&#8203;52946](https://github.com/nodejs/node/pull/52946)
    
  • [`fc568b4b42`](https://github.com/nodejs/node/commit/fc568b4b42)] - **deps**: update simdutf to 5.2.8 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727)
    
  • [`e399360182`](https://github.com/nodejs/node/commit/e399360182)] - **deps**: update simdutf to 5.2.6 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727)
    
  • [`232831f013`](https://github.com/nodejs/node/commit/232831f013)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#&#8203;52924](https://github.com/nodejs/node/pull/52924)
    
  • [`7ca83a5abc`](https://github.com/nodejs/node/commit/7ca83a5abc)] - **deps**: update googletest to [`2d16ed0`](https://github.com/nodejs/node/commit/2d16ed0) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`3b15eb5911`](https://github.com/nodejs/node/commit/3b15eb5911)] - **deps**: update googletest to [`d83fee1`](https://github.com/nodejs/node/commit/d83fee1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`4190d70035`](https://github.com/nodejs/node/commit/4190d70035)] - **deps**: update googletest to [`5a37b51`](https://github.com/nodejs/node/commit/5a37b51) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`7a166a2871`](https://github.com/nodejs/node/commit/7a166a2871)] - **deps**: update googletest to [`5197b1a`](https://github.com/nodejs/node/commit/5197b1a) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`812dbd749f`](https://github.com/nodejs/node/commit/812dbd749f)] - **deps**: update googletest to [`eff443c`](https://github.com/nodejs/node/commit/eff443c) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`cb3ae4b9ef`](https://github.com/nodejs/node/commit/cb3ae4b9ef)] - **deps**: update googletest to [`c231e6f`](https://github.com/nodejs/node/commit/c231e6f) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`d97317aaa1`](https://github.com/nodejs/node/commit/d97317aaa1)] - **deps**: update googletest to [`e4fdb87`](https://github.com/nodejs/node/commit/e4fdb87) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`ad8ca1259f`](https://github.com/nodejs/node/commit/ad8ca1259f)] - **deps**: update googletest to [`5df0241`](https://github.com/nodejs/node/commit/5df0241) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`828f0d7096`](https://github.com/nodejs/node/commit/828f0d7096)] - **deps**: update googletest to [`b75ecf1`](https://github.com/nodejs/node/commit/b75ecf1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`3b60dbcf7b`](https://github.com/nodejs/node/commit/3b60dbcf7b)] - **deps**: update googletest to [`4565741`](https://github.com/nodejs/node/commit/4565741) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`37098eb880`](https://github.com/nodejs/node/commit/37098eb880)] - **deps**: update simdjson to 3.9.1 (Node.js GitHub Bot) [#&#8203;52397](https://github.com/nodejs/node/pull/52397)
    
  • [`a13cf1c049`](https://github.com/nodejs/node/commit/a13cf1c049)] - **deps**: update uvwasi to 0.0.21 (Node.js GitHub Bot) [#&#8203;52863](https://github.com/nodejs/node/pull/52863)
    
  • [`faf8ada719`](https://github.com/nodejs/node/commit/faf8ada719)] - **deps**: V8: cherry-pick [`f6bef09`](https://github.com/nodejs/node/commit/f6bef09b3b0a) (Richard Lau) [#&#8203;52802](https://github.com/nodejs/node/pull/52802)
    
  • [`8e5844c2a4`](https://github.com/nodejs/node/commit/8e5844c2a4)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#&#8203;52960](https://github.com/nodejs/node/pull/52960)
    
  • [`1f3634e30f`](https://github.com/nodejs/node/commit/1f3634e30f)] - **doc**: update hljs with the latest styles (Aviv Keller) [#&#8203;52911](https://github.com/nodejs/node/pull/52911)
    
  • [`9102255749`](https://github.com/nodejs/node/commit/9102255749)] - **doc**: mention quicker way to build docs (Alex Crawford) [#&#8203;52937](https://github.com/nodejs/node/pull/52937)
    
  • [`15db3ef5fb`](https://github.com/nodejs/node/commit/15db3ef5fb)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#&#8203;52906](https://github.com/nodejs/node/pull/52906)
    
  • [`80fa675af2`](https://github.com/nodejs/node/commit/80fa675af2)] - **doc**: document pipeline with `end` option (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970)
    
  • [`c0000f4118`](https://github.com/nodejs/node/commit/c0000f4118)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#&#8203;39412](https://github.com/nodejs/node/pull/39412)
    
  • [`e0148e2653`](https://github.com/nodejs/node/commit/e0148e2653)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#&#8203;49091](https://github.com/nodejs/node/pull/49091)
    
  • [`030f56ee6d`](https://github.com/nodejs/node/commit/030f56ee6d)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#&#8203;51653](https://github.com/nodejs/node/pull/51653)
    
  • [`a6d624cd5a`](https://github.com/nodejs/node/commit/a6d624cd5a)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#&#8203;48170](https://github.com/nodejs/node/pull/48170)
    
  • [`5dab187ca8`](https://github.com/nodejs/node/commit/5dab187ca8)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#&#8203;52453](https://github.com/nodejs/node/pull/52453)
    
  • [`5d3ee7205d`](https://github.com/nodejs/node/commit/5d3ee7205d)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#&#8203;52842](https://github.com/nodejs/node/pull/52842)
    
  • [`2dd8f092a8`](https://github.com/nodejs/node/commit/2dd8f092a8)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#&#8203;52896](https://github.com/nodejs/node/pull/52896)
    
  • [`0c2539b913`](https://github.com/nodejs/node/commit/0c2539b913)] - **doc**: add names next to release key bash commands (Aviv Keller) [#&#8203;52878](https://github.com/nodejs/node/pull/52878)
    
  • [`23a0d3339f`](https://github.com/nodejs/node/commit/23a0d3339f)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874)
    
  • [`15aad62e0c`](https://github.com/nodejs/node/commit/15aad62e0c)] - **doc**: update BUILDING.md previous versions links (Michaël Zasso) [#&#8203;52852](https://github.com/nodejs/node/pull/52852)
    
  • [`f770a993d4`](https://github.com/nodejs/node/commit/f770a993d4)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#&#8203;52798](https://github.com/nodejs/node/pull/52798)
    
  • [`f35b838a65`](https://github.com/nodejs/node/commit/f35b838a65)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#&#8203;38056](https://github.com/nodejs/node/pull/38056)
    
  • [`562a019a14`](https://github.com/nodejs/node/commit/562a019a14)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#&#8203;34213](https://github.com/nodejs/node/pull/34213)
    
  • [`0cb7cf7aa9`](https://github.com/nodejs/node/commit/0cb7cf7aa9)] - **doc**: fix grammatical mistake (codershiba) [#&#8203;52808](https://github.com/nodejs/node/pull/52808)
    
  • [`a0147ff8d0`](https://github.com/nodejs/node/commit/a0147ff8d0)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#&#8203;52757](https://github.com/nodejs/node/pull/52757)
    
  • [`fce31fc829`](https://github.com/nodejs/node/commit/fce31fc829)] - **doc**: add test_runner to subsystem (Raz Luvaton) [#&#8203;52774](https://github.com/nodejs/node/pull/52774)
    
  • [`ca5607bbc8`](https://github.com/nodejs/node/commit/ca5607bbc8)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#&#8203;51921](https://github.com/nodejs/node/pull/51921)
    
  • [`96566fc696`](https://github.com/nodejs/node/commit/96566fc696)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#&#8203;39463](https://github.com/nodejs/node/pull/39463)
    
  • [`5ee69243ed`](https://github.com/nodejs/node/commit/5ee69243ed)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#&#8203;43876](https://github.com/nodejs/node/pull/43876)
    
  • [`f076e721cb`](https://github.com/nodejs/node/commit/f076e721cb)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#&#8203;52178](https://github.com/nodejs/node/pull/52178)
    
  • [`7d7a762156`](https://github.com/nodejs/node/commit/7d7a762156)] - **(SEMVER-MINOR)** **fs**: allow 'withFileTypes' to be used with globs (Aviv Keller) [#&#8203;52837](https://github.com/nodejs/node/pull/52837)
    
  • [`ad9c4bddb1`](https://github.com/nodejs/node/commit/ad9c4bddb1)] - **http**: correctly translate HTTP method (Paolo Insogna) [#&#8203;52701](https://github.com/nodejs/node/pull/52701)
    
  • [`8748dd6477`](https://github.com/nodejs/node/commit/8748dd6477)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#&#8203;52734](https://github.com/nodejs/node/pull/52734)
    
  • [`9a7ae9b6c4`](https://github.com/nodejs/node/commit/9a7ae9b6c4)] - **lib,src**: remove --experimental-policy (Rafael Gonzaga) [#&#8203;52583](https://github.com/nodejs/node/pull/52583)
    
  • [`a850219600`](https://github.com/nodejs/node/commit/a850219600)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#&#8203;52932](https://github.com/nodejs/node/pull/52932)
    
  • [`4dc8a387b3`](https://github.com/nodejs/node/commit/4dc8a387b3)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#&#8203;52795](https://github.com/nodejs/node/pull/52795)
    
  • [`d10182d81d`](https://github.com/nodejs/node/commit/d10182d81d)] - **meta**: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot\[bot]) [#&#8203;52787](https://github.com/nodejs/node/pull/52787)
    
  • [`48d0ac0665`](https://github.com/nodejs/node/commit/48d0ac0665)] - **meta**: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot\[bot]) [#&#8203;52786](https://github.com/nodejs/node/pull/52786)
    
  • [`7c7a25150e`](https://github.com/nodejs/node/commit/7c7a25150e)] - **meta**: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot\[bot]) [#&#8203;52785](https://github.com/nodejs/node/pull/52785)
    
  • [`d9abf18342`](https://github.com/nodejs/node/commit/d9abf18342)] - **meta**: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot\[bot]) [#&#8203;52784](https://github.com/nodejs/node/pull/52784)
    
  • [`590e5c6c45`](https://github.com/nodejs/node/commit/590e5c6c45)] - **meta**: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot\[bot]) [#&#8203;52783](https://github.com/nodejs/node/pull/52783)
    
  • [`b3d1720515`](https://github.com/nodejs/node/commit/b3d1720515)] - **meta**: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot\[bot]) [#&#8203;52782](https://github.com/nodejs/node/pull/52782)
    
  • [`f74beb53de`](https://github.com/nodejs/node/commit/f74beb53de)] - **module**: cache synchronous module jobs before linking (Joyee Cheung) [#&#8203;52868](https://github.com/nodejs/node/pull/52868)
    
  • [`8fbf6628d6`](https://github.com/nodejs/node/commit/8fbf6628d6)] - **module**: have a single hooks thread for all workers (Gabriel Bota) [#&#8203;52706](https://github.com/nodejs/node/pull/52706)
    
  • [`609d90bb4b`](https://github.com/nodejs/node/commit/609d90bb4b)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#&#8203;52915](https://github.com/nodejs/node/pull/52915)
    
  • [`1f7c2a93fc`](https://github.com/nodejs/node/commit/1f7c2a93fc)] - **(SEMVER-MINOR)** **perf_hooks**: add `deliveryType` and `responseStatus` fields (Matthew Aitken) [#&#8203;51589](https://github.com/nodejs/node/pull/51589)
    
  • [`0bbc62c42a`](https://github.com/nodejs/node/commit/0bbc62c42a)] - **process**: improve event-loop (Aras Abbasi) [#&#8203;52108](https://github.com/nodejs/node/pull/52108)
    
  • [`619ac79abb`](https://github.com/nodejs/node/commit/619ac79abb)] - **quic**: address coverity warning (Michael Dawson) [#&#8203;52824](https://github.com/nodejs/node/pull/52824)
    
  • [`04de5766ee`](https://github.com/nodejs/node/commit/04de5766ee)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#&#8203;40661](https://github.com/nodejs/node/pull/40661)
    
  • [`663bb973ab`](https://github.com/nodejs/node/commit/663bb973ab)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#&#8203;52527](https://github.com/nodejs/node/pull/52527)
    
  • [`fca38b2d6e`](https://github.com/nodejs/node/commit/fca38b2d6e)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#&#8203;52164](https://github.com/nodejs/node/pull/52164)
    
  • [`b228db579f`](https://github.com/nodejs/node/commit/b228db579f)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#&#8203;46681](https://github.com/nodejs/node/pull/46681)
    
  • [`ace65a9aac`](https://github.com/nodejs/node/commit/ace65a9aac)] - **src**: make sure pass the `argv` to worker threads (theanarkh) [#&#8203;52827](https://github.com/nodejs/node/pull/52827)
    
  • [`75004d32ab`](https://github.com/nodejs/node/commit/75004d32ab)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#&#8203;52820](https://github.com/nodejs/node/pull/52820)
    
  • [`c40a8273ef`](https://github.com/nodejs/node/commit/c40a8273ef)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#&#8203;52886](https://github.com/nodejs/node/pull/52886)
    
  • [`d169d0f181`](https://github.com/nodejs/node/commit/d169d0f181)] - **src**: fix positional args in task runner (Yagiz Nizipli) [#&#8203;52810](https://github.com/nodejs/node/pull/52810)
    
  • [`9c76c95c10`](https://github.com/nodejs/node/commit/9c76c95c10)] - **src**: only apply fix in main thread (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702)
    
  • [`e1cba97df3`](https://github.com/nodejs/node/commit/e1cba97df3)] - **src**: fix test local edge case (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702)
    
  • [`dc41c135d7`](https://github.com/nodejs/node/commit/dc41c135d7)] - **src**: reduce unnecessary serialization of CLI options in C++ (Joyee Cheung) [#&#8203;52451](https://github.com/nodejs/node/pull/52451)
    
  • [`fb24c4475c`](https://github.com/nodejs/node/commit/fb24c4475c)] - **src**: rewrite task runner in c++ (Yagiz Nizipli) [#&#8203;52609](https://github.com/nodejs/node/pull/52609)
    
  • [`323f95de9e`](https://github.com/nodejs/node/commit/323f95de9e)] - **src**: migrate to new V8 interceptors API (Michaël Zasso) [#&#8203;52745](https://github.com/nodejs/node/pull/52745)
    
  • [`850ff02931`](https://github.com/nodejs/node/commit/850ff02931)] - **src,permission**: resolve path on fs_permission (Rafael Gonzaga) [#&#8203;52761](https://github.com/nodejs/node/pull/52761)
    
  • [`8d3b0b7ade`](https://github.com/nodejs/node/commit/8d3b0b7ade)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#&#8203;48847](https://github.com/nodejs/node/pull/48847)
    
  • [`fa715437b0`](https://github.com/nodejs/node/commit/fa715437b0)] - **stream**: fix util.inspect for compression/decompressionStream (Mert Can Altin) [#&#8203;52283](https://github.com/nodejs/node/pull/52283)
    
  • [`b0e6a6b3d5`](https://github.com/nodejs/node/commit/b0e6a6b3d5)] - **string_decoder**: throw an error when writing a too long buffer (zhenweijin) [#&#8203;52215](https://github.com/nodejs/node/pull/52215)
    
  • [`e016e952e6`](https://github.com/nodejs/node/commit/e016e952e6)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#&#8203;31137](https://github.com/nodejs/node/pull/31137)
    
  • [`a589de0886`](https://github.com/nodejs/node/commit/a589de0886)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#&#8203;49790](https://github.com/nodejs/node/pull/49790)
    
  • [`578868ddf8`](https://github.com/nodejs/node/commit/578868ddf8)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#&#8203;34066](https://github.com/nodejs/node/pull/34066)
    
  • [`c676e522e6`](https://github.com/nodejs/node/commit/c676e522e6)] - **test**: add fuzzer for native/js string conversion (Adam Korczynski) [#&#8203;51120](https://github.com/nodejs/node/pull/51120)
    
  • [`5f6415b41d`](https://github.com/nodejs/node/commit/5f6415b41d)] - **test**: add fuzzer for `ClientHelloParser` (AdamKorcz) [#&#8203;51088](https://github.com/nodejs/node/pull/51088)
    
  • [`4d50d51a5e`](https://github.com/nodejs/node/commit/4d50d51a5e)] - **test**: fix broken env fuzzer by initializing process (AdamKorcz) [#&#8203;51080](https://github.com/nodejs/node/pull/51080)
    
  • [`cd00cdcbc8`](https://github.com/nodejs/node/commit/cd00cdcbc8)] - **test**: replace `forEach()` in `test-stream-pipe-unpipe-stream` (Dario) [#&#8203;50786](https://github.com/nodejs/node/pull/50786)
    
  • [`5469adf458`](https://github.com/nodejs/node/commit/5469adf458)] - **test**: test pipeline `end` on transform streams (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970)
    
  • [`ea6070b0e8`](https://github.com/nodejs/node/commit/ea6070b0e8)] - **test**: improve coverage of lib/readline.js (Rongjian Zhang) [#&#8203;38646](https://github.com/nodejs/node/pull/38646)
    
  • [`4f96b00307`](https://github.com/nodejs/node/commit/4f96b00307)] - **test**: updated for each to for of in test file (lyannel) [#&#8203;50308](https://github.com/nodejs/node/pull/50308)
    
  • [`5d91cf1976`](https://github.com/nodejs/node/commit/5d91cf1976)] - **test**: move `test-http-server-request-timeouts-mixed` to sequential (Madhuri) [#&#8203;45722](https://github.com/nodejs/node/pull/45722)
    
  • [`f47e8fccbb`](https://github.com/nodejs/node/commit/f47e8fccbb)] - **test**: fix DNS cancel tests (Szymon Marczak) [#&#8203;44432](https://github.com/nodejs/node/pull/44432)
    
  • [`0b073f885a`](https://github.com/nodejs/node/commit/0b073f885a)] - **test**: add http agent to `executionAsyncResource` (psj-tar-gz) [#&#8203;34966](https://github.com/nodejs/node/pull/34966)
    
  • [`fbce3178ba`](https://github.com/nodejs/node/commit/fbce3178ba)] - **test**: reduce memory usage of test-worker-stdio (Adam Majer) [#&#8203;37769](https://github.com/nodejs/node/pull/37769)
    
  • [`1f8eaec454`](https://github.com/nodejs/node/commit/1f8eaec454)] - **test**: add common.expectRequiredModule() (Joyee Cheung) [#&#8203;52868](https://github.com/nodejs/node/pull/52868)
    
  • [`5e731da572`](https://github.com/nodejs/node/commit/5e731da572)] - **test**: skip unstable shadow realm gc tests (Chengzhong Wu) [#&#8203;52855](https://github.com/nodejs/node/pull/52855)
    
  • [`30a35ae522`](https://github.com/nodejs/node/commit/30a35ae522)] - **test**: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) [#&#8203;52781](https://github.com/nodejs/node/pull/52781)
    
  • [`968fe6a8b1`](https://github.com/nodejs/node/commit/968fe6a8b1)] - **test**: skip some console tests on dumb terminal (Adam Majer) [#&#8203;37770](https://github.com/nodejs/node/pull/37770)
    
  • [`1448959e0d`](https://github.com/nodejs/node/commit/1448959e0d)] - **test**: skip v8-updates/test-linux-perf-logger (Michaël Zasso) [#&#8203;52821](https://github.com/nodejs/node/pull/52821)
    
  • [`30a4248b48`](https://github.com/nodejs/node/commit/30a4248b48)] - **test**: add env variable test for --run (Yagiz Nizipli) [#&#8203;52811](https://github.com/nodejs/node/pull/52811)
    
  • [`edb4ed3bc9`](https://github.com/nodejs/node/commit/edb4ed3bc9)] - **test**: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) [#&#8203;52751](https://github.com/nodejs/node/pull/52751)
    
  • [`944ae598b5`](https://github.com/nodejs/node/commit/944ae598b5)] - **test, crypto**: use correct object on assert (响马) [#&#8203;51820](https://github.com/nodejs/node/pull/51820)
    
  • [`a814e720fa`](https://github.com/nodejs/node/commit/a814e720fa)] - **test_runner**: fix watch mode race condition (Moshe Atlow) [#&#8203;52954](https://github.com/nodejs/node/pull/52954)
    
  • [`2f59529dc5`](https://github.com/nodejs/node/commit/2f59529dc5)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#&#8203;52860](https://github.com/nodejs/node/pull/52860)
    
  • [`3267b3c063`](https://github.com/nodejs/node/commit/3267b3c063)] - **test_runner**: display failed test stack trace with dot reporter (Mihir Bhansali) [#&#8203;52655](https://github.com/nodejs/node/pull/52655)
    
  • [`b96868b4e7`](https://github.com/nodejs/node/commit/b96868b4e7)] - **test_runner**: preserve hook promise when executed twice (Moshe Atlow) [#&#8203;52791](https://github.com/nodejs/node/pull/52791)
    
  • [`74341ba3c9`](https://github.com/nodejs/node/commit/74341ba3c9)] - **tools**: fix v8-update workflow (Michaël Zasso) [#&#8203;52957](https://github.com/nodejs/node/pull/52957)
    
  • [`afe39ed0df`](https://github.com/nodejs/node/commit/afe39ed0df)] - **tools**: add --certify-safe to nci-ci (Matteo Collina) [#&#8203;52940](https://github.com/nodejs/node/pull/52940)
    
  • [`bb97e1ccdd`](https://github.com/nodejs/node/commit/bb97e1ccdd)] - **tools**: fix doc update action (Marco Ippolito) [#&#8203;52890](https://github.com/nodejs/node/pull/52890)
    
  • [`c6043fe6c8`](https://github.com/nodejs/node/commit/c6043fe6c8)] - **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`6e71accc5f`](https://github.com/nodejs/node/commit/6e71accc5f)] - **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`1600bdac60`](https://github.com/nodejs/node/commit/1600bdac60)] - **tools**: support != in test status files (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`8ce23dc9f3`](https://github.com/nodejs/node/commit/8ce23dc9f3)] - **tools**: update gyp-next to 0.18.0 (Node.js GitHub Bot) [#&#8203;52835](https://github.com/nodejs/node/pull/52835)
    
  • [`c5f832adc0`](https://github.com/nodejs/node/commit/c5f832adc0)] - **tools**: update gyp-next to 0.17.0 (Node.js GitHub Bot) [#&#8203;52835](https://github.com/nodejs/node/pull/52835)
    
  • [`646a094782`](https://github.com/nodejs/node/commit/646a094782)] - **tools**: prepare custom rules for ESLint v9 (Michaël Zasso) [#&#8203;52889](https://github.com/nodejs/node/pull/52889)
    
  • [`505566347d`](https://github.com/nodejs/node/commit/505566347d)] - **tools**: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) [#&#8203;52836](https://github.com/nodejs/node/pull/52836)
    
  • [`466e0c1321`](https://github.com/nodejs/node/commit/466e0c1321)] - **tools**: update `gr2m/create-or-update-pull-request-action` (Antoine du Hamel) [#&#8203;52843](https://github.com/nodejs/node/pull/52843)
    
  • [`ce7a751ad1`](https://github.com/nodejs/node/commit/ce7a751ad1)] - **tools**: use sccache GitHub action (Michaël Zasso) [#&#8203;52839](https://github.com/nodejs/node/pull/52839)
    
  • [`1ee38a5ec1`](https://github.com/nodejs/node/commit/1ee38a5ec1)] - **tools**: specify a commit-message for V8 update workflow (Antoine du Hamel) [#&#8203;52844](https://github.com/nodejs/node/pull/52844)
    
  • [`317998a1e8`](https://github.com/nodejs/node/commit/317998a1e8)] - **tools**: fix V8 update workflow (Antoine du Hamel) [#&#8203;52822](https://github.com/nodejs/node/pull/52822)
    
  • [`ef6a2101e2`](https://github.com/nodejs/node/commit/ef6a2101e2)] - **url,tools,benchmark**: replace deprecated `substr()` (Jungku Lee) [#&#8203;51546](https://github.com/nodejs/node/pull/51546)
    
  • [`0deef2d2b1`](https://github.com/nodejs/node/commit/0deef2d2b1)] - **util**: fix `%s` format behavior with `Symbol.toPrimitive` (Chenyu Yang) [#&#8203;50992](https://github.com/nodejs/node/pull/50992)
    
  • [`a42b93b9aa`](https://github.com/nodejs/node/commit/a42b93b9aa)] - **util**: improve `isInsideNodeModules` (uzlopak) [#&#8203;52147](https://github.com/nodejs/node/pull/52147)
    
  • [`d71e16154a`](https://github.com/nodejs/node/commit/d71e16154a)] - **watch**: allow listening for grouped changes (Matthieu Sieben) [#&#8203;52722](https://github.com/nodejs/node/pull/52722)
    
  • [`e895f7cf32`](https://github.com/nodejs/node/commit/e895f7cf32)] - **watch**: enable passthrough ipc in watch mode (Zack) [#&#8203;50890](https://github.com/nodejs/node/pull/50890)
    
  • [`f5d925706a`](https://github.com/nodejs/node/commit/f5d925706a)] - **watch**: fix arguments parsing (Moshe Atlow) [#&#8203;52760](https://github.com/nodejs/node/pull/52760)
    
  • [`6b4dac3eb5`](https://github.com/nodejs/node/commit/6b4dac3eb5)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#&#8203;52692](https://github.com/nodejs/node/pull/52692)
    
    

v22.1.0: 2024-05-02, Version 22.1.0 (Current), @​targos prepared by @​aduh95

Compare Source

module: implement NODE_COMPILE_CACHE for automatic on-disk code caching

This patch implements automatic on-disk code caching that can be enabled
via an environment variable NODE_COMPILE_CACHE=/path/to/cache/dir.

When set, whenever Node.js compiles a CommonJS or a ECMAScript Module,
it will use on-disk V8 code cache
persisted in the specified directory
to speed up the compilation. This may slow down the first load of a
module graph, but subsequent loads of the same module graph may get
a significant speedup if the contents of the modules do not change.
Locally, this speeds up loading of test/fixtures/snapshot/typescript.js
from ~130ms to ~80ms.

To clean up the generated code cache, simply remove the directory.
It will be recreated the next time the same directory is used for
NODE_COMPILE_CACHE.

Compilation cache generated by one version of Node.js may not be used
by a different version of Node.js. Cache generated by different versions
of Node.js will be stored separately if the same directory is used
to persist the cache, so they can co-exist.

Caveat: currently when using this with V8 JavaScript code coverage, the
coverage being collected by V8 may be less precise in functions that are
deserialized from the code cache. It's recommended to turn this off when
running tests to generate precise coverage.

Contributed by Joyee Cheung in #​52535.

Other Notable Changes
  • [`44ee04cf9f`](https://github.com/nodejs/node/commit/44ee04cf9f)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#&#8203;52428](https://github.com/nodejs/node/pull/52428)
    
  • [`3c37ce5710`](https://github.com/nodejs/node/commit/3c37ce5710)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492)
    
  • [`3026401be1`](https://github.com/nodejs/node/commit/3026401be1)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#&#8203;52618](https://github.com/nodejs/node/pull/52618)
    
  • [`64428dc1c9`](https://github.com/nodejs/node/commit/64428dc1c9)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509)
    
  • [`d79ae74f71`](https://github.com/nodejs/node/commit/d79ae74f71)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474)
    
  • [`43fa6a1a45`](https://github.com/nodejs/node/commit/43fa6a1a45)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595)
    
  • [`c6fe433d42`](https://github.com/nodejs/node/commit/c6fe433d42)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730)
    
  • [`e247a61d15`](https://github.com/nodejs/node/commit/e247a61d15)] - **(SEMVER-MINOR)** **test_runner**: add --test-skip-pattern cli option (Aviv Keller) [#&#8203;52529](https://github.com/nodejs/node/pull/52529)
    
  • [`9b18df9dcb`](https://github.com/nodejs/node/commit/9b18df9dcb)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280)
    
    
Commits
  • [`35643c18c0`](https://github.com/nodejs/node/commit/35643c18c0)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#&#8203;52548](https://github.com/nodejs/node/pull/52548)
    
  • [`7cdfe8a3fc`](https://github.com/nodejs/node/commit/7cdfe8a3fc)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456)
    
  • [`7b82c17f22`](https://github.com/nodejs/node/commit/7b82c17f22)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456)
    
  • [`dfda6fed61`](https://github.com/nodejs/node/commit/dfda6fed61)] - **buffer**: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#&#8203;52477](https://github.com/nodejs/node/pull/52477)
    
  • [`44ee04cf9f`](https://github.com/nodejs/node/commit/44ee04cf9f)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#&#8203;52428](https://github.com/nodejs/node/pull/52428)
    
  • [`c64a1a3b89`](https://github.com/nodejs/node/commit/c64a1a3b89)] - **build**: fix typo in node.gyp (Michaël Zasso) [#&#8203;52719](https://github.com/nodejs/node/pull/52719)
    
  • [`4f713fbc2e`](https://github.com/nodejs/node/commit/4f713fbc2e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#&#8203;52442](https://github.com/nodejs/node/pull/52442)
    
  • [`4baeb7b21d`](https://github.com/nodejs/node/commit/4baeb7b21d)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#&#8203;52559](https://github.com/nodejs/node/pull/52559)
    
  • [`d5cd468ce8`](https://github.com/nodejs/node/commit/d5cd468ce8)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#&#8203;52632](https://github.com/nodejs/node/pull/52632)
    
  • [`910533fcfd`](https://github.com/nodejs/node/commit/910533fcfd)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#&#8203;49709](https://github.com/nodejs/node/pull/49709)
    
  • [`61e1ac0b8c`](https://github.com/nodejs/node/commit/61e1ac0b8c)] - **crypto**: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) [#&#8203;52217](https://github.com/nodejs/node/pull/52217)
    
  • [`6e98eee256`](https://github.com/nodejs/node/commit/6e98eee256)] - **deps**: upgrade npm to 10.7.0 (npm team) [#&#8203;52767](https://github.com/nodejs/node/pull/52767)
    
  • [`27a5f9418c`](https://github.com/nodejs/node/commit/27a5f9418c)] - **deps**: V8: cherry-pick [`500de8b`](https://github.com/nodejs/node/commit/500de8bd371b) (Richard Lau) [#&#8203;52676](https://github.com/nodejs/node/pull/52676)
    
  • [`3b422ddcea`](https://github.com/nodejs/node/commit/3b422ddcea)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#&#8203;52616](https://github.com/nodejs/node/pull/52616)
    
  • [`d40e4d4c42`](https://github.com/nodejs/node/commit/d40e4d4c42)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#&#8203;52517](https://github.com/nodejs/node/pull/52517)
    
  • [`5b52a4870a`](https://github.com/nodejs/node/commit/5b52a4870a)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#&#8203;52573](https://github.com/nodejs/node/pull/52573)
    
  • [`80cbe72c1f`](https://github.com/nodejs/node/commit/80cbe72c1f)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#&#8203;52493](https://github.com/nodejs/node/pull/52493)
    
  • [`9a44059055`](https://github.com/nodejs/node/commit/9a44059055)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#&#8203;52516](https://github.com/nodejs/node/pull/52516)
    
  • [`d67a9a5360`](https://github.com/nodejs/node/commit/d67a9a5360)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#&#8203;52524](https://github.com/nodejs/node/pull/52524)
    
  • [`8738b89971`](https://github.com/nodejs/node/commit/8738b89971)] - **deps**: upgrade npm to 10.5.2 (npm team) [#&#8203;52458](https://github.com/nodejs/node/pull/52458)
    
  • [`8e4fd2842b`](https://github.com/nodejs/node/commit/8e4fd2842b)] - **deps,src**: simplify base64 encoding (Daniel Lemire) [#&#8203;52714](https://github.com/nodejs/node/pull/52714)
    
  • [`3c37ce5710`](https://github.com/nodejs/node/commit/3c37ce5710)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492)
    
  • [`3987a28a9e`](https://github.com/nodejs/node/commit/3987a28a9e)] - **doc**: update process.versions properties (ishabi) [#&#8203;52736](https://github.com/nodejs/node/pull/52736)
    
  • [`c0b58e07f1`](https://github.com/nodejs/node/commit/c0b58e07f1)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#&#8203;52252](https://github.com/nodejs/node/pull/52252)
    
  • [`9a032cf6e2`](https://github.com/nodejs/node/commit/9a032cf6e2)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#&#8203;52648](https://github.com/nodejs/node/pull/52648)
    
  • [`90c6e77238`](https://github.com/nodejs/node/commit/90c6e77238)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#&#8203;52660](https://github.com/nodejs/node/pull/52660)
    
  • [`4d577fa048`](https://github.com/nodejs/node/commit/4d577fa048)] - **doc**: add .gitattributes for md files (Hüseyin Açacak) [#&#8203;52161](https://github.com/nodejs/node/pull/52161)
    
  • [`04c8e110e5`](https://github.com/nodejs/node/commit/04c8e110e5)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;52631](https://github.com/nodejs/node/pull/52631)
    
  • [`3552829594`](https://github.com/nodejs/node/commit/3552829594)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#&#8203;52598](https://github.com/nodejs/node/pull/52598)
    
  • [`eeb80ad836`](https://github.com/nodejs/node/commit/eeb80ad836)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#&#8203;52555](https://github.com/nodejs/node/pull/52555)
    
  • [`c83526a688`](https://github.com/nodejs/node/commit/c83526a688)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#&#8203;52590](https://github.com/nodejs/node/pull/52590)
    
  • [`31831e9db8`](https://github.com/nodejs/node/commit/31831e9db8)] - **doc**: sort options alphabetically (Luigi Pinca) [#&#8203;52589](https://github.com/nodejs/node/pull/52589)
    
  • [`a93f5d4aaa`](https://github.com/nodejs/node/commit/a93f5d4aaa)] - **doc**: correct stream.finished changes (KaKa) [#&#8203;52551](https://github.com/nodejs/node/pull/52551)
    
  • [`27ffa35540`](https://github.com/nodejs/node/commit/27ffa35540)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#&#8203;52556](https://github.com/nodejs/node/pull/52556)
    
  • [`63cc2b870e`](https://github.com/nodejs/node/commit/63cc2b870e)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#&#8203;52566](https://github.com/nodejs/node/pull/52566)
    
  • [`7e93c4892b`](https://github.com/nodejs/node/commit/7e93c4892b)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#&#8203;52515](https://github.com/nodejs/node/pull/52515)
    
  • [`3026401be1`](https://github.com/nodejs/node/commit/3026401be1)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#&#8203;52618](https://github.com/nodejs/node/pull/52618)
    
  • [`c6e0fe2f22`](https://github.com/nodejs/node/commit/c6e0fe2f22)] - **fs**: allow setting Stat date properties (Nicolò Ribaudo) [#&#8203;52708](https://github.com/nodejs/node/pull/52708)
    
  • [`f23fa1de72`](https://github.com/nodejs/node/commit/f23fa1de72)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#&#8203;52603](https://github.com/nodejs/node/pull/52603)
    
  • [`a7e03d301a`](https://github.com/nodejs/node/commit/a7e03d301a)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#&#8203;52349](https://github.com/nodejs/node/pull/52349)
    
  • [`d5ecb6cd00`](https://github.com/nodejs/node/commit/d5ecb6cd00)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#&#8203;52713](https://github.com/nodejs/node/pull/52713)
    
  • [`d1adc9b140`](https://github.com/nodejs/node/commit/d1adc9b140)] - **lib**: enforce ASCII order in error code imports (Antoine du Hamel) [#&#8203;52625](https://github.com/nodejs/node/pull/52625)
    
  • [`9ffdcade37`](https://github.com/nodejs/node/commit/9ffdcade37)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#&#8203;52580](https://github.com/nodejs/node/pull/52580)
    
  • [`fdcde845ee`](https://github.com/nodejs/node/commit/fdcde845ee)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#&#8203;52275](https://github.com/nodejs/node/pull/52275)
    
  • [`f6145aa2ca`](https://github.com/nodejs/node/commit/f6145aa2ca)] - **lib**: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) [#&#8203;52095](https://github.com/nodejs/node/pull/52095)
    
  • [`014bf01efc`](https://github.com/nodejs/node/commit/014bf01efc)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#&#8203;52440](https://github.com/nodejs/node/pull/52440)
    
  • [`dc399ddd03`](https://github.com/nodejs/node/commit/dc399ddd03)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#&#8203;52471](https://github.com/nodejs/node/pull/52471)
    
  • [`64428dc1c9`](https://github.com/nodejs/node/commit/64428dc1c9)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509)
    
  • [`9b2b6abb62`](https://github.com/nodejs/node/commit/9b2b6abb62)] - **lib,src**: iterate module requests of a module wrap in JS (Chengzhong Wu) [#&#8203;52058](https://github.com/nodejs/node/pull/52058)
    
  • [`896a80e366`](https://github.com/nodejs/node/commit/896a80e366)] - **meta**: standardize regex (Aviv Keller) [#&#8203;52693](https://github.com/nodejs/node/pull/52693)
    
  • [`20c07e922e`](https://github.com/nodejs/node/commit/20c07e922e)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52633](https://github.com/nodejs/node/pull/52633)
    
  • [`e70d8a4fa9`](https://github.com/nodejs/node/commit/e70d8a4fa9)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52457](https://github.com/nodejs/node/pull/52457)
    
  • [`20ab8f2a88`](https://github.com/nodejs/node/commit/20ab8f2a88)] - **module**: support ESM detection in the CJS loader (Joyee Cheung) [#&#8203;52047](https://github.com/nodejs/node/pull/52047)
    
  • [`544c602b75`](https://github.com/nodejs/node/commit/544c602b75)] - **module**: skip NODE_COMPILE_CACHE when policy is enabled (Joyee Cheung) [#&#8203;52577](https://github.com/nodejs/node/pull/52577)
    
  • [`3df3afc284`](https://github.com/nodejs/node/commit/3df3afc284)] - **module**: detect ESM syntax by trying to recompile as SourceTextModule (Joyee Cheung) [#&#8203;52413](https://github.com/nodejs/node/pull/52413)
    
  • [`4d77fd2c46`](https://github.com/nodejs/node/commit/4d77fd2c46)] - **(SEMVER-MINOR)** **module**: implement NODE_COMPILE_CACHE for automatic on-disk code caching (Joyee Cheung) [#&#8203;52535](https://github.com/nodejs/node/pull/52535)
    
  • [`9794d21b07`](https://github.com/nodejs/node/commit/9794d21b07)] - **module**: fix submodules loaded by require() and import() (Joyee Cheung) [#&#8203;52487](https://github.com/nodejs/node/pull/52487)
    
  • [`b00766d9e7`](https://github.com/nodejs/node/commit/b00766d9e7)] - **module**: tidy code and comments (Jacob Smith) [#&#8203;52437](https://github.com/nodejs/node/pull/52437)
    
  • [`d79ae74f71`](https://github.com/nodejs/node/commit/d79ae74f71)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474)
    
  • [`b17cfea289`](https://github.com/nodejs/node/commit/b17cfea289)] - **node-api**: address coverity report (Michael Dawson) [#&#8203;52584](https://github.com/nodejs/node/pull/52584)
    
  • [`1fca8baac1`](https://github.com/nodejs/node/commit/1fca8baac1)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#&#8203;52426](https://github.com/nodejs/node/pull/52426)
    
  • [`d086ab42a1`](https://github.com/nodejs/node/commit/d086ab42a1)] - **quic**: address recent coverity warnings (Michael Dawson) [#&#8203;52647](https://github.com/nodejs/node/pull/52647)
    
  • [`fb4edf70cf`](https://github.com/nodejs/node/commit/fb4edf70cf)] - **quic**: rework TLSContext, additional cleanups (James M Snell) [#&#8203;51340](https://github.com/nodejs/node/pull/51340)
    
  • [`0c58d0319b`](https://github.com/nodejs/node/commit/0c58d0319b)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#&#8203;52545](https://github.com/nodejs/node/pull/52545)
    
  • [`e20d2f1de3`](https://github.com/nodejs/node/commit/e20d2f1de3)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#&#8203;52638](https://github.com/nodejs/node/pull/52638)
    
  • [`43fa6a1a45`](https://github.com/nodejs/node/commit/43fa6a1a45)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595)
    
  • [`a56faff4d0`](https://github.com/nodejs/node/commit/a56faff4d0)] - **src**: parse inspector profiles with simdjson (Joyee Cheung) [#&#8203;51783](https://github.com/nodejs/node/pull/51783)
    
  • [`ac04c6434a`](https://github.com/nodejs/node/commit/ac04c6434a)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#&#8203;52406](https://github.com/nodejs/node/pull/52406)
    
  • [`f283d27285`](https://github.com/nodejs/node/commit/f283d27285)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#&#8203;52438](https://github.com/nodejs/node/pull/52438)
    
  • [`c6fe433d42`](https://github.com/nodejs/node/commit/c6fe433d42)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730)
    
  • [`9f9eca965a`](https://github.com/nodejs/node/commit/9f9eca965a)] - **stream**: update ongoing promise in async iterator return() method (Mattias Buelens) [#&#8203;52657](https://github.com/nodejs/node/pull/52657)
    
  • [`d568a9a38e`](https://github.com/nodejs/node/commit/d568a9a38e)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#&#8203;52739](https://github.com/nodejs/node/pull/52739)
    
  • [`45f7002b90`](https://github.com/nodejs/node/commit/45f7002b90)] - **test**: mark test as flaky (Michael Dawson) [#&#8203;52671](https://github.com/nodejs/node/pull/52671)
    
  • [`10596e20e8`](https://github.com/nodejs/node/commit/10596e20e8)] - **test**: fix backtick usage in docs (Aviv Keller) [#&#8203;52643](https://github.com/nodejs/node/pull/52643)
    
  • [`b2f754c9f1`](https://github.com/nodejs/node/commit/b2f754c9f1)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#&#8203;52645](https://github.com/nodejs/node/pull/52645)
    
  • [`ed080d868d`](https://github.com/nodejs/node/commit/ed080d868d)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#&#8203;52563](https://github.com/nodejs/node/pull/52563)
    
  • [`c8c61737e4`](https://github.com/nodejs/node/commit/c8c61737e4)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#&#8203;52431](https://github.com/nodejs/node/pull/52431)
    
  • [`18aa5d6640`](https://github.com/nodejs/node/commit/18aa5d6640)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#&#8203;52538](https://github.com/nodejs/node/pull/52538)
    
  • [`e34e0a9ba1`](https://github.com/nodejs/node/commit/e34e0a9ba1)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#&#8203;52511](https://github.com/nodejs/node/pull/52511)
    
  • [`e247a61d15`](https://github.com/nodejs/node/commit/e247a61d15)] - **(SEMVER-MINOR)** **test_runner**: add --test-skip-pattern cli option (Aviv Keller) [#&#8203;52529](https://github.com/nodejs/node/pull/52529)
    
  • [`e066ba2ae4`](https://github.com/nodejs/node/commit/e066ba2ae4)] - **test_runner**: better error handing for test hook (Alex Yang) [#&#8203;52401](https://github.com/nodejs/node/pull/52401)
    
  • [`328755341d`](https://github.com/nodejs/node/commit/328755341d)] - **test_runner**: don't exceed call stack when filtering (Colin Ihrig) [#&#8203;52488](https://github.com/nodejs/node/pull/52488)
    
  • [`b4ccb6c626`](https://github.com/nodejs/node/commit/b4ccb6c626)] - **test_runner**: move end of work check to finalize() (Colin Ihrig) [#&#8203;52488](https://github.com/nodejs/node/pull/52488)
    
  • [`2ef9380472`](https://github.com/nodejs/node/commit/2ef9380472)] - **tools**: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) [#&#8203;52729](https://github.com/nodejs/node/pull/52729)
    
  • [`db421bdefc`](https://github.com/nodejs/node/commit/db421bdefc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#&#8203;52669](https://github.com/nodejs/node/pull/52669)
    
  • [`01103a85cb`](https://github.com/nodejs/node/commit/01103a85cb)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#&#8203;52624](https://github.com/nodejs/node/pull/52624)
    
  • [`382d951b01`](https://github.com/nodejs/node/commit/382d951b01)] - **tools**: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) [#&#8203;52617](https://github.com/nodejs/node/pull/52617)
    
  • [`f9ddd77ff3`](https://github.com/nodejs/node/commit/f9ddd77ff3)] - **tools**: add lint rule to keep primordials in ASCII order (Antoine du Hamel) [#&#8203;52592](https://github.com/nodejs/node/pull/52592)
    
  • [`552642a498`](https://github.com/nodejs/node/commit/552642a498)] - **tools**: update lint-md-dependencies (Rich Trott) [#&#8203;52581](https://github.com/nodejs/node/pull/52581)
    
  • [`df61feb655`](https://github.com/nodejs/node/commit/df61feb655)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#&#8203;52561](https://github.com/nodejs/node/pull/52561)
    
  • [`6b4bbfbb1f`](https://github.com/nodejs/node/commit/6b4bbfbb1f)] - **tools**: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) [#&#8203;52518](https://github.com/nodejs/node/pull/52518)
    
  • [`4e5ce3afb7`](https://github.com/nodejs/node/commit/4e5ce3afb7)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#&#8203;50714](https://github.com/nodejs/node/pull/50714)
    
  • [`15c5686381`](https://github.com/nodejs/node/commit/15c5686381)] - **tools**: update minimatch index path (Marco Ippolito) [#&#8203;52523](https://github.com/nodejs/node/pull/52523)
    
  • [`8ae1507ae1`](https://github.com/nodejs/node/commit/8ae1507ae1)] - **tools**: add a linter for README lists (Antoine du Hamel) [#&#8203;52476](https://github.com/nodejs/node/pull/52476)
    
  • [`0b970316bc`](https://github.com/nodejs/node/commit/0b970316bc)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#&#8203;52659](https://github.com/nodejs/node/pull/52659)
    
  • [`9b18df9dcb`](https://github.com/nodejs/node/commit/9b18df9dcb)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280)
    
  • [`d33131af3a`](https://github.com/nodejs/node/commit/d33131af3a)] - **vm**: fix ASCII-betical order (Aviv Keller) [#&#8203;52686](https://github.com/nodejs/node/pull/52686)
    
    

v22.0.0: 2024-04-24, Version 22.0.0 (Current), @​RafaelGSS and @​marco-ippolito

Compare Source

We're excited to announce the release of Node.js 22!
Highlights include require()ing ESM graphs, WebSocket client, updates of the V8 JavaScript engine, and more!
As a reminder, Node.js 22 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.

Other Notable Changes
  • [`25c79f3331`](https://github.com/nodejs/node/commit/25c79f3331)] - **esm**: drop support for import assertions (Nicolò Ribaudo) [#&#8203;52104](https://github.com/nodejs/node/pull/52104)
    
  • [`818c10e86d`](https://github.com/nodejs/node/commit/818c10e86d)] - **lib**: improve perf of `AbortSignal` creation (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408)
    
  • [`4f68c7c1c9`](https://github.com/nodejs/node/commit/4f68c7c1c9)] - **watch**: mark as stable (Moshe Atlow) [#&#8203;52074](https://github.com/nodejs/node/pull/52074)
    
  • [`02b0bc01fe`](https://github.com/nodejs/node/commit/02b0bc01fe)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.4.254.14 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`c975384264`](https://github.com/nodejs/node/commit/c975384264)] - **(SEMVER-MAJOR)** **lib**: enable WebSocket by default (Aras Abbasi) [#&#8203;51594](https://github.com/nodejs/node/pull/51594)
    
  • [`1abff07392`](https://github.com/nodejs/node/commit/1abff07392)] - **(SEMVER-MAJOR)** **stream**: bump default highWaterMark (Robert Nagy) [#&#8203;52037](https://github.com/nodejs/node/pull/52037)
    
  • [`1a5acd0638`](https://github.com/nodejs/node/commit/1a5acd0638)] - **(SEMVER-MAJOR)** **v8**: enable maglev on supported architectures (Keyhan Vakil) [#&#8203;51360](https://github.com/nodejs/node/pull/51360)
    
  • [`128c60d906`](https://github.com/nodejs/node/commit/128c60d906)] - **(SEMVER-MINOR)** **cli**: implement `node --run <script-in-package-json>` (Yagiz Nizipli) [#&#8203;52190](https://github.com/nodejs/node/pull/52190)
    
  • [`151d365ad1`](https://github.com/nodejs/node/commit/151d365ad1)] - **(SEMVER-MINOR)** **fs**: expose glob and globSync (Moshe Atlow) [#&#8203;51912](https://github.com/nodejs/node/pull/51912)
    
  • [`5f7fad2605`](https://github.com/nodejs/node/commit/5f7fad2605)] - **(SEMVER-MINOR)** **module**: support require()ing synchronous ESM graphs (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977)
    
    
Semver-Major Commits
  • [`2b1e7c2fcb`](https://github.com/nodejs/node/commit/2b1e7c2fcb)] - **(SEMVER-MAJOR)** **build**: compile with C++20 support on Windows (StefanStojanovic) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`12d00f1479`](https://github.com/nodejs/node/commit/12d00f1479)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`5f08e11a3c`](https://github.com/nodejs/node/commit/5f08e11a3c)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`94f0369d1d`](https://github.com/nodejs/node/commit/94f0369d1d)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`58674cd1d8`](https://github.com/nodejs/node/commit/58674cd1d8)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`60e836427e`](https://github.com/nodejs/node/commit/60e836427e)] - **(SEMVER-MAJOR)** **console**: treat non-strings as separate argument in console.assert() (Jacob Hummer) [#&#8203;49722](https://github.com/nodejs/node/pull/49722)
    
  • [`d62ab3a1ef`](https://github.com/nodejs/node/commit/d62ab3a1ef)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate hmac constructor (Marco Ippolito) [#&#8203;52071](https://github.com/nodejs/node/pull/52071)
    
  • [`de0602d190`](https://github.com/nodejs/node/commit/de0602d190)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate Hash constructor (Marco Ippolito) [#&#8203;51880](https://github.com/nodejs/node/pull/51880)
    
  • [`215f4d04b7`](https://github.com/nodejs/node/commit/215f4d04b7)] - **(SEMVER-MAJOR)** **crypto**: move createCipher and createDecipher to eol (Marco Ippolito) [#&#8203;50973](https://github.com/nodejs/node/pull/50973)
    
  • [`30801b8aaf`](https://github.com/nodejs/node/commit/30801b8aaf)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`cd10ad7`](https://github.com/nodejs/node/commit/cd10ad7cdbe5) (Joyee Cheung) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`521b629ab1`](https://github.com/nodejs/node/commit/521b629ab1)] - **(SEMVER-MAJOR)** **deps**: V8: revert CL [`5331688`](https://github.com/nodejs/node/commit/5331688) (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`3795e97e6c`](https://github.com/nodejs/node/commit/3795e97e6c)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (StefanStojanovic) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`5bde9e677d`](https://github.com/nodejs/node/commit/5bde9e677d)] - **(SEMVER-MAJOR)** **deps**: silence internal V8 deprecation warning (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`46e628c6f2`](https://github.com/nodejs/node/commit/46e628c6f2)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`f824e40a82`](https://github.com/nodejs/node/commit/f824e40a82)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`d2c84c9a13`](https://github.com/nodejs/node/commit/d2c84c9a13)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`95d6045bdb`](https://github.com/nodejs/node/commit/95d6045bdb)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`00f55f5743`](https://github.com/nodejs/node/commit/00f55f5743)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`764085aa66`](https://github.com/nodejs/node/commit/764085aa66)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`02b0bc01fe`](https://github.com/nodejs/node/commit/02b0bc01fe)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.4.254.14 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`0ec50a19dd`](https://github.com/nodejs/node/commit/0ec50a19dd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`cd10ad7`](https://github.com/nodejs/node/commit/cd10ad7cdbe5) (Joyee Cheung) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`021b0b7dee`](https://github.com/nodejs/node/commit/021b0b7dee)] - **(SEMVER-MAJOR)** **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`681aaf85c7`](https://github.com/nodejs/node/commit/681aaf85c7)] - **(SEMVER-MAJOR)** **deps**: silence internal V8 deprecation warning (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`c563a1c4e4`](https://github.com/nodejs/node/commit/c563a1c4e4)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (Stefan Stojanovic) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`11e94b9987`](https://github.com/nodejs/node/commit/11e94b9987)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`856163e23c`](https://github.com/nodejs/node/commit/856163e23c)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`b530214127`](https://github.com/nodejs/node/commit/b530214127)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`8054f69dd9`](https://github.com/nodejs/node/commit/8054f69dd9)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`dee908be42`](https://github.com/nodejs/node/commit/dee908be42)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`cf069414ee`](https://github.com/nodejs/node/commit/cf069414ee)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`cc5792dd85`](https://github.com/nodejs/node/commit/cc5792dd85)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.3.219.16 (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`61a0d3b4c4`](https://github.com/nodejs/node/commit/61a0d3b4c4)] - **(SEMVER-MAJOR)** **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`f55380a725`](https://github.com/nodejs/node/commit/f55380a725)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`f8d5e57`](https://github.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`b9d806a2dd`](https://github.com/nodejs/node/commit/b9d806a2dd)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (StefanStojanovic) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`63b58bc17b`](https://github.com/nodejs/node/commit/63b58bc17b)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`86056353c4`](https://github.com/nodejs/node/commit/86056353c4)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`2e0efc1c8d`](https://github.com/nodejs/node/commit/2e0efc1c8d)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`59e6f62e34`](https://github.com/nodejs/node/commit/59e6f62e34)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`0423f7e27e`](https://github.com/nodejs/node/commit/0423f7e27e)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`f36620806d`](https://github.com/nodejs/node/commit/f36620806d)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`09a8440b45`](https://github.com/nodejs/node/commit/09a8440b45)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.2.281.27 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`0da3beebfc`](https://github.com/nodejs/node/commit/0da3beebfc)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`de611e6`](https://github.com/nodejs/node/commit/de611e69ad51) (Keyhan Vakil) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`b982335637`](https://github.com/nodejs/node/commit/b982335637)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0fd478b`](https://github.com/nodejs/node/commit/0fd478bcdabd) (Joyee Cheung) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`481a90116c`](https://github.com/nodejs/node/commit/481a90116c)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0f9ebbc`](https://github.com/nodejs/node/commit/0f9ebbc672c7) (Chengzhong Wu) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`782addbdc3`](https://github.com/nodejs/node/commit/782addbdc3)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`8f0b946`](https://github.com/nodejs/node/commit/8f0b94671ddb) (Lu Yahan) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`b682e7f540`](https://github.com/nodejs/node/commit/b682e7f540)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`f7d000a`](https://github.com/nodejs/node/commit/f7d000a7ae7b) (Luke Albao) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`a60090c52f`](https://github.com/nodejs/node/commit/a60090c52f)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`2590224`](https://github.com/nodejs/node/commit/25902244ad1a) (Joyee Cheung) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`8441d1fc18`](https://github.com/nodejs/node/commit/8441d1fc18)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`e8e9bbd7a9`](https://github.com/nodejs/node/commit/e8e9bbd7a9)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`785d5cd006`](https://github.com/nodejs/node/commit/785d5cd006)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`7071c1dafd`](https://github.com/nodejs/node/commit/7071c1dafd)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`d1d60b297d`](https://github.com/nodejs/node/commit/d1d60b297d)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`5b240c62f9`](https://github.com/nodejs/node/commit/5b240c62f9)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`d8c97e4857`](https://github.com/nodejs/node/commit/d8c97e4857)] - **(SEMVER-MAJOR)** **deps**: update V8 to 11.9.169.7 (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`b9df88a8c2`](https://github.com/nodejs/node/commit/b9df88a8c2)] - **(SEMVER-MAJOR)** **doc**: runtime deprecate flag --trace-atomics-wait (marco-ippolito) [#&#8203;51179](https://github.com/nodejs/node/pull/51179)
    
  • [`9ba5df30b4`](https://github.com/nodejs/node/commit/9ba5df30b4)] - **(SEMVER-MAJOR)** **doc**: bump FreeBSD experimental support to 13.2 (Michaël Zasso) [#&#8203;51231](https://github.com/nodejs/node/pull/51231)
    
  • [`900d79caf2`](https://github.com/nodejs/node/commit/900d79caf2)] - **(SEMVER-MAJOR)** **doc**: add migration paths for deprecated utils (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`8206f6bb7f`](https://github.com/nodejs/node/commit/8206f6bb7f)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate fs.Stats constructor (Marco Ippolito) [#&#8203;52067](https://github.com/nodejs/node/pull/52067)
    
  • [`c14133503a`](https://github.com/nodejs/node/commit/c14133503a)] - **(SEMVER-MAJOR)** **fs**: use private fields instead of symbols for `Dir` (Jungku Lee) [#&#8203;51037](https://github.com/nodejs/node/pull/51037)
    
  • [`abbdc3efaa`](https://github.com/nodejs/node/commit/abbdc3efaa)] - **(SEMVER-MAJOR)** **fs**: make stats date fields lazy (Yagiz Nizipli) [#&#8203;50908](https://github.com/nodejs/node/pull/50908)
    
  • [`4b76ccea95`](https://github.com/nodejs/node/commit/4b76ccea95)] - **(SEMVER-MAJOR)** **http**: preserve raw header duplicates in writeHead after setHeader calls (Tim Perry) [#&#8203;50394](https://github.com/nodejs/node/pull/50394)
    
  • [`c975384264`](https://github.com/nodejs/node/commit/c975384264)] - **(SEMVER-MAJOR)** **lib**: enable WebSocket by default (Aras Abbasi) [#&#8203;51594](https://github.com/nodejs/node/pull/51594)
    
  • [`351495e938`](https://github.com/nodejs/node/commit/351495e938)] - **(SEMVER-MAJOR)** **lib,test**: handle new Iterator global (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`a8b21fdc90`](https://github.com/nodejs/node/commit/a8b21fdc90)] - **(SEMVER-MAJOR)** **process**: wait for `'exit'` before printing result (Antoine du Hamel) [#&#8203;52172](https://github.com/nodejs/node/pull/52172)
    
  • [`582ff5037c`](https://github.com/nodejs/node/commit/582ff5037c)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 127 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`c5c4b50260`](https://github.com/nodejs/node/commit/c5c4b50260)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 126 (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293)
    
  • [`d248639285`](https://github.com/nodejs/node/commit/d248639285)] - **(SEMVER-MAJOR)** **src**: use supported API to get stalled TLA messages (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`d34b02db4c`](https://github.com/nodejs/node/commit/d34b02db4c)] - **(SEMVER-MAJOR)** **src**: update default V8 platform to override functions with location (Etienne Pierre-Doray) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`d9c47e9b5f`](https://github.com/nodejs/node/commit/d9c47e9b5f)] - **(SEMVER-MAJOR)** **src**: add missing TryCatch (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`5cddd3b2d8`](https://github.com/nodejs/node/commit/5cddd3b2d8)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 124 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`1528846ada`](https://github.com/nodejs/node/commit/1528846ada)] - **(SEMVER-MAJOR)** **src**: use non-deprecated v8::Uint8Array::kMaxLength (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`7166986626`](https://github.com/nodejs/node/commit/7166986626)] - **(SEMVER-MAJOR)** **src**: adapt to v8::Exception API change (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`4782818020`](https://github.com/nodejs/node/commit/4782818020)] - **(SEMVER-MAJOR)** **src**: use non-deprecated version of CreateSyntheticModule (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`2cff0ce411`](https://github.com/nodejs/node/commit/2cff0ce411)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 122 (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`1abff07392`](https://github.com/nodejs/node/commit/1abff07392)] - **(SEMVER-MAJOR)** **stream**: bump default highWaterMark (Robert Nagy) [#&#8203;52037](https://github.com/nodejs/node/pull/52037)
    
  • [`9efc84a2cb`](https://github.com/nodejs/node/commit/9efc84a2cb)] - **(SEMVER-MAJOR)** **test**: mark test-worker-arraybuffer-zerofill as flaky (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`84c2e712eb`](https://github.com/nodejs/node/commit/84c2e712eb)] - **(SEMVER-MAJOR)** **test**: mark some GC-related tests as flaky (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`cdc4437b87`](https://github.com/nodejs/node/commit/cdc4437b87)] - **(SEMVER-MAJOR)** **test**: allow slightly more diff in memory leak test (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`515b007fae`](https://github.com/nodejs/node/commit/515b007fae)] - **(SEMVER-MAJOR)** **test**: replace always-opt flag with alway-turbofan (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`2341805eb2`](https://github.com/nodejs/node/commit/2341805eb2)] - **(SEMVER-MAJOR)** **test**: remove tests that create very large buffers (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`941cef5636`](https://github.com/nodejs/node/commit/941cef5636)] - **(SEMVER-MAJOR)** **test**: adapt to new V8 trusted memory spaces (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`29de7f82cd`](https://github.com/nodejs/node/commit/29de7f82cd)] - **(SEMVER-MAJOR)** **test_runner**: omit filtered test from output (Colin Ihrig) [#&#8203;52221](https://github.com/nodejs/node/pull/52221)
    
  • [`00dc6d9d97`](https://github.com/nodejs/node/commit/00dc6d9d97)] - **(SEMVER-MAJOR)** **test_runner**: improve `--test-name-pattern` to allow matching single test (Michał Drobniak) [#&#8203;51577](https://github.com/nodejs/node/pull/51577)
    
  • [`5def8019d5`](https://github.com/nodejs/node/commit/5def8019d5)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.4 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465)
    
  • [`c22793d050`](https://github.com/nodejs/node/commit/c22793d050)] - **(SEMVER-MAJOR)** **tools**: roughly port v8\_abseil to gyp (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`ffb0302f0c`](https://github.com/nodejs/node/commit/ffb0302f0c)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.2 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`aadea12440`](https://github.com/nodejs/node/commit/aadea12440)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.1 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`7784773967`](https://github.com/nodejs/node/commit/7784773967)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.0 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362)
    
  • [`9fe0424baa`](https://github.com/nodejs/node/commit/9fe0424baa)] - **(SEMVER-MAJOR)** **trace_events**: use private fields instead of symbols for `Tracing` (Jungku Lee) [#&#8203;51180](https://github.com/nodejs/node/pull/51180)
    
  • [`e96cd25007`](https://github.com/nodejs/node/commit/e96cd25007)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.log (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`6cf20d5e43`](https://github.com/nodejs/node/commit/6cf20d5e43)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isUndefined (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`09e424921f`](https://github.com/nodejs/node/commit/09e424921f)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isSymbol (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`80b6bfd4e9`](https://github.com/nodejs/node/commit/80b6bfd4e9)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isString (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`d419edded9`](https://github.com/nodejs/node/commit/d419edded9)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isRegExp (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`e0b8de78ed`](https://github.com/nodejs/node/commit/e0b8de78ed)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isPrimitive (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`5478e1129a`](https://github.com/nodejs/node/commit/5478e1129a)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isObject (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`b05b1dd541`](https://github.com/nodejs/node/commit/b05b1dd541)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isNumber (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`5af9bf5f6a`](https://github.com/nodejs/node/commit/5af9bf5f6a)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isNullOrUndefined (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`860a10e10e`](https://github.com/nodejs/node/commit/860a10e10e)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isNull (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`70330f5c2b`](https://github.com/nodejs/node/commit/70330f5c2b)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isFunction (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`7c69c33acc`](https://github.com/nodejs/node/commit/7c69c33acc)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isError (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`a0c5b871a9`](https://github.com/nodejs/node/commit/a0c5b871a9)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isDate (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`3c670cb15d`](https://github.com/nodejs/node/commit/3c670cb15d)] - **(SEMVER-MAJOR)** **util**: runtime deprecation util.isBuffer (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`c17a448ca9`](https://github.com/nodejs/node/commit/c17a448ca9)] - **(SEMVER-MAJOR)** **util**: runtime deprecation util.isBoolean (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`fbb2f891aa`](https://github.com/nodejs/node/commit/fbb2f891aa)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isArray (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`22d8062e42`](https://github.com/nodejs/node/commit/22d8062e42)] - **(SEMVER-MAJOR)** **util**: runtime deprecation util.\_extend (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488)
    
  • [`1a5acd0638`](https://github.com/nodejs/node/commit/1a5acd0638)] - **(SEMVER-MAJOR)** **v8**: enable maglev on supported architectures (Keyhan Vakil) [#&#8203;51360](https://github.com/nodejs/node/pull/51360)
    
    
Semver-Minor Commits
  • [`128c60d906`](https://github.com/nodejs/node/commit/128c60d906)] - **(SEMVER-MINOR)** **cli**: implement `node --run <script-in-package-json>` (Yagiz Nizipli) [#&#8203;52190](https://github.com/nodejs/node/pull/52190)
    
  • [`f69946b905`](https://github.com/nodejs/node/commit/f69946b905)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#&#8203;52138](https://github.com/nodejs/node/pull/52138)
    
  • [`828ad42eee`](https://github.com/nodejs/node/commit/828ad42eee)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#&#8203;51462](https://github.com/nodejs/node/pull/51462)
    
  • [`05f8172188`](https://github.com/nodejs/node/commit/05f8172188)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#&#8203;51278](https://github.com/nodejs/node/pull/51278)
    
  • [`a0c466810a`](https://github.com/nodejs/node/commit/a0c466810a)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#&#8203;51879](https://github.com/nodejs/node/pull/51879)
    
  • [`151d365ad1`](https://github.com/nodejs/node/commit/151d365ad1)] - **(SEMVER-MINOR)** **fs**: expose glob and globSync (Moshe Atlow) [#&#8203;51912](https://github.com/nodejs/node/pull/51912)
    
  • [`5f7fad2605`](https://github.com/nodejs/node/commit/5f7fad2605)] - **(SEMVER-MINOR)** **module**: support require()ing synchronous ESM graphs (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977)
    
  • [`009665fb56`](https://github.com/nodejs/node/commit/009665fb56)] - **(SEMVER-MINOR)** **report**: add `--report-exclude-network` option (Ethan Arrowood) [#&#8203;51645](https://github.com/nodejs/node/pull/51645)
    
  • [`80f86e5d02`](https://github.com/nodejs/node/commit/80f86e5d02)] - **(SEMVER-MINOR)** **src**: add C++ ProcessEmitWarningSync() (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977)
    
  • [`78be0d0f1c`](https://github.com/nodejs/node/commit/78be0d0f1c)] - **(SEMVER-MINOR)** **src**: add uv_get_available_memory to report and process (theanarkh) [#&#8203;52023](https://github.com/nodejs/node/pull/52023)
    
  • [`b34512e38e`](https://github.com/nodejs/node/commit/b34512e38e)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#&#8203;51539](https://github.com/nodejs/node/pull/51539)
    
  • [`7d258db1d7`](https://github.com/nodejs/node/commit/7d258db1d7)] - **(SEMVER-MINOR)** **stream**: support typed arrays (IlyasShabi) [#&#8203;51866](https://github.com/nodejs/node/pull/51866)
    
  • [`5276c0d5d4`](https://github.com/nodejs/node/commit/5276c0d5d4)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#&#8203;52127](https://github.com/nodejs/node/pull/52127)
    
  • [`84de97a61e`](https://github.com/nodejs/node/commit/84de97a61e)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#&#8203;52038](https://github.com/nodejs/node/pull/52038)
    
  • [`aac5ad901d`](https://github.com/nodejs/node/commit/aac5ad901d)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#&#8203;51909](https://github.com/nodejs/node/pull/51909)
    
  • [`9a1e01c4ce`](https://github.com/nodejs/node/commit/9a1e01c4ce)] - **(SEMVER-MINOR)** **util**: support array of formats in util.styleText (Marco Ippolito) [#&#8203;52040](https://github.com/nodejs/node/pull/52040)
    
  • [`7f2d61f82a`](https://github.com/nodejs/node/commit/7f2d61f82a)] - **(SEMVER-MINOR)** **v8**: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) [#&#8203;51927](https://github.com/nodejs/node/pull/51927)
    
  • [`d1d5da22e4`](https://github.com/nodejs/node/commit/d1d5da22e4)] - **(SEMVER-MINOR)** **vm**: harden module type checks (Chengzhong Wu) [#&#8203;52162](https://github.com/nodejs/node/pull/52162)
    
    
Semver-Patch Commits
  • [`a760dadec3`](https://github.com/nodejs/node/commit/a760dadec3)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408)
    
  • [`47c934e464`](https://github.com/nodejs/node/commit/47c934e464)] - **benchmark**: conditionally use spawn with taskset for cpu pinning (Ali Hassan) [#&#8203;52253](https://github.com/nodejs/node/pull/52253)
    
  • [`dde0cffb2e`](https://github.com/nodejs/node/commit/dde0cffb2e)] - **benchmark**: add toNamespacedPath bench (Rafael Gonzaga) [#&#8203;52236](https://github.com/nodejs/node/pull/52236)
    
  • [`bda66ad711`](https://github.com/nodejs/node/commit/bda66ad711)] - **benchmark**: add style-text benchmark (Rafael Gonzaga) [#&#8203;52004](https://github.com/nodejs/node/pull/52004)
    
  • [`21211a3fa9`](https://github.com/nodejs/node/commit/21211a3fa9)] - **buffer**: improve `btoa` performance (Yagiz Nizipli) [#&#8203;52427](https://github.com/nodejs/node/pull/52427)
    
  • [`6f504b71ac`](https://github.com/nodejs/node/commit/6f504b71ac)] - **buffer**: use simdutf for `atob` implementation (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381)
    
  • [`0ce7365856`](https://github.com/nodejs/node/commit/0ce7365856)] - **build**: temporary disable ubsan (Rafael Gonzaga) [#&#8203;52560](https://github.com/nodejs/node/pull/52560)
    
  • [`4e278f0253`](https://github.com/nodejs/node/commit/4e278f0253)] - **build**: speed up compilation of some V8 files (Michaël Zasso) [#&#8203;52083](https://github.com/nodejs/node/pull/52083)
    
  • [`ba06c5c509`](https://github.com/nodejs/node/commit/ba06c5c509)] - **build,tools**: add test-ubsan ci (Rafael Gonzaga) [#&#8203;46297](https://github.com/nodejs/node/pull/46297)
    
  • [`562369f348`](https://github.com/nodejs/node/commit/562369f348)] - **child_process**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`8f61b658de`](https://github.com/nodejs/node/commit/8f61b658de)] - **crypto**: deprecate implicitly shortened GCM tags (Tobias Nießen) [#&#8203;52345](https://github.com/nodejs/node/pull/52345)
    
  • [`08609b5222`](https://github.com/nodejs/node/commit/08609b5222)] - **crypto**: make timingSafeEqual faster for Uint8Array (Tobias Nießen) [#&#8203;52341](https://github.com/nodejs/node/pull/52341)
    
  • [`9f939f5af7`](https://github.com/nodejs/node/commit/9f939f5af7)] - **crypto**: reject [`Ed25519`](https://github.com/nodejs/node/commit/Ed25519)/Ed448 in Sign/Verify prototypes (Filip Skokan) [#&#8203;52340](https://github.com/nodejs/node/pull/52340)
    
  • [`2241e8c5b3`](https://github.com/nodejs/node/commit/2241e8c5b3)] - **crypto**: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) [#&#8203;52262](https://github.com/nodejs/node/pull/52262)
    
  • [`6dd1c75f4a`](https://github.com/nodejs/node/commit/6dd1c75f4a)] - **crypto**: fix `input` validation in `crypto.hash` (Antoine du Hamel) [#&#8203;52070](https://github.com/nodejs/node/pull/52070)
    
  • [`a1d48f4a26`](https://github.com/nodejs/node/commit/a1d48f4a26)] - **deps**: update simdutf to 5.2.4 (Node.js GitHub Bot) [#&#8203;52473](https://github.com/nodejs/node/pull/52473)
    
  • [`08ff4a0c9d`](https://github.com/nodejs/node/commit/08ff4a0c9d)] - **deps**: update nghttp2 to 1.61.0 (Node.js GitHub Bot) [#&#8203;52395](https://github.com/nodejs/node/pull/52395)
    
  • [`cf629366b9`](https://github.com/nodejs/node/commit/cf629366b9)] - **deps**: update simdutf to 5.2.3 (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381)
    
  • [`ad86a12964`](https://github.com/nodejs/node/commit/ad86a12964)] - **deps**: upgrade npm to 10.5.1 (npm team) [#&#8203;52351](https://github.com/nodejs/node/pull/52351)
    
  • [`45cc32c9c6`](https://github.com/nodejs/node/commit/45cc32c9c6)] - **deps**: update c-ares to 1.28.1 (Node.js GitHub Bot) [#&#8203;52285](https://github.com/nodejs/node/pull/52285)
    
  • [`38161c38d9`](https://github.com/nodejs/node/commit/38161c38d9)] - **deps**: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) [#&#8203;52199](https://github.com/nodejs/node/pull/52199)
    
  • [`1264414700`](https://github.com/nodejs/node/commit/1264414700)] - **deps**: update simdjson to 3.8.0 (Node.js GitHub Bot) [#&#8203;52124](https://github.com/nodejs/node/pull/52124)
    
  • [`f6996ee150`](https://github.com/nodejs/node/commit/f6996ee150)] - **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183)
    
  • [`0d4bc4c40e`](https://github.com/nodejs/node/commit/0d4bc4c40e)] - **deps**: V8: cherry-pick [`f8d5e57`](https://github.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183)
    
  • [`70a05103c8`](https://github.com/nodejs/node/commit/70a05103c8)] - **deps**: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) [#&#8203;52123](https://github.com/nodejs/node/pull/52123)
    
  • [`4c3e9659ed`](https://github.com/nodejs/node/commit/4c3e9659ed)] - **deps**: update corepack to 0.26.0 (Node.js GitHub Bot) [#&#8203;52027](https://github.com/nodejs/node/pull/52027)
    
  • [`0b4cdb4b42`](https://github.com/nodejs/node/commit/0b4cdb4b42)] - **deps**: update ada to 2.7.7 (Node.js GitHub Bot) [#&#8203;52028](https://github.com/nodejs/node/pull/52028)
    
  • [`b241a1d0ae`](https://github.com/nodejs/node/commit/b241a1d0ae)] - **deps**: update simdutf to 4.0.9 (Node.js GitHub Bot) [#&#8203;51655](https://github.com/nodejs/node/pull/51655)
    
  • [`36dcd399c0`](https://github.com/nodejs/node/commit/36dcd399c0)] - **deps**: upgrade libuv to 1.48.0 (Santiago Gimeno) [#&#8203;51697](https://github.com/nodejs/node/pull/51697)
    
  • [`8cf313cd72`](https://github.com/nodejs/node/commit/8cf313cd72)] - **deps**: update undici to 6.6.0 (Node.js GitHub Bot) [#&#8203;51630](https://github.com/nodejs/node/pull/51630)
    
  • [`dd4767f99f`](https://github.com/nodejs/node/commit/dd4767f99f)] - **deps**: update undici to 6.4.0 (Node.js GitHub Bot) [#&#8203;51527](https://github.com/nodejs/node/pull/51527)
    
  • [`8362caa7d8`](https://github.com/nodejs/node/commit/8362caa7d8)] - **dgram**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`4f3cf4e89a`](https://github.com/nodejs/node/commit/4f3cf4e89a)] - **diagnostics_channel**: early-exit tracing channel trace methods (Stephen Belanger) [#&#8203;51915](https://github.com/nodejs/node/pull/51915)
    
  • [`204018bba6`](https://github.com/nodejs/node/commit/204018bba6)] - **doc**: deprecate --experimental-policy (RafaelGSS) [#&#8203;52602](https://github.com/nodejs/node/pull/52602)
    
  • [`d32a914ac7`](https://github.com/nodejs/node/commit/d32a914ac7)] - **doc**: add lint-js-fix into BUILDING.md (jakecastelli) [#&#8203;52290](https://github.com/nodejs/node/pull/52290)
    
  • [`411503bacd`](https://github.com/nodejs/node/commit/411503bacd)] - **doc**: remove Internet Explorer mention in BUILDING.md (Rich Trott) [#&#8203;52455](https://github.com/nodejs/node/pull/52455)
    
  • [`e9ccf5aba2`](https://github.com/nodejs/node/commit/e9ccf5aba2)] - **doc**: accommodate upcoming stricter .md linting (Rich Trott) [#&#8203;52454](https://github.com/nodejs/node/pull/52454)
    
  • [`b4186ec2c1`](https://github.com/nodejs/node/commit/b4186ec2c1)] - **doc**: add Rafael to steward list (Rafael Gonzaga) [#&#8203;52452](https://github.com/nodejs/node/pull/52452)
    
  • [`7b01bfb2be`](https://github.com/nodejs/node/commit/7b01bfb2be)] - **doc**: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) [#&#8203;52424](https://github.com/nodejs/node/pull/52424)
    
  • [`c82f3c9e80`](https://github.com/nodejs/node/commit/c82f3c9e80)] - **doc**: update `process.execArg` example to be more useful (Jacob Smith) [#&#8203;52412](https://github.com/nodejs/node/pull/52412)
    
  • [`655b327a4d`](https://github.com/nodejs/node/commit/655b327a4d)] - **doc**: call out http(s).globalAgent default (mathis-west-1) [#&#8203;52392](https://github.com/nodejs/node/pull/52392)
    
  • [`2c77be5488`](https://github.com/nodejs/node/commit/2c77be5488)] - **doc**: update the location of `build_with_cmake` (Emmanuel Ferdman) [#&#8203;52356](https://github.com/nodejs/node/pull/52356)
    
  • [`7dd514f2db`](https://github.com/nodejs/node/commit/7dd514f2db)] - **doc**: reserve 125 for Electron 31 (Shelley Vohr) [#&#8203;52379](https://github.com/nodejs/node/pull/52379)
    
  • [`756acd0877`](https://github.com/nodejs/node/commit/756acd0877)] - **doc**: use consistent plural form of "index" (Rich Trott) [#&#8203;52373](https://github.com/nodejs/node/pull/52373)
    
  • [`ba07e4e5e6`](https://github.com/nodejs/node/commit/ba07e4e5e6)] - **doc**: fix typo in cli.md (Daeyeon Jeong) [#&#8203;52388](https://github.com/nodejs/node/pull/52388)
    
  • [`461d9d665d`](https://github.com/nodejs/node/commit/461d9d665d)] - **doc**: add Rafael to sec release stewards (Rafael Gonzaga) [#&#8203;52354](https://github.com/nodejs/node/pull/52354)
    
  • [`d0c364a844`](https://github.com/nodejs/node/commit/d0c364a844)] - **doc**: document missing options of events.on (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080)
    
  • [`a63261cf2c`](https://github.com/nodejs/node/commit/a63261cf2c)] - **doc**: add missing space (Augustin Mauroy) [#&#8203;52360](https://github.com/nodejs/node/pull/52360)
    
  • [`dd711d221a`](https://github.com/nodejs/node/commit/dd711d221a)] - **doc**: add tips about vcpkg cause build faild on windows (Cong Zhang) [#&#8203;52181](https://github.com/nodejs/node/pull/52181)
    
  • [`4df34cf6dd`](https://github.com/nodejs/node/commit/4df34cf6dd)] - **doc**: replace "below" with "following" (Rich Trott) [#&#8203;52315](https://github.com/nodejs/node/pull/52315)
    
  • [`d9aa33fdbf`](https://github.com/nodejs/node/commit/d9aa33fdbf)] - **doc**: fix email pattern to be wrapped with `<<` instead of single `<` (Raz Luvaton) [#&#8203;52284](https://github.com/nodejs/node/pull/52284)
    
  • [`903f28e684`](https://github.com/nodejs/node/commit/903f28e684)] - **doc**: update release gpg keyserver (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257)
    
  • [`fd55458770`](https://github.com/nodejs/node/commit/fd55458770)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257)
    
  • [`27493a1dd7`](https://github.com/nodejs/node/commit/27493a1dd7)] - **doc**: fix arrow vertical alignment in HTML version (Akash Yeole) [#&#8203;52193](https://github.com/nodejs/node/pull/52193)
    
  • [`af48641993`](https://github.com/nodejs/node/commit/af48641993)] - **doc**: move TSC members from regular to emeritus (Michael Dawson) [#&#8203;52209](https://github.com/nodejs/node/pull/52209)
    
  • [`fa13ed6d79`](https://github.com/nodejs/node/commit/fa13ed6d79)] - **doc**: add section explaining todo tests (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204)
    
  • [`312ebd97c2`](https://github.com/nodejs/node/commit/312ebd97c2)] - **doc**: edit `ChildProcess` `'message'` event docs (theanarkh) [#&#8203;52154](https://github.com/nodejs/node/pull/52154)
    
  • [`f1635f442f`](https://github.com/nodejs/node/commit/f1635f442f)] - **doc**: quote test_runner glob parameters (Fabian Meyer) [#&#8203;52201](https://github.com/nodejs/node/pull/52201)
    
  • [`fc029181df`](https://github.com/nodejs/node/commit/fc029181df)] - **doc**: add mold to speeding up section (Cong Zhang) [#&#8203;52179](https://github.com/nodejs/node/pull/52179)
    
  • [`8bd3cb2f8c`](https://github.com/nodejs/node/commit/8bd3cb2f8c)] - **doc**: http event order correction (wh0) [#&#8203;51464](https://github.com/nodejs/node/pull/51464)
    
  • [`a7f170e45a`](https://github.com/nodejs/node/commit/a7f170e45a)] - **doc**: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) [#&#8203;52192](https://github.com/nodejs/node/pull/52192)
    
  • [`305375ac16`](https://github.com/nodejs/node/commit/305375ac16)] - **doc**: fix `--env-file` docs for valid quotes for defining values (Gabriel Bota) [#&#8203;52157](https://github.com/nodejs/node/pull/52157)
    
  • [`3fcaf7b900`](https://github.com/nodejs/node/commit/3fcaf7b900)] - **doc**: clarify what is supported in NODE_OPTIONS (Michael Dawson) [#&#8203;52076](https://github.com/nodejs/node/pull/52076)
    
  • [`4fe87357f3`](https://github.com/nodejs/node/commit/4fe87357f3)] - **doc**: fix typos in maintaining-dependencies.md (RoboSchmied) [#&#8203;52160](https://github.com/nodejs/node/pull/52160)
    
  • [`f1949ac1ae`](https://github.com/nodejs/node/commit/f1949ac1ae)] - **doc**: add spec for contains module syntax (Geoffrey Booth) [#&#8203;52059](https://github.com/nodejs/node/pull/52059)
    
  • [`707155424b`](https://github.com/nodejs/node/commit/707155424b)] - **doc**: optimize the doc about Unix abstract socket (theanarkh) [#&#8203;52043](https://github.com/nodejs/node/pull/52043)
    
  • [`8a191e4e6a`](https://github.com/nodejs/node/commit/8a191e4e6a)] - **doc**: update pnpm link (Superchupu) [#&#8203;52113](https://github.com/nodejs/node/pull/52113)
    
  • [`454d0806a1`](https://github.com/nodejs/node/commit/454d0806a1)] - **doc**: remove ableist language from crypto (Jamie King) [#&#8203;52063](https://github.com/nodejs/node/pull/52063)
    
  • [`dafe004703`](https://github.com/nodejs/node/commit/dafe004703)] - **doc**: update collaborator email (Ruy Adorno) [#&#8203;52088](https://github.com/nodejs/node/pull/52088)
    
  • [`8824adb031`](https://github.com/nodejs/node/commit/8824adb031)] - **doc**: state that removing npm is a non-goal (Geoffrey Booth) [#&#8203;51951](https://github.com/nodejs/node/pull/51951)
    
  • [`b360532f1a`](https://github.com/nodejs/node/commit/b360532f1a)] - **doc**: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) [#&#8203;52057](https://github.com/nodejs/node/pull/52057)
    
  • [`57d2e4881c`](https://github.com/nodejs/node/commit/57d2e4881c)] - **doc**: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) [#&#8203;52069](https://github.com/nodejs/node/pull/52069)
    
  • [`e11c1d2315`](https://github.com/nodejs/node/commit/e11c1d2315)] - **doc**: add some commonly used lables up gront (Michael Dawson) [#&#8203;52006](https://github.com/nodejs/node/pull/52006)
    
  • [`8f9f5db1e8`](https://github.com/nodejs/node/commit/8f9f5db1e8)] - **doc**: document that `const c2 = vm.createContext(c1); c1 === c2` is true (Daniel Kaplan) [#&#8203;51960](https://github.com/nodejs/node/pull/51960)
    
  • [`d78a565713`](https://github.com/nodejs/node/commit/d78a565713)] - **doc**: clarify what moderation issues are for (Antoine du Hamel) [#&#8203;51990](https://github.com/nodejs/node/pull/51990)
    
  • [`4cac07c931`](https://github.com/nodejs/node/commit/4cac07c931)] - **doc**: add Hemanth HM mention to v21.7.0 changelog (Rafael Gonzaga) [#&#8203;52008](https://github.com/nodejs/node/pull/52008)
    
  • [`73025c4dec`](https://github.com/nodejs/node/commit/73025c4dec)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#&#8203;51991](https://github.com/nodejs/node/pull/51991)
    
  • [`999c6b34fb`](https://github.com/nodejs/node/commit/999c6b34fb)] - **doc**: test for cli options (Aras Abbasi) [#&#8203;51623](https://github.com/nodejs/node/pull/51623)
    
  • [`edd6190836`](https://github.com/nodejs/node/commit/edd6190836)] - **doc**: deprecate hmac public constructor (Marco Ippolito) [#&#8203;51881](https://github.com/nodejs/node/pull/51881)
    
  • [`25c79f3331`](https://github.com/nodejs/node/commit/25c79f3331)] - **esm**: drop support for import assertions (Nicolò Ribaudo) [#&#8203;52104](https://github.com/nodejs/node/pull/52104)
    
  • [`d619aab575`](https://github.com/nodejs/node/commit/d619aab575)] - **events**: rename high & low watermark for consistency (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080)
    
  • [`e263946c2e`](https://github.com/nodejs/node/commit/e263946c2e)] - **events**: extract addAbortListener for safe internal use (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`40ef2da8d6`](https://github.com/nodejs/node/commit/40ef2da8d6)] - **events**: remove abort listener from signal in `on` (Neal Beeken) [#&#8203;51091](https://github.com/nodejs/node/pull/51091)
    
  • [`61e5de1268`](https://github.com/nodejs/node/commit/61e5de1268)] - **fs**: refactor maybeCallback function (Yagiz Nizipli) [#&#8203;52129](https://github.com/nodejs/node/pull/52129)
    
  • [`39f1b899cd`](https://github.com/nodejs/node/commit/39f1b899cd)] - **fs**: fix edge case in readFileSync utf8 fast path (Richard Lau) [#&#8203;52101](https://github.com/nodejs/node/pull/52101)
    
  • [`639c096004`](https://github.com/nodejs/node/commit/639c096004)] - **fs**: validate fd from cpp on `fchown` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051)
    
  • [`9ac1fe05d7`](https://github.com/nodejs/node/commit/9ac1fe05d7)] - **fs**: validate fd from cpp on `close` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051)
    
  • [`3ec20f25df`](https://github.com/nodejs/node/commit/3ec20f25df)] - **fs**: validate file mode from cpp (Yagiz Nizipli) [#&#8203;52050](https://github.com/nodejs/node/pull/52050)
    
  • [`8c0b723ccb`](https://github.com/nodejs/node/commit/8c0b723ccb)] - **fs,permission**: make handling of buffers consistent (Tobias Nießen) [#&#8203;52348](https://github.com/nodejs/node/pull/52348)
    
  • [`3fc8d2200e`](https://github.com/nodejs/node/commit/3fc8d2200e)] - **http2**: fix h2-over-h2 connection proxying (Tim Perry) [#&#8203;52368](https://github.com/nodejs/node/pull/52368)
    
  • [`b9d8a14a03`](https://github.com/nodejs/node/commit/b9d8a14a03)] - **http2**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`818c10e86d`](https://github.com/nodejs/node/commit/818c10e86d)] - **lib**: improve perf of `AbortSignal` creation (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408)
    
  • [`3f5ff8dc20`](https://github.com/nodejs/node/commit/3f5ff8dc20)] - **lib**: .load .save add proper error message when no file passed (Thomas Mauran) [#&#8203;52225](https://github.com/nodejs/node/pull/52225)
    
  • [`0a252c23d9`](https://github.com/nodejs/node/commit/0a252c23d9)] - **lib**: fix type error for \_refreshLine (Jackson Tian) [#&#8203;52133](https://github.com/nodejs/node/pull/52133)
    
  • [`14de082ab4`](https://github.com/nodejs/node/commit/14de082ab4)] - **lib**: emit listening event once when call listen twice (theanarkh) [#&#8203;52119](https://github.com/nodejs/node/pull/52119)
    
  • [`4e9ce7c035`](https://github.com/nodejs/node/commit/4e9ce7c035)] - **lib**: make sure clear the old timer in http server (theanarkh) [#&#8203;52118](https://github.com/nodejs/node/pull/52118)
    
  • [`20525f14b9`](https://github.com/nodejs/node/commit/20525f14b9)] - **lib**: fix listen with handle in cluster worker (theanarkh) [#&#8203;52056](https://github.com/nodejs/node/pull/52056)
    
  • [`8df54481f4`](https://github.com/nodejs/node/commit/8df54481f4)] - **meta**: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot\[bot]) [#&#8203;52314](https://github.com/nodejs/node/pull/52314)
    
  • [`bcc102147a`](https://github.com/nodejs/node/commit/bcc102147a)] - **meta**: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot\[bot]) [#&#8203;52313](https://github.com/nodejs/node/pull/52313)
    
  • [`4e7e0ef9c3`](https://github.com/nodejs/node/commit/4e7e0ef9c3)] - **meta**: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot\[bot]) [#&#8203;52312](https://github.com/nodejs/node/pull/52312)
    
  • [`14a39881b8`](https://github.com/nodejs/node/commit/14a39881b8)] - **meta**: bump actions/cache from 4.0.1 to 4.0.2 (dependabot\[bot]) [#&#8203;52311](https://github.com/nodejs/node/pull/52311)
    
  • [`2f8f90dadb`](https://github.com/nodejs/node/commit/2f8f90dadb)] - **meta**: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot\[bot]) [#&#8203;52310](https://github.com/nodejs/node/pull/52310)
    
  • [`95efdaf01a`](https://github.com/nodejs/node/commit/95efdaf01a)] - **meta**: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;52308](https://github.com/nodejs/node/pull/52308)
    
  • [`24c1a8e739`](https://github.com/nodejs/node/commit/24c1a8e739)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52300](https://github.com/nodejs/node/pull/52300)
    
  • [`60dcfad91e`](https://github.com/nodejs/node/commit/60dcfad91e)] - **meta**: pass Codecov upload token to codecov action (Michaël Zasso) [#&#8203;51982](https://github.com/nodejs/node/pull/51982)
    
  • [`db1746182b`](https://github.com/nodejs/node/commit/db1746182b)] - **module**: disallow CJS <-> ESM edges in a cycle from require(esm) (Joyee Cheung) [#&#8203;52264](https://github.com/nodejs/node/pull/52264)
    
  • [`d6b57f6629`](https://github.com/nodejs/node/commit/d6b57f6629)] - **module**: centralize SourceTextModule compilation for builtin loader (Joyee Cheung) [#&#8203;52291](https://github.com/nodejs/node/pull/52291)
    
  • [`f4a0a3b04b`](https://github.com/nodejs/node/commit/f4a0a3b04b)] - **module**: warn on detection in typeless package (Geoffrey Booth) [#&#8203;52168](https://github.com/nodejs/node/pull/52168)
    
  • [`8bc745944e`](https://github.com/nodejs/node/commit/8bc745944e)] - **module**: eliminate performance cost of detection for cjs entry (Geoffrey Booth) [#&#8203;52093](https://github.com/nodejs/node/pull/52093)
    
  • [`63d04d4d80`](https://github.com/nodejs/node/commit/63d04d4d80)] - **module**: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) [#&#8203;52024](https://github.com/nodejs/node/pull/52024)
    
  • [`575ced8139`](https://github.com/nodejs/node/commit/575ced8139)] - **module**: print location of unsettled top-level await in entry points (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999)
    
  • [`075c95f61f`](https://github.com/nodejs/node/commit/075c95f61f)] - **module**: refactor ESM loader initialization and entry point handling (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999)
    
  • [`45f0dd0192`](https://github.com/nodejs/node/commit/45f0dd0192)] - **module,win**: fix long path resolve (Stefan Stojanovic) [#&#8203;51097](https://github.com/nodejs/node/pull/51097)
    
  • [`d89fc73d45`](https://github.com/nodejs/node/commit/d89fc73d45)] - **net**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`f0e6acde2d`](https://github.com/nodejs/node/commit/f0e6acde2d)] - **node-api**: make tsfn accept napi_finalize once more (Gabriel Schulhof) [#&#8203;51801](https://github.com/nodejs/node/pull/51801)
    
  • [`ff93f3e1a8`](https://github.com/nodejs/node/commit/ff93f3e1a8)] - **readline**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`4a6ca7a1d4`](https://github.com/nodejs/node/commit/4a6ca7a1d4)] - **src**: remove erroneous CVE-2024-27980 revert option (Tobias Nießen) [#&#8203;52543](https://github.com/nodejs/node/pull/52543)
    
  • [`64b67779f7`](https://github.com/nodejs/node/commit/64b67779f7)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#560](https://github.com/nodejs-private/node-private/pull/560)
    
  • [`9ef724bc81`](https://github.com/nodejs/node/commit/9ef724bc81)] - **src**: update branch name in node_revert.h (Tobias Nießen) [#&#8203;52390](https://github.com/nodejs/node/pull/52390)
    
  • [`ec1550407b`](https://github.com/nodejs/node/commit/ec1550407b)] - **src**: stop using `v8::BackingStore::Reallocate` (Michaël Zasso) [#&#8203;52292](https://github.com/nodejs/node/pull/52292)
    
  • [`681b0a3df3`](https://github.com/nodejs/node/commit/681b0a3df3)] - **src**: address coverity warning in module_wrap.cc (Michael Dawson) [#&#8203;52143](https://github.com/nodejs/node/pull/52143)
    
  • [`04319228e0`](https://github.com/nodejs/node/commit/04319228e0)] - **src**: fix move after use reported by coverity (Michael Dawson) [#&#8203;52141](https://github.com/nodejs/node/pull/52141)
    
  • [`0eb2b727f6`](https://github.com/nodejs/node/commit/0eb2b727f6)] - **src**: return a number from process.constrainedMemory() constantly (Chengzhong Wu) [#&#8203;52039](https://github.com/nodejs/node/pull/52039)
    
  • [`bec9b5fccc`](https://github.com/nodejs/node/commit/bec9b5fccc)] - **src**: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) [#&#8203;52016](https://github.com/nodejs/node/pull/52016)
    
  • [`1f193165b9`](https://github.com/nodejs/node/commit/1f193165b9)] - **src**: fix reading empty string views in Blob\[De]serializer (Joyee Cheung) [#&#8203;52000](https://github.com/nodejs/node/pull/52000)
    
  • [`fb356b3305`](https://github.com/nodejs/node/commit/fb356b3305)] - **src**: refactor out FormatErrorMessage for error formatting (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999)
    
  • [`1a8ae9d6c0`](https://github.com/nodejs/node/commit/1a8ae9d6c0)] - **src**: use callback-based array iteration in Blob (Joyee Cheung) [#&#8203;51758](https://github.com/nodejs/node/pull/51758)
    
  • [`5cd2ec8bd5`](https://github.com/nodejs/node/commit/5cd2ec8bd5)] - **src**: implement v8 array iteration using the new callback-based API (Joyee Cheung) [#&#8203;51758](https://github.com/nodejs/node/pull/51758)
    
  • [`89a26b451e`](https://github.com/nodejs/node/commit/89a26b451e)] - **src**: fix node_version.h (Joyee Cheung) [#&#8203;50375](https://github.com/nodejs/node/pull/50375)
    
  • [`c02de658a1`](https://github.com/nodejs/node/commit/c02de658a1)] - **stream**: make Duplex inherit destroy from Writable (Luigi Pinca) [#&#8203;52318](https://github.com/nodejs/node/pull/52318)
    
  • [`63391e749d`](https://github.com/nodejs/node/commit/63391e749d)] - **stream**: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (haze) [#&#8203;52110](https://github.com/nodejs/node/pull/52110)
    
  • [`a9528e87b9`](https://github.com/nodejs/node/commit/a9528e87b9)] - **stream**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`ee4fa77624`](https://github.com/nodejs/node/commit/ee4fa77624)] - **test**: fix watch test with require not testing pid (Raz Luvaton) [#&#8203;52353](https://github.com/nodejs/node/pull/52353)
    
  • [`05cb16dc1a`](https://github.com/nodejs/node/commit/05cb16dc1a)] - **test**: simplify ASan build checks (Michaël Zasso) [#&#8203;52430](https://github.com/nodejs/node/pull/52430)
    
  • [`eb53121b77`](https://github.com/nodejs/node/commit/eb53121b77)] - **test**: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) [#&#8203;52405](https://github.com/nodejs/node/pull/52405)
    
  • [`7dfa4750af`](https://github.com/nodejs/node/commit/7dfa4750af)] - **test**: add test for skip+todo combinations (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204)
    
  • [`5905596719`](https://github.com/nodejs/node/commit/5905596719)] - **test**: fix incorrect test fixture (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185)
    
  • [`bae14b7914`](https://github.com/nodejs/node/commit/bae14b7914)] - **test**: do not set concurrency on parallelized runs (Antoine du Hamel) [#&#8203;52177](https://github.com/nodejs/node/pull/52177)
    
  • [`0b676736a0`](https://github.com/nodejs/node/commit/0b676736a0)] - **test**: add missing cctest/test_path.cc (Yagiz Nizipli) [#&#8203;52148](https://github.com/nodejs/node/pull/52148)
    
  • [`c714cda9a7`](https://github.com/nodejs/node/commit/c714cda9a7)] - **test**: add `spawnSyncAndAssert` util (Antoine du Hamel) [#&#8203;52132](https://github.com/nodejs/node/pull/52132)
    
  • [`978d5a26c9`](https://github.com/nodejs/node/commit/978d5a26c9)] - **test**: reduce flakiness of test-runner-output.mjs (Colin Ihrig) [#&#8203;52146](https://github.com/nodejs/node/pull/52146)
    
  • [`afaf889775`](https://github.com/nodejs/node/commit/afaf889775)] - **test**: skip test for dynamically linked OpenSSL (Richard Lau) [#&#8203;52542](https://github.com/nodejs/node/pull/52542)
    
  • [`be75821a12`](https://github.com/nodejs/node/commit/be75821a12)] - **test**: add test for using `--print` with promises (Antoine du Hamel) [#&#8203;52137](https://github.com/nodejs/node/pull/52137)
    
  • [`4e109e5958`](https://github.com/nodejs/node/commit/4e109e5958)] - **test**: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) [#&#8203;51995](https://github.com/nodejs/node/pull/51995)
    
  • [`3f8cc88009`](https://github.com/nodejs/node/commit/3f8cc88009)] - **test_runner**: fix clearing final timeout in own callback (Ben Richeson) [#&#8203;52332](https://github.com/nodejs/node/pull/52332)
    
  • [`52f8dcfccc`](https://github.com/nodejs/node/commit/52f8dcfccc)] - **test_runner**: make end of work check stricter (Colin Ihrig) [#&#8203;52326](https://github.com/nodejs/node/pull/52326)
    
  • [`433bd1b04d`](https://github.com/nodejs/node/commit/433bd1b04d)] - **test_runner**: fix recursive run (Moshe Atlow) [#&#8203;52322](https://github.com/nodejs/node/pull/52322)
    
  • [`e57992ffb2`](https://github.com/nodejs/node/commit/e57992ffb2)] - **test_runner**: hide new line when no error in spec reporter (Moshe Atlow) [#&#8203;52297](https://github.com/nodejs/node/pull/52297)
    
  • [`ac9e5e7527`](https://github.com/nodejs/node/commit/ac9e5e7527)] - **test_runner**: improve describe.only behavior (Moshe Atlow) [#&#8203;52296](https://github.com/nodejs/node/pull/52296)
    
  • [`2c024cd24d`](https://github.com/nodejs/node/commit/2c024cd24d)] - **test_runner**: disable highWatermark on TestsStream (Colin Ihrig) [#&#8203;52287](https://github.com/nodejs/node/pull/52287)
    
  • [`7c02486f1f`](https://github.com/nodejs/node/commit/7c02486f1f)] - **test_runner**: run afterEach hooks in correct order (Colin Ihrig) [#&#8203;52239](https://github.com/nodejs/node/pull/52239)
    
  • [`6af4049810`](https://github.com/nodejs/node/commit/6af4049810)] - **test_runner**: simplify test end time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182)
    
  • [`878047be0b`](https://github.com/nodejs/node/commit/878047be0b)] - **test_runner**: simplify test start time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182)
    
  • [`4648c83dbc`](https://github.com/nodejs/node/commit/4648c83dbc)] - **test_runner**: don't await the same promise for each test (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185)
    
  • [`f9755f6f79`](https://github.com/nodejs/node/commit/f9755f6f79)] - **test_runner**: emit diagnostics when watch mode drains (Moshe Atlow) [#&#8203;52130](https://github.com/nodejs/node/pull/52130)
    
  • [`4ba9f45d99`](https://github.com/nodejs/node/commit/4ba9f45d99)] - **test_runner**: ignore todo flag when running suites (Colin Ihrig) [#&#8203;52117](https://github.com/nodejs/node/pull/52117)
    
  • [`6f4d6011ea`](https://github.com/nodejs/node/commit/6f4d6011ea)] - **test_runner**: skip each hooks for skipped tests (Colin Ihrig) [#&#8203;52115](https://github.com/nodejs/node/pull/52115)
    
  • [`05db979c01`](https://github.com/nodejs/node/commit/05db979c01)] - **test_runner**: run top level tests in a microtask (Colin Ihrig) [#&#8203;52092](https://github.com/nodejs/node/pull/52092)
    
  • [`97b2c5344d`](https://github.com/nodejs/node/commit/97b2c5344d)] - **test_runner**: remove redundant report call (Colin Ihrig) [#&#8203;52089](https://github.com/nodejs/node/pull/52089)
    
  • [`780d030bdf`](https://github.com/nodejs/node/commit/780d030bdf)] - **test_runner**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`814fa1ae74`](https://github.com/nodejs/node/commit/814fa1ae74)] - **test_runner**: use source maps when reporting coverage (Moshe Atlow) [#&#8203;52060](https://github.com/nodejs/node/pull/52060)
    
  • [`3c5764a0e2`](https://github.com/nodejs/node/commit/3c5764a0e2)] - **test_runner**: handle undefined test locations (Colin Ihrig) [#&#8203;52036](https://github.com/nodejs/node/pull/52036)
    
  • [`328642bbb9`](https://github.com/nodejs/node/commit/328642bbb9)] - **test_runner**: use paths for test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010)
    
  • [`6d625fe616`](https://github.com/nodejs/node/commit/6d625fe616)] - **test_runner**: support source mapped test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010)
    
  • [`592c6907bf`](https://github.com/nodejs/node/commit/592c6907bf)] - **test_runner**: avoid overwriting root start time (Colin Ihrig) [#&#8203;52020](https://github.com/nodejs/node/pull/52020)
    
  • [`29b231763e`](https://github.com/nodejs/node/commit/29b231763e)] - **test_runner**: abort unfinished tests on async error (Colin Ihrig) [#&#8203;51996](https://github.com/nodejs/node/pull/51996)
    
  • [`5d13419dbd`](https://github.com/nodejs/node/commit/5d13419dbd)] - **test_runner**: run before hook immediately if test started (Moshe Atlow) [#&#8203;52003](https://github.com/nodejs/node/pull/52003)
    
  • [`8451990668`](https://github.com/nodejs/node/commit/8451990668)] - **test_runner**: add support for null and date value output (Malthe Borch) [#&#8203;51920](https://github.com/nodejs/node/pull/51920)
    
  • [`423ad47e0f`](https://github.com/nodejs/node/commit/423ad47e0f)] - **tools**: change inactive limit to 12 months (Yagiz Nizipli) [#&#8203;52425](https://github.com/nodejs/node/pull/52425)
    
  • [`0d1e64f64c`](https://github.com/nodejs/node/commit/0d1e64f64c)] - **tools**: update stale bot messaging (Wes Todd) [#&#8203;52423](https://github.com/nodejs/node/pull/52423)
    
  • [`5bae73df90`](https://github.com/nodejs/node/commit/5bae73df90)] - **tools**: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) [#&#8203;52398](https://github.com/nodejs/node/pull/52398)
    
  • [`468cb99ba4`](https://github.com/nodejs/node/commit/468cb99ba4)] - **tools**: update Ruff to v0.3.4 (Michaël Zasso) [#&#8203;52302](https://github.com/nodejs/node/pull/52302)
    
  • [`67b9dda003`](https://github.com/nodejs/node/commit/67b9dda003)] - **tools**: run test-ubsan on ubuntu-latest (Michaël Zasso) [#&#8203;52375](https://github.com/nodejs/node/pull/52375)
    
  • [`f1f32d89e0`](https://github.com/nodejs/node/commit/f1f32d89e0)] - **tools**: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) [#&#8203;52286](https://github.com/nodejs/node/pull/52286)
    
  • [`d7aa8fc9da`](https://github.com/nodejs/node/commit/d7aa8fc9da)] - ***Revert*** "**tools**: run `build-windows` workflow only on source changes" (Michaël Zasso) [#&#8203;52320](https://github.com/nodejs/node/pull/52320)
    
  • [`a3b1fc3f27`](https://github.com/nodejs/node/commit/a3b1fc3f27)] - **tools**: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) [#&#8203;52301](https://github.com/nodejs/node/pull/52301)
    
  • [`021cf91208`](https://github.com/nodejs/node/commit/021cf91208)] - **tools**: allow local updates for llhttp (Paolo Insogna) [#&#8203;52085](https://github.com/nodejs/node/pull/52085)
    
  • [`4d8602046e`](https://github.com/nodejs/node/commit/4d8602046e)] - **tools**: install npm PowerShell scripts on Windows (Luke Karrys) [#&#8203;52009](https://github.com/nodejs/node/pull/52009)
    
  • [`081319d762`](https://github.com/nodejs/node/commit/081319d762)] - **tools**: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) [#&#8203;52122](https://github.com/nodejs/node/pull/52122)
    
  • [`c43a944231`](https://github.com/nodejs/node/commit/c43a944231)] - **tools**: fix error reported by coverity in js2c.cc (Michael Dawson) [#&#8203;52142](https://github.com/nodejs/node/pull/52142)
    
  • [`f05b241f07`](https://github.com/nodejs/node/commit/f05b241f07)] - **tools**: sync ubsan workflow with asan (Michaël Zasso) [#&#8203;52152](https://github.com/nodejs/node/pull/52152)
    
  • [`a21b15a14e`](https://github.com/nodejs/node/commit/a21b15a14e)] - **tools**: update github_reporter to 1.7.0 (Node.js GitHub Bot) [#&#8203;52121](https://github.com/nodejs/node/pull/52121)
    
  • [`d60a871db2`](https://github.com/nodejs/node/commit/d60a871db2)] - **tools**: remove gyp-next .github folder (Marco Ippolito) [#&#8203;52064](https://github.com/nodejs/node/pull/52064)
    
  • [`6ad5353764`](https://github.com/nodejs/node/commit/6ad5353764)] - **tools**: update gyp-next to 0.16.2 (Node.js GitHub Bot) [#&#8203;52062](https://github.com/nodejs/node/pull/52062)
    
  • [`dab85bdc06`](https://github.com/nodejs/node/commit/dab85bdc06)] - **tools**: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) [#&#8203;51791](https://github.com/nodejs/node/pull/51791)
    
  • [`cde37e7b63`](https://github.com/nodejs/node/commit/cde37e7b63)] - **tools**: automate gyp-next update (Marco Ippolito) [#&#8203;52014](https://github.com/nodejs/node/pull/52014)
    
  • [`925a464cb8`](https://github.com/nodejs/node/commit/925a464cb8)] - **url**: remove #context from URLSearchParams (Matt Cowley) [#&#8203;51520](https://github.com/nodejs/node/pull/51520)
    
  • [`893e2cf22b`](https://github.com/nodejs/node/commit/893e2cf22b)] - **watch**: fix some node argument not passed to watched process (Raz Luvaton) [#&#8203;52358](https://github.com/nodejs/node/pull/52358)
    
  • [`fec7e505fc`](https://github.com/nodejs/node/commit/fec7e505fc)] - **watch**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`4f68c7c1c9`](https://github.com/nodejs/node/commit/4f68c7c1c9)] - **watch**: mark as stable (Moshe Atlow) [#&#8203;52074](https://github.com/nodejs/node/pull/52074)
    
  • [`257f32296d`](https://github.com/nodejs/node/commit/257f32296d)] - **watch**: batch file restarts (Moshe Atlow) [#&#8203;51992](https://github.com/nodejs/node/pull/51992)
    
    

v20.18.1: 2024-11-20, Version 20.18.1 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
  • [`7a8992b2d6`](https://github.com/nodejs/node/commit/7a8992b2d6)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#&#8203;55086](https://github.com/nodejs/node/pull/55086)
    
    
Commits
  • [`085c3441fe`](https://github.com/nodejs/node/commit/085c3441fe)] - **assert**: show the diff when deep comparing data with a custom message (Giovanni) [#&#8203;54759](https://github.com/nodejs/node/pull/54759)
    
  • [`01f0b0e7b4`](https://github.com/nodejs/node/commit/01f0b0e7b4)] - **benchmark**: adjust config for deepEqual object (Rafael Gonzaga) [#&#8203;55254](https://github.com/nodejs/node/pull/55254)
    
  • [`a45537269b`](https://github.com/nodejs/node/commit/a45537269b)] - **benchmark**: rewrite detect-esm-syntax benchmark (Joyee Cheung) [#&#8203;55238](https://github.com/nodejs/node/pull/55238)
    
  • [`1a0d8ef64f`](https://github.com/nodejs/node/commit/1a0d8ef64f)] - **benchmark**: add no-warnings to process.has bench (Rafael Gonzaga) [#&#8203;55159](https://github.com/nodejs/node/pull/55159)
    
  • [`2be5d611ce`](https://github.com/nodejs/node/commit/2be5d611ce)] - **benchmark**: create benchmark for typescript (Marco Ippolito) [#&#8203;54904](https://github.com/nodejs/node/pull/54904)
    
  • [`a2aa4fa477`](https://github.com/nodejs/node/commit/a2aa4fa477)] - **benchmark**: include ascii to fs/readfile (Rafael Gonzaga) [#&#8203;54988](https://github.com/nodejs/node/pull/54988)
    
  • [`09849105fe`](https://github.com/nodejs/node/commit/09849105fe)] - **benchmark**: add dotenv benchmark (Aviv Keller) [#&#8203;54278](https://github.com/nodejs/node/pull/54278)
    
  • [`6b3c24dbad`](https://github.com/nodejs/node/commit/6b3c24dbad)] - **buffer**: fix out of range for toString (Jason Zhang) [#&#8203;54553](https://github.com/nodejs/node/pull/54553)
    
  • [`f25a5b6dc4`](https://github.com/nodejs/node/commit/f25a5b6dc4)] - **build**: use rclone instead of aws CLI (Michaël Zasso) [#&#8203;55617](https://github.com/nodejs/node/pull/55617)
    
  • [`0bbeb605de`](https://github.com/nodejs/node/commit/0bbeb605de)] - **build**: fix notify-on-review-wanted action (Rafael Gonzaga) [#&#8203;55304](https://github.com/nodejs/node/pull/55304)
    
  • [`5b35836732`](https://github.com/nodejs/node/commit/5b35836732)] - **build**: include `.nycrc` in coverage workflows (Wuli Zuo) [#&#8203;55210](https://github.com/nodejs/node/pull/55210)
    
  • [`f38d1e90e0`](https://github.com/nodejs/node/commit/f38d1e90e0)] - **build**: notify via slack when review-wanted (Rafael Gonzaga) [#&#8203;55102](https://github.com/nodejs/node/pull/55102)
    
  • [`0b985ec4bb`](https://github.com/nodejs/node/commit/0b985ec4bb)] - **build**: remove -v flag to reduce noise (iwuliz) [#&#8203;55025](https://github.com/nodejs/node/pull/55025)
    
  • [`09f75b27a1`](https://github.com/nodejs/node/commit/09f75b27a1)] - **build**: display free disk space after build in the test-macOS workflow (iwuliz) [#&#8203;55025](https://github.com/nodejs/node/pull/55025)
    
  • [`f25760c4a2`](https://github.com/nodejs/node/commit/f25760c4a2)] - **build**: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) [#&#8203;52279](https://github.com/nodejs/node/pull/52279)
    
  • [`746e78c4f3`](https://github.com/nodejs/node/commit/746e78c4f3)] - ***Revert*** "**build**: upgrade clang-format to v18" (Chengzhong Wu) [#&#8203;54994](https://github.com/nodejs/node/pull/54994)
    
  • [`67834ee646`](https://github.com/nodejs/node/commit/67834ee646)] - **build**: print `Running XYZ linter...` for py and yml (Aviv Keller) [#&#8203;54386](https://github.com/nodejs/node/pull/54386)
    
  • [`ae34e276a2`](https://github.com/nodejs/node/commit/ae34e276a2)] - **build**: pin doc workflow to Node.js 20 (Richard Lau) [#&#8203;55755](https://github.com/nodejs/node/pull/55755)
    
  • [`d0e871a706`](https://github.com/nodejs/node/commit/d0e871a706)] - **build,win**: add winget config to set up env (Hüseyin Açacak) [#&#8203;54729](https://github.com/nodejs/node/pull/54729)
    
  • [`93ac799b6b`](https://github.com/nodejs/node/commit/93ac799b6b)] - **cli**: fix spacing for port range error (Aviv Keller) [#&#8203;54495](https://github.com/nodejs/node/pull/54495)
    
  • [`3ba2e7bf97`](https://github.com/nodejs/node/commit/3ba2e7bf97)] - ***Revert*** "**console**: colorize console error and warn" (Aviv Keller) [#&#8203;54677](https://github.com/nodejs/node/pull/54677)
    
  • [`2f678ea53b`](https://github.com/nodejs/node/commit/2f678ea53b)] - **crypto**: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) [#&#8203;55041](https://github.com/nodejs/node/pull/55041)
    
  • [`5d28d98542`](https://github.com/nodejs/node/commit/5d28d98542)] - **deps**: update undici to 6.20.0 (Node.js GitHub Bot) [#&#8203;55329](https://github.com/nodejs/node/pull/55329)
    
  • [`0c7f2fc421`](https://github.com/nodejs/node/commit/0c7f2fc421)] - **deps**: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) [#&#8203;55184](https://github.com/nodejs/node/pull/55184)
    
  • [`da15e7edf5`](https://github.com/nodejs/node/commit/da15e7edf5)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) [#&#8203;55184](https://github.com/nodejs/node/pull/55184)
    
  • [`381f1f9d08`](https://github.com/nodejs/node/commit/381f1f9d08)] - **deps**: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) [#&#8203;54336](https://github.com/nodejs/node/pull/54336)
    
  • [`48d643f78a`](https://github.com/nodejs/node/commit/48d643f78a)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) [#&#8203;54336](https://github.com/nodejs/node/pull/54336)
    
  • [`7b1796803b`](https://github.com/nodejs/node/commit/7b1796803b)] - **deps**: update timezone to 2024b (Node.js GitHub Bot) [#&#8203;55056](https://github.com/nodejs/node/pull/55056)
    
  • [`8f1956c588`](https://github.com/nodejs/node/commit/8f1956c588)] - **deps**: update acorn-walk to 8.3.4 (Node.js GitHub Bot) [#&#8203;54950](https://github.com/nodejs/node/pull/54950)
    
  • [`20501a7350`](https://github.com/nodejs/node/commit/20501a7350)] - **deps**: update corepack to 0.29.4 (Node.js GitHub Bot) [#&#8203;54845](https://github.com/nodejs/node/pull/54845)
    
  • [`0f81eafecc`](https://github.com/nodejs/node/commit/0f81eafecc)] - **doc**: fix Markdown linter (Antoine du Hamel) [#&#8203;55344](https://github.com/nodejs/node/pull/55344)
    
  • [`df713f0a98`](https://github.com/nodejs/node/commit/df713f0a98)] - ***Revert*** "**doc**: update test context.assert" (Antoine du Hamel) [#&#8203;55344](https://github.com/nodejs/node/pull/55344)
    
  • [`fd6fc61d2c`](https://github.com/nodejs/node/commit/fd6fc61d2c)] - **doc**: add pmarchini to collaborators (Pietro Marchini) [#&#8203;55331](https://github.com/nodejs/node/pull/55331)
    
  • [`b963db9ee2`](https://github.com/nodejs/node/commit/b963db9ee2)] - **doc**: fix `events.once()` example using `AbortSignal` (Ivo Janssen) [#&#8203;55144](https://github.com/nodejs/node/pull/55144)
    
  • [`50b13bfb12`](https://github.com/nodejs/node/commit/50b13bfb12)] - **doc**: add onboarding details for ambassador program (Marco Ippolito) [#&#8203;55284](https://github.com/nodejs/node/pull/55284)
    
  • [`27564b7811`](https://github.com/nodejs/node/commit/27564b7811)] - **doc**: fix initial default value of autoSelectFamily (Ihor Rohovets) [#&#8203;55245](https://github.com/nodejs/node/pull/55245)
    
  • [`9e7be23aa5`](https://github.com/nodejs/node/commit/9e7be23aa5)] - **doc**: tweak onboarding instructions (Michael Dawson) [#&#8203;55212](https://github.com/nodejs/node/pull/55212)
    
  • [`f412a029c3`](https://github.com/nodejs/node/commit/f412a029c3)] - **doc**: update test context.assert (Pietro Marchini) [#&#8203;55186](https://github.com/nodejs/node/pull/55186)
    
  • [`2f7828debb`](https://github.com/nodejs/node/commit/2f7828debb)] - **doc**: fix unordered error anchors (Antoine du Hamel) [#&#8203;55242](https://github.com/nodejs/node/pull/55242)
    
  • [`d08e4c235b`](https://github.com/nodejs/node/commit/d08e4c235b)] - **doc**: mention addons to experimental permission (Rafael Gonzaga) [#&#8203;55166](https://github.com/nodejs/node/pull/55166)
    
  • [`d65c2458dc`](https://github.com/nodejs/node/commit/d65c2458dc)] - **doc**: use correct dash in stability status (Antoine du Hamel) [#&#8203;55200](https://github.com/nodejs/node/pull/55200)
    
  • [`d9839c16cf`](https://github.com/nodejs/node/commit/d9839c16cf)] - **doc**: fix link in `test/README.md` (Livia Medeiros) [#&#8203;55165](https://github.com/nodejs/node/pull/55165)
    
  • [`1ad659afa4`](https://github.com/nodejs/node/commit/1ad659afa4)] - **doc**: add esm examples to node:net (Alfredo González) [#&#8203;55134](https://github.com/nodejs/node/pull/55134)
    
  • [`81ad69d50f`](https://github.com/nodejs/node/commit/81ad69d50f)] - **doc**: move the YAML changes element (sendoru) [#&#8203;55112](https://github.com/nodejs/node/pull/55112)
    
  • [`7a51a161be`](https://github.com/nodejs/node/commit/7a51a161be)] - **doc**: fix the require resolve algorithm in `modules.md` (chirsz) [#&#8203;55117](https://github.com/nodejs/node/pull/55117)
    
  • [`80edcdf899`](https://github.com/nodejs/node/commit/80edcdf899)] - **doc**: update style guide (Aviv Keller) [#&#8203;53223](https://github.com/nodejs/node/pull/53223)
    
  • [`388c754dd2`](https://github.com/nodejs/node/commit/388c754dd2)] - **doc**: add missing `:` to `run()`'s `globPatterns` (Aviv Keller) [#&#8203;55135](https://github.com/nodejs/node/pull/55135)
    
  • [`94302b6a76`](https://github.com/nodejs/node/commit/94302b6a76)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#&#8203;55086](https://github.com/nodejs/node/pull/55086)
    
  • [`27ff2da964`](https://github.com/nodejs/node/commit/27ff2da964)] - **doc**: add note about `--expose-internals` (Aviv Keller) [#&#8203;52861](https://github.com/nodejs/node/pull/52861)
    
  • [`df6dc753b7`](https://github.com/nodejs/node/commit/df6dc753b7)] - **doc**: remove `parseREPLKeyword` from REPL documentation (Aviv Keller) [#&#8203;54749](https://github.com/nodejs/node/pull/54749)
    
  • [`4baa5c4d10`](https://github.com/nodejs/node/commit/4baa5c4d10)] - **doc**: change backporting guide with updated info (Aviv Keller) [#&#8203;53746](https://github.com/nodejs/node/pull/53746)
    
  • [`9947fc112f`](https://github.com/nodejs/node/commit/9947fc112f)] - **doc**: add missing definitions to `internal-api.md` (Aviv Keller) [#&#8203;53303](https://github.com/nodejs/node/pull/53303)
    
  • [`a4586f0e94`](https://github.com/nodejs/node/commit/a4586f0e94)] - **doc**: update documentation for externalizing deps (Michael Dawson) [#&#8203;54792](https://github.com/nodejs/node/pull/54792)
    
  • [`70504f8522`](https://github.com/nodejs/node/commit/70504f8522)] - **doc**: update `require(ESM)` history and stability status (Antoine du Hamel) [#&#8203;55199](https://github.com/nodejs/node/pull/55199)
    
  • [`9d0041ac40`](https://github.com/nodejs/node/commit/9d0041ac40)] - **doc**: add release key for aduh95 (Antoine du Hamel) [#&#8203;55349](https://github.com/nodejs/node/pull/55349)
    
  • [`0c1666a52a`](https://github.com/nodejs/node/commit/0c1666a52a)] - **events**: allow null/undefined eventInitDict (Matthew Aitken) [#&#8203;54643](https://github.com/nodejs/node/pull/54643)
    
  • [`453df77f99`](https://github.com/nodejs/node/commit/453df77f99)] - **events**: return `currentTarget` when dispatching (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642)
    
  • [`0decaab9db`](https://github.com/nodejs/node/commit/0decaab9db)] - **fs**: acknowledge `signal` option in `filehandle.createReadStream()` (Livia Medeiros) [#&#8203;55148](https://github.com/nodejs/node/pull/55148)
    
  • [`00a2fc7166`](https://github.com/nodejs/node/commit/00a2fc7166)] - **lib**: move `Symbol[Async]Dispose` polyfills to `internal/util` (Antoine du Hamel) [#&#8203;54853](https://github.com/nodejs/node/pull/54853)
    
  • [`8e6b606ac4`](https://github.com/nodejs/node/commit/8e6b606ac4)] - **lib**: remove lib/internal/idna.js (Yagiz Nizipli) [#&#8203;55050](https://github.com/nodejs/node/pull/55050)
    
  • [`c96e5cb664`](https://github.com/nodejs/node/commit/c96e5cb664)] - **lib**: the REPL should survive deletion of Array.prototype methods (Jordan Harband) [#&#8203;31457](https://github.com/nodejs/node/pull/31457)
    
  • [`748ed2e559`](https://github.com/nodejs/node/commit/748ed2e559)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;55300](https://github.com/nodejs/node/pull/55300)
    
  • [`8b8d35f015`](https://github.com/nodejs/node/commit/8b8d35f015)] - **meta**: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot\[bot]) [#&#8203;55225](https://github.com/nodejs/node/pull/55225)
    
  • [`d3441ff0c8`](https://github.com/nodejs/node/commit/d3441ff0c8)] - **meta**: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot\[bot]) [#&#8203;55224](https://github.com/nodejs/node/pull/55224)
    
  • [`1c20908558`](https://github.com/nodejs/node/commit/1c20908558)] - **meta**: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot\[bot]) [#&#8203;55223](https://github.com/nodejs/node/pull/55223)
    
  • [`8a529abd69`](https://github.com/nodejs/node/commit/8a529abd69)] - **meta**: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot\[bot]) [#&#8203;55219](https://github.com/nodejs/node/pull/55219)
    
  • [`9053d210ab`](https://github.com/nodejs/node/commit/9053d210ab)] - **meta**: add mailmap entry for abmusse (Abdirahim Musse) [#&#8203;55182](https://github.com/nodejs/node/pull/55182)
    
  • [`db2496c125`](https://github.com/nodejs/node/commit/db2496c125)] - **meta**: add more information about nightly releases (Aviv Keller) [#&#8203;55084](https://github.com/nodejs/node/pull/55084)
    
  • [`d2ce003b2f`](https://github.com/nodejs/node/commit/d2ce003b2f)] - **meta**: add `linux` to OS labels in collaborator guide (Aviv Keller) [#&#8203;54986](https://github.com/nodejs/node/pull/54986)
    
  • [`37b0bea247`](https://github.com/nodejs/node/commit/37b0bea247)] - **meta**: remove never-used workflow trigger (Aviv Keller) [#&#8203;54983](https://github.com/nodejs/node/pull/54983)
    
  • [`ae27e2dcd7`](https://github.com/nodejs/node/commit/ae27e2dcd7)] - **meta**: add links to alternative issue trackers (Aviv Keller) [#&#8203;54401](https://github.com/nodejs/node/pull/54401)
    
  • [`6e5d524b0f`](https://github.com/nodejs/node/commit/6e5d524b0f)] - **module**: remove duplicated import (Aviv Keller) [#&#8203;54942](https://github.com/nodejs/node/pull/54942)
    
  • [`3a682cca03`](https://github.com/nodejs/node/commit/3a682cca03)] - **path**: remove repetitive conditional operator in `posix.resolve` (Wiyeong Seo) [#&#8203;54835](https://github.com/nodejs/node/pull/54835)
    
  • [`ac1cb8dfdb`](https://github.com/nodejs/node/commit/ac1cb8dfdb)] - **perf_hooks**: add missing type argument to getEntriesByName (Luke Taher) [#&#8203;54767](https://github.com/nodejs/node/pull/54767)
    
  • [`85b3edc83b`](https://github.com/nodejs/node/commit/85b3edc83b)] - **repl**: catch `\v` and `\r` in new-line detection (Aviv Keller) [#&#8203;54512](https://github.com/nodejs/node/pull/54512)
    
  • [`df1f04999e`](https://github.com/nodejs/node/commit/df1f04999e)] - **src**: decode native error messages as UTF-8 (Joyee Cheung) [#&#8203;55024](https://github.com/nodejs/node/pull/55024)
    
  • [`86d718177a`](https://github.com/nodejs/node/commit/86d718177a)] - **src**: update clang-tidy and focus on modernization (Yagiz Nizipli) [#&#8203;53757](https://github.com/nodejs/node/pull/53757)
    
  • [`7d01b6a9c5`](https://github.com/nodejs/node/commit/7d01b6a9c5)] - **src**: cleanup per env handles directly without a list (Chengzhong Wu) [#&#8203;54993](https://github.com/nodejs/node/pull/54993)
    
  • [`a730cdb622`](https://github.com/nodejs/node/commit/a730cdb622)] - **src**: remove duplicate code setting AF_INET (He Yang) [#&#8203;54939](https://github.com/nodejs/node/pull/54939)
    
  • [`f10d9ad283`](https://github.com/nodejs/node/commit/f10d9ad283)] - **stream**: treat null asyncIterator as undefined (Jason Zhang) [#&#8203;55119](https://github.com/nodejs/node/pull/55119)
    
  • [`6027084245`](https://github.com/nodejs/node/commit/6027084245)] - **test**: make `test-loaders-workers-spawned` less flaky (Antoine du Hamel) [#&#8203;55172](https://github.com/nodejs/node/pull/55172)
    
  • [`66a87d19bd`](https://github.com/nodejs/node/commit/66a87d19bd)] - **test**: update multiple assert tests to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585)
    
  • [`5105188c47`](https://github.com/nodejs/node/commit/5105188c47)] - **test**: update wpt test for encoding (devstone) [#&#8203;55151](https://github.com/nodejs/node/pull/55151)
    
  • [`81bcec0b82`](https://github.com/nodejs/node/commit/81bcec0b82)] - **test**: deflake test/pummel/test-timers.js (jakecastelli) [#&#8203;55098](https://github.com/nodejs/node/pull/55098)
    
  • [`82c402265a`](https://github.com/nodejs/node/commit/82c402265a)] - **test**: deflake test-http-remove-header-stays-removed (Luigi Pinca) [#&#8203;55004](https://github.com/nodejs/node/pull/55004)
    
  • [`78021701ed`](https://github.com/nodejs/node/commit/78021701ed)] - **test**: fix test-tls-junk-closes-server (Michael Dawson) [#&#8203;55089](https://github.com/nodejs/node/pull/55089)
    
  • [`c908b8a2d8`](https://github.com/nodejs/node/commit/c908b8a2d8)] - **test**: fix more tests that fail when path contains a space (Antoine du Hamel) [#&#8203;55088](https://github.com/nodejs/node/pull/55088)
    
  • [`afc1628e73`](https://github.com/nodejs/node/commit/afc1628e73)] - **test**: fix `assertSnapshot` when path contains a quote (Antoine du Hamel) [#&#8203;55087](https://github.com/nodejs/node/pull/55087)
    
  • [`7c88739b83`](https://github.com/nodejs/node/commit/7c88739b83)] - **test**: fix some tests when path contains `%` (Antoine du Hamel) [#&#8203;55082](https://github.com/nodejs/node/pull/55082)
    
  • [`eb4d468671`](https://github.com/nodejs/node/commit/eb4d468671)] - ***Revert*** "**test**: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) [#&#8203;55079](https://github.com/nodejs/node/pull/55079)
    
  • [`bc7b5249d4`](https://github.com/nodejs/node/commit/bc7b5249d4)] - **test**: make `test-runner-assert` more robust (Aviv Keller) [#&#8203;55036](https://github.com/nodejs/node/pull/55036)
    
  • [`6c2a1386f7`](https://github.com/nodejs/node/commit/6c2a1386f7)] - **test**: update tls test to support OpenSSL32 (Michael Dawson) [#&#8203;55030](https://github.com/nodejs/node/pull/55030)
    
  • [`96406610fa`](https://github.com/nodejs/node/commit/96406610fa)] - **test**: fix `test-vm-context-dont-contextify` when path contains a space (Antoine du Hamel) [#&#8203;55026](https://github.com/nodejs/node/pull/55026)
    
  • [`39a80eed4f`](https://github.com/nodejs/node/commit/39a80eed4f)] - **test**: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) [#&#8203;55016](https://github.com/nodejs/node/pull/55016)
    
  • [`bd8fd4fceb`](https://github.com/nodejs/node/commit/bd8fd4fceb)] - **test**: add `util.stripVTControlCharacters` test (RedYetiDev) [#&#8203;54865](https://github.com/nodejs/node/pull/54865)
    
  • [`333b5a02d0`](https://github.com/nodejs/node/commit/333b5a02d0)] - **test**: improve coverage for timer promises schedular (Aviv Keller) [#&#8203;53370](https://github.com/nodejs/node/pull/53370)
    
  • [`f48992f433`](https://github.com/nodejs/node/commit/f48992f433)] - **test**: remove unused common utilities (RedYetiDev) [#&#8203;54825](https://github.com/nodejs/node/pull/54825)
    
  • [`93a098c56d`](https://github.com/nodejs/node/commit/93a098c56d)] - **test**: deflake test-http-header-overflow (Luigi Pinca) [#&#8203;54978](https://github.com/nodejs/node/pull/54978)
    
  • [`f849cf677d`](https://github.com/nodejs/node/commit/f849cf677d)] - **test**: fix `soucre` to `source` (Aviv Keller) [#&#8203;55038](https://github.com/nodejs/node/pull/55038)
    
  • [`1a007ea814`](https://github.com/nodejs/node/commit/1a007ea814)] - **test**: add asserts to validate test assumptions (Michael Dawson) [#&#8203;54997](https://github.com/nodejs/node/pull/54997)
    
  • [`6f53c096f8`](https://github.com/nodejs/node/commit/6f53c096f8)] - **test**: move test-http-max-sockets to parallel (Luigi Pinca) [#&#8203;54977](https://github.com/nodejs/node/pull/54977)
    
  • [`aba9dc775e`](https://github.com/nodejs/node/commit/aba9dc775e)] - **test**: remove test-http-max-sockets flaky designation (Luigi Pinca) [#&#8203;54976](https://github.com/nodejs/node/pull/54976)
    
  • [`ee5624bffe`](https://github.com/nodejs/node/commit/ee5624bffe)] - **test**: adjust key sizes to support OpenSSL32 (Michael Dawson) [#&#8203;54972](https://github.com/nodejs/node/pull/54972)
    
  • [`5c11a61140`](https://github.com/nodejs/node/commit/5c11a61140)] - **test**: update test to support OpenSSL32 (Michael Dawson) [#&#8203;54968](https://github.com/nodejs/node/pull/54968)
    
  • [`62f21470e4`](https://github.com/nodejs/node/commit/62f21470e4)] - **test**: update DOM events web platform tests (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642)
    
  • [`426851705c`](https://github.com/nodejs/node/commit/426851705c)] - **test_runner**: assert entry is a valid object (Edigleysson Silva (Edy)) [#&#8203;55231](https://github.com/nodejs/node/pull/55231)
    
  • [`b1cad519d7`](https://github.com/nodejs/node/commit/b1cad519d7)] - **test_runner**: use `test:` symbol on second print of parent test (RedYetiDev) [#&#8203;54956](https://github.com/nodejs/node/pull/54956)
    
  • [`63c8f3d436`](https://github.com/nodejs/node/commit/63c8f3d436)] - **test_runner**: replace ansi clear with ansi reset (Pietro Marchini) [#&#8203;55013](https://github.com/nodejs/node/pull/55013)
    
  • [`0b3fb344f7`](https://github.com/nodejs/node/commit/0b3fb344f7)] - **tools**: add `polyfilled` option to `prefer-primordials` rule (Antoine du Hamel) [#&#8203;55318](https://github.com/nodejs/node/pull/55318)
    
  • [`8981309bd9`](https://github.com/nodejs/node/commit/8981309bd9)] - **tools**: make `choco install` script more readable (Aviv Keller) [#&#8203;54002](https://github.com/nodejs/node/pull/54002)
    
  • [`7310abeae1`](https://github.com/nodejs/node/commit/7310abeae1)] - **tools**: bump Rollup from 4.18.1 to 4.22.4 for `lint-md` (dependabot\[bot]) [#&#8203;55093](https://github.com/nodejs/node/pull/55093)
    
  • [`083311e8af`](https://github.com/nodejs/node/commit/083311e8af)] - **tools**: remove redudant code from eslint require rule (Aviv Keller) [#&#8203;54892](https://github.com/nodejs/node/pull/54892)
    
  • [`ae4b2aece1`](https://github.com/nodejs/node/commit/ae4b2aece1)] - **tools**: update error message for ICU in license-builder (Aviv Keller) [#&#8203;54742](https://github.com/nodejs/node/pull/54742)
    
  • [`3ebd31684d`](https://github.com/nodejs/node/commit/3ebd31684d)] - **tools**: update github_reporter to 1.7.1 (Node.js GitHub Bot) [#&#8203;54951](https://github.com/nodejs/node/pull/54951)
    
  • [`397be8a10e`](https://github.com/nodejs/node/commit/397be8a10e)] - **tty**: fix links for terminal colors (Aviv Keller) [#&#8203;54596](https://github.com/nodejs/node/pull/54596)
    
  • [`a3c2ef9e98`](https://github.com/nodejs/node/commit/a3c2ef9e98)] - **util**: update ansi regex (Aviv Keller) [#&#8203;54865](https://github.com/nodejs/node/pull/54865)
    
  • [`efdccc88a2`](https://github.com/nodejs/node/commit/efdccc88a2)] - **watch**: preserve output when gracefully restarted (Théo LUDWIG) [#&#8203;54323](https://github.com/nodejs/node/pull/54323)
    
  • [`226836c5ac`](https://github.com/nodejs/node/commit/226836c5ac)] - **worker**: throw InvalidStateError in postMessage after close (devstone) [#&#8203;55206](https://github.com/nodejs/node/pull/55206)
    
  • [`f39ff4d14b`](https://github.com/nodejs/node/commit/f39ff4d14b)] - **worker**: handle `--input-type` more consistently (Antoine du Hamel) [#&#8203;54979](https://github.com/nodejs/node/pull/54979)
    
  • [`30383ffb9a`](https://github.com/nodejs/node/commit/30383ffb9a)] - **zlib**: throw brotli initialization error from c++ (Yagiz Nizipli) [#&#8203;54698](https://github.com/nodejs/node/pull/54698)
    
    

v20.18.0: 2024-10-03, Version 20.18.0 'Iron' (LTS), @​targos

Compare Source

Notable Changes
Experimental Network Inspection Support in Node.js

This update introduces the initial support for network inspection in Node.js.
Currently, this is an experimental feature, so you need to enable it using the --experimental-network-inspection flag.
With this feature enabled, you can inspect network activities occurring within a JavaScript application.

To use network inspection, start your Node.js application with the following command:

$ node --inspect-wait --experimental-network-inspection index.js

Please note that the network inspection capabilities are in active development.
We are actively working on enhancing this feature and will continue to expand its functionality in future updates.

Contributed by Kohei Ueno in #​53593 and #​54246

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext

This releases introduces a new option to the API tls.createSecureContext. From
now on, tls.createSecureContext({ allowPartialTrustChain: true }) can be used
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.

Contributed by Anna Henningsen in #​54790

New option for vm.createContext() to create a context with a freezable globalThis

Node.js implements a flavor of vm.createContext() and friends that creates a context without contextifying its global
object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context
(impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they
don't need the interceptor behavior.

Contributed by Joyee Cheung in #​54394

Deprecations
  • [`64aa31f6e5`](https://github.com/nodejs/node/commit/64aa31f6e5)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842)
    
  • [`4c52ee3d7f`](https://github.com/nodejs/node/commit/4c52ee3d7f)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708)
    
    
Other Notable Changes
  • [`b80da2f964`](https://github.com/nodejs/node/commit/b80da2f964)] - **buffer**: optimize createFromString (Robert Nagy) [#&#8203;54324](https://github.com/nodejs/node/pull/54324)
    
  • [`02b36cbd2d`](https://github.com/nodejs/node/commit/02b36cbd2d)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575)
    
  • [`879546a9bf`](https://github.com/nodejs/node/commit/879546a9bf)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413)
    
  • [`f789f4c92d`](https://github.com/nodejs/node/commit/f789f4c92d)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848)
    
  • [`4eb0749b6c`](https://github.com/nodejs/node/commit/4eb0749b6c)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280)
    
    
Commits
  • [`013c48f0e9`](https://github.com/nodejs/node/commit/013c48f0e9)] - **benchmark**: --no-warnings to avoid DEP/ExpWarn log (Rafael Gonzaga) [#&#8203;54928](https://github.com/nodejs/node/pull/54928)
    
  • [`194fc113ac`](https://github.com/nodejs/node/commit/194fc113ac)] - **benchmark**: add buffer.isAscii benchmark (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740)
    
  • [`7410d51cb9`](https://github.com/nodejs/node/commit/7410d51cb9)] - **benchmark**: add buffer.isUtf8 bench (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740)
    
  • [`2393f21e8a`](https://github.com/nodejs/node/commit/2393f21e8a)] - **benchmark**: add access async version to bench (Rafael Gonzaga) [#&#8203;54747](https://github.com/nodejs/node/pull/54747)
    
  • [`b8779721f0`](https://github.com/nodejs/node/commit/b8779721f0)] - **benchmark**: enhance dc publish benchmark (Rafael Gonzaga) [#&#8203;54745](https://github.com/nodejs/node/pull/54745)
    
  • [`4078aa83ff`](https://github.com/nodejs/node/commit/4078aa83ff)] - **benchmark**: add match and doesNotMatch bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`66acab9976`](https://github.com/nodejs/node/commit/66acab9976)] - **benchmark**: add rejects and doesNotReject bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`6db777fb3a`](https://github.com/nodejs/node/commit/6db777fb3a)] - **benchmark**: add throws and doesNotThrow bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`8f101560ce`](https://github.com/nodejs/node/commit/8f101560ce)] - **benchmark**: add strictEqual and notStrictEqual bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734)
    
  • [`2c9e4c936e`](https://github.com/nodejs/node/commit/2c9e4c936e)] - **benchmark**: adds groups to better separate benchmarks (Giovanni Bucci) [#&#8203;54393](https://github.com/nodejs/node/pull/54393)
    
  • [`671c3ac633`](https://github.com/nodejs/node/commit/671c3ac633)] - **benchmark**: fix benchmark for file path and URL conversion (Early Riser) [#&#8203;54190](https://github.com/nodejs/node/pull/54190)
    
  • [`8c8708cb5b`](https://github.com/nodejs/node/commit/8c8708cb5b)] - **benchmark**: use assert.ok searchparams (Rafael Gonzaga) [#&#8203;54334](https://github.com/nodejs/node/pull/54334)
    
  • [`8b71fa79e2`](https://github.com/nodejs/node/commit/8b71fa79e2)] - **benchmark**: add stream.compose benchmark (jakecastelli) [#&#8203;54308](https://github.com/nodejs/node/pull/54308)
    
  • [`93ee36e3a0`](https://github.com/nodejs/node/commit/93ee36e3a0)] - **benchmark**: rename count to n (Rafael Gonzaga) [#&#8203;54271](https://github.com/nodejs/node/pull/54271)
    
  • [`f2971b6f0b`](https://github.com/nodejs/node/commit/f2971b6f0b)] - **benchmark**: change assert() to assert.ok() (Rafael Gonzaga) [#&#8203;54254](https://github.com/nodejs/node/pull/54254)
    
  • [`f48f2c212c`](https://github.com/nodejs/node/commit/f48f2c212c)] - **benchmark**: support --help in CLI (Aviv Keller) [#&#8203;53358](https://github.com/nodejs/node/pull/53358)
    
  • [`0309b0520b`](https://github.com/nodejs/node/commit/0309b0520b)] - **benchmark**: remove force option as force defaults to true (Yelim Koo) [#&#8203;54203](https://github.com/nodejs/node/pull/54203)
    
  • [`b6e8305b2d`](https://github.com/nodejs/node/commit/b6e8305b2d)] - **benchmark**: use assert.ok instead of assert (Rafael Gonzaga) [#&#8203;54176](https://github.com/nodejs/node/pull/54176)
    
  • [`90c660d26a`](https://github.com/nodejs/node/commit/90c660d26a)] - **benchmark**: add require-esm benchmark (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166)
    
  • [`1b8584b52e`](https://github.com/nodejs/node/commit/1b8584b52e)] - **benchmark,doc**: add CPU scaling governor to perf (Rafael Gonzaga) [#&#8203;54723](https://github.com/nodejs/node/pull/54723)
    
  • [`0b9161b330`](https://github.com/nodejs/node/commit/0b9161b330)] - **benchmark,doc**: mention bar.R to the list of scripts (Rafael Gonzaga) [#&#8203;54722](https://github.com/nodejs/node/pull/54722)
    
  • [`84bf93b7ea`](https://github.com/nodejs/node/commit/84bf93b7ea)] - **buffer**: allow invalid encoding in from (Robert Nagy) [#&#8203;54533](https://github.com/nodejs/node/pull/54533)
    
  • [`d04246a0d7`](https://github.com/nodejs/node/commit/d04246a0d7)] - **buffer**: optimize byteLength for common encodings (Robert Nagy) [#&#8203;54342](https://github.com/nodejs/node/pull/54342)
    
  • [`f36831f694`](https://github.com/nodejs/node/commit/f36831f694)] - **buffer**: optimize createFromString (Robert Nagy) [#&#8203;54324](https://github.com/nodejs/node/pull/54324)
    
  • [`f5f40c8088`](https://github.com/nodejs/node/commit/f5f40c8088)] - **buffer**: optimize for common encodings (Robert Nagy) [#&#8203;54319](https://github.com/nodejs/node/pull/54319)
    
  • [`76c37703be`](https://github.com/nodejs/node/commit/76c37703be)] - **buffer**: add JSDoc to blob bytes method (Roberto Simonini) [#&#8203;54117](https://github.com/nodejs/node/pull/54117)
    
  • [`3012d31404`](https://github.com/nodejs/node/commit/3012d31404)] - **buffer**: use faster integer argument check (Robert Nagy) [#&#8203;54089](https://github.com/nodejs/node/pull/54089)
    
  • [`3505782801`](https://github.com/nodejs/node/commit/3505782801)] - **buffer**: make indexOf(byte) faster (Tobias Nießen) [#&#8203;53455](https://github.com/nodejs/node/pull/53455)
    
  • [`d285fc1f68`](https://github.com/nodejs/node/commit/d285fc1f68)] - **build**: upgrade clang-format to v18 (Aviv Keller) [#&#8203;53957](https://github.com/nodejs/node/pull/53957)
    
  • [`d288ec3b0a`](https://github.com/nodejs/node/commit/d288ec3b0a)] - **build**: fix conflicting V8 object print flags (Daeyeon Jeong) [#&#8203;54785](https://github.com/nodejs/node/pull/54785)
    
  • [`e862eecac9`](https://github.com/nodejs/node/commit/e862eecac9)] - **build**: do not build with code cache for core coverage collection (Joyee Cheung) [#&#8203;54633](https://github.com/nodejs/node/pull/54633)
    
  • [`f7a606eb96`](https://github.com/nodejs/node/commit/f7a606eb96)] - **build**: turn off `-Wrestrict` (Richard Lau) [#&#8203;54737](https://github.com/nodejs/node/pull/54737)
    
  • [`71ca2665e4`](https://github.com/nodejs/node/commit/71ca2665e4)] - **build**: reclaim disk space on macOS GHA runner (jakecastelli) [#&#8203;54658](https://github.com/nodejs/node/pull/54658)
    
  • [`82d8051c39`](https://github.com/nodejs/node/commit/82d8051c39)] - **build**: don't clean obj.target directory if it doesn't exist (Joyee Cheung) [#&#8203;54337](https://github.com/nodejs/node/pull/54337)
    
  • [`6e550b1f26`](https://github.com/nodejs/node/commit/6e550b1f26)] - **build**: update `ruff` to `0.5.2` (Aviv Keller) [#&#8203;53909](https://github.com/nodejs/node/pull/53909)
    
  • [`e2ea7b26d7`](https://github.com/nodejs/node/commit/e2ea7b26d7)] - **build**: fix ./configure --help format error (Zhenwei Jin) [#&#8203;53066](https://github.com/nodejs/node/pull/53066)
    
  • [`eb2402d569`](https://github.com/nodejs/node/commit/eb2402d569)] - **build**: enable building with shared uvwasi lib (Pooja D P) [#&#8203;43987](https://github.com/nodejs/node/pull/43987)
    
  • [`45732314d4`](https://github.com/nodejs/node/commit/45732314d4)] - **build**: sync V8 warning cflags with BUILD.gn (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873)
    
  • [`6e0a2bb54c`](https://github.com/nodejs/node/commit/6e0a2bb54c)] - **build**: harmonize Clang checks (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873)
    
  • [`3f78d4eb28`](https://github.com/nodejs/node/commit/3f78d4eb28)] - **cli**: add `--expose-gc` flag available to `NODE_OPTIONS` (Juan José) [#&#8203;53078](https://github.com/nodejs/node/pull/53078)
    
  • [`a110409b2a`](https://github.com/nodejs/node/commit/a110409b2a)] - **console**: use validateOneOf for colorMode validation (HEESEUNG) [#&#8203;54245](https://github.com/nodejs/node/pull/54245)
    
  • [`231ab788ea`](https://github.com/nodejs/node/commit/231ab788ea)] - **crypto**: reject dh,x25519,x448 in {Sign,Verify}Final (Huáng Jùnliàng) [#&#8203;53774](https://github.com/nodejs/node/pull/53774)
    
  • [`a5984e4570`](https://github.com/nodejs/node/commit/a5984e4570)] - **crypto**: return a clearer error when loading an unsupported pkcs12 (Tim Perry) [#&#8203;54485](https://github.com/nodejs/node/pull/54485)
    
  • [`f287cd77bd`](https://github.com/nodejs/node/commit/f287cd77bd)] - **crypto**: remove unused `kHashTypes` internal (Antoine du Hamel) [#&#8203;54627](https://github.com/nodejs/node/pull/54627)
    
  • [`1fc904f8c4`](https://github.com/nodejs/node/commit/1fc904f8c4)] - **deps**: update cjs-module-lexer to 1.4.1 (Node.js GitHub Bot) [#&#8203;54846](https://github.com/nodejs/node/pull/54846)
    
  • [`95b55c39b1`](https://github.com/nodejs/node/commit/95b55c39b1)] - **deps**: update simdutf to 5.5.0 (Node.js GitHub Bot) [#&#8203;54434](https://github.com/nodejs/node/pull/54434)
    
  • [`cf6ded5dd3`](https://github.com/nodejs/node/commit/cf6ded5dd3)] - **deps**: update cjs-module-lexer to 1.4.0 (Node.js GitHub Bot) [#&#8203;54713](https://github.com/nodejs/node/pull/54713)
    
  • [`7f8edce3f1`](https://github.com/nodejs/node/commit/7f8edce3f1)] - **deps**: update c-ares to v1.33.1 (Node.js GitHub Bot) [#&#8203;54549](https://github.com/nodejs/node/pull/54549)
    
  • [`9a4a7b7ecc`](https://github.com/nodejs/node/commit/9a4a7b7ecc)] - **deps**: update undici to 6.19.8 (Node.js GitHub Bot) [#&#8203;54456](https://github.com/nodejs/node/pull/54456)
    
  • [`87ca1d7fee`](https://github.com/nodejs/node/commit/87ca1d7fee)] - **deps**: update simdutf to 5.3.4 (Node.js GitHub Bot) [#&#8203;54312](https://github.com/nodejs/node/pull/54312)
    
  • [`d3a743f182`](https://github.com/nodejs/node/commit/d3a743f182)] - **deps**: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`926981aa9f`](https://github.com/nodejs/node/commit/926981aa9f)] - **deps**: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`654c8d1fdc`](https://github.com/nodejs/node/commit/654c8d1fdc)] - **deps**: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`2477e79172`](https://github.com/nodejs/node/commit/2477e79172)] - **deps**: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`3d8113faf5`](https://github.com/nodejs/node/commit/3d8113faf5)] - **deps**: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`ac294e3db4`](https://github.com/nodejs/node/commit/ac294e3db4)] - **deps**: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464)
    
  • [`239588b968`](https://github.com/nodejs/node/commit/239588b968)] - **deps**: update c-ares to v1.33.0 (Node.js GitHub Bot) [#&#8203;54198](https://github.com/nodejs/node/pull/54198)
    
  • [`6e7de37ed3`](https://github.com/nodejs/node/commit/6e7de37ed3)] - **deps**: update undici to 6.19.7 (Node.js GitHub Bot) [#&#8203;54286](https://github.com/nodejs/node/pull/54286)
    
  • [`38aa9d6ea9`](https://github.com/nodejs/node/commit/38aa9d6ea9)] - **deps**: update acorn to 8.12.1 (Node.js GitHub Bot) [#&#8203;53465](https://github.com/nodejs/node/pull/53465)
    
  • [`d30145f663`](https://github.com/nodejs/node/commit/d30145f663)] - **deps**: update undici to 6.19.5 (Node.js GitHub Bot) [#&#8203;54076](https://github.com/nodejs/node/pull/54076)
    
  • [`c169d9c12b`](https://github.com/nodejs/node/commit/c169d9c12b)] - **deps**: update simdutf to 5.3.1 (Node.js GitHub Bot) [#&#8203;54196](https://github.com/nodejs/node/pull/54196)
    
  • [`92f3447957`](https://github.com/nodejs/node/commit/92f3447957)] - **doc**: add missing EventSource docs to globals (Matthew Aitken) [#&#8203;55022](https://github.com/nodejs/node/pull/55022)
    
  • [`2879ce9681`](https://github.com/nodejs/node/commit/2879ce9681)] - **doc**: fix broken Android building link (Niklas Wenzel) [#&#8203;54922](https://github.com/nodejs/node/pull/54922)
    
  • [`096623b59a`](https://github.com/nodejs/node/commit/096623b59a)] - **doc**: add support link for aduh95 (Antoine du Hamel) [#&#8203;54866](https://github.com/nodejs/node/pull/54866)
    
  • [`1dfd238781`](https://github.com/nodejs/node/commit/1dfd238781)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;54854](https://github.com/nodejs/node/pull/54854)
    
  • [`a6c748fffb`](https://github.com/nodejs/node/commit/a6c748fffb)] - **doc**: experimental flag for global accessible APIs (Chengzhong Wu) [#&#8203;54330](https://github.com/nodejs/node/pull/54330)
    
  • [`d48a22fa14`](https://github.com/nodejs/node/commit/d48a22fa14)] - **doc**: add `ERR_INVALID_ADDRESS` to `errors.md` (Aviv Keller) [#&#8203;54661](https://github.com/nodejs/node/pull/54661)
    
  • [`4a840cecfa`](https://github.com/nodejs/node/commit/4a840cecfa)] - **doc**: add support link for mcollina (Matteo Collina) [#&#8203;54786](https://github.com/nodejs/node/pull/54786)
    
  • [`ec22d86512`](https://github.com/nodejs/node/commit/ec22d86512)] - **doc**: mark `--conditions` CLI flag as stable (Guy Bedford) [#&#8203;54209](https://github.com/nodejs/node/pull/54209)
    
  • [`77c702ca07`](https://github.com/nodejs/node/commit/77c702ca07)] - **doc**: fix typo in recognizing-contributors (Tobias Nießen) [#&#8203;54822](https://github.com/nodejs/node/pull/54822)
    
  • [`62953ef9fb`](https://github.com/nodejs/node/commit/62953ef9fb)] - **doc**: clarify `--max-old-space-size` and `--max-semi-space-size` units (Alexandre ABRIOUX) [#&#8203;54477](https://github.com/nodejs/node/pull/54477)
    
  • [`e2bab0f2b2`](https://github.com/nodejs/node/commit/e2bab0f2b2)] - **doc**: replace --allow-fs-read by --allow-fs-write in related section (M1CK431) [#&#8203;54427](https://github.com/nodejs/node/pull/54427)
    
  • [`9cbfd5b33a`](https://github.com/nodejs/node/commit/9cbfd5b33a)] - **doc**: add support link for marco-ippolito (Marco Ippolito) [#&#8203;54789](https://github.com/nodejs/node/pull/54789)
    
  • [`53167b29ef`](https://github.com/nodejs/node/commit/53167b29ef)] - **doc**: fix typo (Michael Dawson) [#&#8203;54640](https://github.com/nodejs/node/pull/54640)
    
  • [`87f78a35f7`](https://github.com/nodejs/node/commit/87f78a35f7)] - **doc**: fix webcrypto.md AES-GCM backticks (Filip Skokan) [#&#8203;54621](https://github.com/nodejs/node/pull/54621)
    
  • [`7c83c15221`](https://github.com/nodejs/node/commit/7c83c15221)] - **doc**: add documentation about os.tmpdir() overrides (Joyee Cheung) [#&#8203;54613](https://github.com/nodejs/node/pull/54613)
    
  • [`4bfd832d70`](https://github.com/nodejs/node/commit/4bfd832d70)] - **doc**: add support me link for anonrig (Yagiz Nizipli) [#&#8203;54611](https://github.com/nodejs/node/pull/54611)
    
  • [`22a103e5ec`](https://github.com/nodejs/node/commit/22a103e5ec)] - **doc**: add alert on REPL from TCP socket (Rafael Gonzaga) [#&#8203;54594](https://github.com/nodejs/node/pull/54594)
    
  • [`b6374c24e1`](https://github.com/nodejs/node/commit/b6374c24e1)] - **doc**: fix typo in styleText description (Rafael Gonzaga) [#&#8203;54616](https://github.com/nodejs/node/pull/54616)
    
  • [`2f5b98ee1f`](https://github.com/nodejs/node/commit/2f5b98ee1f)] - **doc**: add getHeapStatistics() property descriptions (Benji Marinacci) [#&#8203;54584](https://github.com/nodejs/node/pull/54584)
    
  • [`482302b99b`](https://github.com/nodejs/node/commit/482302b99b)] - **doc**: fix information about including coverage files (Aviv Keller) [#&#8203;54527](https://github.com/nodejs/node/pull/54527)
    
  • [`b3708e7df4`](https://github.com/nodejs/node/commit/b3708e7df4)] - **doc**: support collaborators - talk amplification (Michael Dawson) [#&#8203;54508](https://github.com/nodejs/node/pull/54508)
    
  • [`c86fe23012`](https://github.com/nodejs/node/commit/c86fe23012)] - **doc**: add note about shasum generation failure (Marco Ippolito) [#&#8203;54487](https://github.com/nodejs/node/pull/54487)
    
  • [`d53e6cf755`](https://github.com/nodejs/node/commit/d53e6cf755)] - **doc**: fix capitalization in module.md (shallow-beach) [#&#8203;54488](https://github.com/nodejs/node/pull/54488)
    
  • [`cdc6713f18`](https://github.com/nodejs/node/commit/cdc6713f18)] - **doc**: add esm examples to node:https (Alfredo González) [#&#8203;54399](https://github.com/nodejs/node/pull/54399)
    
  • [`1ac1fe4e65`](https://github.com/nodejs/node/commit/1ac1fe4e65)] - **doc**: fix error description of the max header size (Egawa Ryo) [#&#8203;54125](https://github.com/nodejs/node/pull/54125)
    
  • [`244542b720`](https://github.com/nodejs/node/commit/244542b720)] - **doc**: add git node security --cleanup (Rafael Gonzaga) [#&#8203;54381](https://github.com/nodejs/node/pull/54381)
    
  • [`69fb71f54c`](https://github.com/nodejs/node/commit/69fb71f54c)] - **doc**: add note on weakness of permission model (Tobias Nießen) [#&#8203;54268](https://github.com/nodejs/node/pull/54268)
    
  • [`83b2cb908b`](https://github.com/nodejs/node/commit/83b2cb908b)] - **doc**: add versions when `--watch-preserve-output` was added (Théo LUDWIG) [#&#8203;54328](https://github.com/nodejs/node/pull/54328)
    
  • [`460fb49483`](https://github.com/nodejs/node/commit/460fb49483)] - **doc**: replace v19 mention in Current release (Rafael Gonzaga) [#&#8203;54361](https://github.com/nodejs/node/pull/54361)
    
  • [`994b46a160`](https://github.com/nodejs/node/commit/994b46a160)] - **doc**: correct peformance entry types (Jason Zhang) [#&#8203;54263](https://github.com/nodejs/node/pull/54263)
    
  • [`f142e668cb`](https://github.com/nodejs/node/commit/f142e668cb)] - **doc**: fix typo in method name in the sea doc (Eliyah Sundström) [#&#8203;54027](https://github.com/nodejs/node/pull/54027)
    
  • [`9529a30dba`](https://github.com/nodejs/node/commit/9529a30dba)] - **doc**: mark process.nextTick legacy (Marco Ippolito) [#&#8203;51280](https://github.com/nodejs/node/pull/51280)
    
  • [`7e25fabb91`](https://github.com/nodejs/node/commit/7e25fabb91)] - **doc**: add esm examples to node:http2 (Alfredo González) [#&#8203;54292](https://github.com/nodejs/node/pull/54292)
    
  • [`6a4f05e384`](https://github.com/nodejs/node/commit/6a4f05e384)] - **doc**: explicitly mention node:fs module restriction (Rafael Gonzaga) [#&#8203;54269](https://github.com/nodejs/node/pull/54269)
    
  • [`53f5c54997`](https://github.com/nodejs/node/commit/53f5c54997)] - **doc**: warn for windows build bug (Jason Zhang) [#&#8203;54217](https://github.com/nodejs/node/pull/54217)
    
  • [`07bde054f3`](https://github.com/nodejs/node/commit/07bde054f3)] - **doc**: make some parameters optional in `tracingChannel.traceCallback` (Deokjin Kim) [#&#8203;54068](https://github.com/nodejs/node/pull/54068)
    
  • [`62bf03b5f1`](https://github.com/nodejs/node/commit/62bf03b5f1)] - **doc**: add esm examples to node:dns (Alfredo González) [#&#8203;54172](https://github.com/nodejs/node/pull/54172)
    
  • [`fb2b19184b`](https://github.com/nodejs/node/commit/fb2b19184b)] - **doc**: add KevinEady as a triager (Chengzhong Wu) [#&#8203;54179](https://github.com/nodejs/node/pull/54179)
    
  • [`24976bfba0`](https://github.com/nodejs/node/commit/24976bfba0)] - **doc**: add esm examples to node:console (Alfredo González) [#&#8203;54108](https://github.com/nodejs/node/pull/54108)
    
  • [`4e7edc40f7`](https://github.com/nodejs/node/commit/4e7edc40f7)] - **doc**: fix sea assets example (Sadzurami) [#&#8203;54192](https://github.com/nodejs/node/pull/54192)
    
  • [`322b5d91e1`](https://github.com/nodejs/node/commit/322b5d91e1)] - **doc**: add links to security steward companies (Aviv Keller) [#&#8203;52981](https://github.com/nodejs/node/pull/52981)
    
  • [`6ab271510e`](https://github.com/nodejs/node/commit/6ab271510e)] - **doc**: move `onread` option from `socket.connect()` to `new net.socket()` (sendoru) [#&#8203;54194](https://github.com/nodejs/node/pull/54194)
    
  • [`39c30ea08f`](https://github.com/nodejs/node/commit/39c30ea08f)] - **doc**: move release key for Myles Borins (Richard Lau) [#&#8203;54059](https://github.com/nodejs/node/pull/54059)
    
  • [`e9fc54804a`](https://github.com/nodejs/node/commit/e9fc54804a)] - **doc**: refresh instructions for building node from source (Liran Tal) [#&#8203;53768](https://github.com/nodejs/node/pull/53768)
    
  • [`f131dc625a`](https://github.com/nodejs/node/commit/f131dc625a)] - **doc**: add documentation for blob.bytes() method (jaexxin) [#&#8203;54114](https://github.com/nodejs/node/pull/54114)
    
  • [`8d41bb900b`](https://github.com/nodejs/node/commit/8d41bb900b)] - **doc**: add missing new lines to custom test reporter examples (Eddie Abbondanzio) [#&#8203;54152](https://github.com/nodejs/node/pull/54152)
    
  • [`2acaeaba77`](https://github.com/nodejs/node/commit/2acaeaba77)] - **doc**: update list of Triagers on the `README.md` (Antoine du Hamel) [#&#8203;54138](https://github.com/nodejs/node/pull/54138)
    
  • [`fff8eb2792`](https://github.com/nodejs/node/commit/fff8eb2792)] - **doc**: expand troubleshooting section (Liran Tal) [#&#8203;53808](https://github.com/nodejs/node/pull/53808)
    
  • [`402121520f`](https://github.com/nodejs/node/commit/402121520f)] - **doc**: clarify `useCodeCache` setting for cross-platform SEA generation (Yelim Koo) [#&#8203;53994](https://github.com/nodejs/node/pull/53994)
    
  • [`272484b8b2`](https://github.com/nodejs/node/commit/272484b8b2)] - **doc**: test for cli options (Aras Abbasi) [#&#8203;51623](https://github.com/nodejs/node/pull/51623)
    
  • [`c4d0ca4710`](https://github.com/nodejs/node/commit/c4d0ca4710)] - **doc, build**: fixup build docs (Aviv Keller) [#&#8203;54899](https://github.com/nodejs/node/pull/54899)
    
  • [`2e3e17748b`](https://github.com/nodejs/node/commit/2e3e17748b)] - **doc, child_process**: add esm snippets (Aviv Keller) [#&#8203;53616](https://github.com/nodejs/node/pull/53616)
    
  • [`c40b4b4f27`](https://github.com/nodejs/node/commit/c40b4b4f27)] - **doc, meta**: fix broken link in `onboarding.md` (Aviv Keller) [#&#8203;54886](https://github.com/nodejs/node/pull/54886)
    
  • [`beff587b94`](https://github.com/nodejs/node/commit/beff587b94)] - **doc, meta**: add missing `,` to `BUILDING.md` (Aviv Keller) [#&#8203;54409](https://github.com/nodejs/node/pull/54409)
    
  • [`c114585430`](https://github.com/nodejs/node/commit/c114585430)] - **doc, meta**: replace command with link to keys (Aviv Keller) [#&#8203;53745](https://github.com/nodejs/node/pull/53745)
    
  • [`0843077a99`](https://github.com/nodejs/node/commit/0843077a99)] - **doc, test**: simplify test README table (Aviv Keller) [#&#8203;53971](https://github.com/nodejs/node/pull/53971)
    
  • [`2df7bc0e32`](https://github.com/nodejs/node/commit/2df7bc0e32)] - **doc,tools**: enforce use of `node:` prefix (Antoine du Hamel) [#&#8203;53950](https://github.com/nodejs/node/pull/53950)
    
  • [`0dd4639391`](https://github.com/nodejs/node/commit/0dd4639391)] - **esm**: fix support for `URL` instances in `import.meta.resolve` (Antoine du Hamel) [#&#8203;54690](https://github.com/nodejs/node/pull/54690)
    
  • [`f0c55e206d`](https://github.com/nodejs/node/commit/f0c55e206d)] - **fs**: refactor rimraf to avoid using primordials (Yagiz Nizipli) [#&#8203;54834](https://github.com/nodejs/node/pull/54834)
    
  • [`f568384bbd`](https://github.com/nodejs/node/commit/f568384bbd)] - **fs**: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) [#&#8203;54369](https://github.com/nodejs/node/pull/54369)
    
  • [`2fb7cc9715`](https://github.com/nodejs/node/commit/2fb7cc9715)] - **fs**: fix typings (Yagiz Nizipli) [#&#8203;53626](https://github.com/nodejs/node/pull/53626)
    
  • [`596940cfa0`](https://github.com/nodejs/node/commit/596940cfa0)] - **http**: reduce likelihood of race conditions on keep-alive timeout (jazelly) [#&#8203;54863](https://github.com/nodejs/node/pull/54863)
    
  • [`6e13a7ba02`](https://github.com/nodejs/node/commit/6e13a7ba02)] - **http**: remove prototype primordials (Antoine du Hamel) [#&#8203;53698](https://github.com/nodejs/node/pull/53698)
    
  • [`99f96eb3f7`](https://github.com/nodejs/node/commit/99f96eb3f7)] - **http2**: remove prototype primordials (Antoine du Hamel) [#&#8203;53696](https://github.com/nodejs/node/pull/53696)
    
  • [`41f5eacc1a`](https://github.com/nodejs/node/commit/41f5eacc1a)] - **https**: only use default ALPNProtocols when appropriate (Brian White) [#&#8203;54411](https://github.com/nodejs/node/pull/54411)
    
  • [`59a39520e1`](https://github.com/nodejs/node/commit/59a39520e1)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#&#8203;54246](https://github.com/nodejs/node/pull/54246)
    
  • [`d1007fb1a9`](https://github.com/nodejs/node/commit/d1007fb1a9)] - **inspector**: provide detailed info to fix DevTools frontend errors (Kohei Ueno) [#&#8203;54156](https://github.com/nodejs/node/pull/54156)
    
  • [`3b93507949`](https://github.com/nodejs/node/commit/3b93507949)] - **(SEMVER-MINOR)** **inspector**: add initial support for network inspection (Kohei Ueno) [#&#8203;53593](https://github.com/nodejs/node/pull/53593)
    
  • [`fc37b801c8`](https://github.com/nodejs/node/commit/fc37b801c8)] - **lib**: remove unnecessary async (jakecastelli) [#&#8203;54829](https://github.com/nodejs/node/pull/54829)
    
  • [`d86f24787b`](https://github.com/nodejs/node/commit/d86f24787b)] - **lib**: make WeakRef safe in abort_controller (jazelly) [#&#8203;54791](https://github.com/nodejs/node/pull/54791)
    
  • [`77c59224e5`](https://github.com/nodejs/node/commit/77c59224e5)] - **lib**: add note about removing `node:sys` module (Rafael Gonzaga) [#&#8203;54743](https://github.com/nodejs/node/pull/54743)
    
  • [`b8c06dce02`](https://github.com/nodejs/node/commit/b8c06dce02)] - **lib**: ensure no holey array in fixed_queue (Jason Zhang) [#&#8203;54537](https://github.com/nodejs/node/pull/54537)
    
  • [`b85c8ce1fc`](https://github.com/nodejs/node/commit/b85c8ce1fc)] - **lib**: refactor SubtleCrypto experimental warnings (Filip Skokan) [#&#8203;54620](https://github.com/nodejs/node/pull/54620)
    
  • [`e84812c1b5`](https://github.com/nodejs/node/commit/e84812c1b5)] - **lib**: respect terminal capabilities on styleText (Rafael Gonzaga) [#&#8203;54389](https://github.com/nodejs/node/pull/54389)
    
  • [`c004abaf17`](https://github.com/nodejs/node/commit/c004abaf17)] - **lib**: replace spread operator with primordials function (YoonSoo_Shin) [#&#8203;54053](https://github.com/nodejs/node/pull/54053)
    
  • [`b79aeabc4d`](https://github.com/nodejs/node/commit/b79aeabc4d)] - **lib**: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) [#&#8203;54258](https://github.com/nodejs/node/pull/54258)
    
  • [`f4085363c6`](https://github.com/nodejs/node/commit/f4085363c6)] - **lib**: fix unhandled errors in webstream adapters (Fedor Indutny) [#&#8203;54206](https://github.com/nodejs/node/pull/54206)
    
  • [`1ad857e748`](https://github.com/nodejs/node/commit/1ad857e748)] - **lib**: fix typos in comments within internal/streams (YoonSoo_Shin) [#&#8203;54093](https://github.com/nodejs/node/pull/54093)
    
  • [`02b36cbd2d`](https://github.com/nodejs/node/commit/02b36cbd2d)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575)
    
  • [`afbf2c0530`](https://github.com/nodejs/node/commit/afbf2c0530)] - **lib,permission**: support Buffer to permission.has (Rafael Gonzaga) [#&#8203;54104](https://github.com/nodejs/node/pull/54104)
    
  • [`54af47395d`](https://github.com/nodejs/node/commit/54af47395d)] - **meta**: bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 (dependabot\[bot]) [#&#8203;54820](https://github.com/nodejs/node/pull/54820)
    
  • [`a0c10f2ed9`](https://github.com/nodejs/node/commit/a0c10f2ed9)] - **meta**: add `Windows ARM64` to flaky-tests list (Aviv Keller) [#&#8203;54693](https://github.com/nodejs/node/pull/54693)
    
  • [`27b06880e1`](https://github.com/nodejs/node/commit/27b06880e1)] - **meta**: bump actions/setup-python from 5.1.1 to 5.2.0 (Rich Trott) [#&#8203;54691](https://github.com/nodejs/node/pull/54691)
    
  • [`8747af1037`](https://github.com/nodejs/node/commit/8747af1037)] - **meta**: update sccache to v0.8.1 (Aviv Keller) [#&#8203;54720](https://github.com/nodejs/node/pull/54720)
    
  • [`3f753d87a6`](https://github.com/nodejs/node/commit/3f753d87a6)] - **meta**: bump step-security/harden-runner from 2.9.0 to 2.9.1 (dependabot\[bot]) [#&#8203;54704](https://github.com/nodejs/node/pull/54704)
    
  • [`6f103ae25d`](https://github.com/nodejs/node/commit/6f103ae25d)] - **meta**: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot\[bot]) [#&#8203;54703](https://github.com/nodejs/node/pull/54703)
    
  • [`3e6a9bb04e`](https://github.com/nodejs/node/commit/3e6a9bb04e)] - **meta**: bump github/codeql-action from 3.25.15 to 3.26.6 (dependabot\[bot]) [#&#8203;54702](https://github.com/nodejs/node/pull/54702)
    
  • [`c666ebc4e4`](https://github.com/nodejs/node/commit/c666ebc4e4)] - **meta**: fix links in `SECURITY.md` (Aviv Keller) [#&#8203;54696](https://github.com/nodejs/node/pull/54696)
    
  • [`4d361b3bed`](https://github.com/nodejs/node/commit/4d361b3bed)] - **meta**: fix `contributing` codeowners (Aviv Keller) [#&#8203;54641](https://github.com/nodejs/node/pull/54641)
    
  • [`36931aa183`](https://github.com/nodejs/node/commit/36931aa183)] - **meta**: remind users to use a supported version in bug reports (Aviv Keller) [#&#8203;54481](https://github.com/nodejs/node/pull/54481)
    
  • [`cf283d9ca7`](https://github.com/nodejs/node/commit/cf283d9ca7)] - **meta**: run coverage-windows when `vcbuild.bat` updated (Aviv Keller) [#&#8203;54412](https://github.com/nodejs/node/pull/54412)
    
  • [`67ca397c9f`](https://github.com/nodejs/node/commit/67ca397c9f)] - **meta**: add test-permission-\* CODEOWNERS (Rafael Gonzaga) [#&#8203;54267](https://github.com/nodejs/node/pull/54267)
    
  • [`b61a2f5b79`](https://github.com/nodejs/node/commit/b61a2f5b79)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;54210](https://github.com/nodejs/node/pull/54210)
    
  • [`dd8ab83667`](https://github.com/nodejs/node/commit/dd8ab83667)] - **meta**: add module label for the lib/internal/modules folder (Aviv Keller) [#&#8203;52858](https://github.com/nodejs/node/pull/52858)
    
  • [`db78978d17`](https://github.com/nodejs/node/commit/db78978d17)] - **meta**: bump `actions/upload-artifact` from 4.3.3 to 4.3.4 (dependabot\[bot]) [#&#8203;54166](https://github.com/nodejs/node/pull/54166)
    
  • [`ca808dd9e5`](https://github.com/nodejs/node/commit/ca808dd9e5)] - **meta**: bump `actions/download-artifact` from 4.1.7 to 4.1.8 (dependabot\[bot]) [#&#8203;54167](https://github.com/nodejs/node/pull/54167)
    
  • [`a35d980146`](https://github.com/nodejs/node/commit/a35d980146)] - **meta**: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot\[bot]) [#&#8203;54165](https://github.com/nodejs/node/pull/54165)
    
  • [`3a103c3a17`](https://github.com/nodejs/node/commit/3a103c3a17)] - **meta**: bump `step-security/harden-runner` from 2.8.1 to 2.9.0 (dependabot\[bot]) [#&#8203;54169](https://github.com/nodejs/node/pull/54169)
    
  • [`775ebbe0e8`](https://github.com/nodejs/node/commit/775ebbe0e8)] - **meta**: bump `actions/setup-node` from 4.0.2 to 4.0.3 (dependabot\[bot]) [#&#8203;54170](https://github.com/nodejs/node/pull/54170)
    
  • [`7d5dd6f1d1`](https://github.com/nodejs/node/commit/7d5dd6f1d1)] - **meta**: bump `github/codeql-action` from 3.25.11 to 3.25.15 (dependabot\[bot]) [#&#8203;54168](https://github.com/nodejs/node/pull/54168)
    
  • [`80dd38dde3`](https://github.com/nodejs/node/commit/80dd38dde3)] - **meta**: bump `ossf/scorecard-action` from 2.3.3 to 2.4.0 (dependabot\[bot]) [#&#8203;54171](https://github.com/nodejs/node/pull/54171)
    
  • [`90b632ee02`](https://github.com/nodejs/node/commit/90b632ee02)] - **module**: warn on detection in typeless package (Geoffrey Booth) [#&#8203;52168](https://github.com/nodejs/node/pull/52168)
    
  • [`3011927aab`](https://github.com/nodejs/node/commit/3011927aab)] - **node-api**: add external buffer creation benchmark (Chengzhong Wu) [#&#8203;54877](https://github.com/nodejs/node/pull/54877)
    
  • [`7611093e11`](https://github.com/nodejs/node/commit/7611093e11)] - **node-api**: add support for UTF-8 and Latin-1 property keys (Mert Can Altin) [#&#8203;52984](https://github.com/nodejs/node/pull/52984)
    
  • [`d65a8f377c`](https://github.com/nodejs/node/commit/d65a8f377c)] - **node-api**: remove RefBase and CallbackWrapper (Vladimir Morozov) [#&#8203;53590](https://github.com/nodejs/node/pull/53590)
    
  • [`309cb1cbd2`](https://github.com/nodejs/node/commit/309cb1cbd2)] - **path**: remove `StringPrototypeCharCodeAt` from `posix.extname` (Aviv Keller) [#&#8203;54546](https://github.com/nodejs/node/pull/54546)
    
  • [`2859b4ba9a`](https://github.com/nodejs/node/commit/2859b4ba9a)] - **path**: change `posix.join` to use array (Wiyeong Seo) [#&#8203;54331](https://github.com/nodejs/node/pull/54331)
    
  • [`c61cee2138`](https://github.com/nodejs/node/commit/c61cee2138)] - **path**: fix relative on Windows (Hüseyin Açacak) [#&#8203;53991](https://github.com/nodejs/node/pull/53991)
    
  • [`329be5cc35`](https://github.com/nodejs/node/commit/329be5cc35)] - **path**: use the correct name in `validateString` (Benjamin Pasero) [#&#8203;53669](https://github.com/nodejs/node/pull/53669)
    
  • [`a9837267cb`](https://github.com/nodejs/node/commit/a9837267cb)] - **repl**: avoid interpreting 'npm' as a command when errors are recoverable (Shima Ryuhei) [#&#8203;54848](https://github.com/nodejs/node/pull/54848)
    
  • [`d6a2317961`](https://github.com/nodejs/node/commit/d6a2317961)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842)
    
  • [`7f09d983f3`](https://github.com/nodejs/node/commit/7f09d983f3)] - **sea**: don't set code cache flags when snapshot is used (Joyee Cheung) [#&#8203;54120](https://github.com/nodejs/node/pull/54120)
    
  • [`85542b094c`](https://github.com/nodejs/node/commit/85542b094c)] - **src**: add Cleanable class to Environment (Gabriel Schulhof) [#&#8203;54880](https://github.com/nodejs/node/pull/54880)
    
  • [`8422064127`](https://github.com/nodejs/node/commit/8422064127)] - **src**: remove redundant AESCipherMode (Tobias Nießen) [#&#8203;54438](https://github.com/nodejs/node/pull/54438)
    
  • [`342c32483a`](https://github.com/nodejs/node/commit/342c32483a)] - **src**: handle errors correctly in `permission.cc` (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541)
    
  • [`90ff714699`](https://github.com/nodejs/node/commit/90ff714699)] - **src**: return `v8::Object` from error constructors (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541)
    
  • [`872856cfcb`](https://github.com/nodejs/node/commit/872856cfcb)] - **src**: improve `buffer.transcode` performance (Yagiz Nizipli) [#&#8203;54153](https://github.com/nodejs/node/pull/54153)
    
  • [`91936ebd12`](https://github.com/nodejs/node/commit/91936ebd12)] - **src**: skip inspector wait in internal workers (Chengzhong Wu) [#&#8203;54219](https://github.com/nodejs/node/pull/54219)
    
  • [`9759049427`](https://github.com/nodejs/node/commit/9759049427)] - **src**: account for OpenSSL unexpected version (Shelley Vohr) [#&#8203;54038](https://github.com/nodejs/node/pull/54038)
    
  • [`87167fa248`](https://github.com/nodejs/node/commit/87167fa248)] - **src**: use `args.This()` instead of `Holder` (Michaël Zasso) [#&#8203;53474](https://github.com/nodejs/node/pull/53474)
    
  • [`b05c56e4be`](https://github.com/nodejs/node/commit/b05c56e4be)] - **src**: simplify `size() == 0` checks (Yagiz Nizipli) [#&#8203;53440](https://github.com/nodejs/node/pull/53440)
    
  • [`d53e53699c`](https://github.com/nodejs/node/commit/d53e53699c)] - **src**: fix execArgv in worker (theanarkh) [#&#8203;53029](https://github.com/nodejs/node/pull/53029)
    
  • [`21776a34b5`](https://github.com/nodejs/node/commit/21776a34b5)] - **src**: make sure pass the `argv` to worker threads (theanarkh) [#&#8203;52827](https://github.com/nodejs/node/pull/52827)
    
  • [`3aaae68ec8`](https://github.com/nodejs/node/commit/3aaae68ec8)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413)
    
  • [`ef1c0d7def`](https://github.com/nodejs/node/commit/ef1c0d7def)] - **src,permission**: handle process.chdir on pm (Rafael Gonzaga) [#&#8203;53175](https://github.com/nodejs/node/pull/53175)
    
  • [`0c32918eef`](https://github.com/nodejs/node/commit/0c32918eef)] - **stream**: change stream to use index instead of `for...of` (Wiyeong Seo) [#&#8203;54474](https://github.com/nodejs/node/pull/54474)
    
  • [`337cd412b5`](https://github.com/nodejs/node/commit/337cd412b5)] - **stream**: make checking pendingcb on WritableStream backward compatible (jakecastelli) [#&#8203;54142](https://github.com/nodejs/node/pull/54142)
    
  • [`713fc0c9eb`](https://github.com/nodejs/node/commit/713fc0c9eb)] - **stream**: throw TypeError when criteria fulfilled in getIterator (jakecastelli) [#&#8203;53825](https://github.com/nodejs/node/pull/53825)
    
  • [`9686153616`](https://github.com/nodejs/node/commit/9686153616)] - **stream**: fix util.inspect for compression/decompressionStream (Mert Can Altin) [#&#8203;52283](https://github.com/nodejs/node/pull/52283)
    
  • [`76110b0b43`](https://github.com/nodejs/node/commit/76110b0b43)] - **test**: adjust test-tls-junk-server for OpenSSL32 (Michael Dawson) [#&#8203;54926](https://github.com/nodejs/node/pull/54926)
    
  • [`4092889371`](https://github.com/nodejs/node/commit/4092889371)] - **test**: adjust tls test for OpenSSL32 (Michael Dawson) [#&#8203;54909](https://github.com/nodejs/node/pull/54909)
    
  • [`5d48543a16`](https://github.com/nodejs/node/commit/5d48543a16)] - **test**: fix test-http2-socket-close.js (Hüseyin Açacak) [#&#8203;54900](https://github.com/nodejs/node/pull/54900)
    
  • [`8048c2eaed`](https://github.com/nodejs/node/commit/8048c2eaed)] - **test**: improve test-internal-fs-syncwritestream (Sunghoon) [#&#8203;54671](https://github.com/nodejs/node/pull/54671)
    
  • [`597bc14c90`](https://github.com/nodejs/node/commit/597bc14c90)] - **test**: deflake test-dns (Luigi Pinca) [#&#8203;54902](https://github.com/nodejs/node/pull/54902)
    
  • [`a9fc8d9cfa`](https://github.com/nodejs/node/commit/a9fc8d9cfa)] - **test**: fix test test-tls-dhe for OpenSSL32 (Michael Dawson) [#&#8203;54903](https://github.com/nodejs/node/pull/54903)
    
  • [`1b3b4f4a9f`](https://github.com/nodejs/node/commit/1b3b4f4a9f)] - **test**: use correct file naming syntax for `util-parse-env` (Aviv Keller) [#&#8203;53705](https://github.com/nodejs/node/pull/53705)
    
  • [`9db46b5ea3`](https://github.com/nodejs/node/commit/9db46b5ea3)] - **test**: add missing await (Luigi Pinca) [#&#8203;54828](https://github.com/nodejs/node/pull/54828)
    
  • [`124f715679`](https://github.com/nodejs/node/commit/124f715679)] - **test**: move more url tests to `node:test` (Yagiz Nizipli) [#&#8203;54636](https://github.com/nodejs/node/pull/54636)
    
  • [`d2ec96150a`](https://github.com/nodejs/node/commit/d2ec96150a)] - **test**: strip color chars in `test-runner-run` (Giovanni Bucci) [#&#8203;54552](https://github.com/nodejs/node/pull/54552)
    
  • [`747d9ae72e`](https://github.com/nodejs/node/commit/747d9ae72e)] - **test**: deflake test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54872](https://github.com/nodejs/node/pull/54872)
    
  • [`7b7687eadc`](https://github.com/nodejs/node/commit/7b7687eadc)] - **test**: remove dead code in test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54860](https://github.com/nodejs/node/pull/54860)
    
  • [`60f5f5426d`](https://github.com/nodejs/node/commit/60f5f5426d)] - **test**: reduce test-esm-loader-hooks-inspect-wait flakiness (Luigi Pinca) [#&#8203;54827](https://github.com/nodejs/node/pull/54827)
    
  • [`f5e77385c5`](https://github.com/nodejs/node/commit/f5e77385c5)] - **test**: reduce the allocation size in test-worker-arraybuffer-zerofill (James M Snell) [#&#8203;54839](https://github.com/nodejs/node/pull/54839)
    
  • [`f26cf09d6b`](https://github.com/nodejs/node/commit/f26cf09d6b)] - **test**: fix test-tls-client-mindhsize for OpenSSL32 (Michael Dawson) [#&#8203;54739](https://github.com/nodejs/node/pull/54739)
    
  • [`c6f9afec94`](https://github.com/nodejs/node/commit/c6f9afec94)] - **test**: use platform timeout (jakecastelli) [#&#8203;54591](https://github.com/nodejs/node/pull/54591)
    
  • [`8f49b7c3ee`](https://github.com/nodejs/node/commit/8f49b7c3ee)] - **test**: reduce fs calls in test-fs-existssync-false (Yagiz Nizipli) [#&#8203;54815](https://github.com/nodejs/node/pull/54815)
    
  • [`e2c69c9844`](https://github.com/nodejs/node/commit/e2c69c9844)] - **test**: move test-http-server-request-timeouts-mixed (James M Snell) [#&#8203;54841](https://github.com/nodejs/node/pull/54841)
    
  • [`f7af8ca021`](https://github.com/nodejs/node/commit/f7af8ca021)] - **test**: fix volatile for CauseSegfault with clang (Ivan Trubach) [#&#8203;54325](https://github.com/nodejs/node/pull/54325)
    
  • [`d1bae5ede5`](https://github.com/nodejs/node/commit/d1bae5ede5)] - **test**: set `test-worker-arraybuffer-zerofill` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`b5b5cc811f`](https://github.com/nodejs/node/commit/b5b5cc811f)] - **test**: set `test-http-server-request-timeouts-mixed` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`9808feecac`](https://github.com/nodejs/node/commit/9808feecac)] - **test**: set `test-single-executable-application-empty` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`97d41c62e3`](https://github.com/nodejs/node/commit/97d41c62e3)] - **test**: set `test-macos-app-sandbox` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`57ae68001c`](https://github.com/nodejs/node/commit/57ae68001c)] - **test**: set `test-fs-utimes` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`38afc4da03`](https://github.com/nodejs/node/commit/38afc4da03)] - **test**: set `test-runner-run-watch` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`68e19748a6`](https://github.com/nodejs/node/commit/68e19748a6)] - **test**: set `test-writewrap` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`e8cb03d530`](https://github.com/nodejs/node/commit/e8cb03d530)] - **test**: set `test-async-context-frame` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`3a56517220`](https://github.com/nodejs/node/commit/3a56517220)] - **test**: set `test-esm-loader-hooks-inspect-wait` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`c98cd1227d`](https://github.com/nodejs/node/commit/c98cd1227d)] - **test**: set `test-http2-large-file` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`16176a6323`](https://github.com/nodejs/node/commit/16176a6323)] - **test**: set `test-runner-watch-mode-complex` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`eed0537533`](https://github.com/nodejs/node/commit/eed0537533)] - **test**: set `test-performance-function` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`d0f208d2e9`](https://github.com/nodejs/node/commit/d0f208d2e9)] - **test**: set `test-debugger-heap-profiler` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802)
    
  • [`68891a6363`](https://github.com/nodejs/node/commit/68891a6363)] - **test**: fix `test-process-load-env-file` when path contains `'` (Antoine du Hamel) [#&#8203;54511](https://github.com/nodejs/node/pull/54511)
    
  • [`4f82673139`](https://github.com/nodejs/node/commit/4f82673139)] - **test**: refactor fs-watch tests due to macOS issue (Santiago Gimeno) [#&#8203;54498](https://github.com/nodejs/node/pull/54498)
    
  • [`3606c53fdc`](https://github.com/nodejs/node/commit/3606c53fdc)] - **test**: refactor `test-esm-type-field-errors` (Giovanni Bucci) [#&#8203;54368](https://github.com/nodejs/node/pull/54368)
    
  • [`99566aea97`](https://github.com/nodejs/node/commit/99566aea97)] - **test**: improve output of child process utilities (Joyee Cheung) [#&#8203;54622](https://github.com/nodejs/node/pull/54622)
    
  • [`ed2377c1a1`](https://github.com/nodejs/node/commit/ed2377c1a1)] - **test**: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) [#&#8203;54610](https://github.com/nodejs/node/pull/54610)
    
  • [`d2a7e45946`](https://github.com/nodejs/node/commit/d2a7e45946)] - **test**: update TLS test for OpenSSL 3.2 (Richard Lau) [#&#8203;54612](https://github.com/nodejs/node/pull/54612)
    
  • [`a50bbca78a`](https://github.com/nodejs/node/commit/a50bbca78a)] - **test**: increase key size for ca2-cert.pem (Michael Dawson) [#&#8203;54599](https://github.com/nodejs/node/pull/54599)
    
  • [`d7ac3262de`](https://github.com/nodejs/node/commit/d7ac3262de)] - **test**: update test-assert-typedarray-deepequal to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585)
    
  • [`916a73cd8f`](https://github.com/nodejs/node/commit/916a73cd8f)] - **test**: update test-assert to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585)
    
  • [`10bea1cef5`](https://github.com/nodejs/node/commit/10bea1cef5)] - **test**: merge ongc and gcutil into gc.js (tannal) [#&#8203;54355](https://github.com/nodejs/node/pull/54355)
    
  • [`f145982436`](https://github.com/nodejs/node/commit/f145982436)] - **test**: move a couple of tests over to using node:test (James M Snell) [#&#8203;54582](https://github.com/nodejs/node/pull/54582)
    
  • [`229e102d20`](https://github.com/nodejs/node/commit/229e102d20)] - **test**: fix embedding test for Windows (Vladimir Morozov) [#&#8203;53659](https://github.com/nodejs/node/pull/53659)
    
  • [`fcf82adef0`](https://github.com/nodejs/node/commit/fcf82adef0)] - **test**: use relative paths in test-cli-permission tests (sendoru) [#&#8203;54188](https://github.com/nodejs/node/pull/54188)
    
  • [`4c219b0235`](https://github.com/nodejs/node/commit/4c219b0235)] - **test**: fix timeout not being cleared (Isaac-yz-Liu) [#&#8203;54242](https://github.com/nodejs/node/pull/54242)
    
  • [`e446517a41`](https://github.com/nodejs/node/commit/e446517a41)] - **test**: refactor `test-runner-module-mocking` (Antoine du Hamel) [#&#8203;54233](https://github.com/nodejs/node/pull/54233)
    
  • [`782a6a05ef`](https://github.com/nodejs/node/commit/782a6a05ef)] - **test**: use assert.{s,deepS}trictEqual() (Luigi Pinca) [#&#8203;54208](https://github.com/nodejs/node/pull/54208)
    
  • [`d478db7adc`](https://github.com/nodejs/node/commit/d478db7adc)] - **test**: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) [#&#8203;54115](https://github.com/nodejs/node/pull/54115)
    
  • [`c8587ec90d`](https://github.com/nodejs/node/commit/c8587ec90d)] - **test**: update wpt test for streams (devstone) [#&#8203;54129](https://github.com/nodejs/node/pull/54129)
    
  • [`dbc26c2971`](https://github.com/nodejs/node/commit/dbc26c2971)] - **test**: fix typo in test (Sonny) [#&#8203;54137](https://github.com/nodejs/node/pull/54137)
    
  • [`17b7ec4df3`](https://github.com/nodejs/node/commit/17b7ec4df3)] - **test**: add initial pull delay and prototype pollution prevention tests (Sonny) [#&#8203;54061](https://github.com/nodejs/node/pull/54061)
    
  • [`931ff4367a`](https://github.com/nodejs/node/commit/931ff4367a)] - **test**: update wpt test (Mert Can Altin) [#&#8203;53814](https://github.com/nodejs/node/pull/53814)
    
  • [`1c1bd7ce52`](https://github.com/nodejs/node/commit/1c1bd7ce52)] - **test**: update `url` web-platform tests (Yagiz Nizipli) [#&#8203;53472](https://github.com/nodejs/node/pull/53472)
    
  • [`b048eaea5c`](https://github.com/nodejs/node/commit/b048eaea5c)] - **test_runner**: reimplement `assert.ok` to allow stack parsing (Aviv Keller) [#&#8203;54776](https://github.com/nodejs/node/pull/54776)
    
  • [`c981e61155`](https://github.com/nodejs/node/commit/c981e61155)] - **test_runner**: improve code coverage cleanup (Colin Ihrig) [#&#8203;54856](https://github.com/nodejs/node/pull/54856)
    
  • [`4f421b37da`](https://github.com/nodejs/node/commit/4f421b37da)] - **test_runner**: use validateStringArray for `timers.enable()` (Deokjin Kim) [#&#8203;49534](https://github.com/nodejs/node/pull/49534)
    
  • [`27da75ae22`](https://github.com/nodejs/node/commit/27da75ae22)] - **test_runner**: do not expose internal loader (Antoine du Hamel) [#&#8203;54106](https://github.com/nodejs/node/pull/54106)
    
  • [`56cbc80d28`](https://github.com/nodejs/node/commit/56cbc80d28)] - **test_runner**: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) [#&#8203;53846](https://github.com/nodejs/node/pull/53846)
    
  • [`8fd951f7c7`](https://github.com/nodejs/node/commit/8fd951f7c7)] - **test_runner**: remove outdated comment (Colin Ihrig) [#&#8203;54146](https://github.com/nodejs/node/pull/54146)
    
  • [`65b6fec3ba`](https://github.com/nodejs/node/commit/65b6fec3ba)] - **test_runner**: run after hooks even if test is aborted (Colin Ihrig) [#&#8203;54151](https://github.com/nodejs/node/pull/54151)
    
  • [`c0b4c8284c`](https://github.com/nodejs/node/commit/c0b4c8284c)] - **test_runner**: added colors to dot reporter (Giovanni) [#&#8203;53450](https://github.com/nodejs/node/pull/53450)
    
  • [`3000e5df91`](https://github.com/nodejs/node/commit/3000e5df91)] - **test_runner**: support module detection in module mocks (Geoffrey Booth) [#&#8203;53642](https://github.com/nodejs/node/pull/53642)
    
  • [`f789f4c92d`](https://github.com/nodejs/node/commit/f789f4c92d)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848)
    
  • [`82d1c36f51`](https://github.com/nodejs/node/commit/82d1c36f51)] - **test_runner**: display failed test stack trace with dot reporter (Mihir Bhansali) [#&#8203;52655](https://github.com/nodejs/node/pull/52655)
    
  • [`5358601e31`](https://github.com/nodejs/node/commit/5358601e31)] - **timers**: avoid generating holey internal arrays (Gürgün Dayıoğlu) [#&#8203;54771](https://github.com/nodejs/node/pull/54771)
    
  • [`b6ed97c66d`](https://github.com/nodejs/node/commit/b6ed97c66d)] - **timers**: document ref option for scheduler.wait (Paolo Insogna) [#&#8203;54605](https://github.com/nodejs/node/pull/54605)
    
  • [`f524b8a28b`](https://github.com/nodejs/node/commit/f524b8a28b)] - **timers**: fix validation (Paolo Insogna) [#&#8203;54404](https://github.com/nodejs/node/pull/54404)
    
  • [`bc020f7cb3`](https://github.com/nodejs/node/commit/bc020f7cb3)] - **(SEMVER-MINOR)** **tls**: add `allowPartialTrustChain` flag (Anna Henningsen) [#&#8203;54790](https://github.com/nodejs/node/pull/54790)
    
  • [`d0e6f9168e`](https://github.com/nodejs/node/commit/d0e6f9168e)] - **tls**: remove prototype primordials (Antoine du Hamel) [#&#8203;53699](https://github.com/nodejs/node/pull/53699)
    
  • [`f5c65d0be6`](https://github.com/nodejs/node/commit/f5c65d0be6)] - **tools**: add readability/fn_size to filter (Rafael Gonzaga) [#&#8203;54744](https://github.com/nodejs/node/pull/54744)
    
  • [`a47bb9b2c2`](https://github.com/nodejs/node/commit/a47bb9b2c2)] - **tools**: add util scripts to land and rebase PRs (Antoine du Hamel) [#&#8203;54656](https://github.com/nodejs/node/pull/54656)
    
  • [`fe3155cefa`](https://github.com/nodejs/node/commit/fe3155cefa)] - **tools**: remove readability/fn_size rule (Rafael Gonzaga) [#&#8203;54663](https://github.com/nodejs/node/pull/54663)
    
  • [`d6b9cc3acd`](https://github.com/nodejs/node/commit/d6b9cc3acd)] - **tools**: remove unused python files (Aviv Keller) [#&#8203;53928](https://github.com/nodejs/node/pull/53928)
    
  • [`b5fbe9609c`](https://github.com/nodejs/node/commit/b5fbe9609c)] - **tools**: remove header from c-ares license (Aviv Keller) [#&#8203;54335](https://github.com/nodejs/node/pull/54335)
    
  • [`a7fdc608c6`](https://github.com/nodejs/node/commit/a7fdc608c6)] - **tools**: add find pyenv path on windows (Marco Ippolito) [#&#8203;54314](https://github.com/nodejs/node/pull/54314)
    
  • [`f90688cd5b`](https://github.com/nodejs/node/commit/f90688cd5b)] - **tools**: make undici updater build wasm from src (Michael Dawson) [#&#8203;54128](https://github.com/nodejs/node/pull/54128)
    
  • [`a033dff2f2`](https://github.com/nodejs/node/commit/a033dff2f2)] - **tty**: initialize winSize array with values (Michaël Zasso) [#&#8203;54281](https://github.com/nodejs/node/pull/54281)
    
  • [`e635e0956c`](https://github.com/nodejs/node/commit/e635e0956c)] - **typings**: fix TypedArray to a global type (1ilsang) [#&#8203;54063](https://github.com/nodejs/node/pull/54063)
    
  • [`b5bf08f31e`](https://github.com/nodejs/node/commit/b5bf08f31e)] - **typings**: correct param type of `SafePromisePrototypeFinally` (Wuli) [#&#8203;54727](https://github.com/nodejs/node/pull/54727)
    
  • [`628ae4bde5`](https://github.com/nodejs/node/commit/628ae4bde5)] - **typings**: add util.styleText type definition (Rafael Gonzaga) [#&#8203;54252](https://github.com/nodejs/node/pull/54252)
    
  • [`cc37401ea5`](https://github.com/nodejs/node/commit/cc37401ea5)] - **typings**: add missing binding function `writeFileUtf8()` (Jungku Lee) [#&#8203;54110](https://github.com/nodejs/node/pull/54110)
    
  • [`728c3fd6f1`](https://github.com/nodejs/node/commit/728c3fd6f1)] - **url**: modify pathToFileURL to handle extended UNC path (Early Riser) [#&#8203;54262](https://github.com/nodejs/node/pull/54262)
    
  • [`b25563dfcb`](https://github.com/nodejs/node/commit/b25563dfcb)] - **url**: improve resolveObject with ObjectAssign (Early Riser) [#&#8203;54092](https://github.com/nodejs/node/pull/54092)
    
  • [`eededd1ca8`](https://github.com/nodejs/node/commit/eededd1ca8)] - **url**: make URL.parse enumerable (Filip Skokan) [#&#8203;53720](https://github.com/nodejs/node/pull/53720)
    
  • [`4eb0749b6c`](https://github.com/nodejs/node/commit/4eb0749b6c)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280)
    
  • [`9e1c2293bf`](https://github.com/nodejs/node/commit/9e1c2293bf)] - **vm**: harden module type checks (Chengzhong Wu) [#&#8203;52162](https://github.com/nodejs/node/pull/52162)
    
  • [`2d90340cb3`](https://github.com/nodejs/node/commit/2d90340cb3)] - **(SEMVER-MINOR)** **vm**: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) [#&#8203;54394](https://github.com/nodejs/node/pull/54394)
    
  • [`4644d05ab5`](https://github.com/nodejs/node/commit/4644d05ab5)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708)
    
  • [`ecdf6dd444`](https://github.com/nodejs/node/commit/ecdf6dd444)] - **zlib**: simplify validators (Yagiz Nizipli) [#&#8203;54442](https://github.com/nodejs/node/pull/54442)
    
    

v20.17.0: 2024-08-21, Version 20.17.0 'Iron' (LTS), @​marco-ippolito

Compare Source

module: support require()ing synchronous ESM graphs

This release adds require() support for synchronous ESM graphs under
the flag --experimental-require-module.

If --experimental-require-module is enabled, and the ECMAScript
module being loaded by require() meets the following requirements:

  • Explicitly marked as an ES module with a "type": "module" field in the closest package.json or a .mjs extension.
  • Fully synchronous (contains no top-level await).

require() will load the requested module as an ES Module, and return
the module name space object. In this case it is similar to dynamic
import() but is run synchronously and returns the name space object
directly.

Contributed by Joyee Cheung in #​51977

path: add matchesGlob method

Glob patterns can now be tested against individual paths via the path.matchesGlob(path, pattern) method.

Contributed by Aviv Keller in #​52881

stream: expose DuplexPair API

The function duplexPair returns an array with two items,
each being a Duplex stream connected to the other side:

const [ sideA, sideB ] = duplexPair();

Whatever is written to one stream is made readable on the other. It provides
behavior analogous to a network connection, where the data written by the client
becomes readable by the server, and vice-versa.

Contributed by Austin Wright in #​34111

Other Notable Changes
  • [`8e64c02b19`](https://github.com/nodejs/node/commit/8e64c02b19)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054)
    
  • [`ae30674991`](https://github.com/nodejs/node/commit/ae30674991)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004)
    
  • [`4a3ecbfc9b`](https://github.com/nodejs/node/commit/4a3ecbfc9b)] - **(SEMVER-MINOR)** **stream**: implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) [#&#8203;50888](https://github.com/nodejs/node/pull/50888)
    
    
Commits
  • [`b3a2726cbc`](https://github.com/nodejs/node/commit/b3a2726cbc)] - **assert**: use isError instead of instanceof in innerOk (Pietro Marchini) [#&#8203;53980](https://github.com/nodejs/node/pull/53980)
    
  • [`c7e4c3daf4`](https://github.com/nodejs/node/commit/c7e4c3daf4)] - **benchmark**: add cpSync benchmark (Yagiz Nizipli) [#&#8203;53612](https://github.com/nodejs/node/pull/53612)
    
  • [`a52de8c5ff`](https://github.com/nodejs/node/commit/a52de8c5ff)] - **bootstrap**: print `--help` message using `console.log` (Jacob Hummer) [#&#8203;51463](https://github.com/nodejs/node/pull/51463)
    
  • [`61b90e7c5e`](https://github.com/nodejs/node/commit/61b90e7c5e)] - **build**: update gcovr to 7.2 and codecov config (Benjamin E. Coe) [#&#8203;54019](https://github.com/nodejs/node/pull/54019)
    
  • [`a9c04eaa27`](https://github.com/nodejs/node/commit/a9c04eaa27)] - **build**: ensure v8\_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) [#&#8203;53884](https://github.com/nodejs/node/pull/53884)
    
  • [`342a663d7a`](https://github.com/nodejs/node/commit/342a663d7a)] - **build**: trigger coverage ci when updating codecov (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929)
    
  • [`5727b4d129`](https://github.com/nodejs/node/commit/5727b4d129)] - **build**: update codecov coverage build count (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929)
    
  • [`977af25870`](https://github.com/nodejs/node/commit/977af25870)] - **build**: disable test-asan workflow (Michaël Zasso) [#&#8203;53844](https://github.com/nodejs/node/pull/53844)
    
  • [`04798fb104`](https://github.com/nodejs/node/commit/04798fb104)] - **build**: fix build warning of c-ares under GN build (Cheng) [#&#8203;53750](https://github.com/nodejs/node/pull/53750)
    
  • [`5ec5e78574`](https://github.com/nodejs/node/commit/5ec5e78574)] - **build**: fix mac build error of c-ares under GN (Cheng) [#&#8203;53687](https://github.com/nodejs/node/pull/53687)
    
  • [`3d8721f0a4`](https://github.com/nodejs/node/commit/3d8721f0a4)] - **build**: add version-specific library path for AIX (Richard Lau) [#&#8203;53585](https://github.com/nodejs/node/pull/53585)
    
  • [`ffb0bd344d`](https://github.com/nodejs/node/commit/ffb0bd344d)] - **build, tools**: drop leading `/` from `r2dir` (Richard Lau) [#&#8203;53951](https://github.com/nodejs/node/pull/53951)
    
  • [`a2d74f4c31`](https://github.com/nodejs/node/commit/a2d74f4c31)] - **build,tools**: simplify upload of shasum signatures (Michaël Zasso) [#&#8203;53892](https://github.com/nodejs/node/pull/53892)
    
  • [`993bb3b6e7`](https://github.com/nodejs/node/commit/993bb3b6e7)] - **child_process**: fix incomplete prototype pollution hardening (Liran Tal) [#&#8203;53781](https://github.com/nodejs/node/pull/53781)
    
  • [`137a2e5766`](https://github.com/nodejs/node/commit/137a2e5766)] - **cli**: document `--inspect` port `0` behavior (Aviv Keller) [#&#8203;53782](https://github.com/nodejs/node/pull/53782)
    
  • [`820e6e1737`](https://github.com/nodejs/node/commit/820e6e1737)] - **cli**: update `node.1` to reflect Atom's sunset (Aviv Keller) [#&#8203;53734](https://github.com/nodejs/node/pull/53734)
    
  • [`fa0e8d7b3b`](https://github.com/nodejs/node/commit/fa0e8d7b3b)] - **crypto**: avoid std::function (Tobias Nießen) [#&#8203;53683](https://github.com/nodejs/node/pull/53683)
    
  • [`460240c368`](https://github.com/nodejs/node/commit/460240c368)] - **crypto**: make deriveBits length parameter optional and nullable (Filip Skokan) [#&#8203;53601](https://github.com/nodejs/node/pull/53601)
    
  • [`ceb1d5e00a`](https://github.com/nodejs/node/commit/ceb1d5e00a)] - **crypto**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53460](https://github.com/nodejs/node/pull/53460)
    
  • [`44268c27eb`](https://github.com/nodejs/node/commit/44268c27eb)] - **deps**: update corepack to 0.29.3 (Node.js GitHub Bot) [#&#8203;54072](https://github.com/nodejs/node/pull/54072)
    
  • [`496975ece0`](https://github.com/nodejs/node/commit/496975ece0)] - **deps**: update c-ares to v1.32.3 (Node.js GitHub Bot) [#&#8203;54020](https://github.com/nodejs/node/pull/54020)
    
  • [`5eea419349`](https://github.com/nodejs/node/commit/5eea419349)] - **deps**: update c-ares to v1.32.2 (Node.js GitHub Bot) [#&#8203;53865](https://github.com/nodejs/node/pull/53865)
    
  • [`8c8e3688c5`](https://github.com/nodejs/node/commit/8c8e3688c5)] - **deps**: update googletest to [`4b21f1a`](https://github.com/nodejs/node/commit/4b21f1a) (Node.js GitHub Bot) [#&#8203;53842](https://github.com/nodejs/node/pull/53842)
    
  • [`78f6b34c77`](https://github.com/nodejs/node/commit/78f6b34c77)] - **deps**: update minimatch to 10.0.1 (Node.js GitHub Bot) [#&#8203;53841](https://github.com/nodejs/node/pull/53841)
    
  • [`398f7acca3`](https://github.com/nodejs/node/commit/398f7acca3)] - **deps**: update corepack to 0.29.2 (Node.js GitHub Bot) [#&#8203;53838](https://github.com/nodejs/node/pull/53838)
    
  • [`fa8f99d90b`](https://github.com/nodejs/node/commit/fa8f99d90b)] - **deps**: update simdutf to 5.3.0 (Node.js GitHub Bot) [#&#8203;53837](https://github.com/nodejs/node/pull/53837)
    
  • [`a19b28336b`](https://github.com/nodejs/node/commit/a19b28336b)] - **deps**: update ada to 2.9.0 (Node.js GitHub Bot) [#&#8203;53748](https://github.com/nodejs/node/pull/53748)
    
  • [`2f66c7e707`](https://github.com/nodejs/node/commit/2f66c7e707)] - **deps**: upgrade npm to 10.8.2 (npm team) [#&#8203;53799](https://github.com/nodejs/node/pull/53799)
    
  • [`2a2620e7c0`](https://github.com/nodejs/node/commit/2a2620e7c0)] - **deps**: update googletest to [`34ad51b`](https://github.com/nodejs/node/commit/34ad51b) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157)
    
  • [`c01ce60ce7`](https://github.com/nodejs/node/commit/c01ce60ce7)] - **deps**: update googletest to [`305e5a2`](https://github.com/nodejs/node/commit/305e5a2) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157)
    
  • [`832328ea01`](https://github.com/nodejs/node/commit/832328ea01)] - **deps**: update c-ares to v1.32.1 (Node.js GitHub Bot) [#&#8203;53753](https://github.com/nodejs/node/pull/53753)
    
  • [`878e9a4ae7`](https://github.com/nodejs/node/commit/878e9a4ae7)] - **deps**: update minimatch to 9.0.5 (Node.js GitHub Bot) [#&#8203;53646](https://github.com/nodejs/node/pull/53646)
    
  • [`4647e6b5c5`](https://github.com/nodejs/node/commit/4647e6b5c5)] - **deps**: update c-ares to v1.32.0 (Node.js GitHub Bot) [#&#8203;53722](https://github.com/nodejs/node/pull/53722)
    
  • [`30310bf887`](https://github.com/nodejs/node/commit/30310bf887)] - **doc**: move numCPUs require to top of file in cluster CJS example (Alfredo González) [#&#8203;53932](https://github.com/nodejs/node/pull/53932)
    
  • [`36170eddca`](https://github.com/nodejs/node/commit/36170eddca)] - **doc**: update security-release process to automated one (Rafael Gonzaga) [#&#8203;53877](https://github.com/nodejs/node/pull/53877)
    
  • [`55f5e76ba7`](https://github.com/nodejs/node/commit/55f5e76ba7)] - **doc**: fix typo in technical-priorities.md (YoonSoo_Shin) [#&#8203;54094](https://github.com/nodejs/node/pull/54094)
    
  • [`1c0ccc0ca8`](https://github.com/nodejs/node/commit/1c0ccc0ca8)] - **doc**: fix typo in diagnostic tooling support tiers document (Taejin Kim) [#&#8203;54058](https://github.com/nodejs/node/pull/54058)
    
  • [`6a5120ff0f`](https://github.com/nodejs/node/commit/6a5120ff0f)] - **doc**: move GeoffreyBooth to TSC regular member (Geoffrey Booth) [#&#8203;54047](https://github.com/nodejs/node/pull/54047)
    
  • [`ead05aad2a`](https://github.com/nodejs/node/commit/ead05aad2a)] - **doc**: fix typo in recognizing-contributors (Marco Ippolito) [#&#8203;53990](https://github.com/nodejs/node/pull/53990)
    
  • [`25e59aebac`](https://github.com/nodejs/node/commit/25e59aebac)] - **doc**: update boxstarter README (Aviv Keller) [#&#8203;53785](https://github.com/nodejs/node/pull/53785)
    
  • [`a3183fb927`](https://github.com/nodejs/node/commit/a3183fb927)] - **doc**: add info about prefix-only modules to `module.builtinModules` (Grigory) [#&#8203;53954](https://github.com/nodejs/node/pull/53954)
    
  • [`89599e025f`](https://github.com/nodejs/node/commit/89599e025f)] - **doc**: remove `scroll-behavior: smooth;` (Cloyd Lau) [#&#8203;53942](https://github.com/nodejs/node/pull/53942)
    
  • [`139c62e40c`](https://github.com/nodejs/node/commit/139c62e40c)] - **doc**: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) [#&#8203;53926](https://github.com/nodejs/node/pull/53926)
    
  • [`233aba90ea`](https://github.com/nodejs/node/commit/233aba90ea)] - **doc**: update `api_assets` README for new files (Aviv Keller) [#&#8203;53676](https://github.com/nodejs/node/pull/53676)
    
  • [`44a1cbe98a`](https://github.com/nodejs/node/commit/44a1cbe98a)] - **doc**: add MattiasBuelens to collaborators (Mattias Buelens) [#&#8203;53895](https://github.com/nodejs/node/pull/53895)
    
  • [`f5280ddbc5`](https://github.com/nodejs/node/commit/f5280ddbc5)] - **doc**: fix casing of GitHub handle for two collaborators (Antoine du Hamel) [#&#8203;53857](https://github.com/nodejs/node/pull/53857)
    
  • [`9224e3eef1`](https://github.com/nodejs/node/commit/9224e3eef1)] - **doc**: update release-post nodejs.org script (Rafael Gonzaga) [#&#8203;53762](https://github.com/nodejs/node/pull/53762)
    
  • [`f87eed8de4`](https://github.com/nodejs/node/commit/f87eed8de4)] - **doc**: move MylesBorins to emeritus (Myles Borins) [#&#8203;53760](https://github.com/nodejs/node/pull/53760)
    
  • [`32ac80ae8d`](https://github.com/nodejs/node/commit/32ac80ae8d)] - **doc**: add Rafael to the last security release (Rafael Gonzaga) [#&#8203;53769](https://github.com/nodejs/node/pull/53769)
    
  • [`e71aa7e98b`](https://github.com/nodejs/node/commit/e71aa7e98b)] - **doc**: use mock.callCount() in examples (Sébastien Règne) [#&#8203;53754](https://github.com/nodejs/node/pull/53754)
    
  • [`f64db24312`](https://github.com/nodejs/node/commit/f64db24312)] - **doc**: clarify authenticity of plaintexts in update (Tobias Nießen) [#&#8203;53784](https://github.com/nodejs/node/pull/53784)
    
  • [`51e736ac83`](https://github.com/nodejs/node/commit/51e736ac83)] - **doc**: add option to have support me link (Michael Dawson) [#&#8203;53312](https://github.com/nodejs/node/pull/53312)
    
  • [`9804731d0f`](https://github.com/nodejs/node/commit/9804731d0f)] - **doc**: update `scroll-padding-top` to 4rem (Cloyd Lau) [#&#8203;53662](https://github.com/nodejs/node/pull/53662)
    
  • [`229f7f8b8a`](https://github.com/nodejs/node/commit/229f7f8b8a)] - **doc**: mention v8.setFlagsFromString to pm (Rafael Gonzaga) [#&#8203;53731](https://github.com/nodejs/node/pull/53731)
    
  • [`98d59aa929`](https://github.com/nodejs/node/commit/98d59aa929)] - **doc**: remove the last \<pre> tag (Claudio W) [#&#8203;53741](https://github.com/nodejs/node/pull/53741)
    
  • [`60ee41df08`](https://github.com/nodejs/node/commit/60ee41df08)] - **doc**: exclude voting and regular TSC from spotlight (Michael Dawson) [#&#8203;53694](https://github.com/nodejs/node/pull/53694)
    
  • [`c3536cfa99`](https://github.com/nodejs/node/commit/c3536cfa99)] - **doc**: fix releases guide for recent Git versions (Michaël Zasso) [#&#8203;53709](https://github.com/nodejs/node/pull/53709)
    
  • [`3b632e1871`](https://github.com/nodejs/node/commit/3b632e1871)] - **doc**: require `node:process` in assert doc examples (Alfredo González) [#&#8203;53702](https://github.com/nodejs/node/pull/53702)
    
  • [`754090c110`](https://github.com/nodejs/node/commit/754090c110)] - **doc**: add additional explanation to the wildcard section in permissions (jakecastelli) [#&#8203;53664](https://github.com/nodejs/node/pull/53664)
    
  • [`4346de7267`](https://github.com/nodejs/node/commit/4346de7267)] - **doc**: mark NODE_MODULE_VERSION for Node.js 22.0.0 (Michaël Zasso) [#&#8203;53650](https://github.com/nodejs/node/pull/53650)
    
  • [`758178bd72`](https://github.com/nodejs/node/commit/758178bd72)] - **doc**: include node.module_timer on available categories (Vinicius Lourenço) [#&#8203;53638](https://github.com/nodejs/node/pull/53638)
    
  • [`e0d213df2b`](https://github.com/nodejs/node/commit/e0d213df2b)] - **doc**: fix module customization hook examples (Elliot Goodrich) [#&#8203;53637](https://github.com/nodejs/node/pull/53637)
    
  • [`43ac5a2441`](https://github.com/nodejs/node/commit/43ac5a2441)] - **doc**: fix doc for correct usage with plan & TestContext (Emil Tayeb) [#&#8203;53615](https://github.com/nodejs/node/pull/53615)
    
  • [`5076f0d292`](https://github.com/nodejs/node/commit/5076f0d292)] - **doc**: remove some news issues that are no longer (Michael Dawson) [#&#8203;53608](https://github.com/nodejs/node/pull/53608)
    
  • [`c997dbef34`](https://github.com/nodejs/node/commit/c997dbef34)] - **doc**: add issue for news from ambassadors (Michael Dawson) [#&#8203;53607](https://github.com/nodejs/node/pull/53607)
    
  • [`16d55f1d25`](https://github.com/nodejs/node/commit/16d55f1d25)] - **doc**: add esm example for os (Leonardo Peixoto) [#&#8203;53604](https://github.com/nodejs/node/pull/53604)
    
  • [`156fc536f2`](https://github.com/nodejs/node/commit/156fc536f2)] - **doc**: clarify usage of coverage reporters (Eliphaz Bouye) [#&#8203;53523](https://github.com/nodejs/node/pull/53523)
    
  • [`f8f247bc99`](https://github.com/nodejs/node/commit/f8f247bc99)] - **doc**: document addition testing options (Aviv Keller) [#&#8203;53569](https://github.com/nodejs/node/pull/53569)
    
  • [`73860aca56`](https://github.com/nodejs/node/commit/73860aca56)] - **doc**: clarify that fs.exists() may return false for existing symlink (Tobias Nießen) [#&#8203;53566](https://github.com/nodejs/node/pull/53566)
    
  • [`59c5c5c73e`](https://github.com/nodejs/node/commit/59c5c5c73e)] - **doc**: note http.closeAllConnections excludes upgraded sockets (Rob Hogan) [#&#8203;53560](https://github.com/nodejs/node/pull/53560)
    
  • [`1cd3c8eb27`](https://github.com/nodejs/node/commit/1cd3c8eb27)] - **doc**: fix typo (EhsanKhaki) [#&#8203;53397](https://github.com/nodejs/node/pull/53397)
    
  • [`3c5e593e2a`](https://github.com/nodejs/node/commit/3c5e593e2a)] - **doc, meta**: add PTAL to glossary (Aviv Keller) [#&#8203;53770](https://github.com/nodejs/node/pull/53770)
    
  • [`f336e61257`](https://github.com/nodejs/node/commit/f336e61257)] - **doc, test**: tracing channel hasSubscribers getter (Thomas Hunter II) [#&#8203;52908](https://github.com/nodejs/node/pull/52908)
    
  • [`4187b81439`](https://github.com/nodejs/node/commit/4187b81439)] - **doc, typings**: events.once accepts symbol event type (René) [#&#8203;53542](https://github.com/nodejs/node/pull/53542)
    
  • [`3cdf94d403`](https://github.com/nodejs/node/commit/3cdf94d403)] - **doc,tty**: add documentation for ReadStream and WriteStream (jakecastelli) [#&#8203;53567](https://github.com/nodejs/node/pull/53567)
    
  • [`5d03f6fab7`](https://github.com/nodejs/node/commit/5d03f6fab7)] - **esm**: move hooks test with others (Geoffrey Booth) [#&#8203;53558](https://github.com/nodejs/node/pull/53558)
    
  • [`490f15a99b`](https://github.com/nodejs/node/commit/490f15a99b)] - **fs**: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) [#&#8203;53776](https://github.com/nodejs/node/pull/53776)
    
  • [`8e64c02b19`](https://github.com/nodejs/node/commit/8e64c02b19)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054)
    
  • [`0d70c79ebf`](https://github.com/nodejs/node/commit/0d70c79ebf)] - **lib**: optimize copyError with ObjectAssign in primordials (HEESEUNG) [#&#8203;53999](https://github.com/nodejs/node/pull/53999)
    
  • [`a4ff2ac0f0`](https://github.com/nodejs/node/commit/a4ff2ac0f0)] - **lib**: improve cluster/primary code (Ehsan Khakifirooz) [#&#8203;53756](https://github.com/nodejs/node/pull/53756)
    
  • [`c667fbd988`](https://github.com/nodejs/node/commit/c667fbd988)] - **lib**: improve error message when index not found on cjs (Vinicius Lourenço) [#&#8203;53859](https://github.com/nodejs/node/pull/53859)
    
  • [`51ba566171`](https://github.com/nodejs/node/commit/51ba566171)] - **lib**: decorate async stack trace in source maps (Chengzhong Wu) [#&#8203;53860](https://github.com/nodejs/node/pull/53860)
    
  • [`d012dd3d29`](https://github.com/nodejs/node/commit/d012dd3d29)] - **lib**: remove path.resolve from permissions.js (Rafael Gonzaga) [#&#8203;53729](https://github.com/nodejs/node/pull/53729)
    
  • [`1e9ff50446`](https://github.com/nodejs/node/commit/1e9ff50446)] - **lib**: add toJSON to PerformanceMeasure (theanarkh) [#&#8203;53603](https://github.com/nodejs/node/pull/53603)
    
  • [`3a2d8bffa5`](https://github.com/nodejs/node/commit/3a2d8bffa5)] - **lib**: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) [#&#8203;52095](https://github.com/nodejs/node/pull/52095)
    
  • [`e326342bd7`](https://github.com/nodejs/node/commit/e326342bd7)] - **meta**: add `sqlite` to js subsystems (Alex Yang) [#&#8203;53911](https://github.com/nodejs/node/pull/53911)
    
  • [`bfabfb4d17`](https://github.com/nodejs/node/commit/bfabfb4d17)] - **meta**: move tsc member to emeritus (Michael Dawson) [#&#8203;54029](https://github.com/nodejs/node/pull/54029)
    
  • [`ae30674991`](https://github.com/nodejs/node/commit/ae30674991)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004)
    
  • [`6ca0cfc602`](https://github.com/nodejs/node/commit/6ca0cfc602)] - **meta**: remove license for hljs (Aviv Keller) [#&#8203;53970](https://github.com/nodejs/node/pull/53970)
    
  • [`e6ba121e83`](https://github.com/nodejs/node/commit/e6ba121e83)] - **meta**: make more bug-report information required (Aviv Keller) [#&#8203;53718](https://github.com/nodejs/node/pull/53718)
    
  • [`1864cddd0c`](https://github.com/nodejs/node/commit/1864cddd0c)] - **meta**: store actions secrets in environment (Aviv Keller) [#&#8203;53930](https://github.com/nodejs/node/pull/53930)
    
  • [`c0b24e5071`](https://github.com/nodejs/node/commit/c0b24e5071)] - **meta**: move anonrig to tsc voting members (Yagiz Nizipli) [#&#8203;53888](https://github.com/nodejs/node/pull/53888)
    
  • [`e60b089f7f`](https://github.com/nodejs/node/commit/e60b089f7f)] - **meta**: remove redudant logging from dep updaters (Aviv Keller) [#&#8203;53783](https://github.com/nodejs/node/pull/53783)
    
  • [`bff6995ec3`](https://github.com/nodejs/node/commit/bff6995ec3)] - **meta**: change email address of anonrig (Yagiz Nizipli) [#&#8203;53829](https://github.com/nodejs/node/pull/53829)
    
  • [`c2bb46020a`](https://github.com/nodejs/node/commit/c2bb46020a)] - **meta**: add `node_sqlite.c` to PR label config (Aviv Keller) [#&#8203;53797](https://github.com/nodejs/node/pull/53797)
    
  • [`b8d2bbc6d6`](https://github.com/nodejs/node/commit/b8d2bbc6d6)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53758](https://github.com/nodejs/node/pull/53758)
    
  • [`0ad4b7c1f7`](https://github.com/nodejs/node/commit/0ad4b7c1f7)] - **meta**: use HTML entities in commit-queue comment (Aviv Keller) [#&#8203;53744](https://github.com/nodejs/node/pull/53744)
    
  • [`aa0c5c25d1`](https://github.com/nodejs/node/commit/aa0c5c25d1)] - **meta**: move regular TSC member to emeritus (Michael Dawson) [#&#8203;53693](https://github.com/nodejs/node/pull/53693)
    
  • [`a5f5b4550b`](https://github.com/nodejs/node/commit/a5f5b4550b)] - **meta**: bump codecov/codecov-action from 4.4.1 to 4.5.0 (dependabot\[bot]) [#&#8203;53675](https://github.com/nodejs/node/pull/53675)
    
  • [`f84e215c90`](https://github.com/nodejs/node/commit/f84e215c90)] - **meta**: bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 (dependabot\[bot]) [#&#8203;53674](https://github.com/nodejs/node/pull/53674)
    
  • [`d5a9c249d3`](https://github.com/nodejs/node/commit/d5a9c249d3)] - **meta**: bump github/codeql-action from 3.25.7 to 3.25.11 (dependabot\[bot]) [#&#8203;53673](https://github.com/nodejs/node/pull/53673)
    
  • [`39d6c780c8`](https://github.com/nodejs/node/commit/39d6c780c8)] - **meta**: bump actions/checkout from 4.1.6 to 4.1.7 (dependabot\[bot]) [#&#8203;53672](https://github.com/nodejs/node/pull/53672)
    
  • [`bb6fe38a34`](https://github.com/nodejs/node/commit/bb6fe38a34)] - **meta**: bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (dependabot\[bot]) [#&#8203;53671](https://github.com/nodejs/node/pull/53671)
    
  • [`5dcdfb5e6b`](https://github.com/nodejs/node/commit/5dcdfb5e6b)] - **meta**: bump step-security/harden-runner from 2.8.0 to 2.8.1 (dependabot\[bot]) [#&#8203;53670](https://github.com/nodejs/node/pull/53670)
    
  • [`44d901a1c9`](https://github.com/nodejs/node/commit/44d901a1c9)] - **meta**: move member from TSC regular to emeriti (Michael Dawson) [#&#8203;53599](https://github.com/nodejs/node/pull/53599)
    
  • [`0c91186afa`](https://github.com/nodejs/node/commit/0c91186afa)] - **meta**: warnings bypass deprecation cycle (Benjamin Gruenbaum) [#&#8203;53513](https://github.com/nodejs/node/pull/53513)
    
  • [`bcd08bef60`](https://github.com/nodejs/node/commit/bcd08bef60)] - **meta**: prevent constant references to issues in versioning (Aviv Keller) [#&#8203;53564](https://github.com/nodejs/node/pull/53564)
    
  • [`7625dc4927`](https://github.com/nodejs/node/commit/7625dc4927)] - **module**: fix submodules loaded by require() and import() (Joyee Cheung) [#&#8203;52487](https://github.com/nodejs/node/pull/52487)
    
  • [`6c4f4772e3`](https://github.com/nodejs/node/commit/6c4f4772e3)] - **module**: tidy code and comments (Jacob Smith) [#&#8203;52437](https://github.com/nodejs/node/pull/52437)
    
  • [`51b88faeac`](https://github.com/nodejs/node/commit/51b88faeac)] - **module**: disallow CJS <-> ESM edges in a cycle from require(esm) (Joyee Cheung) [#&#8203;52264](https://github.com/nodejs/node/pull/52264)
    
  • [`4dae68ced4`](https://github.com/nodejs/node/commit/4dae68ced4)] - **module**: centralize SourceTextModule compilation for builtin loader (Joyee Cheung) [#&#8203;52291](https://github.com/nodejs/node/pull/52291)
    
  • [`cad46afc07`](https://github.com/nodejs/node/commit/cad46afc07)] - **(SEMVER-MINOR)** **module**: support require()ing synchronous ESM graphs (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977)
    
  • [`ac58c829a1`](https://github.com/nodejs/node/commit/ac58c829a1)] - **node-api**: add property keys benchmark (Chengzhong Wu) [#&#8203;54012](https://github.com/nodejs/node/pull/54012)
    
  • [`e6a4104bd1`](https://github.com/nodejs/node/commit/e6a4104bd1)] - **node-api**: rename nogc to basic (Gabriel Schulhof) [#&#8203;53830](https://github.com/nodejs/node/pull/53830)
    
  • [`57b8b8e18e`](https://github.com/nodejs/node/commit/57b8b8e18e)] - **(SEMVER-MINOR)** **path**: add `matchesGlob` method (Aviv Keller) [#&#8203;52881](https://github.com/nodejs/node/pull/52881)
    
  • [`bf6aa53299`](https://github.com/nodejs/node/commit/bf6aa53299)] - **process**: unify experimental warning messages (Aviv Keller) [#&#8203;53704](https://github.com/nodejs/node/pull/53704)
    
  • [`2a3ae16e62`](https://github.com/nodejs/node/commit/2a3ae16e62)] - **src**: expose LookupAndCompile with parameters (Shelley Vohr) [#&#8203;53886](https://github.com/nodejs/node/pull/53886)
    
  • [`0109f9c961`](https://github.com/nodejs/node/commit/0109f9c961)] - **src**: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) [#&#8203;53890](https://github.com/nodejs/node/pull/53890)
    
  • [`6bafe8a457`](https://github.com/nodejs/node/commit/6bafe8a457)] - **src**: fix -Wshadow warning (Shelley Vohr) [#&#8203;53885](https://github.com/nodejs/node/pull/53885)
    
  • [`4c36d6c47a`](https://github.com/nodejs/node/commit/4c36d6c47a)] - **src**: fix slice of slice of file-backed Blob (Josh Lee) [#&#8203;53972](https://github.com/nodejs/node/pull/53972)
    
  • [`848c2d59fb`](https://github.com/nodejs/node/commit/848c2d59fb)] - **src**: cache invariant code motion (Rafael Gonzaga) [#&#8203;53879](https://github.com/nodejs/node/pull/53879)
    
  • [`acaf5dd1cd`](https://github.com/nodejs/node/commit/acaf5dd1cd)] - **src**: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53813](https://github.com/nodejs/node/pull/53813)
    
  • [`b71250aaf9`](https://github.com/nodejs/node/commit/b71250aaf9)] - **src**: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) [#&#8203;53869](https://github.com/nodejs/node/pull/53869)
    
  • [`aff9a5339a`](https://github.com/nodejs/node/commit/aff9a5339a)] - **src**: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) [#&#8203;53786](https://github.com/nodejs/node/pull/53786)
    
  • [`e352a4ef27`](https://github.com/nodejs/node/commit/e352a4ef27)] - **src**: update outdated references to spec sections (Tobias Nießen) [#&#8203;53832](https://github.com/nodejs/node/pull/53832)
    
  • [`1a4da22a60`](https://github.com/nodejs/node/commit/1a4da22a60)] - **src**: use Maybe\<void> in ManagedEVPPKey (Tobias Nießen) [#&#8203;53811](https://github.com/nodejs/node/pull/53811)
    
  • [`0c24b91bd2`](https://github.com/nodejs/node/commit/0c24b91bd2)] - **src**: fix error handling in ExportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53767](https://github.com/nodejs/node/pull/53767)
    
  • [`81cd84c716`](https://github.com/nodejs/node/commit/81cd84c716)] - **src**: use Maybe\<void> in node::crypto::error (Tobias Nießen) [#&#8203;53766](https://github.com/nodejs/node/pull/53766)
    
  • [`8135f3616d`](https://github.com/nodejs/node/commit/8135f3616d)] - **src**: fix typo in node.h (Daeyeon Jeong) [#&#8203;53759](https://github.com/nodejs/node/pull/53759)
    
  • [`e6d735a997`](https://github.com/nodejs/node/commit/e6d735a997)] - **src**: document the Node.js context embedder data (Joyee Cheung) [#&#8203;53611](https://github.com/nodejs/node/pull/53611)
    
  • [`584beaa2ed`](https://github.com/nodejs/node/commit/584beaa2ed)] - **src**: zero-initialize data that are copied into the snapshot (Joyee Cheung) [#&#8203;53563](https://github.com/nodejs/node/pull/53563)
    
  • [`ef5dabd8c6`](https://github.com/nodejs/node/commit/ef5dabd8c6)] - **src**: fix Worker termination when '--inspect-brk' is passed (Daeyeon Jeong) [#&#8203;53724](https://github.com/nodejs/node/pull/53724)
    
  • [`62f4f6f48e`](https://github.com/nodejs/node/commit/62f4f6f48e)] - **src**: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) [#&#8203;52910](https://github.com/nodejs/node/pull/52910)
    
  • [`a6dd8643fa`](https://github.com/nodejs/node/commit/a6dd8643fa)] - **src**: reduce unnecessary serialization of CLI options in C++ (Joyee Cheung) [#&#8203;52451](https://github.com/nodejs/node/pull/52451)
    
  • [`31fdb881cf`](https://github.com/nodejs/node/commit/31fdb881cf)] - **src,lib**: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) [#&#8203;53602](https://github.com/nodejs/node/pull/53602)
    
  • [`2eea8502e1`](https://github.com/nodejs/node/commit/2eea8502e1)] - **src,test**: further cleanup references to osx (Daniel Bayley) [#&#8203;53820](https://github.com/nodejs/node/pull/53820)
    
  • [`7c21bb99a5`](https://github.com/nodejs/node/commit/7c21bb99a5)] - **(SEMVER-MINOR)** **stream**: expose DuplexPair API (Austin Wright) [#&#8203;34111](https://github.com/nodejs/node/pull/34111)
    
  • [`56299f7309`](https://github.com/nodejs/node/commit/56299f7309)] - **stream**: improve inspector ergonomics (Benjamin Gruenbaum) [#&#8203;53800](https://github.com/nodejs/node/pull/53800)
    
  • [`9b82b15230`](https://github.com/nodejs/node/commit/9b82b15230)] - **stream**: update ongoing promise in async iterator return() method (Mattias Buelens) [#&#8203;52657](https://github.com/nodejs/node/pull/52657)
    
  • [`4a3ecbfc9b`](https://github.com/nodejs/node/commit/4a3ecbfc9b)] - **(SEMVER-MINOR)** **stream**: implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) [#&#8203;50888](https://github.com/nodejs/node/pull/50888)
    
  • [`bd996bf694`](https://github.com/nodejs/node/commit/bd996bf694)] - **test**: do not swallow uncaughtException errors in exit code tests (Meghan Denny) [#&#8203;54039](https://github.com/nodejs/node/pull/54039)
    
  • [`77761af077`](https://github.com/nodejs/node/commit/77761af077)] - **test**: move shared module to `test/common` (Rich Trott) [#&#8203;54042](https://github.com/nodejs/node/pull/54042)
    
  • [`bec88ce138`](https://github.com/nodejs/node/commit/bec88ce138)] - **test**: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) [#&#8203;53996](https://github.com/nodejs/node/pull/53996)
    
  • [`9a98ad47cd`](https://github.com/nodejs/node/commit/9a98ad47cd)] - **test**: remove unnecessary console log (KAYYY) [#&#8203;53812](https://github.com/nodejs/node/pull/53812)
    
  • [`364d09cf0a`](https://github.com/nodejs/node/commit/364d09cf0a)] - **test**: add comments and rename test for timer robustness (Rich Trott) [#&#8203;54008](https://github.com/nodejs/node/pull/54008)
    
  • [`5c5093dc0a`](https://github.com/nodejs/node/commit/5c5093dc0a)] - **test**: add test for one arg timers to increase coverage (Carlos Espa) [#&#8203;54007](https://github.com/nodejs/node/pull/54007)
    
  • [`43ede1ae0b`](https://github.com/nodejs/node/commit/43ede1ae0b)] - **test**: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) [#&#8203;54031](https://github.com/nodejs/node/pull/54031)
    
  • [`0ad783cb42`](https://github.com/nodejs/node/commit/0ad783cb42)] - **test**: mark test-pipe-file-to-http as flaky (jakecastelli) [#&#8203;53751](https://github.com/nodejs/node/pull/53751)
    
  • [`f2b4fd3544`](https://github.com/nodejs/node/commit/f2b4fd3544)] - **test**: compare paths on Windows without considering case (Early Riser) [#&#8203;53993](https://github.com/nodejs/node/pull/53993)
    
  • [`2e69e5f4d2`](https://github.com/nodejs/node/commit/2e69e5f4d2)] - **test**: skip sea tests in large debug builds (Chengzhong Wu) [#&#8203;53918](https://github.com/nodejs/node/pull/53918)
    
  • [`56c26fe6e5`](https://github.com/nodejs/node/commit/56c26fe6e5)] - **test**: skip --title check on IBM i (Abdirahim Musse) [#&#8203;53952](https://github.com/nodejs/node/pull/53952)
    
  • [`6d0b8ded00`](https://github.com/nodejs/node/commit/6d0b8ded00)] - **test**: reduce flakiness of `test-assert-esm-cjs-message-verify` (Antoine du Hamel) [#&#8203;53967](https://github.com/nodejs/node/pull/53967)
    
  • [`edb75aebd7`](https://github.com/nodejs/node/commit/edb75aebd7)] - **test**: use `PYTHON` executable from env in `assertSnapshot` (Antoine du Hamel) [#&#8203;53938](https://github.com/nodejs/node/pull/53938)
    
  • [`be94e470a6`](https://github.com/nodejs/node/commit/be94e470a6)] - **test**: deflake test-blob-file-backed (Luigi Pinca) [#&#8203;53920](https://github.com/nodejs/node/pull/53920)
    
  • [`c2b0dcd165`](https://github.com/nodejs/node/commit/c2b0dcd165)] - **test**: un-set inspector-async-hook-setup-at-inspect-brk as flaky (Abdirahim Musse) [#&#8203;53692](https://github.com/nodejs/node/pull/53692)
    
  • [`6dc18981ac`](https://github.com/nodejs/node/commit/6dc18981ac)] - **test**: use python3 instead of python in pummel test (Mathis Wiehl) [#&#8203;53057](https://github.com/nodejs/node/pull/53057)
    
  • [`662bf524e1`](https://github.com/nodejs/node/commit/662bf524e1)] - **test**: do not assume cwd in snapshot tests (Antoine du Hamel) [#&#8203;53146](https://github.com/nodejs/node/pull/53146)
    
  • [`a07526702a`](https://github.com/nodejs/node/commit/a07526702a)] - **test**: fix OpenSSL version checks (Richard Lau) [#&#8203;53503](https://github.com/nodejs/node/pull/53503)
    
  • [`2b70018d11`](https://github.com/nodejs/node/commit/2b70018d11)] - **test**: refactor, add assertion to http-request-end (jakecastelli) [#&#8203;53411](https://github.com/nodejs/node/pull/53411)
    
  • [`c0262c1561`](https://github.com/nodejs/node/commit/c0262c1561)] - **test_runner**: switched to internal readline interface (Emil Tayeb) [#&#8203;54000](https://github.com/nodejs/node/pull/54000)
    
  • [`fb7342246c`](https://github.com/nodejs/node/commit/fb7342246c)] - **test_runner**: do not throw on mocked clearTimeout() (Aksinya Bykova) [#&#8203;54005](https://github.com/nodejs/node/pull/54005)
    
  • [`367f9e77f3`](https://github.com/nodejs/node/commit/367f9e77f3)] - **test_runner**: cleanup global event listeners after run (Eddie Abbondanzio) [#&#8203;53878](https://github.com/nodejs/node/pull/53878)
    
  • [`206c668ee7`](https://github.com/nodejs/node/commit/206c668ee7)] - **test_runner**: remove plan option from run() (Colin Ihrig) [#&#8203;53834](https://github.com/nodejs/node/pull/53834)
    
  • [`8660d481e5`](https://github.com/nodejs/node/commit/8660d481e5)] - **tls**: add setKeyCert() to tls.Socket (Brian White) [#&#8203;53636](https://github.com/nodejs/node/pull/53636)
    
  • [`9c5beabd83`](https://github.com/nodejs/node/commit/9c5beabd83)] - **tools**: fix `SLACK_TITLE` in invalid commit workflow (Antoine du Hamel) [#&#8203;53912](https://github.com/nodejs/node/pull/53912)
    
  • [`4dedf2aead`](https://github.com/nodejs/node/commit/4dedf2aead)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53840](https://github.com/nodejs/node/pull/53840)
    
  • [`642d5c5d30`](https://github.com/nodejs/node/commit/642d5c5d30)] - **tools**: use v8\_features.json to populate config.gypi (Cheng) [#&#8203;53749](https://github.com/nodejs/node/pull/53749)
    
  • [`031206544d`](https://github.com/nodejs/node/commit/031206544d)] - **tools**: update lint-md-dependencies to unified@11.0.5 (Node.js GitHub Bot) [#&#8203;53555](https://github.com/nodejs/node/pull/53555)
    
  • [`8404421ea6`](https://github.com/nodejs/node/commit/8404421ea6)] - **tools**: replace reference to NodeMainInstance with SnapshotBuilder (codediverdev) [#&#8203;53544](https://github.com/nodejs/node/pull/53544)
    
  • [`2d8490fed5`](https://github.com/nodejs/node/commit/2d8490fed5)] - **typings**: add `fs_dir` types (Yagiz Nizipli) [#&#8203;53631](https://github.com/nodejs/node/pull/53631)
    
  • [`325eae0b3f`](https://github.com/nodejs/node/commit/325eae0b3f)] - **url**: fix typo (KAYYY) [#&#8203;53827](https://github.com/nodejs/node/pull/53827)
    
  • [`7fc45f5e3f`](https://github.com/nodejs/node/commit/7fc45f5e3f)] - **url**: reduce unnecessary string copies (Yagiz Nizipli) [#&#8203;53628](https://github.com/nodejs/node/pull/53628)
    
  • [`1d961facf1`](https://github.com/nodejs/node/commit/1d961facf1)] - **url**: add missing documentation for `URL.parse()` (Yagiz Nizipli) [#&#8203;53733](https://github.com/nodejs/node/pull/53733)
    
  • [`ce877c6d0f`](https://github.com/nodejs/node/commit/ce877c6d0f)] - **util**: fix crashing when emitting new Buffer() deprecation warning [#&#8203;53075](https://github.com/nodejs/node/issues/53075) (Aras Abbasi) [#&#8203;53089](https://github.com/nodejs/node/pull/53089)
    
  • [`d6d04279ca`](https://github.com/nodejs/node/commit/d6d04279ca)] - **worker**: allow copied NODE_OPTIONS in the env setting (Joyee Cheung) [#&#8203;53596](https://github.com/nodejs/node/pull/53596)
    
    

v20.16.0: 2024-07-24, Version 20.16.0 'Iron' (LTS), @​marco-ippolito

Compare Source

process: add process.getBuiltinModule(id)

process.getBuiltinModule(id) provides a way to load built-in modules
in a globally available function. ES Modules that need to support
other environments can use it to conditionally load a Node.js built-in
when it is run in Node.js, without having to deal with the resolution
error that can be thrown by import in a non-Node.js environment or
having to use dynamic import() which either turns the module into
an asynchronous module, or turns a synchronous API into an asynchronous one.

if (globalThis.process?.getBuiltinModule) {
  // Run in Node.js, use the Node.js fs module.
  const fs = globalThis.process.getBuiltinModule('fs');
  // If `require()` is needed to load user-modules, use createRequire()
  const module = globalThis.process.getBuiltinModule('module');
  const require = module.createRequire(import.meta.url);
  const foo = require('foo');
}

If id specifies a built-in module available in the current Node.js process,
process.getBuiltinModule(id) method returns the corresponding built-in
module. If id does not correspond to any built-in module, undefined
is returned.

process.getBuiltinModule(id) accepts built-in module IDs that are recognized
by module.isBuiltin(id).

The references returned by process.getBuiltinModule(id) always point to
the built-in module corresponding to id even if users modify
require.cache so that require(id) returns something else.

Contributed by Joyee Cheung in #​52762

doc: doc-only deprecate OpenSSL engine-based APIs

OpenSSL 3 deprecated support for custom engines with a recommendation to switch to its new provider model.
The clientCertEngine option for https.request(), tls.createSecureContext(), and tls.createServer(); the privateKeyEngine and privateKeyIdentifier for tls.createSecureContext(); and crypto.setEngine() all depend on this functionality from OpenSSL.

Contributed by Richard Lau in #​53329

inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth

Debugger.setAsyncCallStackDepth was previously calling the enable function by mistake. As a result, when profiling using Chrome DevTools, the async hooks won't be turned off properly after receiving Debugger.setAsyncCallStackDepth with depth 0.

Contributed by Joyee Cheung in #​53473

Other Notable Changes
  • [`09e2191432`](https://github.com/nodejs/node/commit/09e2191432)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221)
    
  • [`394e00f41c`](https://github.com/nodejs/node/commit/394e00f41c)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`a8601efa5e`](https://github.com/nodejs/node/commit/a8601efa5e)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`5e76c258f7`](https://github.com/nodejs/node/commit/5e76c258f7)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118)
    
  • [`5e694026f1`](https://github.com/nodejs/node/commit/5e694026f1)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#&#8203;53008](https://github.com/nodejs/node/pull/53008)
    
  • [`f3ba1eb72f`](https://github.com/nodejs/node/commit/f3ba1eb72f)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136)
    
  • [`2bcce3255b`](https://github.com/nodejs/node/commit/2bcce3255b)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124)
    
  • [`a03a4c7bdd`](https://github.com/nodejs/node/commit/a03a4c7bdd)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`69b828f5a5`](https://github.com/nodejs/node/commit/69b828f5a5)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107)
    
    
Commits
  • [`76fd0ea92e`](https://github.com/nodejs/node/commit/76fd0ea92e)] - **assert,util**: correct comparison when both contain same reference (Daniel Lemire) [#&#8203;53431](https://github.com/nodejs/node/pull/53431)
    
  • [`65308b6692`](https://github.com/nodejs/node/commit/65308b6692)] - **benchmark**: fix api restriction for the permission category (Ryan Tsien) [#&#8203;51528](https://github.com/nodejs/node/pull/51528)
    
  • [`1e2bc2c2d0`](https://github.com/nodejs/node/commit/1e2bc2c2d0)] - **benchmark**: fix napi/ref addon (Michaël Zasso) [#&#8203;53233](https://github.com/nodejs/node/pull/53233)
    
  • [`09e2191432`](https://github.com/nodejs/node/commit/09e2191432)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221)
    
  • [`e1951a4804`](https://github.com/nodejs/node/commit/e1951a4804)] - **build**: fix spacing before NINJA_ARGS (jakecastelli) [#&#8203;53181](https://github.com/nodejs/node/pull/53181)
    
  • [`76f3bb3460`](https://github.com/nodejs/node/commit/76f3bb3460)] - **build**: generate binlog in out directories (Chengzhong Wu) [#&#8203;53325](https://github.com/nodejs/node/pull/53325)
    
  • [`eded0c187b`](https://github.com/nodejs/node/commit/eded0c187b)] - **build**: support python 3.13 (Chengzhong Wu) [#&#8203;53190](https://github.com/nodejs/node/pull/53190)
    
  • [`1e57c67fdb`](https://github.com/nodejs/node/commit/1e57c67fdb)] - **build**: update ruff to v0.4.5 (Yagiz Nizipli) [#&#8203;53180](https://github.com/nodejs/node/pull/53180)
    
  • [`28e71ede63`](https://github.com/nodejs/node/commit/28e71ede63)] - **build**: add `--skip-tests` to `test-ci-js` target (Antoine du Hamel) [#&#8203;53105](https://github.com/nodejs/node/pull/53105)
    
  • [`bb06778a65`](https://github.com/nodejs/node/commit/bb06778a65)] - **build**: fix building embedtest in GN build (Cheng) [#&#8203;53145](https://github.com/nodejs/node/pull/53145)
    
  • [`117ff5f139`](https://github.com/nodejs/node/commit/117ff5f139)] - **build**: use broader detection for 'help' (Aviv Keller) [#&#8203;53045](https://github.com/nodejs/node/pull/53045)
    
  • [`9aa896e7f5`](https://github.com/nodejs/node/commit/9aa896e7f5)] - **build**: fix -j propagation to ninja (Tobias Nießen) [#&#8203;53088](https://github.com/nodejs/node/pull/53088)
    
  • [`acdbc78955`](https://github.com/nodejs/node/commit/acdbc78955)] - **build**: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) [#&#8203;52882](https://github.com/nodejs/node/pull/52882)
    
  • [`bf3d94478e`](https://github.com/nodejs/node/commit/bf3d94478e)] - **build**: fix `--enable-d8` builds (Richard Lau) [#&#8203;53106](https://github.com/nodejs/node/pull/53106)
    
  • [`99da7d7237`](https://github.com/nodejs/node/commit/99da7d7237)] - **build**: set "clang" in config.gypi in GN build (Cheng) [#&#8203;53004](https://github.com/nodejs/node/pull/53004)
    
  • [`9446278f03`](https://github.com/nodejs/node/commit/9446278f03)] - **crypto**: improve GetECGroupBits signature (Tobias Nießen) [#&#8203;53364](https://github.com/nodejs/node/pull/53364)
    
  • [`dc2a4af68d`](https://github.com/nodejs/node/commit/dc2a4af68d)] - **crypto**: fix propagation of "memory limit exceeded" (Tobias Nießen) [#&#8203;53300](https://github.com/nodejs/node/pull/53300)
    
  • [`c5174f5e60`](https://github.com/nodejs/node/commit/c5174f5e60)] - **deps**: update c-ares to v1.31.0 (Node.js GitHub Bot) [#&#8203;53554](https://github.com/nodejs/node/pull/53554)
    
  • [`28e932dc7a`](https://github.com/nodejs/node/commit/28e932dc7a)] - **deps**: update undici to 6.19.2 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`e4f9c663c4`](https://github.com/nodejs/node/commit/e4f9c663c4)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`171dc50fdc`](https://github.com/nodejs/node/commit/171dc50fdc)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`6bb6a9100d`](https://github.com/nodejs/node/commit/6bb6a9100d)] - **deps**: update undici to 6.19.0 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468)
    
  • [`815d71b4cd`](https://github.com/nodejs/node/commit/815d71b4cd)] - **deps**: update acorn-walk to 8.3.3 (Node.js GitHub Bot) [#&#8203;53466](https://github.com/nodejs/node/pull/53466)
    
  • [`8b5f1d765a`](https://github.com/nodejs/node/commit/8b5f1d765a)] - **deps**: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) [#&#8203;53156](https://github.com/nodejs/node/pull/53156)
    
  • [`fc73da6f50`](https://github.com/nodejs/node/commit/fc73da6f50)] - **deps**: update c-ares to v1.30.0 (Node.js GitHub Bot) [#&#8203;53416](https://github.com/nodejs/node/pull/53416)
    
  • [`a6b803abd6`](https://github.com/nodejs/node/commit/a6b803abd6)] - **deps**: update undici to 6.18.2 (Node.js GitHub Bot) [#&#8203;53255](https://github.com/nodejs/node/pull/53255)
    
  • [`0f235535bb`](https://github.com/nodejs/node/commit/0f235535bb)] - **deps**: update ada to 2.8.0 (Node.js GitHub Bot) [#&#8203;53254](https://github.com/nodejs/node/pull/53254)
    
  • [`63407269a8`](https://github.com/nodejs/node/commit/63407269a8)] - **deps**: update corepack to 0.28.2 (Node.js GitHub Bot) [#&#8203;53253](https://github.com/nodejs/node/pull/53253)
    
  • [`7a126e8773`](https://github.com/nodejs/node/commit/7a126e8773)] - **deps**: update c-ares to 1.29.0 (Node.js GitHub Bot) [#&#8203;53155](https://github.com/nodejs/node/pull/53155)
    
  • [`0c8fcceefa`](https://github.com/nodejs/node/commit/0c8fcceefa)] - **deps**: upgrade npm to 10.8.1 (npm team) [#&#8203;53207](https://github.com/nodejs/node/pull/53207)
    
  • [`23866979f2`](https://github.com/nodejs/node/commit/23866979f2)] - **deps**: update undici to 6.18.1 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073)
    
  • [`4987a00142`](https://github.com/nodejs/node/commit/4987a00142)] - **deps**: update undici to 6.18.0 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073)
    
  • [`af226d0d9c`](https://github.com/nodejs/node/commit/af226d0d9c)] - **deps**: update undici to 6.17.0 (Node.js GitHub Bot) [#&#8203;53034](https://github.com/nodejs/node/pull/53034)
    
  • [`c9c6bf8bfb`](https://github.com/nodejs/node/commit/c9c6bf8bfb)] - **deps**: update undici to 6.16.1 (Node.js GitHub Bot) [#&#8203;52948](https://github.com/nodejs/node/pull/52948)
    
  • [`b32b62d590`](https://github.com/nodejs/node/commit/b32b62d590)] - **deps**: update undici to 6.15.0 (Matthew Aitken) [#&#8203;52763](https://github.com/nodejs/node/pull/52763)
    
  • [`6e6641bea2`](https://github.com/nodejs/node/commit/6e6641bea2)] - **deps**: update googletest to [`33af80a`](https://github.com/nodejs/node/commit/33af80a) (Node.js GitHub Bot) [#&#8203;53053](https://github.com/nodejs/node/pull/53053)
    
  • [`aa96fbe03e`](https://github.com/nodejs/node/commit/aa96fbe03e)] - **deps**: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) [#&#8203;53052](https://github.com/nodejs/node/pull/53052)
    
  • [`ba3310ded5`](https://github.com/nodejs/node/commit/ba3310ded5)] - **deps**: upgrade npm to 10.8.0 (npm team) [#&#8203;53014](https://github.com/nodejs/node/pull/53014)
    
  • [`8537a2aecf`](https://github.com/nodejs/node/commit/8537a2aecf)] - **doc**: recommend not using libuv node-api function (Michael Dawson) [#&#8203;53521](https://github.com/nodejs/node/pull/53521)
    
  • [`c13600f0db`](https://github.com/nodejs/node/commit/c13600f0db)] - **doc**: add additional guidance for PRs to deps (Michael Dawson) [#&#8203;53499](https://github.com/nodejs/node/pull/53499)
    
  • [`7c3edd952e`](https://github.com/nodejs/node/commit/7c3edd952e)] - **doc**: only apply content-visibility on all.html (Filip Skokan) [#&#8203;53510](https://github.com/nodejs/node/pull/53510)
    
  • [`ac5be14ed8`](https://github.com/nodejs/node/commit/ac5be14ed8)] - **doc**: update the description of the return type for options.filter (Zhenwei Jin) [#&#8203;52742](https://github.com/nodejs/node/pull/52742)
    
  • [`cac300e351`](https://github.com/nodejs/node/commit/cac300e351)] - **doc**: remove first timer badge (Aviv Keller) [#&#8203;53338](https://github.com/nodejs/node/pull/53338)
    
  • [`feb61459fd`](https://github.com/nodejs/node/commit/feb61459fd)] - **doc**: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) [#&#8203;52801](https://github.com/nodejs/node/pull/52801)
    
  • [`9e0a6e938b`](https://github.com/nodejs/node/commit/9e0a6e938b)] - **doc**: add initial text for ambassadors program (Michael Dawson) [#&#8203;52857](https://github.com/nodejs/node/pull/52857)
    
  • [`55ac53cb0b`](https://github.com/nodejs/node/commit/55ac53cb0b)] - **doc**: define more cases for stream event emissions (Aviv Keller) [#&#8203;53317](https://github.com/nodejs/node/pull/53317)
    
  • [`7128e0f9c9`](https://github.com/nodejs/node/commit/7128e0f9c9)] - **doc**: remove mentions of policy model from security info (Aviv Keller) [#&#8203;53249](https://github.com/nodejs/node/pull/53249)
    
  • [`3e290433df`](https://github.com/nodejs/node/commit/3e290433df)] - **doc**: fix mistakes in the module `load` hook api (István Donkó) [#&#8203;53349](https://github.com/nodejs/node/pull/53349)
    
  • [`3445c08144`](https://github.com/nodejs/node/commit/3445c08144)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#&#8203;53329](https://github.com/nodejs/node/pull/53329)
    
  • [`a3e8cda019`](https://github.com/nodejs/node/commit/a3e8cda019)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343)
    
  • [`0b9daaae4d`](https://github.com/nodejs/node/commit/0b9daaae4d)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343)
    
  • [`daf91834f6`](https://github.com/nodejs/node/commit/daf91834f6)] - **doc**: remove IRC from man page (Tobias Nießen) [#&#8203;53344](https://github.com/nodejs/node/pull/53344)
    
  • [`4246c8fa31`](https://github.com/nodejs/node/commit/4246c8fa31)] - **doc**: fix broken link in `static-analysis.md` (Richard Lau) [#&#8203;53345](https://github.com/nodejs/node/pull/53345)
    
  • [`955b98a0e4`](https://github.com/nodejs/node/commit/955b98a0e4)] - **doc**: remove cases for keys not containing "\*" in PATTERN_KEY_COMPARE (Maarten Zuidhoorn) [#&#8203;53215](https://github.com/nodejs/node/pull/53215)
    
  • [`7832b1815f`](https://github.com/nodejs/node/commit/7832b1815f)] - **doc**: add err param to fs.cp callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234)
    
  • [`01533df87f`](https://github.com/nodejs/node/commit/01533df87f)] - **doc**: add `err` param to fs.copyFile callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234)
    
  • [`b081bc7d5e`](https://github.com/nodejs/node/commit/b081bc7d5e)] - **doc**: reserve 128 for Electron 32 (Keeley Hammond) [#&#8203;53203](https://github.com/nodejs/node/pull/53203)
    
  • [`6b8460b560`](https://github.com/nodejs/node/commit/6b8460b560)] - **doc**: add note to ninjia build for macOS using -jn flag (jakecastelli) [#&#8203;53187](https://github.com/nodejs/node/pull/53187)
    
  • [`394e00f41c`](https://github.com/nodejs/node/commit/394e00f41c)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`c143d61d0e`](https://github.com/nodejs/node/commit/c143d61d0e)] - **doc**: include ESM import for HTTP (Aviv Keller) [#&#8203;53165](https://github.com/nodejs/node/pull/53165)
    
  • [`a8601efa5e`](https://github.com/nodejs/node/commit/a8601efa5e)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`560392de3d`](https://github.com/nodejs/node/commit/560392de3d)] - **doc**: fix minor grammar and style issues in SECURITY.md (Rich Trott) [#&#8203;53168](https://github.com/nodejs/node/pull/53168)
    
  • [`9f8e34323d`](https://github.com/nodejs/node/commit/9f8e34323d)] - **doc**: mention pm is not enforced when using fd (Rafael Gonzaga) [#&#8203;53125](https://github.com/nodejs/node/pull/53125)
    
  • [`3ac775b015`](https://github.com/nodejs/node/commit/3ac775b015)] - **doc**: fix format in `esm.md` (Pop Moore) [#&#8203;53170](https://github.com/nodejs/node/pull/53170)
    
  • [`41b08bdcf7`](https://github.com/nodejs/node/commit/41b08bdcf7)] - **doc**: fix wrong variable name in example of `timers.tick()` (Deokjin Kim) [#&#8203;53147](https://github.com/nodejs/node/pull/53147)
    
  • [`698ea7aa5a`](https://github.com/nodejs/node/commit/698ea7aa5a)] - **doc**: fix wrong function name in example of `context.plan()` (Deokjin Kim) [#&#8203;53140](https://github.com/nodejs/node/pull/53140)
    
  • [`a99359d79d`](https://github.com/nodejs/node/commit/a99359d79d)] - **doc**: add note for windows users and symlinks (Aviv Keller) [#&#8203;53117](https://github.com/nodejs/node/pull/53117)
    
  • [`61ec2af292`](https://github.com/nodejs/node/commit/61ec2af292)] - **doc**: move all TLS-PSK documentation to its section (Alba Mendez) [#&#8203;35717](https://github.com/nodejs/node/pull/35717)
    
  • [`5e76c258f7`](https://github.com/nodejs/node/commit/5e76c258f7)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118)
    
  • [`1dc406ba62`](https://github.com/nodejs/node/commit/1dc406ba62)] - **doc**: improve ninja build for --built-in-modules-path (jakecastelli) [#&#8203;53007](https://github.com/nodejs/node/pull/53007)
    
  • [`2854585662`](https://github.com/nodejs/node/commit/2854585662)] - **doc**: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) [#&#8203;45131](https://github.com/nodejs/node/pull/45131)
    
  • [`3f432f829f`](https://github.com/nodejs/node/commit/3f432f829f)] - **doc**: remove unavailable youtube link in pull requests (Deokjin Kim) [#&#8203;52982](https://github.com/nodejs/node/pull/52982)
    
  • [`5e694026f1`](https://github.com/nodejs/node/commit/5e694026f1)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#&#8203;53008](https://github.com/nodejs/node/pull/53008)
    
  • [`231e44043e`](https://github.com/nodejs/node/commit/231e44043e)] - **doc**: add missing supported timer values in `timers.enable()` (Deokjin Kim) [#&#8203;52969](https://github.com/nodejs/node/pull/52969)
    
  • [`b8944f6938`](https://github.com/nodejs/node/commit/b8944f6938)] - **doc, http**: add `rejectNonStandardBodyWrites` option, clear its behaviour (jakecastelli) [#&#8203;53396](https://github.com/nodejs/node/pull/53396)
    
  • [`0354584738`](https://github.com/nodejs/node/commit/0354584738)] - **doc, meta**: organize contributing to Node-API guide (Aviv Keller) [#&#8203;53243](https://github.com/nodejs/node/pull/53243)
    
  • [`9ae3719c4e`](https://github.com/nodejs/node/commit/9ae3719c4e)] - **doc, meta**: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) [#&#8203;53235](https://github.com/nodejs/node/pull/53235)
    
  • [`621e073c96`](https://github.com/nodejs/node/commit/621e073c96)] - **fs**: do not crash if the watched file is removed while setting up watch (Matteo Collina) [#&#8203;53452](https://github.com/nodejs/node/pull/53452)
    
  • [`f00ee1c377`](https://github.com/nodejs/node/commit/f00ee1c377)] - **fs**: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) [#&#8203;53150](https://github.com/nodejs/node/pull/53150)
    
  • [`655b960418`](https://github.com/nodejs/node/commit/655b960418)] - **http2**: reject failed http2.connect when used with promisify (ehsankhfr) [#&#8203;53475](https://github.com/nodejs/node/pull/53475)
    
  • [`eb0b68bb29`](https://github.com/nodejs/node/commit/eb0b68bb29)] - **inspector**: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) [#&#8203;53473](https://github.com/nodejs/node/pull/53473)
    
  • [`1c0b89be4c`](https://github.com/nodejs/node/commit/1c0b89be4c)] - **lib**: fix typo in comment (codediverdev) [#&#8203;53543](https://github.com/nodejs/node/pull/53543)
    
  • [`55922d9cb0`](https://github.com/nodejs/node/commit/55922d9cb0)] - **lib**: remove the unused code (theanarkh) [#&#8203;53463](https://github.com/nodejs/node/pull/53463)
    
  • [`06374ef96b`](https://github.com/nodejs/node/commit/06374ef96b)] - **lib**: fix naming convention of `Symbol` (Deokjin Kim) [#&#8203;53387](https://github.com/nodejs/node/pull/53387)
    
  • [`d1a780039a`](https://github.com/nodejs/node/commit/d1a780039a)] - **lib**: fix timer leak (theanarkh) [#&#8203;53337](https://github.com/nodejs/node/pull/53337)
    
  • [`8689ce4b41`](https://github.com/nodejs/node/commit/8689ce4b41)] - **lib**: fix misleading argument of validateUint32 (Tobias Nießen) [#&#8203;53307](https://github.com/nodejs/node/pull/53307)
    
  • [`57d7bbf624`](https://github.com/nodejs/node/commit/57d7bbf624)] - **lib**: fix the name of the fetch global function (Gabriel Bota) [#&#8203;53227](https://github.com/nodejs/node/pull/53227)
    
  • [`23f086c363`](https://github.com/nodejs/node/commit/23f086c363)] - **lib**: do not call callback if socket is closed (theanarkh) [#&#8203;52829](https://github.com/nodejs/node/pull/52829)
    
  • [`f325c54c80`](https://github.com/nodejs/node/commit/f325c54c80)] - **meta**: use correct source for workflow in PR (Aviv Keller) [#&#8203;53490](https://github.com/nodejs/node/pull/53490)
    
  • [`8172412dbe`](https://github.com/nodejs/node/commit/8172412dbe)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53480](https://github.com/nodejs/node/pull/53480)
    
  • [`01b61d65d3`](https://github.com/nodejs/node/commit/01b61d65d3)] - **meta**: fix typo in dependency updates (Aviv Keller) [#&#8203;53471](https://github.com/nodejs/node/pull/53471)
    
  • [`12f5737cd3`](https://github.com/nodejs/node/commit/12f5737cd3)] - **meta**: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot\[bot]) [#&#8203;53245](https://github.com/nodejs/node/pull/53245)
    
  • [`102e4eee3c`](https://github.com/nodejs/node/commit/102e4eee3c)] - **meta**: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot\[bot]) [#&#8203;53248](https://github.com/nodejs/node/pull/53248)
    
  • [`5ba185580d`](https://github.com/nodejs/node/commit/5ba185580d)] - **meta**: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot\[bot]) [#&#8203;53247](https://github.com/nodejs/node/pull/53247)
    
  • [`9d186cce2b`](https://github.com/nodejs/node/commit/9d186cce2b)] - **meta**: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot\[bot]) [#&#8203;53246](https://github.com/nodejs/node/pull/53246)
    
  • [`29ab74009e`](https://github.com/nodejs/node/commit/29ab74009e)] - **meta**: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot\[bot]) [#&#8203;53244](https://github.com/nodejs/node/pull/53244)
    
  • [`bd4b593f30`](https://github.com/nodejs/node/commit/bd4b593f30)] - **meta**: remove `initializeCommand` from devcontainer (Aviv Keller) [#&#8203;53137](https://github.com/nodejs/node/pull/53137)
    
  • [`61b1f573cf`](https://github.com/nodejs/node/commit/61b1f573cf)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53065](https://github.com/nodejs/node/pull/53065)
    
  • [`f3ba1eb72f`](https://github.com/nodejs/node/commit/f3ba1eb72f)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136)
    
  • [`67333a5796`](https://github.com/nodejs/node/commit/67333a5796)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762)
    
  • [`092aa09eb3`](https://github.com/nodejs/node/commit/092aa09eb3)] - **repl**: fix await object patterns without values (Luke Haas) [#&#8203;53331](https://github.com/nodejs/node/pull/53331)
    
  • [`554d25f526`](https://github.com/nodejs/node/commit/554d25f526)] - **src**: reset `process.versions` during pre-execution (Richard Lau) [#&#8203;53444](https://github.com/nodejs/node/pull/53444)
    
  • [`a0879ad628`](https://github.com/nodejs/node/commit/a0879ad628)] - **src**: fix dynamically linked OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456)
    
  • [`91c05f34de`](https://github.com/nodejs/node/commit/91c05f34de)] - **src**: remove `SetEncoding` from StringEncoder (Yagiz Nizipli) [#&#8203;53441](https://github.com/nodejs/node/pull/53441)
    
  • [`4f49384be5`](https://github.com/nodejs/node/commit/4f49384be5)] - **src**: fix typo in env.cc (EhsanKhaki) [#&#8203;53418](https://github.com/nodejs/node/pull/53418)
    
  • [`9730d1e186`](https://github.com/nodejs/node/commit/9730d1e186)] - **src**: avoid strcmp in favor of operator== (Tobias Nießen) [#&#8203;53439](https://github.com/nodejs/node/pull/53439)
    
  • [`436ad8ceb9`](https://github.com/nodejs/node/commit/436ad8ceb9)] - **src**: print v8::OOMDetails::detail when it's available (Joyee Cheung) [#&#8203;53360](https://github.com/nodejs/node/pull/53360)
    
  • [`f773b289eb`](https://github.com/nodejs/node/commit/f773b289eb)] - **src**: fix IsIPAddress for IPv6 (Hüseyin Açacak) [#&#8203;53400](https://github.com/nodejs/node/pull/53400)
    
  • [`7705efd860`](https://github.com/nodejs/node/commit/7705efd860)] - **src**: fix permission inspector crash (theanarkh) [#&#8203;53389](https://github.com/nodejs/node/pull/53389)
    
  • [`260d8d9ae1`](https://github.com/nodejs/node/commit/260d8d9ae1)] - **src**: use \__FUNCSIG\_\_ on Windows in backtrace (Joyee Cheung) [#&#8203;53135](https://github.com/nodejs/node/pull/53135)
    
  • [`3b79e9c24e`](https://github.com/nodejs/node/commit/3b79e9c24e)] - **src**: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) [#&#8203;52905](https://github.com/nodejs/node/pull/52905)
    
  • [`32839c63cb`](https://github.com/nodejs/node/commit/32839c63cb)] - **src**: reduce unnecessary `GetCwd` calls (Yagiz Nizipli) [#&#8203;53064](https://github.com/nodejs/node/pull/53064)
    
  • [`840dd092ce`](https://github.com/nodejs/node/commit/840dd092ce)] - **src**: improve node::Dotenv declarations (Tobias Nießen) [#&#8203;52973](https://github.com/nodejs/node/pull/52973)
    
  • [`2bcce3255b`](https://github.com/nodejs/node/commit/2bcce3255b)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124)
    
  • [`e092c62a22`](https://github.com/nodejs/node/commit/e092c62a22)] - **stream**: update outdated highwatermark doc (Jay Kim) [#&#8203;53494](https://github.com/nodejs/node/pull/53494)
    
  • [`71af3e8172`](https://github.com/nodejs/node/commit/71af3e8172)] - **stream**: support dispose in writable (Benjamin Gruenbaum) [#&#8203;48547](https://github.com/nodejs/node/pull/48547)
    
  • [`33a15be32f`](https://github.com/nodejs/node/commit/33a15be32f)] - **stream**: callback should be called when pendingcb is 0 (jakecastelli) [#&#8203;53438](https://github.com/nodejs/node/pull/53438)
    
  • [`1b46ebbf69`](https://github.com/nodejs/node/commit/1b46ebbf69)] - **stream**: make sure \_destroy is called (jakecastelli) [#&#8203;53213](https://github.com/nodejs/node/pull/53213)
    
  • [`9f95d41947`](https://github.com/nodejs/node/commit/9f95d41947)] - **stream**: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) [#&#8203;53261](https://github.com/nodejs/node/pull/53261)
    
  • [`d02651c9d6`](https://github.com/nodejs/node/commit/d02651c9d6)] - **stream**: micro-optimize writable condition (Orgad Shaneh) [#&#8203;53189](https://github.com/nodejs/node/pull/53189)
    
  • [`324070c410`](https://github.com/nodejs/node/commit/324070c410)] - **stream**: fix memory usage regression in writable (Orgad Shaneh) [#&#8203;53188](https://github.com/nodejs/node/pull/53188)
    
  • [`48138afd35`](https://github.com/nodejs/node/commit/48138afd35)] - **stream**: fixes for webstreams (Mattias Buelens) [#&#8203;51168](https://github.com/nodejs/node/pull/51168)
    
  • [`24f078a22b`](https://github.com/nodejs/node/commit/24f078a22b)] - **test**: mark `test-benchmark-crypto` as flaky (Antoine du Hamel) [#&#8203;52955](https://github.com/nodejs/node/pull/52955)
    
  • [`0d69ce3474`](https://github.com/nodejs/node/commit/0d69ce3474)] - **test**: extend env for `test-node-output-errors` (Richard Lau) [#&#8203;53535](https://github.com/nodejs/node/pull/53535)
    
  • [`1aaaad8518`](https://github.com/nodejs/node/commit/1aaaad8518)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;53477](https://github.com/nodejs/node/pull/53477)
    
  • [`54e0ba8771`](https://github.com/nodejs/node/commit/54e0ba8771)] - **test**: check against run-time OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456)
    
  • [`059e47c320`](https://github.com/nodejs/node/commit/059e47c320)] - **test**: update tests for OpenSSL 3.0.14 (Richard Lau) [#&#8203;53373](https://github.com/nodejs/node/pull/53373)
    
  • [`49e6f33021`](https://github.com/nodejs/node/commit/49e6f33021)] - **test**: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) [#&#8203;53292](https://github.com/nodejs/node/pull/53292)
    
  • [`292d13a289`](https://github.com/nodejs/node/commit/292d13a289)] - **test**: update TLS tests for OpenSSL 3.2 (Richard Lau) [#&#8203;53384](https://github.com/nodejs/node/pull/53384)
    
  • [`82017c90bb`](https://github.com/nodejs/node/commit/82017c90bb)] - **test**: fix test when compiled without engine support (Richard Lau) [#&#8203;53232](https://github.com/nodejs/node/pull/53232)
    
  • [`a54090b385`](https://github.com/nodejs/node/commit/a54090b385)] - **test**: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) [#&#8203;53229](https://github.com/nodejs/node/pull/53229)
    
  • [`3a1693421d`](https://github.com/nodejs/node/commit/3a1693421d)] - **test**: fix Windows native test suites (Stefan Stojanovic) [#&#8203;53173](https://github.com/nodejs/node/pull/53173)
    
  • [`2b07d01272`](https://github.com/nodejs/node/commit/2b07d01272)] - **test**: skip `test-setproctitle` when `ps` is not available (Antoine du Hamel) [#&#8203;53104](https://github.com/nodejs/node/pull/53104)
    
  • [`0051d1c83d`](https://github.com/nodejs/node/commit/0051d1c83d)] - **test**: increase allocation so it fails for the test (Adam Majer) [#&#8203;53099](https://github.com/nodejs/node/pull/53099)
    
  • [`048cbe3304`](https://github.com/nodejs/node/commit/048cbe3304)] - **test**: remove timers from test-tls-socket-close (Luigi Pinca) [#&#8203;53019](https://github.com/nodejs/node/pull/53019)
    
  • [`8653d9223e`](https://github.com/nodejs/node/commit/8653d9223e)] - **test**: replace `.substr` with `.slice` (Antoine du Hamel) [#&#8203;53070](https://github.com/nodejs/node/pull/53070)
    
  • [`d74bda4241`](https://github.com/nodejs/node/commit/d74bda4241)] - **test**: add AbortController to knownGlobals (Luigi Pinca) [#&#8203;53020](https://github.com/nodejs/node/pull/53020)
    
  • [`f29e1e9838`](https://github.com/nodejs/node/commit/f29e1e9838)] - **test**: skip unstable shadow realm gc tests (Chengzhong Wu) [#&#8203;52855](https://github.com/nodejs/node/pull/52855)
    
  • [`dfa498697e`](https://github.com/nodejs/node/commit/dfa498697e)] - **test,doc**: enable running embedtest for Windows (Vladimir Morozov) [#&#8203;52646](https://github.com/nodejs/node/pull/52646)
    
  • [`0381817f1d`](https://github.com/nodejs/node/commit/0381817f1d)] - **test_runner**: calculate executed lines using source map (Moshe Atlow) [#&#8203;53315](https://github.com/nodejs/node/pull/53315)
    
  • [`9d3699b5b0`](https://github.com/nodejs/node/commit/9d3699b5b0)] - **test_runner**: handle file rename and deletion under watch mode (jakecastelli) [#&#8203;53114](https://github.com/nodejs/node/pull/53114)
    
  • [`9a36258ca0`](https://github.com/nodejs/node/commit/9a36258ca0)] - **test_runner**: refactor to use min/max of `validateInteger` (Deokjin Kim) [#&#8203;53148](https://github.com/nodejs/node/pull/53148)
    
  • [`a03a4c7bdd`](https://github.com/nodejs/node/commit/a03a4c7bdd)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169)
    
  • [`a72157077a`](https://github.com/nodejs/node/commit/a72157077a)] - **test_runner**: fix t.assert methods (Colin Ihrig) [#&#8203;53049](https://github.com/nodejs/node/pull/53049)
    
  • [`ba764db9ab`](https://github.com/nodejs/node/commit/ba764db9ab)] - **test_runner**: avoid error when coverage line not found (Moshe Atlow) [#&#8203;53000](https://github.com/nodejs/node/pull/53000)
    
  • [`3a4a0ebd06`](https://github.com/nodejs/node/commit/3a4a0ebd06)] - **test_runner,doc**: align documentation with actual stdout/stderr behavior (Moshe Atlow) [#&#8203;53131](https://github.com/nodejs/node/pull/53131)
    
  • [`6e6646bdd5`](https://github.com/nodejs/node/commit/6e6646bdd5)] - **tls**: check result of SSL_CTX_set_\*\_proto_version (Tobias Nießen) [#&#8203;53459](https://github.com/nodejs/node/pull/53459)
    
  • [`2aceed4297`](https://github.com/nodejs/node/commit/2aceed4297)] - **tls**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53436](https://github.com/nodejs/node/pull/53436)
    
  • [`faa5cac18c`](https://github.com/nodejs/node/commit/faa5cac18c)] - **tls**: use SSL_get_peer_tmp_key (Tobias Nießen) [#&#8203;53366](https://github.com/nodejs/node/pull/53366)
    
  • [`68fcbb635e`](https://github.com/nodejs/node/commit/68fcbb635e)] - **tls**: fix negative sessionTimeout handling (Tobias Nießen) [#&#8203;53002](https://github.com/nodejs/node/pull/53002)
    
  • [`61a1c43ef1`](https://github.com/nodejs/node/commit/61a1c43ef1)] - **tools**: fix skip detection of test runner output (Richard Lau) [#&#8203;53545](https://github.com/nodejs/node/pull/53545)
    
  • [`53a7b6e1c0`](https://github.com/nodejs/node/commit/53a7b6e1c0)] - **tools**: fix c-ares update script (Marco Ippolito) [#&#8203;53414](https://github.com/nodejs/node/pull/53414)
    
  • [`3bd5f46a15`](https://github.com/nodejs/node/commit/3bd5f46a15)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53158](https://github.com/nodejs/node/pull/53158)
    
  • [`daab9e170f`](https://github.com/nodejs/node/commit/daab9e170f)] - **tools**: do not run Corepack code before it's reviewed (Antoine du Hamel) [#&#8203;53405](https://github.com/nodejs/node/pull/53405)
    
  • [`d18a67f937`](https://github.com/nodejs/node/commit/d18a67f937)] - **tools**: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) [#&#8203;53212](https://github.com/nodejs/node/pull/53212)
    
  • [`e9b7a52848`](https://github.com/nodejs/node/commit/e9b7a52848)] - **tools**: add stream label on PR when related files being changed in lib (jakecastelli) [#&#8203;53269](https://github.com/nodejs/node/pull/53269)
    
  • [`04d78dd56d`](https://github.com/nodejs/node/commit/04d78dd56d)] - **tools**: remove no-goma arg from make-v8 script (Michaël Zasso) [#&#8203;53336](https://github.com/nodejs/node/pull/53336)
    
  • [`37e725a500`](https://github.com/nodejs/node/commit/37e725a500)] - **tools**: use sccache Github action (Moshe Atlow) [#&#8203;53316](https://github.com/nodejs/node/pull/53316)
    
  • [`2a1fde7e32`](https://github.com/nodejs/node/commit/2a1fde7e32)] - **tools**: update error message for Type Error (Aviv Keller) [#&#8203;53047](https://github.com/nodejs/node/pull/53047)
    
  • [`8f5fb4192d`](https://github.com/nodejs/node/commit/8f5fb4192d)] - ***Revert*** "**tools**: add --certify-safe to nci-ci" (Antoine du Hamel) [#&#8203;53098](https://github.com/nodejs/node/pull/53098)
    
  • [`69b828f5a5`](https://github.com/nodejs/node/commit/69b828f5a5)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107)
    
  • [`1a2f3ab4f5`](https://github.com/nodejs/node/commit/1a2f3ab4f5)] - **watch**: fix variable naming (jakecastelli) [#&#8203;53101](https://github.com/nodejs/node/pull/53101)
    
    

v20.15.1: 2024-07-08, Version 20.15.1 'Iron' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High)
  • CVE-2024-22020 - Bypass network import restriction via data URL (Medium)
  • CVE-2024-22018 - fs.lstat bypasses permission model (Low)
  • CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low)
  • CVE-2024-37372 - Permission model improperly processes UNC paths (Low)
Commits
  • [`60e184a6e4`](https://github.com/nodejs/node/commit/60e184a6e4)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522)
    
  • [`025cbd6936`](https://github.com/nodejs/node/commit/025cbd6936)] - **lib,permission**: support fs.lstat (RafaelGSS) [nodejs-private/node-private#486](https://github.com/nodejs-private/node-private/pull/486)
    
  • [`d38ea17341`](https://github.com/nodejs/node/commit/d38ea17341)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584)
    
  • [`1ba624cd3b`](https://github.com/nodejs/node/commit/1ba624cd3b)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596)
    
  • [`2524d00c3d`](https://github.com/nodejs/node/commit/2524d00c3d)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581)
    
  • [`484cb0f13c`](https://github.com/nodejs/node/commit/484cb0f13c)] - **src,permission**: resolve path on fs_permission (Rafael Gonzaga) [#&#8203;52761](https://github.com/nodejs/node/pull/52761)
    
    

v20.15.0: 2024-06-20, Version 20.15.0 'Iron' (LTS), @​marco-ippolito

Compare Source

test_runner: support test plans

It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail.

test('top level test', (t) => {
  t.plan(2);
  t.assert.ok('some relevant assertion here');
  t.subtest('subtest', () => {});
});

Contributed by Colin Ihrig in #​52860

inspector: introduce the --inspect-wait flag

This release introduces the --inspect-wait flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike --inspect-brk, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established.

Contributed by Kohei Ueno in #​52734

zlib: expose zlib.crc32()

This release exposes the crc32() function from zlib to user-land.

It computes a 32-bit Cyclic Redundancy Check checksum of data. If
value is specified, it is used as the starting value of the checksum,
otherwise, 0 is used as the starting value.

The CRC algorithm is designed to compute checksums and to detect error
in data transmission. It's not suitable for cryptographic authentication.

const zlib = require('node:zlib');
const { Buffer } = require('node:buffer');

let crc = zlib.crc32('hello');  // 907060870
crc = zlib.crc32('world', crc);  // 4192936109

crc = zlib.crc32(Buffer.from('hello', 'utf16le'));  // 1427272415
crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc);  // 4150509955

Contributed by Joyee Cheung in #​52692

cli: allow running wasm in limited vmem with --disable-wasm-trap-handler

By default, Node.js enables trap-handler-based WebAssembly bound
checks. As a result, V8 does not need to insert inline bound checks
int the code compiled from WebAssembly which may speedup WebAssembly
execution significantly, but this optimization requires allocating
a big virtual memory cage (currently 10GB). If the Node.js process
does not have access to a large enough virtual memory address space
due to system configurations or hardware limitations, users won't
be able to run any WebAssembly that involves allocation in this
virtual memory cage and will see an out-of-memory error.

$ ulimit -v 5000000
$ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });"
[eval]:1
new WebAssembly.Memory({ initial: 10, maximum: 100 });
^

RangeError: WebAssembly.Memory(): could not allocate memory
    at [eval]:1:1
    at runScriptInThisContext (node:internal/vm:209:10)
    at node:internal/process/execution:118:14
    at [eval]-wrapper:6:24
    at runScript (node:internal/process/execution:101:62)
    at evalScript (node:internal/process/execution:136:3)
    at node:internal/main/eval_string:49:3

--disable-wasm-trap-handler disables this optimization so that
users can at least run WebAssembly (with a less optimial performance)
when the virtual memory address space available to their Node.js
process is lower than what the V8 WebAssembly memory cage needs.

Contributed by Joyee Cheung in #​52766

Other Notable Changes
  • [`12512c3d0e`](https://github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874)
    
  • [`9d485b40bb`](https://github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`e98c305f52`](https://github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`dce0300896`](https://github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
    
Commits
  • [`227093bfec`](https://github.com/nodejs/node/commit/227093bfec)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#&#8203;51805](https://github.com/nodejs/node/pull/51805)
    
  • [`184cfe5a71`](https://github.com/nodejs/node/commit/184cfe5a71)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#&#8203;51746](https://github.com/nodejs/node/pull/51746)
    
  • [`8b3e83bb53`](https://github.com/nodejs/node/commit/8b3e83bb53)] - **buffer**: even faster atob (Daniel Lemire) [#&#8203;52443](https://github.com/nodejs/node/pull/52443)
    
  • [`8d628c3255`](https://github.com/nodejs/node/commit/8d628c3255)] - **buffer**: use size_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#&#8203;48033](https://github.com/nodejs/node/pull/48033)
    
  • [`16ae2b2933`](https://github.com/nodejs/node/commit/16ae2b2933)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#&#8203;52588](https://github.com/nodejs/node/pull/52588)
    
  • [`48c15d0dcd`](https://github.com/nodejs/node/commit/48c15d0dcd)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#&#8203;52913](https://github.com/nodejs/node/pull/52913)
    
  • [`1be8232d17`](https://github.com/nodejs/node/commit/1be8232d17)] - **build**: drop base64 dep in GN build (Cheng) [#&#8203;52856](https://github.com/nodejs/node/pull/52856)
    
  • [`918962d6e7`](https://github.com/nodejs/node/commit/918962d6e7)] - **build**: make simdjson a public dep in GN build (Cheng) [#&#8203;52755](https://github.com/nodejs/node/pull/52755)
    
  • [`5215b6fd8e`](https://github.com/nodejs/node/commit/5215b6fd8e)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#&#8203;51394](https://github.com/nodejs/node/pull/51394)
    
  • [`473fa73857`](https://github.com/nodejs/node/commit/473fa73857)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`954d2aded4`](https://github.com/nodejs/node/commit/954d2aded4)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#&#8203;50317](https://github.com/nodejs/node/pull/50317)
    
  • [`794e450ea7`](https://github.com/nodejs/node/commit/794e450ea7)] - **console**: colorize console error and warn (Jithil P Ponnan) [#&#8203;51629](https://github.com/nodejs/node/pull/51629)
    
  • [`0fb7c18f10`](https://github.com/nodejs/node/commit/0fb7c18f10)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#&#8203;49030](https://github.com/nodejs/node/pull/49030)
    
  • [`cd1415c8b2`](https://github.com/nodejs/node/commit/cd1415c8b2)] - ***Revert*** "**crypto**: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) [#&#8203;53390](https://github.com/nodejs/node/pull/53390)
    
  • [`b774544bb1`](https://github.com/nodejs/node/commit/b774544bb1)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#&#8203;52924](https://github.com/nodejs/node/pull/52924)
    
  • [`da4dbfc5fd`](https://github.com/nodejs/node/commit/da4dbfc5fd)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#&#8203;52960](https://github.com/nodejs/node/pull/52960)
    
  • [`2f3f2ff8af`](https://github.com/nodejs/node/commit/2f3f2ff8af)] - **doc**: update hljs with the latest styles (Aviv Keller) [#&#8203;52911](https://github.com/nodejs/node/pull/52911)
    
  • [`3a1d17a9b1`](https://github.com/nodejs/node/commit/3a1d17a9b1)] - **doc**: mention quicker way to build docs (Alex Crawford) [#&#8203;52937](https://github.com/nodejs/node/pull/52937)
    
  • [`be309bd19d`](https://github.com/nodejs/node/commit/be309bd19d)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#&#8203;52906](https://github.com/nodejs/node/pull/52906)
    
  • [`e62c6e2684`](https://github.com/nodejs/node/commit/e62c6e2684)] - **doc**: document pipeline with `end` option (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970)
    
  • [`af27225cf6`](https://github.com/nodejs/node/commit/af27225cf6)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#&#8203;39412](https://github.com/nodejs/node/pull/39412)
    
  • [`086626f9b1`](https://github.com/nodejs/node/commit/086626f9b1)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#&#8203;49091](https://github.com/nodejs/node/pull/49091)
    
  • [`3aa3337a00`](https://github.com/nodejs/node/commit/3aa3337a00)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#&#8203;51653](https://github.com/nodejs/node/pull/51653)
    
  • [`585f2a2e7f`](https://github.com/nodejs/node/commit/585f2a2e7f)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#&#8203;48170](https://github.com/nodejs/node/pull/48170)
    
  • [`4bf3d44e1d`](https://github.com/nodejs/node/commit/4bf3d44e1d)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#&#8203;52453](https://github.com/nodejs/node/pull/52453)
    
  • [`ae5d47dde3`](https://github.com/nodejs/node/commit/ae5d47dde3)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#&#8203;52842](https://github.com/nodejs/node/pull/52842)
    
  • [`1e429d10d3`](https://github.com/nodejs/node/commit/1e429d10d3)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#&#8203;52896](https://github.com/nodejs/node/pull/52896)
    
  • [`3df3e37cdb`](https://github.com/nodejs/node/commit/3df3e37cdb)] - **doc**: add names next to release key bash commands (Aviv Keller) [#&#8203;52878](https://github.com/nodejs/node/pull/52878)
    
  • [`12512c3d0e`](https://github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874)
    
  • [`97e0fef019`](https://github.com/nodejs/node/commit/97e0fef019)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#&#8203;52798](https://github.com/nodejs/node/pull/52798)
    
  • [`91fadac162`](https://github.com/nodejs/node/commit/91fadac162)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#&#8203;38056](https://github.com/nodejs/node/pull/38056)
    
  • [`a3b20126fd`](https://github.com/nodejs/node/commit/a3b20126fd)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#&#8203;34213](https://github.com/nodejs/node/pull/34213)
    
  • [`9587ae9b5b`](https://github.com/nodejs/node/commit/9587ae9b5b)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#&#8203;52757](https://github.com/nodejs/node/pull/52757)
    
  • [`6ea72a53c3`](https://github.com/nodejs/node/commit/6ea72a53c3)] - **doc**: add test_runner to subsystem (Raz Luvaton) [#&#8203;52774](https://github.com/nodejs/node/pull/52774)
    
  • [`972eafd983`](https://github.com/nodejs/node/commit/972eafd983)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#&#8203;51921](https://github.com/nodejs/node/pull/51921)
    
  • [`74753ed1fe`](https://github.com/nodejs/node/commit/74753ed1fe)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#&#8203;39463](https://github.com/nodejs/node/pull/39463)
    
  • [`75dd009649`](https://github.com/nodejs/node/commit/75dd009649)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#&#8203;43876](https://github.com/nodejs/node/pull/43876)
    
  • [`7d38c2e012`](https://github.com/nodejs/node/commit/7d38c2e012)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#&#8203;52178](https://github.com/nodejs/node/pull/52178)
    
  • [`8cb13120d3`](https://github.com/nodejs/node/commit/8cb13120d3)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#&#8203;52734](https://github.com/nodejs/node/pull/52734)
    
  • [`d5ab1de1fd`](https://github.com/nodejs/node/commit/d5ab1de1fd)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#&#8203;52932](https://github.com/nodejs/node/pull/52932)
    
  • [`f82d086e90`](https://github.com/nodejs/node/commit/f82d086e90)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#&#8203;52915](https://github.com/nodejs/node/pull/52915)
    
  • [`121ea13b50`](https://github.com/nodejs/node/commit/121ea13b50)] - **process**: improve event-loop (Aras Abbasi) [#&#8203;52108](https://github.com/nodejs/node/pull/52108)
    
  • [`eceac784aa`](https://github.com/nodejs/node/commit/eceac784aa)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#&#8203;40661](https://github.com/nodejs/node/pull/40661)
    
  • [`89a910be82`](https://github.com/nodejs/node/commit/89a910be82)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#&#8203;52527](https://github.com/nodejs/node/pull/52527)
    
  • [`033f985e8a`](https://github.com/nodejs/node/commit/033f985e8a)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#&#8203;52164](https://github.com/nodejs/node/pull/52164)
    
  • [`95128399f8`](https://github.com/nodejs/node/commit/95128399f8)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#&#8203;46681](https://github.com/nodejs/node/pull/46681)
    
  • [`b162aeae9e`](https://github.com/nodejs/node/commit/b162aeae9e)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#&#8203;52820](https://github.com/nodejs/node/pull/52820)
    
  • [`2dcbf1894a`](https://github.com/nodejs/node/commit/2dcbf1894a)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#&#8203;52886](https://github.com/nodejs/node/pull/52886)
    
  • [`978ee0a635`](https://github.com/nodejs/node/commit/978ee0a635)] - **src**: only apply fix in main thread (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702)
    
  • [`8fc52b38c6`](https://github.com/nodejs/node/commit/8fc52b38c6)] - **src**: fix test local edge case (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702)
    
  • [`d02907ecc4`](https://github.com/nodejs/node/commit/d02907ecc4)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#&#8203;52545](https://github.com/nodejs/node/pull/52545)
    
  • [`af29120fa7`](https://github.com/nodejs/node/commit/af29120fa7)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#&#8203;48847](https://github.com/nodejs/node/pull/48847)
    
  • [`a5f3dd137c`](https://github.com/nodejs/node/commit/a5f3dd137c)] - **string_decoder**: throw an error when writing a too long buffer (zhenweijin) [#&#8203;52215](https://github.com/nodejs/node/pull/52215)
    
  • [`65fa95d57d`](https://github.com/nodejs/node/commit/65fa95d57d)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#&#8203;31137](https://github.com/nodejs/node/pull/31137)
    
  • [`0513e07805`](https://github.com/nodejs/node/commit/0513e07805)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#&#8203;49790](https://github.com/nodejs/node/pull/49790)
    
  • [`1d01325928`](https://github.com/nodejs/node/commit/1d01325928)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#&#8203;34066](https://github.com/nodejs/node/pull/34066)
    
  • [`7dda156872`](https://github.com/nodejs/node/commit/7dda156872)] - **test**: add fuzzer for native/js string conversion (Adam Korczynski) [#&#8203;51120](https://github.com/nodejs/node/pull/51120)
    
  • [`5fb829b340`](https://github.com/nodejs/node/commit/5fb829b340)] - **test**: add fuzzer for `ClientHelloParser` (AdamKorcz) [#&#8203;51088](https://github.com/nodejs/node/pull/51088)
    
  • [`cc74bf789f`](https://github.com/nodejs/node/commit/cc74bf789f)] - **test**: fix broken env fuzzer by initializing process (AdamKorcz) [#&#8203;51080](https://github.com/nodejs/node/pull/51080)
    
  • [`800b6f65cf`](https://github.com/nodejs/node/commit/800b6f65cf)] - **test**: replace `forEach()` in `test-stream-pipe-unpipe-stream` (Dario) [#&#8203;50786](https://github.com/nodejs/node/pull/50786)
    
  • [`d08c9a6a31`](https://github.com/nodejs/node/commit/d08c9a6a31)] - **test**: test pipeline `end` on transform streams (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970)
    
  • [`0be8123ede`](https://github.com/nodejs/node/commit/0be8123ede)] - **test**: improve coverage of lib/readline.js (Rongjian Zhang) [#&#8203;38646](https://github.com/nodejs/node/pull/38646)
    
  • [`410224415c`](https://github.com/nodejs/node/commit/410224415c)] - **test**: updated for each to for of in test file (lyannel) [#&#8203;50308](https://github.com/nodejs/node/pull/50308)
    
  • [`556e9a2127`](https://github.com/nodejs/node/commit/556e9a2127)] - **test**: move `test-http-server-request-timeouts-mixed` to sequential (Madhuri) [#&#8203;45722](https://github.com/nodejs/node/pull/45722)
    
  • [`0638274c07`](https://github.com/nodejs/node/commit/0638274c07)] - **test**: fix DNS cancel tests (Szymon Marczak) [#&#8203;44432](https://github.com/nodejs/node/pull/44432)
    
  • [`311bdc62bd`](https://github.com/nodejs/node/commit/311bdc62bd)] - **test**: add http agent to `executionAsyncResource` (psj-tar-gz) [#&#8203;34966](https://github.com/nodejs/node/pull/34966)
    
  • [`6001b164ab`](https://github.com/nodejs/node/commit/6001b164ab)] - **test**: reduce memory usage of test-worker-stdio (Adam Majer) [#&#8203;37769](https://github.com/nodejs/node/pull/37769)
    
  • [`986bfa26e9`](https://github.com/nodejs/node/commit/986bfa26e9)] - **test**: add common.expectRequiredModule() (Joyee Cheung) [#&#8203;52868](https://github.com/nodejs/node/pull/52868)
    
  • [`2246d4fd1e`](https://github.com/nodejs/node/commit/2246d4fd1e)] - **test**: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) [#&#8203;52781](https://github.com/nodejs/node/pull/52781)
    
  • [`1dce5dea0b`](https://github.com/nodejs/node/commit/1dce5dea0b)] - **test**: skip some console tests on dumb terminal (Adam Majer) [#&#8203;37770](https://github.com/nodejs/node/pull/37770)
    
  • [`0addeb240c`](https://github.com/nodejs/node/commit/0addeb240c)] - **test**: skip v8-updates/test-linux-perf-logger (Michaël Zasso) [#&#8203;52821](https://github.com/nodejs/node/pull/52821)
    
  • [`56e19e38f3`](https://github.com/nodejs/node/commit/56e19e38f3)] - **test**: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) [#&#8203;52751](https://github.com/nodejs/node/pull/52751)
    
  • [`0c5e58958c`](https://github.com/nodejs/node/commit/0c5e58958c)] - **test, crypto**: use correct object on assert (响马) [#&#8203;51820](https://github.com/nodejs/node/pull/51820)
    
  • [`d54aa47ec1`](https://github.com/nodejs/node/commit/d54aa47ec1)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#&#8203;52860](https://github.com/nodejs/node/pull/52860)
    
  • [`0289a023a5`](https://github.com/nodejs/node/commit/0289a023a5)] - **test_runner**: fix watch mode race condition (Moshe Atlow) [#&#8203;52954](https://github.com/nodejs/node/pull/52954)
    
  • [`cf817e192e`](https://github.com/nodejs/node/commit/cf817e192e)] - **test_runner**: preserve hook promise when executed twice (Moshe Atlow) [#&#8203;52791](https://github.com/nodejs/node/pull/52791)
    
  • [`de541235fe`](https://github.com/nodejs/node/commit/de541235fe)] - **tools**: fix v8-update workflow (Michaël Zasso) [#&#8203;52957](https://github.com/nodejs/node/pull/52957)
    
  • [`f6290bc327`](https://github.com/nodejs/node/commit/f6290bc327)] - **tools**: add --certify-safe to nci-ci (Matteo Collina) [#&#8203;52940](https://github.com/nodejs/node/pull/52940)
    
  • [`0830b3115d`](https://github.com/nodejs/node/commit/0830b3115d)] - **tools**: fix doc update action (Marco Ippolito) [#&#8203;52890](https://github.com/nodejs/node/pull/52890)
    
  • [`9d485b40bb`](https://github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`e98c305f52`](https://github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`dce0300896`](https://github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766)
    
  • [`57006001ec`](https://github.com/nodejs/node/commit/57006001ec)] - **tools**: prepare custom rules for ESLint v9 (Michaël Zasso) [#&#8203;52889](https://github.com/nodejs/node/pull/52889)
    
  • [`403a4a7557`](https://github.com/nodejs/node/commit/403a4a7557)] - **tools**: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) [#&#8203;52836](https://github.com/nodejs/node/pull/52836)
    
  • [`01eff5860e`](https://github.com/nodejs/node/commit/01eff5860e)] - **tools**: update `gr2m/create-or-update-pull-request-action` (Antoine du Hamel) [#&#8203;52843](https://github.com/nodejs/node/pull/52843)
    
  • [`514f01ed59`](https://github.com/nodejs/node/commit/514f01ed59)] - **tools**: use sccache GitHub action (Michaël Zasso) [#&#8203;52839](https://github.com/nodejs/node/pull/52839)
    
  • [`8f8fb91927`](https://github.com/nodejs/node/commit/8f8fb91927)] - **tools**: specify a commit-message for V8 update workflow (Antoine du Hamel) [#&#8203;52844](https://github.com/nodejs/node/pull/52844)
    
  • [`b83fbf8709`](https://github.com/nodejs/node/commit/b83fbf8709)] - **tools**: fix V8 update workflow (Antoine du Hamel) [#&#8203;52822](https://github.com/nodejs/node/pull/52822)
    
  • [`be9d6f2176`](https://github.com/nodejs/node/commit/be9d6f2176)] - **url,tools,benchmark**: replace deprecated `substr()` (Jungku Lee) [#&#8203;51546](https://github.com/nodejs/node/pull/51546)
    
  • [`7603a51d45`](https://github.com/nodejs/node/commit/7603a51d45)] - **util**: fix `%s` format behavior with `Symbol.toPrimitive` (Chenyu Yang) [#&#8203;50992](https://github.com/nodejs/node/pull/50992)
    
  • [`d7eba50cf3`](https://github.com/nodejs/node/commit/d7eba50cf3)] - **util**: improve `isInsideNodeModules` (uzlopak) [#&#8203;52147](https://github.com/nodejs/node/pull/52147)
    
  • [`4ae4f7e517`](https://github.com/nodejs/node/commit/4ae4f7e517)] - **watch**: allow listening for grouped changes (Matthieu Sieben) [#&#8203;52722](https://github.com/nodejs/node/pull/52722)
    
  • [`1ff8f318c0`](https://github.com/nodejs/node/commit/1ff8f318c0)] - **watch**: enable passthrough ipc in watch mode (Zack) [#&#8203;50890](https://github.com/nodejs/node/pull/50890)
    
  • [`739adf90b1`](https://github.com/nodejs/node/commit/739adf90b1)] - **watch**: fix arguments parsing (Moshe Atlow) [#&#8203;52760](https://github.com/nodejs/node/pull/52760)
    
  • [`5161d95c30`](https://github.com/nodejs/node/commit/5161d95c30)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#&#8203;52692](https://github.com/nodejs/node/pull/52692)
    
    

v20.14.0: 2024-05-28, Version 20.14.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
  • [`28d2baa17c`](https://github.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730)
    
  • [`77e2bf029a`](https://github.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#&#8203;52038](https://github.com/nodejs/node/pull/52038)
    
    
Commits
  • [`e3ad05d8b0`](https://github.com/nodejs/node/commit/e3ad05d8b0)] - **deps**: V8: cherry-pick [`500de8b`](https://github.com/nodejs/node/commit/500de8bd371b) (Richard Lau) [#&#8203;52676](https://github.com/nodejs/node/pull/52676)
    
  • [`053282e661`](https://github.com/nodejs/node/commit/053282e661)] - **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183)
    
  • [`200dadb879`](https://github.com/nodejs/node/commit/200dadb879)] - **deps**: V8: cherry-pick [`f8d5e57`](https://github.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183)
    
  • [`f5cd125e02`](https://github.com/nodejs/node/commit/f5cd125e02)] - **deps**: update googletest to [`fa6de7f`](https://github.com/nodejs/node/commit/fa6de7f) (Node.js GitHub Bot) [#&#8203;52949](https://github.com/nodejs/node/pull/52949)
    
  • [`bbbfd7f4e1`](https://github.com/nodejs/node/commit/bbbfd7f4e1)] - **deps**: update corepack to 0.28.1 (Node.js GitHub Bot) [#&#8203;52946](https://github.com/nodejs/node/pull/52946)
    
  • [`7ba30a57a6`](https://github.com/nodejs/node/commit/7ba30a57a6)] - **deps**: update simdutf to 5.2.8 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727)
    
  • [`b21a480a28`](https://github.com/nodejs/node/commit/b21a480a28)] - **deps**: update simdutf to 5.2.6 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727)
    
  • [`6cfad60d97`](https://github.com/nodejs/node/commit/6cfad60d97)] - **deps**: update googletest to [`2d16ed0`](https://github.com/nodejs/node/commit/2d16ed0) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`34708d1429`](https://github.com/nodejs/node/commit/34708d1429)] - **deps**: update googletest to [`d83fee1`](https://github.com/nodejs/node/commit/d83fee1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`c1d3e558e8`](https://github.com/nodejs/node/commit/c1d3e558e8)] - **deps**: update googletest to [`5a37b51`](https://github.com/nodejs/node/commit/5a37b51) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`69959d0fca`](https://github.com/nodejs/node/commit/69959d0fca)] - **deps**: update googletest to [`5197b1a`](https://github.com/nodejs/node/commit/5197b1a) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`c8305f6057`](https://github.com/nodejs/node/commit/c8305f6057)] - **deps**: update googletest to [`eff443c`](https://github.com/nodejs/node/commit/eff443c) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`760b788704`](https://github.com/nodejs/node/commit/760b788704)] - **deps**: update googletest to [`c231e6f`](https://github.com/nodejs/node/commit/c231e6f) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`301541cc8f`](https://github.com/nodejs/node/commit/301541cc8f)] - **deps**: update googletest to [`e4fdb87`](https://github.com/nodejs/node/commit/e4fdb87) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`981d57e401`](https://github.com/nodejs/node/commit/981d57e401)] - **deps**: update googletest to [`5df0241`](https://github.com/nodejs/node/commit/5df0241) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`a1817f534d`](https://github.com/nodejs/node/commit/a1817f534d)] - **deps**: update googletest to [`b75ecf1`](https://github.com/nodejs/node/commit/b75ecf1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`42070ca189`](https://github.com/nodejs/node/commit/42070ca189)] - **deps**: update googletest to [`4565741`](https://github.com/nodejs/node/commit/4565741) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657)
    
  • [`edc3e5d056`](https://github.com/nodejs/node/commit/edc3e5d056)] - **deps**: update uvwasi to 0.0.21 (Node.js GitHub Bot) [#&#8203;52863](https://github.com/nodejs/node/pull/52863)
    
  • [`26b1231ffb`](https://github.com/nodejs/node/commit/26b1231ffb)] - **deps**: upgrade npm to 10.7.0 (npm team) [#&#8203;52767](https://github.com/nodejs/node/pull/52767)
    
  • [`e6d9fbece2`](https://github.com/nodejs/node/commit/e6d9fbece2)] - **doc**: update process.versions properties (ishabi) [#&#8203;52736](https://github.com/nodejs/node/pull/52736)
    
  • [`8c1f837c0a`](https://github.com/nodejs/node/commit/8c1f837c0a)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#&#8203;52252](https://github.com/nodejs/node/pull/52252)
    
  • [`d9c5114694`](https://github.com/nodejs/node/commit/d9c5114694)] - **doc**: fix grammatical mistake (codershiba) [#&#8203;52808](https://github.com/nodejs/node/pull/52808)
    
  • [`b350f435b7`](https://github.com/nodejs/node/commit/b350f435b7)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#&#8203;52795](https://github.com/nodejs/node/pull/52795)
    
  • [`61f9f12eff`](https://github.com/nodejs/node/commit/61f9f12eff)] - **meta**: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot\[bot]) [#&#8203;52787](https://github.com/nodejs/node/pull/52787)
    
  • [`ac563667d6`](https://github.com/nodejs/node/commit/ac563667d6)] - **meta**: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot\[bot]) [#&#8203;52786](https://github.com/nodejs/node/pull/52786)
    
  • [`70611d7924`](https://github.com/nodejs/node/commit/70611d7924)] - **meta**: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot\[bot]) [#&#8203;52785](https://github.com/nodejs/node/pull/52785)
    
  • [`30482ea273`](https://github.com/nodejs/node/commit/30482ea273)] - **meta**: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot\[bot]) [#&#8203;52784](https://github.com/nodejs/node/pull/52784)
    
  • [`d1607cdebb`](https://github.com/nodejs/node/commit/d1607cdebb)] - **meta**: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot\[bot]) [#&#8203;52783](https://github.com/nodejs/node/pull/52783)
    
  • [`21f1b6bfc3`](https://github.com/nodejs/node/commit/21f1b6bfc3)] - **meta**: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot\[bot]) [#&#8203;52782](https://github.com/nodejs/node/pull/52782)
    
  • [`0c6019a222`](https://github.com/nodejs/node/commit/0c6019a222)] - **meta**: standardize regex (Aviv Keller) [#&#8203;52693](https://github.com/nodejs/node/pull/52693)
    
  • [`28d2baa17c`](https://github.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730)
    
  • [`cffd2cc0c9`](https://github.com/nodejs/node/commit/cffd2cc0c9)] - ***Revert*** "**stream**: revert fix cloned webstreams not being unref'd" (Marco Ippolito) [#&#8203;53144](https://github.com/nodejs/node/pull/53144)
    
  • [`3dd96f1fab`](https://github.com/nodejs/node/commit/3dd96f1fab)] - **stream**: implement TransformStream cleanup using "transformer.cancel" (Debadree Chatterjee) [#&#8203;50126](https://github.com/nodejs/node/pull/50126)
    
  • [`8e7e778e01`](https://github.com/nodejs/node/commit/8e7e778e01)] - **test**: skip v8-updates/test-linux-perf (Michaël Zasso) [#&#8203;49639](https://github.com/nodejs/node/pull/49639)
    
  • [`f8e18869e9`](https://github.com/nodejs/node/commit/f8e18869e9)] - **test**: replace always-opt flag with alway-turbofan (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115)
    
  • [`a501860d63`](https://github.com/nodejs/node/commit/a501860d63)] - **test_runner**: don't await the same promise for each test (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185)
    
  • [`e2ae4367f4`](https://github.com/nodejs/node/commit/e2ae4367f4)] - **test_runner**: run top level tests in a microtask (Colin Ihrig) [#&#8203;52092](https://github.com/nodejs/node/pull/52092)
    
  • [`77e2bf029a`](https://github.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#&#8203;52038](https://github.com/nodejs/node/pull/52038)
    
  • [`b7bc63565e`](https://github.com/nodejs/node/commit/b7bc63565e)] - **test_runner**: ignore todo flag when running suites (Colin Ihrig) [#&#8203;52117](https://github.com/nodejs/node/pull/52117)
    
  • [`be587e3ae3`](https://github.com/nodejs/node/commit/be587e3ae3)] - **test_runner**: use paths for test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010)
    
  • [`743281ab25`](https://github.com/nodejs/node/commit/743281ab25)] - **test_runner**: support source mapped test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010)
    
  • [`4051316d95`](https://github.com/nodejs/node/commit/4051316d95)] - **tools**: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) [#&#8203;52729](https://github.com/nodejs/node/pull/52729)
    
    

v20.13.1: 2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito
Revert "tools: install npm PowerShell scripts on Windows"

Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.

Commits
  • [`b7d80802cc`](https://github.com/nodejs/node/commit/b7d80802cc)] - ***Revert*** "**tools**: install npm PowerShell scripts on Windows" (marco-ippolito) [#&#8203;52897](https://github.com/nodejs/node/pull/52897)
    
    

v20.13.0: 2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito
buffer: improve base64 and base64url performance

The performance of the base64 and base64url encoding and decoding functions has been improved significantly.

Contributed by Yagiz Nizipli in #​52428

crypto: deprecate implicitly shortened GCM tags

This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the authTagLength option.

Contributed by Tobias Nießen in #​52345

events,doc: mark CustomEvent as stable

From this release CustomEvent has been marked stable.

Contributed by Daeyeon Jeong in #​52618

fs: add stacktrace to fs/promises

Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling Error.captureStacktrace and re-throwing the error.

Contributed by 翠 / green in #​49849

report: add --report-exclude-network option

New option --report-exclude-network, also available as report.excludeNetwork, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that.

Contributed by Ethan Arrowood in #​51645

src: add uv_get_available_memory to report and process

From this release it is possible to get the available memory in the system by calling process.getAvailableMemory().

Contributed by theanarkh #​52023

stream: support typed arrays

This commit adds support for typed arrays in streams.

Contributed by IlyasShabi #​51866

util: support array of formats in util.styleText

It is now possible to pass an array of format strings to util.styleText to apply multiple formats to the same text.

console.log(util.styleText(['underline', 'italic'], 'My italic underlined message'));

Contributed by Marco Ippolito in #​52040

v8: implement v8.queryObjects() for memory leak regression testing

This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests.
To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application.

To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search.

We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead.

const { queryObjects } = require('node:v8');
class A { foo = 'bar'; }
console.log(queryObjects(A)); // 0
let a = new A();
console.log(queryObjects(A)); // 1
// [ "A { foo: 'bar' }" ]
console.log(queryObjects(A, { format: 'summary' }));

// Release the object.
a = null;
// Search again. queryObjects() includes a full garbage collection
// so a should disappear.
console.log(queryObjects(A)); // 0

class B extends A { bar = 'qux'; }
// The child class B's prototype has A's prototype on its prototype chain
// so the prototype object shows up too.
console.log(queryObjects(A, { format: 'summary' })); // [ A {}' ]

Contributed by Joyee Cheung in #​51927

watch: mark as stable

From this release Watch Mode is considered stable.
When in watch mode, changes in the watched files cause the Node.js process to restart.

Contributed by Moshe Atlow in #​52074

Other Notable Changes
  • [`f8ad30048d`](https://github.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408)
    
  • [`3b41da9a56`](https://github.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#&#8203;52138](https://github.com/nodejs/node/pull/52138)
    
  • [`0a08c4a7b3`](https://github.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#&#8203;51462](https://github.com/nodejs/node/pull/51462)
    
  • [`f1b7bda4f5`](https://github.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#&#8203;51278](https://github.com/nodejs/node/pull/51278)
    
  • [`4acca8ed84`](https://github.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492)
    
  • [`cc67720ff9`](https://github.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257)
    
  • [`c2def7df96`](https://github.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257)
    
  • [`807c89cb26`](https://github.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#&#8203;51991](https://github.com/nodejs/node/pull/51991)
    
  • [`5e78a20ef9`](https://github.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#&#8203;51879](https://github.com/nodejs/node/pull/51879)
    
  • [`722fe64ff7`](https://github.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509)
    
  • [`d116fa1568`](https://github.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474)
    
  • [`6af7b78b0d`](https://github.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595)
    
  • [`b3a11b574b`](https://github.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#&#8203;51539](https://github.com/nodejs/node/pull/51539)
    
  • [`41646d9c9e`](https://github.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#&#8203;52127](https://github.com/nodejs/node/pull/52127)
    
  • [`fc9ba17f6c`](https://github.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#&#8203;51909](https://github.com/nodejs/node/pull/51909)
    
    
Commits
  • [`6fdd748b21`](https://github.com/nodejs/node/commit/6fdd748b21)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#&#8203;52548](https://github.com/nodejs/node/pull/52548)
    
  • [`2274d0c868`](https://github.com/nodejs/node/commit/2274d0c868)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456)
    
  • [`0300598315`](https://github.com/nodejs/node/commit/0300598315)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456)
    
  • [`f8ad30048d`](https://github.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408)
    
  • [`7508d48736`](https://github.com/nodejs/node/commit/7508d48736)] - **benchmark**: conditionally use spawn with taskset for cpu pinning (Ali Hassan) [#&#8203;52253](https://github.com/nodejs/node/pull/52253)
    
  • [`ea8e72e185`](https://github.com/nodejs/node/commit/ea8e72e185)] - **benchmark**: add toNamespacedPath bench (Rafael Gonzaga) [#&#8203;52236](https://github.com/nodejs/node/pull/52236)
    
  • [`c00715cc1e`](https://github.com/nodejs/node/commit/c00715cc1e)] - **benchmark**: add style-text benchmark (Rafael Gonzaga) [#&#8203;52004](https://github.com/nodejs/node/pull/52004)
    
  • [`1c1a6935ee`](https://github.com/nodejs/node/commit/1c1a6935ee)] - **buffer**: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#&#8203;52477](https://github.com/nodejs/node/pull/52477)
    
  • [`1b2aff7dce`](https://github.com/nodejs/node/commit/1b2aff7dce)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#&#8203;52428](https://github.com/nodejs/node/pull/52428)
    
  • [`328bded5ab`](https://github.com/nodejs/node/commit/328bded5ab)] - **buffer**: improve `btoa` performance (Yagiz Nizipli) [#&#8203;52427](https://github.com/nodejs/node/pull/52427)
    
  • [`e67bc34326`](https://github.com/nodejs/node/commit/e67bc34326)] - **buffer**: use simdutf for `atob` implementation (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381)
    
  • [`5abddb45d8`](https://github.com/nodejs/node/commit/5abddb45d8)] - **build**: fix typo in node.gyp (Michaël Zasso) [#&#8203;52719](https://github.com/nodejs/node/pull/52719)
    
  • [`7d1f304f5e`](https://github.com/nodejs/node/commit/7d1f304f5e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#&#8203;52442](https://github.com/nodejs/node/pull/52442)
    
  • [`6826bbf267`](https://github.com/nodejs/node/commit/6826bbf267)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#&#8203;52559](https://github.com/nodejs/node/pull/52559)
    
  • [`6e85bc431a`](https://github.com/nodejs/node/commit/6e85bc431a)] - **build**: temporary disable ubsan (Rafael Gonzaga) [#&#8203;52560](https://github.com/nodejs/node/pull/52560)
    
  • [`297368a1ed`](https://github.com/nodejs/node/commit/297368a1ed)] - **build**: fix arm64 cross-compilation (Michaël Zasso) [#&#8203;51256](https://github.com/nodejs/node/pull/51256)
    
  • [`93bddb598f`](https://github.com/nodejs/node/commit/93bddb598f)] - **build,tools**: add test-ubsan ci (Rafael Gonzaga) [#&#8203;46297](https://github.com/nodejs/node/pull/46297)
    
  • [`20bb16582f`](https://github.com/nodejs/node/commit/20bb16582f)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#&#8203;52632](https://github.com/nodejs/node/pull/52632)
    
  • [`9af15cfff1`](https://github.com/nodejs/node/commit/9af15cfff1)] - **child_process**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`a4847c4619`](https://github.com/nodejs/node/commit/a4847c4619)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#&#8203;49709](https://github.com/nodejs/node/pull/49709)
    
  • [`0ec4d9d734`](https://github.com/nodejs/node/commit/0ec4d9d734)] - **crypto**: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) [#&#8203;52217](https://github.com/nodejs/node/pull/52217)
    
  • [`03e05b092c`](https://github.com/nodejs/node/commit/03e05b092c)] - **crypto**: deprecate implicitly shortened GCM tags (Tobias Nießen) [#&#8203;52345](https://github.com/nodejs/node/pull/52345)
    
  • [`0f784c96ba`](https://github.com/nodejs/node/commit/0f784c96ba)] - **crypto**: make timingSafeEqual faster for Uint8Array (Tobias Nießen) [#&#8203;52341](https://github.com/nodejs/node/pull/52341)
    
  • [`739958e472`](https://github.com/nodejs/node/commit/739958e472)] - **crypto**: reject [`Ed25519`](https://github.com/nodejs/node/commit/Ed25519)/Ed448 in Sign/Verify prototypes (Filip Skokan) [#&#8203;52340](https://github.com/nodejs/node/pull/52340)
    
  • [`197b61f210`](https://github.com/nodejs/node/commit/197b61f210)] - **crypto**: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) [#&#8203;52262](https://github.com/nodejs/node/pull/52262)
    
  • [`a6eede33f3`](https://github.com/nodejs/node/commit/a6eede33f3)] - **crypto**: fix `input` validation in `crypto.hash` (Antoine du Hamel) [#&#8203;52070](https://github.com/nodejs/node/pull/52070)
    
  • [`bfa4986e5d`](https://github.com/nodejs/node/commit/bfa4986e5d)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#&#8203;52616](https://github.com/nodejs/node/pull/52616)
    
  • [`70546698d7`](https://github.com/nodejs/node/commit/70546698d7)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#&#8203;52517](https://github.com/nodejs/node/pull/52517)
    
  • [`a135027f84`](https://github.com/nodejs/node/commit/a135027f84)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#&#8203;52573](https://github.com/nodejs/node/pull/52573)
    
  • [`c96f1043d4`](https://github.com/nodejs/node/commit/c96f1043d4)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#&#8203;52493](https://github.com/nodejs/node/pull/52493)
    
  • [`9c330b610b`](https://github.com/nodejs/node/commit/9c330b610b)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#&#8203;52516](https://github.com/nodejs/node/pull/52516)
    
  • [`7e5bbeebab`](https://github.com/nodejs/node/commit/7e5bbeebab)] - **deps**: update nghttp2 to 1.61.0 (Node.js GitHub Bot) [#&#8203;52395](https://github.com/nodejs/node/pull/52395)
    
  • [`b42a4735d9`](https://github.com/nodejs/node/commit/b42a4735d9)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#&#8203;52524](https://github.com/nodejs/node/pull/52524)
    
  • [`d34fd21bc2`](https://github.com/nodejs/node/commit/d34fd21bc2)] - **deps**: update simdutf to 5.2.4 (Node.js GitHub Bot) [#&#8203;52473](https://github.com/nodejs/node/pull/52473)
    
  • [`ecc180f830`](https://github.com/nodejs/node/commit/ecc180f830)] - **deps**: upgrade npm to 10.5.2 (npm team) [#&#8203;52458](https://github.com/nodejs/node/pull/52458)
    
  • [`606c183344`](https://github.com/nodejs/node/commit/606c183344)] - **deps**: update simdutf to 5.2.3 (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381)
    
  • [`0a103e99fe`](https://github.com/nodejs/node/commit/0a103e99fe)] - **deps**: upgrade npm to 10.5.1 (npm team) [#&#8203;52351](https://github.com/nodejs/node/pull/52351)
    
  • [`cce861e670`](https://github.com/nodejs/node/commit/cce861e670)] - **deps**: update c-ares to 1.28.1 (Node.js GitHub Bot) [#&#8203;52285](https://github.com/nodejs/node/pull/52285)
    
  • [`5258b547ea`](https://github.com/nodejs/node/commit/5258b547ea)] - **deps**: update undici to 6.11.1 (Node.js GitHub Bot) [#&#8203;52328](https://github.com/nodejs/node/pull/52328)
    
  • [`923a77c80a`](https://github.com/nodejs/node/commit/923a77c80a)] - **deps**: update undici to 6.10.2 (Node.js GitHub Bot) [#&#8203;52227](https://github.com/nodejs/node/pull/52227)
    
  • [`bd3c6a231c`](https://github.com/nodejs/node/commit/bd3c6a231c)] - **deps**: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) [#&#8203;52199](https://github.com/nodejs/node/pull/52199)
    
  • [`3b41da9a56`](https://github.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#&#8203;52138](https://github.com/nodejs/node/pull/52138)
    
  • [`d6f9ca385c`](https://github.com/nodejs/node/commit/d6f9ca385c)] - **deps**: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) [#&#8203;52123](https://github.com/nodejs/node/pull/52123)
    
  • [`f5512897b0`](https://github.com/nodejs/node/commit/f5512897b0)] - **deps**: update corepack to 0.26.0 (Node.js GitHub Bot) [#&#8203;52027](https://github.com/nodejs/node/pull/52027)
    
  • [`d891275178`](https://github.com/nodejs/node/commit/d891275178)] - **deps**: update ada to 2.7.7 (Node.js GitHub Bot) [#&#8203;52028](https://github.com/nodejs/node/pull/52028)
    
  • [`18838f2db3`](https://github.com/nodejs/node/commit/18838f2db3)] - **deps**: update simdutf to 4.0.9 (Node.js GitHub Bot) [#&#8203;51655](https://github.com/nodejs/node/pull/51655)
    
  • [`503c034abc`](https://github.com/nodejs/node/commit/503c034abc)] - **deps**: update undici to 6.6.2 (Node.js GitHub Bot) [#&#8203;51667](https://github.com/nodejs/node/pull/51667)
    
  • [`256bcba52e`](https://github.com/nodejs/node/commit/256bcba52e)] - **deps**: update undici to 6.6.0 (Node.js GitHub Bot) [#&#8203;51630](https://github.com/nodejs/node/pull/51630)
    
  • [`7a1e321d95`](https://github.com/nodejs/node/commit/7a1e321d95)] - **deps**: update undici to 6.4.0 (Node.js GitHub Bot) [#&#8203;51527](https://github.com/nodejs/node/pull/51527)
    
  • [`dde9e08224`](https://github.com/nodejs/node/commit/dde9e08224)] - **deps**: update ngtcp2 to 1.1.0 (Node.js GitHub Bot) [#&#8203;51319](https://github.com/nodejs/node/pull/51319)
    
  • [`0a08c4a7b3`](https://github.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#&#8203;51462](https://github.com/nodejs/node/pull/51462)
    
  • [`f1b7bda4f5`](https://github.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#&#8203;51278](https://github.com/nodejs/node/pull/51278)
    
  • [`ecadd638cd`](https://github.com/nodejs/node/commit/ecadd638cd)] - **deps**: V8: remove references to non-existent flags (Richard Lau) [#&#8203;52256](https://github.com/nodejs/node/pull/52256)
    
  • [`27d364491f`](https://github.com/nodejs/node/commit/27d364491f)] - **dgram**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`b94d11935a`](https://github.com/nodejs/node/commit/b94d11935a)] - **diagnostics_channel**: early-exit tracing channel trace methods (Stephen Belanger) [#&#8203;51915](https://github.com/nodejs/node/pull/51915)
    
  • [`4acca8ed84`](https://github.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492)
    
  • [`bcc06ac5a9`](https://github.com/nodejs/node/commit/bcc06ac5a9)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#&#8203;52648](https://github.com/nodejs/node/pull/52648)
    
  • [`4d5ef4f7af`](https://github.com/nodejs/node/commit/4d5ef4f7af)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#&#8203;52660](https://github.com/nodejs/node/pull/52660)
    
  • [`d5a316f5ea`](https://github.com/nodejs/node/commit/d5a316f5ea)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;52631](https://github.com/nodejs/node/pull/52631)
    
  • [`d7434fe411`](https://github.com/nodejs/node/commit/d7434fe411)] - **doc**: deprecate --experimental-policy (RafaelGSS) [#&#8203;52602](https://github.com/nodejs/node/pull/52602)
    
  • [`02a83d89f7`](https://github.com/nodejs/node/commit/02a83d89f7)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#&#8203;52598](https://github.com/nodejs/node/pull/52598)
    
  • [`a905eaace1`](https://github.com/nodejs/node/commit/a905eaace1)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#&#8203;52555](https://github.com/nodejs/node/pull/52555)
    
  • [`69c21a6522`](https://github.com/nodejs/node/commit/69c21a6522)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#&#8203;52590](https://github.com/nodejs/node/pull/52590)
    
  • [`5df34c7d0a`](https://github.com/nodejs/node/commit/5df34c7d0a)] - **doc**: sort options alphabetically (Luigi Pinca) [#&#8203;52589](https://github.com/nodejs/node/pull/52589)
    
  • [`b49464bc9d`](https://github.com/nodejs/node/commit/b49464bc9d)] - **doc**: correct stream.finished changes (KaKa) [#&#8203;52551](https://github.com/nodejs/node/pull/52551)
    
  • [`4d051ba89b`](https://github.com/nodejs/node/commit/4d051ba89b)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#&#8203;52556](https://github.com/nodejs/node/pull/52556)
    
  • [`4ed55bf16c`](https://github.com/nodejs/node/commit/4ed55bf16c)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#&#8203;52566](https://github.com/nodejs/node/pull/52566)
    
  • [`a8bc40fd07`](https://github.com/nodejs/node/commit/a8bc40fd07)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#&#8203;52515](https://github.com/nodejs/node/pull/52515)
    
  • [`17d5ba9fed`](https://github.com/nodejs/node/commit/17d5ba9fed)] - **doc**: add lint-js-fix into BUILDING.md (jakecastelli) [#&#8203;52290](https://github.com/nodejs/node/pull/52290)
    
  • [`88adbd0991`](https://github.com/nodejs/node/commit/88adbd0991)] - **doc**: remove Internet Explorer mention in BUILDING.md (Rich Trott) [#&#8203;52455](https://github.com/nodejs/node/pull/52455)
    
  • [`e8cb29d66d`](https://github.com/nodejs/node/commit/e8cb29d66d)] - **doc**: accommodate upcoming stricter .md linting (Rich Trott) [#&#8203;52454](https://github.com/nodejs/node/pull/52454)
    
  • [`e2ea984c7b`](https://github.com/nodejs/node/commit/e2ea984c7b)] - **doc**: add Rafael to steward list (Rafael Gonzaga) [#&#8203;52452](https://github.com/nodejs/node/pull/52452)
    
  • [`93d684097a`](https://github.com/nodejs/node/commit/93d684097a)] - **doc**: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) [#&#8203;52424](https://github.com/nodejs/node/pull/52424)
    
  • [`b9bdb947ac`](https://github.com/nodejs/node/commit/b9bdb947ac)] - **doc**: update `process.execArg` example to be more useful (Jacob Smith) [#&#8203;52412](https://github.com/nodejs/node/pull/52412)
    
  • [`f3f67ff84a`](https://github.com/nodejs/node/commit/f3f67ff84a)] - **doc**: call out http(s).globalAgent default (mathis-west-1) [#&#8203;52392](https://github.com/nodejs/node/pull/52392)
    
  • [`392a0d310e`](https://github.com/nodejs/node/commit/392a0d310e)] - **doc**: update the location of `build_with_cmake` (Emmanuel Ferdman) [#&#8203;52356](https://github.com/nodejs/node/pull/52356)
    
  • [`3ad62f1cc7`](https://github.com/nodejs/node/commit/3ad62f1cc7)] - **doc**: reserve 125 for Electron 31 (Shelley Vohr) [#&#8203;52379](https://github.com/nodejs/node/pull/52379)
    
  • [`bfd4c7844b`](https://github.com/nodejs/node/commit/bfd4c7844b)] - **doc**: use consistent plural form of "index" (Rich Trott) [#&#8203;52373](https://github.com/nodejs/node/pull/52373)
    
  • [`6f31cc8361`](https://github.com/nodejs/node/commit/6f31cc8361)] - **doc**: add Rafael to sec release stewards (Rafael Gonzaga) [#&#8203;52354](https://github.com/nodejs/node/pull/52354)
    
  • [`c55a3be789`](https://github.com/nodejs/node/commit/c55a3be789)] - **doc**: document missing options of events.on (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080)
    
  • [`1a843f7c6d`](https://github.com/nodejs/node/commit/1a843f7c6d)] - **doc**: add missing space (Augustin Mauroy) [#&#8203;52360](https://github.com/nodejs/node/pull/52360)
    
  • [`8ee20d8693`](https://github.com/nodejs/node/commit/8ee20d8693)] - **doc**: add tips about vcpkg cause build faild on windows (Cong Zhang) [#&#8203;52181](https://github.com/nodejs/node/pull/52181)
    
  • [`a86705c113`](https://github.com/nodejs/node/commit/a86705c113)] - **doc**: replace "below" with "following" (Rich Trott) [#&#8203;52315](https://github.com/nodejs/node/pull/52315)
    
  • [`f3e8d1159a`](https://github.com/nodejs/node/commit/f3e8d1159a)] - **doc**: fix email pattern to be wrapped with `<<` instead of single `<` (Raz Luvaton) [#&#8203;52284](https://github.com/nodejs/node/pull/52284)
    
  • [`cc67720ff9`](https://github.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257)
    
  • [`c2def7df96`](https://github.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257)
    
  • [`2509f3be18`](https://github.com/nodejs/node/commit/2509f3be18)] - **doc**: fix arrow vertical alignment in HTML version (Akash Yeole) [#&#8203;52193](https://github.com/nodejs/node/pull/52193)
    
  • [`2abaea3cdc`](https://github.com/nodejs/node/commit/2abaea3cdc)] - **doc**: move TSC members from regular to emeritus (Michael Dawson) [#&#8203;52209](https://github.com/nodejs/node/pull/52209)
    
  • [`65618a3d7b`](https://github.com/nodejs/node/commit/65618a3d7b)] - **doc**: add section explaining todo tests (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204)
    
  • [`bf0ed95b04`](https://github.com/nodejs/node/commit/bf0ed95b04)] - **doc**: edit `ChildProcess` `'message'` event docs (theanarkh) [#&#8203;52154](https://github.com/nodejs/node/pull/52154)
    
  • [`3d67b6b5e8`](https://github.com/nodejs/node/commit/3d67b6b5e8)] - **doc**: add mold to speeding up section (Cong Zhang) [#&#8203;52179](https://github.com/nodejs/node/pull/52179)
    
  • [`8ba308a838`](https://github.com/nodejs/node/commit/8ba308a838)] - **doc**: http event order correction (wh0) [#&#8203;51464](https://github.com/nodejs/node/pull/51464)
    
  • [`9771f41069`](https://github.com/nodejs/node/commit/9771f41069)] - **doc**: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) [#&#8203;52192](https://github.com/nodejs/node/pull/52192)
    
  • [`72bd2b0d62`](https://github.com/nodejs/node/commit/72bd2b0d62)] - **doc**: fix `--env-file` docs for valid quotes for defining values (Gabriel Bota) [#&#8203;52157](https://github.com/nodejs/node/pull/52157)
    
  • [`4f19203dfb`](https://github.com/nodejs/node/commit/4f19203dfb)] - **doc**: clarify what is supported in NODE_OPTIONS (Michael Dawson) [#&#8203;52076](https://github.com/nodejs/node/pull/52076)
    
  • [`5bce596838`](https://github.com/nodejs/node/commit/5bce596838)] - **doc**: fix typos in maintaining-dependencies.md (RoboSchmied) [#&#8203;52160](https://github.com/nodejs/node/pull/52160)
    
  • [`f5241e20cc`](https://github.com/nodejs/node/commit/f5241e20cc)] - **doc**: add spec for contains module syntax (Geoffrey Booth) [#&#8203;52059](https://github.com/nodejs/node/pull/52059)
    
  • [`bda3cdea86`](https://github.com/nodejs/node/commit/bda3cdea86)] - **doc**: optimize the doc about Unix abstract socket (theanarkh) [#&#8203;52043](https://github.com/nodejs/node/pull/52043)
    
  • [`8d7d6eff81`](https://github.com/nodejs/node/commit/8d7d6eff81)] - **doc**: update pnpm link (Superchupu) [#&#8203;52113](https://github.com/nodejs/node/pull/52113)
    
  • [`af7c55f62d`](https://github.com/nodejs/node/commit/af7c55f62d)] - **doc**: remove ableist language from crypto (Jamie King) [#&#8203;52063](https://github.com/nodejs/node/pull/52063)
    
  • [`f8362b0a5a`](https://github.com/nodejs/node/commit/f8362b0a5a)] - **doc**: update collaborator email (Ruy Adorno) [#&#8203;52088](https://github.com/nodejs/node/pull/52088)
    
  • [`48cbd5f71e`](https://github.com/nodejs/node/commit/48cbd5f71e)] - **doc**: state that removing npm is a non-goal (Geoffrey Booth) [#&#8203;51951](https://github.com/nodejs/node/pull/51951)
    
  • [`0ef2708131`](https://github.com/nodejs/node/commit/0ef2708131)] - **doc**: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) [#&#8203;52057](https://github.com/nodejs/node/pull/52057)
    
  • [`a6473a89be`](https://github.com/nodejs/node/commit/a6473a89be)] - **doc**: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) [#&#8203;52069](https://github.com/nodejs/node/pull/52069)
    
  • [`ae7a11c787`](https://github.com/nodejs/node/commit/ae7a11c787)] - **doc**: add some commonly used lables up gront (Michael Dawson) [#&#8203;52006](https://github.com/nodejs/node/pull/52006)
    
  • [`01aaddde3c`](https://github.com/nodejs/node/commit/01aaddde3c)] - **doc**: document that `const c2 = vm.createContext(c1); c1 === c2` is true (Daniel Kaplan) [#&#8203;51960](https://github.com/nodejs/node/pull/51960)
    
  • [`912145fac4`](https://github.com/nodejs/node/commit/912145fac4)] - **doc**: clarify what moderation issues are for (Antoine du Hamel) [#&#8203;51990](https://github.com/nodejs/node/pull/51990)
    
  • [`807c89cb26`](https://github.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#&#8203;51991](https://github.com/nodejs/node/pull/51991)
    
  • [`53ff3e5682`](https://github.com/nodejs/node/commit/53ff3e5682)] - **doc**: deprecate hmac public constructor (Marco Ippolito) [#&#8203;51881](https://github.com/nodejs/node/pull/51881)
    
  • [`5e78a20ef9`](https://github.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#&#8203;51879](https://github.com/nodejs/node/pull/51879)
    
  • [`7bfb0b43e6`](https://github.com/nodejs/node/commit/7bfb0b43e6)] - **events**: rename high & low watermark for consistency (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080)
    
  • [`5e6967359b`](https://github.com/nodejs/node/commit/5e6967359b)] - **events**: extract addAbortListener for safe internal use (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`6930205272`](https://github.com/nodejs/node/commit/6930205272)] - **events**: remove abort listener from signal in `on` (Neal Beeken) [#&#8203;51091](https://github.com/nodejs/node/pull/51091)
    
  • [`235ab4f99f`](https://github.com/nodejs/node/commit/235ab4f99f)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#&#8203;52618](https://github.com/nodejs/node/pull/52618)
    
  • [`ca5b827148`](https://github.com/nodejs/node/commit/ca5b827148)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#&#8203;52603](https://github.com/nodejs/node/pull/52603)
    
  • [`e7d0d804b2`](https://github.com/nodejs/node/commit/e7d0d804b2)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#&#8203;52349](https://github.com/nodejs/node/pull/52349)
    
  • [`c5fd193d6b`](https://github.com/nodejs/node/commit/c5fd193d6b)] - **fs**: refactor maybeCallback function (Yagiz Nizipli) [#&#8203;52129](https://github.com/nodejs/node/pull/52129)
    
  • [`0a9910c2c1`](https://github.com/nodejs/node/commit/0a9910c2c1)] - **fs**: fix edge case in readFileSync utf8 fast path (Richard Lau) [#&#8203;52101](https://github.com/nodejs/node/pull/52101)
    
  • [`51d7cd5de8`](https://github.com/nodejs/node/commit/51d7cd5de8)] - **fs**: validate fd from cpp on `fchown` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051)
    
  • [`33ad86c2be`](https://github.com/nodejs/node/commit/33ad86c2be)] - **fs**: validate fd from cpp on `close` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051)
    
  • [`34667c0a7e`](https://github.com/nodejs/node/commit/34667c0a7e)] - **fs**: validate file mode from cpp (Yagiz Nizipli) [#&#8203;52050](https://github.com/nodejs/node/pull/52050)
    
  • [`c530520be3`](https://github.com/nodejs/node/commit/c530520be3)] - **fs**: add stacktrace to fs/promises (翠 / green) [#&#8203;49849](https://github.com/nodejs/node/pull/49849)
    
  • [`edecd464b9`](https://github.com/nodejs/node/commit/edecd464b9)] - **fs,permission**: make handling of buffers consistent (Tobias Nießen) [#&#8203;52348](https://github.com/nodejs/node/pull/52348)
    
  • [`3bcd68337e`](https://github.com/nodejs/node/commit/3bcd68337e)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#&#8203;52713](https://github.com/nodejs/node/pull/52713)
    
  • [`e01015996a`](https://github.com/nodejs/node/commit/e01015996a)] - **http2**: fix h2-over-h2 connection proxying (Tim Perry) [#&#8203;52368](https://github.com/nodejs/node/pull/52368)
    
  • [`9f88736860`](https://github.com/nodejs/node/commit/9f88736860)] - **http2**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`acd7758959`](https://github.com/nodejs/node/commit/acd7758959)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#&#8203;52580](https://github.com/nodejs/node/pull/52580)
    
  • [`18ae7a46f6`](https://github.com/nodejs/node/commit/18ae7a46f6)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#&#8203;52275](https://github.com/nodejs/node/pull/52275)
    
  • [`64c2c2a7ac`](https://github.com/nodejs/node/commit/64c2c2a7ac)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#&#8203;52440](https://github.com/nodejs/node/pull/52440)
    
  • [`ee11b5315c`](https://github.com/nodejs/node/commit/ee11b5315c)] - **lib**: .load .save add proper error message when no file passed (Thomas Mauran) [#&#8203;52225](https://github.com/nodejs/node/pull/52225)
    
  • [`e5521b537f`](https://github.com/nodejs/node/commit/e5521b537f)] - **lib**: fix type error for \_refreshLine (Jackson Tian) [#&#8203;52133](https://github.com/nodejs/node/pull/52133)
    
  • [`d5d6e041c8`](https://github.com/nodejs/node/commit/d5d6e041c8)] - **lib**: emit listening event once when call listen twice (theanarkh) [#&#8203;52119](https://github.com/nodejs/node/pull/52119)
    
  • [`d33fc36784`](https://github.com/nodejs/node/commit/d33fc36784)] - **lib**: make sure clear the old timer in http server (theanarkh) [#&#8203;52118](https://github.com/nodejs/node/pull/52118)
    
  • [`ea4905c0f5`](https://github.com/nodejs/node/commit/ea4905c0f5)] - **lib**: fix listen with handle in cluster worker (theanarkh) [#&#8203;52056](https://github.com/nodejs/node/pull/52056)
    
  • [`8fd8130507`](https://github.com/nodejs/node/commit/8fd8130507)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#&#8203;52471](https://github.com/nodejs/node/pull/52471)
    
  • [`722fe64ff7`](https://github.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509)
    
  • [`26691e6032`](https://github.com/nodejs/node/commit/26691e6032)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52633](https://github.com/nodejs/node/pull/52633)
    
  • [`befb90dc83`](https://github.com/nodejs/node/commit/befb90dc83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52457](https://github.com/nodejs/node/pull/52457)
    
  • [`22b7167e72`](https://github.com/nodejs/node/commit/22b7167e72)] - **meta**: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot\[bot]) [#&#8203;52314](https://github.com/nodejs/node/pull/52314)
    
  • [`4dafd3ede2`](https://github.com/nodejs/node/commit/4dafd3ede2)] - **meta**: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot\[bot]) [#&#8203;52313](https://github.com/nodejs/node/pull/52313)
    
  • [`2760db7640`](https://github.com/nodejs/node/commit/2760db7640)] - **meta**: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot\[bot]) [#&#8203;52312](https://github.com/nodejs/node/pull/52312)
    
  • [`542aaf9ca9`](https://github.com/nodejs/node/commit/542aaf9ca9)] - **meta**: bump actions/cache from 4.0.1 to 4.0.2 (dependabot\[bot]) [#&#8203;52311](https://github.com/nodejs/node/pull/52311)
    
  • [`df330998d9`](https://github.com/nodejs/node/commit/df330998d9)] - **meta**: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot\[bot]) [#&#8203;52310](https://github.com/nodejs/node/pull/52310)
    
  • [`5f40fe0cc2`](https://github.com/nodejs/node/commit/5f40fe0cc2)] - **meta**: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;52308](https://github.com/nodejs/node/pull/52308)
    
  • [`481420f25c`](https://github.com/nodejs/node/commit/481420f25c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52300](https://github.com/nodejs/node/pull/52300)
    
  • [`3121949f85`](https://github.com/nodejs/node/commit/3121949f85)] - **meta**: pass Codecov upload token to codecov action (Michaël Zasso) [#&#8203;51982](https://github.com/nodejs/node/pull/51982)
    
  • [`882a64e639`](https://github.com/nodejs/node/commit/882a64e639)] - **module**: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) [#&#8203;52024](https://github.com/nodejs/node/pull/52024)
    
  • [`5fcc1d32a8`](https://github.com/nodejs/node/commit/5fcc1d32a8)] - **module**: refactor ESM loader initialization and entry point handling (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999)
    
  • [`d116fa1568`](https://github.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474)
    
  • [`37abad86ae`](https://github.com/nodejs/node/commit/37abad86ae)] - **net**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`a920489a1f`](https://github.com/nodejs/node/commit/a920489a1f)] - **node-api**: address coverity report (Michael Dawson) [#&#8203;52584](https://github.com/nodejs/node/pull/52584)
    
  • [`0a225a4b40`](https://github.com/nodejs/node/commit/0a225a4b40)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#&#8203;52426](https://github.com/nodejs/node/pull/52426)
    
  • [`f9d95674be`](https://github.com/nodejs/node/commit/f9d95674be)] - **node-api**: make tsfn accept napi_finalize once more (Gabriel Schulhof) [#&#8203;51801](https://github.com/nodejs/node/pull/51801)
    
  • [`72aabe1139`](https://github.com/nodejs/node/commit/72aabe1139)] - **perf_hooks**: reduce overhead of createHistogram (Vinícius Lourenço) [#&#8203;50074](https://github.com/nodejs/node/pull/50074)
    
  • [`fb601c3a94`](https://github.com/nodejs/node/commit/fb601c3a94)] - **readline**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`29f09f05f7`](https://github.com/nodejs/node/commit/29f09f05f7)] - **(SEMVER-MINOR)** **report**: add `--report-exclude-network` option (Ethan Arrowood) [#&#8203;51645](https://github.com/nodejs/node/pull/51645)
    
  • [`7e6d923f5b`](https://github.com/nodejs/node/commit/7e6d923f5b)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#&#8203;52638](https://github.com/nodejs/node/pull/52638)
    
  • [`6af7b78b0d`](https://github.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595)
    
  • [`27491e55c1`](https://github.com/nodejs/node/commit/27491e55c1)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#&#8203;52406](https://github.com/nodejs/node/pull/52406)
    
  • [`b05e639e27`](https://github.com/nodejs/node/commit/b05e639e27)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#&#8203;52438](https://github.com/nodejs/node/pull/52438)
    
  • [`1b4d2814d1`](https://github.com/nodejs/node/commit/1b4d2814d1)] - **src**: update branch name in node_revert.h (Tobias Nießen) [#&#8203;52390](https://github.com/nodejs/node/pull/52390)
    
  • [`7e35a169ea`](https://github.com/nodejs/node/commit/7e35a169ea)] - **src**: stop using `v8::BackingStore::Reallocate` (Michaël Zasso) [#&#8203;52292](https://github.com/nodejs/node/pull/52292)
    
  • [`2449d2606a`](https://github.com/nodejs/node/commit/2449d2606a)] - **src**: fix move after use reported by coverity (Michael Dawson) [#&#8203;52141](https://github.com/nodejs/node/pull/52141)
    
  • [`b33eff887d`](https://github.com/nodejs/node/commit/b33eff887d)] - **(SEMVER-MINOR)** **src**: add C++ ProcessEmitWarningSync() (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977)
    
  • [`f2c7408927`](https://github.com/nodejs/node/commit/f2c7408927)] - **src**: return a number from process.constrainedMemory() constantly (Chengzhong Wu) [#&#8203;52039](https://github.com/nodejs/node/pull/52039)
    
  • [`7f575c886b`](https://github.com/nodejs/node/commit/7f575c886b)] - **(SEMVER-MINOR)** **src**: add uv_get_available_memory to report and process (theanarkh) [#&#8203;52023](https://github.com/nodejs/node/pull/52023)
    
  • [`e161e62313`](https://github.com/nodejs/node/commit/e161e62313)] - **src**: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) [#&#8203;52016](https://github.com/nodejs/node/pull/52016)
    
  • [`07322b490f`](https://github.com/nodejs/node/commit/07322b490f)] - **src**: fix reading empty string views in Blob\[De]serializer (Joyee Cheung) [#&#8203;52000](https://github.com/nodejs/node/pull/52000)
    
  • [`e216192390`](https://github.com/nodejs/node/commit/e216192390)] - **src**: refactor out FormatErrorMessage for error formatting (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999)
    
  • [`b3a11b574b`](https://github.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#&#8203;51539](https://github.com/nodejs/node/pull/51539)
    
  • [`09bd367ef6`](https://github.com/nodejs/node/commit/09bd367ef6)] - **stream**: make Duplex inherit destroy from Writable (Luigi Pinca) [#&#8203;52318](https://github.com/nodejs/node/pull/52318)
    
  • [`0b853a7576`](https://github.com/nodejs/node/commit/0b853a7576)] - **(SEMVER-MINOR)** **stream**: support typed arrays (IlyasShabi) [#&#8203;51866](https://github.com/nodejs/node/pull/51866)
    
  • [`f8209ffe45`](https://github.com/nodejs/node/commit/f8209ffe45)] - **stream**: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (haze) [#&#8203;52110](https://github.com/nodejs/node/pull/52110)
    
  • [`8442457117`](https://github.com/nodejs/node/commit/8442457117)] - **stream**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`8d20b641a2`](https://github.com/nodejs/node/commit/8d20b641a2)] - ***Revert*** "**stream**: fix cloned webstreams not being unref'd" (Matteo Collina) [#&#8203;51491](https://github.com/nodejs/node/pull/51491)
    
  • [`a923adffab`](https://github.com/nodejs/node/commit/a923adffab)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#&#8203;52739](https://github.com/nodejs/node/pull/52739)
    
  • [`d4f1803f0b`](https://github.com/nodejs/node/commit/d4f1803f0b)] - **test**: mark test as flaky (Michael Dawson) [#&#8203;52671](https://github.com/nodejs/node/pull/52671)
    
  • [`1e88e042c2`](https://github.com/nodejs/node/commit/1e88e042c2)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#&#8203;52645](https://github.com/nodejs/node/pull/52645)
    
  • [`6da558af8b`](https://github.com/nodejs/node/commit/6da558af8b)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#&#8203;52563](https://github.com/nodejs/node/pull/52563)
    
  • [`c871fadb85`](https://github.com/nodejs/node/commit/c871fadb85)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#&#8203;52431](https://github.com/nodejs/node/pull/52431)
    
  • [`b6cb74d775`](https://github.com/nodejs/node/commit/b6cb74d775)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#&#8203;52538](https://github.com/nodejs/node/pull/52538)
    
  • [`4ad159bb75`](https://github.com/nodejs/node/commit/4ad159bb75)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#&#8203;52511](https://github.com/nodejs/node/pull/52511)
    
  • [`1f7a28cbe7`](https://github.com/nodejs/node/commit/1f7a28cbe7)] - **test**: fix watch test with require not testing pid (Raz Luvaton) [#&#8203;52353](https://github.com/nodejs/node/pull/52353)
    
  • [`5b758b93d5`](https://github.com/nodejs/node/commit/5b758b93d5)] - **test**: simplify ASan build checks (Michaël Zasso) [#&#8203;52430](https://github.com/nodejs/node/pull/52430)
    
  • [`375c3db5ea`](https://github.com/nodejs/node/commit/375c3db5ea)] - **test**: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) [#&#8203;52405](https://github.com/nodejs/node/pull/52405)
    
  • [`a1dd92cdee`](https://github.com/nodejs/node/commit/a1dd92cdee)] - **test**: add test for skip+todo combinations (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204)
    
  • [`8a0b721930`](https://github.com/nodejs/node/commit/8a0b721930)] - **test**: fix incorrect test fixture (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185)
    
  • [`dd1f761f3b`](https://github.com/nodejs/node/commit/dd1f761f3b)] - **test**: add missing cctest/test_path.cc (Yagiz Nizipli) [#&#8203;52148](https://github.com/nodejs/node/pull/52148)
    
  • [`6da446d9e1`](https://github.com/nodejs/node/commit/6da446d9e1)] - **test**: add `spawnSyncAndAssert` util (Antoine du Hamel) [#&#8203;52132](https://github.com/nodejs/node/pull/52132)
    
  • [`d7bfb4e8d8`](https://github.com/nodejs/node/commit/d7bfb4e8d8)] - **test**: reduce flakiness of test-runner-output.mjs (Colin Ihrig) [#&#8203;52146](https://github.com/nodejs/node/pull/52146)
    
  • [`e4981b3d75`](https://github.com/nodejs/node/commit/e4981b3d75)] - **test**: add test for using `--print` with promises (Antoine du Hamel) [#&#8203;52137](https://github.com/nodejs/node/pull/52137)
    
  • [`5cc540078e`](https://github.com/nodejs/node/commit/5cc540078e)] - **test**: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) [#&#8203;51995](https://github.com/nodejs/node/pull/51995)
    
  • [`b9eb0035dd`](https://github.com/nodejs/node/commit/b9eb0035dd)] - **test**: skip test for dynamically linked OpenSSL (Richard Lau) [#&#8203;52542](https://github.com/nodejs/node/pull/52542)
    
  • [`32014f5601`](https://github.com/nodejs/node/commit/32014f5601)] - **test**: avoid v8 deadcode on performance function (Vinícius Lourenço) [#&#8203;50074](https://github.com/nodejs/node/pull/50074)
    
  • [`29d2011f51`](https://github.com/nodejs/node/commit/29d2011f51)] - **test_runner**: better error handing for test hook (Alex Yang) [#&#8203;52401](https://github.com/nodejs/node/pull/52401)
    
  • [`9497097fb3`](https://github.com/nodejs/node/commit/9497097fb3)] - **test_runner**: fix clearing final timeout in own callback (Ben Richeson) [#&#8203;52332](https://github.com/nodejs/node/pull/52332)
    
  • [`0f690f0b9e`](https://github.com/nodejs/node/commit/0f690f0b9e)] - **test_runner**: fix recursive run (Moshe Atlow) [#&#8203;52322](https://github.com/nodejs/node/pull/52322)
    
  • [`34ab1a36ee`](https://github.com/nodejs/node/commit/34ab1a36ee)] - **test_runner**: hide new line when no error in spec reporter (Moshe Atlow) [#&#8203;52297](https://github.com/nodejs/node/pull/52297)
    
  • [`379535abe3`](https://github.com/nodejs/node/commit/379535abe3)] - **test_runner**: disable highWatermark on TestsStream (Colin Ihrig) [#&#8203;52287](https://github.com/nodejs/node/pull/52287)
    
  • [`35588cff39`](https://github.com/nodejs/node/commit/35588cff39)] - **test_runner**: run afterEach hooks in correct order (Colin Ihrig) [#&#8203;52239](https://github.com/nodejs/node/pull/52239)
    
  • [`5cd3df8fe1`](https://github.com/nodejs/node/commit/5cd3df8fe1)] - **test_runner**: simplify test end time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182)
    
  • [`07e4a42e4b`](https://github.com/nodejs/node/commit/07e4a42e4b)] - **test_runner**: simplify test start time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182)
    
  • [`caec996831`](https://github.com/nodejs/node/commit/caec996831)] - **test_runner**: emit diagnostics when watch mode drains (Moshe Atlow) [#&#8203;52130](https://github.com/nodejs/node/pull/52130)
    
  • [`41646d9c9e`](https://github.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#&#8203;52127](https://github.com/nodejs/node/pull/52127)
    
  • [`fd1489a623`](https://github.com/nodejs/node/commit/fd1489a623)] - **test_runner**: skip each hooks for skipped tests (Colin Ihrig) [#&#8203;52115](https://github.com/nodejs/node/pull/52115)
    
  • [`73b38bfa9e`](https://github.com/nodejs/node/commit/73b38bfa9e)] - **test_runner**: remove redundant report call (Colin Ihrig) [#&#8203;52089](https://github.com/nodejs/node/pull/52089)
    
  • [`68187c4d9e`](https://github.com/nodejs/node/commit/68187c4d9e)] - **test_runner**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`61e7ae05ef`](https://github.com/nodejs/node/commit/61e7ae05ef)] - **test_runner**: use source maps when reporting coverage (Moshe Atlow) [#&#8203;52060](https://github.com/nodejs/node/pull/52060)
    
  • [`e64a25af61`](https://github.com/nodejs/node/commit/e64a25af61)] - **test_runner**: handle undefined test locations (Colin Ihrig) [#&#8203;52036](https://github.com/nodejs/node/pull/52036)
    
  • [`590decf202`](https://github.com/nodejs/node/commit/590decf202)] - **test_runner**: avoid overwriting root start time (Colin Ihrig) [#&#8203;52020](https://github.com/nodejs/node/pull/52020)
    
  • [`a4cbb61c65`](https://github.com/nodejs/node/commit/a4cbb61c65)] - **test_runner**: abort unfinished tests on async error (Colin Ihrig) [#&#8203;51996](https://github.com/nodejs/node/pull/51996)
    
  • [`a223ca4868`](https://github.com/nodejs/node/commit/a223ca4868)] - **test_runner**: run before hook immediately if test started (Moshe Atlow) [#&#8203;52003](https://github.com/nodejs/node/pull/52003)
    
  • [`956ee74c7e`](https://github.com/nodejs/node/commit/956ee74c7e)] - **test_runner**: add support for null and date value output (Malthe Borch) [#&#8203;51920](https://github.com/nodejs/node/pull/51920)
    
  • [`fc9ba17f6c`](https://github.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#&#8203;51909](https://github.com/nodejs/node/pull/51909)
    
  • [`d5ac979aeb`](https://github.com/nodejs/node/commit/d5ac979aeb)] - **test_runner**: format coverage report for tap reporter (Pulkit Gupta) [#&#8203;51119](https://github.com/nodejs/node/pull/51119)
    
  • [`c925bc18dc`](https://github.com/nodejs/node/commit/c925bc18dc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#&#8203;52669](https://github.com/nodejs/node/pull/52669)
    
  • [`1d37e772ec`](https://github.com/nodejs/node/commit/1d37e772ec)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#&#8203;52624](https://github.com/nodejs/node/pull/52624)
    
  • [`5b22fc3a81`](https://github.com/nodejs/node/commit/5b22fc3a81)] - **tools**: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) [#&#8203;52617](https://github.com/nodejs/node/pull/52617)
    
  • [`9cf47bb2f1`](https://github.com/nodejs/node/commit/9cf47bb2f1)] - **tools**: update lint-md-dependencies (Rich Trott) [#&#8203;52581](https://github.com/nodejs/node/pull/52581)
    
  • [`c0c60d13c0`](https://github.com/nodejs/node/commit/c0c60d13c0)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#&#8203;52561](https://github.com/nodejs/node/pull/52561)
    
  • [`7c349d7819`](https://github.com/nodejs/node/commit/7c349d7819)] - **tools**: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) [#&#8203;52518](https://github.com/nodejs/node/pull/52518)
    
  • [`b4d703297b`](https://github.com/nodejs/node/commit/b4d703297b)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#&#8203;50714](https://github.com/nodejs/node/pull/50714)
    
  • [`c6813360c2`](https://github.com/nodejs/node/commit/c6813360c2)] - **tools**: update minimatch index path (Marco Ippolito) [#&#8203;52523](https://github.com/nodejs/node/pull/52523)
    
  • [`8464c0253c`](https://github.com/nodejs/node/commit/8464c0253c)] - **tools**: add a linter for README lists (Antoine du Hamel) [#&#8203;52476](https://github.com/nodejs/node/pull/52476)
    
  • [`55a3fbc842`](https://github.com/nodejs/node/commit/55a3fbc842)] - **tools**: change inactive limit to 12 months (Yagiz Nizipli) [#&#8203;52425](https://github.com/nodejs/node/pull/52425)
    
  • [`74a171f130`](https://github.com/nodejs/node/commit/74a171f130)] - **tools**: update stale bot messaging (Wes Todd) [#&#8203;52423](https://github.com/nodejs/node/pull/52423)
    
  • [`b2a3dcec2a`](https://github.com/nodejs/node/commit/b2a3dcec2a)] - **tools**: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) [#&#8203;52398](https://github.com/nodejs/node/pull/52398)
    
  • [`f71a777e6e`](https://github.com/nodejs/node/commit/f71a777e6e)] - **tools**: update Ruff to v0.3.4 (Michaël Zasso) [#&#8203;52302](https://github.com/nodejs/node/pull/52302)
    
  • [`e3e0c68f8f`](https://github.com/nodejs/node/commit/e3e0c68f8f)] - **tools**: run test-ubsan on ubuntu-latest (Michaël Zasso) [#&#8203;52375](https://github.com/nodejs/node/pull/52375)
    
  • [`893b5aac31`](https://github.com/nodejs/node/commit/893b5aac31)] - **tools**: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) [#&#8203;52286](https://github.com/nodejs/node/pull/52286)
    
  • [`049cca419e`](https://github.com/nodejs/node/commit/049cca419e)] - ***Revert*** "**tools**: run `build-windows` workflow only on source changes" (Michaël Zasso) [#&#8203;52320](https://github.com/nodejs/node/pull/52320)
    
  • [`b3dfc62cee`](https://github.com/nodejs/node/commit/b3dfc62cee)] - **tools**: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) [#&#8203;52301](https://github.com/nodejs/node/pull/52301)
    
  • [`c7238d0c04`](https://github.com/nodejs/node/commit/c7238d0c04)] - **tools**: allow local updates for llhttp (Paolo Insogna) [#&#8203;52085](https://github.com/nodejs/node/pull/52085)
    
  • [`c39f15cafd`](https://github.com/nodejs/node/commit/c39f15cafd)] - **tools**: install npm PowerShell scripts on Windows (Luke Karrys) [#&#8203;52009](https://github.com/nodejs/node/pull/52009)
    
  • [`b36fea064a`](https://github.com/nodejs/node/commit/b36fea064a)] - **tools**: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) [#&#8203;52122](https://github.com/nodejs/node/pull/52122)
    
  • [`a5204eb915`](https://github.com/nodejs/node/commit/a5204eb915)] - **tools**: fix error reported by coverity in js2c.cc (Michael Dawson) [#&#8203;52142](https://github.com/nodejs/node/pull/52142)
    
  • [`cef4b7ef3d`](https://github.com/nodejs/node/commit/cef4b7ef3d)] - **tools**: sync ubsan workflow with asan (Michaël Zasso) [#&#8203;52152](https://github.com/nodejs/node/pull/52152)
    
  • [`d406976bbe`](https://github.com/nodejs/node/commit/d406976bbe)] - **tools**: update github_reporter to 1.7.0 (Node.js GitHub Bot) [#&#8203;52121](https://github.com/nodejs/node/pull/52121)
    
  • [`fb100a2ac8`](https://github.com/nodejs/node/commit/fb100a2ac8)] - **tools**: remove gyp-next .github folder (Marco Ippolito) [#&#8203;52064](https://github.com/nodejs/node/pull/52064)
    
  • [`5f1e7a0de2`](https://github.com/nodejs/node/commit/5f1e7a0de2)] - **tools**: update gyp-next to 0.16.2 (Node.js GitHub Bot) [#&#8203;52062](https://github.com/nodejs/node/pull/52062)
    
  • [`1f1253446b`](https://github.com/nodejs/node/commit/1f1253446b)] - **tools**: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) [#&#8203;51791](https://github.com/nodejs/node/pull/51791)
    
  • [`4b8b92fccc`](https://github.com/nodejs/node/commit/4b8b92fccc)] - **tools**: automate gyp-next update (Marco Ippolito) [#&#8203;52014](https://github.com/nodejs/node/pull/52014)
    
  • [`1ec9e58692`](https://github.com/nodejs/node/commit/1ec9e58692)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#&#8203;52659](https://github.com/nodejs/node/pull/52659)
    
  • [`2d6b19970b`](https://github.com/nodejs/node/commit/2d6b19970b)] - **(SEMVER-MINOR)** **util**: support array of formats in util.styleText (Marco Ippolito) [#&#8203;52040](https://github.com/nodejs/node/pull/52040)
    
  • [`d30cccdf8c`](https://github.com/nodejs/node/commit/d30cccdf8c)] - **(SEMVER-MINOR)** **v8**: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) [#&#8203;51927](https://github.com/nodejs/node/pull/51927)
    
  • [`7f3b7fdeff`](https://github.com/nodejs/node/commit/7f3b7fdeff)] - **watch**: fix some node argument not passed to watched process (Raz Luvaton) [#&#8203;52358](https://github.com/nodejs/node/pull/52358)
    
  • [`8ba6f9bc9a`](https://github.com/nodejs/node/commit/8ba6f9bc9a)] - **watch**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081)
    
  • [`5a922232da`](https://github.com/nodejs/node/commit/5a922232da)] - **watch**: mark as stable (Moshe Atlow) [#&#8203;52074](https://github.com/nodejs/node/pull/52074)
    
  • [`508e968a5f`](https://github.com/nodejs/node/commit/508e968a5f)] - **watch**: batch file restarts (Moshe Atlow) [#&#8203;51992](https://github.com/nodejs/node/pull/51992)
    
    

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://git
    
    

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 | |---|---|---|---| | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | major | [`17.0.35` -> `22.9.3`](https://renovatebot.com/diffs/npm/@types%2fnode/17.0.35/22.9.3) | | [graphql](https://github.com/graphql/graphql-js) | dependencies | minor | [`16.6.0` -> `16.9.0`](https://renovatebot.com/diffs/npm/graphql/16.6.0/16.9.0) | | [node](https://hub.docker.com/_/node) ([source](https://github.com/nodejs/node)) | final | major | `16-alpine` -> `22-alpine` | | [node](https://hub.docker.com/_/node) ([source](https://github.com/nodejs/node)) | stage | major | `16-alpine` -> `22-alpine` | | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.16` -> `8.4.49`](https://renovatebot.com/diffs/npm/postcss/8.4.16/8.4.49) | | [tailwindcss](https://tailwindcss.com) ([source](https://github.com/tailwindlabs/tailwindcss)) | devDependencies | minor | [`3.1.8` -> `3.4.15`](https://renovatebot.com/diffs/npm/tailwindcss/3.1.8/3.4.15) | | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | major | [`4.7.2` -> `5.7.2`](https://renovatebot.com/diffs/npm/typescript/4.7.2/5.7.2) | --- ### Release Notes <details> <summary>graphql/graphql-js (graphql)</summary> ### [`v16.9.0`](https://github.com/graphql/graphql-js/releases/tag/v16.9.0) [Compare Source](https://github.com/graphql/graphql-js/compare/v16.8.2...v16.9.0) #### v16.9.0 (2024-06-21) ##### New Feature 🚀 - [#&#8203;4119](https://github.com/graphql/graphql-js/pull/4119) backport\[v16]: Introduce "recommended" validation rules ([@&#8203;benjie](https://github.com/benjie)) - [#&#8203;4122](https://github.com/graphql/graphql-js/pull/4122) backport\[v16]: Enable passing values configuration to GraphQLEnumType as a thunk ([@&#8203;benjie](https://github.com/benjie)) - [#&#8203;4124](https://github.com/graphql/graphql-js/pull/4124) backport\[v16]: Implement OneOf Input Objects via `@oneOf` directive ([@&#8203;benjie](https://github.com/benjie)) ##### Committers: 1 - Benjie([@&#8203;benjie](https://github.com/benjie)) ### [`v16.8.2`](https://github.com/graphql/graphql-js/releases/tag/v16.8.2) [Compare Source](https://github.com/graphql/graphql-js/compare/v16.8.1...v16.8.2) #### v16.8.2 (2024-06-12) ##### Bug Fix 🐞 - [#&#8203;4022](https://github.com/graphql/graphql-js/pull/4022) fix: remove `globalThis` check and align with what bundlers can accept ([@&#8203;JoviDeCroock](https://github.com/JoviDeCroock)) ##### Internal 🏠 - [#&#8203;4104](https://github.com/graphql/graphql-js/pull/4104) Fix publish scripts ([@&#8203;benjie](https://github.com/benjie)) ##### Committers: 2 - Benjie([@&#8203;benjie](https://github.com/benjie)) - Jovi De Croock([@&#8203;JoviDeCroock](https://github.com/JoviDeCroock)) ### [`v16.8.1`](https://github.com/graphql/graphql-js/releases/tag/v16.8.1) [Compare Source](https://github.com/graphql/graphql-js/compare/v16.8.0...v16.8.1) #### v16.8.1 (2023-09-19) ##### Bug Fix 🐞 - [#&#8203;3967](https://github.com/graphql/graphql-js/pull/3967) OverlappingFieldsCanBeMergedRule: Fix performance degradation ([@&#8203;AaronMoat](https://github.com/AaronMoat)) ##### Committers: 1 - Aaron Moat([@&#8203;AaronMoat](https://github.com/AaronMoat)) ### [`v16.8.0`](https://github.com/graphql/graphql-js/releases/tag/v16.8.0) [Compare Source](https://github.com/graphql/graphql-js/compare/v16.7.1...v16.8.0) #### v16.8.0 (2023-08-14) ##### New Feature 🚀 - [#&#8203;3950](https://github.com/graphql/graphql-js/pull/3950) Support fourfold nested lists ([@&#8203;gschulze](https://github.com/gschulze)) ##### Committers: 1 - Gunnar Schulze([@&#8203;gschulze](https://github.com/gschulze)) ### [`v16.7.1`](https://github.com/graphql/graphql-js/releases/tag/v16.7.1) [Compare Source](https://github.com/graphql/graphql-js/compare/v16.7.0...v16.7.1) #### v16.7.1 (2023-06-22) :loudspeaker: Big shout out to [@&#8203;phryneas](https://github.com/phryneas), who managed to reproduce this issue and come up with this fix. ##### Bug Fix 🐞 - [#&#8203;3923](https://github.com/graphql/graphql-js/pull/3923) instanceOf: workaround bundler issue with `process.env` ([@&#8203;IvanGoncharov](https://github.com/IvanGoncharov)) ##### Committers: 1 - Ivan Goncharov([@&#8203;IvanGoncharov](https://github.com/IvanGoncharov)) ### [`v16.7.0`](https://github.com/graphql/graphql-js/releases/tag/v16.7.0) [Compare Source](https://github.com/graphql/graphql-js/compare/v16.6.0...v16.7.0) #### v16.7.0 (2023-06-21) ##### New Feature 🚀 - [#&#8203;3887](https://github.com/graphql/graphql-js/pull/3887) check "globalThis.process" before accessing it ([@&#8203;kettanaito](https://github.com/kettanaito)) ##### Bug Fix 🐞 - [#&#8203;3707](https://github.com/graphql/graphql-js/pull/3707) Fix crash in node when mixing sync/async resolvers (backport of [#&#8203;3706](https://github.com/graphql/graphql-js/issues/3706)) ([@&#8203;chrskrchr](https://github.com/chrskrchr)) - [#&#8203;3838](https://github.com/graphql/graphql-js/pull/3838) Fix/invalid error propagation custom scalars (backport for 16.x.x) ([@&#8203;stenreijers](https://github.com/stenreijers)) ##### Committers: 3 - Artem Zakharchenko([@&#8203;kettanaito](https://github.com/kettanaito)) - Chris Karcher([@&#8203;chrskrchr](https://github.com/chrskrchr)) - Sten Reijers([@&#8203;stenreijers](https://github.com/stenreijers)) </details> <details> <summary>nodejs/node (node)</summary> ### [`v22.11.0`](https://github.com/nodejs/node/releases/tag/v22.11.0): 2024-10-29, Version 22.11.0 &#x27;Jod&#x27; (LTS), @&#8203;richardlau [Compare Source](https://github.com/nodejs/node/compare/v22.10.0...v22.11.0) ##### Notable Changes This release marks the transition of Node.js 22.x into Long Term Support (LTS) with the codename 'Jod'. The 22.x release line now moves into "Active LTS" and will remain so until October 2025. After that time, it will move into "Maintenance" until end of life in April 2027. Other than updating metadata, such as the `process.release` object, to reflect that the release is LTS, no further changes from Node.js 22.10.0 are included. ##### OpenSSL 3.x Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more specifically, the [quictls OpenSSL fork](https://github.com/quictls/openssl)). OpenSSL 3.0.x is the currently designated long term support version that is scheduled to be supported until 7th September 2026, which is within the expected lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a successor long term support version prior to that date and since OpenSSL now follows a semantic versioning-like versioning scheme we expect to be able to update to the next long term supported version of OpenSSL during the lifetime of Node.js 22.x. ### [`v22.10.0`](https://github.com/nodejs/node/releases/tag/v22.10.0): 2024-10-16, Version 22.10.0 (Current), @&#8203;aduh95 [Compare Source](https://github.com/nodejs/node/compare/v22.9.0...v22.10.0) ##### Notable Changes ##### New `"module-sync"` exports condition This release introduces a `"module-sync"` exports condition that's enabled when `require(esm)` is enabled, so packages can supply a synchronous ES module to the Node.js module loader, no matter if it's being required or imported. This is similar to the `"module"` condition that bundlers have been using to support `require(esm)` in Node.js, and allows dual-package authors to opt into ESM-first only on newer versions of Node.js that supports `require(esm)` to avoid the dual-package hazard. ```json { "type": "module", "exports": { "node": { // On new version of Node.js, both require() and import get // the ESM version "module-sync": "./index.js", // On older version of Node.js, where "module-sync" and require(esm) are // not supported, use the CJS version to avoid dual-package hazard. // When package authors think it's time to drop support for older versions of // Node.js, they can remove the exports conditions and just use "main": "index.js". "default": "./dist/index.cjs" }, // On any other environment, use the ESM version. "default": "./index.js" } } ``` Or if the package is only meant to be run on Node.js and wants to fallback to CJS on older versions that don't have `require(esm)`: ```json { "type": "module", "exports": { // On new version of Node.js, both require() and import get the ESM version "module-sync": "./index.js", // On older version of Node.js, where "module-sync" and require(esm) are // not supported, use the CJS version to avoid dual-package hazard. // When package authors think it's time to drop support for older versions of // Node.js, they can remove the exports conditions and just use "main": "index.js". "default": "./dist/index.cjs" } } ``` **For package authors**: this only serves as a feature-detection mechanism for packages that wish to support both CJS and ESM users during the period when some active Node.js LTS versions support `require(esm)` while some older ones don't. When all active Node.js LTS lines support `require(esm)`, packages can simplify their distributions by bumping the major version, dropping their CJS exports, and removing the `module-sync` exports condition (with only `main` or `default` targetting the ESM exports). If the package needs to support both bundlers and being run unbundled on Node.js during the transition period, use both `module-sync` and `module` and point them to the same ESM file. If the package already doesn't want to support older versions of Node.js that doesn't support `require(esm)`, don't use this export condition. **For bundlers/tools**: they should avoid implementing this stop-gap condition. Most existing bundlers implement the de-facto bundler standard [`module`](https://webpack.js.org/guides/package-exports/#providing-commonjs-and-esm-version-stateless) exports condition, and that should be enough to support users who want to bundle ESM from CJS consumers. Users who want both bundlers and Node.js to recognize the ESM exports can use both `module`/`module-sync` conditions during the transition period, and can drop `module-sync`+`module` when they no longer need to support older versions of Node.js. If tools do want to support this condition, it's recommended to make the resolution rules in the graph pointed by this condition match the Node.js native ESM rules to avoid divergence. We ended up implementing a condition with a different name instead of reusing `"module"`, because existing code in the ecosystem using the `"module"` condition sometimes also expect the module resolution for these ESM files to work in CJS style, which is supported by bundlers, but the native Node.js loader has intentionally made ESM resolution different from CJS resolution (e.g. forbidding `import './noext'` or `import './directory'`), so it would be breaking to implement a `"module"` condition without implementing the forbidden ESM resolution rules. For now, this just implements a new condition as semver-minor so it can be backported to older LTS. Contributed by Joyee Cheung in [#&#8203;54648](https://github.com/nodejs/node/pull/54648). ##### `node --run` is now stable This CLI flag runs a specified command from a `package.json`'s `"scripts"` object. For the following `package.json`: ```json { "scripts": { "test": "node --test-reporter junit --test ./test" } } ``` You can run `node --run test` and that would start the test suite. Contributed by Yagiz Nizipli in [#&#8203;53763](https://github.com/nodejs/node/pull/53763). ##### Other notable changes - \[[`f0b441230a`](https://github.com/nodejs/node/commit/f0b441230a)] - **(SEMVER-MINOR)** **crypto**: add `KeyObject.prototype.toCryptoKey` (Filip Skokan) [#&#8203;55262](https://github.com/nodejs/node/pull/55262) - \[[`349d2ed07b`](https://github.com/nodejs/node/commit/349d2ed07b)] - **(SEMVER-MINOR)** **crypto**: add Date fields for `validTo` and `validFrom` (Andrew Moon) [#&#8203;54159](https://github.com/nodejs/node/pull/54159) - \[[`bebc95ed58`](https://github.com/nodejs/node/commit/bebc95ed58)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#&#8203;55086](https://github.com/nodejs/node/pull/55086) - \[[`914db60159`](https://github.com/nodejs/node/commit/914db60159)] - **(SEMVER-MINOR)** **http2**: expose `nghttp2_option_set_stream_reset_rate_limit` as an option (Maël Nison) [#&#8203;54875](https://github.com/nodejs/node/pull/54875) - \[[`f7c3b03759`](https://github.com/nodejs/node/commit/f7c3b03759)] - **(SEMVER-MINOR)** **lib**: propagate aborted state to dependent signals before firing events (jazelly) [#&#8203;54826](https://github.com/nodejs/node/pull/54826) - \[[`32261fc98a`](https://github.com/nodejs/node/commit/32261fc98a)] - **(SEMVER-MINOR)** **module**: support loading entrypoint as url (RedYetiDev) [#&#8203;54933](https://github.com/nodejs/node/pull/54933) - \[[`06957ff355`](https://github.com/nodejs/node/commit/06957ff355)] - **(SEMVER-MINOR)** **module**: implement `flushCompileCache()` (Joyee Cheung) [#&#8203;54971](https://github.com/nodejs/node/pull/54971) - \[[`2dcf70c347`](https://github.com/nodejs/node/commit/2dcf70c347)] - **(SEMVER-MINOR)** **module**: throw when invalid argument is passed to `enableCompileCache()` (Joyee Cheung) [#&#8203;54971](https://github.com/nodejs/node/pull/54971) - \[[`f9b19d7c44`](https://github.com/nodejs/node/commit/f9b19d7c44)] - **(SEMVER-MINOR)** **module**: write compile cache to temporary file and then rename it (Joyee Cheung) [#&#8203;54971](https://github.com/nodejs/node/pull/54971) - \[[`e95163b170`](https://github.com/nodejs/node/commit/e95163b170)] - **(SEMVER-MINOR)** **process**: add `process.features.require_module` (Joyee Cheung) [#&#8203;55241](https://github.com/nodejs/node/pull/55241) - \[[`4050f68e5d`](https://github.com/nodejs/node/commit/4050f68e5d)] - **(SEMVER-MINOR)** **process**: add `process.features.typescript` (Aviv Keller) [#&#8203;54295](https://github.com/nodejs/node/pull/54295) - \[[`86f7cb802d`](https://github.com/nodejs/node/commit/86f7cb802d)] - **(SEMVER-MINOR)** **test_runner**: support custom arguments in `run()` (Aviv Keller) [#&#8203;55126](https://github.com/nodejs/node/pull/55126) - \[[`b62f2f8259`](https://github.com/nodejs/node/commit/b62f2f8259)] - **(SEMVER-MINOR)** **test_runner**: add `'test:summary'` event (Colin Ihrig) [#&#8203;54851](https://github.com/nodejs/node/pull/54851) - \[[`d7c708aec5`](https://github.com/nodejs/node/commit/d7c708aec5)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage via `run()` (Chemi Atlow) [#&#8203;53937](https://github.com/nodejs/node/pull/53937) - \[[`5fda4a1498`](https://github.com/nodejs/node/commit/5fda4a1498)] - **(SEMVER-MINOR)** **worker**: add `markAsUncloneable` api (Jason Zhang) [#&#8203;55234](https://github.com/nodejs/node/pull/55234) ##### Commits - \[[`e3619510c8`](https://github.com/nodejs/node/commit/e3619510c8)] - **assert**: show the diff when deep comparing data with a custom message (Giovanni) [#&#8203;54759](https://github.com/nodejs/node/pull/54759) - \[[`39c7a9e70c`](https://github.com/nodejs/node/commit/39c7a9e70c)] - **benchmark**: adjust config for deepEqual object (Rafael Gonzaga) [#&#8203;55254](https://github.com/nodejs/node/pull/55254) - \[[`263526d5d0`](https://github.com/nodejs/node/commit/263526d5d0)] - **benchmark**: rewrite detect-esm-syntax benchmark (Joyee Cheung) [#&#8203;55238](https://github.com/nodejs/node/pull/55238) - \[[`cd0795fb00`](https://github.com/nodejs/node/commit/cd0795fb00)] - **benchmark**: add no-warnings to process.has bench (Rafael Gonzaga) [#&#8203;55159](https://github.com/nodejs/node/pull/55159) - \[[`4352d9cc31`](https://github.com/nodejs/node/commit/4352d9cc31)] - **benchmark**: create benchmark for typescript (Marco Ippolito) [#&#8203;54904](https://github.com/nodejs/node/pull/54904) - \[[`452bc9b48d`](https://github.com/nodejs/node/commit/452bc9b48d)] - **benchmark**: add webstorage benchmark (jakecastelli) [#&#8203;55040](https://github.com/nodejs/node/pull/55040) - \[[`d4d5ba3a9b`](https://github.com/nodejs/node/commit/d4d5ba3a9b)] - **benchmark**: include ascii to fs/readfile (Rafael Gonzaga) [#&#8203;54988](https://github.com/nodejs/node/pull/54988) - \[[`23b628db65`](https://github.com/nodejs/node/commit/23b628db65)] - **benchmark**: add dotenv benchmark (Aviv Keller) [#&#8203;54278](https://github.com/nodejs/node/pull/54278) - \[[`b1ebb0d8ca`](https://github.com/nodejs/node/commit/b1ebb0d8ca)] - **buffer**: coerce extrema to int in `blob.slice` (Antoine du Hamel) [#&#8203;55141](https://github.com/nodejs/node/pull/55141) - \[[`3a6e72483f`](https://github.com/nodejs/node/commit/3a6e72483f)] - **buffer**: extract Blob's .arrayBuffer() & webidl changes (Matthew Aitken) [#&#8203;53372](https://github.com/nodejs/node/pull/53372) - \[[`d109f1c4ff`](https://github.com/nodejs/node/commit/d109f1c4ff)] - **buffer**: use simdutf convert_latin1\_to_utf8\_safe (Robert Nagy) [#&#8203;54798](https://github.com/nodejs/node/pull/54798) - \[[`77f8a3f9c2`](https://github.com/nodejs/node/commit/77f8a3f9c2)] - **build**: fix notify-on-review-wanted action (Rafael Gonzaga) [#&#8203;55304](https://github.com/nodejs/node/pull/55304) - \[[`0d93b1ed0c`](https://github.com/nodejs/node/commit/0d93b1ed0c)] - **build**: fix not valid json in coverage (jakecastelli) [#&#8203;55179](https://github.com/nodejs/node/pull/55179) - \[[`f89664d890`](https://github.com/nodejs/node/commit/f89664d890)] - **build**: include `.nycrc` in coverage workflows (Wuli Zuo) [#&#8203;55210](https://github.com/nodejs/node/pull/55210) - \[[`d7a9df6417`](https://github.com/nodejs/node/commit/d7a9df6417)] - **build**: notify via slack when review-wanted (Rafael Gonzaga) [#&#8203;55102](https://github.com/nodejs/node/pull/55102) - \[[`68822cc861`](https://github.com/nodejs/node/commit/68822cc861)] - **build**: add more information to Makefile help (Aviv Keller) [#&#8203;53381](https://github.com/nodejs/node/pull/53381) - \[[`f3ca9c669b`](https://github.com/nodejs/node/commit/f3ca9c669b)] - **build**: update ruff and add `lint-py-fix` (Aviv Keller) [#&#8203;54410](https://github.com/nodejs/node/pull/54410) - \[[`d99ae548d7`](https://github.com/nodejs/node/commit/d99ae548d7)] - **build**: remove -v flag to reduce noise (iwuliz) [#&#8203;55025](https://github.com/nodejs/node/pull/55025) - \[[`d3dfbe7ff9`](https://github.com/nodejs/node/commit/d3dfbe7ff9)] - **build**: display free disk space after build in the test-macOS workflow (iwuliz) [#&#8203;55025](https://github.com/nodejs/node/pull/55025) - \[[`3077f6a5b7`](https://github.com/nodejs/node/commit/3077f6a5b7)] - **build**: support up to python 3.13 in android-configure (Aviv Keller) [#&#8203;54529](https://github.com/nodejs/node/pull/54529) - \[[`a929c71281`](https://github.com/nodejs/node/commit/a929c71281)] - **build**: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) [#&#8203;52279](https://github.com/nodejs/node/pull/52279) - \[[`a81f368b99`](https://github.com/nodejs/node/commit/a81f368b99)] - **build**: fix eslint makefile target (Aviv Keller) [#&#8203;54999](https://github.com/nodejs/node/pull/54999) - \[[`c8b7a645ae`](https://github.com/nodejs/node/commit/c8b7a645ae)] - ***Revert*** "**build**: upgrade clang-format to v18" (Chengzhong Wu) [#&#8203;54994](https://github.com/nodejs/node/pull/54994) - \[[`7861ca5dc3`](https://github.com/nodejs/node/commit/7861ca5dc3)] - **build**: print `Running XYZ linter...` for py and yml (Aviv Keller) [#&#8203;54386](https://github.com/nodejs/node/pull/54386) - \[[`aaea3944e5`](https://github.com/nodejs/node/commit/aaea3944e5)] - **build,win**: add winget config to set up env (Hüseyin Açacak) [#&#8203;54729](https://github.com/nodejs/node/pull/54729) - \[[`30d47220bb`](https://github.com/nodejs/node/commit/30d47220bb)] - **build,win**: float VS 17.11 compilation patch (Stefan Stojanovic) [#&#8203;54970](https://github.com/nodejs/node/pull/54970) - \[[`048a1ab350`](https://github.com/nodejs/node/commit/048a1ab350)] - **cli**: ensure --run has proper pwd (Yagiz Nizipli) [#&#8203;54949](https://github.com/nodejs/node/pull/54949) - \[[`a97841ee10`](https://github.com/nodejs/node/commit/a97841ee10)] - **cli**: fix spacing for port range error (Aviv Keller) [#&#8203;54495](https://github.com/nodejs/node/pull/54495) - \[[`1dcc5eedff`](https://github.com/nodejs/node/commit/1dcc5eedff)] - ***Revert*** "**console**: colorize console error and warn" (Aviv Keller) [#&#8203;54677](https://github.com/nodejs/node/pull/54677) - \[[`f0b441230a`](https://github.com/nodejs/node/commit/f0b441230a)] - **(SEMVER-MINOR)** **crypto**: add KeyObject.prototype.toCryptoKey (Filip Skokan) [#&#8203;55262](https://github.com/nodejs/node/pull/55262) - \[[`d3f8c35320`](https://github.com/nodejs/node/commit/d3f8c35320)] - **crypto**: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) [#&#8203;55041](https://github.com/nodejs/node/pull/55041) - \[[`349d2ed07b`](https://github.com/nodejs/node/commit/349d2ed07b)] - **(SEMVER-MINOR)** **crypto**: add Date fields for `validTo` and `validFrom` (Andrew Moon) [#&#8203;54159](https://github.com/nodejs/node/pull/54159) - \[[`34ca36a397`](https://github.com/nodejs/node/commit/34ca36a397)] - **deps**: update undici to 6.20.0 (Node.js GitHub Bot) [#&#8203;55329](https://github.com/nodejs/node/pull/55329) - \[[`f703652e84`](https://github.com/nodejs/node/commit/f703652e84)] - **deps**: upgrade npm to 10.9.0 (npm team) [#&#8203;55255](https://github.com/nodejs/node/pull/55255) - \[[`b533a51856`](https://github.com/nodejs/node/commit/b533a51856)] - **deps**: V8: backport [`0d5d6e7`](https://github.com/nodejs/node/commit/0d5d6e71bbb0) (Yagiz Nizipli) [#&#8203;55115](https://github.com/nodejs/node/pull/55115) - \[[`2f65b3fd07`](https://github.com/nodejs/node/commit/2f65b3fd07)] - **deps**: V8: partially cherry-pick [`8953e49`](https://github.com/nodejs/node/commit/8953e49478) (Ben Noordhuis) [#&#8203;55274](https://github.com/nodejs/node/pull/55274) - \[[`bb9f77d53a`](https://github.com/nodejs/node/commit/bb9f77d53a)] - **deps**: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) [#&#8203;55184](https://github.com/nodejs/node/pull/55184) - \[[`63d51c82fe`](https://github.com/nodejs/node/commit/63d51c82fe)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) [#&#8203;55184](https://github.com/nodejs/node/pull/55184) - \[[`29e6484f3c`](https://github.com/nodejs/node/commit/29e6484f3c)] - **deps**: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) [#&#8203;54336](https://github.com/nodejs/node/pull/54336) - \[[`283927ec88`](https://github.com/nodejs/node/commit/283927ec88)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) [#&#8203;54336](https://github.com/nodejs/node/pull/54336) - \[[`b0636a1e88`](https://github.com/nodejs/node/commit/b0636a1e88)] - **deps**: update timezone to 2024b (Node.js GitHub Bot) [#&#8203;55056](https://github.com/nodejs/node/pull/55056) - \[[`173464d76f`](https://github.com/nodejs/node/commit/173464d76f)] - **deps**: update acorn-walk to 8.3.4 (Node.js GitHub Bot) [#&#8203;54950](https://github.com/nodejs/node/pull/54950) - \[[`0d4536543b`](https://github.com/nodejs/node/commit/0d4536543b)] - **deps**: update corepack to 0.29.4 (Node.js GitHub Bot) [#&#8203;54845](https://github.com/nodejs/node/pull/54845) - \[[`1de5512383`](https://github.com/nodejs/node/commit/1de5512383)] - **deps**: V8: cherry-pick [`217457d`](https://github.com/nodejs/node/commit/217457d0a560) (Michaël Zasso) [#&#8203;54883](https://github.com/nodejs/node/pull/54883) - \[[`1921d7a37c`](https://github.com/nodejs/node/commit/1921d7a37c)] - **doc**: add release key for aduh95 (Antoine du Hamel) [#&#8203;55349](https://github.com/nodejs/node/pull/55349) - \[[`d8e42be1b2`](https://github.com/nodejs/node/commit/d8e42be1b2)] - **doc**: move `ERR_INVALID_PERFORMANCE_MARK` to legacy errors (Antoine du Hamel) [#&#8203;55247](https://github.com/nodejs/node/pull/55247) - \[[`5ea8aa183c`](https://github.com/nodejs/node/commit/5ea8aa183c)] - **doc**: fix Markdown linter (Antoine du Hamel) [#&#8203;55344](https://github.com/nodejs/node/pull/55344) - \[[`873588888d`](https://github.com/nodejs/node/commit/873588888d)] - ***Revert*** "**doc**: update test context.assert" (Antoine du Hamel) [#&#8203;55344](https://github.com/nodejs/node/pull/55344) - \[[`707e7cc702`](https://github.com/nodejs/node/commit/707e7cc702)] - **doc**: add pmarchini to collaborators (Pietro Marchini) [#&#8203;55331](https://github.com/nodejs/node/pull/55331) - \[[`b03272b9a1`](https://github.com/nodejs/node/commit/b03272b9a1)] - **doc**: fix `events.once()` example using `AbortSignal` (Ivo Janssen) [#&#8203;55144](https://github.com/nodejs/node/pull/55144) - \[[`85b765953d`](https://github.com/nodejs/node/commit/85b765953d)] - **doc**: add onboarding details for ambassador program (Marco Ippolito) [#&#8203;55284](https://github.com/nodejs/node/pull/55284) - \[[`5d41b8a8b0`](https://github.com/nodejs/node/commit/5d41b8a8b0)] - **doc**: update `require(ESM)` history and stability status (Antoine du Hamel) [#&#8203;55199](https://github.com/nodejs/node/pull/55199) - \[[`195df659e9`](https://github.com/nodejs/node/commit/195df659e9)] - **doc**: move `ERR_NAPI_TSFN_START/STOP_IDLE_LOOP` to legacy errors (Antoine du Hamel) [#&#8203;55248](https://github.com/nodejs/node/pull/55248) - \[[`8eae0d3f3c`](https://github.com/nodejs/node/commit/8eae0d3f3c)] - **doc**: fix initial default value of autoSelectFamily (Ihor Rohovets) [#&#8203;55245](https://github.com/nodejs/node/pull/55245) - \[[`297cb0da5a`](https://github.com/nodejs/node/commit/297cb0da5a)] - **doc**: tweak onboarding instructions (Michael Dawson) [#&#8203;55212](https://github.com/nodejs/node/pull/55212) - \[[`7ddbfe8c2b`](https://github.com/nodejs/node/commit/7ddbfe8c2b)] - **doc**: update test context.assert (Pietro Marchini) [#&#8203;55186](https://github.com/nodejs/node/pull/55186) - \[[`8a57550d20`](https://github.com/nodejs/node/commit/8a57550d20)] - **doc**: fix unordered error anchors (Antoine du Hamel) [#&#8203;55242](https://github.com/nodejs/node/pull/55242) - \[[`286ea4ed3d`](https://github.com/nodejs/node/commit/286ea4ed3d)] - **doc**: mention addons to experimental permission (Rafael Gonzaga) [#&#8203;55166](https://github.com/nodejs/node/pull/55166) - \[[`7c9ceabf38`](https://github.com/nodejs/node/commit/7c9ceabf38)] - **doc**: use correct dash in stability status (Antoine du Hamel) [#&#8203;55200](https://github.com/nodejs/node/pull/55200) - \[[`781ffd8ba1`](https://github.com/nodejs/node/commit/781ffd8ba1)] - **doc**: fix link in `test/README.md` (Livia Medeiros) [#&#8203;55165](https://github.com/nodejs/node/pull/55165) - \[[`61b9ed3bf2`](https://github.com/nodejs/node/commit/61b9ed3bf2)] - **doc**: add esm examples to node:net (Alfredo González) [#&#8203;55134](https://github.com/nodejs/node/pull/55134) - \[[`bb3499038d`](https://github.com/nodejs/node/commit/bb3499038d)] - **doc**: remove outdated https import reference (Edigleysson Silva (Edy)) [#&#8203;55111](https://github.com/nodejs/node/pull/55111) - \[[`6cc49518c7`](https://github.com/nodejs/node/commit/6cc49518c7)] - **doc**: move the YAML changes element (sendoru) [#&#8203;55112](https://github.com/nodejs/node/pull/55112) - \[[`b12b4a23e4`](https://github.com/nodejs/node/commit/b12b4a23e4)] - **doc**: remove random horizontal separators in `process.md` (Antoine du Hamel) [#&#8203;55149](https://github.com/nodejs/node/pull/55149) - \[[`7186ede388`](https://github.com/nodejs/node/commit/7186ede388)] - **doc**: put --env-file-if-exists=config right under --env-file=config (Edigleysson Silva (Edy)) [#&#8203;55131](https://github.com/nodejs/node/pull/55131) - \[[`8ad0dfff10`](https://github.com/nodejs/node/commit/8ad0dfff10)] - **doc**: fix the require resolve algorithm in `modules.md` (chirsz) [#&#8203;55117](https://github.com/nodejs/node/pull/55117) - \[[`fd40f0873f`](https://github.com/nodejs/node/commit/fd40f0873f)] - **doc**: update style guide (Aviv Keller) [#&#8203;53223](https://github.com/nodejs/node/pull/53223) - \[[`12c9d9780f`](https://github.com/nodejs/node/commit/12c9d9780f)] - **doc**: add missing `:` to `run()`'s `globPatterns` (Aviv Keller) [#&#8203;55135](https://github.com/nodejs/node/pull/55135) - \[[`73b05cfb04`](https://github.com/nodejs/node/commit/73b05cfb04)] - **doc**: correct `cleanup` option in stream.(promises.)finished (René) [#&#8203;55043](https://github.com/nodejs/node/pull/55043) - \[[`bebc95ed58`](https://github.com/nodejs/node/commit/bebc95ed58)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#&#8203;55086](https://github.com/nodejs/node/pull/55086) - \[[`a97c80c6ae`](https://github.com/nodejs/node/commit/a97c80c6ae)] - **doc**: add note about `--expose-internals` (Aviv Keller) [#&#8203;52861](https://github.com/nodejs/node/pull/52861) - \[[`89aeae63bd`](https://github.com/nodejs/node/commit/89aeae63bd)] - **doc**: remove `parseREPLKeyword` from REPL documentation (Aviv Keller) [#&#8203;54749](https://github.com/nodejs/node/pull/54749) - \[[`b3e0490b8b`](https://github.com/nodejs/node/commit/b3e0490b8b)] - **doc**: add missing EventSource docs to globals (Matthew Aitken) [#&#8203;55022](https://github.com/nodejs/node/pull/55022) - \[[`516c775fa5`](https://github.com/nodejs/node/commit/516c775fa5)] - **doc**: cover --experimental-test-module-mocks flag (Jonathan Sharpe) [#&#8203;55021](https://github.com/nodejs/node/pull/55021) - \[[`4244f1a269`](https://github.com/nodejs/node/commit/4244f1a269)] - **doc**: add more details for localStorage and sessionStorage (Batuhan Tomo) [#&#8203;53881](https://github.com/nodejs/node/pull/53881) - \[[`39a728c2e3`](https://github.com/nodejs/node/commit/39a728c2e3)] - **doc**: change backporting guide with updated info (Aviv Keller) [#&#8203;53746](https://github.com/nodejs/node/pull/53746) - \[[`3a5fe95ad7`](https://github.com/nodejs/node/commit/3a5fe95ad7)] - **doc**: add missing definitions to `internal-api.md` (Aviv Keller) [#&#8203;53303](https://github.com/nodejs/node/pull/53303) - \[[`f2d74a26a3`](https://github.com/nodejs/node/commit/f2d74a26a3)] - **doc**: fix history of `process.features` (Antoine du Hamel) [#&#8203;54982](https://github.com/nodejs/node/pull/54982) - \[[`29866ca438`](https://github.com/nodejs/node/commit/29866ca438)] - **doc**: fix typo callsite.lineNumber (Rafael Gonzaga) [#&#8203;54969](https://github.com/nodejs/node/pull/54969) - \[[`c1d73abd29`](https://github.com/nodejs/node/commit/c1d73abd29)] - **doc**: update documentation for externalizing deps (Michael Dawson) [#&#8203;54792](https://github.com/nodejs/node/pull/54792) - \[[`eca9668231`](https://github.com/nodejs/node/commit/eca9668231)] - **doc**: add documentation for process.features (Marco Ippolito) [#&#8203;54897](https://github.com/nodejs/node/pull/54897) - \[[`0fb446e207`](https://github.com/nodejs/node/commit/0fb446e207)] - **esm**: do not interpret `"main"` as a URL (Antoine du Hamel) [#&#8203;55003](https://github.com/nodejs/node/pull/55003) - \[[`be2fe4b249`](https://github.com/nodejs/node/commit/be2fe4b249)] - **events**: allow null/undefined eventInitDict (Matthew Aitken) [#&#8203;54643](https://github.com/nodejs/node/pull/54643) - \[[`cb47e169a0`](https://github.com/nodejs/node/commit/cb47e169a0)] - **events**: return `currentTarget` when dispatching (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642) - \[[`dbfae3fe14`](https://github.com/nodejs/node/commit/dbfae3fe14)] - **fs**: acknowledge `signal` option in `filehandle.createReadStream()` (Livia Medeiros) [#&#8203;55148](https://github.com/nodejs/node/pull/55148) - \[[`1c94725c07`](https://github.com/nodejs/node/commit/1c94725c07)] - **fs**: check subdir correctly in cpSync (Jason Zhang) [#&#8203;55033](https://github.com/nodejs/node/pull/55033) - \[[`79ffefab2a`](https://github.com/nodejs/node/commit/79ffefab2a)] - **fs**: convert to u8 string for filesystem path (Jason Zhang) [#&#8203;54653](https://github.com/nodejs/node/pull/54653) - \[[`914db60159`](https://github.com/nodejs/node/commit/914db60159)] - **(SEMVER-MINOR)** **http2**: expose nghttp2\_option_set_stream_reset_rate_limit as an option (Maël Nison) [#&#8203;54875](https://github.com/nodejs/node/pull/54875) - \[[`08b5e6c794`](https://github.com/nodejs/node/commit/08b5e6c794)] - **lib**: fix module print timing when specifier includes `"` (Antoine du Hamel) [#&#8203;55150](https://github.com/nodejs/node/pull/55150) - \[[`bf7d7aef4b`](https://github.com/nodejs/node/commit/bf7d7aef4b)] - **lib**: fix typos (Nathan Baulch) [#&#8203;55065](https://github.com/nodejs/node/pull/55065) - \[[`d803355d92`](https://github.com/nodejs/node/commit/d803355d92)] - **lib**: prefer optional chaining (Aviv Keller) [#&#8203;55045](https://github.com/nodejs/node/pull/55045) - \[[`d4873bcd6d`](https://github.com/nodejs/node/commit/d4873bcd6d)] - **lib**: remove lib/internal/idna.js (Yagiz Nizipli) [#&#8203;55050](https://github.com/nodejs/node/pull/55050) - \[[`f7c3b03759`](https://github.com/nodejs/node/commit/f7c3b03759)] - **(SEMVER-MINOR)** **lib**: propagate aborted state to dependent signals before firing events (jazelly) [#&#8203;54826](https://github.com/nodejs/node/pull/54826) - \[[`397ae418db`](https://github.com/nodejs/node/commit/397ae418db)] - **lib**: the REPL should survive deletion of Array.prototype methods (Jordan Harband) [#&#8203;31457](https://github.com/nodejs/node/pull/31457) - \[[`566179c9ec`](https://github.com/nodejs/node/commit/566179c9ec)] - **lib, tools**: remove duplicate requires (Aviv Keller) [#&#8203;54987](https://github.com/nodejs/node/pull/54987) - \[[`c9a1bbbef2`](https://github.com/nodejs/node/commit/c9a1bbbef2)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;55300](https://github.com/nodejs/node/pull/55300) - \[[`d7b73bbd1d`](https://github.com/nodejs/node/commit/d7b73bbd1d)] - **meta**: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot\[bot]) [#&#8203;55225](https://github.com/nodejs/node/pull/55225) - \[[`0f4269faa9`](https://github.com/nodejs/node/commit/0f4269faa9)] - **meta**: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot\[bot]) [#&#8203;55224](https://github.com/nodejs/node/pull/55224) - \[[`33be1990d8`](https://github.com/nodejs/node/commit/33be1990d8)] - **meta**: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot\[bot]) [#&#8203;55223](https://github.com/nodejs/node/pull/55223) - \[[`f5b4ae5bf8`](https://github.com/nodejs/node/commit/f5b4ae5bf8)] - **meta**: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot\[bot]) [#&#8203;55219](https://github.com/nodejs/node/pull/55219) - \[[`1985d9016e`](https://github.com/nodejs/node/commit/1985d9016e)] - **meta**: add mailmap entry for abmusse (Abdirahim Musse) [#&#8203;55182](https://github.com/nodejs/node/pull/55182) - \[[`93b215d5e6`](https://github.com/nodejs/node/commit/93b215d5e6)] - **meta**: add more information about nightly releases (Aviv Keller) [#&#8203;55084](https://github.com/nodejs/node/pull/55084) - \[[`aeae5973c3`](https://github.com/nodejs/node/commit/aeae5973c3)] - **meta**: add `linux` to OS labels in collaborator guide (Aviv Keller) [#&#8203;54986](https://github.com/nodejs/node/pull/54986) - \[[`4fb2c3baa8`](https://github.com/nodejs/node/commit/4fb2c3baa8)] - **meta**: remove never-used workflow trigger (Aviv Keller) [#&#8203;54983](https://github.com/nodejs/node/pull/54983) - \[[`e1f36d0da8`](https://github.com/nodejs/node/commit/e1f36d0da8)] - **meta**: remove unneeded ignore rules from ruff (Aviv Keller) [#&#8203;54360](https://github.com/nodejs/node/pull/54360) - \[[`ce0d0c1ec8`](https://github.com/nodejs/node/commit/ce0d0c1ec8)] - **meta**: remove `build-windows.yml` (Aviv Keller) [#&#8203;54662](https://github.com/nodejs/node/pull/54662) - \[[`ca67c97f33`](https://github.com/nodejs/node/commit/ca67c97f33)] - **meta**: add links to alternative issue trackers (Aviv Keller) [#&#8203;54401](https://github.com/nodejs/node/pull/54401) - \[[`6fcac73738`](https://github.com/nodejs/node/commit/6fcac73738)] - **module**: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX (Marco Ippolito) [#&#8203;55316](https://github.com/nodejs/node/pull/55316) - \[[`0412ac8bf3`](https://github.com/nodejs/node/commit/0412ac8bf3)] - **module**: add internal type def for `flushCompileCache` (Jacob Smith) [#&#8203;55226](https://github.com/nodejs/node/pull/55226) - \[[`32261fc98a`](https://github.com/nodejs/node/commit/32261fc98a)] - **(SEMVER-MINOR)** **module**: support loading entrypoint as url (RedYetiDev) [#&#8203;54933](https://github.com/nodejs/node/pull/54933) - \[[`111261e245`](https://github.com/nodejs/node/commit/111261e245)] - **(SEMVER-MINOR)** **module**: implement the "module-sync" exports condition (Joyee Cheung) [#&#8203;54648](https://github.com/nodejs/node/pull/54648) - \[[`b6fc9adf5b`](https://github.com/nodejs/node/commit/b6fc9adf5b)] - **module**: remove duplicated import (Aviv Keller) [#&#8203;54942](https://github.com/nodejs/node/pull/54942) - \[[`06957ff355`](https://github.com/nodejs/node/commit/06957ff355)] - **(SEMVER-MINOR)** **module**: implement flushCompileCache() (Joyee Cheung) [#&#8203;54971](https://github.com/nodejs/node/pull/54971) - \[[`2dcf70c347`](https://github.com/nodejs/node/commit/2dcf70c347)] - **(SEMVER-MINOR)** **module**: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) [#&#8203;54971](https://github.com/nodejs/node/pull/54971) - \[[`f9b19d7c44`](https://github.com/nodejs/node/commit/f9b19d7c44)] - **(SEMVER-MINOR)** **module**: write compile cache to temporary file and then rename it (Joyee Cheung) [#&#8203;54971](https://github.com/nodejs/node/pull/54971) - \[[`1d169764db`](https://github.com/nodejs/node/commit/1d169764db)] - **module**: report unfinished TLA in ambiguous modules (Antoine du Hamel) [#&#8203;54980](https://github.com/nodejs/node/pull/54980) - \[[`c89c93496d`](https://github.com/nodejs/node/commit/c89c93496d)] - **module**: refator ESM loader for adding future synchronous hooks (Joyee Cheung) [#&#8203;54769](https://github.com/nodejs/node/pull/54769) - \[[`108cef22e6`](https://github.com/nodejs/node/commit/108cef22e6)] - **module**: remove bogus assertion in CJS entrypoint handling with --import (Joyee Cheung) [#&#8203;54592](https://github.com/nodejs/node/pull/54592) - \[[`67ecb10c78`](https://github.com/nodejs/node/commit/67ecb10c78)] - **module**: fix discrepancy between .ts and .js (Marco Ippolito) [#&#8203;54461](https://github.com/nodejs/node/pull/54461) - \[[`3300d5990f`](https://github.com/nodejs/node/commit/3300d5990f)] - **os**: use const with early return for path (Trivikram Kamat) [#&#8203;54959](https://github.com/nodejs/node/pull/54959) - \[[`90cce6ec7c`](https://github.com/nodejs/node/commit/90cce6ec7c)] - **path**: remove repetitive conditional operator in `posix.resolve` (Wiyeong Seo) [#&#8203;54835](https://github.com/nodejs/node/pull/54835) - \[[`cbfc980f89`](https://github.com/nodejs/node/commit/cbfc980f89)] - **perf_hooks**: add missing type argument to getEntriesByName (Luke Taher) [#&#8203;54767](https://github.com/nodejs/node/pull/54767) - \[[`e95163b170`](https://github.com/nodejs/node/commit/e95163b170)] - **(SEMVER-MINOR)** **process**: add process.features.require_module (Joyee Cheung) [#&#8203;55241](https://github.com/nodejs/node/pull/55241) - \[[`0655d3a384`](https://github.com/nodejs/node/commit/0655d3a384)] - **process**: fix `process.features.typescript` when Amaro is unavailable (Antoine du Hamel) [#&#8203;55323](https://github.com/nodejs/node/pull/55323) - \[[`4050f68e5d`](https://github.com/nodejs/node/commit/4050f68e5d)] - **(SEMVER-MINOR)** **process**: add `process.features.typescript` (Aviv Keller) [#&#8203;54295](https://github.com/nodejs/node/pull/54295) - \[[`75073c50ae`](https://github.com/nodejs/node/commit/75073c50ae)] - **quic**: start adding in the internal quic js api (James M Snell) [#&#8203;53256](https://github.com/nodejs/node/pull/53256) - \[[`538b1eb5b0`](https://github.com/nodejs/node/commit/538b1eb5b0)] - **repl**: catch `\v` and `\r` in new-line detection (Aviv Keller) [#&#8203;54512](https://github.com/nodejs/node/pull/54512) - \[[`57a9d3f15e`](https://github.com/nodejs/node/commit/57a9d3f15e)] - **sqlite**: disable DQS misfeature by default (Tobias Nießen) [#&#8203;55297](https://github.com/nodejs/node/pull/55297) - \[[`c126543374`](https://github.com/nodejs/node/commit/c126543374)] - **sqlite**: make sourceSQL and expandedSQL string-valued properties (Tobias Nießen) [#&#8203;54721](https://github.com/nodejs/node/pull/54721) - \[[`67f5f46c56`](https://github.com/nodejs/node/commit/67f5f46c56)] - **sqlite**: enable foreign key constraints by default (Tobias Nießen) [#&#8203;54777](https://github.com/nodejs/node/pull/54777) - \[[`09999491bf`](https://github.com/nodejs/node/commit/09999491bf)] - **src**: handle errors correctly in webstorage (Michaël Zasso) [#&#8203;54544](https://github.com/nodejs/node/pull/54544) - \[[`295c17c4ea`](https://github.com/nodejs/node/commit/295c17c4ea)] - **src**: make minor tweaks to quic c++ for c++20 (James M Snell) [#&#8203;53256](https://github.com/nodejs/node/pull/53256) - \[[`b1d47d06f9`](https://github.com/nodejs/node/commit/b1d47d06f9)] - **src**: apply getCallSite optimization (RafaelGSS) [#&#8203;55174](https://github.com/nodejs/node/pull/55174) - \[[`d6bcc44829`](https://github.com/nodejs/node/commit/d6bcc44829)] - **src**: modernize likely/unlikely hints (Yagiz Nizipli) [#&#8203;55155](https://github.com/nodejs/node/pull/55155) - \[[`1af5ad61ca`](https://github.com/nodejs/node/commit/1af5ad61ca)] - **src**: fixup Error.stackTraceLimit during snapshot building (Joyee Cheung) [#&#8203;55121](https://github.com/nodejs/node/pull/55121) - \[[`b229083235`](https://github.com/nodejs/node/commit/b229083235)] - **src**: parse --stack-trace-limit and use it in --trace-\* flags (Joyee Cheung) [#&#8203;55121](https://github.com/nodejs/node/pull/55121) - \[[`942ad54e08`](https://github.com/nodejs/node/commit/942ad54e08)] - **src**: move more key handling to ncrypto (James M Snell) [#&#8203;55108](https://github.com/nodejs/node/pull/55108) - \[[`0bb5584288`](https://github.com/nodejs/node/commit/0bb5584288)] - **src**: add receiver to fast api callback methods (Carlos Espa) [#&#8203;54408](https://github.com/nodejs/node/pull/54408) - \[[`706e9611f0`](https://github.com/nodejs/node/commit/706e9611f0)] - **src**: fix typos (Nathan Baulch) [#&#8203;55064](https://github.com/nodejs/node/pull/55064) - \[[`a96d5d1bcc`](https://github.com/nodejs/node/commit/a96d5d1bcc)] - **src**: move more stuff over to use Maybe\<void> (James M Snell) [#&#8203;54831](https://github.com/nodejs/node/pull/54831) - \[[`ee0a98b5a2`](https://github.com/nodejs/node/commit/ee0a98b5a2)] - **src**: decode native error messages as UTF-8 (Joyee Cheung) [#&#8203;55024](https://github.com/nodejs/node/pull/55024) - \[[`1fc8edecf8`](https://github.com/nodejs/node/commit/1fc8edecf8)] - **src**: update clang-tidy and focus on modernization (Yagiz Nizipli) [#&#8203;53757](https://github.com/nodejs/node/pull/53757) - \[[`3a1485a1a3`](https://github.com/nodejs/node/commit/3a1485a1a3)] - **src**: move evp stuff to ncrypto (James M Snell) [#&#8203;54911](https://github.com/nodejs/node/pull/54911) - \[[`9ae80e1e4d`](https://github.com/nodejs/node/commit/9ae80e1e4d)] - **src**: revert filesystem::path changes (Yagiz Nizipli) [#&#8203;55015](https://github.com/nodejs/node/pull/55015) - \[[`465d05018a`](https://github.com/nodejs/node/commit/465d05018a)] - **src**: mark node --run as stable (Yagiz Nizipli) [#&#8203;53763](https://github.com/nodejs/node/pull/53763) - \[[`ef546c872c`](https://github.com/nodejs/node/commit/ef546c872c)] - **src**: cleanup per env handles directly without a list (Chengzhong Wu) [#&#8203;54993](https://github.com/nodejs/node/pull/54993) - \[[`0876f78411`](https://github.com/nodejs/node/commit/0876f78411)] - **src**: add unistd.h import if node posix credentials is defined (Jonas) [#&#8203;54528](https://github.com/nodejs/node/pull/54528) - \[[`284db53866`](https://github.com/nodejs/node/commit/284db53866)] - **src**: remove duplicate code setting AF_INET (He Yang) [#&#8203;54939](https://github.com/nodejs/node/pull/54939) - \[[`f332c4c4fc`](https://github.com/nodejs/node/commit/f332c4c4fc)] - **src**: use `Maybe<void>` where bool isn't needed (Michaël Zasso) [#&#8203;54575](https://github.com/nodejs/node/pull/54575) - \[[`c7ed2ff920`](https://github.com/nodejs/node/commit/c7ed2ff920)] - **stream**: handle undefined chunks correctly in decode stream (devstone) [#&#8203;55153](https://github.com/nodejs/node/pull/55153) - \[[`a9675a0cbc`](https://github.com/nodejs/node/commit/a9675a0cbc)] - **stream**: treat null asyncIterator as undefined (Jason Zhang) [#&#8203;55119](https://github.com/nodejs/node/pull/55119) - \[[`bf69ae1406`](https://github.com/nodejs/node/commit/bf69ae1406)] - **stream**: set stream prototype to closest transferable superclass (Jason Zhang) [#&#8203;55067](https://github.com/nodejs/node/pull/55067) - \[[`3273707a3a`](https://github.com/nodejs/node/commit/3273707a3a)] - **test**: fix tests when Amaro is unavailable (Richard Lau) [#&#8203;55320](https://github.com/nodejs/node/pull/55320) - \[[`ff3cc3b2ab`](https://github.com/nodejs/node/commit/ff3cc3b2ab)] - **test**: use more informative errors in `test-runner-cli` (Antoine du Hamel) [#&#8203;55321](https://github.com/nodejs/node/pull/55321) - \[[`17d2f9de6d`](https://github.com/nodejs/node/commit/17d2f9de6d)] - **test**: make `test-loaders-workers-spawned` less flaky (Antoine du Hamel) [#&#8203;55172](https://github.com/nodejs/node/pull/55172) - \[[`1b1104e69b`](https://github.com/nodejs/node/commit/1b1104e69b)] - **test**: add resource to internal module stat test (RafaelGSS) [#&#8203;55157](https://github.com/nodejs/node/pull/55157) - \[[`b36f8c2146`](https://github.com/nodejs/node/commit/b36f8c2146)] - **test**: update multiple assert tests to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585) - \[[`1b30f7fdd6`](https://github.com/nodejs/node/commit/1b30f7fdd6)] - **test**: move coverage source map tests to new file (Aviv Keller) [#&#8203;55123](https://github.com/nodejs/node/pull/55123) - \[[`ce67e7b5b3`](https://github.com/nodejs/node/commit/ce67e7b5b3)] - **test**: adding more tests for strip-types (Kevin Toshihiro Uehara) [#&#8203;54929](https://github.com/nodejs/node/pull/54929) - \[[`a57c8ba3ef`](https://github.com/nodejs/node/commit/a57c8ba3ef)] - **test**: update wpt test for encoding (devstone) [#&#8203;55151](https://github.com/nodejs/node/pull/55151) - \[[`65fbe94d45`](https://github.com/nodejs/node/commit/65fbe94d45)] - **test**: add `escapePOSIXShell` util (Antoine du Hamel) [#&#8203;55125](https://github.com/nodejs/node/pull/55125) - \[[`cc8838252e`](https://github.com/nodejs/node/commit/cc8838252e)] - **test**: remove unnecessary `await` in test-watch-mode (Wuli) [#&#8203;55142](https://github.com/nodejs/node/pull/55142) - \[[`9aeba48bf0`](https://github.com/nodejs/node/commit/9aeba48bf0)] - **test**: fix typos (Nathan Baulch) [#&#8203;55063](https://github.com/nodejs/node/pull/55063) - \[[`0999b5e493`](https://github.com/nodejs/node/commit/0999b5e493)] - **test**: remove duplicated test descriptions (Christos Koutsiaris) [#&#8203;54140](https://github.com/nodejs/node/pull/54140) - \[[`e99d4a4cb8`](https://github.com/nodejs/node/commit/e99d4a4cb8)] - **test**: deflake test/pummel/test-timers.js (jakecastelli) [#&#8203;55098](https://github.com/nodejs/node/pull/55098) - \[[`fb8470afd7`](https://github.com/nodejs/node/commit/fb8470afd7)] - **test**: deflake test-http-remove-header-stays-removed (Luigi Pinca) [#&#8203;55004](https://github.com/nodejs/node/pull/55004) - \[[`e879c5edf2`](https://github.com/nodejs/node/commit/e879c5edf2)] - **test**: fix test-tls-junk-closes-server (Michael Dawson) [#&#8203;55089](https://github.com/nodejs/node/pull/55089) - \[[`b885f0583c`](https://github.com/nodejs/node/commit/b885f0583c)] - **test**: fix more tests that fail when path contains a space (Antoine du Hamel) [#&#8203;55088](https://github.com/nodejs/node/pull/55088) - \[[`85f1187942`](https://github.com/nodejs/node/commit/85f1187942)] - **test**: fix `assertSnapshot` when path contains a quote (Antoine du Hamel) [#&#8203;55087](https://github.com/nodejs/node/pull/55087) - \[[`fdae57f1e1`](https://github.com/nodejs/node/commit/fdae57f1e1)] - **test**: fix some tests when path contains `%` (Antoine du Hamel) [#&#8203;55082](https://github.com/nodejs/node/pull/55082) - \[[`36c9ea8912`](https://github.com/nodejs/node/commit/36c9ea8912)] - ***Revert*** "**test**: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) [#&#8203;55079](https://github.com/nodejs/node/pull/55079) - \[[`80da5993cc`](https://github.com/nodejs/node/commit/80da5993cc)] - **test**: remove interval and give more time to unsync (Pietro Marchini) [#&#8203;55006](https://github.com/nodejs/node/pull/55006) - \[[`93c23e74b3`](https://github.com/nodejs/node/commit/93c23e74b3)] - **test**: deflake test-inspector-strip-types (Luigi Pinca) [#&#8203;55058](https://github.com/nodejs/node/pull/55058) - \[[`43bbca2c08`](https://github.com/nodejs/node/commit/43bbca2c08)] - **test**: make `test-runner-assert` more robust (Aviv Keller) [#&#8203;55036](https://github.com/nodejs/node/pull/55036) - \[[`268f1ec08f`](https://github.com/nodejs/node/commit/268f1ec08f)] - **test**: update tls test to support OpenSSL32 (Michael Dawson) [#&#8203;55030](https://github.com/nodejs/node/pull/55030) - \[[`a50dd21423`](https://github.com/nodejs/node/commit/a50dd21423)] - **test**: do not assume `process.execPath` contains no spaces (Antoine du Hamel) [#&#8203;55028](https://github.com/nodejs/node/pull/55028) - \[[`c56e324cb8`](https://github.com/nodejs/node/commit/c56e324cb8)] - **test**: fix `test-vm-context-dont-contextify` when path contains a space (Antoine du Hamel) [#&#8203;55026](https://github.com/nodejs/node/pull/55026) - \[[`6d42e44264`](https://github.com/nodejs/node/commit/6d42e44264)] - **test**: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) [#&#8203;55016](https://github.com/nodejs/node/pull/55016) - \[[`22e601a76c`](https://github.com/nodejs/node/commit/22e601a76c)] - **test**: add `util.stripVTControlCharacters` test (RedYetiDev) [#&#8203;54865](https://github.com/nodejs/node/pull/54865) - \[[`a6796696d7`](https://github.com/nodejs/node/commit/a6796696d7)] - **test**: improve coverage for timer promises schedular (Aviv Keller) [#&#8203;53370](https://github.com/nodejs/node/pull/53370) - \[[`9506f77b3e`](https://github.com/nodejs/node/commit/9506f77b3e)] - **test**: remove `getCallSite` from common (RedYetiDev) [#&#8203;54947](https://github.com/nodejs/node/pull/54947) - \[[`20d3a806ea`](https://github.com/nodejs/node/commit/20d3a806ea)] - **test**: remove unused common utilities (RedYetiDev) [#&#8203;54825](https://github.com/nodejs/node/pull/54825) - \[[`341b6d9b94`](https://github.com/nodejs/node/commit/341b6d9b94)] - **test**: deflake test-http-header-overflow (Luigi Pinca) [#&#8203;54978](https://github.com/nodejs/node/pull/54978) - \[[`1e53c10853`](https://github.com/nodejs/node/commit/1e53c10853)] - **test**: fix `soucre` to `source` (Aviv Keller) [#&#8203;55038](https://github.com/nodejs/node/pull/55038) - \[[`6843ca7e0d`](https://github.com/nodejs/node/commit/6843ca7e0d)] - **test**: add asserts to validate test assumptions (Michael Dawson) [#&#8203;54997](https://github.com/nodejs/node/pull/54997) - \[[`98ff615c5e`](https://github.com/nodejs/node/commit/98ff615c5e)] - **test**: add runner watch mode isolation tests (Pietro Marchini) [#&#8203;54888](https://github.com/nodejs/node/pull/54888) - \[[`327a8f7b59`](https://github.com/nodejs/node/commit/327a8f7b59)] - **test**: fix invalid wasm test (Aviv Keller) [#&#8203;54935](https://github.com/nodejs/node/pull/54935) - \[[`5b012f544c`](https://github.com/nodejs/node/commit/5b012f544c)] - **test**: move test-http-max-sockets to parallel (Luigi Pinca) [#&#8203;54977](https://github.com/nodejs/node/pull/54977) - \[[`22b413910e`](https://github.com/nodejs/node/commit/22b413910e)] - **test**: remove test-http-max-sockets flaky designation (Luigi Pinca) [#&#8203;54976](https://github.com/nodejs/node/pull/54976) - \[[`62b8640550`](https://github.com/nodejs/node/commit/62b8640550)] - **test**: refactor test-whatwg-webstreams-encoding to be shorter (David Dong) [#&#8203;54569](https://github.com/nodejs/node/pull/54569) - \[[`1f11d68173`](https://github.com/nodejs/node/commit/1f11d68173)] - **test**: adjust key sizes to support OpenSSL32 (Michael Dawson) [#&#8203;54972](https://github.com/nodejs/node/pull/54972) - \[[`90a87ca8f7`](https://github.com/nodejs/node/commit/90a87ca8f7)] - **test**: update test to support OpenSSL32 (Michael Dawson) [#&#8203;54968](https://github.com/nodejs/node/pull/54968) - \[[`9b7834536a`](https://github.com/nodejs/node/commit/9b7834536a)] - **test**: update DOM events web platform tests (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642) - \[[`1c001550a2`](https://github.com/nodejs/node/commit/1c001550a2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;55029](https://github.com/nodejs/node/pull/55029) - \[[`800f7c44ed`](https://github.com/nodejs/node/commit/800f7c44ed)] - **test_runner**: throw on invalid source map (Aviv Keller) [#&#8203;55055](https://github.com/nodejs/node/pull/55055) - \[[`0f7e3f017f`](https://github.com/nodejs/node/commit/0f7e3f017f)] - **test_runner**: assert entry is a valid object (Edigleysson Silva (Edy)) [#&#8203;55231](https://github.com/nodejs/node/pull/55231) - \[[`c308862d2e`](https://github.com/nodejs/node/commit/c308862d2e)] - **test_runner**: avoid spread operator on arrays (Antoine du Hamel) [#&#8203;55143](https://github.com/nodejs/node/pull/55143) - \[[`12401972b7`](https://github.com/nodejs/node/commit/12401972b7)] - **test_runner**: support typescript files in default glob (Aviv Keller) [#&#8203;55081](https://github.com/nodejs/node/pull/55081) - \[[`19cfa3140f`](https://github.com/nodejs/node/commit/19cfa3140f)] - **test_runner**: close and flush destinations on forced exit (Colin Ihrig) [#&#8203;55099](https://github.com/nodejs/node/pull/55099) - \[[`86f7cb802d`](https://github.com/nodejs/node/commit/86f7cb802d)] - **(SEMVER-MINOR)** **test_runner**: support custom arguments in `run()` (Aviv Keller) [#&#8203;55126](https://github.com/nodejs/node/pull/55126) - \[[`7eaeba499a`](https://github.com/nodejs/node/commit/7eaeba499a)] - **test_runner**: fix mocking modules with quote in their URL (Antoine du Hamel) [#&#8203;55083](https://github.com/nodejs/node/pull/55083) - \[[`8818c6c88a`](https://github.com/nodejs/node/commit/8818c6c88a)] - **test_runner**: report error on missing sourcemap source (Aviv Keller) [#&#8203;55037](https://github.com/nodejs/node/pull/55037) - \[[`b62f2f8259`](https://github.com/nodejs/node/commit/b62f2f8259)] - **(SEMVER-MINOR)** **test_runner**: add 'test:summary' event (Colin Ihrig) [#&#8203;54851](https://github.com/nodejs/node/pull/54851) - \[[`449dad0db0`](https://github.com/nodejs/node/commit/449dad0db0)] - **test_runner**: use `test:` symbol on second print of parent test (RedYetiDev) [#&#8203;54956](https://github.com/nodejs/node/pull/54956) - \[[`4b962a78c7`](https://github.com/nodejs/node/commit/4b962a78c7)] - **test_runner**: replace ansi clear with ansi reset (Pietro Marchini) [#&#8203;55013](https://github.com/nodejs/node/pull/55013) - \[[`d7c708aec5`](https://github.com/nodejs/node/commit/d7c708aec5)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage via run() (Chemi Atlow) [#&#8203;53937](https://github.com/nodejs/node/pull/53937) - \[[`93c6c90219`](https://github.com/nodejs/node/commit/93c6c90219)] - **test_runner**: support typescript module mocking (Marco Ippolito) [#&#8203;54878](https://github.com/nodejs/node/pull/54878) - \[[`1daec9a63f`](https://github.com/nodejs/node/commit/1daec9a63f)] - **test_runner**: avoid coverage report partial file names (Pietro Marchini) [#&#8203;54379](https://github.com/nodejs/node/pull/54379) - \[[`d51e5a8667`](https://github.com/nodejs/node/commit/d51e5a8667)] - **tools**: enforce errors to not be documented in legacy section (Aviv Keller) [#&#8203;55218](https://github.com/nodejs/node/pull/55218) - \[[`6a7d201b80`](https://github.com/nodejs/node/commit/6a7d201b80)] - **tools**: update gyp-next to 0.18.2 (Node.js GitHub Bot) [#&#8203;55160](https://github.com/nodejs/node/pull/55160) - \[[`c988e7e2e5`](https://github.com/nodejs/node/commit/c988e7e2e5)] - **tools**: bump the eslint group in /tools/eslint with 4 updates (dependabot\[bot]) [#&#8203;55227](https://github.com/nodejs/node/pull/55227) - \[[`7982d3d4ed`](https://github.com/nodejs/node/commit/7982d3d4ed)] - **tools**: only check teams on the default branch (Antoine du Hamel) [#&#8203;55124](https://github.com/nodejs/node/pull/55124) - \[[`60a35eddb0`](https://github.com/nodejs/node/commit/60a35eddb0)] - **tools**: make `choco install` script more readable (Aviv Keller) [#&#8203;54002](https://github.com/nodejs/node/pull/54002) - \[[`b7b1fa6dd3`](https://github.com/nodejs/node/commit/b7b1fa6dd3)] - **tools**: bump Rollup from 4.18.1 to 4.22.4 for `lint-md` (dependabot\[bot]) [#&#8203;55093](https://github.com/nodejs/node/pull/55093) - \[[`3304bf387f`](https://github.com/nodejs/node/commit/3304bf387f)] - **tools**: unlock versions of irrelevant DB deps (Michaël Zasso) [#&#8203;55042](https://github.com/nodejs/node/pull/55042) - \[[`65c376a819`](https://github.com/nodejs/node/commit/65c376a819)] - **tools**: remove redudant code from eslint require rule (Aviv Keller) [#&#8203;54892](https://github.com/nodejs/node/pull/54892) - \[[`295f684b69`](https://github.com/nodejs/node/commit/295f684b69)] - **tools**: update error message for ICU in license-builder (Aviv Keller) [#&#8203;54742](https://github.com/nodejs/node/pull/54742) - \[[`ce4b6e403d`](https://github.com/nodejs/node/commit/ce4b6e403d)] - **tools**: refactor js2c.cc to use c++20 (Yagiz Nizipli) [#&#8203;54849](https://github.com/nodejs/node/pull/54849) - \[[`31f0ef6ea3`](https://github.com/nodejs/node/commit/31f0ef6ea3)] - **tools**: bump the eslint group in /tools/eslint with 7 updates (dependabot\[bot]) [#&#8203;54821](https://github.com/nodejs/node/pull/54821) - \[[`676d0a09a0`](https://github.com/nodejs/node/commit/676d0a09a0)] - **tools**: update github_reporter to 1.7.1 (Node.js GitHub Bot) [#&#8203;54951](https://github.com/nodejs/node/pull/54951) - \[[`0f01f38aea`](https://github.com/nodejs/node/commit/0f01f38aea)] - **tty**: fix links for terminal colors (Aviv Keller) [#&#8203;54596](https://github.com/nodejs/node/pull/54596) - \[[`d264639f5f`](https://github.com/nodejs/node/commit/d264639f5f)] - **util**: update ansi regex (Aviv Keller) [#&#8203;54865](https://github.com/nodejs/node/pull/54865) - \[[`ea7aaf37bf`](https://github.com/nodejs/node/commit/ea7aaf37bf)] - **v8**: out of bounds copy (Robert Nagy) [#&#8203;55261](https://github.com/nodejs/node/pull/55261) - \[[`fa695facf5`](https://github.com/nodejs/node/commit/fa695facf5)] - **watch**: preserve output when gracefully restarted (Théo LUDWIG) [#&#8203;54323](https://github.com/nodejs/node/pull/54323) - \[[`5fda4a1498`](https://github.com/nodejs/node/commit/5fda4a1498)] - **(SEMVER-MINOR)** **worker**: add `markAsUncloneable` api (Jason Zhang) [#&#8203;55234](https://github.com/nodejs/node/pull/55234) - \[[`d65334c454`](https://github.com/nodejs/node/commit/d65334c454)] - **worker**: throw InvalidStateError in postMessage after close (devstone) [#&#8203;55206](https://github.com/nodejs/node/pull/55206) - \[[`fc90d7c63a`](https://github.com/nodejs/node/commit/fc90d7c63a)] - **worker**: handle `--input-type` more consistently (Antoine du Hamel) [#&#8203;54979](https://github.com/nodejs/node/pull/54979) - \[[`a9fa2da870`](https://github.com/nodejs/node/commit/a9fa2da870)] - **zlib**: throw brotli initialization error from c++ (Yagiz Nizipli) [#&#8203;54698](https://github.com/nodejs/node/pull/54698) - \[[`9abd1c7288`](https://github.com/nodejs/node/commit/9abd1c7288)] - **zlib**: remove prototype primordials usage (Yagiz Nizipli) [#&#8203;54695](https://github.com/nodejs/node/pull/54695) ### [`v22.9.0`](https://github.com/nodejs/node/releases/tag/v22.9.0): 2024-09-17, Version 22.9.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v22.8.0...v22.9.0) ##### New API to retrieve execution Stack Trace A new API `getCallSite` has been introduced to the `util` module. This API allows users to retrieve the stacktrace of the current execution. Example: ```js const util = require('node:util'); function exampleFunction() { const callSites = util.getCallSite(); console.log('Call Sites:'); callSites.forEach((callSite, index) => { console.log(`CallSite ${index + 1}:`); console.log(`Function Name: ${callSite.functionName}`); console.log(`Script Name: ${callSite.scriptName}`); console.log(`Line Number: ${callSite.lineNumber}`); console.log(`Column Number: ${callSite.column}`); }); // CallSite 1: // Function Name: exampleFunction // Script Name: /home/example.js // Line Number: 5 // Column Number: 26 // CallSite 2: // Function Name: anotherFunction // Script Name: /home/example.js // Line Number: 22 // Column Number: 3 // ... } // A function to simulate another stack layer function anotherFunction() { exampleFunction(); } anotherFunction(); ``` Thanks to Rafael Gonzaga for making this work on [#&#8203;54380](https://github.com/nodejs/node/pull/54380). ##### Disable V8 Maglev We have seen several crashes/unexpected JS behaviors with maglev on v22 (which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for users to work around them or even figure out where the bugs are coming from. Some bugs are fixed in the upstream while some others probably remain. As v22 will get stuck with V8 v12.4 as LTS, it will be increasingly difficult to backport patches for them even if the bugs are fixed. So disable it by default on v22 to reduce the churn and troubles for users. Thanks to Joyee Cheung for making this work on [#&#8203;54384](https://github.com/nodejs/node/pull/54384) ##### Exposes X509\_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext This releases introduces a new option to the API `tls.createSecureContext`. For now on users can use `tls.createSecureContext({ allowPartialTrustChain: true })` to treat intermediate (non-self-signed) certificates in the trust CA certificate list as trusted. Thanks to Anna Henningsen for making this work on [#&#8203;54790](https://github.com/nodejs/node/pull/54790) ##### Other Notable Changes - \[[`5c9599af5a`](https://github.com/nodejs/node/commit/5c9599af5a)] - **src**: create handle scope in FastInternalModuleStat (Joyee Cheung) [#&#8203;54384](https://github.com/nodejs/node/pull/54384) - \[[`e2307d87e8`](https://github.com/nodejs/node/commit/e2307d87e8)] - **(SEMVER-MINOR)** **stream**: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) [#&#8203;54032](https://github.com/nodejs/node/pull/54032) ##### Deprecations - \[[`8433032948`](https://github.com/nodejs/node/commit/8433032948)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842) - \[[`8c4c85cf31`](https://github.com/nodejs/node/commit/8c4c85cf31)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708) ##### Commits - \[[`027b0ffe84`](https://github.com/nodejs/node/commit/027b0ffe84)] - **async_hooks**: add an InactiveAsyncContextFrame class (Bryan English) [#&#8203;54510](https://github.com/nodejs/node/pull/54510) - \[[`022767028e`](https://github.com/nodejs/node/commit/022767028e)] - **benchmark**: --no-warnings to avoid DEP/ExpWarn log (Rafael Gonzaga) [#&#8203;54928](https://github.com/nodejs/node/pull/54928) - \[[`af1988c147`](https://github.com/nodejs/node/commit/af1988c147)] - **benchmark**: add buffer.isAscii benchmark (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740) - \[[`40c6849964`](https://github.com/nodejs/node/commit/40c6849964)] - **benchmark**: add buffer.isUtf8 bench (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740) - \[[`237d7dfbde`](https://github.com/nodejs/node/commit/237d7dfbde)] - **benchmark**: add access async version to bench (Rafael Gonzaga) [#&#8203;54747](https://github.com/nodejs/node/pull/54747) - \[[`ebe91db827`](https://github.com/nodejs/node/commit/ebe91db827)] - **benchmark**: enhance dc publish benchmark (Rafael Gonzaga) [#&#8203;54745](https://github.com/nodejs/node/pull/54745) - \[[`060164485b`](https://github.com/nodejs/node/commit/060164485b)] - **benchmark**: add match and doesNotMatch bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`2844180c7e`](https://github.com/nodejs/node/commit/2844180c7e)] - **benchmark**: add rejects and doesNotReject bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`af7689ed02`](https://github.com/nodejs/node/commit/af7689ed02)] - **benchmark**: add throws and doesNotThrow bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`456a1fe222`](https://github.com/nodejs/node/commit/456a1fe222)] - **benchmark**: add strictEqual and notStrictEqual bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`721c63c858`](https://github.com/nodejs/node/commit/721c63c858)] - **benchmark**: adds groups to better separate benchmarks (Giovanni Bucci) [#&#8203;54393](https://github.com/nodejs/node/pull/54393) - \[[`68e45b406e`](https://github.com/nodejs/node/commit/68e45b406e)] - **benchmark,doc**: add CPU scaling governor to perf (Rafael Gonzaga) [#&#8203;54723](https://github.com/nodejs/node/pull/54723) - \[[`d19efd7a50`](https://github.com/nodejs/node/commit/d19efd7a50)] - **benchmark,doc**: mention bar.R to the list of scripts (Rafael Gonzaga) [#&#8203;54722](https://github.com/nodejs/node/pull/54722) - \[[`1fb67afa2f`](https://github.com/nodejs/node/commit/1fb67afa2f)] - **buffer**: fix out of range for toString (Jason Zhang) [#&#8203;54553](https://github.com/nodejs/node/pull/54553) - \[[`85b5ed5d41`](https://github.com/nodejs/node/commit/85b5ed5d41)] - **buffer**: re-enable Fast API for Buffer.write (Robert Nagy) [#&#8203;54526](https://github.com/nodejs/node/pull/54526) - \[[`9a075279ec`](https://github.com/nodejs/node/commit/9a075279ec)] - **build**: upgrade clang-format to v18 (Aviv Keller) [#&#8203;53957](https://github.com/nodejs/node/pull/53957) - \[[`69ec9d8d2b`](https://github.com/nodejs/node/commit/69ec9d8d2b)] - **build**: fix conflicting V8 object print flags (Daeyeon Jeong) [#&#8203;54785](https://github.com/nodejs/node/pull/54785) - \[[`948bba396c`](https://github.com/nodejs/node/commit/948bba396c)] - **build**: do not build with code cache for core coverage collection (Joyee Cheung) [#&#8203;54633](https://github.com/nodejs/node/pull/54633) - \[[`6200cf4fb6`](https://github.com/nodejs/node/commit/6200cf4fb6)] - **build**: don't store eslint locally (Aviv Keller) [#&#8203;54231](https://github.com/nodejs/node/pull/54231) - \[[`3b5ed97fe9`](https://github.com/nodejs/node/commit/3b5ed97fe9)] - **build**: turn off `-Wrestrict` (Richard Lau) [#&#8203;54737](https://github.com/nodejs/node/pull/54737) - \[[`e38e305a35`](https://github.com/nodejs/node/commit/e38e305a35)] - **build,win**: enable clang-cl compilation (Stefan Stojanovic) [#&#8203;54655](https://github.com/nodejs/node/pull/54655) - \[[`5bba0781b0`](https://github.com/nodejs/node/commit/5bba0781b0)] - **crypto**: reject dh,x25519,x448 in {Sign,Verify}Final (Huáng Jùnliàng) [#&#8203;53774](https://github.com/nodejs/node/pull/53774) - \[[`3981853c00`](https://github.com/nodejs/node/commit/3981853c00)] - **crypto**: return a clearer error when loading an unsupported pkcs12 (Tim Perry) [#&#8203;54485](https://github.com/nodejs/node/pull/54485) - \[[`02ac5376b9`](https://github.com/nodejs/node/commit/02ac5376b9)] - **crypto**: remove unused `kHashTypes` internal (Antoine du Hamel) [#&#8203;54627](https://github.com/nodejs/node/pull/54627) - \[[`323d9da3c9`](https://github.com/nodejs/node/commit/323d9da3c9)] - **deps**: update cjs-module-lexer to 1.4.1 (Node.js GitHub Bot) [#&#8203;54846](https://github.com/nodejs/node/pull/54846) - \[[`bf4bf7cc6b`](https://github.com/nodejs/node/commit/bf4bf7cc6b)] - **deps**: update simdutf to 5.5.0 (Node.js GitHub Bot) [#&#8203;54434](https://github.com/nodejs/node/pull/54434) - \[[`61047dd130`](https://github.com/nodejs/node/commit/61047dd130)] - **deps**: upgrade npm to 10.8.3 (npm team) [#&#8203;54619](https://github.com/nodejs/node/pull/54619) - \[[`2351da5034`](https://github.com/nodejs/node/commit/2351da5034)] - **deps**: update cjs-module-lexer to 1.4.0 (Node.js GitHub Bot) [#&#8203;54713](https://github.com/nodejs/node/pull/54713) - \[[`0659516823`](https://github.com/nodejs/node/commit/0659516823)] - **deps**: allow amaro to be externalizable (Michael Dawson) [#&#8203;54646](https://github.com/nodejs/node/pull/54646) - \[[`6a32645dbc`](https://github.com/nodejs/node/commit/6a32645dbc)] - **deps**: fix sign-compare warning in ncrypto (Cheng) [#&#8203;54624](https://github.com/nodejs/node/pull/54624) - \[[`8f62f19197`](https://github.com/nodejs/node/commit/8f62f19197)] - **doc**: fix broken Android building link (Niklas Wenzel) [#&#8203;54922](https://github.com/nodejs/node/pull/54922) - \[[`440c256d76`](https://github.com/nodejs/node/commit/440c256d76)] - **doc**: add support link for aduh95 (Antoine du Hamel) [#&#8203;54866](https://github.com/nodejs/node/pull/54866) - \[[`56aca2a1ca`](https://github.com/nodejs/node/commit/56aca2a1ca)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;54854](https://github.com/nodejs/node/pull/54854) - \[[`8931f569c6`](https://github.com/nodejs/node/commit/8931f569c6)] - **doc**: experimental flag for global accessible APIs (Chengzhong Wu) [#&#8203;54330](https://github.com/nodejs/node/pull/54330) - \[[`6f8a6e9eb6`](https://github.com/nodejs/node/commit/6f8a6e9eb6)] - **doc**: add `ERR_INVALID_ADDRESS` to `errors.md` (Aviv Keller) [#&#8203;54661](https://github.com/nodejs/node/pull/54661) - \[[`c1b92e05e7`](https://github.com/nodejs/node/commit/c1b92e05e7)] - **doc**: add support link for mcollina (Matteo Collina) [#&#8203;54786](https://github.com/nodejs/node/pull/54786) - \[[`1def18122a`](https://github.com/nodejs/node/commit/1def18122a)] - **doc**: mark `--conditions` CLI flag as stable (Guy Bedford) [#&#8203;54209](https://github.com/nodejs/node/pull/54209) - \[[`b8ae36b6c3`](https://github.com/nodejs/node/commit/b8ae36b6c3)] - **doc**: fix typo in recognizing-contributors (Tobias Nießen) [#&#8203;54822](https://github.com/nodejs/node/pull/54822) - \[[`2c2ae80924`](https://github.com/nodejs/node/commit/2c2ae80924)] - **doc**: clarify `--max-old-space-size` and `--max-semi-space-size` units (Alexandre ABRIOUX) [#&#8203;54477](https://github.com/nodejs/node/pull/54477) - \[[`5bd4be5ce7`](https://github.com/nodejs/node/commit/5bd4be5ce7)] - **doc**: replace --allow-fs-read by --allow-fs-write in related section (M1CK431) [#&#8203;54427](https://github.com/nodejs/node/pull/54427) - \[[`c0f3e4603f`](https://github.com/nodejs/node/commit/c0f3e4603f)] - **doc**: add support link for marco-ippolito (Marco Ippolito) [#&#8203;54789](https://github.com/nodejs/node/pull/54789) - \[[`dc69eb8276`](https://github.com/nodejs/node/commit/dc69eb8276)] - **doc**: fix typo in module.md (Tobias Nießen) [#&#8203;54794](https://github.com/nodejs/node/pull/54794) - \[[`de225f5db9`](https://github.com/nodejs/node/commit/de225f5db9)] - **doc**: specify that preloaded modules affect subprocesses (Aviv Keller) [#&#8203;52939](https://github.com/nodejs/node/pull/52939) - \[[`62b0007cbe`](https://github.com/nodejs/node/commit/62b0007cbe)] - **doc**: clarify expandedSQL behavior (Tobias Nießen) [#&#8203;54685](https://github.com/nodejs/node/pull/54685) - \[[`1c7bdf95db`](https://github.com/nodejs/node/commit/1c7bdf95db)] - **doc**: render type references in SQLite docs (Tobias Nießen) [#&#8203;54684](https://github.com/nodejs/node/pull/54684) - \[[`5555095531`](https://github.com/nodejs/node/commit/5555095531)] - **doc**: fix typo (Michael Dawson) [#&#8203;54640](https://github.com/nodejs/node/pull/54640) - \[[`754baa4efa`](https://github.com/nodejs/node/commit/754baa4efa)] - **doc**: fix webcrypto.md AES-GCM backticks (Filip Skokan) [#&#8203;54621](https://github.com/nodejs/node/pull/54621) - \[[`5bfb4bcf45`](https://github.com/nodejs/node/commit/5bfb4bcf45)] - **doc**: add documentation about os.tmpdir() overrides (Joyee Cheung) [#&#8203;54613](https://github.com/nodejs/node/pull/54613) - \[[`22d873208e`](https://github.com/nodejs/node/commit/22d873208e)] - **doc, build**: fixup build docs (Aviv Keller) [#&#8203;54899](https://github.com/nodejs/node/pull/54899) - \[[`5e081a12b6`](https://github.com/nodejs/node/commit/5e081a12b6)] - **doc, child_process**: add esm snippets (Aviv Keller) [#&#8203;53616](https://github.com/nodejs/node/pull/53616) - \[[`2b68c30a26`](https://github.com/nodejs/node/commit/2b68c30a26)] - **doc, meta**: fix broken link in `onboarding.md` (Aviv Keller) [#&#8203;54886](https://github.com/nodejs/node/pull/54886) - \[[`a624002fff`](https://github.com/nodejs/node/commit/a624002fff)] - **esm**: throw `ERR_REQUIRE_ESM` instead of `ERR_INTERNAL_ASSERTION` (Antoine du Hamel) [#&#8203;54868](https://github.com/nodejs/node/pull/54868) - \[[`31d4ef91ee`](https://github.com/nodejs/node/commit/31d4ef91ee)] - **esm**: fix support for `URL` instances in `import.meta.resolve` (Antoine du Hamel) [#&#8203;54690](https://github.com/nodejs/node/pull/54690) - \[[`40ba89e452`](https://github.com/nodejs/node/commit/40ba89e452)] - **esm**: use Undici/`fetch` `data:` URL parser (Matthew Aitken) [#&#8203;54748](https://github.com/nodejs/node/pull/54748) - \[[`93116dd7b1`](https://github.com/nodejs/node/commit/93116dd7b1)] - **fs**: translate error code properly in cpSync (Jason Zhang) [#&#8203;54906](https://github.com/nodejs/node/pull/54906) - \[[`375cbb592e`](https://github.com/nodejs/node/commit/375cbb592e)] - **fs**: refactor rimraf to avoid using primordials (Yagiz Nizipli) [#&#8203;54834](https://github.com/nodejs/node/pull/54834) - \[[`ee89c3149e`](https://github.com/nodejs/node/commit/ee89c3149e)] - **fs**: respect dereference when copy symlink directory (Jason Zhang) [#&#8203;54732](https://github.com/nodejs/node/pull/54732) - \[[`7123bf7ca4`](https://github.com/nodejs/node/commit/7123bf7ca4)] - **http**: reduce likelihood of race conditions on keep-alive timeout (jazelly) [#&#8203;54863](https://github.com/nodejs/node/pull/54863) - \[[`04ef3e4afd`](https://github.com/nodejs/node/commit/04ef3e4afd)] - **https**: only use default ALPNProtocols when appropriate (Brian White) [#&#8203;54411](https://github.com/nodejs/node/pull/54411) - \[[`dc5593ba1e`](https://github.com/nodejs/node/commit/dc5593ba1e)] - **lib**: remove unnecessary async (jakecastelli) [#&#8203;54829](https://github.com/nodejs/node/pull/54829) - \[[`2b9a6373da`](https://github.com/nodejs/node/commit/2b9a6373da)] - **lib**: make WeakRef safe in abort_controller (jazelly) [#&#8203;54791](https://github.com/nodejs/node/pull/54791) - \[[`5f02e1b850`](https://github.com/nodejs/node/commit/5f02e1b850)] - **lib**: move `Symbol[Async]Dispose` polyfills to `internal/util` (Antoine du Hamel) [#&#8203;54853](https://github.com/nodejs/node/pull/54853) - \[[`fc78ced7e4`](https://github.com/nodejs/node/commit/fc78ced7e4)] - **lib**: convert signals to array before validation (Jason Zhang) [#&#8203;54714](https://github.com/nodejs/node/pull/54714) - \[[`21fef34a53`](https://github.com/nodejs/node/commit/21fef34a53)] - **lib**: add note about removing `node:sys` module (Rafael Gonzaga) [#&#8203;54743](https://github.com/nodejs/node/pull/54743) - \[[`a37d805489`](https://github.com/nodejs/node/commit/a37d805489)] - **(SEMVER-MINOR)** **lib**: add util.getCallSite() API (Rafael Gonzaga) [#&#8203;54380](https://github.com/nodejs/node/pull/54380) - \[[`2a1f56cce6`](https://github.com/nodejs/node/commit/2a1f56cce6)] - **lib**: ensure no holey array in fixed_queue (Jason Zhang) [#&#8203;54537](https://github.com/nodejs/node/pull/54537) - \[[`540b1dbaf6`](https://github.com/nodejs/node/commit/540b1dbaf6)] - **lib**: refactor SubtleCrypto experimental warnings (Filip Skokan) [#&#8203;54620](https://github.com/nodejs/node/pull/54620) - \[[`b59c8b88c7`](https://github.com/nodejs/node/commit/b59c8b88c7)] - **lib,src**: use built-in array buffer detach, transfer (Yagiz Nizipli) [#&#8203;54837](https://github.com/nodejs/node/pull/54837) - \[[`c1cc046de9`](https://github.com/nodejs/node/commit/c1cc046de9)] - **meta**: bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 (dependabot\[bot]) [#&#8203;54820](https://github.com/nodejs/node/pull/54820) - \[[`82c08ef483`](https://github.com/nodejs/node/commit/82c08ef483)] - **meta**: add `Windows ARM64` to flaky-tests list (Aviv Keller) [#&#8203;54693](https://github.com/nodejs/node/pull/54693) - \[[`df30e8efa1`](https://github.com/nodejs/node/commit/df30e8efa1)] - **meta**: ping [@&#8203;nodejs/performance](https://github.com/nodejs/performance) on bench changes (Rafael Gonzaga) [#&#8203;54752](https://github.com/nodejs/node/pull/54752) - \[[`bdd9fbb905`](https://github.com/nodejs/node/commit/bdd9fbb905)] - **meta**: bump actions/setup-python from 5.1.1 to 5.2.0 (Rich Trott) [#&#8203;54691](https://github.com/nodejs/node/pull/54691) - \[[`19574a8403`](https://github.com/nodejs/node/commit/19574a8403)] - **meta**: update sccache to v0.8.1 (Aviv Keller) [#&#8203;54720](https://github.com/nodejs/node/pull/54720) - \[[`9ebcfb2b28`](https://github.com/nodejs/node/commit/9ebcfb2b28)] - **meta**: bump step-security/harden-runner from 2.9.0 to 2.9.1 (dependabot\[bot]) [#&#8203;54704](https://github.com/nodejs/node/pull/54704) - \[[`ea58feb959`](https://github.com/nodejs/node/commit/ea58feb959)] - **meta**: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot\[bot]) [#&#8203;54703](https://github.com/nodejs/node/pull/54703) - \[[`c6bd9e443e`](https://github.com/nodejs/node/commit/c6bd9e443e)] - **meta**: bump github/codeql-action from 3.25.15 to 3.26.6 (dependabot\[bot]) [#&#8203;54702](https://github.com/nodejs/node/pull/54702) - \[[`79b358af2e`](https://github.com/nodejs/node/commit/79b358af2e)] - **meta**: fix links in `SECURITY.md` (Aviv Keller) [#&#8203;54696](https://github.com/nodejs/node/pull/54696) - \[[`6c8a20d650`](https://github.com/nodejs/node/commit/6c8a20d650)] - **meta**: fix `contributing` codeowners (Aviv Keller) [#&#8203;54641](https://github.com/nodejs/node/pull/54641) - \[[`b7284ed099`](https://github.com/nodejs/node/commit/b7284ed099)] - **module**: do not warn for typeless package.json when there isn't one (Joyee Cheung) [#&#8203;54045](https://github.com/nodejs/node/pull/54045) - \[[`ddd24a6e63`](https://github.com/nodejs/node/commit/ddd24a6e63)] - **node-api**: add external buffer creation benchmark (Chengzhong Wu) [#&#8203;54877](https://github.com/nodejs/node/pull/54877) - \[[`4a7576efae`](https://github.com/nodejs/node/commit/4a7576efae)] - **node-api**: add support for UTF-8 and Latin-1 property keys (Mert Can Altin) [#&#8203;52984](https://github.com/nodejs/node/pull/52984) - \[[`461e523498`](https://github.com/nodejs/node/commit/461e523498)] - **os**: improve `tmpdir` performance (Yagiz Nizipli) [#&#8203;54709](https://github.com/nodejs/node/pull/54709) - \[[`94fb7ab2e7`](https://github.com/nodejs/node/commit/94fb7ab2e7)] - **path**: remove `StringPrototypeCharCodeAt` from `posix.extname` (Aviv Keller) [#&#8203;54546](https://github.com/nodejs/node/pull/54546) - \[[`67b1d4cb45`](https://github.com/nodejs/node/commit/67b1d4cb45)] - **repl**: avoid interpreting 'npm' as a command when errors are recoverable (Shima Ryuhei) [#&#8203;54848](https://github.com/nodejs/node/pull/54848) - \[[`8433032948`](https://github.com/nodejs/node/commit/8433032948)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842) - \[[`7766349dd0`](https://github.com/nodejs/node/commit/7766349dd0)] - **sqlite**: fix segfault in expandedSQL (Tobias Nießen) [#&#8203;54687](https://github.com/nodejs/node/pull/54687) - \[[`4c1b98ba2b`](https://github.com/nodejs/node/commit/4c1b98ba2b)] - **sqlite**: remove unnecessary auto assignment (Tobias Nießen) [#&#8203;54686](https://github.com/nodejs/node/pull/54686) - \[[`77d162adb6`](https://github.com/nodejs/node/commit/77d162adb6)] - **src**: add `--env-file-if-exists` flag (Bosco Domingo) [#&#8203;53060](https://github.com/nodejs/node/pull/53060) - \[[`424bdc03b4`](https://github.com/nodejs/node/commit/424bdc03b4)] - **src**: add Cleanable class to Environment (Gabriel Schulhof) [#&#8203;54880](https://github.com/nodejs/node/pull/54880) - \[[`fbd08e3a9f`](https://github.com/nodejs/node/commit/fbd08e3a9f)] - **src**: switch crypto APIs to use Maybe\<void> (James M Snell) [#&#8203;54775](https://github.com/nodejs/node/pull/54775) - \[[`5e72bd3545`](https://github.com/nodejs/node/commit/5e72bd3545)] - **src**: eliminate ManagedEVPPkey (James M Snell) [#&#8203;54751](https://github.com/nodejs/node/pull/54751) - \[[`97cbcfbb43`](https://github.com/nodejs/node/commit/97cbcfbb43)] - **src**: fix unhandled error in structuredClone (Daeyeon Jeong) [#&#8203;54764](https://github.com/nodejs/node/pull/54764) - \[[`b89cd8d19a`](https://github.com/nodejs/node/commit/b89cd8d19a)] - **src**: move hkdf, scrypto, pbkdf2 impl to ncrypto (James M Snell) [#&#8203;54651](https://github.com/nodejs/node/pull/54651) - \[[`5c9599af5a`](https://github.com/nodejs/node/commit/5c9599af5a)] - **src**: create handle scope in FastInternalModuleStat (Joyee Cheung) [#&#8203;54384](https://github.com/nodejs/node/pull/54384) - \[[`e2307d87e8`](https://github.com/nodejs/node/commit/e2307d87e8)] - **(SEMVER-MINOR)** **stream**: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) [#&#8203;54032](https://github.com/nodejs/node/pull/54032) - \[[`ff54cabef6`](https://github.com/nodejs/node/commit/ff54cabef6)] - **test**: adjust test-tls-junk-server for OpenSSL32 (Michael Dawson) [#&#8203;54926](https://github.com/nodejs/node/pull/54926) - \[[`23fb03beed`](https://github.com/nodejs/node/commit/23fb03beed)] - **test**: remove duplicate skip AIX (Wuli) [#&#8203;54917](https://github.com/nodejs/node/pull/54917) - \[[`2b5e70816a`](https://github.com/nodejs/node/commit/2b5e70816a)] - **test**: adjust tls test for OpenSSL32 (Michael Dawson) [#&#8203;54909](https://github.com/nodejs/node/pull/54909) - \[[`cefa692dcb`](https://github.com/nodejs/node/commit/cefa692dcb)] - **test**: fix test-http2-socket-close.js (Hüseyin Açacak) [#&#8203;54900](https://github.com/nodejs/node/pull/54900) - \[[`097f6d3e7e`](https://github.com/nodejs/node/commit/097f6d3e7e)] - **test**: improve test-internal-fs-syncwritestream (Sunghoon) [#&#8203;54671](https://github.com/nodejs/node/pull/54671) - \[[`ed736a689f`](https://github.com/nodejs/node/commit/ed736a689f)] - **test**: deflake test-dns (Luigi Pinca) [#&#8203;54902](https://github.com/nodejs/node/pull/54902) - \[[`bb4849f595`](https://github.com/nodejs/node/commit/bb4849f595)] - **test**: fix test test-tls-dhe for OpenSSL32 (Michael Dawson) [#&#8203;54903](https://github.com/nodejs/node/pull/54903) - \[[`d9264bceca`](https://github.com/nodejs/node/commit/d9264bceca)] - **test**: use correct file naming syntax for `util-parse-env` (Aviv Keller) [#&#8203;53705](https://github.com/nodejs/node/pull/53705) - \[[`115a7ca42a`](https://github.com/nodejs/node/commit/115a7ca42a)] - **test**: add missing await (Luigi Pinca) [#&#8203;54828](https://github.com/nodejs/node/pull/54828) - \[[`7a1d633d77`](https://github.com/nodejs/node/commit/7a1d633d77)] - **test**: move more url tests to `node:test` (Yagiz Nizipli) [#&#8203;54636](https://github.com/nodejs/node/pull/54636) - \[[`ee385d62b9`](https://github.com/nodejs/node/commit/ee385d62b9)] - **test**: strip color chars in `test-runner-run` (Giovanni Bucci) [#&#8203;54552](https://github.com/nodejs/node/pull/54552) - \[[`2efec6221c`](https://github.com/nodejs/node/commit/2efec6221c)] - **test**: deflake test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54872](https://github.com/nodejs/node/pull/54872) - \[[`b198a91404`](https://github.com/nodejs/node/commit/b198a91404)] - **test**: remove dead code in test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54860](https://github.com/nodejs/node/pull/54860) - \[[`194cb83f39`](https://github.com/nodejs/node/commit/194cb83f39)] - **test**: reduce test-esm-loader-hooks-inspect-wait flakiness (Luigi Pinca) [#&#8203;54827](https://github.com/nodejs/node/pull/54827) - \[[`4b53558e8b`](https://github.com/nodejs/node/commit/4b53558e8b)] - **test**: reduce the allocation size in test-worker-arraybuffer-zerofill (James M Snell) [#&#8203;54839](https://github.com/nodejs/node/pull/54839) - \[[`c968d65d6d`](https://github.com/nodejs/node/commit/c968d65d6d)] - **test**: fix test-tls-client-mindhsize for OpenSSL32 (Michael Dawson) [#&#8203;54739](https://github.com/nodejs/node/pull/54739) - \[[`b998bb0933`](https://github.com/nodejs/node/commit/b998bb0933)] - **test**: remove need to make fs call for zlib test (Yagiz Nizipli) [#&#8203;54814](https://github.com/nodejs/node/pull/54814) - \[[`f084ea2e01`](https://github.com/nodejs/node/commit/f084ea2e01)] - **test**: use platform timeout (jakecastelli) [#&#8203;54591](https://github.com/nodejs/node/pull/54591) - \[[`b10e434cf3`](https://github.com/nodejs/node/commit/b10e434cf3)] - **test**: add platform timeout support for riscv64 (jakecastelli) [#&#8203;54591](https://github.com/nodejs/node/pull/54591) - \[[`b875f2d7de`](https://github.com/nodejs/node/commit/b875f2d7de)] - **test**: reduce stack size for test-error-serdes (James M Snell) [#&#8203;54840](https://github.com/nodejs/node/pull/54840) - \[[`d1a411480a`](https://github.com/nodejs/node/commit/d1a411480a)] - **test**: reduce fs calls in test-fs-existssync-false (Yagiz Nizipli) [#&#8203;54815](https://github.com/nodejs/node/pull/54815) - \[[`b96ee30a09`](https://github.com/nodejs/node/commit/b96ee30a09)] - **test**: use `node:test` in `test-cli-syntax.bad` (Aviv Keller) [#&#8203;54513](https://github.com/nodejs/node/pull/54513) - \[[`5278b8b7a1`](https://github.com/nodejs/node/commit/5278b8b7a1)] - **test**: move test-http-server-request-timeouts-mixed (James M Snell) [#&#8203;54841](https://github.com/nodejs/node/pull/54841) - \[[`8345a60d3a`](https://github.com/nodejs/node/commit/8345a60d3a)] - **test**: fix Windows async-context-frame memory failure (Stephen Belanger) [#&#8203;54823](https://github.com/nodejs/node/pull/54823) - \[[`cad404e1a1`](https://github.com/nodejs/node/commit/cad404e1a1)] - **test**: fix volatile for CauseSegfault with clang (Ivan Trubach) [#&#8203;54325](https://github.com/nodejs/node/pull/54325) - \[[`41682c7286`](https://github.com/nodejs/node/commit/41682c7286)] - **test**: set `test-http2-socket-close` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`1e1ac48711`](https://github.com/nodejs/node/commit/1e1ac48711)] - **test**: set `test-worker-arraybuffer-zerofill` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`56238debff`](https://github.com/nodejs/node/commit/56238debff)] - **test**: set `test-runner-run-watch` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`8291de1540`](https://github.com/nodejs/node/commit/8291de1540)] - **test**: set `test-http-server-request-timeouts-mixed` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`32d340e6b3`](https://github.com/nodejs/node/commit/32d340e6b3)] - **test**: set `test-single-executable-application-empty` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`6a2da4c4ca`](https://github.com/nodejs/node/commit/6a2da4c4ca)] - **test**: set `test-macos-app-sandbox` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`2f408847a0`](https://github.com/nodejs/node/commit/2f408847a0)] - **test**: set `test-fs-utimes` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`e3b7c40ffc`](https://github.com/nodejs/node/commit/e3b7c40ffc)] - **test**: set `test-runner-run-watch` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`d2ede46946`](https://github.com/nodejs/node/commit/d2ede46946)] - **test**: set `test-sqlite-statement-sync` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`b9f3385808`](https://github.com/nodejs/node/commit/b9f3385808)] - **test**: set `test-writewrap` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`d55fec8f40`](https://github.com/nodejs/node/commit/d55fec8f40)] - **test**: set `test-async-context-frame` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`3dfb525f3e`](https://github.com/nodejs/node/commit/3dfb525f3e)] - **test**: set `test-esm-loader-hooks-inspect-wait` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`b0458a88b4`](https://github.com/nodejs/node/commit/b0458a88b4)] - **test**: set `test-http2-large-file` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`5f6f8757e5`](https://github.com/nodejs/node/commit/5f6f8757e5)] - **test**: set `test-runner-watch-mode-complex` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`4231af336d`](https://github.com/nodejs/node/commit/4231af336d)] - **test**: set `test-performance-function` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`45ef2a868e`](https://github.com/nodejs/node/commit/45ef2a868e)] - **test**: set `test-debugger-heap-profiler` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`b5137f6405`](https://github.com/nodejs/node/commit/b5137f6405)] - **test**: fix `test-process-load-env-file` when path contains `'` (Antoine du Hamel) [#&#8203;54511](https://github.com/nodejs/node/pull/54511) - \[[`960116905a`](https://github.com/nodejs/node/commit/960116905a)] - **test**: refactor fs-watch tests due to macOS issue (Santiago Gimeno) [#&#8203;54498](https://github.com/nodejs/node/pull/54498) - \[[`f074d74bf3`](https://github.com/nodejs/node/commit/f074d74bf3)] - **test**: refactor `test-esm-type-field-errors` (Giovanni Bucci) [#&#8203;54368](https://github.com/nodejs/node/pull/54368) - \[[`67e30deced`](https://github.com/nodejs/node/commit/67e30deced)] - **test**: move more zlib tests to node:test (Yagiz Nizipli) [#&#8203;54609](https://github.com/nodejs/node/pull/54609) - \[[`fdb65111a3`](https://github.com/nodejs/node/commit/fdb65111a3)] - **test**: improve output of child process utilities (Joyee Cheung) [#&#8203;54622](https://github.com/nodejs/node/pull/54622) - \[[`55a12a4190`](https://github.com/nodejs/node/commit/55a12a4190)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;54925](https://github.com/nodejs/node/pull/54925) - \[[`de0f445a7f`](https://github.com/nodejs/node/commit/de0f445a7f)] - **test_runner**: reimplement `assert.ok` to allow stack parsing (Aviv Keller) [#&#8203;54776](https://github.com/nodejs/node/pull/54776) - \[[`a52c199d9d`](https://github.com/nodejs/node/commit/a52c199d9d)] - **(SEMVER-MINOR)** **test_runner**: report coverage thresholds in `test:coverage` (Aviv Keller) [#&#8203;54813](https://github.com/nodejs/node/pull/54813) - \[[`6552fddef5`](https://github.com/nodejs/node/commit/6552fddef5)] - **test_runner**: update kPatterns (Pietro Marchini) [#&#8203;54728](https://github.com/nodejs/node/pull/54728) - \[[`3396a4954d`](https://github.com/nodejs/node/commit/3396a4954d)] - **test_runner**: detect only tests when isolation is off (Colin Ihrig) [#&#8203;54832](https://github.com/nodejs/node/pull/54832) - \[[`021f59b6bc`](https://github.com/nodejs/node/commit/021f59b6bc)] - **test_runner**: apply filtering when tests begin (Colin Ihrig) [#&#8203;54832](https://github.com/nodejs/node/pull/54832) - \[[`36da793350`](https://github.com/nodejs/node/commit/36da793350)] - **test_runner**: allow `--import` with no isolation (Aviv Keller) [#&#8203;54697](https://github.com/nodejs/node/pull/54697) - \[[`de73d1ee4b`](https://github.com/nodejs/node/commit/de73d1ee4b)] - **test_runner**: improve code coverage cleanup (Colin Ihrig) [#&#8203;54856](https://github.com/nodejs/node/pull/54856) - \[[`3d478728f2`](https://github.com/nodejs/node/commit/3d478728f2)] - **timers**: avoid generating holey internal arrays (Gürgün Dayıoğlu) [#&#8203;54771](https://github.com/nodejs/node/pull/54771) - \[[`b3d567ae0f`](https://github.com/nodejs/node/commit/b3d567ae0f)] - **timers**: document ref option for scheduler.wait (Paolo Insogna) [#&#8203;54605](https://github.com/nodejs/node/pull/54605) - \[[`c2bf0134ce`](https://github.com/nodejs/node/commit/c2bf0134ce)] - **(SEMVER-MINOR)** **tls**: add `allowPartialTrustChain` flag (Anna Henningsen) [#&#8203;54790](https://github.com/nodejs/node/pull/54790) - \[[`608a611132`](https://github.com/nodejs/node/commit/608a611132)] - **tools**: add readability/fn_size to filter (Rafael Gonzaga) [#&#8203;54744](https://github.com/nodejs/node/pull/54744) - \[[`93fab49099`](https://github.com/nodejs/node/commit/93fab49099)] - **tools**: add util scripts to land and rebase PRs (Antoine du Hamel) [#&#8203;54656](https://github.com/nodejs/node/pull/54656) - \[[`d6df542ff8`](https://github.com/nodejs/node/commit/d6df542ff8)] - **tools**: remove readability/fn_size rule (Rafael Gonzaga) [#&#8203;54663](https://github.com/nodejs/node/pull/54663) - \[[`689d127ee7`](https://github.com/nodejs/node/commit/689d127ee7)] - **typings**: fix TypedArray to a global type (1ilsang) [#&#8203;54063](https://github.com/nodejs/node/pull/54063) - \[[`071dff1d34`](https://github.com/nodejs/node/commit/071dff1d34)] - **typings**: correct param type of `SafePromisePrototypeFinally` (Wuli) [#&#8203;54727](https://github.com/nodejs/node/pull/54727) - \[[`5243e3240c`](https://github.com/nodejs/node/commit/5243e3240c)] - ***Revert*** "**v8**: enable maglev on supported architectures" (Joyee Cheung) [#&#8203;54384](https://github.com/nodejs/node/pull/54384) - \[[`ade9da5b3a`](https://github.com/nodejs/node/commit/ade9da5b3a)] - **vm**: add vm proto property lookup test (Chengzhong Wu) [#&#8203;54606](https://github.com/nodejs/node/pull/54606) - \[[`8385958b60`](https://github.com/nodejs/node/commit/8385958b60)] - **zlib**: add typings for better dx (Yagiz Nizipli) [#&#8203;54699](https://github.com/nodejs/node/pull/54699) - \[[`8c4c85cf31`](https://github.com/nodejs/node/commit/8c4c85cf31)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708) ### [`v22.8.0`](https://github.com/nodejs/node/releases/tag/v22.8.0): 2024-09-03, Version 22.8.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v22.7.0...v22.8.0) ##### New JS API for compile cache This release adds a new API `module.enableCompileCache()` that can be used to enable on-disk code caching of all modules loaded after this API is called. Previously this could only be enabled by the `NODE_COMPILE_CACHE` environment variable, so it could only set by end-users. This API allows tooling and library authors to enable caching of their own code. This is a built-in alternative to the [v8-compile-cache](https://www.npmjs.com/package/v8-compile-cache)/[v8-compile-cache-lib ](https://www.npmjs.com/package/v8-compile-cache-lib) packages, but have [better performance](https://github.com/nodejs/node/issues/47472#issuecomment-1970331362) and supports ESM. Thanks to Joyee Cheung for working on this. ##### New option for vm.createContext() to create a context with a freezable globalThis Node.js implements a flavor of `vm.createContext()` and friends that creates a context without contextifying its global object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context (impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they don't need the interceptor behavior. Thanks to Joyee Cheung for working on this. ##### Support for coverage thresholds Node.js now supports requiring code coverage to meet a specific threshold before the process exits successfully. To use this feature, you need to enable the `--experimental-test-coverage` flag. You can set thresholds for the following types of coverage: - **Branch coverage**: Use `--test-coverage-branches=<threshold>` - **Function coverage**: Use `--test-coverage-functions=<threshold>` - **Line coverage**: Use `--test-coverage-lines=<threshold>` `<threshold>` should be an integer between 0 and 100. If an invalid value is provided, a `TypeError` will be thrown. If the code coverage fails to meet the specified thresholds for any category, the process will exit with code `1`. For instance, to enforce a minimum of 80% line coverage and 60% branch coverage, you can run: ```console $ node --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=60 example.js ``` Thanks Aviv Keller for working on this. ##### Other Notable Changes - \[[`1f2cc2fa47`](https://github.com/nodejs/node/commit/1f2cc2fa47)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413) - \[[`1e01bdc0d0`](https://github.com/nodejs/node/commit/1e01bdc0d0)] - **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) [#&#8203;54264](https://github.com/nodejs/node/pull/54264) - \[[`97fa075c2e`](https://github.com/nodejs/node/commit/97fa075c2e)] - **(SEMVER-MINOR)** **test_runner**: support running tests in process (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927) - \[[`858b583c88`](https://github.com/nodejs/node/commit/858b583c88)] - **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run() (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927) ##### Commits - \[[`94985df9d6`](https://github.com/nodejs/node/commit/94985df9d6)] - **benchmark**: fix benchmark for file path and URL conversion (Early Riser) [#&#8203;54190](https://github.com/nodejs/node/pull/54190) - \[[`ac178b094b`](https://github.com/nodejs/node/commit/ac178b094b)] - **buffer**: truncate instead of throw when writing beyond buffer (Robert Nagy) [#&#8203;54524](https://github.com/nodejs/node/pull/54524) - \[[`afd8c1eb4f`](https://github.com/nodejs/node/commit/afd8c1eb4f)] - **buffer**: allow invalid encoding in from (Robert Nagy) [#&#8203;54533](https://github.com/nodejs/node/pull/54533) - \[[`6f0cf35cd3`](https://github.com/nodejs/node/commit/6f0cf35cd3)] - **build**: reclaim disk space on macOS GHA runner (jakecastelli) [#&#8203;54658](https://github.com/nodejs/node/pull/54658) - \[[`467ac3aec4`](https://github.com/nodejs/node/commit/467ac3aec4)] - **build**: don't clean obj.target directory if it doesn't exist (Joyee Cheung) [#&#8203;54337](https://github.com/nodejs/node/pull/54337) - \[[`71fdf961df`](https://github.com/nodejs/node/commit/71fdf961df)] - **build**: update required python version to 3.8 (Aviv Keller) [#&#8203;54358](https://github.com/nodejs/node/pull/54358) - \[[`73604cf1c5`](https://github.com/nodejs/node/commit/73604cf1c5)] - **deps**: update nghttp2 to 1.63.0 (Node.js GitHub Bot) [#&#8203;54589](https://github.com/nodejs/node/pull/54589) - \[[`b00c087285`](https://github.com/nodejs/node/commit/b00c087285)] - **deps**: V8: cherry-pick [`e74d0f4`](https://github.com/nodejs/node/commit/e74d0f437fcd) (Joyee Cheung) [#&#8203;54279](https://github.com/nodejs/node/pull/54279) - \[[`33a6b3c7a9`](https://github.com/nodejs/node/commit/33a6b3c7a9)] - **deps**: backport ICU-22787 to fix ClangCL on Windows (Stefan Stojanovic) [#&#8203;54502](https://github.com/nodejs/node/pull/54502) - \[[`fe56949cbb`](https://github.com/nodejs/node/commit/fe56949cbb)] - **deps**: update c-ares to v1.33.1 (Node.js GitHub Bot) [#&#8203;54549](https://github.com/nodejs/node/pull/54549) - \[[`290f6ce619`](https://github.com/nodejs/node/commit/290f6ce619)] - **deps**: update amaro to 0.1.8 (Node.js GitHub Bot) [#&#8203;54520](https://github.com/nodejs/node/pull/54520) - \[[`b5843568b4`](https://github.com/nodejs/node/commit/b5843568b4)] - **deps**: update amaro to 0.1.7 (Node.js GitHub Bot) [#&#8203;54473](https://github.com/nodejs/node/pull/54473) - \[[`9c709209b4`](https://github.com/nodejs/node/commit/9c709209b4)] - **deps**: update undici to 6.19.8 (Node.js GitHub Bot) [#&#8203;54456](https://github.com/nodejs/node/pull/54456) - \[[`a5ce24181b`](https://github.com/nodejs/node/commit/a5ce24181b)] - **deps**: sqlite: fix Windows compilation (Colin Ihrig) [#&#8203;54433](https://github.com/nodejs/node/pull/54433) - \[[`3caf29ea88`](https://github.com/nodejs/node/commit/3caf29ea88)] - **deps**: update sqlite to 3.46.1 (Node.js GitHub Bot) [#&#8203;54433](https://github.com/nodejs/node/pull/54433) - \[[`68758d4b08`](https://github.com/nodejs/node/commit/68758d4b08)] - **doc**: add support me link for anonrig (Yagiz Nizipli) [#&#8203;54611](https://github.com/nodejs/node/pull/54611) - \[[`f5c5529266`](https://github.com/nodejs/node/commit/f5c5529266)] - **doc**: add alert on REPL from TCP socket (Rafael Gonzaga) [#&#8203;54594](https://github.com/nodejs/node/pull/54594) - \[[`bf824483cd`](https://github.com/nodejs/node/commit/bf824483cd)] - **doc**: fix typo in styleText description (Rafael Gonzaga) [#&#8203;54616](https://github.com/nodejs/node/pull/54616) - \[[`825d933fd4`](https://github.com/nodejs/node/commit/825d933fd4)] - **doc**: add getHeapStatistics() property descriptions (Benji Marinacci) [#&#8203;54584](https://github.com/nodejs/node/pull/54584) - \[[`80e5150160`](https://github.com/nodejs/node/commit/80e5150160)] - **doc**: fix module compile cache description (沈鸿飞) [#&#8203;54625](https://github.com/nodejs/node/pull/54625) - \[[`7fd033fe56`](https://github.com/nodejs/node/commit/7fd033fe56)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;54562](https://github.com/nodejs/node/pull/54562) - \[[`c499913732`](https://github.com/nodejs/node/commit/c499913732)] - **doc**: fix information about including coverage files (Aviv Keller) [#&#8203;54527](https://github.com/nodejs/node/pull/54527) - \[[`c3dc83befc`](https://github.com/nodejs/node/commit/c3dc83befc)] - **doc**: support collaborators - talk amplification (Michael Dawson) [#&#8203;54508](https://github.com/nodejs/node/pull/54508) - \[[`fc57beaad3`](https://github.com/nodejs/node/commit/fc57beaad3)] - **doc**: add note about shasum generation failure (Marco Ippolito) [#&#8203;54487](https://github.com/nodejs/node/pull/54487) - \[[`1800a58f49`](https://github.com/nodejs/node/commit/1800a58f49)] - **doc**: update websocket flag description to reflect stable API status (Yelim Koo) [#&#8203;54482](https://github.com/nodejs/node/pull/54482) - \[[`61affd77a7`](https://github.com/nodejs/node/commit/61affd77a7)] - **doc**: fix capitalization in module.md (shallow-beach) [#&#8203;54488](https://github.com/nodejs/node/pull/54488) - \[[`25419915c7`](https://github.com/nodejs/node/commit/25419915c7)] - **doc**: add esm examples to node:https (Alfredo González) [#&#8203;54399](https://github.com/nodejs/node/pull/54399) - \[[`83b5efeb54`](https://github.com/nodejs/node/commit/83b5efeb54)] - **doc**: reserve ABI 130 for Electron 33 (Calvin) [#&#8203;54383](https://github.com/nodejs/node/pull/54383) - \[[`6ccbd32ae8`](https://github.com/nodejs/node/commit/6ccbd32ae8)] - **doc, meta**: add missing `,` to `BUILDING.md` (Aviv Keller) [#&#8203;54409](https://github.com/nodejs/node/pull/54409) - \[[`fc08a9b0cd`](https://github.com/nodejs/node/commit/fc08a9b0cd)] - **fs**: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) [#&#8203;54369](https://github.com/nodejs/node/pull/54369) - \[[`4a664b5fcb`](https://github.com/nodejs/node/commit/4a664b5fcb)] - **lib**: respect terminal capabilities on styleText (Rafael Gonzaga) [#&#8203;54389](https://github.com/nodejs/node/pull/54389) - \[[`a9ce2b6a28`](https://github.com/nodejs/node/commit/a9ce2b6a28)] - **lib**: fix emit warning for debuglog.time when disabled (Vinicius Lourenço) [#&#8203;54275](https://github.com/nodejs/node/pull/54275) - \[[`b5a23c9783`](https://github.com/nodejs/node/commit/b5a23c9783)] - **meta**: remind users to use a supported version in bug reports (Aviv Keller) [#&#8203;54481](https://github.com/nodejs/node/pull/54481) - \[[`0d7171d8e9`](https://github.com/nodejs/node/commit/0d7171d8e9)] - **meta**: add more labels to dep-updaters (Aviv Keller) [#&#8203;54454](https://github.com/nodejs/node/pull/54454) - \[[`c4996c189f`](https://github.com/nodejs/node/commit/c4996c189f)] - **meta**: run coverage-windows when `vcbuild.bat` updated (Aviv Keller) [#&#8203;54412](https://github.com/nodejs/node/pull/54412) - \[[`3cf645768e`](https://github.com/nodejs/node/commit/3cf645768e)] - **module**: use amaro default transform values (Marco Ippolito) [#&#8203;54517](https://github.com/nodejs/node/pull/54517) - \[[`336496b90e`](https://github.com/nodejs/node/commit/336496b90e)] - **module**: add sourceURL magic comment hinting generated source (Chengzhong Wu) [#&#8203;54402](https://github.com/nodejs/node/pull/54402) - \[[`04f83b50ad`](https://github.com/nodejs/node/commit/04f83b50ad)] - ***Revert*** "**net**: validate host name for server listen" (jakecastelli) [#&#8203;54554](https://github.com/nodejs/node/pull/54554) - \[[`1e01bdc0d0`](https://github.com/nodejs/node/commit/1e01bdc0d0)] - **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) [#&#8203;54264](https://github.com/nodejs/node/pull/54264) - \[[`3cd10a3f40`](https://github.com/nodejs/node/commit/3cd10a3f40)] - **node-api**: remove RefBase and CallbackWrapper (Vladimir Morozov) [#&#8203;53590](https://github.com/nodejs/node/pull/53590) - \[[`72c554abab`](https://github.com/nodejs/node/commit/72c554abab)] - **sqlite**: return results with null prototype (Michaël Zasso) [#&#8203;54350](https://github.com/nodejs/node/pull/54350) - \[[`e071651bb2`](https://github.com/nodejs/node/commit/e071651bb2)] - **src**: disable fast methods for `buffer.write` (Michaël Zasso) [#&#8203;54565](https://github.com/nodejs/node/pull/54565) - \[[`f8cbbc685a`](https://github.com/nodejs/node/commit/f8cbbc685a)] - **src**: use v8::Isolate::GetDefaultLocale() to compute navigator.language (Joyee Cheung) [#&#8203;54279](https://github.com/nodejs/node/pull/54279) - \[[`4baf4637eb`](https://github.com/nodejs/node/commit/4baf4637eb)] - **(SEMVER-MINOR)** **src**: add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE (Joyee Cheung) [#&#8203;54501](https://github.com/nodejs/node/pull/54501) - \[[`101e299656`](https://github.com/nodejs/node/commit/101e299656)] - **src**: move more crypto_dh.cc code to ncrypto (James M Snell) [#&#8203;54459](https://github.com/nodejs/node/pull/54459) - \[[`e6e1f4e8bd`](https://github.com/nodejs/node/commit/e6e1f4e8bd)] - **src**: remove redundant AESCipherMode (Tobias Nießen) [#&#8203;54438](https://github.com/nodejs/node/pull/54438) - \[[`1ff3f63f5e`](https://github.com/nodejs/node/commit/1ff3f63f5e)] - **src**: handle errors correctly in `permission.cc` (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541) - \[[`4938188682`](https://github.com/nodejs/node/commit/4938188682)] - **src**: return `v8::Object` from error constructors (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541) - \[[`4578e9485b`](https://github.com/nodejs/node/commit/4578e9485b)] - **src**: use better return types in KVStore (Michaël Zasso) [#&#8203;54539](https://github.com/nodejs/node/pull/54539) - \[[`7d9e994791`](https://github.com/nodejs/node/commit/7d9e994791)] - **src**: change SetEncodedValue to return Maybe\<void> (Tobias Nießen) [#&#8203;54443](https://github.com/nodejs/node/pull/54443) - \[[`eef303028f`](https://github.com/nodejs/node/commit/eef303028f)] - **src**: remove cached data tag from snapshot metadata (Joyee Cheung) [#&#8203;54122](https://github.com/nodejs/node/pull/54122) - \[[`3a74c400d5`](https://github.com/nodejs/node/commit/3a74c400d5)] - **src**: improve `buffer.transcode` performance (Yagiz Nizipli) [#&#8203;54153](https://github.com/nodejs/node/pull/54153) - \[[`909c5320fd`](https://github.com/nodejs/node/commit/909c5320fd)] - **src**: move more crypto code to ncrypto (James M Snell) [#&#8203;54320](https://github.com/nodejs/node/pull/54320) - \[[`9ba75faf5f`](https://github.com/nodejs/node/commit/9ba75faf5f)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413) - \[[`fffc300c6d`](https://github.com/nodejs/node/commit/fffc300c6d)] - **stream**: change stream to use index instead of `for...of` (Wiyeong Seo) [#&#8203;54474](https://github.com/nodejs/node/pull/54474) - \[[`a4a6ef8d29`](https://github.com/nodejs/node/commit/a4a6ef8d29)] - **test**: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) [#&#8203;54610](https://github.com/nodejs/node/pull/54610) - \[[`76345a5d7c`](https://github.com/nodejs/node/commit/76345a5d7c)] - **test**: update TLS test for OpenSSL 3.2 (Richard Lau) [#&#8203;54612](https://github.com/nodejs/node/pull/54612) - \[[`522d5a359d`](https://github.com/nodejs/node/commit/522d5a359d)] - **test**: run V8 Fast API tests in release mode too (Michaël Zasso) [#&#8203;54570](https://github.com/nodejs/node/pull/54570) - \[[`edbecf5209`](https://github.com/nodejs/node/commit/edbecf5209)] - **test**: increase key size for ca2-cert.pem (Michael Dawson) [#&#8203;54599](https://github.com/nodejs/node/pull/54599) - \[[`bc976cfc93`](https://github.com/nodejs/node/commit/bc976cfc93)] - **test**: update test-abortsignal-cloneable to use node:test (James M Snell) [#&#8203;54581](https://github.com/nodejs/node/pull/54581) - \[[`9f1ce732a8`](https://github.com/nodejs/node/commit/9f1ce732a8)] - **test**: update test-assert-typedarray-deepequal to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585) - \[[`c74f2aeb92`](https://github.com/nodejs/node/commit/c74f2aeb92)] - **test**: update test-assert to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585) - \[[`a0be95e4cc`](https://github.com/nodejs/node/commit/a0be95e4cc)] - **test**: merge ongc and gcutil into gc.js (tannal) [#&#8203;54355](https://github.com/nodejs/node/pull/54355) - \[[`c10aff665e`](https://github.com/nodejs/node/commit/c10aff665e)] - **test**: move a couple of tests over to using node:test (James M Snell) [#&#8203;54582](https://github.com/nodejs/node/pull/54582) - \[[`dbbc790949`](https://github.com/nodejs/node/commit/dbbc790949)] - **test**: update test-aborted-util to use node:test (James M Snell) [#&#8203;54578](https://github.com/nodejs/node/pull/54578) - \[[`64442fce6b`](https://github.com/nodejs/node/commit/64442fce6b)] - **test**: refactor test-abortcontroller to use node:test (James M Snell) [#&#8203;54574](https://github.com/nodejs/node/pull/54574) - \[[`72345dee1c`](https://github.com/nodejs/node/commit/72345dee1c)] - **test**: fix embedding test for Windows (Vladimir Morozov) [#&#8203;53659](https://github.com/nodejs/node/pull/53659) - \[[`846e2b2896`](https://github.com/nodejs/node/commit/846e2b2896)] - **test**: refactor test_runner tests to change default reporter (Colin Ihrig) [#&#8203;54547](https://github.com/nodejs/node/pull/54547) - \[[`b5eb24c86a`](https://github.com/nodejs/node/commit/b5eb24c86a)] - **test**: force spec reporter in test-runner-watch-mode.mjs (Colin Ihrig) [#&#8203;54538](https://github.com/nodejs/node/pull/54538) - \[[`66ae9f4c0a`](https://github.com/nodejs/node/commit/66ae9f4c0a)] - **test**: use valid hostnames (Luigi Pinca) [#&#8203;54556](https://github.com/nodejs/node/pull/54556) - \[[`02d664b75f`](https://github.com/nodejs/node/commit/02d664b75f)] - **test**: fix improper path to URL conversion (Antoine du Hamel) [#&#8203;54509](https://github.com/nodejs/node/pull/54509) - \[[`8a4f8a9eff`](https://github.com/nodejs/node/commit/8a4f8a9eff)] - **test**: add tests for runner coverage with different stdout column widths (Pietro Marchini) [#&#8203;54494](https://github.com/nodejs/node/pull/54494) - \[[`b0ed8dbb2f`](https://github.com/nodejs/node/commit/b0ed8dbb2f)] - **test**: prevent V8 from writing into the system's tmpdir (Michaël Zasso) [#&#8203;54395](https://github.com/nodejs/node/pull/54395) - \[[`5ee234a5a6`](https://github.com/nodejs/node/commit/5ee234a5a6)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#&#8203;54593](https://github.com/nodejs/node/pull/54593) - \[[`a4bebf8559`](https://github.com/nodejs/node/commit/a4bebf8559)] - **test_runner**: ensure test watcher picks up new test files (Pietro Marchini) [#&#8203;54225](https://github.com/nodejs/node/pull/54225) - \[[`d4310fe9c1`](https://github.com/nodejs/node/commit/d4310fe9c1)] - **(SEMVER-MINOR)** **test_runner**: add support for coverage thresholds (Aviv Keller) [#&#8203;54429](https://github.com/nodejs/node/pull/54429) - \[[`0cf78aa24b`](https://github.com/nodejs/node/commit/0cf78aa24b)] - **test_runner**: refactor `mock_loader` (Antoine du Hamel) [#&#8203;54223](https://github.com/nodejs/node/pull/54223) - \[[`97fa075c2e`](https://github.com/nodejs/node/commit/97fa075c2e)] - **(SEMVER-MINOR)** **test_runner**: support running tests in process (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927) - \[[`858b583c88`](https://github.com/nodejs/node/commit/858b583c88)] - **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run() (Colin Ihrig) [#&#8203;53927](https://github.com/nodejs/node/pull/53927) - \[[`45b0250692`](https://github.com/nodejs/node/commit/45b0250692)] - **test_runner**: account for newline in source maps (Colin Ihrig) [#&#8203;54444](https://github.com/nodejs/node/pull/54444) - \[[`1c29e74d30`](https://github.com/nodejs/node/commit/1c29e74d30)] - **test_runner**: make `mock.module`'s `specifier` consistent with `import()` (Antoine du Hamel) [#&#8203;54416](https://github.com/nodejs/node/pull/54416) - \[[`cbe30a02a3`](https://github.com/nodejs/node/commit/cbe30a02a3)] - **test_runner**: finish build phase before running tests (Colin Ihrig) [#&#8203;54423](https://github.com/nodejs/node/pull/54423) - \[[`8a4b26f00c`](https://github.com/nodejs/node/commit/8a4b26f00c)] - **timers**: fix validation (Paolo Insogna) [#&#8203;54404](https://github.com/nodejs/node/pull/54404) - \[[`38798140c4`](https://github.com/nodejs/node/commit/38798140c4)] - **tools**: remove unused python files (Aviv Keller) [#&#8203;53928](https://github.com/nodejs/node/pull/53928) - \[[`da6c61def8`](https://github.com/nodejs/node/commit/da6c61def8)] - **tools**: add swc license (Marco Ippolito) [#&#8203;54462](https://github.com/nodejs/node/pull/54462) - \[[`16d4c437e1`](https://github.com/nodejs/node/commit/16d4c437e1)] - **typings**: provide internal types for wasi bindings (Andrew Moon) [#&#8203;54119](https://github.com/nodejs/node/pull/54119) - \[[`fe5666f006`](https://github.com/nodejs/node/commit/fe5666f006)] - **vm**: return all own names and symbols in property enumerator interceptor (Chengzhong Wu) [#&#8203;54522](https://github.com/nodejs/node/pull/54522) - \[[`db80eac496`](https://github.com/nodejs/node/commit/db80eac496)] - **(SEMVER-MINOR)** **vm**: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) [#&#8203;54394](https://github.com/nodejs/node/pull/54394) - \[[`8ffdd1e2b2`](https://github.com/nodejs/node/commit/8ffdd1e2b2)] - **zlib**: simplify validators (Yagiz Nizipli) [#&#8203;54442](https://github.com/nodejs/node/pull/54442) ### [`v22.7.0`](https://github.com/nodejs/node/releases/tag/v22.7.0): 2024-08-22, Version 22.7.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v22.6.0...v22.7.0) ##### Experimental transform types support With the new flag `--experimental-transform-types` it is possible to enable the transformation of TypeScript-only syntax into JavaScript code. This feature allows Node.js to support TypeScript syntax such as `Enum` and `namespace`. Thanks to Marco Ippolito for making this work on [#&#8203;54283](https://github.com/nodejs/node/pull/54283). ##### Module syntax detection is now enabled by default. Module syntax detection (the `--experimental-detect-module` flag) is now enabled by default. Use `--no-experimental-detect-module` to disable it if needed. Syntax detection attempts to run ambiguous files as CommonJS, and if the module fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs the file as an ES module. Ambiguous files are those with a `.js` or no extension, where the nearest parent `package.json` has no `"type"` field (either `"type": "module"` or `"type": "commonjs"`). Syntax detection should have no performance impact on CommonJS modules, but it incurs a slight performance penalty for ES modules; add `"type": "module"` to the nearest parent `package.json` file to eliminate the performance cost. A use case unlocked by this feature is the ability to use ES module syntax in extensionless scripts with no nearby `package.json`. Thanks to Geoffrey Booth for making this work on [#&#8203;53619](https://github.com/nodejs/node/pull/53619). ##### Performance Improvements to Buffer Performance of Node.js Buffers have been optimized through multiple PR's with significant improvements to the `Buffer.copy` and `Buffer.write` methods. These are used throughout the codebase and should give a nice boost across the board. Thanks to Robert Nagy for making this work on [#&#8203;54311](https://github.com/nodejs/node/pull/54311), [#&#8203;54324](https://github.com/nodejs/node/pull/54324), and [#&#8203;54087](https://github.com/nodejs/node/pull/54087). ##### Other Notable Changes - \[[`911de7dd6d`](https://github.com/nodejs/node/commit/911de7dd6d)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#&#8203;54246](https://github.com/nodejs/node/pull/54246) - \[[`9ee4b16bd8`](https://github.com/nodejs/node/commit/9ee4b16bd8)] - **(SEMVER-MINOR)** **lib**: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) [#&#8203;48528](https://github.com/nodejs/node/pull/48528) ##### Commits - \[[`c6544ff5a6`](https://github.com/nodejs/node/commit/c6544ff5a6)] - **benchmark**: use assert.ok searchparams (Rafael Gonzaga) [#&#8203;54334](https://github.com/nodejs/node/pull/54334) - \[[`51b8576897`](https://github.com/nodejs/node/commit/51b8576897)] - **benchmark**: add stream.compose benchmark (jakecastelli) [#&#8203;54308](https://github.com/nodejs/node/pull/54308) - \[[`c166036515`](https://github.com/nodejs/node/commit/c166036515)] - **benchmark**: rename count to n (Rafael Gonzaga) [#&#8203;54271](https://github.com/nodejs/node/pull/54271) - \[[`1be0ee76ef`](https://github.com/nodejs/node/commit/1be0ee76ef)] - **benchmark**: change assert() to assert.ok() (Rafael Gonzaga) [#&#8203;54254](https://github.com/nodejs/node/pull/54254) - \[[`4dd229f546`](https://github.com/nodejs/node/commit/4dd229f546)] - **benchmark**: support --help in CLI (Aviv Keller) [#&#8203;53358](https://github.com/nodejs/node/pull/53358) - \[[`a5a320cd5b`](https://github.com/nodejs/node/commit/a5a320cd5b)] - **benchmark**: remove force option as force defaults to true (Yelim Koo) [#&#8203;54203](https://github.com/nodejs/node/pull/54203) - \[[`db0a80a0eb`](https://github.com/nodejs/node/commit/db0a80a0eb)] - **benchmark**: use assert.ok instead of assert (Rafael Gonzaga) [#&#8203;54176](https://github.com/nodejs/node/pull/54176) - \[[`8ba53ae7b7`](https://github.com/nodejs/node/commit/8ba53ae7b7)] - **buffer**: properly apply dst offset and src length on fast path (Robert Nagy) [#&#8203;54391](https://github.com/nodejs/node/pull/54391) - \[[`a5a60e6823`](https://github.com/nodejs/node/commit/a5a60e6823)] - **buffer**: use fast API for writing one-byte strings (Robert Nagy) [#&#8203;54311](https://github.com/nodejs/node/pull/54311) - \[[`7b641bc2bd`](https://github.com/nodejs/node/commit/7b641bc2bd)] - **buffer**: optimize byteLength for short strings (Robert Nagy) [#&#8203;54345](https://github.com/nodejs/node/pull/54345) - \[[`28ca678f81`](https://github.com/nodejs/node/commit/28ca678f81)] - **buffer**: optimize byteLength for common encodings (Robert Nagy) [#&#8203;54342](https://github.com/nodejs/node/pull/54342) - \[[`12785559be`](https://github.com/nodejs/node/commit/12785559be)] - **buffer**: optimize createFromString (Robert Nagy) [#&#8203;54324](https://github.com/nodejs/node/pull/54324) - \[[`f7f7b0c498`](https://github.com/nodejs/node/commit/f7f7b0c498)] - **buffer**: optimize for common encodings (Robert Nagy) [#&#8203;54319](https://github.com/nodejs/node/pull/54319) - \[[`37631f826b`](https://github.com/nodejs/node/commit/37631f826b)] - **buffer**: add JSDoc to blob bytes method (Roberto Simonini) [#&#8203;54117](https://github.com/nodejs/node/pull/54117) - \[[`ab6fae9dbf`](https://github.com/nodejs/node/commit/ab6fae9dbf)] - **buffer**: faster type check (Robert Nagy) [#&#8203;54088](https://github.com/nodejs/node/pull/54088) - \[[`9f8f26eb2f`](https://github.com/nodejs/node/commit/9f8f26eb2f)] - **buffer**: use native copy impl (Robert Nagy) [#&#8203;54087](https://github.com/nodejs/node/pull/54087) - \[[`019ebf03c1`](https://github.com/nodejs/node/commit/019ebf03c1)] - **buffer**: use faster integer argument check (Robert Nagy) [#&#8203;54089](https://github.com/nodejs/node/pull/54089) - \[[`c640a2f24c`](https://github.com/nodejs/node/commit/c640a2f24c)] - **build**: always disable strict aliasing (Michaël Zasso) [#&#8203;54339](https://github.com/nodejs/node/pull/54339) - \[[`6aa1d9e855`](https://github.com/nodejs/node/commit/6aa1d9e855)] - **build**: update `ruff` to `0.5.2` (Aviv Keller) [#&#8203;53909](https://github.com/nodejs/node/pull/53909) - \[[`350e699443`](https://github.com/nodejs/node/commit/350e699443)] - **build**: support `lint-js-fix` in `vcbuild.bat` (Aviv Keller) [#&#8203;53695](https://github.com/nodejs/node/pull/53695) - \[[`98fed763f7`](https://github.com/nodejs/node/commit/98fed763f7)] - **build**: add `--without-amaro` build flag (Antoine du Hamel) [#&#8203;54136](https://github.com/nodejs/node/pull/54136) - \[[`1ca598c5ce`](https://github.com/nodejs/node/commit/1ca598c5ce)] - **cli**: allow `--test-[name/skip]-pattern` in `NODE_OPTIONS` (Aviv Keller) [#&#8203;53001](https://github.com/nodejs/node/pull/53001) - \[[`37960a67ae`](https://github.com/nodejs/node/commit/37960a67ae)] - **console**: use validateOneOf for colorMode validation (HEESEUNG) [#&#8203;54245](https://github.com/nodejs/node/pull/54245) - \[[`d52f515bab`](https://github.com/nodejs/node/commit/d52f515bab)] - **crypto**: include NODE_EXTRA_CA_CERTS in all secure contexts by default (Eric Bickle) [#&#8203;44529](https://github.com/nodejs/node/pull/44529) - \[[`b6a3e61353`](https://github.com/nodejs/node/commit/b6a3e61353)] - **deps**: update amaro to 0.1.6 (Node.js GitHub Bot) [#&#8203;54374](https://github.com/nodejs/node/pull/54374) - \[[`0d716ad3f3`](https://github.com/nodejs/node/commit/0d716ad3f3)] - **deps**: update simdutf to 5.3.4 (Node.js GitHub Bot) [#&#8203;54312](https://github.com/nodejs/node/pull/54312) - \[[`18bfea5f33`](https://github.com/nodejs/node/commit/18bfea5f33)] - **deps**: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`d0c23f332f`](https://github.com/nodejs/node/commit/d0c23f332f)] - **deps**: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`e7db63972c`](https://github.com/nodejs/node/commit/e7db63972c)] - **deps**: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`713ae95555`](https://github.com/nodejs/node/commit/713ae95555)] - **deps**: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`758c9df36e`](https://github.com/nodejs/node/commit/758c9df36e)] - **deps**: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`fe7e6c9563`](https://github.com/nodejs/node/commit/fe7e6c9563)] - **deps**: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`35722b7bca`](https://github.com/nodejs/node/commit/35722b7bca)] - **deps**: update simdjson to 3.10.0 (Node.js GitHub Bot) [#&#8203;54197](https://github.com/nodejs/node/pull/54197) - \[[`a2a41557db`](https://github.com/nodejs/node/commit/a2a41557db)] - **deps**: fix GN build warning in ncrypto (Cheng) [#&#8203;54222](https://github.com/nodejs/node/pull/54222) - \[[`869da204d7`](https://github.com/nodejs/node/commit/869da204d7)] - **deps**: update c-ares to v1.33.0 (Node.js GitHub Bot) [#&#8203;54198](https://github.com/nodejs/node/pull/54198) - \[[`e0d503a715`](https://github.com/nodejs/node/commit/e0d503a715)] - **deps**: update nbytes to 0.1.1 (Node.js GitHub Bot) [#&#8203;54277](https://github.com/nodejs/node/pull/54277) - \[[`b0c768dae1`](https://github.com/nodejs/node/commit/b0c768dae1)] - **deps**: update undici to 6.19.7 (Node.js GitHub Bot) [#&#8203;54286](https://github.com/nodejs/node/pull/54286) - \[[`ef9a950cb9`](https://github.com/nodejs/node/commit/ef9a950cb9)] - **deps**: update acorn to 8.12.1 (Node.js GitHub Bot) [#&#8203;53465](https://github.com/nodejs/node/pull/53465) - \[[`1597a1139a`](https://github.com/nodejs/node/commit/1597a1139a)] - **deps**: update undici to 6.19.5 (Node.js GitHub Bot) [#&#8203;54076](https://github.com/nodejs/node/pull/54076) - \[[`103e4db3e0`](https://github.com/nodejs/node/commit/103e4db3e0)] - **deps**: update simdutf to 5.3.1 (Node.js GitHub Bot) [#&#8203;54196](https://github.com/nodejs/node/pull/54196) - \[[`9f115ba9e9`](https://github.com/nodejs/node/commit/9f115ba9e9)] - **doc**: fix error description of the max header size (Egawa Ryo) [#&#8203;54125](https://github.com/nodejs/node/pull/54125) - \[[`f967ab3810`](https://github.com/nodejs/node/commit/f967ab3810)] - **doc**: add git node security --cleanup (Rafael Gonzaga) [#&#8203;54381](https://github.com/nodejs/node/pull/54381) - \[[`8883c01afa`](https://github.com/nodejs/node/commit/8883c01afa)] - **doc**: add note on weakness of permission model (Tobias Nießen) [#&#8203;54268](https://github.com/nodejs/node/pull/54268) - \[[`824bd58bc5`](https://github.com/nodejs/node/commit/824bd58bc5)] - **doc**: add versions when `--watch-preserve-output` was added (Théo LUDWIG) [#&#8203;54328](https://github.com/nodejs/node/pull/54328) - \[[`33795cfd49`](https://github.com/nodejs/node/commit/33795cfd49)] - **doc**: replace v19 mention in Current release (Rafael Gonzaga) [#&#8203;54361](https://github.com/nodejs/node/pull/54361) - \[[`aa6e770ea5`](https://github.com/nodejs/node/commit/aa6e770ea5)] - **doc**: correct peformance entry types (Jason Zhang) [#&#8203;54263](https://github.com/nodejs/node/pull/54263) - \[[`4b099ce1bd`](https://github.com/nodejs/node/commit/4b099ce1bd)] - **doc**: fix typo in method name in the sea doc (Eliyah Sundström) [#&#8203;54027](https://github.com/nodejs/node/pull/54027) - \[[`8a8d1d2281`](https://github.com/nodejs/node/commit/8a8d1d2281)] - **doc**: mark process.nextTick legacy (Marco Ippolito) [#&#8203;51280](https://github.com/nodejs/node/pull/51280) - \[[`6f4b5d998e`](https://github.com/nodejs/node/commit/6f4b5d998e)] - **doc**: add esm examples to node:http2 (Alfredo González) [#&#8203;54292](https://github.com/nodejs/node/pull/54292) - \[[`1535469c12`](https://github.com/nodejs/node/commit/1535469c12)] - **doc**: explicitly mention node:fs module restriction (Rafael Gonzaga) [#&#8203;54269](https://github.com/nodejs/node/pull/54269) - \[[`26c37f7910`](https://github.com/nodejs/node/commit/26c37f7910)] - **doc**: remove module-based permission doc (Rafael Gonzaga) [#&#8203;54266](https://github.com/nodejs/node/pull/54266) - \[[`971b9f31f5`](https://github.com/nodejs/node/commit/971b9f31f5)] - **doc**: update `buffer.constants.MAX_LENGTH` size (Samuli Asmala) [#&#8203;54207](https://github.com/nodejs/node/pull/54207) - \[[`3106149965`](https://github.com/nodejs/node/commit/3106149965)] - **doc**: warn for windows build bug (Jason Zhang) [#&#8203;54217](https://github.com/nodejs/node/pull/54217) - \[[`55f8ac3e89`](https://github.com/nodejs/node/commit/55f8ac3e89)] - **doc**: make some parameters optional in `tracingChannel.traceCallback` (Deokjin Kim) [#&#8203;54068](https://github.com/nodejs/node/pull/54068) - \[[`e3e2f22cab`](https://github.com/nodejs/node/commit/e3e2f22cab)] - **doc**: add esm examples to node:dns (Alfredo González) [#&#8203;54172](https://github.com/nodejs/node/pull/54172) - \[[`0429b1eb9d`](https://github.com/nodejs/node/commit/0429b1eb9d)] - **doc**: add KevinEady as a triager (Chengzhong Wu) [#&#8203;54179](https://github.com/nodejs/node/pull/54179) - \[[`4bfa7d8e54`](https://github.com/nodejs/node/commit/4bfa7d8e54)] - **doc**: add esm examples to node:console (Alfredo González) [#&#8203;54108](https://github.com/nodejs/node/pull/54108) - \[[`2f5309fc22`](https://github.com/nodejs/node/commit/2f5309fc22)] - **doc**: fix sea assets example (Sadzurami) [#&#8203;54192](https://github.com/nodejs/node/pull/54192) - \[[`88aef5a39d`](https://github.com/nodejs/node/commit/88aef5a39d)] - **doc**: add links to security steward companies (Aviv Keller) [#&#8203;52981](https://github.com/nodejs/node/pull/52981) - \[[`5175903c23`](https://github.com/nodejs/node/commit/5175903c23)] - **doc**: move `onread` option from `socket.connect()` to `new net.socket()` (sendoru) [#&#8203;54194](https://github.com/nodejs/node/pull/54194) - \[[`144637e845`](https://github.com/nodejs/node/commit/144637e845)] - **doc**: move release key for Myles Borins (Richard Lau) [#&#8203;54059](https://github.com/nodejs/node/pull/54059) - \[[`358fdacec6`](https://github.com/nodejs/node/commit/358fdacec6)] - **doc**: refresh instructions for building node from source (Liran Tal) [#&#8203;53768](https://github.com/nodejs/node/pull/53768) - \[[`11fdaa6ad2`](https://github.com/nodejs/node/commit/11fdaa6ad2)] - **doc**: add documentation for blob.bytes() method (jaexxin) [#&#8203;54114](https://github.com/nodejs/node/pull/54114) - \[[`db3b0df42c`](https://github.com/nodejs/node/commit/db3b0df42c)] - **doc**: add missing new lines to custom test reporter examples (Eddie Abbondanzio) [#&#8203;54152](https://github.com/nodejs/node/pull/54152) - \[[`1cafefd2cf`](https://github.com/nodejs/node/commit/1cafefd2cf)] - **doc**: fix worker threadId/destination typo (Thomas Hunter II) [#&#8203;53933](https://github.com/nodejs/node/pull/53933) - \[[`7772b46038`](https://github.com/nodejs/node/commit/7772b46038)] - **doc**: update list of Triagers on the `README.md` (Antoine du Hamel) [#&#8203;54138](https://github.com/nodejs/node/pull/54138) - \[[`af99ba3dc9`](https://github.com/nodejs/node/commit/af99ba3dc9)] - **doc**: remove unused imports from worker_threads.md (Yelim Koo) [#&#8203;54147](https://github.com/nodejs/node/pull/54147) - \[[`826edc4341`](https://github.com/nodejs/node/commit/826edc4341)] - **doc**: expand troubleshooting section (Liran Tal) [#&#8203;53808](https://github.com/nodejs/node/pull/53808) - \[[`923195b624`](https://github.com/nodejs/node/commit/923195b624)] - **doc**: clarify `useCodeCache` setting for cross-platform SEA generation (Yelim Koo) [#&#8203;53994](https://github.com/nodejs/node/pull/53994) - \[[`7c305a4900`](https://github.com/nodejs/node/commit/7c305a4900)] - **doc, meta**: replace command with link to keys (Aviv Keller) [#&#8203;53745](https://github.com/nodejs/node/pull/53745) - \[[`6f986e0ee6`](https://github.com/nodejs/node/commit/6f986e0ee6)] - **doc, test**: simplify test README table (Aviv Keller) [#&#8203;53971](https://github.com/nodejs/node/pull/53971) - \[[`112228c15a`](https://github.com/nodejs/node/commit/112228c15a)] - **fs**: remove unnecessary option argument validation (Jonas) [#&#8203;53958](https://github.com/nodejs/node/pull/53958) - \[[`911de7dd6d`](https://github.com/nodejs/node/commit/911de7dd6d)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#&#8203;54246](https://github.com/nodejs/node/pull/54246) - \[[`1e825915d5`](https://github.com/nodejs/node/commit/1e825915d5)] - **inspector**: provide detailed info to fix DevTools frontend errors (Kohei Ueno) [#&#8203;54156](https://github.com/nodejs/node/pull/54156) - \[[`417120a3a3`](https://github.com/nodejs/node/commit/417120a3a3)] - **lib**: replace spread operator with primordials function (YoonSoo_Shin) [#&#8203;54053](https://github.com/nodejs/node/pull/54053) - \[[`09f411e6f6`](https://github.com/nodejs/node/commit/09f411e6f6)] - **lib**: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) [#&#8203;54258](https://github.com/nodejs/node/pull/54258) - \[[`b8970570b0`](https://github.com/nodejs/node/commit/b8970570b0)] - **lib**: improve async_context_frame structure (Stephen Belanger) [#&#8203;54239](https://github.com/nodejs/node/pull/54239) - \[[`783322fa16`](https://github.com/nodejs/node/commit/783322fa16)] - **lib**: fix unhandled errors in webstream adapters (Fedor Indutny) [#&#8203;54206](https://github.com/nodejs/node/pull/54206) - \[[`425b9562b9`](https://github.com/nodejs/node/commit/425b9562b9)] - **lib**: fix typos in comments within internal/streams (YoonSoo_Shin) [#&#8203;54093](https://github.com/nodejs/node/pull/54093) - \[[`9ee4b16bd8`](https://github.com/nodejs/node/commit/9ee4b16bd8)] - **(SEMVER-MINOR)** **lib**: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) [#&#8203;48528](https://github.com/nodejs/node/pull/48528) - \[[`8c9a4ae12b`](https://github.com/nodejs/node/commit/8c9a4ae12b)] - **lib,permission**: support Buffer to permission.has (Rafael Gonzaga) [#&#8203;54104](https://github.com/nodejs/node/pull/54104) - \[[`c8e358c96c`](https://github.com/nodejs/node/commit/c8e358c96c)] - **meta**: add test-permission-\* CODEOWNERS (Rafael Gonzaga) [#&#8203;54267](https://github.com/nodejs/node/pull/54267) - \[[`581c155cf8`](https://github.com/nodejs/node/commit/581c155cf8)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;54210](https://github.com/nodejs/node/pull/54210) - \[[`3f0d7344e3`](https://github.com/nodejs/node/commit/3f0d7344e3)] - **meta**: add module label for the lib/internal/modules folder (Aviv Keller) [#&#8203;52858](https://github.com/nodejs/node/pull/52858) - \[[`0157ec6bbd`](https://github.com/nodejs/node/commit/0157ec6bbd)] - **meta**: bump `actions/upload-artifact` from 4.3.3 to 4.3.4 (dependabot\[bot]) [#&#8203;54166](https://github.com/nodejs/node/pull/54166) - \[[`7fa95d2360`](https://github.com/nodejs/node/commit/7fa95d2360)] - **meta**: bump `actions/download-artifact` from 4.1.7 to 4.1.8 (dependabot\[bot]) [#&#8203;54167](https://github.com/nodejs/node/pull/54167) - \[[`acc5b9a0c5`](https://github.com/nodejs/node/commit/acc5b9a0c5)] - **meta**: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot\[bot]) [#&#8203;54165](https://github.com/nodejs/node/pull/54165) - \[[`dede30a8d0`](https://github.com/nodejs/node/commit/dede30a8d0)] - **meta**: bump `step-security/harden-runner` from 2.8.1 to 2.9.0 (dependabot\[bot]) [#&#8203;54169](https://github.com/nodejs/node/pull/54169) - \[[`b733854eac`](https://github.com/nodejs/node/commit/b733854eac)] - **meta**: bump `actions/setup-node` from 4.0.2 to 4.0.3 (dependabot\[bot]) [#&#8203;54170](https://github.com/nodejs/node/pull/54170) - \[[`6a9f168cc6`](https://github.com/nodejs/node/commit/6a9f168cc6)] - **meta**: bump `github/codeql-action` from 3.25.11 to 3.25.15 (dependabot\[bot]) [#&#8203;54168](https://github.com/nodejs/node/pull/54168) - \[[`9bbd85e4fe`](https://github.com/nodejs/node/commit/9bbd85e4fe)] - **meta**: bump `ossf/scorecard-action` from 2.3.3 to 2.4.0 (dependabot\[bot]) [#&#8203;54171](https://github.com/nodejs/node/pull/54171) - \[[`33633eebd9`](https://github.com/nodejs/node/commit/33633eebd9)] - **meta**: add typescript team to codeowners (Marco Ippolito) [#&#8203;54101](https://github.com/nodejs/node/pull/54101) - \[[`240d9296c1`](https://github.com/nodejs/node/commit/240d9296c1)] - **(SEMVER-MINOR)** **module**: add --experimental-transform-types flag (Marco Ippolito) [#&#8203;54283](https://github.com/nodejs/node/pull/54283) - \[[`66dcb2a571`](https://github.com/nodejs/node/commit/66dcb2a571)] - **(SEMVER-MINOR)** **module**: unflag detect-module (Geoffrey Booth) [#&#8203;53619](https://github.com/nodejs/node/pull/53619) - \[[`100225fbe1`](https://github.com/nodejs/node/commit/100225fbe1)] - **module**: do not attempt to strip type when there's no source (Antoine du Hamel) [#&#8203;54287](https://github.com/nodejs/node/pull/54287) - \[[`1ba2000703`](https://github.com/nodejs/node/commit/1ba2000703)] - **module**: refactor ts parser loading (Marco Ippolito) [#&#8203;54243](https://github.com/nodejs/node/pull/54243) - \[[`13cc480030`](https://github.com/nodejs/node/commit/13cc480030)] - **module**: remove outdated comment (Michaël Zasso) [#&#8203;54118](https://github.com/nodejs/node/pull/54118) - \[[`e676d98435`](https://github.com/nodejs/node/commit/e676d98435)] - **module,win**: fix long path resolve (Hüseyin Açacak) [#&#8203;53294](https://github.com/nodejs/node/pull/53294) - \[[`9aec536083`](https://github.com/nodejs/node/commit/9aec536083)] - **path**: change `posix.join` to use array (Wiyeong Seo) [#&#8203;54331](https://github.com/nodejs/node/pull/54331) - \[[`8a770cf5c9`](https://github.com/nodejs/node/commit/8a770cf5c9)] - **path**: fix relative on Windows (Hüseyin Açacak) [#&#8203;53991](https://github.com/nodejs/node/pull/53991) - \[[`267cd7f361`](https://github.com/nodejs/node/commit/267cd7f361)] - **path**: use the correct name in `validateString` (Benjamin Pasero) [#&#8203;53669](https://github.com/nodejs/node/pull/53669) - \[[`31adeea855`](https://github.com/nodejs/node/commit/31adeea855)] - **sea**: don't set code cache flags when snapshot is used (Joyee Cheung) [#&#8203;54120](https://github.com/nodejs/node/pull/54120) - \[[`7f1bf1ce24`](https://github.com/nodejs/node/commit/7f1bf1ce24)] - **sqlite**: split up large test file (Colin Ihrig) [#&#8203;54014](https://github.com/nodejs/node/pull/54014) - \[[`94e2ea6f5c`](https://github.com/nodejs/node/commit/94e2ea6f5c)] - **sqlite**: ensure statement finalization on db close (Colin Ihrig) [#&#8203;54014](https://github.com/nodejs/node/pull/54014) - \[[`e077ff1f38`](https://github.com/nodejs/node/commit/e077ff1f38)] - **src**: update compile cache storage structure (Joyee Cheung) [#&#8203;54291](https://github.com/nodejs/node/pull/54291) - \[[`4e4d1def7e`](https://github.com/nodejs/node/commit/4e4d1def7e)] - **src**: refactor http parser binding initialization (Joyee Cheung) [#&#8203;54276](https://github.com/nodejs/node/pull/54276) - \[[`409d9eb09b`](https://github.com/nodejs/node/commit/409d9eb09b)] - **src**: shift even moar x509 to ncrypto (James M Snell) [#&#8203;54340](https://github.com/nodejs/node/pull/54340) - \[[`f87aa27274`](https://github.com/nodejs/node/commit/f87aa27274)] - **src**: don't match after `--` in `Dotenv::GetPathFromArgs` (Aviv Keller) [#&#8203;54237](https://github.com/nodejs/node/pull/54237) - \[[`b6927dd981`](https://github.com/nodejs/node/commit/b6927dd981)] - **src**: move some X509Certificate stuff to ncrypto (James M Snell) [#&#8203;54241](https://github.com/nodejs/node/pull/54241) - \[[`a394219fa5`](https://github.com/nodejs/node/commit/a394219fa5)] - **src**: skip inspector wait in internal workers (Chengzhong Wu) [#&#8203;54219](https://github.com/nodejs/node/pull/54219) - \[[`8daeccfe92`](https://github.com/nodejs/node/commit/8daeccfe92)] - **src**: shift more crypto impl details to ncrypto (James M Snell) [#&#8203;54028](https://github.com/nodejs/node/pull/54028) - \[[`e619133ac9`](https://github.com/nodejs/node/commit/e619133ac9)] - **src**: move spkac methods to ncrypto (James M Snell) [#&#8203;53985](https://github.com/nodejs/node/pull/53985) - \[[`b52c2fff75`](https://github.com/nodejs/node/commit/b52c2fff75)] - **src**: account for OpenSSL unexpected version (Shelley Vohr) [#&#8203;54038](https://github.com/nodejs/node/pull/54038) - \[[`0b16af1689`](https://github.com/nodejs/node/commit/0b16af1689)] - **src,test**: track `URL.canParse` fast API calls (Michaël Zasso) [#&#8203;54356](https://github.com/nodejs/node/pull/54356) - \[[`2be78b03c3`](https://github.com/nodejs/node/commit/2be78b03c3)] - **src,test**: ensure that V8 fast APIs are called (Michaël Zasso) [#&#8203;54317](https://github.com/nodejs/node/pull/54317) - \[[`9297d29cdb`](https://github.com/nodejs/node/commit/9297d29cdb)] - **stream**: make checking pendingcb on WritableStream backward compatible (jakecastelli) [#&#8203;54142](https://github.com/nodejs/node/pull/54142) - \[[`2a6a12e493`](https://github.com/nodejs/node/commit/2a6a12e493)] - **stream**: throw TypeError when criteria fulfilled in getIterator (jakecastelli) [#&#8203;53825](https://github.com/nodejs/node/pull/53825) - \[[`7f68cc0f7f`](https://github.com/nodejs/node/commit/7f68cc0f7f)] - **test**: make snapshot comparison more flexible (Shelley Vohr) [#&#8203;54375](https://github.com/nodejs/node/pull/54375) - \[[`3df7938832`](https://github.com/nodejs/node/commit/3df7938832)] - **test**: make sure current run result is pushed and reset (jakecastelli) [#&#8203;54332](https://github.com/nodejs/node/pull/54332) - \[[`3e25be7b28`](https://github.com/nodejs/node/commit/3e25be7b28)] - **test**: use relative paths in test-cli-permission tests (sendoru) [#&#8203;54188](https://github.com/nodejs/node/pull/54188) - \[[`f49f1bb3e9`](https://github.com/nodejs/node/commit/f49f1bb3e9)] - **test**: unmark test-sqlite as flaky (Colin Ihrig) [#&#8203;54014](https://github.com/nodejs/node/pull/54014) - \[[`2f68a74702`](https://github.com/nodejs/node/commit/2f68a74702)] - **test**: fix timeout not being cleared (Isaac-yz-Liu) [#&#8203;54242](https://github.com/nodejs/node/pull/54242) - \[[`f5cfa4454e`](https://github.com/nodejs/node/commit/f5cfa4454e)] - **test**: refactor `test-runner-module-mocking` (Antoine du Hamel) [#&#8203;54233](https://github.com/nodejs/node/pull/54233) - \[[`b85b13b418`](https://github.com/nodejs/node/commit/b85b13b418)] - **test**: use assert.{s,deepS}trictEqual() (Luigi Pinca) [#&#8203;54208](https://github.com/nodejs/node/pull/54208) - \[[`6bcbfcd7bc`](https://github.com/nodejs/node/commit/6bcbfcd7bc)] - **test**: add subtests to test-node-run (sungpaks) [#&#8203;54204](https://github.com/nodejs/node/pull/54204) - \[[`dafe97548f`](https://github.com/nodejs/node/commit/dafe97548f)] - **test**: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) [#&#8203;54115](https://github.com/nodejs/node/pull/54115) - \[[`be61793db5`](https://github.com/nodejs/node/commit/be61793db5)] - **test**: update wpt test for streams (devstone) [#&#8203;54129](https://github.com/nodejs/node/pull/54129) - \[[`670c796449`](https://github.com/nodejs/node/commit/670c796449)] - **test**: fix typo in test (Sonny) [#&#8203;54137](https://github.com/nodejs/node/pull/54137) - \[[`1a15f3f613`](https://github.com/nodejs/node/commit/1a15f3f613)] - **test**: add initial pull delay and prototype pollution prevention tests (Sonny) [#&#8203;54061](https://github.com/nodejs/node/pull/54061) - \[[`5dbff81b71`](https://github.com/nodejs/node/commit/5dbff81b71)] - **test**: add coverage for webstorage quota (jakecastelli) [#&#8203;53964](https://github.com/nodejs/node/pull/53964) - \[[`141e9fe7cc`](https://github.com/nodejs/node/commit/141e9fe7cc)] - **test_runner**: use validateStringArray for `timers.enable()` (Deokjin Kim) [#&#8203;49534](https://github.com/nodejs/node/pull/49534) - \[[`e70711e190`](https://github.com/nodejs/node/commit/e70711e190)] - **test_runner**: report failures in filtered suites (Colin Ihrig) [#&#8203;54387](https://github.com/nodejs/node/pull/54387) - \[[`7766c1dc9b`](https://github.com/nodejs/node/commit/7766c1dc9b)] - **test_runner**: remove parseCommandLine() from test.js (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353) - \[[`961cbf0be0`](https://github.com/nodejs/node/commit/961cbf0be0)] - **test_runner**: refactor hook creation (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353) - \[[`69c78ca2f5`](https://github.com/nodejs/node/commit/69c78ca2f5)] - **test_runner**: return setup() from parseCommandLine() (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353) - \[[`ed1ede8c26`](https://github.com/nodejs/node/commit/ed1ede8c26)] - **test_runner**: pass global options to createTestTree() (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353) - \[[`1e88045a69`](https://github.com/nodejs/node/commit/1e88045a69)] - **test_runner**: pass harness object as option to root test (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353) - \[[`e3378f0679`](https://github.com/nodejs/node/commit/e3378f0679)] - **test_runner**: use run() argument names in parseCommandLine() (Colin Ihrig) [#&#8203;54353](https://github.com/nodejs/node/pull/54353) - \[[`676bbd5c09`](https://github.com/nodejs/node/commit/676bbd5c09)] - **test_runner**: fix delete test file cause dependency file not watched (jakecastelli) [#&#8203;53533](https://github.com/nodejs/node/pull/53533) - \[[`fe793a6103`](https://github.com/nodejs/node/commit/fe793a6103)] - **test_runner**: do not expose internal loader (Antoine du Hamel) [#&#8203;54106](https://github.com/nodejs/node/pull/54106) - \[[`7fad771bbf`](https://github.com/nodejs/node/commit/7fad771bbf)] - **test_runner**: fix erroneous diagnostic warning when only: false (Pietro Marchini) [#&#8203;54116](https://github.com/nodejs/node/pull/54116) - \[[`dc465736fb`](https://github.com/nodejs/node/commit/dc465736fb)] - **test_runner**: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) [#&#8203;53846](https://github.com/nodejs/node/pull/53846) - \[[`5a1afb2139`](https://github.com/nodejs/node/commit/5a1afb2139)] - **test_runner**: remove outdated comment (Colin Ihrig) [#&#8203;54146](https://github.com/nodejs/node/pull/54146) - \[[`20a01fcc39`](https://github.com/nodejs/node/commit/20a01fcc39)] - **test_runner**: run after hooks even if test is aborted (Colin Ihrig) [#&#8203;54151](https://github.com/nodejs/node/pull/54151) - \[[`df428adb6c`](https://github.com/nodejs/node/commit/df428adb6c)] - **tools**: remove header from c-ares license (Aviv Keller) [#&#8203;54335](https://github.com/nodejs/node/pull/54335) - \[[`b659fc0f2b`](https://github.com/nodejs/node/commit/b659fc0f2b)] - **tools**: add find pyenv path on windows (Marco Ippolito) [#&#8203;54314](https://github.com/nodejs/node/pull/54314) - \[[`b93c6d9f38`](https://github.com/nodejs/node/commit/b93c6d9f38)] - **tools**: make undici updater build wasm from src (Michael Dawson) [#&#8203;54128](https://github.com/nodejs/node/pull/54128) - \[[`3835131559`](https://github.com/nodejs/node/commit/3835131559)] - **tools**: add workflow to ensure `README` lists are in sync with gh teams (Antoine du Hamel) [#&#8203;53901](https://github.com/nodejs/node/pull/53901) - \[[`e218b7ca8a`](https://github.com/nodejs/node/commit/e218b7ca8a)] - **tools**: add strip-types to label system (Marco Ippolito) [#&#8203;54185](https://github.com/nodejs/node/pull/54185) - \[[`8b35f0e601`](https://github.com/nodejs/node/commit/8b35f0e601)] - **tools**: update eslint to 9.8.0 (Node.js GitHub Bot) [#&#8203;54073](https://github.com/nodejs/node/pull/54073) - \[[`d83421fbe5`](https://github.com/nodejs/node/commit/d83421fbe5)] - **tty**: initialize winSize array with values (Michaël Zasso) [#&#8203;54281](https://github.com/nodejs/node/pull/54281) - \[[`a4768374f2`](https://github.com/nodejs/node/commit/a4768374f2)] - **typings**: add util.styleText type definition (Rafael Gonzaga) [#&#8203;54252](https://github.com/nodejs/node/pull/54252) - \[[`a4aecd2755`](https://github.com/nodejs/node/commit/a4aecd2755)] - **typings**: add missing binding function `writeFileUtf8()` (Jungku Lee) [#&#8203;54110](https://github.com/nodejs/node/pull/54110) - \[[`0bed600df9`](https://github.com/nodejs/node/commit/0bed600df9)] - **url**: modify pathToFileURL to handle extended UNC path (Early Riser) [#&#8203;54262](https://github.com/nodejs/node/pull/54262) - \[[`037672f15d`](https://github.com/nodejs/node/commit/037672f15d)] - **url**: improve resolveObject with ObjectAssign (Early Riser) [#&#8203;54092](https://github.com/nodejs/node/pull/54092) - \[[`4d8b53e475`](https://github.com/nodejs/node/commit/4d8b53e475)] - **watch**: reload changes in contents of --env-file (Marek Piechut) [#&#8203;54109](https://github.com/nodejs/node/pull/54109) ### [`v22.6.0`](https://github.com/nodejs/node/releases/tag/v22.6.0): 2024-08-06, Version 22.6.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v22.5.1...v22.6.0) ##### Experimental TypeScript support via strip types Node.js introduces the `--experimental-strip-types` flag for initial TypeScript support. This feature strips type annotations from .ts files, allowing them to run without transforming TypeScript-specific syntax. Current limitations include: - Supports only inline type annotations, not features like `enums` or `namespaces`. - Requires explicit file extensions in import and require statements. - Enforces the use of the type keyword for type imports to avoid runtime errors. - Disabled for TypeScript in *node_modules* by default. Thanks [Marco Ippolito](https://github.com/marco-ippolito) for working on this. ##### Experimental Network Inspection Support in Node.js This update introduces the initial support for network inspection in Node.js. Currently, this is an experimental feature, so you need to enable it using the `--experimental-network-inspection` flag. With this feature enabled, you can inspect network activities occurring within a JavaScript application. To use network inspection, start your Node.js application with the following command: ```console $ node --inspect-wait --experimental-network-inspection index.js ``` Please note that the network inspection capabilities are in active development. We are actively working on enhancing this feature and will continue to expand its functionality in future updates. - Network inspection is limited to the `http` and `https` modules only. - The Network tab in Chrome DevTools will not be available until the [feature request on the Chrome DevTools side](https://issues.chromium.org/issues/353924015) is addressed. Thanks [Kohei Ueno](https://github.com/cola119) for working on this. ##### Other Notable Changes - \[[`15a94e67b1`](https://github.com/nodejs/node/commit/15a94e67b1)] - **lib,src**: drop --experimental-network-imports (Rafael Gonzaga) [#&#8203;53822](https://github.com/nodejs/node/pull/53822) - \[[`68e444d2d8`](https://github.com/nodejs/node/commit/68e444d2d8)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054) - \[[`2d982d3dee`](https://github.com/nodejs/node/commit/2d982d3dee)] - **(SEMVER-MINOR)** **deps**: V8: backport [`7857eb3`](https://github.com/nodejs/node/commit/7857eb34db42) (Stephen Belanger) [#&#8203;53997](https://github.com/nodejs/node/pull/53997) - \[[`15816bd0dd`](https://github.com/nodejs/node/commit/15816bd0dd)] - **(SEMVER-MINOR)** **stream**: expose DuplexPair API (Austin Wright) [#&#8203;34111](https://github.com/nodejs/node/pull/34111) - \[[`893c864542`](https://github.com/nodejs/node/commit/893c864542)] - **(SEMVER-MINOR)** **test_runner**: fix support watch with run(), add globPatterns option (Matteo Collina) [#&#8203;53866](https://github.com/nodejs/node/pull/53866) - \[[`048d421ad1`](https://github.com/nodejs/node/commit/048d421ad1)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004) - \[[`6ad6e01bf3`](https://github.com/nodejs/node/commit/6ad6e01bf3)] - **(SEMVER-MINOR)** **test_runner**: refactor snapshots to get file from context (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853) - \[[`698e44f8e7`](https://github.com/nodejs/node/commit/698e44f8e7)] - **(SEMVER-MINOR)** **test_runner**: add context.filePath (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853) ##### Commits - \[[`063f46dc2a`](https://github.com/nodejs/node/commit/063f46dc2a)] - **assert**: use isError instead of instanceof in innerOk (Pietro Marchini) [#&#8203;53980](https://github.com/nodejs/node/pull/53980) - \[[`10bea42f81`](https://github.com/nodejs/node/commit/10bea42f81)] - **build**: update gcovr to 7.2 and codecov config (Benjamin E. Coe) [#&#8203;54019](https://github.com/nodejs/node/pull/54019) - \[[`7c417c6cf4`](https://github.com/nodejs/node/commit/7c417c6cf4)] - **build**: avoid compiling with VS v17.10 (Hüseyin Açacak) [#&#8203;53863](https://github.com/nodejs/node/pull/53863) - \[[`ee97c045b4`](https://github.com/nodejs/node/commit/ee97c045b4)] - **build**: ensure v8\_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) [#&#8203;53884](https://github.com/nodejs/node/pull/53884) - \[[`bfbed0afd5`](https://github.com/nodejs/node/commit/bfbed0afd5)] - **build**: fix conflict gyp configs (Chengzhong Wu) [#&#8203;53605](https://github.com/nodejs/node/pull/53605) - \[[`0f1fe63e32`](https://github.com/nodejs/node/commit/0f1fe63e32)] - **build**: trigger coverage ci when updating codecov (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929) - \[[`ad62b945f0`](https://github.com/nodejs/node/commit/ad62b945f0)] - **build**: update codecov coverage build count (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929) - \[[`3c40868fd3`](https://github.com/nodejs/node/commit/3c40868fd3)] - **build**: disable test-asan workflow (Michaël Zasso) [#&#8203;53844](https://github.com/nodejs/node/pull/53844) - \[[`2a62d6ca57`](https://github.com/nodejs/node/commit/2a62d6ca57)] - **build, tools**: drop leading `/` from `r2dir` (Richard Lau) [#&#8203;53951](https://github.com/nodejs/node/pull/53951) - \[[`9c7b009f47`](https://github.com/nodejs/node/commit/9c7b009f47)] - **build,tools**: simplify upload of shasum signatures (Michaël Zasso) [#&#8203;53892](https://github.com/nodejs/node/pull/53892) - \[[`057bd44f9f`](https://github.com/nodejs/node/commit/057bd44f9f)] - **child_process**: fix incomplete prototype pollution hardening (Liran Tal) [#&#8203;53781](https://github.com/nodejs/node/pull/53781) - \[[`66f7c595c7`](https://github.com/nodejs/node/commit/66f7c595c7)] - **cli**: document `--inspect` port `0` behavior (Aviv Keller) [#&#8203;53782](https://github.com/nodejs/node/pull/53782) - \[[`fad3e74b47`](https://github.com/nodejs/node/commit/fad3e74b47)] - **console**: fix issues with frozen intrinsics (Vinicius Lourenço) [#&#8203;54070](https://github.com/nodejs/node/pull/54070) - \[[`e685ecd7ae`](https://github.com/nodejs/node/commit/e685ecd7ae)] - **deps**: update corepack to 0.29.3 (Node.js GitHub Bot) [#&#8203;54072](https://github.com/nodejs/node/pull/54072) - \[[`e5f7250e6d`](https://github.com/nodejs/node/commit/e5f7250e6d)] - **deps**: update amaro to 0.0.6 (Node.js GitHub Bot) [#&#8203;54199](https://github.com/nodejs/node/pull/54199) - \[[`2c1e9082e8`](https://github.com/nodejs/node/commit/2c1e9082e8)] - **deps**: update amaro to 0.0.5 (Node.js GitHub Bot) [#&#8203;54199](https://github.com/nodejs/node/pull/54199) - \[[`2d982d3dee`](https://github.com/nodejs/node/commit/2d982d3dee)] - **(SEMVER-MINOR)** **deps**: V8: backport [`7857eb3`](https://github.com/nodejs/node/commit/7857eb34db42) (Stephen Belanger) [#&#8203;53997](https://github.com/nodejs/node/pull/53997) - \[[`1061898462`](https://github.com/nodejs/node/commit/1061898462)] - **deps**: update c-ares to v1.32.3 (Node.js GitHub Bot) [#&#8203;54020](https://github.com/nodejs/node/pull/54020) - \[[`f4a7ac5e18`](https://github.com/nodejs/node/commit/f4a7ac5e18)] - **deps**: V8: cherry-pick [`35888fe`](https://github.com/nodejs/node/commit/35888fee7bba) (Joyee Cheung) [#&#8203;53728](https://github.com/nodejs/node/pull/53728) - \[[`1176310226`](https://github.com/nodejs/node/commit/1176310226)] - **deps**: add gn build files for ncrypto (Cheng) [#&#8203;53940](https://github.com/nodejs/node/pull/53940) - \[[`7a1d5a4f84`](https://github.com/nodejs/node/commit/7a1d5a4f84)] - **deps**: update c-ares to v1.32.2 (Node.js GitHub Bot) [#&#8203;53865](https://github.com/nodejs/node/pull/53865) - \[[`66f6a2aec9`](https://github.com/nodejs/node/commit/66f6a2aec9)] - **deps**: V8: cherry-pick [`9812cb4`](https://github.com/nodejs/node/commit/9812cb486e2b) (Michaël Zasso) [#&#8203;53966](https://github.com/nodejs/node/pull/53966) - \[[`8e66a18ef0`](https://github.com/nodejs/node/commit/8e66a18ef0)] - **deps**: start working on ncrypto dep (James M Snell) [#&#8203;53803](https://github.com/nodejs/node/pull/53803) - \[[`c114082b12`](https://github.com/nodejs/node/commit/c114082b12)] - **deps**: fix include_dirs of nbytes (Cheng) [#&#8203;53862](https://github.com/nodejs/node/pull/53862) - \[[`b7315281be`](https://github.com/nodejs/node/commit/b7315281be)] - **doc**: move numCPUs require to top of file in cluster CJS example (Alfredo González) [#&#8203;53932](https://github.com/nodejs/node/pull/53932) - \[[`8e7c30c2a4`](https://github.com/nodejs/node/commit/8e7c30c2a4)] - **doc**: update security-release process to automated one (Rafael Gonzaga) [#&#8203;53877](https://github.com/nodejs/node/pull/53877) - \[[`52a4206be2`](https://github.com/nodejs/node/commit/52a4206be2)] - **doc**: fix typo in technical-priorities.md (YoonSoo_Shin) [#&#8203;54094](https://github.com/nodejs/node/pull/54094) - \[[`30e18a04a3`](https://github.com/nodejs/node/commit/30e18a04a3)] - **doc**: fix typo in diagnostic tooling support tiers document (Taejin Kim) [#&#8203;54058](https://github.com/nodejs/node/pull/54058) - \[[`58aebfd31e`](https://github.com/nodejs/node/commit/58aebfd31e)] - **doc**: move GeoffreyBooth to TSC regular member (Geoffrey Booth) [#&#8203;54047](https://github.com/nodejs/node/pull/54047) - \[[`c1634c7213`](https://github.com/nodejs/node/commit/c1634c7213)] - **doc**: correct typescript stdin support (Marco Ippolito) [#&#8203;54036](https://github.com/nodejs/node/pull/54036) - \[[`64812d5c22`](https://github.com/nodejs/node/commit/64812d5c22)] - **doc**: fix typo in recognizing-contributors (Marco Ippolito) [#&#8203;53990](https://github.com/nodejs/node/pull/53990) - \[[`6b35994b6f`](https://github.com/nodejs/node/commit/6b35994b6f)] - **doc**: fix documentation for `--run` (Aviv Keller) [#&#8203;53976](https://github.com/nodejs/node/pull/53976) - \[[`04d203a233`](https://github.com/nodejs/node/commit/04d203a233)] - **doc**: update boxstarter README (Aviv Keller) [#&#8203;53785](https://github.com/nodejs/node/pull/53785) - \[[`86fa46db1c`](https://github.com/nodejs/node/commit/86fa46db1c)] - **doc**: add info about prefix-only modules to `module.builtinModules` (Grigory) [#&#8203;53954](https://github.com/nodejs/node/pull/53954) - \[[`defdc3c568`](https://github.com/nodejs/node/commit/defdc3c568)] - **doc**: remove `scroll-behavior: smooth;` (Cloyd Lau) [#&#8203;53942](https://github.com/nodejs/node/pull/53942) - \[[`e907236dd9`](https://github.com/nodejs/node/commit/e907236dd9)] - **doc**: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) [#&#8203;53926](https://github.com/nodejs/node/pull/53926) - \[[`8bf9960b98`](https://github.com/nodejs/node/commit/8bf9960b98)] - **doc**: add `--experimental-sqlite` note (Aviv Keller) [#&#8203;53907](https://github.com/nodejs/node/pull/53907) - \[[`d7615004d8`](https://github.com/nodejs/node/commit/d7615004d8)] - **doc**: update `api_assets` README for new files (Aviv Keller) [#&#8203;53676](https://github.com/nodejs/node/pull/53676) - \[[`63cf715aa0`](https://github.com/nodejs/node/commit/63cf715aa0)] - **doc**: add MattiasBuelens to collaborators (Mattias Buelens) [#&#8203;53895](https://github.com/nodejs/node/pull/53895) - \[[`5b8dd78112`](https://github.com/nodejs/node/commit/5b8dd78112)] - **doc**: fix release date for 22.5.0 (Antoine du Hamel) [#&#8203;53889](https://github.com/nodejs/node/pull/53889) - \[[`dd2c0f349a`](https://github.com/nodejs/node/commit/dd2c0f349a)] - **doc**: fix casing of GitHub handle for two collaborators (Antoine du Hamel) [#&#8203;53857](https://github.com/nodejs/node/pull/53857) - \[[`b47c2308e1`](https://github.com/nodejs/node/commit/b47c2308e1)] - **doc**: update release-post nodejs.org script (Rafael Gonzaga) [#&#8203;53762](https://github.com/nodejs/node/pull/53762) - \[[`88539527d5`](https://github.com/nodejs/node/commit/88539527d5)] - **doc, test**: tracing channel hasSubscribers getter (Thomas Hunter II) [#&#8203;52908](https://github.com/nodejs/node/pull/52908) - \[[`44a08f75b0`](https://github.com/nodejs/node/commit/44a08f75b0)] - **doc,tools**: enforce use of `node:` prefix (Antoine du Hamel) [#&#8203;53950](https://github.com/nodejs/node/pull/53950) - \[[`87bab76df2`](https://github.com/nodejs/node/commit/87bab76df2)] - **doc,tty**: add documentation for ReadStream and WriteStream (jakecastelli) [#&#8203;53567](https://github.com/nodejs/node/pull/53567) - \[[`dcca9ba560`](https://github.com/nodejs/node/commit/dcca9ba560)] - **esm**: refactor `get_format` (Antoine du Hamel) [#&#8203;53872](https://github.com/nodejs/node/pull/53872) - \[[`5e03c17aae`](https://github.com/nodejs/node/commit/5e03c17aae)] - **fs**: optimize `fs.cpSync` js calls (Yagiz Nizipli) [#&#8203;53614](https://github.com/nodejs/node/pull/53614) - \[[`e0054ee0a7`](https://github.com/nodejs/node/commit/e0054ee0a7)] - **fs**: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) [#&#8203;53776](https://github.com/nodejs/node/pull/53776) - \[[`8086337ea9`](https://github.com/nodejs/node/commit/8086337ea9)] - **fs**: remove unnecessary option argument validation (Jonas) [#&#8203;53861](https://github.com/nodejs/node/pull/53861) - \[[`b377b93a3f`](https://github.com/nodejs/node/commit/b377b93a3f)] - **fs**: correctly pass dirent to exclude `withFileTypes` (RedYetiDev) [#&#8203;53823](https://github.com/nodejs/node/pull/53823) - \[[`68e444d2d8`](https://github.com/nodejs/node/commit/68e444d2d8)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054) - \[[`de1fbc292f`](https://github.com/nodejs/node/commit/de1fbc292f)] - **(SEMVER-MINOR)** **inspector**: add initial support for network inspection (Kohei Ueno) [#&#8203;53593](https://github.com/nodejs/node/pull/53593) - \[[`744df0be24`](https://github.com/nodejs/node/commit/744df0be24)] - **lib**: support dynamic trace events on debugWithTimer (Vinicius Lourenço) [#&#8203;53913](https://github.com/nodejs/node/pull/53913) - \[[`546dab29c1`](https://github.com/nodejs/node/commit/546dab29c1)] - **lib**: optimize copyError with ObjectAssign in primordials (HEESEUNG) [#&#8203;53999](https://github.com/nodejs/node/pull/53999) - \[[`494df9835a`](https://github.com/nodejs/node/commit/494df9835a)] - **lib**: improve cluster/primary code (Ehsan Khakifirooz) [#&#8203;53756](https://github.com/nodejs/node/pull/53756) - \[[`03f353293b`](https://github.com/nodejs/node/commit/03f353293b)] - **lib**: improve error message when index not found on cjs (Vinicius Lourenço) [#&#8203;53859](https://github.com/nodejs/node/pull/53859) - \[[`d8375d6236`](https://github.com/nodejs/node/commit/d8375d6236)] - **lib**: decorate async stack trace in source maps (Chengzhong Wu) [#&#8203;53860](https://github.com/nodejs/node/pull/53860) - \[[`15a94e67b1`](https://github.com/nodejs/node/commit/15a94e67b1)] - **lib,src**: drop --experimental-network-imports (Rafael Gonzaga) [#&#8203;53822](https://github.com/nodejs/node/pull/53822) - \[[`a6eedc401d`](https://github.com/nodejs/node/commit/a6eedc401d)] - **meta**: add `sqlite` to js subsystems (Alex Yang) [#&#8203;53911](https://github.com/nodejs/node/pull/53911) - \[[`21098856de`](https://github.com/nodejs/node/commit/21098856de)] - **meta**: move tsc member to emeritus (Michael Dawson) [#&#8203;54029](https://github.com/nodejs/node/pull/54029) - \[[`048d421ad1`](https://github.com/nodejs/node/commit/048d421ad1)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004) - \[[`20a8c96c41`](https://github.com/nodejs/node/commit/20a8c96c41)] - **meta**: remove license for hljs (Aviv Keller) [#&#8203;53970](https://github.com/nodejs/node/pull/53970) - \[[`2fd4ac4859`](https://github.com/nodejs/node/commit/2fd4ac4859)] - **meta**: make more bug-report information required (Aviv Keller) [#&#8203;53718](https://github.com/nodejs/node/pull/53718) - \[[`b312ec0b0c`](https://github.com/nodejs/node/commit/b312ec0b0c)] - **meta**: reword linter messages (Aviv Keller) [#&#8203;53949](https://github.com/nodejs/node/pull/53949) - \[[`d2526126a9`](https://github.com/nodejs/node/commit/d2526126a9)] - **meta**: store actions secrets in environment (Aviv Keller) [#&#8203;53930](https://github.com/nodejs/node/pull/53930) - \[[`1688f00dce`](https://github.com/nodejs/node/commit/1688f00dce)] - **meta**: move anonrig to tsc voting members (Yagiz Nizipli) [#&#8203;53888](https://github.com/nodejs/node/pull/53888) - \[[`c20e8418de`](https://github.com/nodejs/node/commit/c20e8418de)] - **module**: fix strip-types interaction with detect-module (Marco Ippolito) [#&#8203;54164](https://github.com/nodejs/node/pull/54164) - \[[`ab1f0b415f`](https://github.com/nodejs/node/commit/ab1f0b415f)] - **module**: fix extensionless typescript in cjs loader (Marco Ippolito) [#&#8203;54062](https://github.com/nodejs/node/pull/54062) - \[[`92439fc160`](https://github.com/nodejs/node/commit/92439fc160)] - **(SEMVER-MINOR)** **module**: add --experimental-strip-types (Marco Ippolito) [#&#8203;53725](https://github.com/nodejs/node/pull/53725) - \[[`f755d31bec`](https://github.com/nodejs/node/commit/f755d31bec)] - **node-api**: add property keys benchmark (Chengzhong Wu) [#&#8203;54012](https://github.com/nodejs/node/pull/54012) - \[[`7382eefae5`](https://github.com/nodejs/node/commit/7382eefae5)] - **node-api**: rename nogc to basic (Gabriel Schulhof) [#&#8203;53830](https://github.com/nodejs/node/pull/53830) - \[[`2c4470625b`](https://github.com/nodejs/node/commit/2c4470625b)] - **process**: unify experimental warning messages (Aviv Keller) [#&#8203;53704](https://github.com/nodejs/node/pull/53704) - \[[`98a7ad2e0d`](https://github.com/nodejs/node/commit/98a7ad2e0d)] - **src**: expose LookupAndCompile with parameters (Shelley Vohr) [#&#8203;53886](https://github.com/nodejs/node/pull/53886) - \[[`dd3c66be0a`](https://github.com/nodejs/node/commit/dd3c66be0a)] - **src**: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) [#&#8203;53890](https://github.com/nodejs/node/pull/53890) - \[[`ee82f224ff`](https://github.com/nodejs/node/commit/ee82f224ff)] - **src**: remove redundant RsaPointer (use RSAPointer) (James M Snell) [#&#8203;54003](https://github.com/nodejs/node/pull/54003) - \[[`2d77bd2929`](https://github.com/nodejs/node/commit/2d77bd2929)] - **src**: fix -Wshadow warning (Shelley Vohr) [#&#8203;53885](https://github.com/nodejs/node/pull/53885) - \[[`bd4a9ffe8c`](https://github.com/nodejs/node/commit/bd4a9ffe8c)] - **src**: start using ncrypto for CSPRNG calls (James M Snell) [#&#8203;53984](https://github.com/nodejs/node/pull/53984) - \[[`3fdcf7a47d`](https://github.com/nodejs/node/commit/3fdcf7a47d)] - **src**: return `undefined` if no rows are returned in SQLite (Deokjin Kim) [#&#8203;53981](https://github.com/nodejs/node/pull/53981) - \[[`ca6854443d`](https://github.com/nodejs/node/commit/ca6854443d)] - **src**: fix slice of slice of file-backed Blob (Josh Lee) [#&#8203;53972](https://github.com/nodejs/node/pull/53972) - \[[`c457f9ed5a`](https://github.com/nodejs/node/commit/c457f9ed5a)] - **src**: cache invariant code motion (Rafael Gonzaga) [#&#8203;53879](https://github.com/nodejs/node/pull/53879) - \[[`fd0da6c2cf`](https://github.com/nodejs/node/commit/fd0da6c2cf)] - **src**: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53813](https://github.com/nodejs/node/pull/53813) - \[[`fbf74bcf99`](https://github.com/nodejs/node/commit/fbf74bcf99)] - **src**: switch from ToLocalChecked to ToLocal in node_webstorage (James M Snell) [#&#8203;53959](https://github.com/nodejs/node/pull/53959) - \[[`04bb6778e5`](https://github.com/nodejs/node/commit/04bb6778e5)] - **src**: move `ToNamespacedPath` call of webstorage (Yagiz Nizipli) [#&#8203;53875](https://github.com/nodejs/node/pull/53875) - \[[`9ffaf763e9`](https://github.com/nodejs/node/commit/9ffaf763e9)] - **src**: use Maybe\<void> in SecureContext (Tobias Nießen) [#&#8203;53883](https://github.com/nodejs/node/pull/53883) - \[[`a94c3ae06f`](https://github.com/nodejs/node/commit/a94c3ae06f)] - **src**: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) [#&#8203;53869](https://github.com/nodejs/node/pull/53869) - \[[`55461be05f`](https://github.com/nodejs/node/commit/55461be05f)] - **src**: refactor webstorage implementation (Yagiz Nizipli) [#&#8203;53876](https://github.com/nodejs/node/pull/53876) - \[[`c53cf449a6`](https://github.com/nodejs/node/commit/c53cf449a6)] - **src**: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) [#&#8203;53786](https://github.com/nodejs/node/pull/53786) - \[[`bac3a485f6`](https://github.com/nodejs/node/commit/bac3a485f6)] - **src**: fix potential segmentation fault in SQLite (Tobias Nießen) [#&#8203;53850](https://github.com/nodejs/node/pull/53850) - \[[`df5083e5f9`](https://github.com/nodejs/node/commit/df5083e5f9)] - **src,lib**: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) [#&#8203;53602](https://github.com/nodejs/node/pull/53602) - \[[`8664b9ad60`](https://github.com/nodejs/node/commit/8664b9ad60)] - **src,test**: disallow unsafe integer coercion in SQLite (Tobias Nießen) [#&#8203;53851](https://github.com/nodejs/node/pull/53851) - \[[`15816bd0dd`](https://github.com/nodejs/node/commit/15816bd0dd)] - **(SEMVER-MINOR)** **stream**: expose DuplexPair API (Austin Wright) [#&#8203;34111](https://github.com/nodejs/node/pull/34111) - \[[`718f6bc78c`](https://github.com/nodejs/node/commit/718f6bc78c)] - **test**: do not swallow uncaughtException errors in exit code tests (Meghan Denny) [#&#8203;54039](https://github.com/nodejs/node/pull/54039) - \[[`c6656c9251`](https://github.com/nodejs/node/commit/c6656c9251)] - **test**: move shared module to `test/common` (Rich Trott) [#&#8203;54042](https://github.com/nodejs/node/pull/54042) - \[[`e471e32d46`](https://github.com/nodejs/node/commit/e471e32d46)] - **test**: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) [#&#8203;53996](https://github.com/nodejs/node/pull/53996) - \[[`61971ec929`](https://github.com/nodejs/node/commit/61971ec929)] - **test**: remove unnecessary console log (KAYYY) [#&#8203;53812](https://github.com/nodejs/node/pull/53812) - \[[`1344bd2d6f`](https://github.com/nodejs/node/commit/1344bd2d6f)] - **test**: add comments and rename test for timer robustness (Rich Trott) [#&#8203;54008](https://github.com/nodejs/node/pull/54008) - \[[`da3573409c`](https://github.com/nodejs/node/commit/da3573409c)] - **test**: add test for one arg timers to increase coverage (Carlos Espa) [#&#8203;54007](https://github.com/nodejs/node/pull/54007) - \[[`fc67abd97e`](https://github.com/nodejs/node/commit/fc67abd97e)] - **test**: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) [#&#8203;54031](https://github.com/nodejs/node/pull/54031) - \[[`aa0ac3b57c`](https://github.com/nodejs/node/commit/aa0ac3b57c)] - **test**: mark test-pipe-file-to-http as flaky (jakecastelli) [#&#8203;53751](https://github.com/nodejs/node/pull/53751) - \[[`52bc8ec360`](https://github.com/nodejs/node/commit/52bc8ec360)] - **test**: compare paths on Windows without considering case (Early Riser) [#&#8203;53993](https://github.com/nodejs/node/pull/53993) - \[[`7e8a609579`](https://github.com/nodejs/node/commit/7e8a609579)] - **test**: skip sea tests in large debug builds (Chengzhong Wu) [#&#8203;53918](https://github.com/nodejs/node/pull/53918) - \[[`30a94ca0c4`](https://github.com/nodejs/node/commit/30a94ca0c4)] - **test**: skip --title check on IBM i (Abdirahim Musse) [#&#8203;53952](https://github.com/nodejs/node/pull/53952) - \[[`5cea7ed706`](https://github.com/nodejs/node/commit/5cea7ed706)] - **test**: reduce flakiness of `test-assert-esm-cjs-message-verify` (Antoine du Hamel) [#&#8203;53967](https://github.com/nodejs/node/pull/53967) - \[[`58cb0dd8a6`](https://github.com/nodejs/node/commit/58cb0dd8a6)] - **test**: use `PYTHON` executable from env in `assertSnapshot` (Antoine du Hamel) [#&#8203;53938](https://github.com/nodejs/node/pull/53938) - \[[`c247582591`](https://github.com/nodejs/node/commit/c247582591)] - **test**: deflake test-blob-file-backed (Luigi Pinca) [#&#8203;53920](https://github.com/nodejs/node/pull/53920) - \[[`3999021653`](https://github.com/nodejs/node/commit/3999021653)] - **test_runner**: switched to internal readline interface (Emil Tayeb) [#&#8203;54000](https://github.com/nodejs/node/pull/54000) - \[[`3fb97a90ee`](https://github.com/nodejs/node/commit/3fb97a90ee)] - **test_runner**: remove redundant bootstrap boolean (Colin Ihrig) [#&#8203;54013](https://github.com/nodejs/node/pull/54013) - \[[`edd80e2bdc`](https://github.com/nodejs/node/commit/edd80e2bdc)] - **test_runner**: do not throw on mocked clearTimeout() (Aksinya Bykova) [#&#8203;54005](https://github.com/nodejs/node/pull/54005) - \[[`893c864542`](https://github.com/nodejs/node/commit/893c864542)] - **(SEMVER-MINOR)** **test_runner**: fix support watch with run(), add globPatterns option (Matteo Collina) [#&#8203;53866](https://github.com/nodejs/node/pull/53866) - \[[`4887213f2e`](https://github.com/nodejs/node/commit/4887213f2e)] - **test_runner**: added colors to dot reporter (Giovanni) [#&#8203;53450](https://github.com/nodejs/node/pull/53450) - \[[`c4848c53e6`](https://github.com/nodejs/node/commit/c4848c53e6)] - **test_runner**: cleanup global event listeners after run (Eddie Abbondanzio) [#&#8203;53878](https://github.com/nodejs/node/pull/53878) - \[[`876e7b3226`](https://github.com/nodejs/node/commit/876e7b3226)] - **test_runner**: refactor coverage to pass in config options (Colin Ihrig) [#&#8203;53931](https://github.com/nodejs/node/pull/53931) - \[[`f45edb4b5e`](https://github.com/nodejs/node/commit/f45edb4b5e)] - **test_runner**: refactor and simplify internals (Colin Ihrig) [#&#8203;53921](https://github.com/nodejs/node/pull/53921) - \[[`6ad6e01bf3`](https://github.com/nodejs/node/commit/6ad6e01bf3)] - **(SEMVER-MINOR)** **test_runner**: refactor snapshots to get file from context (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853) - \[[`698e44f8e7`](https://github.com/nodejs/node/commit/698e44f8e7)] - **(SEMVER-MINOR)** **test_runner**: add context.filePath (Colin Ihrig) [#&#8203;53853](https://github.com/nodejs/node/pull/53853) - \[[`97da7ca11b`](https://github.com/nodejs/node/commit/97da7ca11b)] - **test_runner**: consolidate option parsing (Colin Ihrig) [#&#8203;53849](https://github.com/nodejs/node/pull/53849) - \[[`43afcbf9dd`](https://github.com/nodejs/node/commit/43afcbf9dd)] - **tools**: fix `SLACK_TITLE` in invalid commit workflow (Antoine du Hamel) [#&#8203;53912](https://github.com/nodejs/node/pull/53912) - \[[`eed0963391`](https://github.com/nodejs/node/commit/eed0963391)] - **typings**: apply lint (1ilsang) [#&#8203;54065](https://github.com/nodejs/node/pull/54065) - \[[`e8ea49b256`](https://github.com/nodejs/node/commit/e8ea49b256)] - **typings**: fix typo on quic onSessionDatagram (1ilsang) [#&#8203;54064](https://github.com/nodejs/node/pull/54064) ### [`v22.5.1`](https://github.com/nodejs/node/releases/tag/v22.5.1): 2024-07-19, Version 22.5.1 (Current), @&#8203;richardlau [Compare Source](https://github.com/nodejs/node/compare/v22.5.0...v22.5.1) ##### Notable Changes This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms: - Crash with `FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available` [#&#8203;53902](https://github.com/nodejs/node/issues/53902) - npm errors with `npm error Exit handler never called!` [npm/cli#7657](https://github.com/npm/cli/issues/7657) - yarn hangs or outputs `Usage Error: Couldn't find the node_modules state file - running an install might help (findPackageLocation)` [yarnpkg/berry#6398](https://github.com/yarnpkg/berry/issues/6398) ##### Commits - \[[`e2deeedc6e`](https://github.com/nodejs/node/commit/e2deeedc6e)] - ***Revert*** "**fs**: add v8 fast api to closeSync" (Aviv Keller) [#&#8203;53904](https://github.com/nodejs/node/pull/53904) ### [`v22.5.0`](https://github.com/nodejs/node/releases/tag/v22.5.0): 2024-07-17, Version 22.5.0 (Current), @&#8203;RafaelGSS prepared by @&#8203;aduh95 [Compare Source](https://github.com/nodejs/node/compare/v22.4.1...v22.5.0) ##### Notable Changes - \[[`1367c5558e`](https://github.com/nodejs/node/commit/1367c5558e)] - **(SEMVER-MINOR)** **http**: expose websockets (Natalia Venditto) [#&#8203;53721](https://github.com/nodejs/node/pull/53721) - \[[`b31394920d`](https://github.com/nodejs/node/commit/b31394920d)] - **(SEMVER-MINOR)** **lib**: add `node:sqlite` module (Colin Ihrig) [#&#8203;53752](https://github.com/nodejs/node/pull/53752) - \[[`aa7df9551d`](https://github.com/nodejs/node/commit/aa7df9551d)] - **module**: add `__esModule` to `require()`'d ESM (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166) - \[[`8743c4d65a`](https://github.com/nodejs/node/commit/8743c4d65a)] - **(SEMVER-MINOR)** **path**: add `matchesGlob` method (Aviv Keller) [#&#8203;52881](https://github.com/nodejs/node/pull/52881) - \[[`77936c3d24`](https://github.com/nodejs/node/commit/77936c3d24)] - **(SEMVER-MINOR)** **process**: port on-exit-leak-free to core (Vinicius Lourenço) [#&#8203;53239](https://github.com/nodejs/node/pull/53239) - \[[`82d88a83f8`](https://github.com/nodejs/node/commit/82d88a83f8)] - **(SEMVER-MINOR)** **stream**: pipeline wait for close before calling the callback (jakecastelli) [#&#8203;53462](https://github.com/nodejs/node/pull/53462) - \[[`3a0fcbb17a`](https://github.com/nodejs/node/commit/3a0fcbb17a)] - **test_runner**: support glob matching coverage files (Aviv Keller) [#&#8203;53553](https://github.com/nodejs/node/pull/53553) - \[[`22ca334090`](https://github.com/nodejs/node/commit/22ca334090)] - **(SEMVER-MINOR)** **worker**: add `postMessageToThread` (Paolo Insogna) [#&#8203;53682](https://github.com/nodejs/node/pull/53682) ##### Commits - \[[`eb4e370933`](https://github.com/nodejs/node/commit/eb4e370933)] - **benchmark**: add require-esm benchmark (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166) - \[[`4d4a8338db`](https://github.com/nodejs/node/commit/4d4a8338db)] - **benchmark**: add cpSync benchmark (Yagiz Nizipli) [#&#8203;53612](https://github.com/nodejs/node/pull/53612) - \[[`3d60b38afa`](https://github.com/nodejs/node/commit/3d60b38afa)] - **build**: fix build warning of c-ares under GN build (Cheng) [#&#8203;53750](https://github.com/nodejs/node/pull/53750) - \[[`a45c801048`](https://github.com/nodejs/node/commit/a45c801048)] - **build**: fix build error in sqlite under GN build (Cheng) [#&#8203;53686](https://github.com/nodejs/node/pull/53686) - \[[`40032eb623`](https://github.com/nodejs/node/commit/40032eb623)] - **build**: add gn files for deps/nbytes (Cheng) [#&#8203;53685](https://github.com/nodejs/node/pull/53685) - \[[`082799debb`](https://github.com/nodejs/node/commit/082799debb)] - **build**: fix mac build error of c-ares under GN (Cheng) [#&#8203;53687](https://github.com/nodejs/node/pull/53687) - \[[`b05394ea6a`](https://github.com/nodejs/node/commit/b05394ea6a)] - **build**: add version-specific library path for AIX (Richard Lau) [#&#8203;53585](https://github.com/nodejs/node/pull/53585) - \[[`6237172eaf`](https://github.com/nodejs/node/commit/6237172eaf)] - **cli**: update `node.1` to reflect Atom's sunset (Aviv Keller) [#&#8203;53734](https://github.com/nodejs/node/pull/53734) - \[[`5697938cb7`](https://github.com/nodejs/node/commit/5697938cb7)] - **crypto**: avoid std::function (Tobias Nießen) [#&#8203;53683](https://github.com/nodejs/node/pull/53683) - \[[`3cc01aa314`](https://github.com/nodejs/node/commit/3cc01aa314)] - **crypto**: make deriveBits length parameter optional and nullable (Filip Skokan) [#&#8203;53601](https://github.com/nodejs/node/pull/53601) - \[[`f82e20fdea`](https://github.com/nodejs/node/commit/f82e20fdea)] - **crypto**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53460](https://github.com/nodejs/node/pull/53460) - \[[`ad1e5610ec`](https://github.com/nodejs/node/commit/ad1e5610ec)] - **deps**: update googletest to [`4b21f1a`](https://github.com/nodejs/node/commit/4b21f1a) (Node.js GitHub Bot) [#&#8203;53842](https://github.com/nodejs/node/pull/53842) - \[[`d285d610a0`](https://github.com/nodejs/node/commit/d285d610a0)] - **deps**: update minimatch to 10.0.1 (Node.js GitHub Bot) [#&#8203;53841](https://github.com/nodejs/node/pull/53841) - \[[`70f5209c9f`](https://github.com/nodejs/node/commit/70f5209c9f)] - **deps**: update corepack to 0.29.2 (Node.js GitHub Bot) [#&#8203;53838](https://github.com/nodejs/node/pull/53838) - \[[`4930e12a45`](https://github.com/nodejs/node/commit/4930e12a45)] - **deps**: update simdutf to 5.3.0 (Node.js GitHub Bot) [#&#8203;53837](https://github.com/nodejs/node/pull/53837) - \[[`d346833364`](https://github.com/nodejs/node/commit/d346833364)] - **deps**: update ada to 2.9.0 (Node.js GitHub Bot) [#&#8203;53748](https://github.com/nodejs/node/pull/53748) - \[[`ab8abb5367`](https://github.com/nodejs/node/commit/ab8abb5367)] - **deps**: upgrade npm to 10.8.2 (npm team) [#&#8203;53799](https://github.com/nodejs/node/pull/53799) - \[[`1ad664905a`](https://github.com/nodejs/node/commit/1ad664905a)] - **deps**: update nbytes and add update script (Yagiz Nizipli) [#&#8203;53790](https://github.com/nodejs/node/pull/53790) - \[[`a66f11e798`](https://github.com/nodejs/node/commit/a66f11e798)] - **deps**: update googletest to [`34ad51b`](https://github.com/nodejs/node/commit/34ad51b) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157) - \[[`9bf61d6a0d`](https://github.com/nodejs/node/commit/9bf61d6a0d)] - **deps**: update googletest to [`305e5a2`](https://github.com/nodejs/node/commit/305e5a2) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157) - \[[`8542ace488`](https://github.com/nodejs/node/commit/8542ace488)] - **deps**: V8: cherry-pick [`9ebca66`](https://github.com/nodejs/node/commit/9ebca66a5740) (Chengzhong Wu) [#&#8203;53755](https://github.com/nodejs/node/pull/53755) - \[[`29a734c21d`](https://github.com/nodejs/node/commit/29a734c21d)] - **deps**: V8: cherry-pick [`e061cf9`](https://github.com/nodejs/node/commit/e061cf9970d9) (Joyee Cheung) [#&#8203;53755](https://github.com/nodejs/node/pull/53755) - \[[`c7624af44a`](https://github.com/nodejs/node/commit/c7624af44a)] - **deps**: update c-ares to v1.32.1 (Node.js GitHub Bot) [#&#8203;53753](https://github.com/nodejs/node/pull/53753) - \[[`bbcec9e129`](https://github.com/nodejs/node/commit/bbcec9e129)] - **deps**: update minimatch to 9.0.5 (Node.js GitHub Bot) [#&#8203;53646](https://github.com/nodejs/node/pull/53646) - \[[`76032fd980`](https://github.com/nodejs/node/commit/76032fd980)] - **deps**: update c-ares to v1.32.0 (Node.js GitHub Bot) [#&#8203;53722](https://github.com/nodejs/node/pull/53722) - \[[`26386046ad`](https://github.com/nodejs/node/commit/26386046ad)] - **doc**: move MylesBorins to emeritus (Myles Borins) [#&#8203;53760](https://github.com/nodejs/node/pull/53760) - \[[`362875bda0`](https://github.com/nodejs/node/commit/362875bda0)] - **doc**: add Rafael to the last security release (Rafael Gonzaga) [#&#8203;53769](https://github.com/nodejs/node/pull/53769) - \[[`a1a5ad848d`](https://github.com/nodejs/node/commit/a1a5ad848d)] - **doc**: use mock.callCount() in examples (Sébastien Règne) [#&#8203;53754](https://github.com/nodejs/node/pull/53754) - \[[`bb960c5471`](https://github.com/nodejs/node/commit/bb960c5471)] - **doc**: clarify authenticity of plaintexts in update (Tobias Nießen) [#&#8203;53784](https://github.com/nodejs/node/pull/53784) - \[[`5dd3018eb4`](https://github.com/nodejs/node/commit/5dd3018eb4)] - **doc**: add option to have support me link (Michael Dawson) [#&#8203;53312](https://github.com/nodejs/node/pull/53312) - \[[`0f95ad3d7d`](https://github.com/nodejs/node/commit/0f95ad3d7d)] - **doc**: add OpenSSL security level to TLS docs (Afanasii Kurakin) [#&#8203;53647](https://github.com/nodejs/node/pull/53647) - \[[`2d92ec2831`](https://github.com/nodejs/node/commit/2d92ec2831)] - **doc**: update `scroll-padding-top` to 4rem (Cloyd Lau) [#&#8203;53662](https://github.com/nodejs/node/pull/53662) - \[[`933359a786`](https://github.com/nodejs/node/commit/933359a786)] - **doc**: mention v8.setFlagsFromString to pm (Rafael Gonzaga) [#&#8203;53731](https://github.com/nodejs/node/pull/53731) - \[[`e17c2618e3`](https://github.com/nodejs/node/commit/e17c2618e3)] - **doc**: remove the last \<pre> tag (Claudio W) [#&#8203;53741](https://github.com/nodejs/node/pull/53741) - \[[`7f18a5f47a`](https://github.com/nodejs/node/commit/7f18a5f47a)] - **doc**: exclude voting and regular TSC from spotlight (Michael Dawson) [#&#8203;53694](https://github.com/nodejs/node/pull/53694) - \[[`df3dcd1bd1`](https://github.com/nodejs/node/commit/df3dcd1bd1)] - **doc**: fix releases guide for recent Git versions (Michaël Zasso) [#&#8203;53709](https://github.com/nodejs/node/pull/53709) - \[[`50987ea833`](https://github.com/nodejs/node/commit/50987ea833)] - **doc**: require `node:process` in assert doc examples (Alfredo González) [#&#8203;53702](https://github.com/nodejs/node/pull/53702) - \[[`fa58d01497`](https://github.com/nodejs/node/commit/fa58d01497)] - **doc**: add additional explanation to the wildcard section in permissions (jakecastelli) [#&#8203;53664](https://github.com/nodejs/node/pull/53664) - \[[`28bf1e48ef`](https://github.com/nodejs/node/commit/28bf1e48ef)] - **doc**: mark NODE_MODULE_VERSION for Node.js 22.0.0 (Michaël Zasso) [#&#8203;53650](https://github.com/nodejs/node/pull/53650) - \[[`1cc0b41f00`](https://github.com/nodejs/node/commit/1cc0b41f00)] - **doc**: include node.module_timer on available categories (Vinicius Lourenço) [#&#8203;53638](https://github.com/nodejs/node/pull/53638) - \[[`d224e9eab5`](https://github.com/nodejs/node/commit/d224e9eab5)] - **doc**: fix module customization hook examples (Elliot Goodrich) [#&#8203;53637](https://github.com/nodejs/node/pull/53637) - \[[`2cf60964e6`](https://github.com/nodejs/node/commit/2cf60964e6)] - **doc**: fix doc for correct usage with plan & TestContext (Emil Tayeb) [#&#8203;53615](https://github.com/nodejs/node/pull/53615) - \[[`6df86ae056`](https://github.com/nodejs/node/commit/6df86ae056)] - **doc**: remove some news issues that are no longer (Michael Dawson) [#&#8203;53608](https://github.com/nodejs/node/pull/53608) - \[[`42b9408f3e`](https://github.com/nodejs/node/commit/42b9408f3e)] - **doc**: add issue for news from ambassadors (Michael Dawson) [#&#8203;53607](https://github.com/nodejs/node/pull/53607) - \[[`2d1ff91953`](https://github.com/nodejs/node/commit/2d1ff91953)] - **doc**: add esm example for os (Leonardo Peixoto) [#&#8203;53604](https://github.com/nodejs/node/pull/53604) - \[[`de99d69d75`](https://github.com/nodejs/node/commit/de99d69d75)] - **doc**: clarify usage of coverage reporters (Eliphaz Bouye) [#&#8203;53523](https://github.com/nodejs/node/pull/53523) - \[[`519c328dcf`](https://github.com/nodejs/node/commit/519c328dcf)] - **doc**: document addition testing options (Aviv Keller) [#&#8203;53569](https://github.com/nodejs/node/pull/53569) - \[[`c6166cdfe4`](https://github.com/nodejs/node/commit/c6166cdfe4)] - **doc**: clarify that fs.exists() may return false for existing symlink (Tobias Nießen) [#&#8203;53566](https://github.com/nodejs/node/pull/53566) - \[[`9139ab2848`](https://github.com/nodejs/node/commit/9139ab2848)] - **doc**: note http.closeAllConnections excludes upgraded sockets (Rob Hogan) [#&#8203;53560](https://github.com/nodejs/node/pull/53560) - \[[`19b3718ee1`](https://github.com/nodejs/node/commit/19b3718ee1)] - **doc, meta**: add PTAL to glossary (Aviv Keller) [#&#8203;53770](https://github.com/nodejs/node/pull/53770) - \[[`80c1f5ce8a`](https://github.com/nodejs/node/commit/80c1f5ce8a)] - **doc, typings**: events.once accepts symbol event type (René) [#&#8203;53542](https://github.com/nodejs/node/pull/53542) - \[[`1a21e0f61e`](https://github.com/nodejs/node/commit/1a21e0f61e)] - **esm**: improve `defaultResolve` performance (Yagiz Nizipli) [#&#8203;53711](https://github.com/nodejs/node/pull/53711) - \[[`262f2cb3b6`](https://github.com/nodejs/node/commit/262f2cb3b6)] - **esm**: remove unnecessary toNamespacedPath calls (Yagiz Nizipli) [#&#8203;53656](https://github.com/nodejs/node/pull/53656) - \[[`e29c9453a9`](https://github.com/nodejs/node/commit/e29c9453a9)] - **esm**: move hooks test with others (Geoffrey Booth) [#&#8203;53558](https://github.com/nodejs/node/pull/53558) - \[[`8368555289`](https://github.com/nodejs/node/commit/8368555289)] - **fs**: add v8 fast api to closeSync (Yagiz Nizipli) [#&#8203;53627](https://github.com/nodejs/node/pull/53627) - \[[`628a539810`](https://github.com/nodejs/node/commit/628a539810)] - **fs**: reduce throwing unnecessary errors on glob (Yagiz Nizipli) [#&#8203;53632](https://github.com/nodejs/node/pull/53632) - \[[`076e82ca40`](https://github.com/nodejs/node/commit/076e82ca40)] - **fs**: move `ToNamespacedPath` dir calls to c++ (Yagiz Nizipli) [#&#8203;53630](https://github.com/nodejs/node/pull/53630) - \[[`128e514d81`](https://github.com/nodejs/node/commit/128e514d81)] - **fs**: improve error performance of `fs.dir` (Yagiz Nizipli) [#&#8203;53667](https://github.com/nodejs/node/pull/53667) - \[[`603c2c5c08`](https://github.com/nodejs/node/commit/603c2c5c08)] - **fs**: fix typings (Yagiz Nizipli) [#&#8203;53626](https://github.com/nodejs/node/pull/53626) - \[[`1367c5558e`](https://github.com/nodejs/node/commit/1367c5558e)] - **(SEMVER-MINOR)** **http**: expose websockets (Natalia Venditto) [#&#8203;53721](https://github.com/nodejs/node/pull/53721) - \[[`7debb6c36e`](https://github.com/nodejs/node/commit/7debb6c36e)] - **http**: remove prototype primordials (Antoine du Hamel) [#&#8203;53698](https://github.com/nodejs/node/pull/53698) - \[[`b13aea5698`](https://github.com/nodejs/node/commit/b13aea5698)] - **http, readline**: replace sort with toSorted (Benjamin Gruenbaum) [#&#8203;53623](https://github.com/nodejs/node/pull/53623) - \[[`1397f5d9f4`](https://github.com/nodejs/node/commit/1397f5d9f4)] - **http2**: remove prototype primordials (Antoine du Hamel) [#&#8203;53696](https://github.com/nodejs/node/pull/53696) - \[[`f57d3cee2c`](https://github.com/nodejs/node/commit/f57d3cee2c)] - **lib**: make navigator not runtime-lookup process.version/arch/platform (Jordan Harband) [#&#8203;53765](https://github.com/nodejs/node/pull/53765) - \[[`0a01abbd45`](https://github.com/nodejs/node/commit/0a01abbd45)] - **lib**: refactor `platform` utility methods (Daniel Bayley) [#&#8203;53817](https://github.com/nodejs/node/pull/53817) - \[[`afe7f4f819`](https://github.com/nodejs/node/commit/afe7f4f819)] - **lib**: remove path.resolve from permissions.js (Rafael Gonzaga) [#&#8203;53729](https://github.com/nodejs/node/pull/53729) - \[[`cbe77b30ca`](https://github.com/nodejs/node/commit/cbe77b30ca)] - **lib**: move `ToNamespacedPath` call to c++ (Yagiz Nizipli) [#&#8203;53654](https://github.com/nodejs/node/pull/53654) - \[[`0f146aac2c`](https://github.com/nodejs/node/commit/0f146aac2c)] - **lib**: make navigator properties lazy (James M Snell) [#&#8203;53649](https://github.com/nodejs/node/pull/53649) - \[[`0540308bd7`](https://github.com/nodejs/node/commit/0540308bd7)] - **lib**: add toJSON to PerformanceMeasure (theanarkh) [#&#8203;53603](https://github.com/nodejs/node/pull/53603) - \[[`b31394920d`](https://github.com/nodejs/node/commit/b31394920d)] - **(SEMVER-MINOR)** **lib,src,test,doc**: add node:sqlite module (Colin Ihrig) [#&#8203;53752](https://github.com/nodejs/node/pull/53752) - \[[`1a7c2dc5ea`](https://github.com/nodejs/node/commit/1a7c2dc5ea)] - **meta**: remove redudant logging from dep updaters (Aviv Keller) [#&#8203;53783](https://github.com/nodejs/node/pull/53783) - \[[`ac5d7b709d`](https://github.com/nodejs/node/commit/ac5d7b709d)] - **meta**: change email address of anonrig (Yagiz Nizipli) [#&#8203;53829](https://github.com/nodejs/node/pull/53829) - \[[`085ec5533c`](https://github.com/nodejs/node/commit/085ec5533c)] - **meta**: add `node_sqlite.c` to PR label config (Aviv Keller) [#&#8203;53797](https://github.com/nodejs/node/pull/53797) - \[[`c68d873e99`](https://github.com/nodejs/node/commit/c68d873e99)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53758](https://github.com/nodejs/node/pull/53758) - \[[`5ae8ea489d`](https://github.com/nodejs/node/commit/5ae8ea489d)] - **meta**: use HTML entities in commit-queue comment (Aviv Keller) [#&#8203;53744](https://github.com/nodejs/node/pull/53744) - \[[`ecd8fceb68`](https://github.com/nodejs/node/commit/ecd8fceb68)] - **meta**: move regular TSC member to emeritus (Michael Dawson) [#&#8203;53693](https://github.com/nodejs/node/pull/53693) - \[[`05058f9809`](https://github.com/nodejs/node/commit/05058f9809)] - **meta**: bump codecov/codecov-action from 4.4.1 to 4.5.0 (dependabot\[bot]) [#&#8203;53675](https://github.com/nodejs/node/pull/53675) - \[[`e272ffa3d6`](https://github.com/nodejs/node/commit/e272ffa3d6)] - **meta**: bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 (dependabot\[bot]) [#&#8203;53674](https://github.com/nodejs/node/pull/53674) - \[[`a39407560c`](https://github.com/nodejs/node/commit/a39407560c)] - **meta**: bump github/codeql-action from 3.25.7 to 3.25.11 (dependabot\[bot]) [#&#8203;53673](https://github.com/nodejs/node/pull/53673) - \[[`e4ce92ee31`](https://github.com/nodejs/node/commit/e4ce92ee31)] - **meta**: bump actions/checkout from 4.1.6 to 4.1.7 (dependabot\[bot]) [#&#8203;53672](https://github.com/nodejs/node/pull/53672) - \[[`4cf98febe7`](https://github.com/nodejs/node/commit/4cf98febe7)] - **meta**: bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (dependabot\[bot]) [#&#8203;53671](https://github.com/nodejs/node/pull/53671) - \[[`c28af95bf5`](https://github.com/nodejs/node/commit/c28af95bf5)] - **meta**: bump step-security/harden-runner from 2.8.0 to 2.8.1 (dependabot\[bot]) [#&#8203;53670](https://github.com/nodejs/node/pull/53670) - \[[`dd2157bc83`](https://github.com/nodejs/node/commit/dd2157bc83)] - **meta**: move member from TSC regular to emeriti (Michael Dawson) [#&#8203;53599](https://github.com/nodejs/node/pull/53599) - \[[`508abfe178`](https://github.com/nodejs/node/commit/508abfe178)] - **meta**: warnings bypass deprecation cycle (Benjamin Gruenbaum) [#&#8203;53513](https://github.com/nodejs/node/pull/53513) - \[[`3c5ec839e3`](https://github.com/nodejs/node/commit/3c5ec839e3)] - **meta**: prevent constant references to issues in versioning (Aviv Keller) [#&#8203;53564](https://github.com/nodejs/node/pull/53564) - \[[`aa7df9551d`](https://github.com/nodejs/node/commit/aa7df9551d)] - **module**: add \__esModule to require()'d ESM (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166) - \[[`8743c4d65a`](https://github.com/nodejs/node/commit/8743c4d65a)] - **(SEMVER-MINOR)** **path**: add `matchesGlob` method (Aviv Keller) [#&#8203;52881](https://github.com/nodejs/node/pull/52881) - \[[`77936c3d24`](https://github.com/nodejs/node/commit/77936c3d24)] - **(SEMVER-MINOR)** **process**: port on-exit-leak-free to core (Vinicius Lourenço) [#&#8203;53239](https://github.com/nodejs/node/pull/53239) - \[[`5e4ca9fbb6`](https://github.com/nodejs/node/commit/5e4ca9fbb6)] - **src**: update outdated references to spec sections (Tobias Nießen) [#&#8203;53832](https://github.com/nodejs/node/pull/53832) - \[[`c22d9d5167`](https://github.com/nodejs/node/commit/c22d9d5167)] - **src**: use Maybe\<void> in ManagedEVPPKey (Tobias Nießen) [#&#8203;53811](https://github.com/nodejs/node/pull/53811) - \[[`d41ed44f49`](https://github.com/nodejs/node/commit/d41ed44f49)] - **src**: move `loadEnvFile` toNamespacedPath call (Yagiz Nizipli) [#&#8203;53658](https://github.com/nodejs/node/pull/53658) - \[[`dc99dd391f`](https://github.com/nodejs/node/commit/dc99dd391f)] - **src**: fix error handling in ExportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53767](https://github.com/nodejs/node/pull/53767) - \[[`ab1e03e8cd`](https://github.com/nodejs/node/commit/ab1e03e8cd)] - **src**: use Maybe\<void> in node::crypto::error (Tobias Nießen) [#&#8203;53766](https://github.com/nodejs/node/pull/53766) - \[[`9bde9b254d`](https://github.com/nodejs/node/commit/9bde9b254d)] - **src**: fix implementation of `PropertySetterCallback` (Igor Sheludko) [#&#8203;53576](https://github.com/nodejs/node/pull/53576) - \[[`021e2cf40f`](https://github.com/nodejs/node/commit/021e2cf40f)] - **src**: remove unused ContextifyContext::WeakCallback (Chengzhong Wu) [#&#8203;53517](https://github.com/nodejs/node/pull/53517) - \[[`87121a17c4`](https://github.com/nodejs/node/commit/87121a17c4)] - **src**: fix typo in node.h (Daeyeon Jeong) [#&#8203;53759](https://github.com/nodejs/node/pull/53759) - \[[`94c7054c8d`](https://github.com/nodejs/node/commit/94c7054c8d)] - **src**: document the Node.js context embedder data (Joyee Cheung) [#&#8203;53611](https://github.com/nodejs/node/pull/53611) - \[[`c181940e83`](https://github.com/nodejs/node/commit/c181940e83)] - **src**: zero-initialize data that are copied into the snapshot (Joyee Cheung) [#&#8203;53563](https://github.com/nodejs/node/pull/53563) - \[[`8cda2db64c`](https://github.com/nodejs/node/commit/8cda2db64c)] - ***Revert*** "**src**: make sure that memcpy-ed structs in snapshot have no padding" (Joyee Cheung) [#&#8203;53563](https://github.com/nodejs/node/pull/53563) - \[[`81767f6089`](https://github.com/nodejs/node/commit/81767f6089)] - **src**: fix Worker termination when '--inspect-brk' is passed (Daeyeon Jeong) [#&#8203;53724](https://github.com/nodejs/node/pull/53724) - \[[`a9db553935`](https://github.com/nodejs/node/commit/a9db553935)] - **src**: refactor embedded entrypoint loading (Joyee Cheung) [#&#8203;53573](https://github.com/nodejs/node/pull/53573) - \[[`3ab8aba478`](https://github.com/nodejs/node/commit/3ab8aba478)] - **src**: do not get string_view from temp string (Cheng) [#&#8203;53688](https://github.com/nodejs/node/pull/53688) - \[[`664bf6c28f`](https://github.com/nodejs/node/commit/664bf6c28f)] - **src**: replace `kPathSeparator` with std::filesystem (Yagiz Nizipli) [#&#8203;53063](https://github.com/nodejs/node/pull/53063) - \[[`cc1f49751a`](https://github.com/nodejs/node/commit/cc1f49751a)] - **src**: move `FromNamespacedPath` to path.cc (Yagiz Nizipli) [#&#8203;53540](https://github.com/nodejs/node/pull/53540) - \[[`e43a4e07ec`](https://github.com/nodejs/node/commit/e43a4e07ec)] - **src**: use `starts_with` in node_dotenv.cc (Yagiz Nizipli) [#&#8203;53539](https://github.com/nodejs/node/pull/53539) - \[[`19488fd4ce`](https://github.com/nodejs/node/commit/19488fd4ce)] - **src,test**: further cleanup references to osx (Daniel Bayley) [#&#8203;53820](https://github.com/nodejs/node/pull/53820) - \[[`4bf62f6cbd`](https://github.com/nodejs/node/commit/4bf62f6cbd)] - **stream**: improve inspector ergonomics (Benjamin Gruenbaum) [#&#8203;53800](https://github.com/nodejs/node/pull/53800) - \[[`82d88a83f8`](https://github.com/nodejs/node/commit/82d88a83f8)] - **(SEMVER-MINOR)** **stream**: pipeline wait for close before calling the callback (jakecastelli) [#&#8203;53462](https://github.com/nodejs/node/pull/53462) - \[[`53a7dd7790`](https://github.com/nodejs/node/commit/53a7dd7790)] - **test**: update wpt test (Mert Can Altin) [#&#8203;53814](https://github.com/nodejs/node/pull/53814) - \[[`bc480902ab`](https://github.com/nodejs/node/commit/bc480902ab)] - **test**: update WPT WebIDL interfaces (Filip Skokan) [#&#8203;53720](https://github.com/nodejs/node/pull/53720) - \[[`d13153d90f`](https://github.com/nodejs/node/commit/d13153d90f)] - **test**: un-set inspector-async-hook-setup-at-inspect-brk as flaky (Abdirahim Musse) [#&#8203;53692](https://github.com/nodejs/node/pull/53692) - \[[`ac9c2e6bf2`](https://github.com/nodejs/node/commit/ac9c2e6bf2)] - **test**: use python3 instead of python in pummel test (Mathis Wiehl) [#&#8203;53057](https://github.com/nodejs/node/pull/53057) - \[[`bac28678e6`](https://github.com/nodejs/node/commit/bac28678e6)] - **test**: do not assume cwd in snapshot tests (Antoine du Hamel) [#&#8203;53146](https://github.com/nodejs/node/pull/53146) - \[[`41e106c0c6`](https://github.com/nodejs/node/commit/41e106c0c6)] - **test**: use `Set.difference()` (Richard Lau) [#&#8203;53597](https://github.com/nodejs/node/pull/53597) - \[[`8aab680f66`](https://github.com/nodejs/node/commit/8aab680f66)] - **test**: fix OpenSSL version checks (Richard Lau) [#&#8203;53503](https://github.com/nodejs/node/pull/53503) - \[[`6aa4f0f266`](https://github.com/nodejs/node/commit/6aa4f0f266)] - **test**: refactor, add assertion to http-request-end (jakecastelli) [#&#8203;53411](https://github.com/nodejs/node/pull/53411) - \[[`fbc5cbb617`](https://github.com/nodejs/node/commit/fbc5cbb617)] - **test_runner**: remove plan option from run() (Colin Ihrig) [#&#8203;53834](https://github.com/nodejs/node/pull/53834) - \[[`c590828ad8`](https://github.com/nodejs/node/commit/c590828ad8)] - **test_runner**: fix escaping in snapshot tests (Julian Kniephoff) [#&#8203;53833](https://github.com/nodejs/node/pull/53833) - \[[`3a0fcbb17a`](https://github.com/nodejs/node/commit/3a0fcbb17a)] - **test_runner**: support glob matching coverage files (Aviv Keller) [#&#8203;53553](https://github.com/nodejs/node/pull/53553) - \[[`e6a1eeb73d`](https://github.com/nodejs/node/commit/e6a1eeb73d)] - **test_runner**: support module detection in module mocks (Geoffrey Booth) [#&#8203;53642](https://github.com/nodejs/node/pull/53642) - \[[`4d777de7d4`](https://github.com/nodejs/node/commit/4d777de7d4)] - **tls**: add setKeyCert() to tls.Socket (Brian White) [#&#8203;53636](https://github.com/nodejs/node/pull/53636) - \[[`ab9adfc42a`](https://github.com/nodejs/node/commit/ab9adfc42a)] - **tls**: remove prototype primordials (Antoine du Hamel) [#&#8203;53699](https://github.com/nodejs/node/pull/53699) - \[[`03d378ffb9`](https://github.com/nodejs/node/commit/03d378ffb9)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53840](https://github.com/nodejs/node/pull/53840) - \[[`06377b1b11`](https://github.com/nodejs/node/commit/06377b1b11)] - **tools**: update eslint to 9.7.0 (Node.js GitHub Bot) [#&#8203;53839](https://github.com/nodejs/node/pull/53839) - \[[`d6629a2d84`](https://github.com/nodejs/node/commit/d6629a2d84)] - **tools**: use v8\_features.json to populate config.gypi (Cheng) [#&#8203;53749](https://github.com/nodejs/node/pull/53749) - \[[`d3653fe8ac`](https://github.com/nodejs/node/commit/d3653fe8ac)] - **tools**: update eslint to 9.6.0 (Node.js GitHub Bot) [#&#8203;53645](https://github.com/nodejs/node/pull/53645) - \[[`1e930e93d4`](https://github.com/nodejs/node/commit/1e930e93d4)] - **tools**: update lint-md-dependencies to unified@11.0.5 (Node.js GitHub Bot) [#&#8203;53555](https://github.com/nodejs/node/pull/53555) - \[[`317a13b30f`](https://github.com/nodejs/node/commit/317a13b30f)] - **tools**: replace reference to NodeMainInstance with SnapshotBuilder (codediverdev) [#&#8203;53544](https://github.com/nodejs/node/pull/53544) - \[[`0e25faea0a`](https://github.com/nodejs/node/commit/0e25faea0a)] - **typings**: add `fs_dir` types (Yagiz Nizipli) [#&#8203;53631](https://github.com/nodejs/node/pull/53631) - \[[`7637f291be`](https://github.com/nodejs/node/commit/7637f291be)] - **url**: fix typo (KAYYY) [#&#8203;53827](https://github.com/nodejs/node/pull/53827) - \[[`2c6548afd1`](https://github.com/nodejs/node/commit/2c6548afd1)] - **url**: reduce unnecessary string copies (Yagiz Nizipli) [#&#8203;53628](https://github.com/nodejs/node/pull/53628) - \[[`0f2b57d1bc`](https://github.com/nodejs/node/commit/0f2b57d1bc)] - **url**: make URL.parse enumerable (Filip Skokan) [#&#8203;53720](https://github.com/nodejs/node/pull/53720) - \[[`1300169f80`](https://github.com/nodejs/node/commit/1300169f80)] - **url**: add missing documentation for `URL.parse()` (Yagiz Nizipli) [#&#8203;53733](https://github.com/nodejs/node/pull/53733) - \[[`c55e72ed8b`](https://github.com/nodejs/node/commit/c55e72ed8b)] - **util**: fix crashing when emitting new Buffer() deprecation warning [#&#8203;53075](https://github.com/nodejs/node/issues/53075) (Aras Abbasi) [#&#8203;53089](https://github.com/nodejs/node/pull/53089) - \[[`5aa216320e`](https://github.com/nodejs/node/commit/5aa216320e)] - **v8**: move `ToNamespacedPath` to c++ (Yagiz Nizipli) [#&#8203;53655](https://github.com/nodejs/node/pull/53655) - \[[`9fd976b09d`](https://github.com/nodejs/node/commit/9fd976b09d)] - **vm,src**: add property query interceptors (Chengzhong Wu) [#&#8203;53517](https://github.com/nodejs/node/pull/53517) - \[[`22ca334090`](https://github.com/nodejs/node/commit/22ca334090)] - **(SEMVER-MINOR)** **worker**: add postMessageToThread (Paolo Insogna) [#&#8203;53682](https://github.com/nodejs/node/pull/53682) - \[[`5aecbefbd5`](https://github.com/nodejs/node/commit/5aecbefbd5)] - **worker**: allow copied NODE_OPTIONS in the env setting (Joyee Cheung) [#&#8203;53596](https://github.com/nodejs/node/pull/53596) ### [`v22.4.1`](https://github.com/nodejs/node/releases/tag/v22.4.1): 2024-07-08, Version 22.4.1 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v22.4.0...v22.4.1) This is a security release. ##### Notable Changes - CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) - CVE-2024-22020 - Bypass network import restriction via data URL (Medium) - CVE-2024-22018 - fs.lstat bypasses permission model (Low) - CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low) - CVE-2024-37372 - Permission model improperly processes UNC paths (Low) ##### Commits - \[[`110902ff5e`](https://github.com/nodejs/node/commit/110902ff5e)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522) - \[[`0a0de3d491`](https://github.com/nodejs/node/commit/0a0de3d491)] - **lib,permission**: support fs.lstat (RafaelGSS) - \[[`93574335ff`](https://github.com/nodejs/node/commit/93574335ff)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584) - \[[`09899e6302`](https://github.com/nodejs/node/commit/09899e6302)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596) - \[[`5d9c811634`](https://github.com/nodejs/node/commit/5d9c811634)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581) ### [`v22.4.0`](https://github.com/nodejs/node/releases/tag/v22.4.0): 2024-07-02, Version 22.4.0 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v22.3.0...v22.4.0) ##### Notable Changes ##### Experimental Web Storage API - \[[`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#&#8203;52435](https://github.com/nodejs/node/pull/52435) ##### API stability updates - \[[`201266706b`](https://github.com/nodejs/node/commit/201266706b)] - **doc**: move `node --run` stability to rc (Yagiz Nizipli) [#&#8203;53433](https://github.com/nodejs/node/pull/53433) - \[[`16c0884d48`](https://github.com/nodejs/node/commit/16c0884d48)] - **doc**: mark WebSocket as stable (Matthew Aitken) [#&#8203;53352](https://github.com/nodejs/node/pull/53352) - \[[`cf375e73c1`](https://github.com/nodejs/node/commit/cf375e73c1)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343) - \[[`0160745057`](https://github.com/nodejs/node/commit/0160745057)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343) ##### Other Notable Changes - \[[`df4762722c`](https://github.com/nodejs/node/commit/df4762722c)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#&#8203;53329](https://github.com/nodejs/node/pull/53329) - \[[`ad5282e196`](https://github.com/nodejs/node/commit/ad5282e196)] - **inspector**: fix disable async hooks on `Debugger.setAsyncCallStackDepth` (Joyee Cheung) [#&#8203;53473](https://github.com/nodejs/node/pull/53473) - \[[`e95af740fc`](https://github.com/nodejs/node/commit/e95af740fc)] - **(SEMVER-MINOR)** **lib**: add diagnostics_channel events to module loading (RafaelGSS) [#&#8203;44340](https://github.com/nodejs/node/pull/44340) - \[[`50733a1abe`](https://github.com/nodejs/node/commit/50733a1abe)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107) ##### Commits - \[[`9f32002397`](https://github.com/nodejs/node/commit/9f32002397)] - **assert,util**: correct comparison when both contain same reference (Daniel Lemire) [#&#8203;53431](https://github.com/nodejs/node/pull/53431) - \[[`dfdc062111`](https://github.com/nodejs/node/commit/dfdc062111)] - **buffer**: make indexOf(byte) faster (Tobias Nießen) [#&#8203;53455](https://github.com/nodejs/node/pull/53455) - \[[`1de437527e`](https://github.com/nodejs/node/commit/1de437527e)] - **build**: configure with shared sqlite3 (Chengzhong Wu) [#&#8203;53519](https://github.com/nodejs/node/pull/53519) - \[[`c7d44ba1f3`](https://github.com/nodejs/node/commit/c7d44ba1f3)] - **build**: find version of Clang installed on Windows (Stefan Stojanovic) [#&#8203;53228](https://github.com/nodejs/node/pull/53228) - \[[`36aad8b204`](https://github.com/nodejs/node/commit/36aad8b204)] - **build**: fix spacing before NINJA_ARGS (jakecastelli) [#&#8203;53181](https://github.com/nodejs/node/pull/53181) - \[[`82092cdaa3`](https://github.com/nodejs/node/commit/82092cdaa3)] - **crypto**: improve GetECGroupBits signature (Tobias Nießen) [#&#8203;53364](https://github.com/nodejs/node/pull/53364) - \[[`073c231607`](https://github.com/nodejs/node/commit/073c231607)] - **deps**: update c-ares to v1.31.0 (Node.js GitHub Bot) [#&#8203;53554](https://github.com/nodejs/node/pull/53554) - \[[`977beab729`](https://github.com/nodejs/node/commit/977beab729)] - **(SEMVER-MINOR)** **deps**: sqlite: fix Windows compilation (Colin Ihrig) [#&#8203;52435](https://github.com/nodejs/node/pull/52435) - \[[`e69b8d202c`](https://github.com/nodejs/node/commit/e69b8d202c)] - **deps**: update undici to 6.19.2 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`c4a7e051c8`](https://github.com/nodejs/node/commit/c4a7e051c8)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`fa34f8fcf0`](https://github.com/nodejs/node/commit/fa34f8fcf0)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`0b40bfad43`](https://github.com/nodejs/node/commit/0b40bfad43)] - **deps**: update undici to 6.19.0 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`1877f22a79`](https://github.com/nodejs/node/commit/1877f22a79)] - **deps**: update simdjson to 3.9.4 (Node.js GitHub Bot) [#&#8203;53467](https://github.com/nodejs/node/pull/53467) - \[[`1b84964b8d`](https://github.com/nodejs/node/commit/1b84964b8d)] - **deps**: patch V8 to 12.4.254.21 (Node.js GitHub Bot) [#&#8203;53470](https://github.com/nodejs/node/pull/53470) - \[[`6acadeb59b`](https://github.com/nodejs/node/commit/6acadeb59b)] - **deps**: update acorn-walk to 8.3.3 (Node.js GitHub Bot) [#&#8203;53466](https://github.com/nodejs/node/pull/53466) - \[[`7a7f438841`](https://github.com/nodejs/node/commit/7a7f438841)] - **deps**: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) [#&#8203;53156](https://github.com/nodejs/node/pull/53156) - \[[`bf891bf64c`](https://github.com/nodejs/node/commit/bf891bf64c)] - **deps**: update c-ares to v1.30.0 (Node.js GitHub Bot) [#&#8203;53416](https://github.com/nodejs/node/pull/53416) - \[[`bd68888261`](https://github.com/nodejs/node/commit/bd68888261)] - **deps**: V8: cherry-pick [`a3cc852`](https://github.com/nodejs/node/commit/a3cc8522a4c8) (kxxt) [#&#8203;53412](https://github.com/nodejs/node/pull/53412) - \[[`2defaaf771`](https://github.com/nodejs/node/commit/2defaaf771)] - **deps**: V8: cherry-pick [`6ea594f`](https://github.com/nodejs/node/commit/6ea594ff7132) (kxxt) [#&#8203;53412](https://github.com/nodejs/node/pull/53412) - \[[`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#&#8203;52435](https://github.com/nodejs/node/pull/52435) - \[[`608cc05de1`](https://github.com/nodejs/node/commit/608cc05de1)] - **doc**: recommend not using libuv node-api function (Michael Dawson) [#&#8203;53521](https://github.com/nodejs/node/pull/53521) - \[[`30858eca59`](https://github.com/nodejs/node/commit/30858eca59)] - **doc**: add additional guidance for PRs to deps (Michael Dawson) [#&#8203;53499](https://github.com/nodejs/node/pull/53499) - \[[`a5852cc710`](https://github.com/nodejs/node/commit/a5852cc710)] - **doc**: only apply content-visibility on all.html (Filip Skokan) [#&#8203;53510](https://github.com/nodejs/node/pull/53510) - \[[`befabe5c58`](https://github.com/nodejs/node/commit/befabe5c58)] - **doc**: update the description of the return type for options.filter (Zhenwei Jin) [#&#8203;52742](https://github.com/nodejs/node/pull/52742) - \[[`5ed1a036ba`](https://github.com/nodejs/node/commit/5ed1a036ba)] - **doc**: remove first timer badge (Aviv Keller) [#&#8203;53338](https://github.com/nodejs/node/pull/53338) - \[[`201266706b`](https://github.com/nodejs/node/commit/201266706b)] - **doc**: move `node --run` stability to rc (Yagiz Nizipli) [#&#8203;53433](https://github.com/nodejs/node/pull/53433) - \[[`46a7681cc4`](https://github.com/nodejs/node/commit/46a7681cc4)] - **doc**: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) [#&#8203;52801](https://github.com/nodejs/node/pull/52801) - \[[`ec5364f6de`](https://github.com/nodejs/node/commit/ec5364f6de)] - **doc**: add initial text for ambassadors program (Michael Dawson) [#&#8203;52857](https://github.com/nodejs/node/pull/52857) - \[[`fa113b8fc7`](https://github.com/nodejs/node/commit/fa113b8fc7)] - **doc**: fix typo (EhsanKhaki) [#&#8203;53397](https://github.com/nodejs/node/pull/53397) - \[[`d9182d0086`](https://github.com/nodejs/node/commit/d9182d0086)] - **doc**: define more cases for stream event emissions (Aviv Keller) [#&#8203;53317](https://github.com/nodejs/node/pull/53317) - \[[`923d24b6f2`](https://github.com/nodejs/node/commit/923d24b6f2)] - **doc**: remove mentions of policy model from security info (Aviv Keller) [#&#8203;53249](https://github.com/nodejs/node/pull/53249) - \[[`48f78cd31b`](https://github.com/nodejs/node/commit/48f78cd31b)] - **doc**: fix mistakes in the module `load` hook api (István Donkó) [#&#8203;53349](https://github.com/nodejs/node/pull/53349) - \[[`16c0884d48`](https://github.com/nodejs/node/commit/16c0884d48)] - **doc**: mark WebSocket as stable (Matthew Aitken) [#&#8203;53352](https://github.com/nodejs/node/pull/53352) - \[[`df4762722c`](https://github.com/nodejs/node/commit/df4762722c)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#&#8203;53329](https://github.com/nodejs/node/pull/53329) - \[[`cf375e73c1`](https://github.com/nodejs/node/commit/cf375e73c1)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343) - \[[`0160745057`](https://github.com/nodejs/node/commit/0160745057)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343) - \[[`6e12d9f049`](https://github.com/nodejs/node/commit/6e12d9f049)] - **doc**: remove IRC from man page (Tobias Nießen) [#&#8203;53344](https://github.com/nodejs/node/pull/53344) - \[[`24c7a9415b`](https://github.com/nodejs/node/commit/24c7a9415b)] - **doc, http**: add `rejectNonStandardBodyWrites` option, clear its behaviour (jakecastelli) [#&#8203;53396](https://github.com/nodejs/node/pull/53396) - \[[`ec38f3dc6a`](https://github.com/nodejs/node/commit/ec38f3dc6a)] - **doc, meta**: organize contributing to Node-API guide (Aviv Keller) [#&#8203;53243](https://github.com/nodejs/node/pull/53243) - \[[`cf5a973c42`](https://github.com/nodejs/node/commit/cf5a973c42)] - **doc, meta**: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) [#&#8203;53235](https://github.com/nodejs/node/pull/53235) - \[[`105b006fd2`](https://github.com/nodejs/node/commit/105b006fd2)] - **fs**: move `ToNamespacedPath` to c++ (Yagiz Nizipli) [#&#8203;52135](https://github.com/nodejs/node/pull/52135) - \[[`568377f7f0`](https://github.com/nodejs/node/commit/568377f7f0)] - **fs**: do not crash if the watched file is removed while setting up watch (Matteo Collina) [#&#8203;53452](https://github.com/nodejs/node/pull/53452) - \[[`fad179307c`](https://github.com/nodejs/node/commit/fad179307c)] - **fs**: add fast api for `InternalModuleStat` (Yagiz Nizipli) [#&#8203;51344](https://github.com/nodejs/node/pull/51344) - \[[`41100b65f6`](https://github.com/nodejs/node/commit/41100b65f6)] - **http2**: reject failed http2.connect when used with promisify (ehsankhfr) [#&#8203;53475](https://github.com/nodejs/node/pull/53475) - \[[`ad5282e196`](https://github.com/nodejs/node/commit/ad5282e196)] - **inspector**: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) [#&#8203;53473](https://github.com/nodejs/node/pull/53473) - \[[`b5fc227344`](https://github.com/nodejs/node/commit/b5fc227344)] - **lib**: fix typo in comment (codediverdev) [#&#8203;53543](https://github.com/nodejs/node/pull/53543) - \[[`e95af740fc`](https://github.com/nodejs/node/commit/e95af740fc)] - **(SEMVER-MINOR)** **lib**: add diagnostics_channel events to module loading (RafaelGSS) [#&#8203;44340](https://github.com/nodejs/node/pull/44340) - \[[`123910f1de`](https://github.com/nodejs/node/commit/123910f1de)] - **lib**: remove the unused code (theanarkh) [#&#8203;53463](https://github.com/nodejs/node/pull/53463) - \[[`452011b719`](https://github.com/nodejs/node/commit/452011b719)] - **lib**: speed up MessageEvent creation internally (Matthew Aitken) [#&#8203;52951](https://github.com/nodejs/node/pull/52951) - \[[`710cf7758c`](https://github.com/nodejs/node/commit/710cf7758c)] - **lib**: reduce amount of caught URL errors (Yagiz Nizipli) [#&#8203;52658](https://github.com/nodejs/node/pull/52658) - \[[`45b59e58d1`](https://github.com/nodejs/node/commit/45b59e58d1)] - **lib**: fix naming convention of `Symbol` (Deokjin Kim) [#&#8203;53387](https://github.com/nodejs/node/pull/53387) - \[[`515dd24ee7`](https://github.com/nodejs/node/commit/515dd24ee7)] - **lib**: fix timer leak (theanarkh) [#&#8203;53337](https://github.com/nodejs/node/pull/53337) - \[[`77166137be`](https://github.com/nodejs/node/commit/77166137be)] - **meta**: use correct source for workflow in PR (Aviv Keller) [#&#8203;53490](https://github.com/nodejs/node/pull/53490) - \[[`d1c10fee53`](https://github.com/nodejs/node/commit/d1c10fee53)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53480](https://github.com/nodejs/node/pull/53480) - \[[`a5026386bf`](https://github.com/nodejs/node/commit/a5026386bf)] - **meta**: fix typo in dependency updates (Aviv Keller) [#&#8203;53471](https://github.com/nodejs/node/pull/53471) - \[[`0b9191da99`](https://github.com/nodejs/node/commit/0b9191da99)] - **meta**: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot\[bot]) [#&#8203;53245](https://github.com/nodejs/node/pull/53245) - \[[`49cfb9d001`](https://github.com/nodejs/node/commit/49cfb9d001)] - **src**: reset `process.versions` during pre-execution (Richard Lau) [#&#8203;53444](https://github.com/nodejs/node/pull/53444) - \[[`15df4edd22`](https://github.com/nodejs/node/commit/15df4edd22)] - **src**: use `args.This()` instead of `Holder` (Michaël Zasso) [#&#8203;53474](https://github.com/nodejs/node/pull/53474) - \[[`e16a04e852`](https://github.com/nodejs/node/commit/e16a04e852)] - **src**: fix dynamically linked OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456) - \[[`5961253824`](https://github.com/nodejs/node/commit/5961253824)] - **src**: remove `base64` from `process.versions` (Richard Lau) [#&#8203;53442](https://github.com/nodejs/node/pull/53442) - \[[`11dd15c0b5`](https://github.com/nodejs/node/commit/11dd15c0b5)] - **src**: remove `SetEncoding` from StringEncoder (Yagiz Nizipli) [#&#8203;53441](https://github.com/nodejs/node/pull/53441) - \[[`0c7e69acd2`](https://github.com/nodejs/node/commit/0c7e69acd2)] - **src**: simplify `size() == 0` checks (Yagiz Nizipli) [#&#8203;53440](https://github.com/nodejs/node/pull/53440) - \[[`f077afafda`](https://github.com/nodejs/node/commit/f077afafda)] - **src**: add utilities to help debugging reproducibility of snapshots (Joyee Cheung) [#&#8203;50983](https://github.com/nodejs/node/pull/50983) - \[[`004b9ea4c4`](https://github.com/nodejs/node/commit/004b9ea4c4)] - **src**: make sure that memcpy-ed structs in snapshot have no padding (Joyee Cheung) [#&#8203;50983](https://github.com/nodejs/node/pull/50983) - \[[`bfc5236423`](https://github.com/nodejs/node/commit/bfc5236423)] - **src**: return non-empty data in context data serializer (Joyee Cheung) [#&#8203;50983](https://github.com/nodejs/node/pull/50983) - \[[`955454ba4d`](https://github.com/nodejs/node/commit/955454ba4d)] - **src**: fix typo in env.cc (EhsanKhaki) [#&#8203;53418](https://github.com/nodejs/node/pull/53418) - \[[`7d8787768c`](https://github.com/nodejs/node/commit/7d8787768c)] - **src**: avoid strcmp in favor of operator== (Tobias Nießen) [#&#8203;53439](https://github.com/nodejs/node/pull/53439) - \[[`599e7c3d8e`](https://github.com/nodejs/node/commit/599e7c3d8e)] - **src**: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) [#&#8203;52910](https://github.com/nodejs/node/pull/52910) - \[[`f9075ff38e`](https://github.com/nodejs/node/commit/f9075ff38e)] - **src**: print v8::OOMDetails::detail when it's available (Joyee Cheung) [#&#8203;53360](https://github.com/nodejs/node/pull/53360) - \[[`4704270443`](https://github.com/nodejs/node/commit/4704270443)] - **src**: fix IsIPAddress for IPv6 (Hüseyin Açacak) [#&#8203;53400](https://github.com/nodejs/node/pull/53400) - \[[`63f62d76de`](https://github.com/nodejs/node/commit/63f62d76de)] - **src**: fix permission inspector crash (theanarkh) [#&#8203;53389](https://github.com/nodejs/node/pull/53389) - \[[`70bbc02dac`](https://github.com/nodejs/node/commit/70bbc02dac)] - **src, deps**: add nbytes library (James M Snell) [#&#8203;53507](https://github.com/nodejs/node/pull/53507) - \[[`8b877099d0`](https://github.com/nodejs/node/commit/8b877099d0)] - **stream**: update outdated highwatermark doc (Jay Kim) [#&#8203;53494](https://github.com/nodejs/node/pull/53494) - \[[`eded1e9768`](https://github.com/nodejs/node/commit/eded1e9768)] - **stream**: support dispose in writable (Benjamin Gruenbaum) [#&#8203;48547](https://github.com/nodejs/node/pull/48547) - \[[`b3372a8b0e`](https://github.com/nodejs/node/commit/b3372a8b0e)] - **stream**: callback should be called when pendingcb is 0 (jakecastelli) [#&#8203;53438](https://github.com/nodejs/node/pull/53438) - \[[`f4efb7f625`](https://github.com/nodejs/node/commit/f4efb7f625)] - **stream**: make sure \_destroy is called (jakecastelli) [#&#8203;53213](https://github.com/nodejs/node/pull/53213) - \[[`7dde37591c`](https://github.com/nodejs/node/commit/7dde37591c)] - **stream**: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) [#&#8203;53261](https://github.com/nodejs/node/pull/53261) - \[[`6e66d9763f`](https://github.com/nodejs/node/commit/6e66d9763f)] - **test**: mark `test-benchmark-crypto` as flaky (Antoine du Hamel) [#&#8203;52955](https://github.com/nodejs/node/pull/52955) - \[[`1eebcbf9bf`](https://github.com/nodejs/node/commit/1eebcbf9bf)] - **test**: skip reproducible snapshot test on 32-bit (Michaël Zasso) [#&#8203;53592](https://github.com/nodejs/node/pull/53592) - \[[`91b2850303`](https://github.com/nodejs/node/commit/91b2850303)] - **test**: extend env for `test-node-output-errors` (Richard Lau) [#&#8203;53535](https://github.com/nodejs/node/pull/53535) - \[[`bcad560726`](https://github.com/nodejs/node/commit/bcad560726)] - **test**: update `compression` web-platform tests (Yagiz Nizipli) [#&#8203;53478](https://github.com/nodejs/node/pull/53478) - \[[`b8f436c755`](https://github.com/nodejs/node/commit/b8f436c755)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;53477](https://github.com/nodejs/node/pull/53477) - \[[`d2c169a4f6`](https://github.com/nodejs/node/commit/d2c169a4f6)] - **test**: update `url` web-platform tests (Yagiz Nizipli) [#&#8203;53472](https://github.com/nodejs/node/pull/53472) - \[[`513e6aa4c7`](https://github.com/nodejs/node/commit/513e6aa4c7)] - **test**: check against run-time OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456) - \[[`602b9d63c4`](https://github.com/nodejs/node/commit/602b9d63c4)] - **test**: update tests for OpenSSL 3.0.14 (Richard Lau) [#&#8203;53373](https://github.com/nodejs/node/pull/53373) - \[[`4a3525bb08`](https://github.com/nodejs/node/commit/4a3525bb08)] - **test**: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) [#&#8203;53292](https://github.com/nodejs/node/pull/53292) - \[[`7349edb28b`](https://github.com/nodejs/node/commit/7349edb28b)] - **test**: update TLS tests for OpenSSL 3.2 (Richard Lau) [#&#8203;53384](https://github.com/nodejs/node/pull/53384) - \[[`a11a05763d`](https://github.com/nodejs/node/commit/a11a05763d)] - **tls**: check result of SSL_CTX_set_\*\_proto_version (Tobias Nießen) [#&#8203;53459](https://github.com/nodejs/node/pull/53459) - \[[`4b47f89eb2`](https://github.com/nodejs/node/commit/4b47f89eb2)] - **tls**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53436](https://github.com/nodejs/node/pull/53436) - \[[`ac8adeb99f`](https://github.com/nodejs/node/commit/ac8adeb99f)] - **tls**: use SSL_get_peer_tmp_key (Tobias Nießen) [#&#8203;53366](https://github.com/nodejs/node/pull/53366) - \[[`d5c380bb09`](https://github.com/nodejs/node/commit/d5c380bb09)] - **tools**: lock versions of irrelevant DB deps (Michaël Zasso) [#&#8203;53546](https://github.com/nodejs/node/pull/53546) - \[[`71321bb249`](https://github.com/nodejs/node/commit/71321bb249)] - **tools**: fix skip detection of test runner output (Richard Lau) [#&#8203;53545](https://github.com/nodejs/node/pull/53545) - \[[`ca198f4125`](https://github.com/nodejs/node/commit/ca198f4125)] - **tools**: update eslint to 9.5.0 (Node.js GitHub Bot) [#&#8203;53515](https://github.com/nodejs/node/pull/53515) - \[[`30fdd482a1`](https://github.com/nodejs/node/commit/30fdd482a1)] - **tools**: move ESLint to tools/eslint (Michaël Zasso) [#&#8203;53413](https://github.com/nodejs/node/pull/53413) - \[[`fe85e05ba9`](https://github.com/nodejs/node/commit/fe85e05ba9)] - **tools**: fix c-ares update script (Marco Ippolito) [#&#8203;53414](https://github.com/nodejs/node/pull/53414) - \[[`8eb7bdf81b`](https://github.com/nodejs/node/commit/8eb7bdf81b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53158](https://github.com/nodejs/node/pull/53158) - \[[`9ece63d415`](https://github.com/nodejs/node/commit/9ece63d415)] - **tools**: do not run Corepack code before it's reviewed (Antoine du Hamel) [#&#8203;53405](https://github.com/nodejs/node/pull/53405) - \[[`ab2021492b`](https://github.com/nodejs/node/commit/ab2021492b)] - **tools**: move ESLint tools to tools/eslint (Michaël Zasso) [#&#8203;53393](https://github.com/nodejs/node/pull/53393) - \[[`78a9037a6d`](https://github.com/nodejs/node/commit/78a9037a6d)] - **tools**: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) [#&#8203;53212](https://github.com/nodejs/node/pull/53212) - \[[`855eb25dad`](https://github.com/nodejs/node/commit/855eb25dad)] - **tools**: add stream label on PR when related files being changed in lib (jakecastelli) [#&#8203;53269](https://github.com/nodejs/node/pull/53269) - \[[`50733a1abe`](https://github.com/nodejs/node/commit/50733a1abe)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107) ### [`v22.3.0`](https://github.com/nodejs/node/releases/tag/v22.3.0): 2024-06-11, Version 22.3.0 (Current), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v22.2.0...v22.3.0) ##### Notable Changes - \[[`5a41bcf9ca`](https://github.com/nodejs/node/commit/5a41bcf9ca)] - **(SEMVER-MINOR)** **src**: traverse parent folders while running `--run` (Yagiz Nizipli) [#&#8203;53154](https://github.com/nodejs/node/pull/53154) - \[[`1d5934524b`](https://github.com/nodejs/node/commit/1d5934524b)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221) - \[[`75e5612fae`](https://github.com/nodejs/node/commit/75e5612fae)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124) - \[[`b5c30e2f5e`](https://github.com/nodejs/node/commit/b5c30e2f5e)] - **(SEMVER-MINOR)** **module**: print amount of load time of a cjs module (Vinicius Lourenço) [#&#8203;52213](https://github.com/nodejs/node/pull/52213) - \[[`8c6dffc269`](https://github.com/nodejs/node/commit/8c6dffc269)] - **(SEMVER-MINOR)** **test_runner**: add snapshot testing (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`048478d351`](https://github.com/nodejs/node/commit/048478d351)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`f6d2af8ee7`](https://github.com/nodejs/node/commit/f6d2af8ee7)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`a0766bdf0e`](https://github.com/nodejs/node/commit/a0766bdf0e)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136) - \[[`374743cd4e`](https://github.com/nodejs/node/commit/374743cd4e)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`1eb55f3550`](https://github.com/nodejs/node/commit/1eb55f3550)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`6165894774`](https://github.com/nodejs/node/commit/6165894774)] - **fs**: mark recursive cp methods as stable (Théo LUDWIG) [#&#8203;53127](https://github.com/nodejs/node/pull/53127) - \[[`db5dd0c6df`](https://github.com/nodejs/node/commit/db5dd0c6df)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118) - \[[`cfcde78513`](https://github.com/nodejs/node/commit/cfcde78513)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_PACKAGE_JSON_PATH` env (Yagiz Nizipli) [#&#8203;53058](https://github.com/nodejs/node/pull/53058) - \[[`7a67ecf161`](https://github.com/nodejs/node/commit/7a67ecf161)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848) - \[[`ee56aecced`](https://github.com/nodejs/node/commit/ee56aecced)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575) - \[[`6413769bc7`](https://github.com/nodejs/node/commit/6413769bc7)] - **(SEMVER-MINOR)** **lib**: replace MessageEvent with undici's (Matthew Aitken) [#&#8203;52370](https://github.com/nodejs/node/pull/52370) - \[[`c70b2f7a76`](https://github.com/nodejs/node/commit/c70b2f7a76)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_SCRIPT_NAME` env to `node --run` (Yagiz Nizipli) [#&#8203;53032](https://github.com/nodejs/node/pull/53032) - \[[`badec0c38b`](https://github.com/nodejs/node/commit/badec0c38b)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#&#8203;53008](https://github.com/nodejs/node/pull/53008) ##### Commits - \[[`feb0ba2860`](https://github.com/nodejs/node/commit/feb0ba2860)] - **benchmark**: fix napi/ref addon (Michaël Zasso) [#&#8203;53233](https://github.com/nodejs/node/pull/53233) - \[[`bb844de4e1`](https://github.com/nodejs/node/commit/bb844de4e1)] - **benchmark**: fix api restriction for the permission category (Ryan Tsien) [#&#8203;51528](https://github.com/nodejs/node/pull/51528) - \[[`1d5934524b`](https://github.com/nodejs/node/commit/1d5934524b)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221) - \[[`d87f9af5aa`](https://github.com/nodejs/node/commit/d87f9af5aa)] - **buffer**: make compare/equals faster (Tobias Nießen) [#&#8203;52993](https://github.com/nodejs/node/pull/52993) - \[[`ec83431d71`](https://github.com/nodejs/node/commit/ec83431d71)] - **build**: generate binlog in out directories (Chengzhong Wu) [#&#8203;53325](https://github.com/nodejs/node/pull/53325) - \[[`0976439417`](https://github.com/nodejs/node/commit/0976439417)] - **build**: fix --v8-lite-mode build (Daeyeon Jeong) [#&#8203;52725](https://github.com/nodejs/node/pull/52725) - \[[`350c733ae6`](https://github.com/nodejs/node/commit/350c733ae6)] - **build**: support python 3.13 (Chengzhong Wu) [#&#8203;53190](https://github.com/nodejs/node/pull/53190) - \[[`74cefa55a2`](https://github.com/nodejs/node/commit/74cefa55a2)] - **build**: update ruff to v0.4.5 (Yagiz Nizipli) [#&#8203;53180](https://github.com/nodejs/node/pull/53180) - \[[`33242ff042`](https://github.com/nodejs/node/commit/33242ff042)] - **build**: add `--skip-tests` to `test-ci-js` target (Antoine du Hamel) [#&#8203;53105](https://github.com/nodejs/node/pull/53105) - \[[`edcadf7f8a`](https://github.com/nodejs/node/commit/edcadf7f8a)] - **build**: fix building embedtest in GN build (Cheng) [#&#8203;53145](https://github.com/nodejs/node/pull/53145) - \[[`d711942fce`](https://github.com/nodejs/node/commit/d711942fce)] - **build**: use broader detection for 'help' (Aviv Keller) [#&#8203;53045](https://github.com/nodejs/node/pull/53045) - \[[`ca655b61a7`](https://github.com/nodejs/node/commit/ca655b61a7)] - **build**: fix -j propagation to ninja (Tobias Nießen) [#&#8203;53088](https://github.com/nodejs/node/pull/53088) - \[[`5fba67ff9f`](https://github.com/nodejs/node/commit/5fba67ff9f)] - **build**: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) [#&#8203;52882](https://github.com/nodejs/node/pull/52882) - \[[`b7d7e9a084`](https://github.com/nodejs/node/commit/b7d7e9a084)] - **build**: fix `--enable-d8` builds (Richard Lau) [#&#8203;53106](https://github.com/nodejs/node/pull/53106) - \[[`14547c5d32`](https://github.com/nodejs/node/commit/14547c5d32)] - **build**: fix ./configure --help format error (Zhenwei Jin) [#&#8203;53066](https://github.com/nodejs/node/pull/53066) - \[[`f9490806d3`](https://github.com/nodejs/node/commit/f9490806d3)] - **build**: set "clang" in config.gypi in GN build (Cheng) [#&#8203;53004](https://github.com/nodejs/node/pull/53004) - \[[`638b510ce7`](https://github.com/nodejs/node/commit/638b510ce7)] - **cli**: add `--expose-gc` flag available to `NODE_OPTIONS` (Juan José) [#&#8203;53078](https://github.com/nodejs/node/pull/53078) - \[[`cfcde78513`](https://github.com/nodejs/node/commit/cfcde78513)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_PACKAGE_JSON_PATH` env (Yagiz Nizipli) [#&#8203;53058](https://github.com/nodejs/node/pull/53058) - \[[`c70b2f7a76`](https://github.com/nodejs/node/commit/c70b2f7a76)] - **(SEMVER-MINOR)** **cli**: add `NODE_RUN_SCRIPT_NAME` env to `node --run` (Yagiz Nizipli) [#&#8203;53032](https://github.com/nodejs/node/pull/53032) - \[[`34f20983fd`](https://github.com/nodejs/node/commit/34f20983fd)] - **crypto**: fix propagation of "memory limit exceeded" (Tobias Nießen) [#&#8203;53300](https://github.com/nodejs/node/pull/53300) - \[[`fef067f4f4`](https://github.com/nodejs/node/commit/fef067f4f4)] - **deps**: update nghttp2 to 1.62.1 (Node.js GitHub Bot) [#&#8203;52966](https://github.com/nodejs/node/pull/52966) - \[[`fc949928ac`](https://github.com/nodejs/node/commit/fc949928ac)] - **deps**: update nghttp2 to 1.62.0 (Node.js GitHub Bot) [#&#8203;52966](https://github.com/nodejs/node/pull/52966) - \[[`4a17dda8dc`](https://github.com/nodejs/node/commit/4a17dda8dc)] - **deps**: update undici to 6.18.2 (Node.js GitHub Bot) [#&#8203;53255](https://github.com/nodejs/node/pull/53255) - \[[`e45cc2a551`](https://github.com/nodejs/node/commit/e45cc2a551)] - **deps**: update ada to 2.8.0 (Node.js GitHub Bot) [#&#8203;53254](https://github.com/nodejs/node/pull/53254) - \[[`77907a2619`](https://github.com/nodejs/node/commit/77907a2619)] - **deps**: update corepack to 0.28.2 (Node.js GitHub Bot) [#&#8203;53253](https://github.com/nodejs/node/pull/53253) - \[[`b688050778`](https://github.com/nodejs/node/commit/b688050778)] - **deps**: update simdjson to 3.9.3 (Node.js GitHub Bot) [#&#8203;53252](https://github.com/nodejs/node/pull/53252) - \[[`6303f19cbe`](https://github.com/nodejs/node/commit/6303f19cbe)] - **deps**: patch V8 to 12.4.254.20 (Node.js GitHub Bot) [#&#8203;53159](https://github.com/nodejs/node/pull/53159) - \[[`257004c68f`](https://github.com/nodejs/node/commit/257004c68f)] - **deps**: update c-ares to 1.29.0 (Node.js GitHub Bot) [#&#8203;53155](https://github.com/nodejs/node/pull/53155) - \[[`0b375a3e36`](https://github.com/nodejs/node/commit/0b375a3e36)] - **deps**: upgrade npm to 10.8.1 (npm team) [#&#8203;53207](https://github.com/nodejs/node/pull/53207) - \[[`728c861b1c`](https://github.com/nodejs/node/commit/728c861b1c)] - **deps**: fix FP16 bitcasts.h (Stefan Stojanovic) [#&#8203;53134](https://github.com/nodejs/node/pull/53134) - \[[`52a78737b1`](https://github.com/nodejs/node/commit/52a78737b1)] - **deps**: patch V8 to 12.4.254.19 (Node.js GitHub Bot) [#&#8203;53094](https://github.com/nodejs/node/pull/53094) - \[[`4d27b32e58`](https://github.com/nodejs/node/commit/4d27b32e58)] - **deps**: update undici to 6.18.1 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073) - \[[`b94199240b`](https://github.com/nodejs/node/commit/b94199240b)] - **deps**: update undici to 6.18.0 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073) - \[[`793af1b3e7`](https://github.com/nodejs/node/commit/793af1b3e7)] - **deps**: update undici to 6.17.0 (Node.js GitHub Bot) [#&#8203;53034](https://github.com/nodejs/node/pull/53034) - \[[`fe00becc03`](https://github.com/nodejs/node/commit/fe00becc03)] - **deps**: update undici to 6.16.1 (Node.js GitHub Bot) [#&#8203;52948](https://github.com/nodejs/node/pull/52948) - \[[`96f72ae54f`](https://github.com/nodejs/node/commit/96f72ae54f)] - **deps**: update undici to 6.15.0 (Matthew Aitken) [#&#8203;52763](https://github.com/nodejs/node/pull/52763) - \[[`af60fbb12b`](https://github.com/nodejs/node/commit/af60fbb12b)] - **deps**: update googletest to [`33af80a`](https://github.com/nodejs/node/commit/33af80a) (Node.js GitHub Bot) [#&#8203;53053](https://github.com/nodejs/node/pull/53053) - \[[`7b929df489`](https://github.com/nodejs/node/commit/7b929df489)] - **deps**: patch V8 to 12.4.254.18 (Node.js GitHub Bot) [#&#8203;53054](https://github.com/nodejs/node/pull/53054) - \[[`626037c0fc`](https://github.com/nodejs/node/commit/626037c0fc)] - **deps**: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) [#&#8203;53052](https://github.com/nodejs/node/pull/53052) - \[[`6d8589e558`](https://github.com/nodejs/node/commit/6d8589e558)] - **deps**: patch V8 to 12.4.254.17 (Node.js GitHub Bot) [#&#8203;52980](https://github.com/nodejs/node/pull/52980) - \[[`fd91eaab34`](https://github.com/nodejs/node/commit/fd91eaab34)] - **deps**: upgrade npm to 10.8.0 (npm team) [#&#8203;53014](https://github.com/nodejs/node/pull/53014) - \[[`133cae0732`](https://github.com/nodejs/node/commit/133cae0732)] - **doc**: fix broken link in `static-analysis.md` (Richard Lau) [#&#8203;53345](https://github.com/nodejs/node/pull/53345) - \[[`7bc5f964fd`](https://github.com/nodejs/node/commit/7bc5f964fd)] - **doc**: indicate requirement on VS 17.6 or newer (Chengzhong Wu) [#&#8203;53301](https://github.com/nodejs/node/pull/53301) - \[[`8c71522ced`](https://github.com/nodejs/node/commit/8c71522ced)] - **doc**: remove cases for keys not containing "\*" in PATTERN_KEY_COMPARE (Maarten Zuidhoorn) [#&#8203;53215](https://github.com/nodejs/node/pull/53215) - \[[`718a3ab1ab`](https://github.com/nodejs/node/commit/718a3ab1ab)] - **doc**: add err param to fs.cp callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234) - \[[`d89bde26ff`](https://github.com/nodejs/node/commit/d89bde26ff)] - **doc**: add `err` param to fs.copyFile callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234) - \[[`91971ee344`](https://github.com/nodejs/node/commit/91971ee344)] - **doc**: reserve 128 for Electron 32 (Keeley Hammond) [#&#8203;53203](https://github.com/nodejs/node/pull/53203) - \[[`812f0e9e14`](https://github.com/nodejs/node/commit/812f0e9e14)] - **doc**: add note to ninjia build for macOS using -jn flag (jakecastelli) [#&#8203;53187](https://github.com/nodejs/node/pull/53187) - \[[`048478d351`](https://github.com/nodejs/node/commit/048478d351)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`c391923445`](https://github.com/nodejs/node/commit/c391923445)] - **doc**: include ESM import for HTTP (Aviv Keller) [#&#8203;53165](https://github.com/nodejs/node/pull/53165) - \[[`1eb55f3550`](https://github.com/nodejs/node/commit/1eb55f3550)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`67a766f7d4`](https://github.com/nodejs/node/commit/67a766f7d4)] - **doc**: fix minor grammar and style issues in SECURITY.md (Rich Trott) [#&#8203;53168](https://github.com/nodejs/node/pull/53168) - \[[`afbfe8922a`](https://github.com/nodejs/node/commit/afbfe8922a)] - **doc**: mention pm is not enforced when using fd (Rafael Gonzaga) [#&#8203;53125](https://github.com/nodejs/node/pull/53125) - \[[`1702d2632e`](https://github.com/nodejs/node/commit/1702d2632e)] - **doc**: fix format in `esm.md` (Pop Moore) [#&#8203;53170](https://github.com/nodejs/node/pull/53170) - \[[`070577e7d7`](https://github.com/nodejs/node/commit/070577e7d7)] - **doc**: fix wrong variable name in example of `timers.tick()` (Deokjin Kim) [#&#8203;53147](https://github.com/nodejs/node/pull/53147) - \[[`7147c1df1f`](https://github.com/nodejs/node/commit/7147c1df1f)] - **doc**: fix wrong function name in example of `context.plan()` (Deokjin Kim) [#&#8203;53140](https://github.com/nodejs/node/pull/53140) - \[[`cf47384148`](https://github.com/nodejs/node/commit/cf47384148)] - **doc**: add note for windows users and symlinks (Aviv Keller) [#&#8203;53117](https://github.com/nodejs/node/pull/53117) - \[[`088dff1074`](https://github.com/nodejs/node/commit/088dff1074)] - **doc**: move all TLS-PSK documentation to its section (Alba Mendez) [#&#8203;35717](https://github.com/nodejs/node/pull/35717) - \[[`db5dd0c6df`](https://github.com/nodejs/node/commit/db5dd0c6df)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118) - \[[`0f0bc98ad7`](https://github.com/nodejs/node/commit/0f0bc98ad7)] - **doc**: improve ninja build for --built-in-modules-path (jakecastelli) [#&#8203;53007](https://github.com/nodejs/node/pull/53007) - \[[`4c65c52d30`](https://github.com/nodejs/node/commit/4c65c52d30)] - **doc**: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) [#&#8203;45131](https://github.com/nodejs/node/pull/45131) - \[[`63fcbcfd62`](https://github.com/nodejs/node/commit/63fcbcfd62)] - **doc**: remove unavailable youtube link in pull requests (Deokjin Kim) [#&#8203;52982](https://github.com/nodejs/node/pull/52982) - \[[`77fd504636`](https://github.com/nodejs/node/commit/77fd504636)] - **doc**: add missing supported timer values in `timers.enable()` (Deokjin Kim) [#&#8203;52969](https://github.com/nodejs/node/pull/52969) - \[[`6708536b03`](https://github.com/nodejs/node/commit/6708536b03)] - **fs**: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) [#&#8203;53150](https://github.com/nodejs/node/pull/53150) - \[[`6165894774`](https://github.com/nodejs/node/commit/6165894774)] - **fs**: mark recursive cp methods as stable (Théo LUDWIG) [#&#8203;53127](https://github.com/nodejs/node/pull/53127) - \[[`7940db7be1`](https://github.com/nodejs/node/commit/7940db7be1)] - **fs**: remove basename in favor of std::filesystem (Yagiz Nizipli) [#&#8203;53062](https://github.com/nodejs/node/pull/53062) - \[[`505e9a425b`](https://github.com/nodejs/node/commit/505e9a425b)] - **lib**: fix misleading argument of validateUint32 (Tobias Nießen) [#&#8203;53307](https://github.com/nodejs/node/pull/53307) - \[[`98ae1ebdd6`](https://github.com/nodejs/node/commit/98ae1ebdd6)] - **lib**: fix the name of the fetch global function (Gabriel Bota) [#&#8203;53227](https://github.com/nodejs/node/pull/53227) - \[[`fe007cd1b4`](https://github.com/nodejs/node/commit/fe007cd1b4)] - **lib**: allow CJS source map cache to be reclaimed (Chengzhong Wu) [#&#8203;51711](https://github.com/nodejs/node/pull/51711) - \[[`040be4a7b4`](https://github.com/nodejs/node/commit/040be4a7b4)] - **lib**: do not call callback if socket is closed (theanarkh) [#&#8203;52829](https://github.com/nodejs/node/pull/52829) - \[[`ee56aecced`](https://github.com/nodejs/node/commit/ee56aecced)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575) - \[[`6413769bc7`](https://github.com/nodejs/node/commit/6413769bc7)] - **(SEMVER-MINOR)** **lib**: replace MessageEvent with undici's (Matthew Aitken) [#&#8203;52370](https://github.com/nodejs/node/pull/52370) - \[[`879679e5a3`](https://github.com/nodejs/node/commit/879679e5a3)] - **lib,doc**: replace references to import assertions (Michaël Zasso) [#&#8203;52998](https://github.com/nodejs/node/pull/52998) - \[[`062a0c6f67`](https://github.com/nodejs/node/commit/062a0c6f67)] - **meta**: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot\[bot]) [#&#8203;53248](https://github.com/nodejs/node/pull/53248) - \[[`e59b744b30`](https://github.com/nodejs/node/commit/e59b744b30)] - **meta**: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot\[bot]) [#&#8203;53247](https://github.com/nodejs/node/pull/53247) - \[[`96924f48a0`](https://github.com/nodejs/node/commit/96924f48a0)] - **meta**: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot\[bot]) [#&#8203;53246](https://github.com/nodejs/node/pull/53246) - \[[`b7f5662dee`](https://github.com/nodejs/node/commit/b7f5662dee)] - **meta**: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot\[bot]) [#&#8203;53244](https://github.com/nodejs/node/pull/53244) - \[[`e079967eb4`](https://github.com/nodejs/node/commit/e079967eb4)] - **meta**: remove `initializeCommand` from devcontainer (Aviv Keller) [#&#8203;53137](https://github.com/nodejs/node/pull/53137) - \[[`3afeced572`](https://github.com/nodejs/node/commit/3afeced572)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53065](https://github.com/nodejs/node/pull/53065) - \[[`4b9cdea8a6`](https://github.com/nodejs/node/commit/4b9cdea8a6)] - ***Revert*** "**module**: have a single hooks thread for all workers" (Matteo Collina) [#&#8203;53183](https://github.com/nodejs/node/pull/53183) - \[[`b5c30e2f5e`](https://github.com/nodejs/node/commit/b5c30e2f5e)] - **(SEMVER-MINOR)** **module**: print amount of load time of a cjs module (Vinicius Lourenço) [#&#8203;52213](https://github.com/nodejs/node/pull/52213) - \[[`4cdb05a7a2`](https://github.com/nodejs/node/commit/4cdb05a7a2)] - **module**: do not set CJS variables for Worker eval (Antoine du Hamel) [#&#8203;53050](https://github.com/nodejs/node/pull/53050) - \[[`a0766bdf0e`](https://github.com/nodejs/node/commit/a0766bdf0e)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136) - \[[`374743cd4e`](https://github.com/nodejs/node/commit/374743cd4e)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`e66eb376a0`](https://github.com/nodejs/node/commit/e66eb376a0)] - **repl**: fix await object patterns without values (Luke Haas) [#&#8203;53331](https://github.com/nodejs/node/pull/53331) - \[[`cb1329a8cf`](https://github.com/nodejs/node/commit/cb1329a8cf)] - **src**: use v8::(Des|S)erializeInternalFieldsCallback (Joyee Cheung) [#&#8203;53217](https://github.com/nodejs/node/pull/53217) - \[[`1886fe99af`](https://github.com/nodejs/node/commit/1886fe99af)] - **src**: use \__FUNCSIG\_\_ on Windows in backtrace (Joyee Cheung) [#&#8203;53135](https://github.com/nodejs/node/pull/53135) - \[[`3bfce6c816`](https://github.com/nodejs/node/commit/3bfce6c816)] - **src**: use new V8 API to define stream accessor (Igor Sheludko) [#&#8203;53084](https://github.com/nodejs/node/pull/53084) - \[[`11f790d911`](https://github.com/nodejs/node/commit/11f790d911)] - **src**: do not use deprecated V8 API (ishell) [#&#8203;53084](https://github.com/nodejs/node/pull/53084) - \[[`6b1731cbcc`](https://github.com/nodejs/node/commit/6b1731cbcc)] - **src**: convert all endian checks to constexpr (Tobias Nießen) [#&#8203;52974](https://github.com/nodejs/node/pull/52974) - \[[`7aa9519ad4`](https://github.com/nodejs/node/commit/7aa9519ad4)] - **src**: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) [#&#8203;52905](https://github.com/nodejs/node/pull/52905) - \[[`838fe59787`](https://github.com/nodejs/node/commit/838fe59787)] - **src**: fix execArgv in worker (theanarkh) [#&#8203;53029](https://github.com/nodejs/node/pull/53029) - \[[`4a2c6ff05d`](https://github.com/nodejs/node/commit/4a2c6ff05d)] - **src**: reduce unnecessary `GetCwd` calls (Yagiz Nizipli) [#&#8203;53064](https://github.com/nodejs/node/pull/53064) - \[[`ec44965b49`](https://github.com/nodejs/node/commit/ec44965b49)] - **src**: simplify node modules traverse path (Yagiz Nizipli) [#&#8203;53061](https://github.com/nodejs/node/pull/53061) - \[[`190129b48e`](https://github.com/nodejs/node/commit/190129b48e)] - **src**: remove unused `base64_table_url` (Yagiz Nizipli) [#&#8203;53040](https://github.com/nodejs/node/pull/53040) - \[[`d750a3c5c4`](https://github.com/nodejs/node/commit/d750a3c5c4)] - **src**: remove calls to recently deprecated V8 APIs (Adam Klein) [#&#8203;52996](https://github.com/nodejs/node/pull/52996) - \[[`f1890abb18`](https://github.com/nodejs/node/commit/f1890abb18)] - **src**: replace deprecated GetImportAssertions V8 API (Michaël Zasso) [#&#8203;52997](https://github.com/nodejs/node/pull/52997) - \[[`4347bd2acb`](https://github.com/nodejs/node/commit/4347bd2acb)] - **src**: improve node::Dotenv declarations (Tobias Nießen) [#&#8203;52973](https://github.com/nodejs/node/pull/52973) - \[[`e26166f30b`](https://github.com/nodejs/node/commit/e26166f30b)] - **src,permission**: handle process.chdir on pm (Rafael Gonzaga) [#&#8203;53175](https://github.com/nodejs/node/pull/53175) - \[[`75e5612fae`](https://github.com/nodejs/node/commit/75e5612fae)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124) - \[[`7c66b27407`](https://github.com/nodejs/node/commit/7c66b27407)] - **stream**: micro-optimize writable condition (Orgad Shaneh) [#&#8203;53189](https://github.com/nodejs/node/pull/53189) - \[[`a656cf6bc8`](https://github.com/nodejs/node/commit/a656cf6bc8)] - **stream**: fix memory usage regression in writable (Orgad Shaneh) [#&#8203;53188](https://github.com/nodejs/node/pull/53188) - \[[`0e85a84fdc`](https://github.com/nodejs/node/commit/0e85a84fdc)] - **test**: fix test when compiled without engine support (Richard Lau) [#&#8203;53232](https://github.com/nodejs/node/pull/53232) - \[[`cebbd83e47`](https://github.com/nodejs/node/commit/cebbd83e47)] - **test**: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) [#&#8203;53229](https://github.com/nodejs/node/pull/53229) - \[[`45c1eb19f1`](https://github.com/nodejs/node/commit/45c1eb19f1)] - ***Revert*** "**test**: skip v8-updates/test-linux-perf-logger" (Luke Albao) [#&#8203;52869](https://github.com/nodejs/node/pull/52869) - \[[`c1138db3c1`](https://github.com/nodejs/node/commit/c1138db3c1)] - **test**: unskip v8-updates/test-linux-perf-logger (Luke Albao) [#&#8203;52869](https://github.com/nodejs/node/pull/52869) - \[[`65b64cf0f1`](https://github.com/nodejs/node/commit/65b64cf0f1)] - **test**: fix Windows native test suites (Stefan Stojanovic) [#&#8203;53173](https://github.com/nodejs/node/pull/53173) - \[[`9a47792cd1`](https://github.com/nodejs/node/commit/9a47792cd1)] - **test**: skip `test-setproctitle` when `ps` is not available (Antoine du Hamel) [#&#8203;53104](https://github.com/nodejs/node/pull/53104) - \[[`a371dea699`](https://github.com/nodejs/node/commit/a371dea699)] - **test**: increase allocation so it fails for the test (Adam Majer) [#&#8203;53099](https://github.com/nodejs/node/pull/53099) - \[[`3ce7a9a1b5`](https://github.com/nodejs/node/commit/3ce7a9a1b5)] - **test**: remove timers from test-tls-socket-close (Luigi Pinca) [#&#8203;53019](https://github.com/nodejs/node/pull/53019) - \[[`494fa542af`](https://github.com/nodejs/node/commit/494fa542af)] - **test**: replace `.substr` with `.slice` (Antoine du Hamel) [#&#8203;53070](https://github.com/nodejs/node/pull/53070) - \[[`3f7d55b7db`](https://github.com/nodejs/node/commit/3f7d55b7db)] - **test**: add AbortController to knownGlobals (Luigi Pinca) [#&#8203;53020](https://github.com/nodejs/node/pull/53020) - \[[`c61f909ab6`](https://github.com/nodejs/node/commit/c61f909ab6)] - **test,doc**: enable running embedtest for Windows (Vladimir Morozov) [#&#8203;52646](https://github.com/nodejs/node/pull/52646) - \[[`2d1ecbf827`](https://github.com/nodejs/node/commit/2d1ecbf827)] - **test_runner**: calculate executed lines using source map (Moshe Atlow) [#&#8203;53315](https://github.com/nodejs/node/pull/53315) - \[[`d4f5f80f6c`](https://github.com/nodejs/node/commit/d4f5f80f6c)] - **test_runner**: handle file rename and deletion under watch mode (jakecastelli) [#&#8203;53114](https://github.com/nodejs/node/pull/53114) - \[[`07c601e32f`](https://github.com/nodejs/node/commit/07c601e32f)] - **test_runner**: refactor to use min/max of `validateInteger` (Deokjin Kim) [#&#8203;53148](https://github.com/nodejs/node/pull/53148) - \[[`8c6dffc269`](https://github.com/nodejs/node/commit/8c6dffc269)] - **(SEMVER-MINOR)** **test_runner**: add snapshot testing (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`f6d2af8ee7`](https://github.com/nodejs/node/commit/f6d2af8ee7)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`7a67ecf161`](https://github.com/nodejs/node/commit/7a67ecf161)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848) - \[[`3ff174f2bf`](https://github.com/nodejs/node/commit/3ff174f2bf)] - **test_runner**: fix t.assert methods (Colin Ihrig) [#&#8203;53049](https://github.com/nodejs/node/pull/53049) - \[[`e2211a07c2`](https://github.com/nodejs/node/commit/e2211a07c2)] - **test_runner**: avoid error when coverage line not found (Moshe Atlow) [#&#8203;53000](https://github.com/nodejs/node/pull/53000) - \[[`c249289121`](https://github.com/nodejs/node/commit/c249289121)] - **test_runner,doc**: align documentation with actual stdout/stderr behavior (Moshe Atlow) [#&#8203;53131](https://github.com/nodejs/node/pull/53131) - \[[`5110b19a07`](https://github.com/nodejs/node/commit/5110b19a07)] - **tls**: fix negative sessionTimeout handling (Tobias Nießen) [#&#8203;53002](https://github.com/nodejs/node/pull/53002) - \[[`0ecb770331`](https://github.com/nodejs/node/commit/0ecb770331)] - **tools**: remove no-goma arg from make-v8 script (Michaël Zasso) [#&#8203;53336](https://github.com/nodejs/node/pull/53336) - \[[`e7f3a3c296`](https://github.com/nodejs/node/commit/e7f3a3c296)] - **tools**: use sccache Github action (Moshe Atlow) [#&#8203;53316](https://github.com/nodejs/node/pull/53316) - \[[`98cc094bc5`](https://github.com/nodejs/node/commit/98cc094bc5)] - **tools**: update eslint to 9.4.0 (Node.js GitHub Bot) [#&#8203;53298](https://github.com/nodejs/node/pull/53298) - \[[`6409b1fe65`](https://github.com/nodejs/node/commit/6409b1fe65)] - **tools**: update gyp-next to 0.18.1 (Node.js GitHub Bot) [#&#8203;53251](https://github.com/nodejs/node/pull/53251) - \[[`86e80dcb9b`](https://github.com/nodejs/node/commit/86e80dcb9b)] - **tools**: move webcrypto into no-restricted-properties (Zihong Qu) [#&#8203;53023](https://github.com/nodejs/node/pull/53023) - \[[`6022346f0e`](https://github.com/nodejs/node/commit/6022346f0e)] - **tools**: update error message for Type Error (Aviv Keller) [#&#8203;53047](https://github.com/nodejs/node/pull/53047) - \[[`c1b3e0ed6f`](https://github.com/nodejs/node/commit/c1b3e0ed6f)] - ***Revert*** "**tools**: add --certify-safe to nci-ci" (Antoine du Hamel) [#&#8203;53098](https://github.com/nodejs/node/pull/53098) - \[[`9f764a873c`](https://github.com/nodejs/node/commit/9f764a873c)] - **tools**: update ESLint to v9 and use flat config (Michaël Zasso) [#&#8203;52780](https://github.com/nodejs/node/pull/52780) - \[[`2859f4c027`](https://github.com/nodejs/node/commit/2859f4c027)] - **watch**: fix variable naming (jakecastelli) [#&#8203;53101](https://github.com/nodejs/node/pull/53101) ### [`v22.2.0`](https://github.com/nodejs/node/releases/tag/v22.2.0): 2024-05-15, Version 22.2.0 (Current), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v22.1.0...v22.2.0) ##### Notable Changes - \[[`fb85d38e80`](https://github.com/nodejs/node/commit/fb85d38e80)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`23a0d3339f`](https://github.com/nodejs/node/commit/23a0d3339f)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874) - \[[`7d7a762156`](https://github.com/nodejs/node/commit/7d7a762156)] - **(SEMVER-MINOR)** **fs**: allow 'withFileTypes' to be used with globs (Aviv Keller) [#&#8203;52837](https://github.com/nodejs/node/pull/52837) - \[[`8748dd6477`](https://github.com/nodejs/node/commit/8748dd6477)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#&#8203;52734](https://github.com/nodejs/node/pull/52734) - \[[`9a7ae9b6c4`](https://github.com/nodejs/node/commit/9a7ae9b6c4)] - **lib,src**: remove --experimental-policy (Rafael Gonzaga) [#&#8203;52583](https://github.com/nodejs/node/pull/52583) - \[[`1f7c2a93fc`](https://github.com/nodejs/node/commit/1f7c2a93fc)] - **(SEMVER-MINOR)** **perf_hooks**: add `deliveryType` and `responseStatus` fields (Matthew Aitken) [#&#8203;51589](https://github.com/nodejs/node/pull/51589) - \[[`2f59529dc5`](https://github.com/nodejs/node/commit/2f59529dc5)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#&#8203;52860](https://github.com/nodejs/node/pull/52860) - \[[`6b4dac3eb5`](https://github.com/nodejs/node/commit/6b4dac3eb5)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#&#8203;52692](https://github.com/nodejs/node/pull/52692) ##### Commits - \[[`0f5716c364`](https://github.com/nodejs/node/commit/0f5716c364)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#&#8203;51805](https://github.com/nodejs/node/pull/51805) - \[[`2c7d7caa8a`](https://github.com/nodejs/node/commit/2c7d7caa8a)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#&#8203;51746](https://github.com/nodejs/node/pull/51746) - \[[`5db4c54bd6`](https://github.com/nodejs/node/commit/5db4c54bd6)] - **bootstrap**: print `--help` message using `console.log` (Jacob Hummer) [#&#8203;51463](https://github.com/nodejs/node/pull/51463) - \[[`67fcb6b85e`](https://github.com/nodejs/node/commit/67fcb6b85e)] - **buffer**: even faster atob (Daniel Lemire) [#&#8203;52443](https://github.com/nodejs/node/pull/52443) - \[[`a5d63f9052`](https://github.com/nodejs/node/commit/a5d63f9052)] - **buffer**: use size_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#&#8203;48033](https://github.com/nodejs/node/pull/48033) - \[[`f1bc994826`](https://github.com/nodejs/node/commit/f1bc994826)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#&#8203;52588](https://github.com/nodejs/node/pull/52588) - \[[`a97ff753ab`](https://github.com/nodejs/node/commit/a97ff753ab)] - **build**: add option to enable clang-cl on Windows (Michaël Zasso) [#&#8203;52870](https://github.com/nodejs/node/pull/52870) - \[[`f96466a92c`](https://github.com/nodejs/node/commit/f96466a92c)] - **build**: enable building with shared uvwasi lib (Pooja D P) [#&#8203;43987](https://github.com/nodejs/node/pull/43987) - \[[`b463385aa8`](https://github.com/nodejs/node/commit/b463385aa8)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#&#8203;52913](https://github.com/nodejs/node/pull/52913) - \[[`daeb7dbb3e`](https://github.com/nodejs/node/commit/daeb7dbb3e)] - **build**: sync V8 warning cflags with BUILD.gn (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873) - \[[`eed967430d`](https://github.com/nodejs/node/commit/eed967430d)] - **build**: harmonize Clang checks (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873) - \[[`e4b187433d`](https://github.com/nodejs/node/commit/e4b187433d)] - **build**: compile with C++20 support (Michaël Zasso) [#&#8203;52838](https://github.com/nodejs/node/pull/52838) - \[[`aea6ca25ba`](https://github.com/nodejs/node/commit/aea6ca25ba)] - **build**: drop base64 dep in GN build (Cheng) [#&#8203;52856](https://github.com/nodejs/node/pull/52856) - \[[`7f866a8225`](https://github.com/nodejs/node/commit/7f866a8225)] - **build**: make simdjson a public dep in GN build (Cheng) [#&#8203;52755](https://github.com/nodejs/node/pull/52755) - \[[`e1bd53c098`](https://github.com/nodejs/node/commit/e1bd53c098)] - **build**: define `NOMINMAX` in common.gypi (Chengzhong Wu) [#&#8203;52794](https://github.com/nodejs/node/pull/52794) - \[[`18c530f8f7`](https://github.com/nodejs/node/commit/18c530f8f7)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#&#8203;51394](https://github.com/nodejs/node/pull/51394) - \[[`fb85d38e80`](https://github.com/nodejs/node/commit/fb85d38e80)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`11e978916f`](https://github.com/nodejs/node/commit/11e978916f)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#&#8203;50317](https://github.com/nodejs/node/pull/50317) - \[[`db76c58d68`](https://github.com/nodejs/node/commit/db76c58d68)] - **console**: colorize console error and warn (Jithil P Ponnan) [#&#8203;51629](https://github.com/nodejs/node/pull/51629) - \[[`0d040a3035`](https://github.com/nodejs/node/commit/0d040a3035)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#&#8203;49030](https://github.com/nodejs/node/pull/49030) - \[[`ab7219f0b2`](https://github.com/nodejs/node/commit/ab7219f0b2)] - **deps**: update googletest to [`fa6de7f`](https://github.com/nodejs/node/commit/fa6de7f) (Node.js GitHub Bot) [#&#8203;52949](https://github.com/nodejs/node/pull/52949) - \[[`4ab096eccc`](https://github.com/nodejs/node/commit/4ab096eccc)] - **deps**: update simdjson to 3.9.2 (Node.js GitHub Bot) [#&#8203;52947](https://github.com/nodejs/node/pull/52947) - \[[`89f275b1df`](https://github.com/nodejs/node/commit/89f275b1df)] - **deps**: update corepack to 0.28.1 (Node.js GitHub Bot) [#&#8203;52946](https://github.com/nodejs/node/pull/52946) - \[[`fc568b4b42`](https://github.com/nodejs/node/commit/fc568b4b42)] - **deps**: update simdutf to 5.2.8 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727) - \[[`e399360182`](https://github.com/nodejs/node/commit/e399360182)] - **deps**: update simdutf to 5.2.6 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727) - \[[`232831f013`](https://github.com/nodejs/node/commit/232831f013)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#&#8203;52924](https://github.com/nodejs/node/pull/52924) - \[[`7ca83a5abc`](https://github.com/nodejs/node/commit/7ca83a5abc)] - **deps**: update googletest to [`2d16ed0`](https://github.com/nodejs/node/commit/2d16ed0) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`3b15eb5911`](https://github.com/nodejs/node/commit/3b15eb5911)] - **deps**: update googletest to [`d83fee1`](https://github.com/nodejs/node/commit/d83fee1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`4190d70035`](https://github.com/nodejs/node/commit/4190d70035)] - **deps**: update googletest to [`5a37b51`](https://github.com/nodejs/node/commit/5a37b51) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`7a166a2871`](https://github.com/nodejs/node/commit/7a166a2871)] - **deps**: update googletest to [`5197b1a`](https://github.com/nodejs/node/commit/5197b1a) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`812dbd749f`](https://github.com/nodejs/node/commit/812dbd749f)] - **deps**: update googletest to [`eff443c`](https://github.com/nodejs/node/commit/eff443c) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`cb3ae4b9ef`](https://github.com/nodejs/node/commit/cb3ae4b9ef)] - **deps**: update googletest to [`c231e6f`](https://github.com/nodejs/node/commit/c231e6f) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`d97317aaa1`](https://github.com/nodejs/node/commit/d97317aaa1)] - **deps**: update googletest to [`e4fdb87`](https://github.com/nodejs/node/commit/e4fdb87) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`ad8ca1259f`](https://github.com/nodejs/node/commit/ad8ca1259f)] - **deps**: update googletest to [`5df0241`](https://github.com/nodejs/node/commit/5df0241) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`828f0d7096`](https://github.com/nodejs/node/commit/828f0d7096)] - **deps**: update googletest to [`b75ecf1`](https://github.com/nodejs/node/commit/b75ecf1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`3b60dbcf7b`](https://github.com/nodejs/node/commit/3b60dbcf7b)] - **deps**: update googletest to [`4565741`](https://github.com/nodejs/node/commit/4565741) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`37098eb880`](https://github.com/nodejs/node/commit/37098eb880)] - **deps**: update simdjson to 3.9.1 (Node.js GitHub Bot) [#&#8203;52397](https://github.com/nodejs/node/pull/52397) - \[[`a13cf1c049`](https://github.com/nodejs/node/commit/a13cf1c049)] - **deps**: update uvwasi to 0.0.21 (Node.js GitHub Bot) [#&#8203;52863](https://github.com/nodejs/node/pull/52863) - \[[`faf8ada719`](https://github.com/nodejs/node/commit/faf8ada719)] - **deps**: V8: cherry-pick [`f6bef09`](https://github.com/nodejs/node/commit/f6bef09b3b0a) (Richard Lau) [#&#8203;52802](https://github.com/nodejs/node/pull/52802) - \[[`8e5844c2a4`](https://github.com/nodejs/node/commit/8e5844c2a4)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#&#8203;52960](https://github.com/nodejs/node/pull/52960) - \[[`1f3634e30f`](https://github.com/nodejs/node/commit/1f3634e30f)] - **doc**: update hljs with the latest styles (Aviv Keller) [#&#8203;52911](https://github.com/nodejs/node/pull/52911) - \[[`9102255749`](https://github.com/nodejs/node/commit/9102255749)] - **doc**: mention quicker way to build docs (Alex Crawford) [#&#8203;52937](https://github.com/nodejs/node/pull/52937) - \[[`15db3ef5fb`](https://github.com/nodejs/node/commit/15db3ef5fb)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#&#8203;52906](https://github.com/nodejs/node/pull/52906) - \[[`80fa675af2`](https://github.com/nodejs/node/commit/80fa675af2)] - **doc**: document pipeline with `end` option (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970) - \[[`c0000f4118`](https://github.com/nodejs/node/commit/c0000f4118)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#&#8203;39412](https://github.com/nodejs/node/pull/39412) - \[[`e0148e2653`](https://github.com/nodejs/node/commit/e0148e2653)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#&#8203;49091](https://github.com/nodejs/node/pull/49091) - \[[`030f56ee6d`](https://github.com/nodejs/node/commit/030f56ee6d)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#&#8203;51653](https://github.com/nodejs/node/pull/51653) - \[[`a6d624cd5a`](https://github.com/nodejs/node/commit/a6d624cd5a)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#&#8203;48170](https://github.com/nodejs/node/pull/48170) - \[[`5dab187ca8`](https://github.com/nodejs/node/commit/5dab187ca8)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#&#8203;52453](https://github.com/nodejs/node/pull/52453) - \[[`5d3ee7205d`](https://github.com/nodejs/node/commit/5d3ee7205d)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#&#8203;52842](https://github.com/nodejs/node/pull/52842) - \[[`2dd8f092a8`](https://github.com/nodejs/node/commit/2dd8f092a8)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#&#8203;52896](https://github.com/nodejs/node/pull/52896) - \[[`0c2539b913`](https://github.com/nodejs/node/commit/0c2539b913)] - **doc**: add names next to release key bash commands (Aviv Keller) [#&#8203;52878](https://github.com/nodejs/node/pull/52878) - \[[`23a0d3339f`](https://github.com/nodejs/node/commit/23a0d3339f)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874) - \[[`15aad62e0c`](https://github.com/nodejs/node/commit/15aad62e0c)] - **doc**: update BUILDING.md previous versions links (Michaël Zasso) [#&#8203;52852](https://github.com/nodejs/node/pull/52852) - \[[`f770a993d4`](https://github.com/nodejs/node/commit/f770a993d4)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#&#8203;52798](https://github.com/nodejs/node/pull/52798) - \[[`f35b838a65`](https://github.com/nodejs/node/commit/f35b838a65)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#&#8203;38056](https://github.com/nodejs/node/pull/38056) - \[[`562a019a14`](https://github.com/nodejs/node/commit/562a019a14)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#&#8203;34213](https://github.com/nodejs/node/pull/34213) - \[[`0cb7cf7aa9`](https://github.com/nodejs/node/commit/0cb7cf7aa9)] - **doc**: fix grammatical mistake (codershiba) [#&#8203;52808](https://github.com/nodejs/node/pull/52808) - \[[`a0147ff8d0`](https://github.com/nodejs/node/commit/a0147ff8d0)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#&#8203;52757](https://github.com/nodejs/node/pull/52757) - \[[`fce31fc829`](https://github.com/nodejs/node/commit/fce31fc829)] - **doc**: add test_runner to subsystem (Raz Luvaton) [#&#8203;52774](https://github.com/nodejs/node/pull/52774) - \[[`ca5607bbc8`](https://github.com/nodejs/node/commit/ca5607bbc8)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#&#8203;51921](https://github.com/nodejs/node/pull/51921) - \[[`96566fc696`](https://github.com/nodejs/node/commit/96566fc696)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#&#8203;39463](https://github.com/nodejs/node/pull/39463) - \[[`5ee69243ed`](https://github.com/nodejs/node/commit/5ee69243ed)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#&#8203;43876](https://github.com/nodejs/node/pull/43876) - \[[`f076e721cb`](https://github.com/nodejs/node/commit/f076e721cb)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#&#8203;52178](https://github.com/nodejs/node/pull/52178) - \[[`7d7a762156`](https://github.com/nodejs/node/commit/7d7a762156)] - **(SEMVER-MINOR)** **fs**: allow 'withFileTypes' to be used with globs (Aviv Keller) [#&#8203;52837](https://github.com/nodejs/node/pull/52837) - \[[`ad9c4bddb1`](https://github.com/nodejs/node/commit/ad9c4bddb1)] - **http**: correctly translate HTTP method (Paolo Insogna) [#&#8203;52701](https://github.com/nodejs/node/pull/52701) - \[[`8748dd6477`](https://github.com/nodejs/node/commit/8748dd6477)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#&#8203;52734](https://github.com/nodejs/node/pull/52734) - \[[`9a7ae9b6c4`](https://github.com/nodejs/node/commit/9a7ae9b6c4)] - **lib,src**: remove --experimental-policy (Rafael Gonzaga) [#&#8203;52583](https://github.com/nodejs/node/pull/52583) - \[[`a850219600`](https://github.com/nodejs/node/commit/a850219600)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#&#8203;52932](https://github.com/nodejs/node/pull/52932) - \[[`4dc8a387b3`](https://github.com/nodejs/node/commit/4dc8a387b3)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#&#8203;52795](https://github.com/nodejs/node/pull/52795) - \[[`d10182d81d`](https://github.com/nodejs/node/commit/d10182d81d)] - **meta**: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot\[bot]) [#&#8203;52787](https://github.com/nodejs/node/pull/52787) - \[[`48d0ac0665`](https://github.com/nodejs/node/commit/48d0ac0665)] - **meta**: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot\[bot]) [#&#8203;52786](https://github.com/nodejs/node/pull/52786) - \[[`7c7a25150e`](https://github.com/nodejs/node/commit/7c7a25150e)] - **meta**: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot\[bot]) [#&#8203;52785](https://github.com/nodejs/node/pull/52785) - \[[`d9abf18342`](https://github.com/nodejs/node/commit/d9abf18342)] - **meta**: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot\[bot]) [#&#8203;52784](https://github.com/nodejs/node/pull/52784) - \[[`590e5c6c45`](https://github.com/nodejs/node/commit/590e5c6c45)] - **meta**: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot\[bot]) [#&#8203;52783](https://github.com/nodejs/node/pull/52783) - \[[`b3d1720515`](https://github.com/nodejs/node/commit/b3d1720515)] - **meta**: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot\[bot]) [#&#8203;52782](https://github.com/nodejs/node/pull/52782) - \[[`f74beb53de`](https://github.com/nodejs/node/commit/f74beb53de)] - **module**: cache synchronous module jobs before linking (Joyee Cheung) [#&#8203;52868](https://github.com/nodejs/node/pull/52868) - \[[`8fbf6628d6`](https://github.com/nodejs/node/commit/8fbf6628d6)] - **module**: have a single hooks thread for all workers (Gabriel Bota) [#&#8203;52706](https://github.com/nodejs/node/pull/52706) - \[[`609d90bb4b`](https://github.com/nodejs/node/commit/609d90bb4b)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#&#8203;52915](https://github.com/nodejs/node/pull/52915) - \[[`1f7c2a93fc`](https://github.com/nodejs/node/commit/1f7c2a93fc)] - **(SEMVER-MINOR)** **perf_hooks**: add `deliveryType` and `responseStatus` fields (Matthew Aitken) [#&#8203;51589](https://github.com/nodejs/node/pull/51589) - \[[`0bbc62c42a`](https://github.com/nodejs/node/commit/0bbc62c42a)] - **process**: improve event-loop (Aras Abbasi) [#&#8203;52108](https://github.com/nodejs/node/pull/52108) - \[[`619ac79abb`](https://github.com/nodejs/node/commit/619ac79abb)] - **quic**: address coverity warning (Michael Dawson) [#&#8203;52824](https://github.com/nodejs/node/pull/52824) - \[[`04de5766ee`](https://github.com/nodejs/node/commit/04de5766ee)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#&#8203;40661](https://github.com/nodejs/node/pull/40661) - \[[`663bb973ab`](https://github.com/nodejs/node/commit/663bb973ab)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#&#8203;52527](https://github.com/nodejs/node/pull/52527) - \[[`fca38b2d6e`](https://github.com/nodejs/node/commit/fca38b2d6e)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#&#8203;52164](https://github.com/nodejs/node/pull/52164) - \[[`b228db579f`](https://github.com/nodejs/node/commit/b228db579f)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#&#8203;46681](https://github.com/nodejs/node/pull/46681) - \[[`ace65a9aac`](https://github.com/nodejs/node/commit/ace65a9aac)] - **src**: make sure pass the `argv` to worker threads (theanarkh) [#&#8203;52827](https://github.com/nodejs/node/pull/52827) - \[[`75004d32ab`](https://github.com/nodejs/node/commit/75004d32ab)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#&#8203;52820](https://github.com/nodejs/node/pull/52820) - \[[`c40a8273ef`](https://github.com/nodejs/node/commit/c40a8273ef)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#&#8203;52886](https://github.com/nodejs/node/pull/52886) - \[[`d169d0f181`](https://github.com/nodejs/node/commit/d169d0f181)] - **src**: fix positional args in task runner (Yagiz Nizipli) [#&#8203;52810](https://github.com/nodejs/node/pull/52810) - \[[`9c76c95c10`](https://github.com/nodejs/node/commit/9c76c95c10)] - **src**: only apply fix in main thread (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702) - \[[`e1cba97df3`](https://github.com/nodejs/node/commit/e1cba97df3)] - **src**: fix test local edge case (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702) - \[[`dc41c135d7`](https://github.com/nodejs/node/commit/dc41c135d7)] - **src**: reduce unnecessary serialization of CLI options in C++ (Joyee Cheung) [#&#8203;52451](https://github.com/nodejs/node/pull/52451) - \[[`fb24c4475c`](https://github.com/nodejs/node/commit/fb24c4475c)] - **src**: rewrite task runner in c++ (Yagiz Nizipli) [#&#8203;52609](https://github.com/nodejs/node/pull/52609) - \[[`323f95de9e`](https://github.com/nodejs/node/commit/323f95de9e)] - **src**: migrate to new V8 interceptors API (Michaël Zasso) [#&#8203;52745](https://github.com/nodejs/node/pull/52745) - \[[`850ff02931`](https://github.com/nodejs/node/commit/850ff02931)] - **src,permission**: resolve path on fs_permission (Rafael Gonzaga) [#&#8203;52761](https://github.com/nodejs/node/pull/52761) - \[[`8d3b0b7ade`](https://github.com/nodejs/node/commit/8d3b0b7ade)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#&#8203;48847](https://github.com/nodejs/node/pull/48847) - \[[`fa715437b0`](https://github.com/nodejs/node/commit/fa715437b0)] - **stream**: fix util.inspect for compression/decompressionStream (Mert Can Altin) [#&#8203;52283](https://github.com/nodejs/node/pull/52283) - \[[`b0e6a6b3d5`](https://github.com/nodejs/node/commit/b0e6a6b3d5)] - **string_decoder**: throw an error when writing a too long buffer (zhenweijin) [#&#8203;52215](https://github.com/nodejs/node/pull/52215) - \[[`e016e952e6`](https://github.com/nodejs/node/commit/e016e952e6)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#&#8203;31137](https://github.com/nodejs/node/pull/31137) - \[[`a589de0886`](https://github.com/nodejs/node/commit/a589de0886)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#&#8203;49790](https://github.com/nodejs/node/pull/49790) - \[[`578868ddf8`](https://github.com/nodejs/node/commit/578868ddf8)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#&#8203;34066](https://github.com/nodejs/node/pull/34066) - \[[`c676e522e6`](https://github.com/nodejs/node/commit/c676e522e6)] - **test**: add fuzzer for native/js string conversion (Adam Korczynski) [#&#8203;51120](https://github.com/nodejs/node/pull/51120) - \[[`5f6415b41d`](https://github.com/nodejs/node/commit/5f6415b41d)] - **test**: add fuzzer for `ClientHelloParser` (AdamKorcz) [#&#8203;51088](https://github.com/nodejs/node/pull/51088) - \[[`4d50d51a5e`](https://github.com/nodejs/node/commit/4d50d51a5e)] - **test**: fix broken env fuzzer by initializing process (AdamKorcz) [#&#8203;51080](https://github.com/nodejs/node/pull/51080) - \[[`cd00cdcbc8`](https://github.com/nodejs/node/commit/cd00cdcbc8)] - **test**: replace `forEach()` in `test-stream-pipe-unpipe-stream` (Dario) [#&#8203;50786](https://github.com/nodejs/node/pull/50786) - \[[`5469adf458`](https://github.com/nodejs/node/commit/5469adf458)] - **test**: test pipeline `end` on transform streams (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970) - \[[`ea6070b0e8`](https://github.com/nodejs/node/commit/ea6070b0e8)] - **test**: improve coverage of lib/readline.js (Rongjian Zhang) [#&#8203;38646](https://github.com/nodejs/node/pull/38646) - \[[`4f96b00307`](https://github.com/nodejs/node/commit/4f96b00307)] - **test**: updated for each to for of in test file (lyannel) [#&#8203;50308](https://github.com/nodejs/node/pull/50308) - \[[`5d91cf1976`](https://github.com/nodejs/node/commit/5d91cf1976)] - **test**: move `test-http-server-request-timeouts-mixed` to sequential (Madhuri) [#&#8203;45722](https://github.com/nodejs/node/pull/45722) - \[[`f47e8fccbb`](https://github.com/nodejs/node/commit/f47e8fccbb)] - **test**: fix DNS cancel tests (Szymon Marczak) [#&#8203;44432](https://github.com/nodejs/node/pull/44432) - \[[`0b073f885a`](https://github.com/nodejs/node/commit/0b073f885a)] - **test**: add http agent to `executionAsyncResource` (psj-tar-gz) [#&#8203;34966](https://github.com/nodejs/node/pull/34966) - \[[`fbce3178ba`](https://github.com/nodejs/node/commit/fbce3178ba)] - **test**: reduce memory usage of test-worker-stdio (Adam Majer) [#&#8203;37769](https://github.com/nodejs/node/pull/37769) - \[[`1f8eaec454`](https://github.com/nodejs/node/commit/1f8eaec454)] - **test**: add common.expectRequiredModule() (Joyee Cheung) [#&#8203;52868](https://github.com/nodejs/node/pull/52868) - \[[`5e731da572`](https://github.com/nodejs/node/commit/5e731da572)] - **test**: skip unstable shadow realm gc tests (Chengzhong Wu) [#&#8203;52855](https://github.com/nodejs/node/pull/52855) - \[[`30a35ae522`](https://github.com/nodejs/node/commit/30a35ae522)] - **test**: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) [#&#8203;52781](https://github.com/nodejs/node/pull/52781) - \[[`968fe6a8b1`](https://github.com/nodejs/node/commit/968fe6a8b1)] - **test**: skip some console tests on dumb terminal (Adam Majer) [#&#8203;37770](https://github.com/nodejs/node/pull/37770) - \[[`1448959e0d`](https://github.com/nodejs/node/commit/1448959e0d)] - **test**: skip v8-updates/test-linux-perf-logger (Michaël Zasso) [#&#8203;52821](https://github.com/nodejs/node/pull/52821) - \[[`30a4248b48`](https://github.com/nodejs/node/commit/30a4248b48)] - **test**: add env variable test for --run (Yagiz Nizipli) [#&#8203;52811](https://github.com/nodejs/node/pull/52811) - \[[`edb4ed3bc9`](https://github.com/nodejs/node/commit/edb4ed3bc9)] - **test**: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) [#&#8203;52751](https://github.com/nodejs/node/pull/52751) - \[[`944ae598b5`](https://github.com/nodejs/node/commit/944ae598b5)] - **test, crypto**: use correct object on assert (响马) [#&#8203;51820](https://github.com/nodejs/node/pull/51820) - \[[`a814e720fa`](https://github.com/nodejs/node/commit/a814e720fa)] - **test_runner**: fix watch mode race condition (Moshe Atlow) [#&#8203;52954](https://github.com/nodejs/node/pull/52954) - \[[`2f59529dc5`](https://github.com/nodejs/node/commit/2f59529dc5)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#&#8203;52860](https://github.com/nodejs/node/pull/52860) - \[[`3267b3c063`](https://github.com/nodejs/node/commit/3267b3c063)] - **test_runner**: display failed test stack trace with dot reporter (Mihir Bhansali) [#&#8203;52655](https://github.com/nodejs/node/pull/52655) - \[[`b96868b4e7`](https://github.com/nodejs/node/commit/b96868b4e7)] - **test_runner**: preserve hook promise when executed twice (Moshe Atlow) [#&#8203;52791](https://github.com/nodejs/node/pull/52791) - \[[`74341ba3c9`](https://github.com/nodejs/node/commit/74341ba3c9)] - **tools**: fix v8-update workflow (Michaël Zasso) [#&#8203;52957](https://github.com/nodejs/node/pull/52957) - \[[`afe39ed0df`](https://github.com/nodejs/node/commit/afe39ed0df)] - **tools**: add --certify-safe to nci-ci (Matteo Collina) [#&#8203;52940](https://github.com/nodejs/node/pull/52940) - \[[`bb97e1ccdd`](https://github.com/nodejs/node/commit/bb97e1ccdd)] - **tools**: fix doc update action (Marco Ippolito) [#&#8203;52890](https://github.com/nodejs/node/pull/52890) - \[[`c6043fe6c8`](https://github.com/nodejs/node/commit/c6043fe6c8)] - **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`6e71accc5f`](https://github.com/nodejs/node/commit/6e71accc5f)] - **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`1600bdac60`](https://github.com/nodejs/node/commit/1600bdac60)] - **tools**: support != in test status files (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`8ce23dc9f3`](https://github.com/nodejs/node/commit/8ce23dc9f3)] - **tools**: update gyp-next to 0.18.0 (Node.js GitHub Bot) [#&#8203;52835](https://github.com/nodejs/node/pull/52835) - \[[`c5f832adc0`](https://github.com/nodejs/node/commit/c5f832adc0)] - **tools**: update gyp-next to 0.17.0 (Node.js GitHub Bot) [#&#8203;52835](https://github.com/nodejs/node/pull/52835) - \[[`646a094782`](https://github.com/nodejs/node/commit/646a094782)] - **tools**: prepare custom rules for ESLint v9 (Michaël Zasso) [#&#8203;52889](https://github.com/nodejs/node/pull/52889) - \[[`505566347d`](https://github.com/nodejs/node/commit/505566347d)] - **tools**: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) [#&#8203;52836](https://github.com/nodejs/node/pull/52836) - \[[`466e0c1321`](https://github.com/nodejs/node/commit/466e0c1321)] - **tools**: update `gr2m/create-or-update-pull-request-action` (Antoine du Hamel) [#&#8203;52843](https://github.com/nodejs/node/pull/52843) - \[[`ce7a751ad1`](https://github.com/nodejs/node/commit/ce7a751ad1)] - **tools**: use sccache GitHub action (Michaël Zasso) [#&#8203;52839](https://github.com/nodejs/node/pull/52839) - \[[`1ee38a5ec1`](https://github.com/nodejs/node/commit/1ee38a5ec1)] - **tools**: specify a commit-message for V8 update workflow (Antoine du Hamel) [#&#8203;52844](https://github.com/nodejs/node/pull/52844) - \[[`317998a1e8`](https://github.com/nodejs/node/commit/317998a1e8)] - **tools**: fix V8 update workflow (Antoine du Hamel) [#&#8203;52822](https://github.com/nodejs/node/pull/52822) - \[[`ef6a2101e2`](https://github.com/nodejs/node/commit/ef6a2101e2)] - **url,tools,benchmark**: replace deprecated `substr()` (Jungku Lee) [#&#8203;51546](https://github.com/nodejs/node/pull/51546) - \[[`0deef2d2b1`](https://github.com/nodejs/node/commit/0deef2d2b1)] - **util**: fix `%s` format behavior with `Symbol.toPrimitive` (Chenyu Yang) [#&#8203;50992](https://github.com/nodejs/node/pull/50992) - \[[`a42b93b9aa`](https://github.com/nodejs/node/commit/a42b93b9aa)] - **util**: improve `isInsideNodeModules` (uzlopak) [#&#8203;52147](https://github.com/nodejs/node/pull/52147) - \[[`d71e16154a`](https://github.com/nodejs/node/commit/d71e16154a)] - **watch**: allow listening for grouped changes (Matthieu Sieben) [#&#8203;52722](https://github.com/nodejs/node/pull/52722) - \[[`e895f7cf32`](https://github.com/nodejs/node/commit/e895f7cf32)] - **watch**: enable passthrough ipc in watch mode (Zack) [#&#8203;50890](https://github.com/nodejs/node/pull/50890) - \[[`f5d925706a`](https://github.com/nodejs/node/commit/f5d925706a)] - **watch**: fix arguments parsing (Moshe Atlow) [#&#8203;52760](https://github.com/nodejs/node/pull/52760) - \[[`6b4dac3eb5`](https://github.com/nodejs/node/commit/6b4dac3eb5)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#&#8203;52692](https://github.com/nodejs/node/pull/52692) ### [`v22.1.0`](https://github.com/nodejs/node/releases/tag/v22.1.0): 2024-05-02, Version 22.1.0 (Current), @&#8203;targos prepared by @&#8203;aduh95 [Compare Source](https://github.com/nodejs/node/compare/v22.0.0...v22.1.0) ##### module: implement `NODE_COMPILE_CACHE` for automatic on-disk code caching This patch implements automatic on-disk code caching that can be enabled via an environment variable `NODE_COMPILE_CACHE=/path/to/cache/dir`. When set, whenever Node.js compiles a CommonJS or a ECMAScript Module, it will use on-disk [V8 code cache](https://v8.dev/blog/code-caching-for-devs) persisted in the specified directory to speed up the compilation. This may slow down the first load of a module graph, but subsequent loads of the same module graph may get a significant speedup if the contents of the modules do not change. Locally, this speeds up loading of `test/fixtures/snapshot/typescript.js` from ~130ms to ~80ms. To clean up the generated code cache, simply remove the directory. It will be recreated the next time the same directory is used for `NODE_COMPILE_CACHE`. Compilation cache generated by one version of Node.js may not be used by a different version of Node.js. Cache generated by different versions of Node.js will be stored separately if the same directory is used to persist the cache, so they can co-exist. Caveat: currently when using this with V8 JavaScript code coverage, the coverage being collected by V8 may be less precise in functions that are deserialized from the code cache. It's recommended to turn this off when running tests to generate precise coverage. Contributed by Joyee Cheung in [#&#8203;52535](https://github.com/nodejs/node/pull/52535). ##### Other Notable Changes - \[[`44ee04cf9f`](https://github.com/nodejs/node/commit/44ee04cf9f)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#&#8203;52428](https://github.com/nodejs/node/pull/52428) - \[[`3c37ce5710`](https://github.com/nodejs/node/commit/3c37ce5710)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492) - \[[`3026401be1`](https://github.com/nodejs/node/commit/3026401be1)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#&#8203;52618](https://github.com/nodejs/node/pull/52618) - \[[`64428dc1c9`](https://github.com/nodejs/node/commit/64428dc1c9)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509) - \[[`d79ae74f71`](https://github.com/nodejs/node/commit/d79ae74f71)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474) - \[[`43fa6a1a45`](https://github.com/nodejs/node/commit/43fa6a1a45)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595) - \[[`c6fe433d42`](https://github.com/nodejs/node/commit/c6fe433d42)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730) - \[[`e247a61d15`](https://github.com/nodejs/node/commit/e247a61d15)] - **(SEMVER-MINOR)** **test_runner**: add --test-skip-pattern cli option (Aviv Keller) [#&#8203;52529](https://github.com/nodejs/node/pull/52529) - \[[`9b18df9dcb`](https://github.com/nodejs/node/commit/9b18df9dcb)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280) ##### Commits - \[[`35643c18c0`](https://github.com/nodejs/node/commit/35643c18c0)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#&#8203;52548](https://github.com/nodejs/node/pull/52548) - \[[`7cdfe8a3fc`](https://github.com/nodejs/node/commit/7cdfe8a3fc)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456) - \[[`7b82c17f22`](https://github.com/nodejs/node/commit/7b82c17f22)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456) - \[[`dfda6fed61`](https://github.com/nodejs/node/commit/dfda6fed61)] - **buffer**: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#&#8203;52477](https://github.com/nodejs/node/pull/52477) - \[[`44ee04cf9f`](https://github.com/nodejs/node/commit/44ee04cf9f)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#&#8203;52428](https://github.com/nodejs/node/pull/52428) - \[[`c64a1a3b89`](https://github.com/nodejs/node/commit/c64a1a3b89)] - **build**: fix typo in node.gyp (Michaël Zasso) [#&#8203;52719](https://github.com/nodejs/node/pull/52719) - \[[`4f713fbc2e`](https://github.com/nodejs/node/commit/4f713fbc2e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#&#8203;52442](https://github.com/nodejs/node/pull/52442) - \[[`4baeb7b21d`](https://github.com/nodejs/node/commit/4baeb7b21d)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#&#8203;52559](https://github.com/nodejs/node/pull/52559) - \[[`d5cd468ce8`](https://github.com/nodejs/node/commit/d5cd468ce8)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#&#8203;52632](https://github.com/nodejs/node/pull/52632) - \[[`910533fcfd`](https://github.com/nodejs/node/commit/910533fcfd)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#&#8203;49709](https://github.com/nodejs/node/pull/49709) - \[[`61e1ac0b8c`](https://github.com/nodejs/node/commit/61e1ac0b8c)] - **crypto**: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) [#&#8203;52217](https://github.com/nodejs/node/pull/52217) - \[[`6e98eee256`](https://github.com/nodejs/node/commit/6e98eee256)] - **deps**: upgrade npm to 10.7.0 (npm team) [#&#8203;52767](https://github.com/nodejs/node/pull/52767) - \[[`27a5f9418c`](https://github.com/nodejs/node/commit/27a5f9418c)] - **deps**: V8: cherry-pick [`500de8b`](https://github.com/nodejs/node/commit/500de8bd371b) (Richard Lau) [#&#8203;52676](https://github.com/nodejs/node/pull/52676) - \[[`3b422ddcea`](https://github.com/nodejs/node/commit/3b422ddcea)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#&#8203;52616](https://github.com/nodejs/node/pull/52616) - \[[`d40e4d4c42`](https://github.com/nodejs/node/commit/d40e4d4c42)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#&#8203;52517](https://github.com/nodejs/node/pull/52517) - \[[`5b52a4870a`](https://github.com/nodejs/node/commit/5b52a4870a)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#&#8203;52573](https://github.com/nodejs/node/pull/52573) - \[[`80cbe72c1f`](https://github.com/nodejs/node/commit/80cbe72c1f)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#&#8203;52493](https://github.com/nodejs/node/pull/52493) - \[[`9a44059055`](https://github.com/nodejs/node/commit/9a44059055)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#&#8203;52516](https://github.com/nodejs/node/pull/52516) - \[[`d67a9a5360`](https://github.com/nodejs/node/commit/d67a9a5360)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#&#8203;52524](https://github.com/nodejs/node/pull/52524) - \[[`8738b89971`](https://github.com/nodejs/node/commit/8738b89971)] - **deps**: upgrade npm to 10.5.2 (npm team) [#&#8203;52458](https://github.com/nodejs/node/pull/52458) - \[[`8e4fd2842b`](https://github.com/nodejs/node/commit/8e4fd2842b)] - **deps,src**: simplify base64 encoding (Daniel Lemire) [#&#8203;52714](https://github.com/nodejs/node/pull/52714) - \[[`3c37ce5710`](https://github.com/nodejs/node/commit/3c37ce5710)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492) - \[[`3987a28a9e`](https://github.com/nodejs/node/commit/3987a28a9e)] - **doc**: update process.versions properties (ishabi) [#&#8203;52736](https://github.com/nodejs/node/pull/52736) - \[[`c0b58e07f1`](https://github.com/nodejs/node/commit/c0b58e07f1)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#&#8203;52252](https://github.com/nodejs/node/pull/52252) - \[[`9a032cf6e2`](https://github.com/nodejs/node/commit/9a032cf6e2)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#&#8203;52648](https://github.com/nodejs/node/pull/52648) - \[[`90c6e77238`](https://github.com/nodejs/node/commit/90c6e77238)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#&#8203;52660](https://github.com/nodejs/node/pull/52660) - \[[`4d577fa048`](https://github.com/nodejs/node/commit/4d577fa048)] - **doc**: add .gitattributes for md files (Hüseyin Açacak) [#&#8203;52161](https://github.com/nodejs/node/pull/52161) - \[[`04c8e110e5`](https://github.com/nodejs/node/commit/04c8e110e5)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;52631](https://github.com/nodejs/node/pull/52631) - \[[`3552829594`](https://github.com/nodejs/node/commit/3552829594)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#&#8203;52598](https://github.com/nodejs/node/pull/52598) - \[[`eeb80ad836`](https://github.com/nodejs/node/commit/eeb80ad836)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#&#8203;52555](https://github.com/nodejs/node/pull/52555) - \[[`c83526a688`](https://github.com/nodejs/node/commit/c83526a688)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#&#8203;52590](https://github.com/nodejs/node/pull/52590) - \[[`31831e9db8`](https://github.com/nodejs/node/commit/31831e9db8)] - **doc**: sort options alphabetically (Luigi Pinca) [#&#8203;52589](https://github.com/nodejs/node/pull/52589) - \[[`a93f5d4aaa`](https://github.com/nodejs/node/commit/a93f5d4aaa)] - **doc**: correct stream.finished changes (KaKa) [#&#8203;52551](https://github.com/nodejs/node/pull/52551) - \[[`27ffa35540`](https://github.com/nodejs/node/commit/27ffa35540)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#&#8203;52556](https://github.com/nodejs/node/pull/52556) - \[[`63cc2b870e`](https://github.com/nodejs/node/commit/63cc2b870e)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#&#8203;52566](https://github.com/nodejs/node/pull/52566) - \[[`7e93c4892b`](https://github.com/nodejs/node/commit/7e93c4892b)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#&#8203;52515](https://github.com/nodejs/node/pull/52515) - \[[`3026401be1`](https://github.com/nodejs/node/commit/3026401be1)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#&#8203;52618](https://github.com/nodejs/node/pull/52618) - \[[`c6e0fe2f22`](https://github.com/nodejs/node/commit/c6e0fe2f22)] - **fs**: allow setting Stat date properties (Nicolò Ribaudo) [#&#8203;52708](https://github.com/nodejs/node/pull/52708) - \[[`f23fa1de72`](https://github.com/nodejs/node/commit/f23fa1de72)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#&#8203;52603](https://github.com/nodejs/node/pull/52603) - \[[`a7e03d301a`](https://github.com/nodejs/node/commit/a7e03d301a)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#&#8203;52349](https://github.com/nodejs/node/pull/52349) - \[[`d5ecb6cd00`](https://github.com/nodejs/node/commit/d5ecb6cd00)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#&#8203;52713](https://github.com/nodejs/node/pull/52713) - \[[`d1adc9b140`](https://github.com/nodejs/node/commit/d1adc9b140)] - **lib**: enforce ASCII order in error code imports (Antoine du Hamel) [#&#8203;52625](https://github.com/nodejs/node/pull/52625) - \[[`9ffdcade37`](https://github.com/nodejs/node/commit/9ffdcade37)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#&#8203;52580](https://github.com/nodejs/node/pull/52580) - \[[`fdcde845ee`](https://github.com/nodejs/node/commit/fdcde845ee)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#&#8203;52275](https://github.com/nodejs/node/pull/52275) - \[[`f6145aa2ca`](https://github.com/nodejs/node/commit/f6145aa2ca)] - **lib**: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) [#&#8203;52095](https://github.com/nodejs/node/pull/52095) - \[[`014bf01efc`](https://github.com/nodejs/node/commit/014bf01efc)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#&#8203;52440](https://github.com/nodejs/node/pull/52440) - \[[`dc399ddd03`](https://github.com/nodejs/node/commit/dc399ddd03)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#&#8203;52471](https://github.com/nodejs/node/pull/52471) - \[[`64428dc1c9`](https://github.com/nodejs/node/commit/64428dc1c9)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509) - \[[`9b2b6abb62`](https://github.com/nodejs/node/commit/9b2b6abb62)] - **lib,src**: iterate module requests of a module wrap in JS (Chengzhong Wu) [#&#8203;52058](https://github.com/nodejs/node/pull/52058) - \[[`896a80e366`](https://github.com/nodejs/node/commit/896a80e366)] - **meta**: standardize regex (Aviv Keller) [#&#8203;52693](https://github.com/nodejs/node/pull/52693) - \[[`20c07e922e`](https://github.com/nodejs/node/commit/20c07e922e)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52633](https://github.com/nodejs/node/pull/52633) - \[[`e70d8a4fa9`](https://github.com/nodejs/node/commit/e70d8a4fa9)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52457](https://github.com/nodejs/node/pull/52457) - \[[`20ab8f2a88`](https://github.com/nodejs/node/commit/20ab8f2a88)] - **module**: support ESM detection in the CJS loader (Joyee Cheung) [#&#8203;52047](https://github.com/nodejs/node/pull/52047) - \[[`544c602b75`](https://github.com/nodejs/node/commit/544c602b75)] - **module**: skip NODE_COMPILE_CACHE when policy is enabled (Joyee Cheung) [#&#8203;52577](https://github.com/nodejs/node/pull/52577) - \[[`3df3afc284`](https://github.com/nodejs/node/commit/3df3afc284)] - **module**: detect ESM syntax by trying to recompile as SourceTextModule (Joyee Cheung) [#&#8203;52413](https://github.com/nodejs/node/pull/52413) - \[[`4d77fd2c46`](https://github.com/nodejs/node/commit/4d77fd2c46)] - **(SEMVER-MINOR)** **module**: implement NODE_COMPILE_CACHE for automatic on-disk code caching (Joyee Cheung) [#&#8203;52535](https://github.com/nodejs/node/pull/52535) - \[[`9794d21b07`](https://github.com/nodejs/node/commit/9794d21b07)] - **module**: fix submodules loaded by require() and import() (Joyee Cheung) [#&#8203;52487](https://github.com/nodejs/node/pull/52487) - \[[`b00766d9e7`](https://github.com/nodejs/node/commit/b00766d9e7)] - **module**: tidy code and comments (Jacob Smith) [#&#8203;52437](https://github.com/nodejs/node/pull/52437) - \[[`d79ae74f71`](https://github.com/nodejs/node/commit/d79ae74f71)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474) - \[[`b17cfea289`](https://github.com/nodejs/node/commit/b17cfea289)] - **node-api**: address coverity report (Michael Dawson) [#&#8203;52584](https://github.com/nodejs/node/pull/52584) - \[[`1fca8baac1`](https://github.com/nodejs/node/commit/1fca8baac1)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#&#8203;52426](https://github.com/nodejs/node/pull/52426) - \[[`d086ab42a1`](https://github.com/nodejs/node/commit/d086ab42a1)] - **quic**: address recent coverity warnings (Michael Dawson) [#&#8203;52647](https://github.com/nodejs/node/pull/52647) - \[[`fb4edf70cf`](https://github.com/nodejs/node/commit/fb4edf70cf)] - **quic**: rework TLSContext, additional cleanups (James M Snell) [#&#8203;51340](https://github.com/nodejs/node/pull/51340) - \[[`0c58d0319b`](https://github.com/nodejs/node/commit/0c58d0319b)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#&#8203;52545](https://github.com/nodejs/node/pull/52545) - \[[`e20d2f1de3`](https://github.com/nodejs/node/commit/e20d2f1de3)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#&#8203;52638](https://github.com/nodejs/node/pull/52638) - \[[`43fa6a1a45`](https://github.com/nodejs/node/commit/43fa6a1a45)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595) - \[[`a56faff4d0`](https://github.com/nodejs/node/commit/a56faff4d0)] - **src**: parse inspector profiles with simdjson (Joyee Cheung) [#&#8203;51783](https://github.com/nodejs/node/pull/51783) - \[[`ac04c6434a`](https://github.com/nodejs/node/commit/ac04c6434a)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#&#8203;52406](https://github.com/nodejs/node/pull/52406) - \[[`f283d27285`](https://github.com/nodejs/node/commit/f283d27285)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#&#8203;52438](https://github.com/nodejs/node/pull/52438) - \[[`c6fe433d42`](https://github.com/nodejs/node/commit/c6fe433d42)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730) - \[[`9f9eca965a`](https://github.com/nodejs/node/commit/9f9eca965a)] - **stream**: update ongoing promise in async iterator return() method (Mattias Buelens) [#&#8203;52657](https://github.com/nodejs/node/pull/52657) - \[[`d568a9a38e`](https://github.com/nodejs/node/commit/d568a9a38e)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#&#8203;52739](https://github.com/nodejs/node/pull/52739) - \[[`45f7002b90`](https://github.com/nodejs/node/commit/45f7002b90)] - **test**: mark test as flaky (Michael Dawson) [#&#8203;52671](https://github.com/nodejs/node/pull/52671) - \[[`10596e20e8`](https://github.com/nodejs/node/commit/10596e20e8)] - **test**: fix backtick usage in docs (Aviv Keller) [#&#8203;52643](https://github.com/nodejs/node/pull/52643) - \[[`b2f754c9f1`](https://github.com/nodejs/node/commit/b2f754c9f1)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#&#8203;52645](https://github.com/nodejs/node/pull/52645) - \[[`ed080d868d`](https://github.com/nodejs/node/commit/ed080d868d)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#&#8203;52563](https://github.com/nodejs/node/pull/52563) - \[[`c8c61737e4`](https://github.com/nodejs/node/commit/c8c61737e4)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#&#8203;52431](https://github.com/nodejs/node/pull/52431) - \[[`18aa5d6640`](https://github.com/nodejs/node/commit/18aa5d6640)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#&#8203;52538](https://github.com/nodejs/node/pull/52538) - \[[`e34e0a9ba1`](https://github.com/nodejs/node/commit/e34e0a9ba1)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#&#8203;52511](https://github.com/nodejs/node/pull/52511) - \[[`e247a61d15`](https://github.com/nodejs/node/commit/e247a61d15)] - **(SEMVER-MINOR)** **test_runner**: add --test-skip-pattern cli option (Aviv Keller) [#&#8203;52529](https://github.com/nodejs/node/pull/52529) - \[[`e066ba2ae4`](https://github.com/nodejs/node/commit/e066ba2ae4)] - **test_runner**: better error handing for test hook (Alex Yang) [#&#8203;52401](https://github.com/nodejs/node/pull/52401) - \[[`328755341d`](https://github.com/nodejs/node/commit/328755341d)] - **test_runner**: don't exceed call stack when filtering (Colin Ihrig) [#&#8203;52488](https://github.com/nodejs/node/pull/52488) - \[[`b4ccb6c626`](https://github.com/nodejs/node/commit/b4ccb6c626)] - **test_runner**: move end of work check to finalize() (Colin Ihrig) [#&#8203;52488](https://github.com/nodejs/node/pull/52488) - \[[`2ef9380472`](https://github.com/nodejs/node/commit/2ef9380472)] - **tools**: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) [#&#8203;52729](https://github.com/nodejs/node/pull/52729) - \[[`db421bdefc`](https://github.com/nodejs/node/commit/db421bdefc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#&#8203;52669](https://github.com/nodejs/node/pull/52669) - \[[`01103a85cb`](https://github.com/nodejs/node/commit/01103a85cb)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#&#8203;52624](https://github.com/nodejs/node/pull/52624) - \[[`382d951b01`](https://github.com/nodejs/node/commit/382d951b01)] - **tools**: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) [#&#8203;52617](https://github.com/nodejs/node/pull/52617) - \[[`f9ddd77ff3`](https://github.com/nodejs/node/commit/f9ddd77ff3)] - **tools**: add lint rule to keep primordials in ASCII order (Antoine du Hamel) [#&#8203;52592](https://github.com/nodejs/node/pull/52592) - \[[`552642a498`](https://github.com/nodejs/node/commit/552642a498)] - **tools**: update lint-md-dependencies (Rich Trott) [#&#8203;52581](https://github.com/nodejs/node/pull/52581) - \[[`df61feb655`](https://github.com/nodejs/node/commit/df61feb655)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#&#8203;52561](https://github.com/nodejs/node/pull/52561) - \[[`6b4bbfbb1f`](https://github.com/nodejs/node/commit/6b4bbfbb1f)] - **tools**: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) [#&#8203;52518](https://github.com/nodejs/node/pull/52518) - \[[`4e5ce3afb7`](https://github.com/nodejs/node/commit/4e5ce3afb7)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#&#8203;50714](https://github.com/nodejs/node/pull/50714) - \[[`15c5686381`](https://github.com/nodejs/node/commit/15c5686381)] - **tools**: update minimatch index path (Marco Ippolito) [#&#8203;52523](https://github.com/nodejs/node/pull/52523) - \[[`8ae1507ae1`](https://github.com/nodejs/node/commit/8ae1507ae1)] - **tools**: add a linter for README lists (Antoine du Hamel) [#&#8203;52476](https://github.com/nodejs/node/pull/52476) - \[[`0b970316bc`](https://github.com/nodejs/node/commit/0b970316bc)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#&#8203;52659](https://github.com/nodejs/node/pull/52659) - \[[`9b18df9dcb`](https://github.com/nodejs/node/commit/9b18df9dcb)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280) - \[[`d33131af3a`](https://github.com/nodejs/node/commit/d33131af3a)] - **vm**: fix ASCII-betical order (Aviv Keller) [#&#8203;52686](https://github.com/nodejs/node/pull/52686) ### [`v22.0.0`](https://github.com/nodejs/node/releases/tag/v22.0.0): 2024-04-24, Version 22.0.0 (Current), @&#8203;RafaelGSS and @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.18.1...v22.0.0) We're excited to announce the release of Node.js 22! Highlights include require()ing ESM graphs, WebSocket client, updates of the V8 JavaScript engine, and more! As a reminder, Node.js 22 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. ##### Other Notable Changes - \[[`25c79f3331`](https://github.com/nodejs/node/commit/25c79f3331)] - **esm**: drop support for import assertions (Nicolò Ribaudo) [#&#8203;52104](https://github.com/nodejs/node/pull/52104) - \[[`818c10e86d`](https://github.com/nodejs/node/commit/818c10e86d)] - **lib**: improve perf of `AbortSignal` creation (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408) - \[[`4f68c7c1c9`](https://github.com/nodejs/node/commit/4f68c7c1c9)] - **watch**: mark as stable (Moshe Atlow) [#&#8203;52074](https://github.com/nodejs/node/pull/52074) - \[[`02b0bc01fe`](https://github.com/nodejs/node/commit/02b0bc01fe)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.4.254.14 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`c975384264`](https://github.com/nodejs/node/commit/c975384264)] - **(SEMVER-MAJOR)** **lib**: enable WebSocket by default (Aras Abbasi) [#&#8203;51594](https://github.com/nodejs/node/pull/51594) - \[[`1abff07392`](https://github.com/nodejs/node/commit/1abff07392)] - **(SEMVER-MAJOR)** **stream**: bump default highWaterMark (Robert Nagy) [#&#8203;52037](https://github.com/nodejs/node/pull/52037) - \[[`1a5acd0638`](https://github.com/nodejs/node/commit/1a5acd0638)] - **(SEMVER-MAJOR)** **v8**: enable maglev on supported architectures (Keyhan Vakil) [#&#8203;51360](https://github.com/nodejs/node/pull/51360) - \[[`128c60d906`](https://github.com/nodejs/node/commit/128c60d906)] - **(SEMVER-MINOR)** **cli**: implement `node --run <script-in-package-json>` (Yagiz Nizipli) [#&#8203;52190](https://github.com/nodejs/node/pull/52190) - \[[`151d365ad1`](https://github.com/nodejs/node/commit/151d365ad1)] - **(SEMVER-MINOR)** **fs**: expose glob and globSync (Moshe Atlow) [#&#8203;51912](https://github.com/nodejs/node/pull/51912) - \[[`5f7fad2605`](https://github.com/nodejs/node/commit/5f7fad2605)] - **(SEMVER-MINOR)** **module**: support require()ing synchronous ESM graphs (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977) ##### Semver-Major Commits - \[[`2b1e7c2fcb`](https://github.com/nodejs/node/commit/2b1e7c2fcb)] - **(SEMVER-MAJOR)** **build**: compile with C++20 support on Windows (StefanStojanovic) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`12d00f1479`](https://github.com/nodejs/node/commit/12d00f1479)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`5f08e11a3c`](https://github.com/nodejs/node/commit/5f08e11a3c)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`94f0369d1d`](https://github.com/nodejs/node/commit/94f0369d1d)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`58674cd1d8`](https://github.com/nodejs/node/commit/58674cd1d8)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`60e836427e`](https://github.com/nodejs/node/commit/60e836427e)] - **(SEMVER-MAJOR)** **console**: treat non-strings as separate argument in console.assert() (Jacob Hummer) [#&#8203;49722](https://github.com/nodejs/node/pull/49722) - \[[`d62ab3a1ef`](https://github.com/nodejs/node/commit/d62ab3a1ef)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate hmac constructor (Marco Ippolito) [#&#8203;52071](https://github.com/nodejs/node/pull/52071) - \[[`de0602d190`](https://github.com/nodejs/node/commit/de0602d190)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate Hash constructor (Marco Ippolito) [#&#8203;51880](https://github.com/nodejs/node/pull/51880) - \[[`215f4d04b7`](https://github.com/nodejs/node/commit/215f4d04b7)] - **(SEMVER-MAJOR)** **crypto**: move createCipher and createDecipher to eol (Marco Ippolito) [#&#8203;50973](https://github.com/nodejs/node/pull/50973) - \[[`30801b8aaf`](https://github.com/nodejs/node/commit/30801b8aaf)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`cd10ad7`](https://github.com/nodejs/node/commit/cd10ad7cdbe5) (Joyee Cheung) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`521b629ab1`](https://github.com/nodejs/node/commit/521b629ab1)] - **(SEMVER-MAJOR)** **deps**: V8: revert CL [`5331688`](https://github.com/nodejs/node/commit/5331688) (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`3795e97e6c`](https://github.com/nodejs/node/commit/3795e97e6c)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (StefanStojanovic) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`5bde9e677d`](https://github.com/nodejs/node/commit/5bde9e677d)] - **(SEMVER-MAJOR)** **deps**: silence internal V8 deprecation warning (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`46e628c6f2`](https://github.com/nodejs/node/commit/46e628c6f2)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`f824e40a82`](https://github.com/nodejs/node/commit/f824e40a82)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`d2c84c9a13`](https://github.com/nodejs/node/commit/d2c84c9a13)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`95d6045bdb`](https://github.com/nodejs/node/commit/95d6045bdb)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`00f55f5743`](https://github.com/nodejs/node/commit/00f55f5743)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`764085aa66`](https://github.com/nodejs/node/commit/764085aa66)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`02b0bc01fe`](https://github.com/nodejs/node/commit/02b0bc01fe)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.4.254.14 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`0ec50a19dd`](https://github.com/nodejs/node/commit/0ec50a19dd)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`cd10ad7`](https://github.com/nodejs/node/commit/cd10ad7cdbe5) (Joyee Cheung) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`021b0b7dee`](https://github.com/nodejs/node/commit/021b0b7dee)] - **(SEMVER-MAJOR)** **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`681aaf85c7`](https://github.com/nodejs/node/commit/681aaf85c7)] - **(SEMVER-MAJOR)** **deps**: silence internal V8 deprecation warning (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`c563a1c4e4`](https://github.com/nodejs/node/commit/c563a1c4e4)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (Stefan Stojanovic) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`11e94b9987`](https://github.com/nodejs/node/commit/11e94b9987)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`856163e23c`](https://github.com/nodejs/node/commit/856163e23c)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`b530214127`](https://github.com/nodejs/node/commit/b530214127)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`8054f69dd9`](https://github.com/nodejs/node/commit/8054f69dd9)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`dee908be42`](https://github.com/nodejs/node/commit/dee908be42)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`cf069414ee`](https://github.com/nodejs/node/commit/cf069414ee)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`cc5792dd85`](https://github.com/nodejs/node/commit/cc5792dd85)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.3.219.16 (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`61a0d3b4c4`](https://github.com/nodejs/node/commit/61a0d3b4c4)] - **(SEMVER-MAJOR)** **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`f55380a725`](https://github.com/nodejs/node/commit/f55380a725)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`f8d5e57`](https://github.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`b9d806a2dd`](https://github.com/nodejs/node/commit/b9d806a2dd)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (StefanStojanovic) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`63b58bc17b`](https://github.com/nodejs/node/commit/63b58bc17b)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`86056353c4`](https://github.com/nodejs/node/commit/86056353c4)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`2e0efc1c8d`](https://github.com/nodejs/node/commit/2e0efc1c8d)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`59e6f62e34`](https://github.com/nodejs/node/commit/59e6f62e34)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`0423f7e27e`](https://github.com/nodejs/node/commit/0423f7e27e)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`f36620806d`](https://github.com/nodejs/node/commit/f36620806d)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`09a8440b45`](https://github.com/nodejs/node/commit/09a8440b45)] - **(SEMVER-MAJOR)** **deps**: update V8 to 12.2.281.27 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`0da3beebfc`](https://github.com/nodejs/node/commit/0da3beebfc)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`de611e6`](https://github.com/nodejs/node/commit/de611e69ad51) (Keyhan Vakil) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`b982335637`](https://github.com/nodejs/node/commit/b982335637)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0fd478b`](https://github.com/nodejs/node/commit/0fd478bcdabd) (Joyee Cheung) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`481a90116c`](https://github.com/nodejs/node/commit/481a90116c)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`0f9ebbc`](https://github.com/nodejs/node/commit/0f9ebbc672c7) (Chengzhong Wu) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`782addbdc3`](https://github.com/nodejs/node/commit/782addbdc3)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`8f0b946`](https://github.com/nodejs/node/commit/8f0b94671ddb) (Lu Yahan) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`b682e7f540`](https://github.com/nodejs/node/commit/b682e7f540)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`f7d000a`](https://github.com/nodejs/node/commit/f7d000a7ae7b) (Luke Albao) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`a60090c52f`](https://github.com/nodejs/node/commit/a60090c52f)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick [`2590224`](https://github.com/nodejs/node/commit/25902244ad1a) (Joyee Cheung) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`8441d1fc18`](https://github.com/nodejs/node/commit/8441d1fc18)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`e8e9bbd7a9`](https://github.com/nodejs/node/commit/e8e9bbd7a9)] - **(SEMVER-MAJOR)** **deps**: remove usage of a C++20 feature from V8 (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`785d5cd006`](https://github.com/nodejs/node/commit/785d5cd006)] - **(SEMVER-MAJOR)** **deps**: avoid compilation error with ASan (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`7071c1dafd`](https://github.com/nodejs/node/commit/7071c1dafd)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`d1d60b297d`](https://github.com/nodejs/node/commit/d1d60b297d)] - **(SEMVER-MAJOR)** **deps**: silence irrelevant V8 warning (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`5b240c62f9`](https://github.com/nodejs/node/commit/5b240c62f9)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT_PRIVATE as no-op (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`d8c97e4857`](https://github.com/nodejs/node/commit/d8c97e4857)] - **(SEMVER-MAJOR)** **deps**: update V8 to 11.9.169.7 (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`b9df88a8c2`](https://github.com/nodejs/node/commit/b9df88a8c2)] - **(SEMVER-MAJOR)** **doc**: runtime deprecate flag --trace-atomics-wait (marco-ippolito) [#&#8203;51179](https://github.com/nodejs/node/pull/51179) - \[[`9ba5df30b4`](https://github.com/nodejs/node/commit/9ba5df30b4)] - **(SEMVER-MAJOR)** **doc**: bump FreeBSD experimental support to 13.2 (Michaël Zasso) [#&#8203;51231](https://github.com/nodejs/node/pull/51231) - \[[`900d79caf2`](https://github.com/nodejs/node/commit/900d79caf2)] - **(SEMVER-MAJOR)** **doc**: add migration paths for deprecated utils (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`8206f6bb7f`](https://github.com/nodejs/node/commit/8206f6bb7f)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate fs.Stats constructor (Marco Ippolito) [#&#8203;52067](https://github.com/nodejs/node/pull/52067) - \[[`c14133503a`](https://github.com/nodejs/node/commit/c14133503a)] - **(SEMVER-MAJOR)** **fs**: use private fields instead of symbols for `Dir` (Jungku Lee) [#&#8203;51037](https://github.com/nodejs/node/pull/51037) - \[[`abbdc3efaa`](https://github.com/nodejs/node/commit/abbdc3efaa)] - **(SEMVER-MAJOR)** **fs**: make stats date fields lazy (Yagiz Nizipli) [#&#8203;50908](https://github.com/nodejs/node/pull/50908) - \[[`4b76ccea95`](https://github.com/nodejs/node/commit/4b76ccea95)] - **(SEMVER-MAJOR)** **http**: preserve raw header duplicates in writeHead after setHeader calls (Tim Perry) [#&#8203;50394](https://github.com/nodejs/node/pull/50394) - \[[`c975384264`](https://github.com/nodejs/node/commit/c975384264)] - **(SEMVER-MAJOR)** **lib**: enable WebSocket by default (Aras Abbasi) [#&#8203;51594](https://github.com/nodejs/node/pull/51594) - \[[`351495e938`](https://github.com/nodejs/node/commit/351495e938)] - **(SEMVER-MAJOR)** **lib,test**: handle new Iterator global (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`a8b21fdc90`](https://github.com/nodejs/node/commit/a8b21fdc90)] - **(SEMVER-MAJOR)** **process**: wait for `'exit'` before printing result (Antoine du Hamel) [#&#8203;52172](https://github.com/nodejs/node/pull/52172) - \[[`582ff5037c`](https://github.com/nodejs/node/commit/582ff5037c)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 127 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`c5c4b50260`](https://github.com/nodejs/node/commit/c5c4b50260)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 126 (Michaël Zasso) [#&#8203;52293](https://github.com/nodejs/node/pull/52293) - \[[`d248639285`](https://github.com/nodejs/node/commit/d248639285)] - **(SEMVER-MAJOR)** **src**: use supported API to get stalled TLA messages (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`d34b02db4c`](https://github.com/nodejs/node/commit/d34b02db4c)] - **(SEMVER-MAJOR)** **src**: update default V8 platform to override functions with location (Etienne Pierre-Doray) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`d9c47e9b5f`](https://github.com/nodejs/node/commit/d9c47e9b5f)] - **(SEMVER-MAJOR)** **src**: add missing TryCatch (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`5cddd3b2d8`](https://github.com/nodejs/node/commit/5cddd3b2d8)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 124 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`1528846ada`](https://github.com/nodejs/node/commit/1528846ada)] - **(SEMVER-MAJOR)** **src**: use non-deprecated v8::Uint8Array::kMaxLength (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`7166986626`](https://github.com/nodejs/node/commit/7166986626)] - **(SEMVER-MAJOR)** **src**: adapt to v8::Exception API change (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`4782818020`](https://github.com/nodejs/node/commit/4782818020)] - **(SEMVER-MAJOR)** **src**: use non-deprecated version of CreateSyntheticModule (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`2cff0ce411`](https://github.com/nodejs/node/commit/2cff0ce411)] - **(SEMVER-MAJOR)** **src**: update NODE_MODULE_VERSION to 122 (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`1abff07392`](https://github.com/nodejs/node/commit/1abff07392)] - **(SEMVER-MAJOR)** **stream**: bump default highWaterMark (Robert Nagy) [#&#8203;52037](https://github.com/nodejs/node/pull/52037) - \[[`9efc84a2cb`](https://github.com/nodejs/node/commit/9efc84a2cb)] - **(SEMVER-MAJOR)** **test**: mark test-worker-arraybuffer-zerofill as flaky (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`84c2e712eb`](https://github.com/nodejs/node/commit/84c2e712eb)] - **(SEMVER-MAJOR)** **test**: mark some GC-related tests as flaky (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`cdc4437b87`](https://github.com/nodejs/node/commit/cdc4437b87)] - **(SEMVER-MAJOR)** **test**: allow slightly more diff in memory leak test (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`515b007fae`](https://github.com/nodejs/node/commit/515b007fae)] - **(SEMVER-MAJOR)** **test**: replace always-opt flag with alway-turbofan (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`2341805eb2`](https://github.com/nodejs/node/commit/2341805eb2)] - **(SEMVER-MAJOR)** **test**: remove tests that create very large buffers (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`941cef5636`](https://github.com/nodejs/node/commit/941cef5636)] - **(SEMVER-MAJOR)** **test**: adapt to new V8 trusted memory spaces (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`29de7f82cd`](https://github.com/nodejs/node/commit/29de7f82cd)] - **(SEMVER-MAJOR)** **test_runner**: omit filtered test from output (Colin Ihrig) [#&#8203;52221](https://github.com/nodejs/node/pull/52221) - \[[`00dc6d9d97`](https://github.com/nodejs/node/commit/00dc6d9d97)] - **(SEMVER-MAJOR)** **test_runner**: improve `--test-name-pattern` to allow matching single test (Michał Drobniak) [#&#8203;51577](https://github.com/nodejs/node/pull/51577) - \[[`5def8019d5`](https://github.com/nodejs/node/commit/5def8019d5)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.4 (Michaël Zasso) [#&#8203;52465](https://github.com/nodejs/node/pull/52465) - \[[`c22793d050`](https://github.com/nodejs/node/commit/c22793d050)] - **(SEMVER-MAJOR)** **tools**: roughly port v8\_abseil to gyp (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`ffb0302f0c`](https://github.com/nodejs/node/commit/ffb0302f0c)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.2 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`aadea12440`](https://github.com/nodejs/node/commit/aadea12440)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.1 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`7784773967`](https://github.com/nodejs/node/commit/7784773967)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 12.0 (Michaël Zasso) [#&#8203;51362](https://github.com/nodejs/node/pull/51362) - \[[`9fe0424baa`](https://github.com/nodejs/node/commit/9fe0424baa)] - **(SEMVER-MAJOR)** **trace_events**: use private fields instead of symbols for `Tracing` (Jungku Lee) [#&#8203;51180](https://github.com/nodejs/node/pull/51180) - \[[`e96cd25007`](https://github.com/nodejs/node/commit/e96cd25007)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.log (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`6cf20d5e43`](https://github.com/nodejs/node/commit/6cf20d5e43)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isUndefined (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`09e424921f`](https://github.com/nodejs/node/commit/09e424921f)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isSymbol (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`80b6bfd4e9`](https://github.com/nodejs/node/commit/80b6bfd4e9)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isString (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`d419edded9`](https://github.com/nodejs/node/commit/d419edded9)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isRegExp (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`e0b8de78ed`](https://github.com/nodejs/node/commit/e0b8de78ed)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isPrimitive (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`5478e1129a`](https://github.com/nodejs/node/commit/5478e1129a)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isObject (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`b05b1dd541`](https://github.com/nodejs/node/commit/b05b1dd541)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isNumber (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`5af9bf5f6a`](https://github.com/nodejs/node/commit/5af9bf5f6a)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isNullOrUndefined (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`860a10e10e`](https://github.com/nodejs/node/commit/860a10e10e)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isNull (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`70330f5c2b`](https://github.com/nodejs/node/commit/70330f5c2b)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isFunction (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`7c69c33acc`](https://github.com/nodejs/node/commit/7c69c33acc)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isError (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`a0c5b871a9`](https://github.com/nodejs/node/commit/a0c5b871a9)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isDate (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`3c670cb15d`](https://github.com/nodejs/node/commit/3c670cb15d)] - **(SEMVER-MAJOR)** **util**: runtime deprecation util.isBuffer (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`c17a448ca9`](https://github.com/nodejs/node/commit/c17a448ca9)] - **(SEMVER-MAJOR)** **util**: runtime deprecation util.isBoolean (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`fbb2f891aa`](https://github.com/nodejs/node/commit/fbb2f891aa)] - **(SEMVER-MAJOR)** **util**: runtime deprecate util.isArray (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`22d8062e42`](https://github.com/nodejs/node/commit/22d8062e42)] - **(SEMVER-MAJOR)** **util**: runtime deprecation util.\_extend (Marco Ippolito) [#&#8203;50488](https://github.com/nodejs/node/pull/50488) - \[[`1a5acd0638`](https://github.com/nodejs/node/commit/1a5acd0638)] - **(SEMVER-MAJOR)** **v8**: enable maglev on supported architectures (Keyhan Vakil) [#&#8203;51360](https://github.com/nodejs/node/pull/51360) ##### Semver-Minor Commits - \[[`128c60d906`](https://github.com/nodejs/node/commit/128c60d906)] - **(SEMVER-MINOR)** **cli**: implement `node --run <script-in-package-json>` (Yagiz Nizipli) [#&#8203;52190](https://github.com/nodejs/node/pull/52190) - \[[`f69946b905`](https://github.com/nodejs/node/commit/f69946b905)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#&#8203;52138](https://github.com/nodejs/node/pull/52138) - \[[`828ad42eee`](https://github.com/nodejs/node/commit/828ad42eee)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#&#8203;51462](https://github.com/nodejs/node/pull/51462) - \[[`05f8172188`](https://github.com/nodejs/node/commit/05f8172188)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#&#8203;51278](https://github.com/nodejs/node/pull/51278) - \[[`a0c466810a`](https://github.com/nodejs/node/commit/a0c466810a)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#&#8203;51879](https://github.com/nodejs/node/pull/51879) - \[[`151d365ad1`](https://github.com/nodejs/node/commit/151d365ad1)] - **(SEMVER-MINOR)** **fs**: expose glob and globSync (Moshe Atlow) [#&#8203;51912](https://github.com/nodejs/node/pull/51912) - \[[`5f7fad2605`](https://github.com/nodejs/node/commit/5f7fad2605)] - **(SEMVER-MINOR)** **module**: support require()ing synchronous ESM graphs (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977) - \[[`009665fb56`](https://github.com/nodejs/node/commit/009665fb56)] - **(SEMVER-MINOR)** **report**: add `--report-exclude-network` option (Ethan Arrowood) [#&#8203;51645](https://github.com/nodejs/node/pull/51645) - \[[`80f86e5d02`](https://github.com/nodejs/node/commit/80f86e5d02)] - **(SEMVER-MINOR)** **src**: add C++ ProcessEmitWarningSync() (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977) - \[[`78be0d0f1c`](https://github.com/nodejs/node/commit/78be0d0f1c)] - **(SEMVER-MINOR)** **src**: add uv_get_available_memory to report and process (theanarkh) [#&#8203;52023](https://github.com/nodejs/node/pull/52023) - \[[`b34512e38e`](https://github.com/nodejs/node/commit/b34512e38e)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#&#8203;51539](https://github.com/nodejs/node/pull/51539) - \[[`7d258db1d7`](https://github.com/nodejs/node/commit/7d258db1d7)] - **(SEMVER-MINOR)** **stream**: support typed arrays (IlyasShabi) [#&#8203;51866](https://github.com/nodejs/node/pull/51866) - \[[`5276c0d5d4`](https://github.com/nodejs/node/commit/5276c0d5d4)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#&#8203;52127](https://github.com/nodejs/node/pull/52127) - \[[`84de97a61e`](https://github.com/nodejs/node/commit/84de97a61e)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#&#8203;52038](https://github.com/nodejs/node/pull/52038) - \[[`aac5ad901d`](https://github.com/nodejs/node/commit/aac5ad901d)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#&#8203;51909](https://github.com/nodejs/node/pull/51909) - \[[`9a1e01c4ce`](https://github.com/nodejs/node/commit/9a1e01c4ce)] - **(SEMVER-MINOR)** **util**: support array of formats in util.styleText (Marco Ippolito) [#&#8203;52040](https://github.com/nodejs/node/pull/52040) - \[[`7f2d61f82a`](https://github.com/nodejs/node/commit/7f2d61f82a)] - **(SEMVER-MINOR)** **v8**: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) [#&#8203;51927](https://github.com/nodejs/node/pull/51927) - \[[`d1d5da22e4`](https://github.com/nodejs/node/commit/d1d5da22e4)] - **(SEMVER-MINOR)** **vm**: harden module type checks (Chengzhong Wu) [#&#8203;52162](https://github.com/nodejs/node/pull/52162) ##### Semver-Patch Commits - \[[`a760dadec3`](https://github.com/nodejs/node/commit/a760dadec3)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408) - \[[`47c934e464`](https://github.com/nodejs/node/commit/47c934e464)] - **benchmark**: conditionally use spawn with taskset for cpu pinning (Ali Hassan) [#&#8203;52253](https://github.com/nodejs/node/pull/52253) - \[[`dde0cffb2e`](https://github.com/nodejs/node/commit/dde0cffb2e)] - **benchmark**: add toNamespacedPath bench (Rafael Gonzaga) [#&#8203;52236](https://github.com/nodejs/node/pull/52236) - \[[`bda66ad711`](https://github.com/nodejs/node/commit/bda66ad711)] - **benchmark**: add style-text benchmark (Rafael Gonzaga) [#&#8203;52004](https://github.com/nodejs/node/pull/52004) - \[[`21211a3fa9`](https://github.com/nodejs/node/commit/21211a3fa9)] - **buffer**: improve `btoa` performance (Yagiz Nizipli) [#&#8203;52427](https://github.com/nodejs/node/pull/52427) - \[[`6f504b71ac`](https://github.com/nodejs/node/commit/6f504b71ac)] - **buffer**: use simdutf for `atob` implementation (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381) - \[[`0ce7365856`](https://github.com/nodejs/node/commit/0ce7365856)] - **build**: temporary disable ubsan (Rafael Gonzaga) [#&#8203;52560](https://github.com/nodejs/node/pull/52560) - \[[`4e278f0253`](https://github.com/nodejs/node/commit/4e278f0253)] - **build**: speed up compilation of some V8 files (Michaël Zasso) [#&#8203;52083](https://github.com/nodejs/node/pull/52083) - \[[`ba06c5c509`](https://github.com/nodejs/node/commit/ba06c5c509)] - **build,tools**: add test-ubsan ci (Rafael Gonzaga) [#&#8203;46297](https://github.com/nodejs/node/pull/46297) - \[[`562369f348`](https://github.com/nodejs/node/commit/562369f348)] - **child_process**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`8f61b658de`](https://github.com/nodejs/node/commit/8f61b658de)] - **crypto**: deprecate implicitly shortened GCM tags (Tobias Nießen) [#&#8203;52345](https://github.com/nodejs/node/pull/52345) - \[[`08609b5222`](https://github.com/nodejs/node/commit/08609b5222)] - **crypto**: make timingSafeEqual faster for Uint8Array (Tobias Nießen) [#&#8203;52341](https://github.com/nodejs/node/pull/52341) - \[[`9f939f5af7`](https://github.com/nodejs/node/commit/9f939f5af7)] - **crypto**: reject [`Ed25519`](https://github.com/nodejs/node/commit/Ed25519)/Ed448 in Sign/Verify prototypes (Filip Skokan) [#&#8203;52340](https://github.com/nodejs/node/pull/52340) - \[[`2241e8c5b3`](https://github.com/nodejs/node/commit/2241e8c5b3)] - **crypto**: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) [#&#8203;52262](https://github.com/nodejs/node/pull/52262) - \[[`6dd1c75f4a`](https://github.com/nodejs/node/commit/6dd1c75f4a)] - **crypto**: fix `input` validation in `crypto.hash` (Antoine du Hamel) [#&#8203;52070](https://github.com/nodejs/node/pull/52070) - \[[`a1d48f4a26`](https://github.com/nodejs/node/commit/a1d48f4a26)] - **deps**: update simdutf to 5.2.4 (Node.js GitHub Bot) [#&#8203;52473](https://github.com/nodejs/node/pull/52473) - \[[`08ff4a0c9d`](https://github.com/nodejs/node/commit/08ff4a0c9d)] - **deps**: update nghttp2 to 1.61.0 (Node.js GitHub Bot) [#&#8203;52395](https://github.com/nodejs/node/pull/52395) - \[[`cf629366b9`](https://github.com/nodejs/node/commit/cf629366b9)] - **deps**: update simdutf to 5.2.3 (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381) - \[[`ad86a12964`](https://github.com/nodejs/node/commit/ad86a12964)] - **deps**: upgrade npm to 10.5.1 (npm team) [#&#8203;52351](https://github.com/nodejs/node/pull/52351) - \[[`45cc32c9c6`](https://github.com/nodejs/node/commit/45cc32c9c6)] - **deps**: update c-ares to 1.28.1 (Node.js GitHub Bot) [#&#8203;52285](https://github.com/nodejs/node/pull/52285) - \[[`38161c38d9`](https://github.com/nodejs/node/commit/38161c38d9)] - **deps**: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) [#&#8203;52199](https://github.com/nodejs/node/pull/52199) - \[[`1264414700`](https://github.com/nodejs/node/commit/1264414700)] - **deps**: update simdjson to 3.8.0 (Node.js GitHub Bot) [#&#8203;52124](https://github.com/nodejs/node/pull/52124) - \[[`f6996ee150`](https://github.com/nodejs/node/commit/f6996ee150)] - **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183) - \[[`0d4bc4c40e`](https://github.com/nodejs/node/commit/0d4bc4c40e)] - **deps**: V8: cherry-pick [`f8d5e57`](https://github.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183) - \[[`70a05103c8`](https://github.com/nodejs/node/commit/70a05103c8)] - **deps**: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) [#&#8203;52123](https://github.com/nodejs/node/pull/52123) - \[[`4c3e9659ed`](https://github.com/nodejs/node/commit/4c3e9659ed)] - **deps**: update corepack to 0.26.0 (Node.js GitHub Bot) [#&#8203;52027](https://github.com/nodejs/node/pull/52027) - \[[`0b4cdb4b42`](https://github.com/nodejs/node/commit/0b4cdb4b42)] - **deps**: update ada to 2.7.7 (Node.js GitHub Bot) [#&#8203;52028](https://github.com/nodejs/node/pull/52028) - \[[`b241a1d0ae`](https://github.com/nodejs/node/commit/b241a1d0ae)] - **deps**: update simdutf to 4.0.9 (Node.js GitHub Bot) [#&#8203;51655](https://github.com/nodejs/node/pull/51655) - \[[`36dcd399c0`](https://github.com/nodejs/node/commit/36dcd399c0)] - **deps**: upgrade libuv to 1.48.0 (Santiago Gimeno) [#&#8203;51697](https://github.com/nodejs/node/pull/51697) - \[[`8cf313cd72`](https://github.com/nodejs/node/commit/8cf313cd72)] - **deps**: update undici to 6.6.0 (Node.js GitHub Bot) [#&#8203;51630](https://github.com/nodejs/node/pull/51630) - \[[`dd4767f99f`](https://github.com/nodejs/node/commit/dd4767f99f)] - **deps**: update undici to 6.4.0 (Node.js GitHub Bot) [#&#8203;51527](https://github.com/nodejs/node/pull/51527) - \[[`8362caa7d8`](https://github.com/nodejs/node/commit/8362caa7d8)] - **dgram**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`4f3cf4e89a`](https://github.com/nodejs/node/commit/4f3cf4e89a)] - **diagnostics_channel**: early-exit tracing channel trace methods (Stephen Belanger) [#&#8203;51915](https://github.com/nodejs/node/pull/51915) - \[[`204018bba6`](https://github.com/nodejs/node/commit/204018bba6)] - **doc**: deprecate --experimental-policy (RafaelGSS) [#&#8203;52602](https://github.com/nodejs/node/pull/52602) - \[[`d32a914ac7`](https://github.com/nodejs/node/commit/d32a914ac7)] - **doc**: add lint-js-fix into BUILDING.md (jakecastelli) [#&#8203;52290](https://github.com/nodejs/node/pull/52290) - \[[`411503bacd`](https://github.com/nodejs/node/commit/411503bacd)] - **doc**: remove Internet Explorer mention in BUILDING.md (Rich Trott) [#&#8203;52455](https://github.com/nodejs/node/pull/52455) - \[[`e9ccf5aba2`](https://github.com/nodejs/node/commit/e9ccf5aba2)] - **doc**: accommodate upcoming stricter .md linting (Rich Trott) [#&#8203;52454](https://github.com/nodejs/node/pull/52454) - \[[`b4186ec2c1`](https://github.com/nodejs/node/commit/b4186ec2c1)] - **doc**: add Rafael to steward list (Rafael Gonzaga) [#&#8203;52452](https://github.com/nodejs/node/pull/52452) - \[[`7b01bfb2be`](https://github.com/nodejs/node/commit/7b01bfb2be)] - **doc**: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) [#&#8203;52424](https://github.com/nodejs/node/pull/52424) - \[[`c82f3c9e80`](https://github.com/nodejs/node/commit/c82f3c9e80)] - **doc**: update `process.execArg` example to be more useful (Jacob Smith) [#&#8203;52412](https://github.com/nodejs/node/pull/52412) - \[[`655b327a4d`](https://github.com/nodejs/node/commit/655b327a4d)] - **doc**: call out http(s).globalAgent default (mathis-west-1) [#&#8203;52392](https://github.com/nodejs/node/pull/52392) - \[[`2c77be5488`](https://github.com/nodejs/node/commit/2c77be5488)] - **doc**: update the location of `build_with_cmake` (Emmanuel Ferdman) [#&#8203;52356](https://github.com/nodejs/node/pull/52356) - \[[`7dd514f2db`](https://github.com/nodejs/node/commit/7dd514f2db)] - **doc**: reserve 125 for Electron 31 (Shelley Vohr) [#&#8203;52379](https://github.com/nodejs/node/pull/52379) - \[[`756acd0877`](https://github.com/nodejs/node/commit/756acd0877)] - **doc**: use consistent plural form of "index" (Rich Trott) [#&#8203;52373](https://github.com/nodejs/node/pull/52373) - \[[`ba07e4e5e6`](https://github.com/nodejs/node/commit/ba07e4e5e6)] - **doc**: fix typo in cli.md (Daeyeon Jeong) [#&#8203;52388](https://github.com/nodejs/node/pull/52388) - \[[`461d9d665d`](https://github.com/nodejs/node/commit/461d9d665d)] - **doc**: add Rafael to sec release stewards (Rafael Gonzaga) [#&#8203;52354](https://github.com/nodejs/node/pull/52354) - \[[`d0c364a844`](https://github.com/nodejs/node/commit/d0c364a844)] - **doc**: document missing options of events.on (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080) - \[[`a63261cf2c`](https://github.com/nodejs/node/commit/a63261cf2c)] - **doc**: add missing space (Augustin Mauroy) [#&#8203;52360](https://github.com/nodejs/node/pull/52360) - \[[`dd711d221a`](https://github.com/nodejs/node/commit/dd711d221a)] - **doc**: add tips about vcpkg cause build faild on windows (Cong Zhang) [#&#8203;52181](https://github.com/nodejs/node/pull/52181) - \[[`4df34cf6dd`](https://github.com/nodejs/node/commit/4df34cf6dd)] - **doc**: replace "below" with "following" (Rich Trott) [#&#8203;52315](https://github.com/nodejs/node/pull/52315) - \[[`d9aa33fdbf`](https://github.com/nodejs/node/commit/d9aa33fdbf)] - **doc**: fix email pattern to be wrapped with `<<` instead of single `<` (Raz Luvaton) [#&#8203;52284](https://github.com/nodejs/node/pull/52284) - \[[`903f28e684`](https://github.com/nodejs/node/commit/903f28e684)] - **doc**: update release gpg keyserver (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257) - \[[`fd55458770`](https://github.com/nodejs/node/commit/fd55458770)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257) - \[[`27493a1dd7`](https://github.com/nodejs/node/commit/27493a1dd7)] - **doc**: fix arrow vertical alignment in HTML version (Akash Yeole) [#&#8203;52193](https://github.com/nodejs/node/pull/52193) - \[[`af48641993`](https://github.com/nodejs/node/commit/af48641993)] - **doc**: move TSC members from regular to emeritus (Michael Dawson) [#&#8203;52209](https://github.com/nodejs/node/pull/52209) - \[[`fa13ed6d79`](https://github.com/nodejs/node/commit/fa13ed6d79)] - **doc**: add section explaining todo tests (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204) - \[[`312ebd97c2`](https://github.com/nodejs/node/commit/312ebd97c2)] - **doc**: edit `ChildProcess` `'message'` event docs (theanarkh) [#&#8203;52154](https://github.com/nodejs/node/pull/52154) - \[[`f1635f442f`](https://github.com/nodejs/node/commit/f1635f442f)] - **doc**: quote test_runner glob parameters (Fabian Meyer) [#&#8203;52201](https://github.com/nodejs/node/pull/52201) - \[[`fc029181df`](https://github.com/nodejs/node/commit/fc029181df)] - **doc**: add mold to speeding up section (Cong Zhang) [#&#8203;52179](https://github.com/nodejs/node/pull/52179) - \[[`8bd3cb2f8c`](https://github.com/nodejs/node/commit/8bd3cb2f8c)] - **doc**: http event order correction (wh0) [#&#8203;51464](https://github.com/nodejs/node/pull/51464) - \[[`a7f170e45a`](https://github.com/nodejs/node/commit/a7f170e45a)] - **doc**: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) [#&#8203;52192](https://github.com/nodejs/node/pull/52192) - \[[`305375ac16`](https://github.com/nodejs/node/commit/305375ac16)] - **doc**: fix `--env-file` docs for valid quotes for defining values (Gabriel Bota) [#&#8203;52157](https://github.com/nodejs/node/pull/52157) - \[[`3fcaf7b900`](https://github.com/nodejs/node/commit/3fcaf7b900)] - **doc**: clarify what is supported in NODE_OPTIONS (Michael Dawson) [#&#8203;52076](https://github.com/nodejs/node/pull/52076) - \[[`4fe87357f3`](https://github.com/nodejs/node/commit/4fe87357f3)] - **doc**: fix typos in maintaining-dependencies.md (RoboSchmied) [#&#8203;52160](https://github.com/nodejs/node/pull/52160) - \[[`f1949ac1ae`](https://github.com/nodejs/node/commit/f1949ac1ae)] - **doc**: add spec for contains module syntax (Geoffrey Booth) [#&#8203;52059](https://github.com/nodejs/node/pull/52059) - \[[`707155424b`](https://github.com/nodejs/node/commit/707155424b)] - **doc**: optimize the doc about Unix abstract socket (theanarkh) [#&#8203;52043](https://github.com/nodejs/node/pull/52043) - \[[`8a191e4e6a`](https://github.com/nodejs/node/commit/8a191e4e6a)] - **doc**: update pnpm link (Superchupu) [#&#8203;52113](https://github.com/nodejs/node/pull/52113) - \[[`454d0806a1`](https://github.com/nodejs/node/commit/454d0806a1)] - **doc**: remove ableist language from crypto (Jamie King) [#&#8203;52063](https://github.com/nodejs/node/pull/52063) - \[[`dafe004703`](https://github.com/nodejs/node/commit/dafe004703)] - **doc**: update collaborator email (Ruy Adorno) [#&#8203;52088](https://github.com/nodejs/node/pull/52088) - \[[`8824adb031`](https://github.com/nodejs/node/commit/8824adb031)] - **doc**: state that removing npm is a non-goal (Geoffrey Booth) [#&#8203;51951](https://github.com/nodejs/node/pull/51951) - \[[`b360532f1a`](https://github.com/nodejs/node/commit/b360532f1a)] - **doc**: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) [#&#8203;52057](https://github.com/nodejs/node/pull/52057) - \[[`57d2e4881c`](https://github.com/nodejs/node/commit/57d2e4881c)] - **doc**: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) [#&#8203;52069](https://github.com/nodejs/node/pull/52069) - \[[`e11c1d2315`](https://github.com/nodejs/node/commit/e11c1d2315)] - **doc**: add some commonly used lables up gront (Michael Dawson) [#&#8203;52006](https://github.com/nodejs/node/pull/52006) - \[[`8f9f5db1e8`](https://github.com/nodejs/node/commit/8f9f5db1e8)] - **doc**: document that `const c2 = vm.createContext(c1); c1 === c2` is true (Daniel Kaplan) [#&#8203;51960](https://github.com/nodejs/node/pull/51960) - \[[`d78a565713`](https://github.com/nodejs/node/commit/d78a565713)] - **doc**: clarify what moderation issues are for (Antoine du Hamel) [#&#8203;51990](https://github.com/nodejs/node/pull/51990) - \[[`4cac07c931`](https://github.com/nodejs/node/commit/4cac07c931)] - **doc**: add Hemanth HM mention to v21.7.0 changelog (Rafael Gonzaga) [#&#8203;52008](https://github.com/nodejs/node/pull/52008) - \[[`73025c4dec`](https://github.com/nodejs/node/commit/73025c4dec)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#&#8203;51991](https://github.com/nodejs/node/pull/51991) - \[[`999c6b34fb`](https://github.com/nodejs/node/commit/999c6b34fb)] - **doc**: test for cli options (Aras Abbasi) [#&#8203;51623](https://github.com/nodejs/node/pull/51623) - \[[`edd6190836`](https://github.com/nodejs/node/commit/edd6190836)] - **doc**: deprecate hmac public constructor (Marco Ippolito) [#&#8203;51881](https://github.com/nodejs/node/pull/51881) - \[[`25c79f3331`](https://github.com/nodejs/node/commit/25c79f3331)] - **esm**: drop support for import assertions (Nicolò Ribaudo) [#&#8203;52104](https://github.com/nodejs/node/pull/52104) - \[[`d619aab575`](https://github.com/nodejs/node/commit/d619aab575)] - **events**: rename high & low watermark for consistency (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080) - \[[`e263946c2e`](https://github.com/nodejs/node/commit/e263946c2e)] - **events**: extract addAbortListener for safe internal use (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`40ef2da8d6`](https://github.com/nodejs/node/commit/40ef2da8d6)] - **events**: remove abort listener from signal in `on` (Neal Beeken) [#&#8203;51091](https://github.com/nodejs/node/pull/51091) - \[[`61e5de1268`](https://github.com/nodejs/node/commit/61e5de1268)] - **fs**: refactor maybeCallback function (Yagiz Nizipli) [#&#8203;52129](https://github.com/nodejs/node/pull/52129) - \[[`39f1b899cd`](https://github.com/nodejs/node/commit/39f1b899cd)] - **fs**: fix edge case in readFileSync utf8 fast path (Richard Lau) [#&#8203;52101](https://github.com/nodejs/node/pull/52101) - \[[`639c096004`](https://github.com/nodejs/node/commit/639c096004)] - **fs**: validate fd from cpp on `fchown` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051) - \[[`9ac1fe05d7`](https://github.com/nodejs/node/commit/9ac1fe05d7)] - **fs**: validate fd from cpp on `close` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051) - \[[`3ec20f25df`](https://github.com/nodejs/node/commit/3ec20f25df)] - **fs**: validate file mode from cpp (Yagiz Nizipli) [#&#8203;52050](https://github.com/nodejs/node/pull/52050) - \[[`8c0b723ccb`](https://github.com/nodejs/node/commit/8c0b723ccb)] - **fs,permission**: make handling of buffers consistent (Tobias Nießen) [#&#8203;52348](https://github.com/nodejs/node/pull/52348) - \[[`3fc8d2200e`](https://github.com/nodejs/node/commit/3fc8d2200e)] - **http2**: fix h2-over-h2 connection proxying (Tim Perry) [#&#8203;52368](https://github.com/nodejs/node/pull/52368) - \[[`b9d8a14a03`](https://github.com/nodejs/node/commit/b9d8a14a03)] - **http2**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`818c10e86d`](https://github.com/nodejs/node/commit/818c10e86d)] - **lib**: improve perf of `AbortSignal` creation (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408) - \[[`3f5ff8dc20`](https://github.com/nodejs/node/commit/3f5ff8dc20)] - **lib**: .load .save add proper error message when no file passed (Thomas Mauran) [#&#8203;52225](https://github.com/nodejs/node/pull/52225) - \[[`0a252c23d9`](https://github.com/nodejs/node/commit/0a252c23d9)] - **lib**: fix type error for \_refreshLine (Jackson Tian) [#&#8203;52133](https://github.com/nodejs/node/pull/52133) - \[[`14de082ab4`](https://github.com/nodejs/node/commit/14de082ab4)] - **lib**: emit listening event once when call listen twice (theanarkh) [#&#8203;52119](https://github.com/nodejs/node/pull/52119) - \[[`4e9ce7c035`](https://github.com/nodejs/node/commit/4e9ce7c035)] - **lib**: make sure clear the old timer in http server (theanarkh) [#&#8203;52118](https://github.com/nodejs/node/pull/52118) - \[[`20525f14b9`](https://github.com/nodejs/node/commit/20525f14b9)] - **lib**: fix listen with handle in cluster worker (theanarkh) [#&#8203;52056](https://github.com/nodejs/node/pull/52056) - \[[`8df54481f4`](https://github.com/nodejs/node/commit/8df54481f4)] - **meta**: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot\[bot]) [#&#8203;52314](https://github.com/nodejs/node/pull/52314) - \[[`bcc102147a`](https://github.com/nodejs/node/commit/bcc102147a)] - **meta**: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot\[bot]) [#&#8203;52313](https://github.com/nodejs/node/pull/52313) - \[[`4e7e0ef9c3`](https://github.com/nodejs/node/commit/4e7e0ef9c3)] - **meta**: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot\[bot]) [#&#8203;52312](https://github.com/nodejs/node/pull/52312) - \[[`14a39881b8`](https://github.com/nodejs/node/commit/14a39881b8)] - **meta**: bump actions/cache from 4.0.1 to 4.0.2 (dependabot\[bot]) [#&#8203;52311](https://github.com/nodejs/node/pull/52311) - \[[`2f8f90dadb`](https://github.com/nodejs/node/commit/2f8f90dadb)] - **meta**: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot\[bot]) [#&#8203;52310](https://github.com/nodejs/node/pull/52310) - \[[`95efdaf01a`](https://github.com/nodejs/node/commit/95efdaf01a)] - **meta**: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;52308](https://github.com/nodejs/node/pull/52308) - \[[`24c1a8e739`](https://github.com/nodejs/node/commit/24c1a8e739)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52300](https://github.com/nodejs/node/pull/52300) - \[[`60dcfad91e`](https://github.com/nodejs/node/commit/60dcfad91e)] - **meta**: pass Codecov upload token to codecov action (Michaël Zasso) [#&#8203;51982](https://github.com/nodejs/node/pull/51982) - \[[`db1746182b`](https://github.com/nodejs/node/commit/db1746182b)] - **module**: disallow CJS <-> ESM edges in a cycle from require(esm) (Joyee Cheung) [#&#8203;52264](https://github.com/nodejs/node/pull/52264) - \[[`d6b57f6629`](https://github.com/nodejs/node/commit/d6b57f6629)] - **module**: centralize SourceTextModule compilation for builtin loader (Joyee Cheung) [#&#8203;52291](https://github.com/nodejs/node/pull/52291) - \[[`f4a0a3b04b`](https://github.com/nodejs/node/commit/f4a0a3b04b)] - **module**: warn on detection in typeless package (Geoffrey Booth) [#&#8203;52168](https://github.com/nodejs/node/pull/52168) - \[[`8bc745944e`](https://github.com/nodejs/node/commit/8bc745944e)] - **module**: eliminate performance cost of detection for cjs entry (Geoffrey Booth) [#&#8203;52093](https://github.com/nodejs/node/pull/52093) - \[[`63d04d4d80`](https://github.com/nodejs/node/commit/63d04d4d80)] - **module**: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) [#&#8203;52024](https://github.com/nodejs/node/pull/52024) - \[[`575ced8139`](https://github.com/nodejs/node/commit/575ced8139)] - **module**: print location of unsettled top-level await in entry points (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999) - \[[`075c95f61f`](https://github.com/nodejs/node/commit/075c95f61f)] - **module**: refactor ESM loader initialization and entry point handling (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999) - \[[`45f0dd0192`](https://github.com/nodejs/node/commit/45f0dd0192)] - **module,win**: fix long path resolve (Stefan Stojanovic) [#&#8203;51097](https://github.com/nodejs/node/pull/51097) - \[[`d89fc73d45`](https://github.com/nodejs/node/commit/d89fc73d45)] - **net**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`f0e6acde2d`](https://github.com/nodejs/node/commit/f0e6acde2d)] - **node-api**: make tsfn accept napi_finalize once more (Gabriel Schulhof) [#&#8203;51801](https://github.com/nodejs/node/pull/51801) - \[[`ff93f3e1a8`](https://github.com/nodejs/node/commit/ff93f3e1a8)] - **readline**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`4a6ca7a1d4`](https://github.com/nodejs/node/commit/4a6ca7a1d4)] - **src**: remove erroneous CVE-2024-27980 revert option (Tobias Nießen) [#&#8203;52543](https://github.com/nodejs/node/pull/52543) - \[[`64b67779f7`](https://github.com/nodejs/node/commit/64b67779f7)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#560](https://github.com/nodejs-private/node-private/pull/560) - \[[`9ef724bc81`](https://github.com/nodejs/node/commit/9ef724bc81)] - **src**: update branch name in node_revert.h (Tobias Nießen) [#&#8203;52390](https://github.com/nodejs/node/pull/52390) - \[[`ec1550407b`](https://github.com/nodejs/node/commit/ec1550407b)] - **src**: stop using `v8::BackingStore::Reallocate` (Michaël Zasso) [#&#8203;52292](https://github.com/nodejs/node/pull/52292) - \[[`681b0a3df3`](https://github.com/nodejs/node/commit/681b0a3df3)] - **src**: address coverity warning in module_wrap.cc (Michael Dawson) [#&#8203;52143](https://github.com/nodejs/node/pull/52143) - \[[`04319228e0`](https://github.com/nodejs/node/commit/04319228e0)] - **src**: fix move after use reported by coverity (Michael Dawson) [#&#8203;52141](https://github.com/nodejs/node/pull/52141) - \[[`0eb2b727f6`](https://github.com/nodejs/node/commit/0eb2b727f6)] - **src**: return a number from process.constrainedMemory() constantly (Chengzhong Wu) [#&#8203;52039](https://github.com/nodejs/node/pull/52039) - \[[`bec9b5fccc`](https://github.com/nodejs/node/commit/bec9b5fccc)] - **src**: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) [#&#8203;52016](https://github.com/nodejs/node/pull/52016) - \[[`1f193165b9`](https://github.com/nodejs/node/commit/1f193165b9)] - **src**: fix reading empty string views in Blob\[De]serializer (Joyee Cheung) [#&#8203;52000](https://github.com/nodejs/node/pull/52000) - \[[`fb356b3305`](https://github.com/nodejs/node/commit/fb356b3305)] - **src**: refactor out FormatErrorMessage for error formatting (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999) - \[[`1a8ae9d6c0`](https://github.com/nodejs/node/commit/1a8ae9d6c0)] - **src**: use callback-based array iteration in Blob (Joyee Cheung) [#&#8203;51758](https://github.com/nodejs/node/pull/51758) - \[[`5cd2ec8bd5`](https://github.com/nodejs/node/commit/5cd2ec8bd5)] - **src**: implement v8 array iteration using the new callback-based API (Joyee Cheung) [#&#8203;51758](https://github.com/nodejs/node/pull/51758) - \[[`89a26b451e`](https://github.com/nodejs/node/commit/89a26b451e)] - **src**: fix node_version.h (Joyee Cheung) [#&#8203;50375](https://github.com/nodejs/node/pull/50375) - \[[`c02de658a1`](https://github.com/nodejs/node/commit/c02de658a1)] - **stream**: make Duplex inherit destroy from Writable (Luigi Pinca) [#&#8203;52318](https://github.com/nodejs/node/pull/52318) - \[[`63391e749d`](https://github.com/nodejs/node/commit/63391e749d)] - **stream**: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (haze) [#&#8203;52110](https://github.com/nodejs/node/pull/52110) - \[[`a9528e87b9`](https://github.com/nodejs/node/commit/a9528e87b9)] - **stream**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`ee4fa77624`](https://github.com/nodejs/node/commit/ee4fa77624)] - **test**: fix watch test with require not testing pid (Raz Luvaton) [#&#8203;52353](https://github.com/nodejs/node/pull/52353) - \[[`05cb16dc1a`](https://github.com/nodejs/node/commit/05cb16dc1a)] - **test**: simplify ASan build checks (Michaël Zasso) [#&#8203;52430](https://github.com/nodejs/node/pull/52430) - \[[`eb53121b77`](https://github.com/nodejs/node/commit/eb53121b77)] - **test**: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) [#&#8203;52405](https://github.com/nodejs/node/pull/52405) - \[[`7dfa4750af`](https://github.com/nodejs/node/commit/7dfa4750af)] - **test**: add test for skip+todo combinations (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204) - \[[`5905596719`](https://github.com/nodejs/node/commit/5905596719)] - **test**: fix incorrect test fixture (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185) - \[[`bae14b7914`](https://github.com/nodejs/node/commit/bae14b7914)] - **test**: do not set concurrency on parallelized runs (Antoine du Hamel) [#&#8203;52177](https://github.com/nodejs/node/pull/52177) - \[[`0b676736a0`](https://github.com/nodejs/node/commit/0b676736a0)] - **test**: add missing cctest/test_path.cc (Yagiz Nizipli) [#&#8203;52148](https://github.com/nodejs/node/pull/52148) - \[[`c714cda9a7`](https://github.com/nodejs/node/commit/c714cda9a7)] - **test**: add `spawnSyncAndAssert` util (Antoine du Hamel) [#&#8203;52132](https://github.com/nodejs/node/pull/52132) - \[[`978d5a26c9`](https://github.com/nodejs/node/commit/978d5a26c9)] - **test**: reduce flakiness of test-runner-output.mjs (Colin Ihrig) [#&#8203;52146](https://github.com/nodejs/node/pull/52146) - \[[`afaf889775`](https://github.com/nodejs/node/commit/afaf889775)] - **test**: skip test for dynamically linked OpenSSL (Richard Lau) [#&#8203;52542](https://github.com/nodejs/node/pull/52542) - \[[`be75821a12`](https://github.com/nodejs/node/commit/be75821a12)] - **test**: add test for using `--print` with promises (Antoine du Hamel) [#&#8203;52137](https://github.com/nodejs/node/pull/52137) - \[[`4e109e5958`](https://github.com/nodejs/node/commit/4e109e5958)] - **test**: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) [#&#8203;51995](https://github.com/nodejs/node/pull/51995) - \[[`3f8cc88009`](https://github.com/nodejs/node/commit/3f8cc88009)] - **test_runner**: fix clearing final timeout in own callback (Ben Richeson) [#&#8203;52332](https://github.com/nodejs/node/pull/52332) - \[[`52f8dcfccc`](https://github.com/nodejs/node/commit/52f8dcfccc)] - **test_runner**: make end of work check stricter (Colin Ihrig) [#&#8203;52326](https://github.com/nodejs/node/pull/52326) - \[[`433bd1b04d`](https://github.com/nodejs/node/commit/433bd1b04d)] - **test_runner**: fix recursive run (Moshe Atlow) [#&#8203;52322](https://github.com/nodejs/node/pull/52322) - \[[`e57992ffb2`](https://github.com/nodejs/node/commit/e57992ffb2)] - **test_runner**: hide new line when no error in spec reporter (Moshe Atlow) [#&#8203;52297](https://github.com/nodejs/node/pull/52297) - \[[`ac9e5e7527`](https://github.com/nodejs/node/commit/ac9e5e7527)] - **test_runner**: improve describe.only behavior (Moshe Atlow) [#&#8203;52296](https://github.com/nodejs/node/pull/52296) - \[[`2c024cd24d`](https://github.com/nodejs/node/commit/2c024cd24d)] - **test_runner**: disable highWatermark on TestsStream (Colin Ihrig) [#&#8203;52287](https://github.com/nodejs/node/pull/52287) - \[[`7c02486f1f`](https://github.com/nodejs/node/commit/7c02486f1f)] - **test_runner**: run afterEach hooks in correct order (Colin Ihrig) [#&#8203;52239](https://github.com/nodejs/node/pull/52239) - \[[`6af4049810`](https://github.com/nodejs/node/commit/6af4049810)] - **test_runner**: simplify test end time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182) - \[[`878047be0b`](https://github.com/nodejs/node/commit/878047be0b)] - **test_runner**: simplify test start time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182) - \[[`4648c83dbc`](https://github.com/nodejs/node/commit/4648c83dbc)] - **test_runner**: don't await the same promise for each test (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185) - \[[`f9755f6f79`](https://github.com/nodejs/node/commit/f9755f6f79)] - **test_runner**: emit diagnostics when watch mode drains (Moshe Atlow) [#&#8203;52130](https://github.com/nodejs/node/pull/52130) - \[[`4ba9f45d99`](https://github.com/nodejs/node/commit/4ba9f45d99)] - **test_runner**: ignore todo flag when running suites (Colin Ihrig) [#&#8203;52117](https://github.com/nodejs/node/pull/52117) - \[[`6f4d6011ea`](https://github.com/nodejs/node/commit/6f4d6011ea)] - **test_runner**: skip each hooks for skipped tests (Colin Ihrig) [#&#8203;52115](https://github.com/nodejs/node/pull/52115) - \[[`05db979c01`](https://github.com/nodejs/node/commit/05db979c01)] - **test_runner**: run top level tests in a microtask (Colin Ihrig) [#&#8203;52092](https://github.com/nodejs/node/pull/52092) - \[[`97b2c5344d`](https://github.com/nodejs/node/commit/97b2c5344d)] - **test_runner**: remove redundant report call (Colin Ihrig) [#&#8203;52089](https://github.com/nodejs/node/pull/52089) - \[[`780d030bdf`](https://github.com/nodejs/node/commit/780d030bdf)] - **test_runner**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`814fa1ae74`](https://github.com/nodejs/node/commit/814fa1ae74)] - **test_runner**: use source maps when reporting coverage (Moshe Atlow) [#&#8203;52060](https://github.com/nodejs/node/pull/52060) - \[[`3c5764a0e2`](https://github.com/nodejs/node/commit/3c5764a0e2)] - **test_runner**: handle undefined test locations (Colin Ihrig) [#&#8203;52036](https://github.com/nodejs/node/pull/52036) - \[[`328642bbb9`](https://github.com/nodejs/node/commit/328642bbb9)] - **test_runner**: use paths for test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010) - \[[`6d625fe616`](https://github.com/nodejs/node/commit/6d625fe616)] - **test_runner**: support source mapped test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010) - \[[`592c6907bf`](https://github.com/nodejs/node/commit/592c6907bf)] - **test_runner**: avoid overwriting root start time (Colin Ihrig) [#&#8203;52020](https://github.com/nodejs/node/pull/52020) - \[[`29b231763e`](https://github.com/nodejs/node/commit/29b231763e)] - **test_runner**: abort unfinished tests on async error (Colin Ihrig) [#&#8203;51996](https://github.com/nodejs/node/pull/51996) - \[[`5d13419dbd`](https://github.com/nodejs/node/commit/5d13419dbd)] - **test_runner**: run before hook immediately if test started (Moshe Atlow) [#&#8203;52003](https://github.com/nodejs/node/pull/52003) - \[[`8451990668`](https://github.com/nodejs/node/commit/8451990668)] - **test_runner**: add support for null and date value output (Malthe Borch) [#&#8203;51920](https://github.com/nodejs/node/pull/51920) - \[[`423ad47e0f`](https://github.com/nodejs/node/commit/423ad47e0f)] - **tools**: change inactive limit to 12 months (Yagiz Nizipli) [#&#8203;52425](https://github.com/nodejs/node/pull/52425) - \[[`0d1e64f64c`](https://github.com/nodejs/node/commit/0d1e64f64c)] - **tools**: update stale bot messaging (Wes Todd) [#&#8203;52423](https://github.com/nodejs/node/pull/52423) - \[[`5bae73df90`](https://github.com/nodejs/node/commit/5bae73df90)] - **tools**: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) [#&#8203;52398](https://github.com/nodejs/node/pull/52398) - \[[`468cb99ba4`](https://github.com/nodejs/node/commit/468cb99ba4)] - **tools**: update Ruff to v0.3.4 (Michaël Zasso) [#&#8203;52302](https://github.com/nodejs/node/pull/52302) - \[[`67b9dda003`](https://github.com/nodejs/node/commit/67b9dda003)] - **tools**: run test-ubsan on ubuntu-latest (Michaël Zasso) [#&#8203;52375](https://github.com/nodejs/node/pull/52375) - \[[`f1f32d89e0`](https://github.com/nodejs/node/commit/f1f32d89e0)] - **tools**: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) [#&#8203;52286](https://github.com/nodejs/node/pull/52286) - \[[`d7aa8fc9da`](https://github.com/nodejs/node/commit/d7aa8fc9da)] - ***Revert*** "**tools**: run `build-windows` workflow only on source changes" (Michaël Zasso) [#&#8203;52320](https://github.com/nodejs/node/pull/52320) - \[[`a3b1fc3f27`](https://github.com/nodejs/node/commit/a3b1fc3f27)] - **tools**: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) [#&#8203;52301](https://github.com/nodejs/node/pull/52301) - \[[`021cf91208`](https://github.com/nodejs/node/commit/021cf91208)] - **tools**: allow local updates for llhttp (Paolo Insogna) [#&#8203;52085](https://github.com/nodejs/node/pull/52085) - \[[`4d8602046e`](https://github.com/nodejs/node/commit/4d8602046e)] - **tools**: install npm PowerShell scripts on Windows (Luke Karrys) [#&#8203;52009](https://github.com/nodejs/node/pull/52009) - \[[`081319d762`](https://github.com/nodejs/node/commit/081319d762)] - **tools**: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) [#&#8203;52122](https://github.com/nodejs/node/pull/52122) - \[[`c43a944231`](https://github.com/nodejs/node/commit/c43a944231)] - **tools**: fix error reported by coverity in js2c.cc (Michael Dawson) [#&#8203;52142](https://github.com/nodejs/node/pull/52142) - \[[`f05b241f07`](https://github.com/nodejs/node/commit/f05b241f07)] - **tools**: sync ubsan workflow with asan (Michaël Zasso) [#&#8203;52152](https://github.com/nodejs/node/pull/52152) - \[[`a21b15a14e`](https://github.com/nodejs/node/commit/a21b15a14e)] - **tools**: update github_reporter to 1.7.0 (Node.js GitHub Bot) [#&#8203;52121](https://github.com/nodejs/node/pull/52121) - \[[`d60a871db2`](https://github.com/nodejs/node/commit/d60a871db2)] - **tools**: remove gyp-next .github folder (Marco Ippolito) [#&#8203;52064](https://github.com/nodejs/node/pull/52064) - \[[`6ad5353764`](https://github.com/nodejs/node/commit/6ad5353764)] - **tools**: update gyp-next to 0.16.2 (Node.js GitHub Bot) [#&#8203;52062](https://github.com/nodejs/node/pull/52062) - \[[`dab85bdc06`](https://github.com/nodejs/node/commit/dab85bdc06)] - **tools**: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) [#&#8203;51791](https://github.com/nodejs/node/pull/51791) - \[[`cde37e7b63`](https://github.com/nodejs/node/commit/cde37e7b63)] - **tools**: automate gyp-next update (Marco Ippolito) [#&#8203;52014](https://github.com/nodejs/node/pull/52014) - \[[`925a464cb8`](https://github.com/nodejs/node/commit/925a464cb8)] - **url**: remove #context from URLSearchParams (Matt Cowley) [#&#8203;51520](https://github.com/nodejs/node/pull/51520) - \[[`893e2cf22b`](https://github.com/nodejs/node/commit/893e2cf22b)] - **watch**: fix some node argument not passed to watched process (Raz Luvaton) [#&#8203;52358](https://github.com/nodejs/node/pull/52358) - \[[`fec7e505fc`](https://github.com/nodejs/node/commit/fec7e505fc)] - **watch**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`4f68c7c1c9`](https://github.com/nodejs/node/commit/4f68c7c1c9)] - **watch**: mark as stable (Moshe Atlow) [#&#8203;52074](https://github.com/nodejs/node/pull/52074) - \[[`257f32296d`](https://github.com/nodejs/node/commit/257f32296d)] - **watch**: batch file restarts (Moshe Atlow) [#&#8203;51992](https://github.com/nodejs/node/pull/51992) ### [`v20.18.1`](https://github.com/nodejs/node/releases/tag/v20.18.1): 2024-11-20, Version 20.18.1 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.18.0...v20.18.1) ##### Notable Changes - \[[`7a8992b2d6`](https://github.com/nodejs/node/commit/7a8992b2d6)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#&#8203;55086](https://github.com/nodejs/node/pull/55086) ##### Commits - \[[`085c3441fe`](https://github.com/nodejs/node/commit/085c3441fe)] - **assert**: show the diff when deep comparing data with a custom message (Giovanni) [#&#8203;54759](https://github.com/nodejs/node/pull/54759) - \[[`01f0b0e7b4`](https://github.com/nodejs/node/commit/01f0b0e7b4)] - **benchmark**: adjust config for deepEqual object (Rafael Gonzaga) [#&#8203;55254](https://github.com/nodejs/node/pull/55254) - \[[`a45537269b`](https://github.com/nodejs/node/commit/a45537269b)] - **benchmark**: rewrite detect-esm-syntax benchmark (Joyee Cheung) [#&#8203;55238](https://github.com/nodejs/node/pull/55238) - \[[`1a0d8ef64f`](https://github.com/nodejs/node/commit/1a0d8ef64f)] - **benchmark**: add no-warnings to process.has bench (Rafael Gonzaga) [#&#8203;55159](https://github.com/nodejs/node/pull/55159) - \[[`2be5d611ce`](https://github.com/nodejs/node/commit/2be5d611ce)] - **benchmark**: create benchmark for typescript (Marco Ippolito) [#&#8203;54904](https://github.com/nodejs/node/pull/54904) - \[[`a2aa4fa477`](https://github.com/nodejs/node/commit/a2aa4fa477)] - **benchmark**: include ascii to fs/readfile (Rafael Gonzaga) [#&#8203;54988](https://github.com/nodejs/node/pull/54988) - \[[`09849105fe`](https://github.com/nodejs/node/commit/09849105fe)] - **benchmark**: add dotenv benchmark (Aviv Keller) [#&#8203;54278](https://github.com/nodejs/node/pull/54278) - \[[`6b3c24dbad`](https://github.com/nodejs/node/commit/6b3c24dbad)] - **buffer**: fix out of range for toString (Jason Zhang) [#&#8203;54553](https://github.com/nodejs/node/pull/54553) - \[[`f25a5b6dc4`](https://github.com/nodejs/node/commit/f25a5b6dc4)] - **build**: use rclone instead of aws CLI (Michaël Zasso) [#&#8203;55617](https://github.com/nodejs/node/pull/55617) - \[[`0bbeb605de`](https://github.com/nodejs/node/commit/0bbeb605de)] - **build**: fix notify-on-review-wanted action (Rafael Gonzaga) [#&#8203;55304](https://github.com/nodejs/node/pull/55304) - \[[`5b35836732`](https://github.com/nodejs/node/commit/5b35836732)] - **build**: include `.nycrc` in coverage workflows (Wuli Zuo) [#&#8203;55210](https://github.com/nodejs/node/pull/55210) - \[[`f38d1e90e0`](https://github.com/nodejs/node/commit/f38d1e90e0)] - **build**: notify via slack when review-wanted (Rafael Gonzaga) [#&#8203;55102](https://github.com/nodejs/node/pull/55102) - \[[`0b985ec4bb`](https://github.com/nodejs/node/commit/0b985ec4bb)] - **build**: remove -v flag to reduce noise (iwuliz) [#&#8203;55025](https://github.com/nodejs/node/pull/55025) - \[[`09f75b27a1`](https://github.com/nodejs/node/commit/09f75b27a1)] - **build**: display free disk space after build in the test-macOS workflow (iwuliz) [#&#8203;55025](https://github.com/nodejs/node/pull/55025) - \[[`f25760c4a2`](https://github.com/nodejs/node/commit/f25760c4a2)] - **build**: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) [#&#8203;52279](https://github.com/nodejs/node/pull/52279) - \[[`746e78c4f3`](https://github.com/nodejs/node/commit/746e78c4f3)] - ***Revert*** "**build**: upgrade clang-format to v18" (Chengzhong Wu) [#&#8203;54994](https://github.com/nodejs/node/pull/54994) - \[[`67834ee646`](https://github.com/nodejs/node/commit/67834ee646)] - **build**: print `Running XYZ linter...` for py and yml (Aviv Keller) [#&#8203;54386](https://github.com/nodejs/node/pull/54386) - \[[`ae34e276a2`](https://github.com/nodejs/node/commit/ae34e276a2)] - **build**: pin doc workflow to Node.js 20 (Richard Lau) [#&#8203;55755](https://github.com/nodejs/node/pull/55755) - \[[`d0e871a706`](https://github.com/nodejs/node/commit/d0e871a706)] - **build,win**: add winget config to set up env (Hüseyin Açacak) [#&#8203;54729](https://github.com/nodejs/node/pull/54729) - \[[`93ac799b6b`](https://github.com/nodejs/node/commit/93ac799b6b)] - **cli**: fix spacing for port range error (Aviv Keller) [#&#8203;54495](https://github.com/nodejs/node/pull/54495) - \[[`3ba2e7bf97`](https://github.com/nodejs/node/commit/3ba2e7bf97)] - ***Revert*** "**console**: colorize console error and warn" (Aviv Keller) [#&#8203;54677](https://github.com/nodejs/node/pull/54677) - \[[`2f678ea53b`](https://github.com/nodejs/node/commit/2f678ea53b)] - **crypto**: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) [#&#8203;55041](https://github.com/nodejs/node/pull/55041) - \[[`5d28d98542`](https://github.com/nodejs/node/commit/5d28d98542)] - **deps**: update undici to 6.20.0 (Node.js GitHub Bot) [#&#8203;55329](https://github.com/nodejs/node/pull/55329) - \[[`0c7f2fc421`](https://github.com/nodejs/node/commit/0c7f2fc421)] - **deps**: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) [#&#8203;55184](https://github.com/nodejs/node/pull/55184) - \[[`da15e7edf5`](https://github.com/nodejs/node/commit/da15e7edf5)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) [#&#8203;55184](https://github.com/nodejs/node/pull/55184) - \[[`381f1f9d08`](https://github.com/nodejs/node/commit/381f1f9d08)] - **deps**: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) [#&#8203;54336](https://github.com/nodejs/node/pull/54336) - \[[`48d643f78a`](https://github.com/nodejs/node/commit/48d643f78a)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) [#&#8203;54336](https://github.com/nodejs/node/pull/54336) - \[[`7b1796803b`](https://github.com/nodejs/node/commit/7b1796803b)] - **deps**: update timezone to 2024b (Node.js GitHub Bot) [#&#8203;55056](https://github.com/nodejs/node/pull/55056) - \[[`8f1956c588`](https://github.com/nodejs/node/commit/8f1956c588)] - **deps**: update acorn-walk to 8.3.4 (Node.js GitHub Bot) [#&#8203;54950](https://github.com/nodejs/node/pull/54950) - \[[`20501a7350`](https://github.com/nodejs/node/commit/20501a7350)] - **deps**: update corepack to 0.29.4 (Node.js GitHub Bot) [#&#8203;54845](https://github.com/nodejs/node/pull/54845) - \[[`0f81eafecc`](https://github.com/nodejs/node/commit/0f81eafecc)] - **doc**: fix Markdown linter (Antoine du Hamel) [#&#8203;55344](https://github.com/nodejs/node/pull/55344) - \[[`df713f0a98`](https://github.com/nodejs/node/commit/df713f0a98)] - ***Revert*** "**doc**: update test context.assert" (Antoine du Hamel) [#&#8203;55344](https://github.com/nodejs/node/pull/55344) - \[[`fd6fc61d2c`](https://github.com/nodejs/node/commit/fd6fc61d2c)] - **doc**: add pmarchini to collaborators (Pietro Marchini) [#&#8203;55331](https://github.com/nodejs/node/pull/55331) - \[[`b963db9ee2`](https://github.com/nodejs/node/commit/b963db9ee2)] - **doc**: fix `events.once()` example using `AbortSignal` (Ivo Janssen) [#&#8203;55144](https://github.com/nodejs/node/pull/55144) - \[[`50b13bfb12`](https://github.com/nodejs/node/commit/50b13bfb12)] - **doc**: add onboarding details for ambassador program (Marco Ippolito) [#&#8203;55284](https://github.com/nodejs/node/pull/55284) - \[[`27564b7811`](https://github.com/nodejs/node/commit/27564b7811)] - **doc**: fix initial default value of autoSelectFamily (Ihor Rohovets) [#&#8203;55245](https://github.com/nodejs/node/pull/55245) - \[[`9e7be23aa5`](https://github.com/nodejs/node/commit/9e7be23aa5)] - **doc**: tweak onboarding instructions (Michael Dawson) [#&#8203;55212](https://github.com/nodejs/node/pull/55212) - \[[`f412a029c3`](https://github.com/nodejs/node/commit/f412a029c3)] - **doc**: update test context.assert (Pietro Marchini) [#&#8203;55186](https://github.com/nodejs/node/pull/55186) - \[[`2f7828debb`](https://github.com/nodejs/node/commit/2f7828debb)] - **doc**: fix unordered error anchors (Antoine du Hamel) [#&#8203;55242](https://github.com/nodejs/node/pull/55242) - \[[`d08e4c235b`](https://github.com/nodejs/node/commit/d08e4c235b)] - **doc**: mention addons to experimental permission (Rafael Gonzaga) [#&#8203;55166](https://github.com/nodejs/node/pull/55166) - \[[`d65c2458dc`](https://github.com/nodejs/node/commit/d65c2458dc)] - **doc**: use correct dash in stability status (Antoine du Hamel) [#&#8203;55200](https://github.com/nodejs/node/pull/55200) - \[[`d9839c16cf`](https://github.com/nodejs/node/commit/d9839c16cf)] - **doc**: fix link in `test/README.md` (Livia Medeiros) [#&#8203;55165](https://github.com/nodejs/node/pull/55165) - \[[`1ad659afa4`](https://github.com/nodejs/node/commit/1ad659afa4)] - **doc**: add esm examples to node:net (Alfredo González) [#&#8203;55134](https://github.com/nodejs/node/pull/55134) - \[[`81ad69d50f`](https://github.com/nodejs/node/commit/81ad69d50f)] - **doc**: move the YAML changes element (sendoru) [#&#8203;55112](https://github.com/nodejs/node/pull/55112) - \[[`7a51a161be`](https://github.com/nodejs/node/commit/7a51a161be)] - **doc**: fix the require resolve algorithm in `modules.md` (chirsz) [#&#8203;55117](https://github.com/nodejs/node/pull/55117) - \[[`80edcdf899`](https://github.com/nodejs/node/commit/80edcdf899)] - **doc**: update style guide (Aviv Keller) [#&#8203;53223](https://github.com/nodejs/node/pull/53223) - \[[`388c754dd2`](https://github.com/nodejs/node/commit/388c754dd2)] - **doc**: add missing `:` to `run()`'s `globPatterns` (Aviv Keller) [#&#8203;55135](https://github.com/nodejs/node/pull/55135) - \[[`94302b6a76`](https://github.com/nodejs/node/commit/94302b6a76)] - **doc**: add abmusse to collaborators (Abdirahim Musse) [#&#8203;55086](https://github.com/nodejs/node/pull/55086) - \[[`27ff2da964`](https://github.com/nodejs/node/commit/27ff2da964)] - **doc**: add note about `--expose-internals` (Aviv Keller) [#&#8203;52861](https://github.com/nodejs/node/pull/52861) - \[[`df6dc753b7`](https://github.com/nodejs/node/commit/df6dc753b7)] - **doc**: remove `parseREPLKeyword` from REPL documentation (Aviv Keller) [#&#8203;54749](https://github.com/nodejs/node/pull/54749) - \[[`4baa5c4d10`](https://github.com/nodejs/node/commit/4baa5c4d10)] - **doc**: change backporting guide with updated info (Aviv Keller) [#&#8203;53746](https://github.com/nodejs/node/pull/53746) - \[[`9947fc112f`](https://github.com/nodejs/node/commit/9947fc112f)] - **doc**: add missing definitions to `internal-api.md` (Aviv Keller) [#&#8203;53303](https://github.com/nodejs/node/pull/53303) - \[[`a4586f0e94`](https://github.com/nodejs/node/commit/a4586f0e94)] - **doc**: update documentation for externalizing deps (Michael Dawson) [#&#8203;54792](https://github.com/nodejs/node/pull/54792) - \[[`70504f8522`](https://github.com/nodejs/node/commit/70504f8522)] - **doc**: update `require(ESM)` history and stability status (Antoine du Hamel) [#&#8203;55199](https://github.com/nodejs/node/pull/55199) - \[[`9d0041ac40`](https://github.com/nodejs/node/commit/9d0041ac40)] - **doc**: add release key for aduh95 (Antoine du Hamel) [#&#8203;55349](https://github.com/nodejs/node/pull/55349) - \[[`0c1666a52a`](https://github.com/nodejs/node/commit/0c1666a52a)] - **events**: allow null/undefined eventInitDict (Matthew Aitken) [#&#8203;54643](https://github.com/nodejs/node/pull/54643) - \[[`453df77f99`](https://github.com/nodejs/node/commit/453df77f99)] - **events**: return `currentTarget` when dispatching (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642) - \[[`0decaab9db`](https://github.com/nodejs/node/commit/0decaab9db)] - **fs**: acknowledge `signal` option in `filehandle.createReadStream()` (Livia Medeiros) [#&#8203;55148](https://github.com/nodejs/node/pull/55148) - \[[`00a2fc7166`](https://github.com/nodejs/node/commit/00a2fc7166)] - **lib**: move `Symbol[Async]Dispose` polyfills to `internal/util` (Antoine du Hamel) [#&#8203;54853](https://github.com/nodejs/node/pull/54853) - \[[`8e6b606ac4`](https://github.com/nodejs/node/commit/8e6b606ac4)] - **lib**: remove lib/internal/idna.js (Yagiz Nizipli) [#&#8203;55050](https://github.com/nodejs/node/pull/55050) - \[[`c96e5cb664`](https://github.com/nodejs/node/commit/c96e5cb664)] - **lib**: the REPL should survive deletion of Array.prototype methods (Jordan Harband) [#&#8203;31457](https://github.com/nodejs/node/pull/31457) - \[[`748ed2e559`](https://github.com/nodejs/node/commit/748ed2e559)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;55300](https://github.com/nodejs/node/pull/55300) - \[[`8b8d35f015`](https://github.com/nodejs/node/commit/8b8d35f015)] - **meta**: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot\[bot]) [#&#8203;55225](https://github.com/nodejs/node/pull/55225) - \[[`d3441ff0c8`](https://github.com/nodejs/node/commit/d3441ff0c8)] - **meta**: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot\[bot]) [#&#8203;55224](https://github.com/nodejs/node/pull/55224) - \[[`1c20908558`](https://github.com/nodejs/node/commit/1c20908558)] - **meta**: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot\[bot]) [#&#8203;55223](https://github.com/nodejs/node/pull/55223) - \[[`8a529abd69`](https://github.com/nodejs/node/commit/8a529abd69)] - **meta**: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot\[bot]) [#&#8203;55219](https://github.com/nodejs/node/pull/55219) - \[[`9053d210ab`](https://github.com/nodejs/node/commit/9053d210ab)] - **meta**: add mailmap entry for abmusse (Abdirahim Musse) [#&#8203;55182](https://github.com/nodejs/node/pull/55182) - \[[`db2496c125`](https://github.com/nodejs/node/commit/db2496c125)] - **meta**: add more information about nightly releases (Aviv Keller) [#&#8203;55084](https://github.com/nodejs/node/pull/55084) - \[[`d2ce003b2f`](https://github.com/nodejs/node/commit/d2ce003b2f)] - **meta**: add `linux` to OS labels in collaborator guide (Aviv Keller) [#&#8203;54986](https://github.com/nodejs/node/pull/54986) - \[[`37b0bea247`](https://github.com/nodejs/node/commit/37b0bea247)] - **meta**: remove never-used workflow trigger (Aviv Keller) [#&#8203;54983](https://github.com/nodejs/node/pull/54983) - \[[`ae27e2dcd7`](https://github.com/nodejs/node/commit/ae27e2dcd7)] - **meta**: add links to alternative issue trackers (Aviv Keller) [#&#8203;54401](https://github.com/nodejs/node/pull/54401) - \[[`6e5d524b0f`](https://github.com/nodejs/node/commit/6e5d524b0f)] - **module**: remove duplicated import (Aviv Keller) [#&#8203;54942](https://github.com/nodejs/node/pull/54942) - \[[`3a682cca03`](https://github.com/nodejs/node/commit/3a682cca03)] - **path**: remove repetitive conditional operator in `posix.resolve` (Wiyeong Seo) [#&#8203;54835](https://github.com/nodejs/node/pull/54835) - \[[`ac1cb8dfdb`](https://github.com/nodejs/node/commit/ac1cb8dfdb)] - **perf_hooks**: add missing type argument to getEntriesByName (Luke Taher) [#&#8203;54767](https://github.com/nodejs/node/pull/54767) - \[[`85b3edc83b`](https://github.com/nodejs/node/commit/85b3edc83b)] - **repl**: catch `\v` and `\r` in new-line detection (Aviv Keller) [#&#8203;54512](https://github.com/nodejs/node/pull/54512) - \[[`df1f04999e`](https://github.com/nodejs/node/commit/df1f04999e)] - **src**: decode native error messages as UTF-8 (Joyee Cheung) [#&#8203;55024](https://github.com/nodejs/node/pull/55024) - \[[`86d718177a`](https://github.com/nodejs/node/commit/86d718177a)] - **src**: update clang-tidy and focus on modernization (Yagiz Nizipli) [#&#8203;53757](https://github.com/nodejs/node/pull/53757) - \[[`7d01b6a9c5`](https://github.com/nodejs/node/commit/7d01b6a9c5)] - **src**: cleanup per env handles directly without a list (Chengzhong Wu) [#&#8203;54993](https://github.com/nodejs/node/pull/54993) - \[[`a730cdb622`](https://github.com/nodejs/node/commit/a730cdb622)] - **src**: remove duplicate code setting AF_INET (He Yang) [#&#8203;54939](https://github.com/nodejs/node/pull/54939) - \[[`f10d9ad283`](https://github.com/nodejs/node/commit/f10d9ad283)] - **stream**: treat null asyncIterator as undefined (Jason Zhang) [#&#8203;55119](https://github.com/nodejs/node/pull/55119) - \[[`6027084245`](https://github.com/nodejs/node/commit/6027084245)] - **test**: make `test-loaders-workers-spawned` less flaky (Antoine du Hamel) [#&#8203;55172](https://github.com/nodejs/node/pull/55172) - \[[`66a87d19bd`](https://github.com/nodejs/node/commit/66a87d19bd)] - **test**: update multiple assert tests to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585) - \[[`5105188c47`](https://github.com/nodejs/node/commit/5105188c47)] - **test**: update wpt test for encoding (devstone) [#&#8203;55151](https://github.com/nodejs/node/pull/55151) - \[[`81bcec0b82`](https://github.com/nodejs/node/commit/81bcec0b82)] - **test**: deflake test/pummel/test-timers.js (jakecastelli) [#&#8203;55098](https://github.com/nodejs/node/pull/55098) - \[[`82c402265a`](https://github.com/nodejs/node/commit/82c402265a)] - **test**: deflake test-http-remove-header-stays-removed (Luigi Pinca) [#&#8203;55004](https://github.com/nodejs/node/pull/55004) - \[[`78021701ed`](https://github.com/nodejs/node/commit/78021701ed)] - **test**: fix test-tls-junk-closes-server (Michael Dawson) [#&#8203;55089](https://github.com/nodejs/node/pull/55089) - \[[`c908b8a2d8`](https://github.com/nodejs/node/commit/c908b8a2d8)] - **test**: fix more tests that fail when path contains a space (Antoine du Hamel) [#&#8203;55088](https://github.com/nodejs/node/pull/55088) - \[[`afc1628e73`](https://github.com/nodejs/node/commit/afc1628e73)] - **test**: fix `assertSnapshot` when path contains a quote (Antoine du Hamel) [#&#8203;55087](https://github.com/nodejs/node/pull/55087) - \[[`7c88739b83`](https://github.com/nodejs/node/commit/7c88739b83)] - **test**: fix some tests when path contains `%` (Antoine du Hamel) [#&#8203;55082](https://github.com/nodejs/node/pull/55082) - \[[`eb4d468671`](https://github.com/nodejs/node/commit/eb4d468671)] - ***Revert*** "**test**: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) [#&#8203;55079](https://github.com/nodejs/node/pull/55079) - \[[`bc7b5249d4`](https://github.com/nodejs/node/commit/bc7b5249d4)] - **test**: make `test-runner-assert` more robust (Aviv Keller) [#&#8203;55036](https://github.com/nodejs/node/pull/55036) - \[[`6c2a1386f7`](https://github.com/nodejs/node/commit/6c2a1386f7)] - **test**: update tls test to support OpenSSL32 (Michael Dawson) [#&#8203;55030](https://github.com/nodejs/node/pull/55030) - \[[`96406610fa`](https://github.com/nodejs/node/commit/96406610fa)] - **test**: fix `test-vm-context-dont-contextify` when path contains a space (Antoine du Hamel) [#&#8203;55026](https://github.com/nodejs/node/pull/55026) - \[[`39a80eed4f`](https://github.com/nodejs/node/commit/39a80eed4f)] - **test**: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) [#&#8203;55016](https://github.com/nodejs/node/pull/55016) - \[[`bd8fd4fceb`](https://github.com/nodejs/node/commit/bd8fd4fceb)] - **test**: add `util.stripVTControlCharacters` test (RedYetiDev) [#&#8203;54865](https://github.com/nodejs/node/pull/54865) - \[[`333b5a02d0`](https://github.com/nodejs/node/commit/333b5a02d0)] - **test**: improve coverage for timer promises schedular (Aviv Keller) [#&#8203;53370](https://github.com/nodejs/node/pull/53370) - \[[`f48992f433`](https://github.com/nodejs/node/commit/f48992f433)] - **test**: remove unused common utilities (RedYetiDev) [#&#8203;54825](https://github.com/nodejs/node/pull/54825) - \[[`93a098c56d`](https://github.com/nodejs/node/commit/93a098c56d)] - **test**: deflake test-http-header-overflow (Luigi Pinca) [#&#8203;54978](https://github.com/nodejs/node/pull/54978) - \[[`f849cf677d`](https://github.com/nodejs/node/commit/f849cf677d)] - **test**: fix `soucre` to `source` (Aviv Keller) [#&#8203;55038](https://github.com/nodejs/node/pull/55038) - \[[`1a007ea814`](https://github.com/nodejs/node/commit/1a007ea814)] - **test**: add asserts to validate test assumptions (Michael Dawson) [#&#8203;54997](https://github.com/nodejs/node/pull/54997) - \[[`6f53c096f8`](https://github.com/nodejs/node/commit/6f53c096f8)] - **test**: move test-http-max-sockets to parallel (Luigi Pinca) [#&#8203;54977](https://github.com/nodejs/node/pull/54977) - \[[`aba9dc775e`](https://github.com/nodejs/node/commit/aba9dc775e)] - **test**: remove test-http-max-sockets flaky designation (Luigi Pinca) [#&#8203;54976](https://github.com/nodejs/node/pull/54976) - \[[`ee5624bffe`](https://github.com/nodejs/node/commit/ee5624bffe)] - **test**: adjust key sizes to support OpenSSL32 (Michael Dawson) [#&#8203;54972](https://github.com/nodejs/node/pull/54972) - \[[`5c11a61140`](https://github.com/nodejs/node/commit/5c11a61140)] - **test**: update test to support OpenSSL32 (Michael Dawson) [#&#8203;54968](https://github.com/nodejs/node/pull/54968) - \[[`62f21470e4`](https://github.com/nodejs/node/commit/62f21470e4)] - **test**: update DOM events web platform tests (Matthew Aitken) [#&#8203;54642](https://github.com/nodejs/node/pull/54642) - \[[`426851705c`](https://github.com/nodejs/node/commit/426851705c)] - **test_runner**: assert entry is a valid object (Edigleysson Silva (Edy)) [#&#8203;55231](https://github.com/nodejs/node/pull/55231) - \[[`b1cad519d7`](https://github.com/nodejs/node/commit/b1cad519d7)] - **test_runner**: use `test:` symbol on second print of parent test (RedYetiDev) [#&#8203;54956](https://github.com/nodejs/node/pull/54956) - \[[`63c8f3d436`](https://github.com/nodejs/node/commit/63c8f3d436)] - **test_runner**: replace ansi clear with ansi reset (Pietro Marchini) [#&#8203;55013](https://github.com/nodejs/node/pull/55013) - \[[`0b3fb344f7`](https://github.com/nodejs/node/commit/0b3fb344f7)] - **tools**: add `polyfilled` option to `prefer-primordials` rule (Antoine du Hamel) [#&#8203;55318](https://github.com/nodejs/node/pull/55318) - \[[`8981309bd9`](https://github.com/nodejs/node/commit/8981309bd9)] - **tools**: make `choco install` script more readable (Aviv Keller) [#&#8203;54002](https://github.com/nodejs/node/pull/54002) - \[[`7310abeae1`](https://github.com/nodejs/node/commit/7310abeae1)] - **tools**: bump Rollup from 4.18.1 to 4.22.4 for `lint-md` (dependabot\[bot]) [#&#8203;55093](https://github.com/nodejs/node/pull/55093) - \[[`083311e8af`](https://github.com/nodejs/node/commit/083311e8af)] - **tools**: remove redudant code from eslint require rule (Aviv Keller) [#&#8203;54892](https://github.com/nodejs/node/pull/54892) - \[[`ae4b2aece1`](https://github.com/nodejs/node/commit/ae4b2aece1)] - **tools**: update error message for ICU in license-builder (Aviv Keller) [#&#8203;54742](https://github.com/nodejs/node/pull/54742) - \[[`3ebd31684d`](https://github.com/nodejs/node/commit/3ebd31684d)] - **tools**: update github_reporter to 1.7.1 (Node.js GitHub Bot) [#&#8203;54951](https://github.com/nodejs/node/pull/54951) - \[[`397be8a10e`](https://github.com/nodejs/node/commit/397be8a10e)] - **tty**: fix links for terminal colors (Aviv Keller) [#&#8203;54596](https://github.com/nodejs/node/pull/54596) - \[[`a3c2ef9e98`](https://github.com/nodejs/node/commit/a3c2ef9e98)] - **util**: update ansi regex (Aviv Keller) [#&#8203;54865](https://github.com/nodejs/node/pull/54865) - \[[`efdccc88a2`](https://github.com/nodejs/node/commit/efdccc88a2)] - **watch**: preserve output when gracefully restarted (Théo LUDWIG) [#&#8203;54323](https://github.com/nodejs/node/pull/54323) - \[[`226836c5ac`](https://github.com/nodejs/node/commit/226836c5ac)] - **worker**: throw InvalidStateError in postMessage after close (devstone) [#&#8203;55206](https://github.com/nodejs/node/pull/55206) - \[[`f39ff4d14b`](https://github.com/nodejs/node/commit/f39ff4d14b)] - **worker**: handle `--input-type` more consistently (Antoine du Hamel) [#&#8203;54979](https://github.com/nodejs/node/pull/54979) - \[[`30383ffb9a`](https://github.com/nodejs/node/commit/30383ffb9a)] - **zlib**: throw brotli initialization error from c++ (Yagiz Nizipli) [#&#8203;54698](https://github.com/nodejs/node/pull/54698) ### [`v20.18.0`](https://github.com/nodejs/node/releases/tag/v20.18.0): 2024-10-03, Version 20.18.0 &#x27;Iron&#x27; (LTS), @&#8203;targos [Compare Source](https://github.com/nodejs/node/compare/v20.17.0...v20.18.0) ##### Notable Changes ##### Experimental Network Inspection Support in Node.js This update introduces the initial support for network inspection in Node.js. Currently, this is an experimental feature, so you need to enable it using the `--experimental-network-inspection` flag. With this feature enabled, you can inspect network activities occurring within a JavaScript application. To use network inspection, start your Node.js application with the following command: ```console $ node --inspect-wait --experimental-network-inspection index.js ``` Please note that the network inspection capabilities are in active development. We are actively working on enhancing this feature and will continue to expand its functionality in future updates. - Network inspection is limited to the `http` and `https` modules only. - The Network tab in Chrome DevTools will not be available until the [feature request on the Chrome DevTools side](https://issues.chromium.org/issues/353924015) is addressed. Contributed by Kohei Ueno in [#&#8203;53593](https://github.com/nodejs/node/pull/53593) and [#&#8203;54246](https://github.com/nodejs/node/pull/54246) ##### Exposes X509\_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext This releases introduces a new option to the API `tls.createSecureContext`. From now on, `tls.createSecureContext({ allowPartialTrustChain: true })` can be used to treat intermediate (non-self-signed) certificates in the trust CA certificate list as trusted. Contributed by Anna Henningsen in [#&#8203;54790](https://github.com/nodejs/node/pull/54790) ##### New option for vm.createContext() to create a context with a freezable globalThis Node.js implements a flavor of `vm.createContext()` and friends that creates a context without contextifying its global object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context (impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they don't need the interceptor behavior. Contributed by Joyee Cheung in [#&#8203;54394](https://github.com/nodejs/node/pull/54394) ##### Deprecations - \[[`64aa31f6e5`](https://github.com/nodejs/node/commit/64aa31f6e5)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842) - \[[`4c52ee3d7f`](https://github.com/nodejs/node/commit/4c52ee3d7f)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708) ##### Other Notable Changes - \[[`b80da2f964`](https://github.com/nodejs/node/commit/b80da2f964)] - **buffer**: optimize createFromString (Robert Nagy) [#&#8203;54324](https://github.com/nodejs/node/pull/54324) - \[[`02b36cbd2d`](https://github.com/nodejs/node/commit/02b36cbd2d)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575) - \[[`879546a9bf`](https://github.com/nodejs/node/commit/879546a9bf)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413) - \[[`f789f4c92d`](https://github.com/nodejs/node/commit/f789f4c92d)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848) - \[[`4eb0749b6c`](https://github.com/nodejs/node/commit/4eb0749b6c)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280) ##### Commits - \[[`013c48f0e9`](https://github.com/nodejs/node/commit/013c48f0e9)] - **benchmark**: --no-warnings to avoid DEP/ExpWarn log (Rafael Gonzaga) [#&#8203;54928](https://github.com/nodejs/node/pull/54928) - \[[`194fc113ac`](https://github.com/nodejs/node/commit/194fc113ac)] - **benchmark**: add buffer.isAscii benchmark (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740) - \[[`7410d51cb9`](https://github.com/nodejs/node/commit/7410d51cb9)] - **benchmark**: add buffer.isUtf8 bench (RafaelGSS) [#&#8203;54740](https://github.com/nodejs/node/pull/54740) - \[[`2393f21e8a`](https://github.com/nodejs/node/commit/2393f21e8a)] - **benchmark**: add access async version to bench (Rafael Gonzaga) [#&#8203;54747](https://github.com/nodejs/node/pull/54747) - \[[`b8779721f0`](https://github.com/nodejs/node/commit/b8779721f0)] - **benchmark**: enhance dc publish benchmark (Rafael Gonzaga) [#&#8203;54745](https://github.com/nodejs/node/pull/54745) - \[[`4078aa83ff`](https://github.com/nodejs/node/commit/4078aa83ff)] - **benchmark**: add match and doesNotMatch bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`66acab9976`](https://github.com/nodejs/node/commit/66acab9976)] - **benchmark**: add rejects and doesNotReject bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`6db777fb3a`](https://github.com/nodejs/node/commit/6db777fb3a)] - **benchmark**: add throws and doesNotThrow bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`8f101560ce`](https://github.com/nodejs/node/commit/8f101560ce)] - **benchmark**: add strictEqual and notStrictEqual bench (RafaelGSS) [#&#8203;54734](https://github.com/nodejs/node/pull/54734) - \[[`2c9e4c936e`](https://github.com/nodejs/node/commit/2c9e4c936e)] - **benchmark**: adds groups to better separate benchmarks (Giovanni Bucci) [#&#8203;54393](https://github.com/nodejs/node/pull/54393) - \[[`671c3ac633`](https://github.com/nodejs/node/commit/671c3ac633)] - **benchmark**: fix benchmark for file path and URL conversion (Early Riser) [#&#8203;54190](https://github.com/nodejs/node/pull/54190) - \[[`8c8708cb5b`](https://github.com/nodejs/node/commit/8c8708cb5b)] - **benchmark**: use assert.ok searchparams (Rafael Gonzaga) [#&#8203;54334](https://github.com/nodejs/node/pull/54334) - \[[`8b71fa79e2`](https://github.com/nodejs/node/commit/8b71fa79e2)] - **benchmark**: add stream.compose benchmark (jakecastelli) [#&#8203;54308](https://github.com/nodejs/node/pull/54308) - \[[`93ee36e3a0`](https://github.com/nodejs/node/commit/93ee36e3a0)] - **benchmark**: rename count to n (Rafael Gonzaga) [#&#8203;54271](https://github.com/nodejs/node/pull/54271) - \[[`f2971b6f0b`](https://github.com/nodejs/node/commit/f2971b6f0b)] - **benchmark**: change assert() to assert.ok() (Rafael Gonzaga) [#&#8203;54254](https://github.com/nodejs/node/pull/54254) - \[[`f48f2c212c`](https://github.com/nodejs/node/commit/f48f2c212c)] - **benchmark**: support --help in CLI (Aviv Keller) [#&#8203;53358](https://github.com/nodejs/node/pull/53358) - \[[`0309b0520b`](https://github.com/nodejs/node/commit/0309b0520b)] - **benchmark**: remove force option as force defaults to true (Yelim Koo) [#&#8203;54203](https://github.com/nodejs/node/pull/54203) - \[[`b6e8305b2d`](https://github.com/nodejs/node/commit/b6e8305b2d)] - **benchmark**: use assert.ok instead of assert (Rafael Gonzaga) [#&#8203;54176](https://github.com/nodejs/node/pull/54176) - \[[`90c660d26a`](https://github.com/nodejs/node/commit/90c660d26a)] - **benchmark**: add require-esm benchmark (Joyee Cheung) [#&#8203;52166](https://github.com/nodejs/node/pull/52166) - \[[`1b8584b52e`](https://github.com/nodejs/node/commit/1b8584b52e)] - **benchmark,doc**: add CPU scaling governor to perf (Rafael Gonzaga) [#&#8203;54723](https://github.com/nodejs/node/pull/54723) - \[[`0b9161b330`](https://github.com/nodejs/node/commit/0b9161b330)] - **benchmark,doc**: mention bar.R to the list of scripts (Rafael Gonzaga) [#&#8203;54722](https://github.com/nodejs/node/pull/54722) - \[[`84bf93b7ea`](https://github.com/nodejs/node/commit/84bf93b7ea)] - **buffer**: allow invalid encoding in from (Robert Nagy) [#&#8203;54533](https://github.com/nodejs/node/pull/54533) - \[[`d04246a0d7`](https://github.com/nodejs/node/commit/d04246a0d7)] - **buffer**: optimize byteLength for common encodings (Robert Nagy) [#&#8203;54342](https://github.com/nodejs/node/pull/54342) - \[[`f36831f694`](https://github.com/nodejs/node/commit/f36831f694)] - **buffer**: optimize createFromString (Robert Nagy) [#&#8203;54324](https://github.com/nodejs/node/pull/54324) - \[[`f5f40c8088`](https://github.com/nodejs/node/commit/f5f40c8088)] - **buffer**: optimize for common encodings (Robert Nagy) [#&#8203;54319](https://github.com/nodejs/node/pull/54319) - \[[`76c37703be`](https://github.com/nodejs/node/commit/76c37703be)] - **buffer**: add JSDoc to blob bytes method (Roberto Simonini) [#&#8203;54117](https://github.com/nodejs/node/pull/54117) - \[[`3012d31404`](https://github.com/nodejs/node/commit/3012d31404)] - **buffer**: use faster integer argument check (Robert Nagy) [#&#8203;54089](https://github.com/nodejs/node/pull/54089) - \[[`3505782801`](https://github.com/nodejs/node/commit/3505782801)] - **buffer**: make indexOf(byte) faster (Tobias Nießen) [#&#8203;53455](https://github.com/nodejs/node/pull/53455) - \[[`d285fc1f68`](https://github.com/nodejs/node/commit/d285fc1f68)] - **build**: upgrade clang-format to v18 (Aviv Keller) [#&#8203;53957](https://github.com/nodejs/node/pull/53957) - \[[`d288ec3b0a`](https://github.com/nodejs/node/commit/d288ec3b0a)] - **build**: fix conflicting V8 object print flags (Daeyeon Jeong) [#&#8203;54785](https://github.com/nodejs/node/pull/54785) - \[[`e862eecac9`](https://github.com/nodejs/node/commit/e862eecac9)] - **build**: do not build with code cache for core coverage collection (Joyee Cheung) [#&#8203;54633](https://github.com/nodejs/node/pull/54633) - \[[`f7a606eb96`](https://github.com/nodejs/node/commit/f7a606eb96)] - **build**: turn off `-Wrestrict` (Richard Lau) [#&#8203;54737](https://github.com/nodejs/node/pull/54737) - \[[`71ca2665e4`](https://github.com/nodejs/node/commit/71ca2665e4)] - **build**: reclaim disk space on macOS GHA runner (jakecastelli) [#&#8203;54658](https://github.com/nodejs/node/pull/54658) - \[[`82d8051c39`](https://github.com/nodejs/node/commit/82d8051c39)] - **build**: don't clean obj.target directory if it doesn't exist (Joyee Cheung) [#&#8203;54337](https://github.com/nodejs/node/pull/54337) - \[[`6e550b1f26`](https://github.com/nodejs/node/commit/6e550b1f26)] - **build**: update `ruff` to `0.5.2` (Aviv Keller) [#&#8203;53909](https://github.com/nodejs/node/pull/53909) - \[[`e2ea7b26d7`](https://github.com/nodejs/node/commit/e2ea7b26d7)] - **build**: fix ./configure --help format error (Zhenwei Jin) [#&#8203;53066](https://github.com/nodejs/node/pull/53066) - \[[`eb2402d569`](https://github.com/nodejs/node/commit/eb2402d569)] - **build**: enable building with shared uvwasi lib (Pooja D P) [#&#8203;43987](https://github.com/nodejs/node/pull/43987) - \[[`45732314d4`](https://github.com/nodejs/node/commit/45732314d4)] - **build**: sync V8 warning cflags with BUILD.gn (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873) - \[[`6e0a2bb54c`](https://github.com/nodejs/node/commit/6e0a2bb54c)] - **build**: harmonize Clang checks (Michaël Zasso) [#&#8203;52873](https://github.com/nodejs/node/pull/52873) - \[[`3f78d4eb28`](https://github.com/nodejs/node/commit/3f78d4eb28)] - **cli**: add `--expose-gc` flag available to `NODE_OPTIONS` (Juan José) [#&#8203;53078](https://github.com/nodejs/node/pull/53078) - \[[`a110409b2a`](https://github.com/nodejs/node/commit/a110409b2a)] - **console**: use validateOneOf for colorMode validation (HEESEUNG) [#&#8203;54245](https://github.com/nodejs/node/pull/54245) - \[[`231ab788ea`](https://github.com/nodejs/node/commit/231ab788ea)] - **crypto**: reject dh,x25519,x448 in {Sign,Verify}Final (Huáng Jùnliàng) [#&#8203;53774](https://github.com/nodejs/node/pull/53774) - \[[`a5984e4570`](https://github.com/nodejs/node/commit/a5984e4570)] - **crypto**: return a clearer error when loading an unsupported pkcs12 (Tim Perry) [#&#8203;54485](https://github.com/nodejs/node/pull/54485) - \[[`f287cd77bd`](https://github.com/nodejs/node/commit/f287cd77bd)] - **crypto**: remove unused `kHashTypes` internal (Antoine du Hamel) [#&#8203;54627](https://github.com/nodejs/node/pull/54627) - \[[`1fc904f8c4`](https://github.com/nodejs/node/commit/1fc904f8c4)] - **deps**: update cjs-module-lexer to 1.4.1 (Node.js GitHub Bot) [#&#8203;54846](https://github.com/nodejs/node/pull/54846) - \[[`95b55c39b1`](https://github.com/nodejs/node/commit/95b55c39b1)] - **deps**: update simdutf to 5.5.0 (Node.js GitHub Bot) [#&#8203;54434](https://github.com/nodejs/node/pull/54434) - \[[`cf6ded5dd3`](https://github.com/nodejs/node/commit/cf6ded5dd3)] - **deps**: update cjs-module-lexer to 1.4.0 (Node.js GitHub Bot) [#&#8203;54713](https://github.com/nodejs/node/pull/54713) - \[[`7f8edce3f1`](https://github.com/nodejs/node/commit/7f8edce3f1)] - **deps**: update c-ares to v1.33.1 (Node.js GitHub Bot) [#&#8203;54549](https://github.com/nodejs/node/pull/54549) - \[[`9a4a7b7ecc`](https://github.com/nodejs/node/commit/9a4a7b7ecc)] - **deps**: update undici to 6.19.8 (Node.js GitHub Bot) [#&#8203;54456](https://github.com/nodejs/node/pull/54456) - \[[`87ca1d7fee`](https://github.com/nodejs/node/commit/87ca1d7fee)] - **deps**: update simdutf to 5.3.4 (Node.js GitHub Bot) [#&#8203;54312](https://github.com/nodejs/node/pull/54312) - \[[`d3a743f182`](https://github.com/nodejs/node/commit/d3a743f182)] - **deps**: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`926981aa9f`](https://github.com/nodejs/node/commit/926981aa9f)] - **deps**: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`654c8d1fdc`](https://github.com/nodejs/node/commit/654c8d1fdc)] - **deps**: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`2477e79172`](https://github.com/nodejs/node/commit/2477e79172)] - **deps**: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`3d8113faf5`](https://github.com/nodejs/node/commit/3d8113faf5)] - **deps**: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`ac294e3db4`](https://github.com/nodejs/node/commit/ac294e3db4)] - **deps**: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) [#&#8203;53464](https://github.com/nodejs/node/pull/53464) - \[[`239588b968`](https://github.com/nodejs/node/commit/239588b968)] - **deps**: update c-ares to v1.33.0 (Node.js GitHub Bot) [#&#8203;54198](https://github.com/nodejs/node/pull/54198) - \[[`6e7de37ed3`](https://github.com/nodejs/node/commit/6e7de37ed3)] - **deps**: update undici to 6.19.7 (Node.js GitHub Bot) [#&#8203;54286](https://github.com/nodejs/node/pull/54286) - \[[`38aa9d6ea9`](https://github.com/nodejs/node/commit/38aa9d6ea9)] - **deps**: update acorn to 8.12.1 (Node.js GitHub Bot) [#&#8203;53465](https://github.com/nodejs/node/pull/53465) - \[[`d30145f663`](https://github.com/nodejs/node/commit/d30145f663)] - **deps**: update undici to 6.19.5 (Node.js GitHub Bot) [#&#8203;54076](https://github.com/nodejs/node/pull/54076) - \[[`c169d9c12b`](https://github.com/nodejs/node/commit/c169d9c12b)] - **deps**: update simdutf to 5.3.1 (Node.js GitHub Bot) [#&#8203;54196](https://github.com/nodejs/node/pull/54196) - \[[`92f3447957`](https://github.com/nodejs/node/commit/92f3447957)] - **doc**: add missing EventSource docs to globals (Matthew Aitken) [#&#8203;55022](https://github.com/nodejs/node/pull/55022) - \[[`2879ce9681`](https://github.com/nodejs/node/commit/2879ce9681)] - **doc**: fix broken Android building link (Niklas Wenzel) [#&#8203;54922](https://github.com/nodejs/node/pull/54922) - \[[`096623b59a`](https://github.com/nodejs/node/commit/096623b59a)] - **doc**: add support link for aduh95 (Antoine du Hamel) [#&#8203;54866](https://github.com/nodejs/node/pull/54866) - \[[`1dfd238781`](https://github.com/nodejs/node/commit/1dfd238781)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;54854](https://github.com/nodejs/node/pull/54854) - \[[`a6c748fffb`](https://github.com/nodejs/node/commit/a6c748fffb)] - **doc**: experimental flag for global accessible APIs (Chengzhong Wu) [#&#8203;54330](https://github.com/nodejs/node/pull/54330) - \[[`d48a22fa14`](https://github.com/nodejs/node/commit/d48a22fa14)] - **doc**: add `ERR_INVALID_ADDRESS` to `errors.md` (Aviv Keller) [#&#8203;54661](https://github.com/nodejs/node/pull/54661) - \[[`4a840cecfa`](https://github.com/nodejs/node/commit/4a840cecfa)] - **doc**: add support link for mcollina (Matteo Collina) [#&#8203;54786](https://github.com/nodejs/node/pull/54786) - \[[`ec22d86512`](https://github.com/nodejs/node/commit/ec22d86512)] - **doc**: mark `--conditions` CLI flag as stable (Guy Bedford) [#&#8203;54209](https://github.com/nodejs/node/pull/54209) - \[[`77c702ca07`](https://github.com/nodejs/node/commit/77c702ca07)] - **doc**: fix typo in recognizing-contributors (Tobias Nießen) [#&#8203;54822](https://github.com/nodejs/node/pull/54822) - \[[`62953ef9fb`](https://github.com/nodejs/node/commit/62953ef9fb)] - **doc**: clarify `--max-old-space-size` and `--max-semi-space-size` units (Alexandre ABRIOUX) [#&#8203;54477](https://github.com/nodejs/node/pull/54477) - \[[`e2bab0f2b2`](https://github.com/nodejs/node/commit/e2bab0f2b2)] - **doc**: replace --allow-fs-read by --allow-fs-write in related section (M1CK431) [#&#8203;54427](https://github.com/nodejs/node/pull/54427) - \[[`9cbfd5b33a`](https://github.com/nodejs/node/commit/9cbfd5b33a)] - **doc**: add support link for marco-ippolito (Marco Ippolito) [#&#8203;54789](https://github.com/nodejs/node/pull/54789) - \[[`53167b29ef`](https://github.com/nodejs/node/commit/53167b29ef)] - **doc**: fix typo (Michael Dawson) [#&#8203;54640](https://github.com/nodejs/node/pull/54640) - \[[`87f78a35f7`](https://github.com/nodejs/node/commit/87f78a35f7)] - **doc**: fix webcrypto.md AES-GCM backticks (Filip Skokan) [#&#8203;54621](https://github.com/nodejs/node/pull/54621) - \[[`7c83c15221`](https://github.com/nodejs/node/commit/7c83c15221)] - **doc**: add documentation about os.tmpdir() overrides (Joyee Cheung) [#&#8203;54613](https://github.com/nodejs/node/pull/54613) - \[[`4bfd832d70`](https://github.com/nodejs/node/commit/4bfd832d70)] - **doc**: add support me link for anonrig (Yagiz Nizipli) [#&#8203;54611](https://github.com/nodejs/node/pull/54611) - \[[`22a103e5ec`](https://github.com/nodejs/node/commit/22a103e5ec)] - **doc**: add alert on REPL from TCP socket (Rafael Gonzaga) [#&#8203;54594](https://github.com/nodejs/node/pull/54594) - \[[`b6374c24e1`](https://github.com/nodejs/node/commit/b6374c24e1)] - **doc**: fix typo in styleText description (Rafael Gonzaga) [#&#8203;54616](https://github.com/nodejs/node/pull/54616) - \[[`2f5b98ee1f`](https://github.com/nodejs/node/commit/2f5b98ee1f)] - **doc**: add getHeapStatistics() property descriptions (Benji Marinacci) [#&#8203;54584](https://github.com/nodejs/node/pull/54584) - \[[`482302b99b`](https://github.com/nodejs/node/commit/482302b99b)] - **doc**: fix information about including coverage files (Aviv Keller) [#&#8203;54527](https://github.com/nodejs/node/pull/54527) - \[[`b3708e7df4`](https://github.com/nodejs/node/commit/b3708e7df4)] - **doc**: support collaborators - talk amplification (Michael Dawson) [#&#8203;54508](https://github.com/nodejs/node/pull/54508) - \[[`c86fe23012`](https://github.com/nodejs/node/commit/c86fe23012)] - **doc**: add note about shasum generation failure (Marco Ippolito) [#&#8203;54487](https://github.com/nodejs/node/pull/54487) - \[[`d53e6cf755`](https://github.com/nodejs/node/commit/d53e6cf755)] - **doc**: fix capitalization in module.md (shallow-beach) [#&#8203;54488](https://github.com/nodejs/node/pull/54488) - \[[`cdc6713f18`](https://github.com/nodejs/node/commit/cdc6713f18)] - **doc**: add esm examples to node:https (Alfredo González) [#&#8203;54399](https://github.com/nodejs/node/pull/54399) - \[[`1ac1fe4e65`](https://github.com/nodejs/node/commit/1ac1fe4e65)] - **doc**: fix error description of the max header size (Egawa Ryo) [#&#8203;54125](https://github.com/nodejs/node/pull/54125) - \[[`244542b720`](https://github.com/nodejs/node/commit/244542b720)] - **doc**: add git node security --cleanup (Rafael Gonzaga) [#&#8203;54381](https://github.com/nodejs/node/pull/54381) - \[[`69fb71f54c`](https://github.com/nodejs/node/commit/69fb71f54c)] - **doc**: add note on weakness of permission model (Tobias Nießen) [#&#8203;54268](https://github.com/nodejs/node/pull/54268) - \[[`83b2cb908b`](https://github.com/nodejs/node/commit/83b2cb908b)] - **doc**: add versions when `--watch-preserve-output` was added (Théo LUDWIG) [#&#8203;54328](https://github.com/nodejs/node/pull/54328) - \[[`460fb49483`](https://github.com/nodejs/node/commit/460fb49483)] - **doc**: replace v19 mention in Current release (Rafael Gonzaga) [#&#8203;54361](https://github.com/nodejs/node/pull/54361) - \[[`994b46a160`](https://github.com/nodejs/node/commit/994b46a160)] - **doc**: correct peformance entry types (Jason Zhang) [#&#8203;54263](https://github.com/nodejs/node/pull/54263) - \[[`f142e668cb`](https://github.com/nodejs/node/commit/f142e668cb)] - **doc**: fix typo in method name in the sea doc (Eliyah Sundström) [#&#8203;54027](https://github.com/nodejs/node/pull/54027) - \[[`9529a30dba`](https://github.com/nodejs/node/commit/9529a30dba)] - **doc**: mark process.nextTick legacy (Marco Ippolito) [#&#8203;51280](https://github.com/nodejs/node/pull/51280) - \[[`7e25fabb91`](https://github.com/nodejs/node/commit/7e25fabb91)] - **doc**: add esm examples to node:http2 (Alfredo González) [#&#8203;54292](https://github.com/nodejs/node/pull/54292) - \[[`6a4f05e384`](https://github.com/nodejs/node/commit/6a4f05e384)] - **doc**: explicitly mention node:fs module restriction (Rafael Gonzaga) [#&#8203;54269](https://github.com/nodejs/node/pull/54269) - \[[`53f5c54997`](https://github.com/nodejs/node/commit/53f5c54997)] - **doc**: warn for windows build bug (Jason Zhang) [#&#8203;54217](https://github.com/nodejs/node/pull/54217) - \[[`07bde054f3`](https://github.com/nodejs/node/commit/07bde054f3)] - **doc**: make some parameters optional in `tracingChannel.traceCallback` (Deokjin Kim) [#&#8203;54068](https://github.com/nodejs/node/pull/54068) - \[[`62bf03b5f1`](https://github.com/nodejs/node/commit/62bf03b5f1)] - **doc**: add esm examples to node:dns (Alfredo González) [#&#8203;54172](https://github.com/nodejs/node/pull/54172) - \[[`fb2b19184b`](https://github.com/nodejs/node/commit/fb2b19184b)] - **doc**: add KevinEady as a triager (Chengzhong Wu) [#&#8203;54179](https://github.com/nodejs/node/pull/54179) - \[[`24976bfba0`](https://github.com/nodejs/node/commit/24976bfba0)] - **doc**: add esm examples to node:console (Alfredo González) [#&#8203;54108](https://github.com/nodejs/node/pull/54108) - \[[`4e7edc40f7`](https://github.com/nodejs/node/commit/4e7edc40f7)] - **doc**: fix sea assets example (Sadzurami) [#&#8203;54192](https://github.com/nodejs/node/pull/54192) - \[[`322b5d91e1`](https://github.com/nodejs/node/commit/322b5d91e1)] - **doc**: add links to security steward companies (Aviv Keller) [#&#8203;52981](https://github.com/nodejs/node/pull/52981) - \[[`6ab271510e`](https://github.com/nodejs/node/commit/6ab271510e)] - **doc**: move `onread` option from `socket.connect()` to `new net.socket()` (sendoru) [#&#8203;54194](https://github.com/nodejs/node/pull/54194) - \[[`39c30ea08f`](https://github.com/nodejs/node/commit/39c30ea08f)] - **doc**: move release key for Myles Borins (Richard Lau) [#&#8203;54059](https://github.com/nodejs/node/pull/54059) - \[[`e9fc54804a`](https://github.com/nodejs/node/commit/e9fc54804a)] - **doc**: refresh instructions for building node from source (Liran Tal) [#&#8203;53768](https://github.com/nodejs/node/pull/53768) - \[[`f131dc625a`](https://github.com/nodejs/node/commit/f131dc625a)] - **doc**: add documentation for blob.bytes() method (jaexxin) [#&#8203;54114](https://github.com/nodejs/node/pull/54114) - \[[`8d41bb900b`](https://github.com/nodejs/node/commit/8d41bb900b)] - **doc**: add missing new lines to custom test reporter examples (Eddie Abbondanzio) [#&#8203;54152](https://github.com/nodejs/node/pull/54152) - \[[`2acaeaba77`](https://github.com/nodejs/node/commit/2acaeaba77)] - **doc**: update list of Triagers on the `README.md` (Antoine du Hamel) [#&#8203;54138](https://github.com/nodejs/node/pull/54138) - \[[`fff8eb2792`](https://github.com/nodejs/node/commit/fff8eb2792)] - **doc**: expand troubleshooting section (Liran Tal) [#&#8203;53808](https://github.com/nodejs/node/pull/53808) - \[[`402121520f`](https://github.com/nodejs/node/commit/402121520f)] - **doc**: clarify `useCodeCache` setting for cross-platform SEA generation (Yelim Koo) [#&#8203;53994](https://github.com/nodejs/node/pull/53994) - \[[`272484b8b2`](https://github.com/nodejs/node/commit/272484b8b2)] - **doc**: test for cli options (Aras Abbasi) [#&#8203;51623](https://github.com/nodejs/node/pull/51623) - \[[`c4d0ca4710`](https://github.com/nodejs/node/commit/c4d0ca4710)] - **doc, build**: fixup build docs (Aviv Keller) [#&#8203;54899](https://github.com/nodejs/node/pull/54899) - \[[`2e3e17748b`](https://github.com/nodejs/node/commit/2e3e17748b)] - **doc, child_process**: add esm snippets (Aviv Keller) [#&#8203;53616](https://github.com/nodejs/node/pull/53616) - \[[`c40b4b4f27`](https://github.com/nodejs/node/commit/c40b4b4f27)] - **doc, meta**: fix broken link in `onboarding.md` (Aviv Keller) [#&#8203;54886](https://github.com/nodejs/node/pull/54886) - \[[`beff587b94`](https://github.com/nodejs/node/commit/beff587b94)] - **doc, meta**: add missing `,` to `BUILDING.md` (Aviv Keller) [#&#8203;54409](https://github.com/nodejs/node/pull/54409) - \[[`c114585430`](https://github.com/nodejs/node/commit/c114585430)] - **doc, meta**: replace command with link to keys (Aviv Keller) [#&#8203;53745](https://github.com/nodejs/node/pull/53745) - \[[`0843077a99`](https://github.com/nodejs/node/commit/0843077a99)] - **doc, test**: simplify test README table (Aviv Keller) [#&#8203;53971](https://github.com/nodejs/node/pull/53971) - \[[`2df7bc0e32`](https://github.com/nodejs/node/commit/2df7bc0e32)] - **doc,tools**: enforce use of `node:` prefix (Antoine du Hamel) [#&#8203;53950](https://github.com/nodejs/node/pull/53950) - \[[`0dd4639391`](https://github.com/nodejs/node/commit/0dd4639391)] - **esm**: fix support for `URL` instances in `import.meta.resolve` (Antoine du Hamel) [#&#8203;54690](https://github.com/nodejs/node/pull/54690) - \[[`f0c55e206d`](https://github.com/nodejs/node/commit/f0c55e206d)] - **fs**: refactor rimraf to avoid using primordials (Yagiz Nizipli) [#&#8203;54834](https://github.com/nodejs/node/pull/54834) - \[[`f568384bbd`](https://github.com/nodejs/node/commit/f568384bbd)] - **fs**: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) [#&#8203;54369](https://github.com/nodejs/node/pull/54369) - \[[`2fb7cc9715`](https://github.com/nodejs/node/commit/2fb7cc9715)] - **fs**: fix typings (Yagiz Nizipli) [#&#8203;53626](https://github.com/nodejs/node/pull/53626) - \[[`596940cfa0`](https://github.com/nodejs/node/commit/596940cfa0)] - **http**: reduce likelihood of race conditions on keep-alive timeout (jazelly) [#&#8203;54863](https://github.com/nodejs/node/pull/54863) - \[[`6e13a7ba02`](https://github.com/nodejs/node/commit/6e13a7ba02)] - **http**: remove prototype primordials (Antoine du Hamel) [#&#8203;53698](https://github.com/nodejs/node/pull/53698) - \[[`99f96eb3f7`](https://github.com/nodejs/node/commit/99f96eb3f7)] - **http2**: remove prototype primordials (Antoine du Hamel) [#&#8203;53696](https://github.com/nodejs/node/pull/53696) - \[[`41f5eacc1a`](https://github.com/nodejs/node/commit/41f5eacc1a)] - **https**: only use default ALPNProtocols when appropriate (Brian White) [#&#8203;54411](https://github.com/nodejs/node/pull/54411) - \[[`59a39520e1`](https://github.com/nodejs/node/commit/59a39520e1)] - **(SEMVER-MINOR)** **inspector**: support `Network.loadingFailed` event (Kohei Ueno) [#&#8203;54246](https://github.com/nodejs/node/pull/54246) - \[[`d1007fb1a9`](https://github.com/nodejs/node/commit/d1007fb1a9)] - **inspector**: provide detailed info to fix DevTools frontend errors (Kohei Ueno) [#&#8203;54156](https://github.com/nodejs/node/pull/54156) - \[[`3b93507949`](https://github.com/nodejs/node/commit/3b93507949)] - **(SEMVER-MINOR)** **inspector**: add initial support for network inspection (Kohei Ueno) [#&#8203;53593](https://github.com/nodejs/node/pull/53593) - \[[`fc37b801c8`](https://github.com/nodejs/node/commit/fc37b801c8)] - **lib**: remove unnecessary async (jakecastelli) [#&#8203;54829](https://github.com/nodejs/node/pull/54829) - \[[`d86f24787b`](https://github.com/nodejs/node/commit/d86f24787b)] - **lib**: make WeakRef safe in abort_controller (jazelly) [#&#8203;54791](https://github.com/nodejs/node/pull/54791) - \[[`77c59224e5`](https://github.com/nodejs/node/commit/77c59224e5)] - **lib**: add note about removing `node:sys` module (Rafael Gonzaga) [#&#8203;54743](https://github.com/nodejs/node/pull/54743) - \[[`b8c06dce02`](https://github.com/nodejs/node/commit/b8c06dce02)] - **lib**: ensure no holey array in fixed_queue (Jason Zhang) [#&#8203;54537](https://github.com/nodejs/node/pull/54537) - \[[`b85c8ce1fc`](https://github.com/nodejs/node/commit/b85c8ce1fc)] - **lib**: refactor SubtleCrypto experimental warnings (Filip Skokan) [#&#8203;54620](https://github.com/nodejs/node/pull/54620) - \[[`e84812c1b5`](https://github.com/nodejs/node/commit/e84812c1b5)] - **lib**: respect terminal capabilities on styleText (Rafael Gonzaga) [#&#8203;54389](https://github.com/nodejs/node/pull/54389) - \[[`c004abaf17`](https://github.com/nodejs/node/commit/c004abaf17)] - **lib**: replace spread operator with primordials function (YoonSoo_Shin) [#&#8203;54053](https://github.com/nodejs/node/pull/54053) - \[[`b79aeabc4d`](https://github.com/nodejs/node/commit/b79aeabc4d)] - **lib**: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) [#&#8203;54258](https://github.com/nodejs/node/pull/54258) - \[[`f4085363c6`](https://github.com/nodejs/node/commit/f4085363c6)] - **lib**: fix unhandled errors in webstream adapters (Fedor Indutny) [#&#8203;54206](https://github.com/nodejs/node/pull/54206) - \[[`1ad857e748`](https://github.com/nodejs/node/commit/1ad857e748)] - **lib**: fix typos in comments within internal/streams (YoonSoo_Shin) [#&#8203;54093](https://github.com/nodejs/node/pull/54093) - \[[`02b36cbd2d`](https://github.com/nodejs/node/commit/02b36cbd2d)] - **(SEMVER-MINOR)** **lib**: add EventSource Client (Aras Abbasi) [#&#8203;51575](https://github.com/nodejs/node/pull/51575) - \[[`afbf2c0530`](https://github.com/nodejs/node/commit/afbf2c0530)] - **lib,permission**: support Buffer to permission.has (Rafael Gonzaga) [#&#8203;54104](https://github.com/nodejs/node/pull/54104) - \[[`54af47395d`](https://github.com/nodejs/node/commit/54af47395d)] - **meta**: bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 (dependabot\[bot]) [#&#8203;54820](https://github.com/nodejs/node/pull/54820) - \[[`a0c10f2ed9`](https://github.com/nodejs/node/commit/a0c10f2ed9)] - **meta**: add `Windows ARM64` to flaky-tests list (Aviv Keller) [#&#8203;54693](https://github.com/nodejs/node/pull/54693) - \[[`27b06880e1`](https://github.com/nodejs/node/commit/27b06880e1)] - **meta**: bump actions/setup-python from 5.1.1 to 5.2.0 (Rich Trott) [#&#8203;54691](https://github.com/nodejs/node/pull/54691) - \[[`8747af1037`](https://github.com/nodejs/node/commit/8747af1037)] - **meta**: update sccache to v0.8.1 (Aviv Keller) [#&#8203;54720](https://github.com/nodejs/node/pull/54720) - \[[`3f753d87a6`](https://github.com/nodejs/node/commit/3f753d87a6)] - **meta**: bump step-security/harden-runner from 2.9.0 to 2.9.1 (dependabot\[bot]) [#&#8203;54704](https://github.com/nodejs/node/pull/54704) - \[[`6f103ae25d`](https://github.com/nodejs/node/commit/6f103ae25d)] - **meta**: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot\[bot]) [#&#8203;54703](https://github.com/nodejs/node/pull/54703) - \[[`3e6a9bb04e`](https://github.com/nodejs/node/commit/3e6a9bb04e)] - **meta**: bump github/codeql-action from 3.25.15 to 3.26.6 (dependabot\[bot]) [#&#8203;54702](https://github.com/nodejs/node/pull/54702) - \[[`c666ebc4e4`](https://github.com/nodejs/node/commit/c666ebc4e4)] - **meta**: fix links in `SECURITY.md` (Aviv Keller) [#&#8203;54696](https://github.com/nodejs/node/pull/54696) - \[[`4d361b3bed`](https://github.com/nodejs/node/commit/4d361b3bed)] - **meta**: fix `contributing` codeowners (Aviv Keller) [#&#8203;54641](https://github.com/nodejs/node/pull/54641) - \[[`36931aa183`](https://github.com/nodejs/node/commit/36931aa183)] - **meta**: remind users to use a supported version in bug reports (Aviv Keller) [#&#8203;54481](https://github.com/nodejs/node/pull/54481) - \[[`cf283d9ca7`](https://github.com/nodejs/node/commit/cf283d9ca7)] - **meta**: run coverage-windows when `vcbuild.bat` updated (Aviv Keller) [#&#8203;54412](https://github.com/nodejs/node/pull/54412) - \[[`67ca397c9f`](https://github.com/nodejs/node/commit/67ca397c9f)] - **meta**: add test-permission-\* CODEOWNERS (Rafael Gonzaga) [#&#8203;54267](https://github.com/nodejs/node/pull/54267) - \[[`b61a2f5b79`](https://github.com/nodejs/node/commit/b61a2f5b79)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;54210](https://github.com/nodejs/node/pull/54210) - \[[`dd8ab83667`](https://github.com/nodejs/node/commit/dd8ab83667)] - **meta**: add module label for the lib/internal/modules folder (Aviv Keller) [#&#8203;52858](https://github.com/nodejs/node/pull/52858) - \[[`db78978d17`](https://github.com/nodejs/node/commit/db78978d17)] - **meta**: bump `actions/upload-artifact` from 4.3.3 to 4.3.4 (dependabot\[bot]) [#&#8203;54166](https://github.com/nodejs/node/pull/54166) - \[[`ca808dd9e5`](https://github.com/nodejs/node/commit/ca808dd9e5)] - **meta**: bump `actions/download-artifact` from 4.1.7 to 4.1.8 (dependabot\[bot]) [#&#8203;54167](https://github.com/nodejs/node/pull/54167) - \[[`a35d980146`](https://github.com/nodejs/node/commit/a35d980146)] - **meta**: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot\[bot]) [#&#8203;54165](https://github.com/nodejs/node/pull/54165) - \[[`3a103c3a17`](https://github.com/nodejs/node/commit/3a103c3a17)] - **meta**: bump `step-security/harden-runner` from 2.8.1 to 2.9.0 (dependabot\[bot]) [#&#8203;54169](https://github.com/nodejs/node/pull/54169) - \[[`775ebbe0e8`](https://github.com/nodejs/node/commit/775ebbe0e8)] - **meta**: bump `actions/setup-node` from 4.0.2 to 4.0.3 (dependabot\[bot]) [#&#8203;54170](https://github.com/nodejs/node/pull/54170) - \[[`7d5dd6f1d1`](https://github.com/nodejs/node/commit/7d5dd6f1d1)] - **meta**: bump `github/codeql-action` from 3.25.11 to 3.25.15 (dependabot\[bot]) [#&#8203;54168](https://github.com/nodejs/node/pull/54168) - \[[`80dd38dde3`](https://github.com/nodejs/node/commit/80dd38dde3)] - **meta**: bump `ossf/scorecard-action` from 2.3.3 to 2.4.0 (dependabot\[bot]) [#&#8203;54171](https://github.com/nodejs/node/pull/54171) - \[[`90b632ee02`](https://github.com/nodejs/node/commit/90b632ee02)] - **module**: warn on detection in typeless package (Geoffrey Booth) [#&#8203;52168](https://github.com/nodejs/node/pull/52168) - \[[`3011927aab`](https://github.com/nodejs/node/commit/3011927aab)] - **node-api**: add external buffer creation benchmark (Chengzhong Wu) [#&#8203;54877](https://github.com/nodejs/node/pull/54877) - \[[`7611093e11`](https://github.com/nodejs/node/commit/7611093e11)] - **node-api**: add support for UTF-8 and Latin-1 property keys (Mert Can Altin) [#&#8203;52984](https://github.com/nodejs/node/pull/52984) - \[[`d65a8f377c`](https://github.com/nodejs/node/commit/d65a8f377c)] - **node-api**: remove RefBase and CallbackWrapper (Vladimir Morozov) [#&#8203;53590](https://github.com/nodejs/node/pull/53590) - \[[`309cb1cbd2`](https://github.com/nodejs/node/commit/309cb1cbd2)] - **path**: remove `StringPrototypeCharCodeAt` from `posix.extname` (Aviv Keller) [#&#8203;54546](https://github.com/nodejs/node/pull/54546) - \[[`2859b4ba9a`](https://github.com/nodejs/node/commit/2859b4ba9a)] - **path**: change `posix.join` to use array (Wiyeong Seo) [#&#8203;54331](https://github.com/nodejs/node/pull/54331) - \[[`c61cee2138`](https://github.com/nodejs/node/commit/c61cee2138)] - **path**: fix relative on Windows (Hüseyin Açacak) [#&#8203;53991](https://github.com/nodejs/node/pull/53991) - \[[`329be5cc35`](https://github.com/nodejs/node/commit/329be5cc35)] - **path**: use the correct name in `validateString` (Benjamin Pasero) [#&#8203;53669](https://github.com/nodejs/node/pull/53669) - \[[`a9837267cb`](https://github.com/nodejs/node/commit/a9837267cb)] - **repl**: avoid interpreting 'npm' as a command when errors are recoverable (Shima Ryuhei) [#&#8203;54848](https://github.com/nodejs/node/pull/54848) - \[[`d6a2317961`](https://github.com/nodejs/node/commit/d6a2317961)] - **repl**: doc-deprecate instantiating `node:repl` classes without `new` (Aviv Keller) [#&#8203;54842](https://github.com/nodejs/node/pull/54842) - \[[`7f09d983f3`](https://github.com/nodejs/node/commit/7f09d983f3)] - **sea**: don't set code cache flags when snapshot is used (Joyee Cheung) [#&#8203;54120](https://github.com/nodejs/node/pull/54120) - \[[`85542b094c`](https://github.com/nodejs/node/commit/85542b094c)] - **src**: add Cleanable class to Environment (Gabriel Schulhof) [#&#8203;54880](https://github.com/nodejs/node/pull/54880) - \[[`8422064127`](https://github.com/nodejs/node/commit/8422064127)] - **src**: remove redundant AESCipherMode (Tobias Nießen) [#&#8203;54438](https://github.com/nodejs/node/pull/54438) - \[[`342c32483a`](https://github.com/nodejs/node/commit/342c32483a)] - **src**: handle errors correctly in `permission.cc` (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541) - \[[`90ff714699`](https://github.com/nodejs/node/commit/90ff714699)] - **src**: return `v8::Object` from error constructors (Michaël Zasso) [#&#8203;54541](https://github.com/nodejs/node/pull/54541) - \[[`872856cfcb`](https://github.com/nodejs/node/commit/872856cfcb)] - **src**: improve `buffer.transcode` performance (Yagiz Nizipli) [#&#8203;54153](https://github.com/nodejs/node/pull/54153) - \[[`91936ebd12`](https://github.com/nodejs/node/commit/91936ebd12)] - **src**: skip inspector wait in internal workers (Chengzhong Wu) [#&#8203;54219](https://github.com/nodejs/node/pull/54219) - \[[`9759049427`](https://github.com/nodejs/node/commit/9759049427)] - **src**: account for OpenSSL unexpected version (Shelley Vohr) [#&#8203;54038](https://github.com/nodejs/node/pull/54038) - \[[`87167fa248`](https://github.com/nodejs/node/commit/87167fa248)] - **src**: use `args.This()` instead of `Holder` (Michaël Zasso) [#&#8203;53474](https://github.com/nodejs/node/pull/53474) - \[[`b05c56e4be`](https://github.com/nodejs/node/commit/b05c56e4be)] - **src**: simplify `size() == 0` checks (Yagiz Nizipli) [#&#8203;53440](https://github.com/nodejs/node/pull/53440) - \[[`d53e53699c`](https://github.com/nodejs/node/commit/d53e53699c)] - **src**: fix execArgv in worker (theanarkh) [#&#8203;53029](https://github.com/nodejs/node/pull/53029) - \[[`21776a34b5`](https://github.com/nodejs/node/commit/21776a34b5)] - **src**: make sure pass the `argv` to worker threads (theanarkh) [#&#8203;52827](https://github.com/nodejs/node/pull/52827) - \[[`3aaae68ec8`](https://github.com/nodejs/node/commit/3aaae68ec8)] - **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael Gonzaga) [#&#8203;54413](https://github.com/nodejs/node/pull/54413) - \[[`ef1c0d7def`](https://github.com/nodejs/node/commit/ef1c0d7def)] - **src,permission**: handle process.chdir on pm (Rafael Gonzaga) [#&#8203;53175](https://github.com/nodejs/node/pull/53175) - \[[`0c32918eef`](https://github.com/nodejs/node/commit/0c32918eef)] - **stream**: change stream to use index instead of `for...of` (Wiyeong Seo) [#&#8203;54474](https://github.com/nodejs/node/pull/54474) - \[[`337cd412b5`](https://github.com/nodejs/node/commit/337cd412b5)] - **stream**: make checking pendingcb on WritableStream backward compatible (jakecastelli) [#&#8203;54142](https://github.com/nodejs/node/pull/54142) - \[[`713fc0c9eb`](https://github.com/nodejs/node/commit/713fc0c9eb)] - **stream**: throw TypeError when criteria fulfilled in getIterator (jakecastelli) [#&#8203;53825](https://github.com/nodejs/node/pull/53825) - \[[`9686153616`](https://github.com/nodejs/node/commit/9686153616)] - **stream**: fix util.inspect for compression/decompressionStream (Mert Can Altin) [#&#8203;52283](https://github.com/nodejs/node/pull/52283) - \[[`76110b0b43`](https://github.com/nodejs/node/commit/76110b0b43)] - **test**: adjust test-tls-junk-server for OpenSSL32 (Michael Dawson) [#&#8203;54926](https://github.com/nodejs/node/pull/54926) - \[[`4092889371`](https://github.com/nodejs/node/commit/4092889371)] - **test**: adjust tls test for OpenSSL32 (Michael Dawson) [#&#8203;54909](https://github.com/nodejs/node/pull/54909) - \[[`5d48543a16`](https://github.com/nodejs/node/commit/5d48543a16)] - **test**: fix test-http2-socket-close.js (Hüseyin Açacak) [#&#8203;54900](https://github.com/nodejs/node/pull/54900) - \[[`8048c2eaed`](https://github.com/nodejs/node/commit/8048c2eaed)] - **test**: improve test-internal-fs-syncwritestream (Sunghoon) [#&#8203;54671](https://github.com/nodejs/node/pull/54671) - \[[`597bc14c90`](https://github.com/nodejs/node/commit/597bc14c90)] - **test**: deflake test-dns (Luigi Pinca) [#&#8203;54902](https://github.com/nodejs/node/pull/54902) - \[[`a9fc8d9cfa`](https://github.com/nodejs/node/commit/a9fc8d9cfa)] - **test**: fix test test-tls-dhe for OpenSSL32 (Michael Dawson) [#&#8203;54903](https://github.com/nodejs/node/pull/54903) - \[[`1b3b4f4a9f`](https://github.com/nodejs/node/commit/1b3b4f4a9f)] - **test**: use correct file naming syntax for `util-parse-env` (Aviv Keller) [#&#8203;53705](https://github.com/nodejs/node/pull/53705) - \[[`9db46b5ea3`](https://github.com/nodejs/node/commit/9db46b5ea3)] - **test**: add missing await (Luigi Pinca) [#&#8203;54828](https://github.com/nodejs/node/pull/54828) - \[[`124f715679`](https://github.com/nodejs/node/commit/124f715679)] - **test**: move more url tests to `node:test` (Yagiz Nizipli) [#&#8203;54636](https://github.com/nodejs/node/pull/54636) - \[[`d2ec96150a`](https://github.com/nodejs/node/commit/d2ec96150a)] - **test**: strip color chars in `test-runner-run` (Giovanni Bucci) [#&#8203;54552](https://github.com/nodejs/node/pull/54552) - \[[`747d9ae72e`](https://github.com/nodejs/node/commit/747d9ae72e)] - **test**: deflake test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54872](https://github.com/nodejs/node/pull/54872) - \[[`7b7687eadc`](https://github.com/nodejs/node/commit/7b7687eadc)] - **test**: remove dead code in test-http2-misbehaving-multiplex (Luigi Pinca) [#&#8203;54860](https://github.com/nodejs/node/pull/54860) - \[[`60f5f5426d`](https://github.com/nodejs/node/commit/60f5f5426d)] - **test**: reduce test-esm-loader-hooks-inspect-wait flakiness (Luigi Pinca) [#&#8203;54827](https://github.com/nodejs/node/pull/54827) - \[[`f5e77385c5`](https://github.com/nodejs/node/commit/f5e77385c5)] - **test**: reduce the allocation size in test-worker-arraybuffer-zerofill (James M Snell) [#&#8203;54839](https://github.com/nodejs/node/pull/54839) - \[[`f26cf09d6b`](https://github.com/nodejs/node/commit/f26cf09d6b)] - **test**: fix test-tls-client-mindhsize for OpenSSL32 (Michael Dawson) [#&#8203;54739](https://github.com/nodejs/node/pull/54739) - \[[`c6f9afec94`](https://github.com/nodejs/node/commit/c6f9afec94)] - **test**: use platform timeout (jakecastelli) [#&#8203;54591](https://github.com/nodejs/node/pull/54591) - \[[`8f49b7c3ee`](https://github.com/nodejs/node/commit/8f49b7c3ee)] - **test**: reduce fs calls in test-fs-existssync-false (Yagiz Nizipli) [#&#8203;54815](https://github.com/nodejs/node/pull/54815) - \[[`e2c69c9844`](https://github.com/nodejs/node/commit/e2c69c9844)] - **test**: move test-http-server-request-timeouts-mixed (James M Snell) [#&#8203;54841](https://github.com/nodejs/node/pull/54841) - \[[`f7af8ca021`](https://github.com/nodejs/node/commit/f7af8ca021)] - **test**: fix volatile for CauseSegfault with clang (Ivan Trubach) [#&#8203;54325](https://github.com/nodejs/node/pull/54325) - \[[`d1bae5ede5`](https://github.com/nodejs/node/commit/d1bae5ede5)] - **test**: set `test-worker-arraybuffer-zerofill` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`b5b5cc811f`](https://github.com/nodejs/node/commit/b5b5cc811f)] - **test**: set `test-http-server-request-timeouts-mixed` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`9808feecac`](https://github.com/nodejs/node/commit/9808feecac)] - **test**: set `test-single-executable-application-empty` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`97d41c62e3`](https://github.com/nodejs/node/commit/97d41c62e3)] - **test**: set `test-macos-app-sandbox` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`57ae68001c`](https://github.com/nodejs/node/commit/57ae68001c)] - **test**: set `test-fs-utimes` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`38afc4da03`](https://github.com/nodejs/node/commit/38afc4da03)] - **test**: set `test-runner-run-watch` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`68e19748a6`](https://github.com/nodejs/node/commit/68e19748a6)] - **test**: set `test-writewrap` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`e8cb03d530`](https://github.com/nodejs/node/commit/e8cb03d530)] - **test**: set `test-async-context-frame` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`3a56517220`](https://github.com/nodejs/node/commit/3a56517220)] - **test**: set `test-esm-loader-hooks-inspect-wait` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`c98cd1227d`](https://github.com/nodejs/node/commit/c98cd1227d)] - **test**: set `test-http2-large-file` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`16176a6323`](https://github.com/nodejs/node/commit/16176a6323)] - **test**: set `test-runner-watch-mode-complex` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`eed0537533`](https://github.com/nodejs/node/commit/eed0537533)] - **test**: set `test-performance-function` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`d0f208d2e9`](https://github.com/nodejs/node/commit/d0f208d2e9)] - **test**: set `test-debugger-heap-profiler` as flaky (Yagiz Nizipli) [#&#8203;54802](https://github.com/nodejs/node/pull/54802) - \[[`68891a6363`](https://github.com/nodejs/node/commit/68891a6363)] - **test**: fix `test-process-load-env-file` when path contains `'` (Antoine du Hamel) [#&#8203;54511](https://github.com/nodejs/node/pull/54511) - \[[`4f82673139`](https://github.com/nodejs/node/commit/4f82673139)] - **test**: refactor fs-watch tests due to macOS issue (Santiago Gimeno) [#&#8203;54498](https://github.com/nodejs/node/pull/54498) - \[[`3606c53fdc`](https://github.com/nodejs/node/commit/3606c53fdc)] - **test**: refactor `test-esm-type-field-errors` (Giovanni Bucci) [#&#8203;54368](https://github.com/nodejs/node/pull/54368) - \[[`99566aea97`](https://github.com/nodejs/node/commit/99566aea97)] - **test**: improve output of child process utilities (Joyee Cheung) [#&#8203;54622](https://github.com/nodejs/node/pull/54622) - \[[`ed2377c1a1`](https://github.com/nodejs/node/commit/ed2377c1a1)] - **test**: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) [#&#8203;54610](https://github.com/nodejs/node/pull/54610) - \[[`d2a7e45946`](https://github.com/nodejs/node/commit/d2a7e45946)] - **test**: update TLS test for OpenSSL 3.2 (Richard Lau) [#&#8203;54612](https://github.com/nodejs/node/pull/54612) - \[[`a50bbca78a`](https://github.com/nodejs/node/commit/a50bbca78a)] - **test**: increase key size for ca2-cert.pem (Michael Dawson) [#&#8203;54599](https://github.com/nodejs/node/pull/54599) - \[[`d7ac3262de`](https://github.com/nodejs/node/commit/d7ac3262de)] - **test**: update test-assert-typedarray-deepequal to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585) - \[[`916a73cd8f`](https://github.com/nodejs/node/commit/916a73cd8f)] - **test**: update test-assert to use node:test (James M Snell) [#&#8203;54585](https://github.com/nodejs/node/pull/54585) - \[[`10bea1cef5`](https://github.com/nodejs/node/commit/10bea1cef5)] - **test**: merge ongc and gcutil into gc.js (tannal) [#&#8203;54355](https://github.com/nodejs/node/pull/54355) - \[[`f145982436`](https://github.com/nodejs/node/commit/f145982436)] - **test**: move a couple of tests over to using node:test (James M Snell) [#&#8203;54582](https://github.com/nodejs/node/pull/54582) - \[[`229e102d20`](https://github.com/nodejs/node/commit/229e102d20)] - **test**: fix embedding test for Windows (Vladimir Morozov) [#&#8203;53659](https://github.com/nodejs/node/pull/53659) - \[[`fcf82adef0`](https://github.com/nodejs/node/commit/fcf82adef0)] - **test**: use relative paths in test-cli-permission tests (sendoru) [#&#8203;54188](https://github.com/nodejs/node/pull/54188) - \[[`4c219b0235`](https://github.com/nodejs/node/commit/4c219b0235)] - **test**: fix timeout not being cleared (Isaac-yz-Liu) [#&#8203;54242](https://github.com/nodejs/node/pull/54242) - \[[`e446517a41`](https://github.com/nodejs/node/commit/e446517a41)] - **test**: refactor `test-runner-module-mocking` (Antoine du Hamel) [#&#8203;54233](https://github.com/nodejs/node/pull/54233) - \[[`782a6a05ef`](https://github.com/nodejs/node/commit/782a6a05ef)] - **test**: use assert.{s,deepS}trictEqual() (Luigi Pinca) [#&#8203;54208](https://github.com/nodejs/node/pull/54208) - \[[`d478db7adc`](https://github.com/nodejs/node/commit/d478db7adc)] - **test**: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) [#&#8203;54115](https://github.com/nodejs/node/pull/54115) - \[[`c8587ec90d`](https://github.com/nodejs/node/commit/c8587ec90d)] - **test**: update wpt test for streams (devstone) [#&#8203;54129](https://github.com/nodejs/node/pull/54129) - \[[`dbc26c2971`](https://github.com/nodejs/node/commit/dbc26c2971)] - **test**: fix typo in test (Sonny) [#&#8203;54137](https://github.com/nodejs/node/pull/54137) - \[[`17b7ec4df3`](https://github.com/nodejs/node/commit/17b7ec4df3)] - **test**: add initial pull delay and prototype pollution prevention tests (Sonny) [#&#8203;54061](https://github.com/nodejs/node/pull/54061) - \[[`931ff4367a`](https://github.com/nodejs/node/commit/931ff4367a)] - **test**: update wpt test (Mert Can Altin) [#&#8203;53814](https://github.com/nodejs/node/pull/53814) - \[[`1c1bd7ce52`](https://github.com/nodejs/node/commit/1c1bd7ce52)] - **test**: update `url` web-platform tests (Yagiz Nizipli) [#&#8203;53472](https://github.com/nodejs/node/pull/53472) - \[[`b048eaea5c`](https://github.com/nodejs/node/commit/b048eaea5c)] - **test_runner**: reimplement `assert.ok` to allow stack parsing (Aviv Keller) [#&#8203;54776](https://github.com/nodejs/node/pull/54776) - \[[`c981e61155`](https://github.com/nodejs/node/commit/c981e61155)] - **test_runner**: improve code coverage cleanup (Colin Ihrig) [#&#8203;54856](https://github.com/nodejs/node/pull/54856) - \[[`4f421b37da`](https://github.com/nodejs/node/commit/4f421b37da)] - **test_runner**: use validateStringArray for `timers.enable()` (Deokjin Kim) [#&#8203;49534](https://github.com/nodejs/node/pull/49534) - \[[`27da75ae22`](https://github.com/nodejs/node/commit/27da75ae22)] - **test_runner**: do not expose internal loader (Antoine du Hamel) [#&#8203;54106](https://github.com/nodejs/node/pull/54106) - \[[`56cbc80d28`](https://github.com/nodejs/node/commit/56cbc80d28)] - **test_runner**: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) [#&#8203;53846](https://github.com/nodejs/node/pull/53846) - \[[`8fd951f7c7`](https://github.com/nodejs/node/commit/8fd951f7c7)] - **test_runner**: remove outdated comment (Colin Ihrig) [#&#8203;54146](https://github.com/nodejs/node/pull/54146) - \[[`65b6fec3ba`](https://github.com/nodejs/node/commit/65b6fec3ba)] - **test_runner**: run after hooks even if test is aborted (Colin Ihrig) [#&#8203;54151](https://github.com/nodejs/node/pull/54151) - \[[`c0b4c8284c`](https://github.com/nodejs/node/commit/c0b4c8284c)] - **test_runner**: added colors to dot reporter (Giovanni) [#&#8203;53450](https://github.com/nodejs/node/pull/53450) - \[[`3000e5df91`](https://github.com/nodejs/node/commit/3000e5df91)] - **test_runner**: support module detection in module mocks (Geoffrey Booth) [#&#8203;53642](https://github.com/nodejs/node/pull/53642) - \[[`f789f4c92d`](https://github.com/nodejs/node/commit/f789f4c92d)] - **(SEMVER-MINOR)** **test_runner**: support module mocking (Colin Ihrig) [#&#8203;52848](https://github.com/nodejs/node/pull/52848) - \[[`82d1c36f51`](https://github.com/nodejs/node/commit/82d1c36f51)] - **test_runner**: display failed test stack trace with dot reporter (Mihir Bhansali) [#&#8203;52655](https://github.com/nodejs/node/pull/52655) - \[[`5358601e31`](https://github.com/nodejs/node/commit/5358601e31)] - **timers**: avoid generating holey internal arrays (Gürgün Dayıoğlu) [#&#8203;54771](https://github.com/nodejs/node/pull/54771) - \[[`b6ed97c66d`](https://github.com/nodejs/node/commit/b6ed97c66d)] - **timers**: document ref option for scheduler.wait (Paolo Insogna) [#&#8203;54605](https://github.com/nodejs/node/pull/54605) - \[[`f524b8a28b`](https://github.com/nodejs/node/commit/f524b8a28b)] - **timers**: fix validation (Paolo Insogna) [#&#8203;54404](https://github.com/nodejs/node/pull/54404) - \[[`bc020f7cb3`](https://github.com/nodejs/node/commit/bc020f7cb3)] - **(SEMVER-MINOR)** **tls**: add `allowPartialTrustChain` flag (Anna Henningsen) [#&#8203;54790](https://github.com/nodejs/node/pull/54790) - \[[`d0e6f9168e`](https://github.com/nodejs/node/commit/d0e6f9168e)] - **tls**: remove prototype primordials (Antoine du Hamel) [#&#8203;53699](https://github.com/nodejs/node/pull/53699) - \[[`f5c65d0be6`](https://github.com/nodejs/node/commit/f5c65d0be6)] - **tools**: add readability/fn_size to filter (Rafael Gonzaga) [#&#8203;54744](https://github.com/nodejs/node/pull/54744) - \[[`a47bb9b2c2`](https://github.com/nodejs/node/commit/a47bb9b2c2)] - **tools**: add util scripts to land and rebase PRs (Antoine du Hamel) [#&#8203;54656](https://github.com/nodejs/node/pull/54656) - \[[`fe3155cefa`](https://github.com/nodejs/node/commit/fe3155cefa)] - **tools**: remove readability/fn_size rule (Rafael Gonzaga) [#&#8203;54663](https://github.com/nodejs/node/pull/54663) - \[[`d6b9cc3acd`](https://github.com/nodejs/node/commit/d6b9cc3acd)] - **tools**: remove unused python files (Aviv Keller) [#&#8203;53928](https://github.com/nodejs/node/pull/53928) - \[[`b5fbe9609c`](https://github.com/nodejs/node/commit/b5fbe9609c)] - **tools**: remove header from c-ares license (Aviv Keller) [#&#8203;54335](https://github.com/nodejs/node/pull/54335) - \[[`a7fdc608c6`](https://github.com/nodejs/node/commit/a7fdc608c6)] - **tools**: add find pyenv path on windows (Marco Ippolito) [#&#8203;54314](https://github.com/nodejs/node/pull/54314) - \[[`f90688cd5b`](https://github.com/nodejs/node/commit/f90688cd5b)] - **tools**: make undici updater build wasm from src (Michael Dawson) [#&#8203;54128](https://github.com/nodejs/node/pull/54128) - \[[`a033dff2f2`](https://github.com/nodejs/node/commit/a033dff2f2)] - **tty**: initialize winSize array with values (Michaël Zasso) [#&#8203;54281](https://github.com/nodejs/node/pull/54281) - \[[`e635e0956c`](https://github.com/nodejs/node/commit/e635e0956c)] - **typings**: fix TypedArray to a global type (1ilsang) [#&#8203;54063](https://github.com/nodejs/node/pull/54063) - \[[`b5bf08f31e`](https://github.com/nodejs/node/commit/b5bf08f31e)] - **typings**: correct param type of `SafePromisePrototypeFinally` (Wuli) [#&#8203;54727](https://github.com/nodejs/node/pull/54727) - \[[`628ae4bde5`](https://github.com/nodejs/node/commit/628ae4bde5)] - **typings**: add util.styleText type definition (Rafael Gonzaga) [#&#8203;54252](https://github.com/nodejs/node/pull/54252) - \[[`cc37401ea5`](https://github.com/nodejs/node/commit/cc37401ea5)] - **typings**: add missing binding function `writeFileUtf8()` (Jungku Lee) [#&#8203;54110](https://github.com/nodejs/node/pull/54110) - \[[`728c3fd6f1`](https://github.com/nodejs/node/commit/728c3fd6f1)] - **url**: modify pathToFileURL to handle extended UNC path (Early Riser) [#&#8203;54262](https://github.com/nodejs/node/pull/54262) - \[[`b25563dfcb`](https://github.com/nodejs/node/commit/b25563dfcb)] - **url**: improve resolveObject with ObjectAssign (Early Riser) [#&#8203;54092](https://github.com/nodejs/node/pull/54092) - \[[`eededd1ca8`](https://github.com/nodejs/node/commit/eededd1ca8)] - **url**: make URL.parse enumerable (Filip Skokan) [#&#8203;53720](https://github.com/nodejs/node/pull/53720) - \[[`4eb0749b6c`](https://github.com/nodejs/node/commit/4eb0749b6c)] - **(SEMVER-MINOR)** **url**: implement parse method for safer URL parsing (Ali Hassan) [#&#8203;52280](https://github.com/nodejs/node/pull/52280) - \[[`9e1c2293bf`](https://github.com/nodejs/node/commit/9e1c2293bf)] - **vm**: harden module type checks (Chengzhong Wu) [#&#8203;52162](https://github.com/nodejs/node/pull/52162) - \[[`2d90340cb3`](https://github.com/nodejs/node/commit/2d90340cb3)] - **(SEMVER-MINOR)** **vm**: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) [#&#8203;54394](https://github.com/nodejs/node/pull/54394) - \[[`4644d05ab5`](https://github.com/nodejs/node/commit/4644d05ab5)] - **zlib**: deprecate instantiating classes without new (Yagiz Nizipli) [#&#8203;54708](https://github.com/nodejs/node/pull/54708) - \[[`ecdf6dd444`](https://github.com/nodejs/node/commit/ecdf6dd444)] - **zlib**: simplify validators (Yagiz Nizipli) [#&#8203;54442](https://github.com/nodejs/node/pull/54442) ### [`v20.17.0`](https://github.com/nodejs/node/releases/tag/v20.17.0): 2024-08-21, Version 20.17.0 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.16.0...v20.17.0) ##### module: support require()ing synchronous ESM graphs This release adds `require()` support for synchronous ESM graphs under the flag `--experimental-require-module`. If `--experimental-require-module` is enabled, and the ECMAScript module being loaded by `require()` meets the following requirements: - Explicitly marked as an ES module with a "type": "module" field in the closest package.json or a .mjs extension. - Fully synchronous (contains no top-level await). `require()` will load the requested module as an ES Module, and return the module name space object. In this case it is similar to dynamic `import()` but is run synchronously and returns the name space object directly. Contributed by Joyee Cheung in [#&#8203;51977](https://github.com/nodejs/node/pull/51977) ##### path: add `matchesGlob` method Glob patterns can now be tested against individual paths via the `path.matchesGlob(path, pattern)` method. Contributed by Aviv Keller in [#&#8203;52881](https://github.com/nodejs/node/pull/52881) ##### stream: expose DuplexPair API The function `duplexPair` returns an array with two items, each being a `Duplex` stream connected to the other side: ```js const [ sideA, sideB ] = duplexPair(); ``` Whatever is written to one stream is made readable on the other. It provides behavior analogous to a network connection, where the data written by the client becomes readable by the server, and vice-versa. Contributed by Austin Wright in [#&#8203;34111](https://github.com/nodejs/node/pull/34111) ##### Other Notable Changes - \[[`8e64c02b19`](https://github.com/nodejs/node/commit/8e64c02b19)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054) - \[[`ae30674991`](https://github.com/nodejs/node/commit/ae30674991)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004) - \[[`4a3ecbfc9b`](https://github.com/nodejs/node/commit/4a3ecbfc9b)] - **(SEMVER-MINOR)** **stream**: implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) [#&#8203;50888](https://github.com/nodejs/node/pull/50888) ##### Commits - \[[`b3a2726cbc`](https://github.com/nodejs/node/commit/b3a2726cbc)] - **assert**: use isError instead of instanceof in innerOk (Pietro Marchini) [#&#8203;53980](https://github.com/nodejs/node/pull/53980) - \[[`c7e4c3daf4`](https://github.com/nodejs/node/commit/c7e4c3daf4)] - **benchmark**: add cpSync benchmark (Yagiz Nizipli) [#&#8203;53612](https://github.com/nodejs/node/pull/53612) - \[[`a52de8c5ff`](https://github.com/nodejs/node/commit/a52de8c5ff)] - **bootstrap**: print `--help` message using `console.log` (Jacob Hummer) [#&#8203;51463](https://github.com/nodejs/node/pull/51463) - \[[`61b90e7c5e`](https://github.com/nodejs/node/commit/61b90e7c5e)] - **build**: update gcovr to 7.2 and codecov config (Benjamin E. Coe) [#&#8203;54019](https://github.com/nodejs/node/pull/54019) - \[[`a9c04eaa27`](https://github.com/nodejs/node/commit/a9c04eaa27)] - **build**: ensure v8\_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) [#&#8203;53884](https://github.com/nodejs/node/pull/53884) - \[[`342a663d7a`](https://github.com/nodejs/node/commit/342a663d7a)] - **build**: trigger coverage ci when updating codecov (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929) - \[[`5727b4d129`](https://github.com/nodejs/node/commit/5727b4d129)] - **build**: update codecov coverage build count (Yagiz Nizipli) [#&#8203;53929](https://github.com/nodejs/node/pull/53929) - \[[`977af25870`](https://github.com/nodejs/node/commit/977af25870)] - **build**: disable test-asan workflow (Michaël Zasso) [#&#8203;53844](https://github.com/nodejs/node/pull/53844) - \[[`04798fb104`](https://github.com/nodejs/node/commit/04798fb104)] - **build**: fix build warning of c-ares under GN build (Cheng) [#&#8203;53750](https://github.com/nodejs/node/pull/53750) - \[[`5ec5e78574`](https://github.com/nodejs/node/commit/5ec5e78574)] - **build**: fix mac build error of c-ares under GN (Cheng) [#&#8203;53687](https://github.com/nodejs/node/pull/53687) - \[[`3d8721f0a4`](https://github.com/nodejs/node/commit/3d8721f0a4)] - **build**: add version-specific library path for AIX (Richard Lau) [#&#8203;53585](https://github.com/nodejs/node/pull/53585) - \[[`ffb0bd344d`](https://github.com/nodejs/node/commit/ffb0bd344d)] - **build, tools**: drop leading `/` from `r2dir` (Richard Lau) [#&#8203;53951](https://github.com/nodejs/node/pull/53951) - \[[`a2d74f4c31`](https://github.com/nodejs/node/commit/a2d74f4c31)] - **build,tools**: simplify upload of shasum signatures (Michaël Zasso) [#&#8203;53892](https://github.com/nodejs/node/pull/53892) - \[[`993bb3b6e7`](https://github.com/nodejs/node/commit/993bb3b6e7)] - **child_process**: fix incomplete prototype pollution hardening (Liran Tal) [#&#8203;53781](https://github.com/nodejs/node/pull/53781) - \[[`137a2e5766`](https://github.com/nodejs/node/commit/137a2e5766)] - **cli**: document `--inspect` port `0` behavior (Aviv Keller) [#&#8203;53782](https://github.com/nodejs/node/pull/53782) - \[[`820e6e1737`](https://github.com/nodejs/node/commit/820e6e1737)] - **cli**: update `node.1` to reflect Atom's sunset (Aviv Keller) [#&#8203;53734](https://github.com/nodejs/node/pull/53734) - \[[`fa0e8d7b3b`](https://github.com/nodejs/node/commit/fa0e8d7b3b)] - **crypto**: avoid std::function (Tobias Nießen) [#&#8203;53683](https://github.com/nodejs/node/pull/53683) - \[[`460240c368`](https://github.com/nodejs/node/commit/460240c368)] - **crypto**: make deriveBits length parameter optional and nullable (Filip Skokan) [#&#8203;53601](https://github.com/nodejs/node/pull/53601) - \[[`ceb1d5e00a`](https://github.com/nodejs/node/commit/ceb1d5e00a)] - **crypto**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53460](https://github.com/nodejs/node/pull/53460) - \[[`44268c27eb`](https://github.com/nodejs/node/commit/44268c27eb)] - **deps**: update corepack to 0.29.3 (Node.js GitHub Bot) [#&#8203;54072](https://github.com/nodejs/node/pull/54072) - \[[`496975ece0`](https://github.com/nodejs/node/commit/496975ece0)] - **deps**: update c-ares to v1.32.3 (Node.js GitHub Bot) [#&#8203;54020](https://github.com/nodejs/node/pull/54020) - \[[`5eea419349`](https://github.com/nodejs/node/commit/5eea419349)] - **deps**: update c-ares to v1.32.2 (Node.js GitHub Bot) [#&#8203;53865](https://github.com/nodejs/node/pull/53865) - \[[`8c8e3688c5`](https://github.com/nodejs/node/commit/8c8e3688c5)] - **deps**: update googletest to [`4b21f1a`](https://github.com/nodejs/node/commit/4b21f1a) (Node.js GitHub Bot) [#&#8203;53842](https://github.com/nodejs/node/pull/53842) - \[[`78f6b34c77`](https://github.com/nodejs/node/commit/78f6b34c77)] - **deps**: update minimatch to 10.0.1 (Node.js GitHub Bot) [#&#8203;53841](https://github.com/nodejs/node/pull/53841) - \[[`398f7acca3`](https://github.com/nodejs/node/commit/398f7acca3)] - **deps**: update corepack to 0.29.2 (Node.js GitHub Bot) [#&#8203;53838](https://github.com/nodejs/node/pull/53838) - \[[`fa8f99d90b`](https://github.com/nodejs/node/commit/fa8f99d90b)] - **deps**: update simdutf to 5.3.0 (Node.js GitHub Bot) [#&#8203;53837](https://github.com/nodejs/node/pull/53837) - \[[`a19b28336b`](https://github.com/nodejs/node/commit/a19b28336b)] - **deps**: update ada to 2.9.0 (Node.js GitHub Bot) [#&#8203;53748](https://github.com/nodejs/node/pull/53748) - \[[`2f66c7e707`](https://github.com/nodejs/node/commit/2f66c7e707)] - **deps**: upgrade npm to 10.8.2 (npm team) [#&#8203;53799](https://github.com/nodejs/node/pull/53799) - \[[`2a2620e7c0`](https://github.com/nodejs/node/commit/2a2620e7c0)] - **deps**: update googletest to [`34ad51b`](https://github.com/nodejs/node/commit/34ad51b) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157) - \[[`c01ce60ce7`](https://github.com/nodejs/node/commit/c01ce60ce7)] - **deps**: update googletest to [`305e5a2`](https://github.com/nodejs/node/commit/305e5a2) (Node.js GitHub Bot) [#&#8203;53157](https://github.com/nodejs/node/pull/53157) - \[[`832328ea01`](https://github.com/nodejs/node/commit/832328ea01)] - **deps**: update c-ares to v1.32.1 (Node.js GitHub Bot) [#&#8203;53753](https://github.com/nodejs/node/pull/53753) - \[[`878e9a4ae7`](https://github.com/nodejs/node/commit/878e9a4ae7)] - **deps**: update minimatch to 9.0.5 (Node.js GitHub Bot) [#&#8203;53646](https://github.com/nodejs/node/pull/53646) - \[[`4647e6b5c5`](https://github.com/nodejs/node/commit/4647e6b5c5)] - **deps**: update c-ares to v1.32.0 (Node.js GitHub Bot) [#&#8203;53722](https://github.com/nodejs/node/pull/53722) - \[[`30310bf887`](https://github.com/nodejs/node/commit/30310bf887)] - **doc**: move numCPUs require to top of file in cluster CJS example (Alfredo González) [#&#8203;53932](https://github.com/nodejs/node/pull/53932) - \[[`36170eddca`](https://github.com/nodejs/node/commit/36170eddca)] - **doc**: update security-release process to automated one (Rafael Gonzaga) [#&#8203;53877](https://github.com/nodejs/node/pull/53877) - \[[`55f5e76ba7`](https://github.com/nodejs/node/commit/55f5e76ba7)] - **doc**: fix typo in technical-priorities.md (YoonSoo_Shin) [#&#8203;54094](https://github.com/nodejs/node/pull/54094) - \[[`1c0ccc0ca8`](https://github.com/nodejs/node/commit/1c0ccc0ca8)] - **doc**: fix typo in diagnostic tooling support tiers document (Taejin Kim) [#&#8203;54058](https://github.com/nodejs/node/pull/54058) - \[[`6a5120ff0f`](https://github.com/nodejs/node/commit/6a5120ff0f)] - **doc**: move GeoffreyBooth to TSC regular member (Geoffrey Booth) [#&#8203;54047](https://github.com/nodejs/node/pull/54047) - \[[`ead05aad2a`](https://github.com/nodejs/node/commit/ead05aad2a)] - **doc**: fix typo in recognizing-contributors (Marco Ippolito) [#&#8203;53990](https://github.com/nodejs/node/pull/53990) - \[[`25e59aebac`](https://github.com/nodejs/node/commit/25e59aebac)] - **doc**: update boxstarter README (Aviv Keller) [#&#8203;53785](https://github.com/nodejs/node/pull/53785) - \[[`a3183fb927`](https://github.com/nodejs/node/commit/a3183fb927)] - **doc**: add info about prefix-only modules to `module.builtinModules` (Grigory) [#&#8203;53954](https://github.com/nodejs/node/pull/53954) - \[[`89599e025f`](https://github.com/nodejs/node/commit/89599e025f)] - **doc**: remove `scroll-behavior: smooth;` (Cloyd Lau) [#&#8203;53942](https://github.com/nodejs/node/pull/53942) - \[[`139c62e40c`](https://github.com/nodejs/node/commit/139c62e40c)] - **doc**: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) [#&#8203;53926](https://github.com/nodejs/node/pull/53926) - \[[`233aba90ea`](https://github.com/nodejs/node/commit/233aba90ea)] - **doc**: update `api_assets` README for new files (Aviv Keller) [#&#8203;53676](https://github.com/nodejs/node/pull/53676) - \[[`44a1cbe98a`](https://github.com/nodejs/node/commit/44a1cbe98a)] - **doc**: add MattiasBuelens to collaborators (Mattias Buelens) [#&#8203;53895](https://github.com/nodejs/node/pull/53895) - \[[`f5280ddbc5`](https://github.com/nodejs/node/commit/f5280ddbc5)] - **doc**: fix casing of GitHub handle for two collaborators (Antoine du Hamel) [#&#8203;53857](https://github.com/nodejs/node/pull/53857) - \[[`9224e3eef1`](https://github.com/nodejs/node/commit/9224e3eef1)] - **doc**: update release-post nodejs.org script (Rafael Gonzaga) [#&#8203;53762](https://github.com/nodejs/node/pull/53762) - \[[`f87eed8de4`](https://github.com/nodejs/node/commit/f87eed8de4)] - **doc**: move MylesBorins to emeritus (Myles Borins) [#&#8203;53760](https://github.com/nodejs/node/pull/53760) - \[[`32ac80ae8d`](https://github.com/nodejs/node/commit/32ac80ae8d)] - **doc**: add Rafael to the last security release (Rafael Gonzaga) [#&#8203;53769](https://github.com/nodejs/node/pull/53769) - \[[`e71aa7e98b`](https://github.com/nodejs/node/commit/e71aa7e98b)] - **doc**: use mock.callCount() in examples (Sébastien Règne) [#&#8203;53754](https://github.com/nodejs/node/pull/53754) - \[[`f64db24312`](https://github.com/nodejs/node/commit/f64db24312)] - **doc**: clarify authenticity of plaintexts in update (Tobias Nießen) [#&#8203;53784](https://github.com/nodejs/node/pull/53784) - \[[`51e736ac83`](https://github.com/nodejs/node/commit/51e736ac83)] - **doc**: add option to have support me link (Michael Dawson) [#&#8203;53312](https://github.com/nodejs/node/pull/53312) - \[[`9804731d0f`](https://github.com/nodejs/node/commit/9804731d0f)] - **doc**: update `scroll-padding-top` to 4rem (Cloyd Lau) [#&#8203;53662](https://github.com/nodejs/node/pull/53662) - \[[`229f7f8b8a`](https://github.com/nodejs/node/commit/229f7f8b8a)] - **doc**: mention v8.setFlagsFromString to pm (Rafael Gonzaga) [#&#8203;53731](https://github.com/nodejs/node/pull/53731) - \[[`98d59aa929`](https://github.com/nodejs/node/commit/98d59aa929)] - **doc**: remove the last \<pre> tag (Claudio W) [#&#8203;53741](https://github.com/nodejs/node/pull/53741) - \[[`60ee41df08`](https://github.com/nodejs/node/commit/60ee41df08)] - **doc**: exclude voting and regular TSC from spotlight (Michael Dawson) [#&#8203;53694](https://github.com/nodejs/node/pull/53694) - \[[`c3536cfa99`](https://github.com/nodejs/node/commit/c3536cfa99)] - **doc**: fix releases guide for recent Git versions (Michaël Zasso) [#&#8203;53709](https://github.com/nodejs/node/pull/53709) - \[[`3b632e1871`](https://github.com/nodejs/node/commit/3b632e1871)] - **doc**: require `node:process` in assert doc examples (Alfredo González) [#&#8203;53702](https://github.com/nodejs/node/pull/53702) - \[[`754090c110`](https://github.com/nodejs/node/commit/754090c110)] - **doc**: add additional explanation to the wildcard section in permissions (jakecastelli) [#&#8203;53664](https://github.com/nodejs/node/pull/53664) - \[[`4346de7267`](https://github.com/nodejs/node/commit/4346de7267)] - **doc**: mark NODE_MODULE_VERSION for Node.js 22.0.0 (Michaël Zasso) [#&#8203;53650](https://github.com/nodejs/node/pull/53650) - \[[`758178bd72`](https://github.com/nodejs/node/commit/758178bd72)] - **doc**: include node.module_timer on available categories (Vinicius Lourenço) [#&#8203;53638](https://github.com/nodejs/node/pull/53638) - \[[`e0d213df2b`](https://github.com/nodejs/node/commit/e0d213df2b)] - **doc**: fix module customization hook examples (Elliot Goodrich) [#&#8203;53637](https://github.com/nodejs/node/pull/53637) - \[[`43ac5a2441`](https://github.com/nodejs/node/commit/43ac5a2441)] - **doc**: fix doc for correct usage with plan & TestContext (Emil Tayeb) [#&#8203;53615](https://github.com/nodejs/node/pull/53615) - \[[`5076f0d292`](https://github.com/nodejs/node/commit/5076f0d292)] - **doc**: remove some news issues that are no longer (Michael Dawson) [#&#8203;53608](https://github.com/nodejs/node/pull/53608) - \[[`c997dbef34`](https://github.com/nodejs/node/commit/c997dbef34)] - **doc**: add issue for news from ambassadors (Michael Dawson) [#&#8203;53607](https://github.com/nodejs/node/pull/53607) - \[[`16d55f1d25`](https://github.com/nodejs/node/commit/16d55f1d25)] - **doc**: add esm example for os (Leonardo Peixoto) [#&#8203;53604](https://github.com/nodejs/node/pull/53604) - \[[`156fc536f2`](https://github.com/nodejs/node/commit/156fc536f2)] - **doc**: clarify usage of coverage reporters (Eliphaz Bouye) [#&#8203;53523](https://github.com/nodejs/node/pull/53523) - \[[`f8f247bc99`](https://github.com/nodejs/node/commit/f8f247bc99)] - **doc**: document addition testing options (Aviv Keller) [#&#8203;53569](https://github.com/nodejs/node/pull/53569) - \[[`73860aca56`](https://github.com/nodejs/node/commit/73860aca56)] - **doc**: clarify that fs.exists() may return false for existing symlink (Tobias Nießen) [#&#8203;53566](https://github.com/nodejs/node/pull/53566) - \[[`59c5c5c73e`](https://github.com/nodejs/node/commit/59c5c5c73e)] - **doc**: note http.closeAllConnections excludes upgraded sockets (Rob Hogan) [#&#8203;53560](https://github.com/nodejs/node/pull/53560) - \[[`1cd3c8eb27`](https://github.com/nodejs/node/commit/1cd3c8eb27)] - **doc**: fix typo (EhsanKhaki) [#&#8203;53397](https://github.com/nodejs/node/pull/53397) - \[[`3c5e593e2a`](https://github.com/nodejs/node/commit/3c5e593e2a)] - **doc, meta**: add PTAL to glossary (Aviv Keller) [#&#8203;53770](https://github.com/nodejs/node/pull/53770) - \[[`f336e61257`](https://github.com/nodejs/node/commit/f336e61257)] - **doc, test**: tracing channel hasSubscribers getter (Thomas Hunter II) [#&#8203;52908](https://github.com/nodejs/node/pull/52908) - \[[`4187b81439`](https://github.com/nodejs/node/commit/4187b81439)] - **doc, typings**: events.once accepts symbol event type (René) [#&#8203;53542](https://github.com/nodejs/node/pull/53542) - \[[`3cdf94d403`](https://github.com/nodejs/node/commit/3cdf94d403)] - **doc,tty**: add documentation for ReadStream and WriteStream (jakecastelli) [#&#8203;53567](https://github.com/nodejs/node/pull/53567) - \[[`5d03f6fab7`](https://github.com/nodejs/node/commit/5d03f6fab7)] - **esm**: move hooks test with others (Geoffrey Booth) [#&#8203;53558](https://github.com/nodejs/node/pull/53558) - \[[`490f15a99b`](https://github.com/nodejs/node/commit/490f15a99b)] - **fs**: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) [#&#8203;53776](https://github.com/nodejs/node/pull/53776) - \[[`8e64c02b19`](https://github.com/nodejs/node/commit/8e64c02b19)] - **(SEMVER-MINOR)** **http**: add diagnostics channel `http.client.request.error` (Kohei Ueno) [#&#8203;54054](https://github.com/nodejs/node/pull/54054) - \[[`0d70c79ebf`](https://github.com/nodejs/node/commit/0d70c79ebf)] - **lib**: optimize copyError with ObjectAssign in primordials (HEESEUNG) [#&#8203;53999](https://github.com/nodejs/node/pull/53999) - \[[`a4ff2ac0f0`](https://github.com/nodejs/node/commit/a4ff2ac0f0)] - **lib**: improve cluster/primary code (Ehsan Khakifirooz) [#&#8203;53756](https://github.com/nodejs/node/pull/53756) - \[[`c667fbd988`](https://github.com/nodejs/node/commit/c667fbd988)] - **lib**: improve error message when index not found on cjs (Vinicius Lourenço) [#&#8203;53859](https://github.com/nodejs/node/pull/53859) - \[[`51ba566171`](https://github.com/nodejs/node/commit/51ba566171)] - **lib**: decorate async stack trace in source maps (Chengzhong Wu) [#&#8203;53860](https://github.com/nodejs/node/pull/53860) - \[[`d012dd3d29`](https://github.com/nodejs/node/commit/d012dd3d29)] - **lib**: remove path.resolve from permissions.js (Rafael Gonzaga) [#&#8203;53729](https://github.com/nodejs/node/pull/53729) - \[[`1e9ff50446`](https://github.com/nodejs/node/commit/1e9ff50446)] - **lib**: add toJSON to PerformanceMeasure (theanarkh) [#&#8203;53603](https://github.com/nodejs/node/pull/53603) - \[[`3a2d8bffa5`](https://github.com/nodejs/node/commit/3a2d8bffa5)] - **lib**: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) [#&#8203;52095](https://github.com/nodejs/node/pull/52095) - \[[`e326342bd7`](https://github.com/nodejs/node/commit/e326342bd7)] - **meta**: add `sqlite` to js subsystems (Alex Yang) [#&#8203;53911](https://github.com/nodejs/node/pull/53911) - \[[`bfabfb4d17`](https://github.com/nodejs/node/commit/bfabfb4d17)] - **meta**: move tsc member to emeritus (Michael Dawson) [#&#8203;54029](https://github.com/nodejs/node/pull/54029) - \[[`ae30674991`](https://github.com/nodejs/node/commit/ae30674991)] - **meta**: add jake to collaborators (jakecastelli) [#&#8203;54004](https://github.com/nodejs/node/pull/54004) - \[[`6ca0cfc602`](https://github.com/nodejs/node/commit/6ca0cfc602)] - **meta**: remove license for hljs (Aviv Keller) [#&#8203;53970](https://github.com/nodejs/node/pull/53970) - \[[`e6ba121e83`](https://github.com/nodejs/node/commit/e6ba121e83)] - **meta**: make more bug-report information required (Aviv Keller) [#&#8203;53718](https://github.com/nodejs/node/pull/53718) - \[[`1864cddd0c`](https://github.com/nodejs/node/commit/1864cddd0c)] - **meta**: store actions secrets in environment (Aviv Keller) [#&#8203;53930](https://github.com/nodejs/node/pull/53930) - \[[`c0b24e5071`](https://github.com/nodejs/node/commit/c0b24e5071)] - **meta**: move anonrig to tsc voting members (Yagiz Nizipli) [#&#8203;53888](https://github.com/nodejs/node/pull/53888) - \[[`e60b089f7f`](https://github.com/nodejs/node/commit/e60b089f7f)] - **meta**: remove redudant logging from dep updaters (Aviv Keller) [#&#8203;53783](https://github.com/nodejs/node/pull/53783) - \[[`bff6995ec3`](https://github.com/nodejs/node/commit/bff6995ec3)] - **meta**: change email address of anonrig (Yagiz Nizipli) [#&#8203;53829](https://github.com/nodejs/node/pull/53829) - \[[`c2bb46020a`](https://github.com/nodejs/node/commit/c2bb46020a)] - **meta**: add `node_sqlite.c` to PR label config (Aviv Keller) [#&#8203;53797](https://github.com/nodejs/node/pull/53797) - \[[`b8d2bbc6d6`](https://github.com/nodejs/node/commit/b8d2bbc6d6)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53758](https://github.com/nodejs/node/pull/53758) - \[[`0ad4b7c1f7`](https://github.com/nodejs/node/commit/0ad4b7c1f7)] - **meta**: use HTML entities in commit-queue comment (Aviv Keller) [#&#8203;53744](https://github.com/nodejs/node/pull/53744) - \[[`aa0c5c25d1`](https://github.com/nodejs/node/commit/aa0c5c25d1)] - **meta**: move regular TSC member to emeritus (Michael Dawson) [#&#8203;53693](https://github.com/nodejs/node/pull/53693) - \[[`a5f5b4550b`](https://github.com/nodejs/node/commit/a5f5b4550b)] - **meta**: bump codecov/codecov-action from 4.4.1 to 4.5.0 (dependabot\[bot]) [#&#8203;53675](https://github.com/nodejs/node/pull/53675) - \[[`f84e215c90`](https://github.com/nodejs/node/commit/f84e215c90)] - **meta**: bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 (dependabot\[bot]) [#&#8203;53674](https://github.com/nodejs/node/pull/53674) - \[[`d5a9c249d3`](https://github.com/nodejs/node/commit/d5a9c249d3)] - **meta**: bump github/codeql-action from 3.25.7 to 3.25.11 (dependabot\[bot]) [#&#8203;53673](https://github.com/nodejs/node/pull/53673) - \[[`39d6c780c8`](https://github.com/nodejs/node/commit/39d6c780c8)] - **meta**: bump actions/checkout from 4.1.6 to 4.1.7 (dependabot\[bot]) [#&#8203;53672](https://github.com/nodejs/node/pull/53672) - \[[`bb6fe38a34`](https://github.com/nodejs/node/commit/bb6fe38a34)] - **meta**: bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (dependabot\[bot]) [#&#8203;53671](https://github.com/nodejs/node/pull/53671) - \[[`5dcdfb5e6b`](https://github.com/nodejs/node/commit/5dcdfb5e6b)] - **meta**: bump step-security/harden-runner from 2.8.0 to 2.8.1 (dependabot\[bot]) [#&#8203;53670](https://github.com/nodejs/node/pull/53670) - \[[`44d901a1c9`](https://github.com/nodejs/node/commit/44d901a1c9)] - **meta**: move member from TSC regular to emeriti (Michael Dawson) [#&#8203;53599](https://github.com/nodejs/node/pull/53599) - \[[`0c91186afa`](https://github.com/nodejs/node/commit/0c91186afa)] - **meta**: warnings bypass deprecation cycle (Benjamin Gruenbaum) [#&#8203;53513](https://github.com/nodejs/node/pull/53513) - \[[`bcd08bef60`](https://github.com/nodejs/node/commit/bcd08bef60)] - **meta**: prevent constant references to issues in versioning (Aviv Keller) [#&#8203;53564](https://github.com/nodejs/node/pull/53564) - \[[`7625dc4927`](https://github.com/nodejs/node/commit/7625dc4927)] - **module**: fix submodules loaded by require() and import() (Joyee Cheung) [#&#8203;52487](https://github.com/nodejs/node/pull/52487) - \[[`6c4f4772e3`](https://github.com/nodejs/node/commit/6c4f4772e3)] - **module**: tidy code and comments (Jacob Smith) [#&#8203;52437](https://github.com/nodejs/node/pull/52437) - \[[`51b88faeac`](https://github.com/nodejs/node/commit/51b88faeac)] - **module**: disallow CJS <-> ESM edges in a cycle from require(esm) (Joyee Cheung) [#&#8203;52264](https://github.com/nodejs/node/pull/52264) - \[[`4dae68ced4`](https://github.com/nodejs/node/commit/4dae68ced4)] - **module**: centralize SourceTextModule compilation for builtin loader (Joyee Cheung) [#&#8203;52291](https://github.com/nodejs/node/pull/52291) - \[[`cad46afc07`](https://github.com/nodejs/node/commit/cad46afc07)] - **(SEMVER-MINOR)** **module**: support require()ing synchronous ESM graphs (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977) - \[[`ac58c829a1`](https://github.com/nodejs/node/commit/ac58c829a1)] - **node-api**: add property keys benchmark (Chengzhong Wu) [#&#8203;54012](https://github.com/nodejs/node/pull/54012) - \[[`e6a4104bd1`](https://github.com/nodejs/node/commit/e6a4104bd1)] - **node-api**: rename nogc to basic (Gabriel Schulhof) [#&#8203;53830](https://github.com/nodejs/node/pull/53830) - \[[`57b8b8e18e`](https://github.com/nodejs/node/commit/57b8b8e18e)] - **(SEMVER-MINOR)** **path**: add `matchesGlob` method (Aviv Keller) [#&#8203;52881](https://github.com/nodejs/node/pull/52881) - \[[`bf6aa53299`](https://github.com/nodejs/node/commit/bf6aa53299)] - **process**: unify experimental warning messages (Aviv Keller) [#&#8203;53704](https://github.com/nodejs/node/pull/53704) - \[[`2a3ae16e62`](https://github.com/nodejs/node/commit/2a3ae16e62)] - **src**: expose LookupAndCompile with parameters (Shelley Vohr) [#&#8203;53886](https://github.com/nodejs/node/pull/53886) - \[[`0109f9c961`](https://github.com/nodejs/node/commit/0109f9c961)] - **src**: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) [#&#8203;53890](https://github.com/nodejs/node/pull/53890) - \[[`6bafe8a457`](https://github.com/nodejs/node/commit/6bafe8a457)] - **src**: fix -Wshadow warning (Shelley Vohr) [#&#8203;53885](https://github.com/nodejs/node/pull/53885) - \[[`4c36d6c47a`](https://github.com/nodejs/node/commit/4c36d6c47a)] - **src**: fix slice of slice of file-backed Blob (Josh Lee) [#&#8203;53972](https://github.com/nodejs/node/pull/53972) - \[[`848c2d59fb`](https://github.com/nodejs/node/commit/848c2d59fb)] - **src**: cache invariant code motion (Rafael Gonzaga) [#&#8203;53879](https://github.com/nodejs/node/pull/53879) - \[[`acaf5dd1cd`](https://github.com/nodejs/node/commit/acaf5dd1cd)] - **src**: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53813](https://github.com/nodejs/node/pull/53813) - \[[`b71250aaf9`](https://github.com/nodejs/node/commit/b71250aaf9)] - **src**: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) [#&#8203;53869](https://github.com/nodejs/node/pull/53869) - \[[`aff9a5339a`](https://github.com/nodejs/node/commit/aff9a5339a)] - **src**: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) [#&#8203;53786](https://github.com/nodejs/node/pull/53786) - \[[`e352a4ef27`](https://github.com/nodejs/node/commit/e352a4ef27)] - **src**: update outdated references to spec sections (Tobias Nießen) [#&#8203;53832](https://github.com/nodejs/node/pull/53832) - \[[`1a4da22a60`](https://github.com/nodejs/node/commit/1a4da22a60)] - **src**: use Maybe\<void> in ManagedEVPPKey (Tobias Nießen) [#&#8203;53811](https://github.com/nodejs/node/pull/53811) - \[[`0c24b91bd2`](https://github.com/nodejs/node/commit/0c24b91bd2)] - **src**: fix error handling in ExportJWKAsymmetricKey (Tobias Nießen) [#&#8203;53767](https://github.com/nodejs/node/pull/53767) - \[[`81cd84c716`](https://github.com/nodejs/node/commit/81cd84c716)] - **src**: use Maybe\<void> in node::crypto::error (Tobias Nießen) [#&#8203;53766](https://github.com/nodejs/node/pull/53766) - \[[`8135f3616d`](https://github.com/nodejs/node/commit/8135f3616d)] - **src**: fix typo in node.h (Daeyeon Jeong) [#&#8203;53759](https://github.com/nodejs/node/pull/53759) - \[[`e6d735a997`](https://github.com/nodejs/node/commit/e6d735a997)] - **src**: document the Node.js context embedder data (Joyee Cheung) [#&#8203;53611](https://github.com/nodejs/node/pull/53611) - \[[`584beaa2ed`](https://github.com/nodejs/node/commit/584beaa2ed)] - **src**: zero-initialize data that are copied into the snapshot (Joyee Cheung) [#&#8203;53563](https://github.com/nodejs/node/pull/53563) - \[[`ef5dabd8c6`](https://github.com/nodejs/node/commit/ef5dabd8c6)] - **src**: fix Worker termination when '--inspect-brk' is passed (Daeyeon Jeong) [#&#8203;53724](https://github.com/nodejs/node/pull/53724) - \[[`62f4f6f48e`](https://github.com/nodejs/node/commit/62f4f6f48e)] - **src**: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) [#&#8203;52910](https://github.com/nodejs/node/pull/52910) - \[[`a6dd8643fa`](https://github.com/nodejs/node/commit/a6dd8643fa)] - **src**: reduce unnecessary serialization of CLI options in C++ (Joyee Cheung) [#&#8203;52451](https://github.com/nodejs/node/pull/52451) - \[[`31fdb881cf`](https://github.com/nodejs/node/commit/31fdb881cf)] - **src,lib**: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) [#&#8203;53602](https://github.com/nodejs/node/pull/53602) - \[[`2eea8502e1`](https://github.com/nodejs/node/commit/2eea8502e1)] - **src,test**: further cleanup references to osx (Daniel Bayley) [#&#8203;53820](https://github.com/nodejs/node/pull/53820) - \[[`7c21bb99a5`](https://github.com/nodejs/node/commit/7c21bb99a5)] - **(SEMVER-MINOR)** **stream**: expose DuplexPair API (Austin Wright) [#&#8203;34111](https://github.com/nodejs/node/pull/34111) - \[[`56299f7309`](https://github.com/nodejs/node/commit/56299f7309)] - **stream**: improve inspector ergonomics (Benjamin Gruenbaum) [#&#8203;53800](https://github.com/nodejs/node/pull/53800) - \[[`9b82b15230`](https://github.com/nodejs/node/commit/9b82b15230)] - **stream**: update ongoing promise in async iterator return() method (Mattias Buelens) [#&#8203;52657](https://github.com/nodejs/node/pull/52657) - \[[`4a3ecbfc9b`](https://github.com/nodejs/node/commit/4a3ecbfc9b)] - **(SEMVER-MINOR)** **stream**: implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) [#&#8203;50888](https://github.com/nodejs/node/pull/50888) - \[[`bd996bf694`](https://github.com/nodejs/node/commit/bd996bf694)] - **test**: do not swallow uncaughtException errors in exit code tests (Meghan Denny) [#&#8203;54039](https://github.com/nodejs/node/pull/54039) - \[[`77761af077`](https://github.com/nodejs/node/commit/77761af077)] - **test**: move shared module to `test/common` (Rich Trott) [#&#8203;54042](https://github.com/nodejs/node/pull/54042) - \[[`bec88ce138`](https://github.com/nodejs/node/commit/bec88ce138)] - **test**: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) [#&#8203;53996](https://github.com/nodejs/node/pull/53996) - \[[`9a98ad47cd`](https://github.com/nodejs/node/commit/9a98ad47cd)] - **test**: remove unnecessary console log (KAYYY) [#&#8203;53812](https://github.com/nodejs/node/pull/53812) - \[[`364d09cf0a`](https://github.com/nodejs/node/commit/364d09cf0a)] - **test**: add comments and rename test for timer robustness (Rich Trott) [#&#8203;54008](https://github.com/nodejs/node/pull/54008) - \[[`5c5093dc0a`](https://github.com/nodejs/node/commit/5c5093dc0a)] - **test**: add test for one arg timers to increase coverage (Carlos Espa) [#&#8203;54007](https://github.com/nodejs/node/pull/54007) - \[[`43ede1ae0b`](https://github.com/nodejs/node/commit/43ede1ae0b)] - **test**: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) [#&#8203;54031](https://github.com/nodejs/node/pull/54031) - \[[`0ad783cb42`](https://github.com/nodejs/node/commit/0ad783cb42)] - **test**: mark test-pipe-file-to-http as flaky (jakecastelli) [#&#8203;53751](https://github.com/nodejs/node/pull/53751) - \[[`f2b4fd3544`](https://github.com/nodejs/node/commit/f2b4fd3544)] - **test**: compare paths on Windows without considering case (Early Riser) [#&#8203;53993](https://github.com/nodejs/node/pull/53993) - \[[`2e69e5f4d2`](https://github.com/nodejs/node/commit/2e69e5f4d2)] - **test**: skip sea tests in large debug builds (Chengzhong Wu) [#&#8203;53918](https://github.com/nodejs/node/pull/53918) - \[[`56c26fe6e5`](https://github.com/nodejs/node/commit/56c26fe6e5)] - **test**: skip --title check on IBM i (Abdirahim Musse) [#&#8203;53952](https://github.com/nodejs/node/pull/53952) - \[[`6d0b8ded00`](https://github.com/nodejs/node/commit/6d0b8ded00)] - **test**: reduce flakiness of `test-assert-esm-cjs-message-verify` (Antoine du Hamel) [#&#8203;53967](https://github.com/nodejs/node/pull/53967) - \[[`edb75aebd7`](https://github.com/nodejs/node/commit/edb75aebd7)] - **test**: use `PYTHON` executable from env in `assertSnapshot` (Antoine du Hamel) [#&#8203;53938](https://github.com/nodejs/node/pull/53938) - \[[`be94e470a6`](https://github.com/nodejs/node/commit/be94e470a6)] - **test**: deflake test-blob-file-backed (Luigi Pinca) [#&#8203;53920](https://github.com/nodejs/node/pull/53920) - \[[`c2b0dcd165`](https://github.com/nodejs/node/commit/c2b0dcd165)] - **test**: un-set inspector-async-hook-setup-at-inspect-brk as flaky (Abdirahim Musse) [#&#8203;53692](https://github.com/nodejs/node/pull/53692) - \[[`6dc18981ac`](https://github.com/nodejs/node/commit/6dc18981ac)] - **test**: use python3 instead of python in pummel test (Mathis Wiehl) [#&#8203;53057](https://github.com/nodejs/node/pull/53057) - \[[`662bf524e1`](https://github.com/nodejs/node/commit/662bf524e1)] - **test**: do not assume cwd in snapshot tests (Antoine du Hamel) [#&#8203;53146](https://github.com/nodejs/node/pull/53146) - \[[`a07526702a`](https://github.com/nodejs/node/commit/a07526702a)] - **test**: fix OpenSSL version checks (Richard Lau) [#&#8203;53503](https://github.com/nodejs/node/pull/53503) - \[[`2b70018d11`](https://github.com/nodejs/node/commit/2b70018d11)] - **test**: refactor, add assertion to http-request-end (jakecastelli) [#&#8203;53411](https://github.com/nodejs/node/pull/53411) - \[[`c0262c1561`](https://github.com/nodejs/node/commit/c0262c1561)] - **test_runner**: switched to internal readline interface (Emil Tayeb) [#&#8203;54000](https://github.com/nodejs/node/pull/54000) - \[[`fb7342246c`](https://github.com/nodejs/node/commit/fb7342246c)] - **test_runner**: do not throw on mocked clearTimeout() (Aksinya Bykova) [#&#8203;54005](https://github.com/nodejs/node/pull/54005) - \[[`367f9e77f3`](https://github.com/nodejs/node/commit/367f9e77f3)] - **test_runner**: cleanup global event listeners after run (Eddie Abbondanzio) [#&#8203;53878](https://github.com/nodejs/node/pull/53878) - \[[`206c668ee7`](https://github.com/nodejs/node/commit/206c668ee7)] - **test_runner**: remove plan option from run() (Colin Ihrig) [#&#8203;53834](https://github.com/nodejs/node/pull/53834) - \[[`8660d481e5`](https://github.com/nodejs/node/commit/8660d481e5)] - **tls**: add setKeyCert() to tls.Socket (Brian White) [#&#8203;53636](https://github.com/nodejs/node/pull/53636) - \[[`9c5beabd83`](https://github.com/nodejs/node/commit/9c5beabd83)] - **tools**: fix `SLACK_TITLE` in invalid commit workflow (Antoine du Hamel) [#&#8203;53912](https://github.com/nodejs/node/pull/53912) - \[[`4dedf2aead`](https://github.com/nodejs/node/commit/4dedf2aead)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53840](https://github.com/nodejs/node/pull/53840) - \[[`642d5c5d30`](https://github.com/nodejs/node/commit/642d5c5d30)] - **tools**: use v8\_features.json to populate config.gypi (Cheng) [#&#8203;53749](https://github.com/nodejs/node/pull/53749) - \[[`031206544d`](https://github.com/nodejs/node/commit/031206544d)] - **tools**: update lint-md-dependencies to unified@11.0.5 (Node.js GitHub Bot) [#&#8203;53555](https://github.com/nodejs/node/pull/53555) - \[[`8404421ea6`](https://github.com/nodejs/node/commit/8404421ea6)] - **tools**: replace reference to NodeMainInstance with SnapshotBuilder (codediverdev) [#&#8203;53544](https://github.com/nodejs/node/pull/53544) - \[[`2d8490fed5`](https://github.com/nodejs/node/commit/2d8490fed5)] - **typings**: add `fs_dir` types (Yagiz Nizipli) [#&#8203;53631](https://github.com/nodejs/node/pull/53631) - \[[`325eae0b3f`](https://github.com/nodejs/node/commit/325eae0b3f)] - **url**: fix typo (KAYYY) [#&#8203;53827](https://github.com/nodejs/node/pull/53827) - \[[`7fc45f5e3f`](https://github.com/nodejs/node/commit/7fc45f5e3f)] - **url**: reduce unnecessary string copies (Yagiz Nizipli) [#&#8203;53628](https://github.com/nodejs/node/pull/53628) - \[[`1d961facf1`](https://github.com/nodejs/node/commit/1d961facf1)] - **url**: add missing documentation for `URL.parse()` (Yagiz Nizipli) [#&#8203;53733](https://github.com/nodejs/node/pull/53733) - \[[`ce877c6d0f`](https://github.com/nodejs/node/commit/ce877c6d0f)] - **util**: fix crashing when emitting new Buffer() deprecation warning [#&#8203;53075](https://github.com/nodejs/node/issues/53075) (Aras Abbasi) [#&#8203;53089](https://github.com/nodejs/node/pull/53089) - \[[`d6d04279ca`](https://github.com/nodejs/node/commit/d6d04279ca)] - **worker**: allow copied NODE_OPTIONS in the env setting (Joyee Cheung) [#&#8203;53596](https://github.com/nodejs/node/pull/53596) ### [`v20.16.0`](https://github.com/nodejs/node/releases/tag/v20.16.0): 2024-07-24, Version 20.16.0 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.15.1...v20.16.0) ##### process: add process.getBuiltinModule(id) `process.getBuiltinModule(id)` provides a way to load built-in modules in a globally available function. ES Modules that need to support other environments can use it to conditionally load a Node.js built-in when it is run in Node.js, without having to deal with the resolution error that can be thrown by `import` in a non-Node.js environment or having to use dynamic `import()` which either turns the module into an asynchronous module, or turns a synchronous API into an asynchronous one. ```mjs if (globalThis.process?.getBuiltinModule) { // Run in Node.js, use the Node.js fs module. const fs = globalThis.process.getBuiltinModule('fs'); // If `require()` is needed to load user-modules, use createRequire() const module = globalThis.process.getBuiltinModule('module'); const require = module.createRequire(import.meta.url); const foo = require('foo'); } ``` If `id` specifies a built-in module available in the current Node.js process, `process.getBuiltinModule(id)` method returns the corresponding built-in module. If `id` does not correspond to any built-in module, `undefined` is returned. `process.getBuiltinModule(id)` accepts built-in module IDs that are recognized by `module.isBuiltin(id)`. The references returned by `process.getBuiltinModule(id)` always point to the built-in module corresponding to `id` even if users modify `require.cache` so that `require(id)` returns something else. Contributed by Joyee Cheung in [#&#8203;52762](https://github.com/nodejs/node/pull/52762) ##### doc: doc-only deprecate OpenSSL engine-based APIs OpenSSL 3 deprecated support for custom engines with a recommendation to switch to its new provider model. The `clientCertEngine` option for `https.request()`, `tls.createSecureContext()`, and `tls.createServer()`; the `privateKeyEngine` and `privateKeyIdentifier` for `tls.createSecureContext();` and `crypto.setEngine()` all depend on this functionality from OpenSSL. Contributed by Richard Lau in [#&#8203;53329](https://github.com/nodejs/node/pull/53329) ##### inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth `Debugger.setAsyncCallStackDepth` was previously calling the enable function by mistake. As a result, when profiling using Chrome DevTools, the async hooks won't be turned off properly after receiving `Debugger.setAsyncCallStackDepth` with depth 0. Contributed by Joyee Cheung in [#&#8203;53473](https://github.com/nodejs/node/pull/53473) ##### Other Notable Changes - \[[`09e2191432`](https://github.com/nodejs/node/commit/09e2191432)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221) - \[[`394e00f41c`](https://github.com/nodejs/node/commit/394e00f41c)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`a8601efa5e`](https://github.com/nodejs/node/commit/a8601efa5e)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`5e76c258f7`](https://github.com/nodejs/node/commit/5e76c258f7)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118) - \[[`5e694026f1`](https://github.com/nodejs/node/commit/5e694026f1)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#&#8203;53008](https://github.com/nodejs/node/pull/53008) - \[[`f3ba1eb72f`](https://github.com/nodejs/node/commit/f3ba1eb72f)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136) - \[[`2bcce3255b`](https://github.com/nodejs/node/commit/2bcce3255b)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124) - \[[`a03a4c7bdd`](https://github.com/nodejs/node/commit/a03a4c7bdd)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`69b828f5a5`](https://github.com/nodejs/node/commit/69b828f5a5)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107) ##### Commits - \[[`76fd0ea92e`](https://github.com/nodejs/node/commit/76fd0ea92e)] - **assert,util**: correct comparison when both contain same reference (Daniel Lemire) [#&#8203;53431](https://github.com/nodejs/node/pull/53431) - \[[`65308b6692`](https://github.com/nodejs/node/commit/65308b6692)] - **benchmark**: fix api restriction for the permission category (Ryan Tsien) [#&#8203;51528](https://github.com/nodejs/node/pull/51528) - \[[`1e2bc2c2d0`](https://github.com/nodejs/node/commit/1e2bc2c2d0)] - **benchmark**: fix napi/ref addon (Michaël Zasso) [#&#8203;53233](https://github.com/nodejs/node/pull/53233) - \[[`09e2191432`](https://github.com/nodejs/node/commit/09e2191432)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#&#8203;53221](https://github.com/nodejs/node/pull/53221) - \[[`e1951a4804`](https://github.com/nodejs/node/commit/e1951a4804)] - **build**: fix spacing before NINJA_ARGS (jakecastelli) [#&#8203;53181](https://github.com/nodejs/node/pull/53181) - \[[`76f3bb3460`](https://github.com/nodejs/node/commit/76f3bb3460)] - **build**: generate binlog in out directories (Chengzhong Wu) [#&#8203;53325](https://github.com/nodejs/node/pull/53325) - \[[`eded0c187b`](https://github.com/nodejs/node/commit/eded0c187b)] - **build**: support python 3.13 (Chengzhong Wu) [#&#8203;53190](https://github.com/nodejs/node/pull/53190) - \[[`1e57c67fdb`](https://github.com/nodejs/node/commit/1e57c67fdb)] - **build**: update ruff to v0.4.5 (Yagiz Nizipli) [#&#8203;53180](https://github.com/nodejs/node/pull/53180) - \[[`28e71ede63`](https://github.com/nodejs/node/commit/28e71ede63)] - **build**: add `--skip-tests` to `test-ci-js` target (Antoine du Hamel) [#&#8203;53105](https://github.com/nodejs/node/pull/53105) - \[[`bb06778a65`](https://github.com/nodejs/node/commit/bb06778a65)] - **build**: fix building embedtest in GN build (Cheng) [#&#8203;53145](https://github.com/nodejs/node/pull/53145) - \[[`117ff5f139`](https://github.com/nodejs/node/commit/117ff5f139)] - **build**: use broader detection for 'help' (Aviv Keller) [#&#8203;53045](https://github.com/nodejs/node/pull/53045) - \[[`9aa896e7f5`](https://github.com/nodejs/node/commit/9aa896e7f5)] - **build**: fix -j propagation to ninja (Tobias Nießen) [#&#8203;53088](https://github.com/nodejs/node/pull/53088) - \[[`acdbc78955`](https://github.com/nodejs/node/commit/acdbc78955)] - **build**: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) [#&#8203;52882](https://github.com/nodejs/node/pull/52882) - \[[`bf3d94478e`](https://github.com/nodejs/node/commit/bf3d94478e)] - **build**: fix `--enable-d8` builds (Richard Lau) [#&#8203;53106](https://github.com/nodejs/node/pull/53106) - \[[`99da7d7237`](https://github.com/nodejs/node/commit/99da7d7237)] - **build**: set "clang" in config.gypi in GN build (Cheng) [#&#8203;53004](https://github.com/nodejs/node/pull/53004) - \[[`9446278f03`](https://github.com/nodejs/node/commit/9446278f03)] - **crypto**: improve GetECGroupBits signature (Tobias Nießen) [#&#8203;53364](https://github.com/nodejs/node/pull/53364) - \[[`dc2a4af68d`](https://github.com/nodejs/node/commit/dc2a4af68d)] - **crypto**: fix propagation of "memory limit exceeded" (Tobias Nießen) [#&#8203;53300](https://github.com/nodejs/node/pull/53300) - \[[`c5174f5e60`](https://github.com/nodejs/node/commit/c5174f5e60)] - **deps**: update c-ares to v1.31.0 (Node.js GitHub Bot) [#&#8203;53554](https://github.com/nodejs/node/pull/53554) - \[[`28e932dc7a`](https://github.com/nodejs/node/commit/28e932dc7a)] - **deps**: update undici to 6.19.2 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`e4f9c663c4`](https://github.com/nodejs/node/commit/e4f9c663c4)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`171dc50fdc`](https://github.com/nodejs/node/commit/171dc50fdc)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`6bb6a9100d`](https://github.com/nodejs/node/commit/6bb6a9100d)] - **deps**: update undici to 6.19.0 (Node.js GitHub Bot) [#&#8203;53468](https://github.com/nodejs/node/pull/53468) - \[[`815d71b4cd`](https://github.com/nodejs/node/commit/815d71b4cd)] - **deps**: update acorn-walk to 8.3.3 (Node.js GitHub Bot) [#&#8203;53466](https://github.com/nodejs/node/pull/53466) - \[[`8b5f1d765a`](https://github.com/nodejs/node/commit/8b5f1d765a)] - **deps**: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) [#&#8203;53156](https://github.com/nodejs/node/pull/53156) - \[[`fc73da6f50`](https://github.com/nodejs/node/commit/fc73da6f50)] - **deps**: update c-ares to v1.30.0 (Node.js GitHub Bot) [#&#8203;53416](https://github.com/nodejs/node/pull/53416) - \[[`a6b803abd6`](https://github.com/nodejs/node/commit/a6b803abd6)] - **deps**: update undici to 6.18.2 (Node.js GitHub Bot) [#&#8203;53255](https://github.com/nodejs/node/pull/53255) - \[[`0f235535bb`](https://github.com/nodejs/node/commit/0f235535bb)] - **deps**: update ada to 2.8.0 (Node.js GitHub Bot) [#&#8203;53254](https://github.com/nodejs/node/pull/53254) - \[[`63407269a8`](https://github.com/nodejs/node/commit/63407269a8)] - **deps**: update corepack to 0.28.2 (Node.js GitHub Bot) [#&#8203;53253](https://github.com/nodejs/node/pull/53253) - \[[`7a126e8773`](https://github.com/nodejs/node/commit/7a126e8773)] - **deps**: update c-ares to 1.29.0 (Node.js GitHub Bot) [#&#8203;53155](https://github.com/nodejs/node/pull/53155) - \[[`0c8fcceefa`](https://github.com/nodejs/node/commit/0c8fcceefa)] - **deps**: upgrade npm to 10.8.1 (npm team) [#&#8203;53207](https://github.com/nodejs/node/pull/53207) - \[[`23866979f2`](https://github.com/nodejs/node/commit/23866979f2)] - **deps**: update undici to 6.18.1 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073) - \[[`4987a00142`](https://github.com/nodejs/node/commit/4987a00142)] - **deps**: update undici to 6.18.0 (Node.js GitHub Bot) [#&#8203;53073](https://github.com/nodejs/node/pull/53073) - \[[`af226d0d9c`](https://github.com/nodejs/node/commit/af226d0d9c)] - **deps**: update undici to 6.17.0 (Node.js GitHub Bot) [#&#8203;53034](https://github.com/nodejs/node/pull/53034) - \[[`c9c6bf8bfb`](https://github.com/nodejs/node/commit/c9c6bf8bfb)] - **deps**: update undici to 6.16.1 (Node.js GitHub Bot) [#&#8203;52948](https://github.com/nodejs/node/pull/52948) - \[[`b32b62d590`](https://github.com/nodejs/node/commit/b32b62d590)] - **deps**: update undici to 6.15.0 (Matthew Aitken) [#&#8203;52763](https://github.com/nodejs/node/pull/52763) - \[[`6e6641bea2`](https://github.com/nodejs/node/commit/6e6641bea2)] - **deps**: update googletest to [`33af80a`](https://github.com/nodejs/node/commit/33af80a) (Node.js GitHub Bot) [#&#8203;53053](https://github.com/nodejs/node/pull/53053) - \[[`aa96fbe03e`](https://github.com/nodejs/node/commit/aa96fbe03e)] - **deps**: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) [#&#8203;53052](https://github.com/nodejs/node/pull/53052) - \[[`ba3310ded5`](https://github.com/nodejs/node/commit/ba3310ded5)] - **deps**: upgrade npm to 10.8.0 (npm team) [#&#8203;53014](https://github.com/nodejs/node/pull/53014) - \[[`8537a2aecf`](https://github.com/nodejs/node/commit/8537a2aecf)] - **doc**: recommend not using libuv node-api function (Michael Dawson) [#&#8203;53521](https://github.com/nodejs/node/pull/53521) - \[[`c13600f0db`](https://github.com/nodejs/node/commit/c13600f0db)] - **doc**: add additional guidance for PRs to deps (Michael Dawson) [#&#8203;53499](https://github.com/nodejs/node/pull/53499) - \[[`7c3edd952e`](https://github.com/nodejs/node/commit/7c3edd952e)] - **doc**: only apply content-visibility on all.html (Filip Skokan) [#&#8203;53510](https://github.com/nodejs/node/pull/53510) - \[[`ac5be14ed8`](https://github.com/nodejs/node/commit/ac5be14ed8)] - **doc**: update the description of the return type for options.filter (Zhenwei Jin) [#&#8203;52742](https://github.com/nodejs/node/pull/52742) - \[[`cac300e351`](https://github.com/nodejs/node/commit/cac300e351)] - **doc**: remove first timer badge (Aviv Keller) [#&#8203;53338](https://github.com/nodejs/node/pull/53338) - \[[`feb61459fd`](https://github.com/nodejs/node/commit/feb61459fd)] - **doc**: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) [#&#8203;52801](https://github.com/nodejs/node/pull/52801) - \[[`9e0a6e938b`](https://github.com/nodejs/node/commit/9e0a6e938b)] - **doc**: add initial text for ambassadors program (Michael Dawson) [#&#8203;52857](https://github.com/nodejs/node/pull/52857) - \[[`55ac53cb0b`](https://github.com/nodejs/node/commit/55ac53cb0b)] - **doc**: define more cases for stream event emissions (Aviv Keller) [#&#8203;53317](https://github.com/nodejs/node/pull/53317) - \[[`7128e0f9c9`](https://github.com/nodejs/node/commit/7128e0f9c9)] - **doc**: remove mentions of policy model from security info (Aviv Keller) [#&#8203;53249](https://github.com/nodejs/node/pull/53249) - \[[`3e290433df`](https://github.com/nodejs/node/commit/3e290433df)] - **doc**: fix mistakes in the module `load` hook api (István Donkó) [#&#8203;53349](https://github.com/nodejs/node/pull/53349) - \[[`3445c08144`](https://github.com/nodejs/node/commit/3445c08144)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#&#8203;53329](https://github.com/nodejs/node/pull/53329) - \[[`a3e8cda019`](https://github.com/nodejs/node/commit/a3e8cda019)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343) - \[[`0b9daaae4d`](https://github.com/nodejs/node/commit/0b9daaae4d)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#&#8203;53343](https://github.com/nodejs/node/pull/53343) - \[[`daf91834f6`](https://github.com/nodejs/node/commit/daf91834f6)] - **doc**: remove IRC from man page (Tobias Nießen) [#&#8203;53344](https://github.com/nodejs/node/pull/53344) - \[[`4246c8fa31`](https://github.com/nodejs/node/commit/4246c8fa31)] - **doc**: fix broken link in `static-analysis.md` (Richard Lau) [#&#8203;53345](https://github.com/nodejs/node/pull/53345) - \[[`955b98a0e4`](https://github.com/nodejs/node/commit/955b98a0e4)] - **doc**: remove cases for keys not containing "\*" in PATTERN_KEY_COMPARE (Maarten Zuidhoorn) [#&#8203;53215](https://github.com/nodejs/node/pull/53215) - \[[`7832b1815f`](https://github.com/nodejs/node/commit/7832b1815f)] - **doc**: add err param to fs.cp callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234) - \[[`01533df87f`](https://github.com/nodejs/node/commit/01533df87f)] - **doc**: add `err` param to fs.copyFile callback (Feng Yu) [#&#8203;53234](https://github.com/nodejs/node/pull/53234) - \[[`b081bc7d5e`](https://github.com/nodejs/node/commit/b081bc7d5e)] - **doc**: reserve 128 for Electron 32 (Keeley Hammond) [#&#8203;53203](https://github.com/nodejs/node/pull/53203) - \[[`6b8460b560`](https://github.com/nodejs/node/commit/6b8460b560)] - **doc**: add note to ninjia build for macOS using -jn flag (jakecastelli) [#&#8203;53187](https://github.com/nodejs/node/pull/53187) - \[[`394e00f41c`](https://github.com/nodejs/node/commit/394e00f41c)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`c143d61d0e`](https://github.com/nodejs/node/commit/c143d61d0e)] - **doc**: include ESM import for HTTP (Aviv Keller) [#&#8203;53165](https://github.com/nodejs/node/pull/53165) - \[[`a8601efa5e`](https://github.com/nodejs/node/commit/a8601efa5e)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`560392de3d`](https://github.com/nodejs/node/commit/560392de3d)] - **doc**: fix minor grammar and style issues in SECURITY.md (Rich Trott) [#&#8203;53168](https://github.com/nodejs/node/pull/53168) - \[[`9f8e34323d`](https://github.com/nodejs/node/commit/9f8e34323d)] - **doc**: mention pm is not enforced when using fd (Rafael Gonzaga) [#&#8203;53125](https://github.com/nodejs/node/pull/53125) - \[[`3ac775b015`](https://github.com/nodejs/node/commit/3ac775b015)] - **doc**: fix format in `esm.md` (Pop Moore) [#&#8203;53170](https://github.com/nodejs/node/pull/53170) - \[[`41b08bdcf7`](https://github.com/nodejs/node/commit/41b08bdcf7)] - **doc**: fix wrong variable name in example of `timers.tick()` (Deokjin Kim) [#&#8203;53147](https://github.com/nodejs/node/pull/53147) - \[[`698ea7aa5a`](https://github.com/nodejs/node/commit/698ea7aa5a)] - **doc**: fix wrong function name in example of `context.plan()` (Deokjin Kim) [#&#8203;53140](https://github.com/nodejs/node/pull/53140) - \[[`a99359d79d`](https://github.com/nodejs/node/commit/a99359d79d)] - **doc**: add note for windows users and symlinks (Aviv Keller) [#&#8203;53117](https://github.com/nodejs/node/pull/53117) - \[[`61ec2af292`](https://github.com/nodejs/node/commit/61ec2af292)] - **doc**: move all TLS-PSK documentation to its section (Alba Mendez) [#&#8203;35717](https://github.com/nodejs/node/pull/35717) - \[[`5e76c258f7`](https://github.com/nodejs/node/commit/5e76c258f7)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#&#8203;53118](https://github.com/nodejs/node/pull/53118) - \[[`1dc406ba62`](https://github.com/nodejs/node/commit/1dc406ba62)] - **doc**: improve ninja build for --built-in-modules-path (jakecastelli) [#&#8203;53007](https://github.com/nodejs/node/pull/53007) - \[[`2854585662`](https://github.com/nodejs/node/commit/2854585662)] - **doc**: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) [#&#8203;45131](https://github.com/nodejs/node/pull/45131) - \[[`3f432f829f`](https://github.com/nodejs/node/commit/3f432f829f)] - **doc**: remove unavailable youtube link in pull requests (Deokjin Kim) [#&#8203;52982](https://github.com/nodejs/node/pull/52982) - \[[`5e694026f1`](https://github.com/nodejs/node/commit/5e694026f1)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#&#8203;53008](https://github.com/nodejs/node/pull/53008) - \[[`231e44043e`](https://github.com/nodejs/node/commit/231e44043e)] - **doc**: add missing supported timer values in `timers.enable()` (Deokjin Kim) [#&#8203;52969](https://github.com/nodejs/node/pull/52969) - \[[`b8944f6938`](https://github.com/nodejs/node/commit/b8944f6938)] - **doc, http**: add `rejectNonStandardBodyWrites` option, clear its behaviour (jakecastelli) [#&#8203;53396](https://github.com/nodejs/node/pull/53396) - \[[`0354584738`](https://github.com/nodejs/node/commit/0354584738)] - **doc, meta**: organize contributing to Node-API guide (Aviv Keller) [#&#8203;53243](https://github.com/nodejs/node/pull/53243) - \[[`9ae3719c4e`](https://github.com/nodejs/node/commit/9ae3719c4e)] - **doc, meta**: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) [#&#8203;53235](https://github.com/nodejs/node/pull/53235) - \[[`621e073c96`](https://github.com/nodejs/node/commit/621e073c96)] - **fs**: do not crash if the watched file is removed while setting up watch (Matteo Collina) [#&#8203;53452](https://github.com/nodejs/node/pull/53452) - \[[`f00ee1c377`](https://github.com/nodejs/node/commit/f00ee1c377)] - **fs**: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) [#&#8203;53150](https://github.com/nodejs/node/pull/53150) - \[[`655b960418`](https://github.com/nodejs/node/commit/655b960418)] - **http2**: reject failed http2.connect when used with promisify (ehsankhfr) [#&#8203;53475](https://github.com/nodejs/node/pull/53475) - \[[`eb0b68bb29`](https://github.com/nodejs/node/commit/eb0b68bb29)] - **inspector**: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) [#&#8203;53473](https://github.com/nodejs/node/pull/53473) - \[[`1c0b89be4c`](https://github.com/nodejs/node/commit/1c0b89be4c)] - **lib**: fix typo in comment (codediverdev) [#&#8203;53543](https://github.com/nodejs/node/pull/53543) - \[[`55922d9cb0`](https://github.com/nodejs/node/commit/55922d9cb0)] - **lib**: remove the unused code (theanarkh) [#&#8203;53463](https://github.com/nodejs/node/pull/53463) - \[[`06374ef96b`](https://github.com/nodejs/node/commit/06374ef96b)] - **lib**: fix naming convention of `Symbol` (Deokjin Kim) [#&#8203;53387](https://github.com/nodejs/node/pull/53387) - \[[`d1a780039a`](https://github.com/nodejs/node/commit/d1a780039a)] - **lib**: fix timer leak (theanarkh) [#&#8203;53337](https://github.com/nodejs/node/pull/53337) - \[[`8689ce4b41`](https://github.com/nodejs/node/commit/8689ce4b41)] - **lib**: fix misleading argument of validateUint32 (Tobias Nießen) [#&#8203;53307](https://github.com/nodejs/node/pull/53307) - \[[`57d7bbf624`](https://github.com/nodejs/node/commit/57d7bbf624)] - **lib**: fix the name of the fetch global function (Gabriel Bota) [#&#8203;53227](https://github.com/nodejs/node/pull/53227) - \[[`23f086c363`](https://github.com/nodejs/node/commit/23f086c363)] - **lib**: do not call callback if socket is closed (theanarkh) [#&#8203;52829](https://github.com/nodejs/node/pull/52829) - \[[`f325c54c80`](https://github.com/nodejs/node/commit/f325c54c80)] - **meta**: use correct source for workflow in PR (Aviv Keller) [#&#8203;53490](https://github.com/nodejs/node/pull/53490) - \[[`8172412dbe`](https://github.com/nodejs/node/commit/8172412dbe)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53480](https://github.com/nodejs/node/pull/53480) - \[[`01b61d65d3`](https://github.com/nodejs/node/commit/01b61d65d3)] - **meta**: fix typo in dependency updates (Aviv Keller) [#&#8203;53471](https://github.com/nodejs/node/pull/53471) - \[[`12f5737cd3`](https://github.com/nodejs/node/commit/12f5737cd3)] - **meta**: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot\[bot]) [#&#8203;53245](https://github.com/nodejs/node/pull/53245) - \[[`102e4eee3c`](https://github.com/nodejs/node/commit/102e4eee3c)] - **meta**: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot\[bot]) [#&#8203;53248](https://github.com/nodejs/node/pull/53248) - \[[`5ba185580d`](https://github.com/nodejs/node/commit/5ba185580d)] - **meta**: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot\[bot]) [#&#8203;53247](https://github.com/nodejs/node/pull/53247) - \[[`9d186cce2b`](https://github.com/nodejs/node/commit/9d186cce2b)] - **meta**: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot\[bot]) [#&#8203;53246](https://github.com/nodejs/node/pull/53246) - \[[`29ab74009e`](https://github.com/nodejs/node/commit/29ab74009e)] - **meta**: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot\[bot]) [#&#8203;53244](https://github.com/nodejs/node/pull/53244) - \[[`bd4b593f30`](https://github.com/nodejs/node/commit/bd4b593f30)] - **meta**: remove `initializeCommand` from devcontainer (Aviv Keller) [#&#8203;53137](https://github.com/nodejs/node/pull/53137) - \[[`61b1f573cf`](https://github.com/nodejs/node/commit/61b1f573cf)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;53065](https://github.com/nodejs/node/pull/53065) - \[[`f3ba1eb72f`](https://github.com/nodejs/node/commit/f3ba1eb72f)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#&#8203;53136](https://github.com/nodejs/node/pull/53136) - \[[`67333a5796`](https://github.com/nodejs/node/commit/67333a5796)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#&#8203;52762](https://github.com/nodejs/node/pull/52762) - \[[`092aa09eb3`](https://github.com/nodejs/node/commit/092aa09eb3)] - **repl**: fix await object patterns without values (Luke Haas) [#&#8203;53331](https://github.com/nodejs/node/pull/53331) - \[[`554d25f526`](https://github.com/nodejs/node/commit/554d25f526)] - **src**: reset `process.versions` during pre-execution (Richard Lau) [#&#8203;53444](https://github.com/nodejs/node/pull/53444) - \[[`a0879ad628`](https://github.com/nodejs/node/commit/a0879ad628)] - **src**: fix dynamically linked OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456) - \[[`91c05f34de`](https://github.com/nodejs/node/commit/91c05f34de)] - **src**: remove `SetEncoding` from StringEncoder (Yagiz Nizipli) [#&#8203;53441](https://github.com/nodejs/node/pull/53441) - \[[`4f49384be5`](https://github.com/nodejs/node/commit/4f49384be5)] - **src**: fix typo in env.cc (EhsanKhaki) [#&#8203;53418](https://github.com/nodejs/node/pull/53418) - \[[`9730d1e186`](https://github.com/nodejs/node/commit/9730d1e186)] - **src**: avoid strcmp in favor of operator== (Tobias Nießen) [#&#8203;53439](https://github.com/nodejs/node/pull/53439) - \[[`436ad8ceb9`](https://github.com/nodejs/node/commit/436ad8ceb9)] - **src**: print v8::OOMDetails::detail when it's available (Joyee Cheung) [#&#8203;53360](https://github.com/nodejs/node/pull/53360) - \[[`f773b289eb`](https://github.com/nodejs/node/commit/f773b289eb)] - **src**: fix IsIPAddress for IPv6 (Hüseyin Açacak) [#&#8203;53400](https://github.com/nodejs/node/pull/53400) - \[[`7705efd860`](https://github.com/nodejs/node/commit/7705efd860)] - **src**: fix permission inspector crash (theanarkh) [#&#8203;53389](https://github.com/nodejs/node/pull/53389) - \[[`260d8d9ae1`](https://github.com/nodejs/node/commit/260d8d9ae1)] - **src**: use \__FUNCSIG\_\_ on Windows in backtrace (Joyee Cheung) [#&#8203;53135](https://github.com/nodejs/node/pull/53135) - \[[`3b79e9c24e`](https://github.com/nodejs/node/commit/3b79e9c24e)] - **src**: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) [#&#8203;52905](https://github.com/nodejs/node/pull/52905) - \[[`32839c63cb`](https://github.com/nodejs/node/commit/32839c63cb)] - **src**: reduce unnecessary `GetCwd` calls (Yagiz Nizipli) [#&#8203;53064](https://github.com/nodejs/node/pull/53064) - \[[`840dd092ce`](https://github.com/nodejs/node/commit/840dd092ce)] - **src**: improve node::Dotenv declarations (Tobias Nießen) [#&#8203;52973](https://github.com/nodejs/node/pull/52973) - \[[`2bcce3255b`](https://github.com/nodejs/node/commit/2bcce3255b)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#&#8203;53124](https://github.com/nodejs/node/pull/53124) - \[[`e092c62a22`](https://github.com/nodejs/node/commit/e092c62a22)] - **stream**: update outdated highwatermark doc (Jay Kim) [#&#8203;53494](https://github.com/nodejs/node/pull/53494) - \[[`71af3e8172`](https://github.com/nodejs/node/commit/71af3e8172)] - **stream**: support dispose in writable (Benjamin Gruenbaum) [#&#8203;48547](https://github.com/nodejs/node/pull/48547) - \[[`33a15be32f`](https://github.com/nodejs/node/commit/33a15be32f)] - **stream**: callback should be called when pendingcb is 0 (jakecastelli) [#&#8203;53438](https://github.com/nodejs/node/pull/53438) - \[[`1b46ebbf69`](https://github.com/nodejs/node/commit/1b46ebbf69)] - **stream**: make sure \_destroy is called (jakecastelli) [#&#8203;53213](https://github.com/nodejs/node/pull/53213) - \[[`9f95d41947`](https://github.com/nodejs/node/commit/9f95d41947)] - **stream**: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) [#&#8203;53261](https://github.com/nodejs/node/pull/53261) - \[[`d02651c9d6`](https://github.com/nodejs/node/commit/d02651c9d6)] - **stream**: micro-optimize writable condition (Orgad Shaneh) [#&#8203;53189](https://github.com/nodejs/node/pull/53189) - \[[`324070c410`](https://github.com/nodejs/node/commit/324070c410)] - **stream**: fix memory usage regression in writable (Orgad Shaneh) [#&#8203;53188](https://github.com/nodejs/node/pull/53188) - \[[`48138afd35`](https://github.com/nodejs/node/commit/48138afd35)] - **stream**: fixes for webstreams (Mattias Buelens) [#&#8203;51168](https://github.com/nodejs/node/pull/51168) - \[[`24f078a22b`](https://github.com/nodejs/node/commit/24f078a22b)] - **test**: mark `test-benchmark-crypto` as flaky (Antoine du Hamel) [#&#8203;52955](https://github.com/nodejs/node/pull/52955) - \[[`0d69ce3474`](https://github.com/nodejs/node/commit/0d69ce3474)] - **test**: extend env for `test-node-output-errors` (Richard Lau) [#&#8203;53535](https://github.com/nodejs/node/pull/53535) - \[[`1aaaad8518`](https://github.com/nodejs/node/commit/1aaaad8518)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#&#8203;53477](https://github.com/nodejs/node/pull/53477) - \[[`54e0ba8771`](https://github.com/nodejs/node/commit/54e0ba8771)] - **test**: check against run-time OpenSSL version (Richard Lau) [#&#8203;53456](https://github.com/nodejs/node/pull/53456) - \[[`059e47c320`](https://github.com/nodejs/node/commit/059e47c320)] - **test**: update tests for OpenSSL 3.0.14 (Richard Lau) [#&#8203;53373](https://github.com/nodejs/node/pull/53373) - \[[`49e6f33021`](https://github.com/nodejs/node/commit/49e6f33021)] - **test**: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) [#&#8203;53292](https://github.com/nodejs/node/pull/53292) - \[[`292d13a289`](https://github.com/nodejs/node/commit/292d13a289)] - **test**: update TLS tests for OpenSSL 3.2 (Richard Lau) [#&#8203;53384](https://github.com/nodejs/node/pull/53384) - \[[`82017c90bb`](https://github.com/nodejs/node/commit/82017c90bb)] - **test**: fix test when compiled without engine support (Richard Lau) [#&#8203;53232](https://github.com/nodejs/node/pull/53232) - \[[`a54090b385`](https://github.com/nodejs/node/commit/a54090b385)] - **test**: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) [#&#8203;53229](https://github.com/nodejs/node/pull/53229) - \[[`3a1693421d`](https://github.com/nodejs/node/commit/3a1693421d)] - **test**: fix Windows native test suites (Stefan Stojanovic) [#&#8203;53173](https://github.com/nodejs/node/pull/53173) - \[[`2b07d01272`](https://github.com/nodejs/node/commit/2b07d01272)] - **test**: skip `test-setproctitle` when `ps` is not available (Antoine du Hamel) [#&#8203;53104](https://github.com/nodejs/node/pull/53104) - \[[`0051d1c83d`](https://github.com/nodejs/node/commit/0051d1c83d)] - **test**: increase allocation so it fails for the test (Adam Majer) [#&#8203;53099](https://github.com/nodejs/node/pull/53099) - \[[`048cbe3304`](https://github.com/nodejs/node/commit/048cbe3304)] - **test**: remove timers from test-tls-socket-close (Luigi Pinca) [#&#8203;53019](https://github.com/nodejs/node/pull/53019) - \[[`8653d9223e`](https://github.com/nodejs/node/commit/8653d9223e)] - **test**: replace `.substr` with `.slice` (Antoine du Hamel) [#&#8203;53070](https://github.com/nodejs/node/pull/53070) - \[[`d74bda4241`](https://github.com/nodejs/node/commit/d74bda4241)] - **test**: add AbortController to knownGlobals (Luigi Pinca) [#&#8203;53020](https://github.com/nodejs/node/pull/53020) - \[[`f29e1e9838`](https://github.com/nodejs/node/commit/f29e1e9838)] - **test**: skip unstable shadow realm gc tests (Chengzhong Wu) [#&#8203;52855](https://github.com/nodejs/node/pull/52855) - \[[`dfa498697e`](https://github.com/nodejs/node/commit/dfa498697e)] - **test,doc**: enable running embedtest for Windows (Vladimir Morozov) [#&#8203;52646](https://github.com/nodejs/node/pull/52646) - \[[`0381817f1d`](https://github.com/nodejs/node/commit/0381817f1d)] - **test_runner**: calculate executed lines using source map (Moshe Atlow) [#&#8203;53315](https://github.com/nodejs/node/pull/53315) - \[[`9d3699b5b0`](https://github.com/nodejs/node/commit/9d3699b5b0)] - **test_runner**: handle file rename and deletion under watch mode (jakecastelli) [#&#8203;53114](https://github.com/nodejs/node/pull/53114) - \[[`9a36258ca0`](https://github.com/nodejs/node/commit/9a36258ca0)] - **test_runner**: refactor to use min/max of `validateInteger` (Deokjin Kim) [#&#8203;53148](https://github.com/nodejs/node/pull/53148) - \[[`a03a4c7bdd`](https://github.com/nodejs/node/commit/a03a4c7bdd)] - **(SEMVER-MINOR)** **test_runner**: add context.fullName (Colin Ihrig) [#&#8203;53169](https://github.com/nodejs/node/pull/53169) - \[[`a72157077a`](https://github.com/nodejs/node/commit/a72157077a)] - **test_runner**: fix t.assert methods (Colin Ihrig) [#&#8203;53049](https://github.com/nodejs/node/pull/53049) - \[[`ba764db9ab`](https://github.com/nodejs/node/commit/ba764db9ab)] - **test_runner**: avoid error when coverage line not found (Moshe Atlow) [#&#8203;53000](https://github.com/nodejs/node/pull/53000) - \[[`3a4a0ebd06`](https://github.com/nodejs/node/commit/3a4a0ebd06)] - **test_runner,doc**: align documentation with actual stdout/stderr behavior (Moshe Atlow) [#&#8203;53131](https://github.com/nodejs/node/pull/53131) - \[[`6e6646bdd5`](https://github.com/nodejs/node/commit/6e6646bdd5)] - **tls**: check result of SSL_CTX_set_\*\_proto_version (Tobias Nießen) [#&#8203;53459](https://github.com/nodejs/node/pull/53459) - \[[`2aceed4297`](https://github.com/nodejs/node/commit/2aceed4297)] - **tls**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#&#8203;53436](https://github.com/nodejs/node/pull/53436) - \[[`faa5cac18c`](https://github.com/nodejs/node/commit/faa5cac18c)] - **tls**: use SSL_get_peer_tmp_key (Tobias Nießen) [#&#8203;53366](https://github.com/nodejs/node/pull/53366) - \[[`68fcbb635e`](https://github.com/nodejs/node/commit/68fcbb635e)] - **tls**: fix negative sessionTimeout handling (Tobias Nießen) [#&#8203;53002](https://github.com/nodejs/node/pull/53002) - \[[`61a1c43ef1`](https://github.com/nodejs/node/commit/61a1c43ef1)] - **tools**: fix skip detection of test runner output (Richard Lau) [#&#8203;53545](https://github.com/nodejs/node/pull/53545) - \[[`53a7b6e1c0`](https://github.com/nodejs/node/commit/53a7b6e1c0)] - **tools**: fix c-ares update script (Marco Ippolito) [#&#8203;53414](https://github.com/nodejs/node/pull/53414) - \[[`3bd5f46a15`](https://github.com/nodejs/node/commit/3bd5f46a15)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#&#8203;53158](https://github.com/nodejs/node/pull/53158) - \[[`daab9e170f`](https://github.com/nodejs/node/commit/daab9e170f)] - **tools**: do not run Corepack code before it's reviewed (Antoine du Hamel) [#&#8203;53405](https://github.com/nodejs/node/pull/53405) - \[[`d18a67f937`](https://github.com/nodejs/node/commit/d18a67f937)] - **tools**: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) [#&#8203;53212](https://github.com/nodejs/node/pull/53212) - \[[`e9b7a52848`](https://github.com/nodejs/node/commit/e9b7a52848)] - **tools**: add stream label on PR when related files being changed in lib (jakecastelli) [#&#8203;53269](https://github.com/nodejs/node/pull/53269) - \[[`04d78dd56d`](https://github.com/nodejs/node/commit/04d78dd56d)] - **tools**: remove no-goma arg from make-v8 script (Michaël Zasso) [#&#8203;53336](https://github.com/nodejs/node/pull/53336) - \[[`37e725a500`](https://github.com/nodejs/node/commit/37e725a500)] - **tools**: use sccache Github action (Moshe Atlow) [#&#8203;53316](https://github.com/nodejs/node/pull/53316) - \[[`2a1fde7e32`](https://github.com/nodejs/node/commit/2a1fde7e32)] - **tools**: update error message for Type Error (Aviv Keller) [#&#8203;53047](https://github.com/nodejs/node/pull/53047) - \[[`8f5fb4192d`](https://github.com/nodejs/node/commit/8f5fb4192d)] - ***Revert*** "**tools**: add --certify-safe to nci-ci" (Antoine du Hamel) [#&#8203;53098](https://github.com/nodejs/node/pull/53098) - \[[`69b828f5a5`](https://github.com/nodejs/node/commit/69b828f5a5)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#&#8203;53107](https://github.com/nodejs/node/pull/53107) - \[[`1a2f3ab4f5`](https://github.com/nodejs/node/commit/1a2f3ab4f5)] - **watch**: fix variable naming (jakecastelli) [#&#8203;53101](https://github.com/nodejs/node/pull/53101) ### [`v20.15.1`](https://github.com/nodejs/node/releases/tag/v20.15.1): 2024-07-08, Version 20.15.1 &#x27;Iron&#x27; (LTS), @&#8203;RafaelGSS [Compare Source](https://github.com/nodejs/node/compare/v20.15.0...v20.15.1) This is a security release. ##### Notable Changes - CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) - CVE-2024-22020 - Bypass network import restriction via data URL (Medium) - CVE-2024-22018 - fs.lstat bypasses permission model (Low) - CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low) - CVE-2024-37372 - Permission model improperly processes UNC paths (Low) ##### Commits - \[[`60e184a6e4`](https://github.com/nodejs/node/commit/60e184a6e4)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522) - \[[`025cbd6936`](https://github.com/nodejs/node/commit/025cbd6936)] - **lib,permission**: support fs.lstat (RafaelGSS) [nodejs-private/node-private#486](https://github.com/nodejs-private/node-private/pull/486) - \[[`d38ea17341`](https://github.com/nodejs/node/commit/d38ea17341)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584) - \[[`1ba624cd3b`](https://github.com/nodejs/node/commit/1ba624cd3b)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596) - \[[`2524d00c3d`](https://github.com/nodejs/node/commit/2524d00c3d)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581) - \[[`484cb0f13c`](https://github.com/nodejs/node/commit/484cb0f13c)] - **src,permission**: resolve path on fs_permission (Rafael Gonzaga) [#&#8203;52761](https://github.com/nodejs/node/pull/52761) ### [`v20.15.0`](https://github.com/nodejs/node/releases/tag/v20.15.0): 2024-06-20, Version 20.15.0 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.14.0...v20.15.0) ##### test_runner: support test plans It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail. ```js test('top level test', (t) => { t.plan(2); t.assert.ok('some relevant assertion here'); t.subtest('subtest', () => {}); }); ``` Contributed by Colin Ihrig in [#&#8203;52860](https://github.com/nodejs/node/pull/52860) ##### inspector: introduce the `--inspect-wait` flag This release introduces the `--inspect-wait` flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike `--inspect-brk`, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established. Contributed by Kohei Ueno in [#&#8203;52734](https://github.com/nodejs/node/pull/52734) ##### zlib: expose zlib.crc32() This release exposes the crc32() function from zlib to user-land. It computes a 32-bit Cyclic Redundancy Check checksum of data. If value is specified, it is used as the starting value of the checksum, otherwise, 0 is used as the starting value. The CRC algorithm is designed to compute checksums and to detect error in data transmission. It's not suitable for cryptographic authentication. ```js const zlib = require('node:zlib'); const { Buffer } = require('node:buffer'); let crc = zlib.crc32('hello'); // 907060870 crc = zlib.crc32('world', crc); // 4192936109 crc = zlib.crc32(Buffer.from('hello', 'utf16le')); // 1427272415 crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc); // 4150509955 ``` Contributed by Joyee Cheung in [#&#8203;52692](https://github.com/nodejs/node/pull/52692) ##### cli: allow running wasm in limited vmem with --disable-wasm-trap-handler By default, Node.js enables trap-handler-based WebAssembly bound checks. As a result, V8 does not need to insert inline bound checks int the code compiled from WebAssembly which may speedup WebAssembly execution significantly, but this optimization requires allocating a big virtual memory cage (currently 10GB). If the Node.js process does not have access to a large enough virtual memory address space due to system configurations or hardware limitations, users won't be able to run any WebAssembly that involves allocation in this virtual memory cage and will see an out-of-memory error. ```console $ ulimit -v 5000000 $ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });" [eval]:1 new WebAssembly.Memory({ initial: 10, maximum: 100 }); ^ RangeError: WebAssembly.Memory(): could not allocate memory at [eval]:1:1 at runScriptInThisContext (node:internal/vm:209:10) at node:internal/process/execution:118:14 at [eval]-wrapper:6:24 at runScript (node:internal/process/execution:101:62) at evalScript (node:internal/process/execution:136:3) at node:internal/main/eval_string:49:3 ``` `--disable-wasm-trap-handler` disables this optimization so that users can at least run WebAssembly (with a less optimial performance) when the virtual memory address space available to their Node.js process is lower than what the V8 WebAssembly memory cage needs. Contributed by Joyee Cheung in [#&#8203;52766](https://github.com/nodejs/node/pull/52766) ##### Other Notable Changes - \[[`12512c3d0e`](https://github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874) - \[[`9d485b40bb`](https://github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`e98c305f52`](https://github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`dce0300896`](https://github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) ##### Commits - \[[`227093bfec`](https://github.com/nodejs/node/commit/227093bfec)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#&#8203;51805](https://github.com/nodejs/node/pull/51805) - \[[`184cfe5a71`](https://github.com/nodejs/node/commit/184cfe5a71)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#&#8203;51746](https://github.com/nodejs/node/pull/51746) - \[[`8b3e83bb53`](https://github.com/nodejs/node/commit/8b3e83bb53)] - **buffer**: even faster atob (Daniel Lemire) [#&#8203;52443](https://github.com/nodejs/node/pull/52443) - \[[`8d628c3255`](https://github.com/nodejs/node/commit/8d628c3255)] - **buffer**: use size_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#&#8203;48033](https://github.com/nodejs/node/pull/48033) - \[[`16ae2b2933`](https://github.com/nodejs/node/commit/16ae2b2933)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#&#8203;52588](https://github.com/nodejs/node/pull/52588) - \[[`48c15d0dcd`](https://github.com/nodejs/node/commit/48c15d0dcd)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#&#8203;52913](https://github.com/nodejs/node/pull/52913) - \[[`1be8232d17`](https://github.com/nodejs/node/commit/1be8232d17)] - **build**: drop base64 dep in GN build (Cheng) [#&#8203;52856](https://github.com/nodejs/node/pull/52856) - \[[`918962d6e7`](https://github.com/nodejs/node/commit/918962d6e7)] - **build**: make simdjson a public dep in GN build (Cheng) [#&#8203;52755](https://github.com/nodejs/node/pull/52755) - \[[`5215b6fd8e`](https://github.com/nodejs/node/commit/5215b6fd8e)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#&#8203;51394](https://github.com/nodejs/node/pull/51394) - \[[`473fa73857`](https://github.com/nodejs/node/commit/473fa73857)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`954d2aded4`](https://github.com/nodejs/node/commit/954d2aded4)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#&#8203;50317](https://github.com/nodejs/node/pull/50317) - \[[`794e450ea7`](https://github.com/nodejs/node/commit/794e450ea7)] - **console**: colorize console error and warn (Jithil P Ponnan) [#&#8203;51629](https://github.com/nodejs/node/pull/51629) - \[[`0fb7c18f10`](https://github.com/nodejs/node/commit/0fb7c18f10)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#&#8203;49030](https://github.com/nodejs/node/pull/49030) - \[[`cd1415c8b2`](https://github.com/nodejs/node/commit/cd1415c8b2)] - ***Revert*** "**crypto**: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) [#&#8203;53390](https://github.com/nodejs/node/pull/53390) - \[[`b774544bb1`](https://github.com/nodejs/node/commit/b774544bb1)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#&#8203;52924](https://github.com/nodejs/node/pull/52924) - \[[`da4dbfc5fd`](https://github.com/nodejs/node/commit/da4dbfc5fd)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#&#8203;52960](https://github.com/nodejs/node/pull/52960) - \[[`2f3f2ff8af`](https://github.com/nodejs/node/commit/2f3f2ff8af)] - **doc**: update hljs with the latest styles (Aviv Keller) [#&#8203;52911](https://github.com/nodejs/node/pull/52911) - \[[`3a1d17a9b1`](https://github.com/nodejs/node/commit/3a1d17a9b1)] - **doc**: mention quicker way to build docs (Alex Crawford) [#&#8203;52937](https://github.com/nodejs/node/pull/52937) - \[[`be309bd19d`](https://github.com/nodejs/node/commit/be309bd19d)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#&#8203;52906](https://github.com/nodejs/node/pull/52906) - \[[`e62c6e2684`](https://github.com/nodejs/node/commit/e62c6e2684)] - **doc**: document pipeline with `end` option (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970) - \[[`af27225cf6`](https://github.com/nodejs/node/commit/af27225cf6)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#&#8203;39412](https://github.com/nodejs/node/pull/39412) - \[[`086626f9b1`](https://github.com/nodejs/node/commit/086626f9b1)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#&#8203;49091](https://github.com/nodejs/node/pull/49091) - \[[`3aa3337a00`](https://github.com/nodejs/node/commit/3aa3337a00)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#&#8203;51653](https://github.com/nodejs/node/pull/51653) - \[[`585f2a2e7f`](https://github.com/nodejs/node/commit/585f2a2e7f)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#&#8203;48170](https://github.com/nodejs/node/pull/48170) - \[[`4bf3d44e1d`](https://github.com/nodejs/node/commit/4bf3d44e1d)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#&#8203;52453](https://github.com/nodejs/node/pull/52453) - \[[`ae5d47dde3`](https://github.com/nodejs/node/commit/ae5d47dde3)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#&#8203;52842](https://github.com/nodejs/node/pull/52842) - \[[`1e429d10d3`](https://github.com/nodejs/node/commit/1e429d10d3)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#&#8203;52896](https://github.com/nodejs/node/pull/52896) - \[[`3df3e37cdb`](https://github.com/nodejs/node/commit/3df3e37cdb)] - **doc**: add names next to release key bash commands (Aviv Keller) [#&#8203;52878](https://github.com/nodejs/node/pull/52878) - \[[`12512c3d0e`](https://github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#&#8203;52874](https://github.com/nodejs/node/pull/52874) - \[[`97e0fef019`](https://github.com/nodejs/node/commit/97e0fef019)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#&#8203;52798](https://github.com/nodejs/node/pull/52798) - \[[`91fadac162`](https://github.com/nodejs/node/commit/91fadac162)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#&#8203;38056](https://github.com/nodejs/node/pull/38056) - \[[`a3b20126fd`](https://github.com/nodejs/node/commit/a3b20126fd)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#&#8203;34213](https://github.com/nodejs/node/pull/34213) - \[[`9587ae9b5b`](https://github.com/nodejs/node/commit/9587ae9b5b)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#&#8203;52757](https://github.com/nodejs/node/pull/52757) - \[[`6ea72a53c3`](https://github.com/nodejs/node/commit/6ea72a53c3)] - **doc**: add test_runner to subsystem (Raz Luvaton) [#&#8203;52774](https://github.com/nodejs/node/pull/52774) - \[[`972eafd983`](https://github.com/nodejs/node/commit/972eafd983)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#&#8203;51921](https://github.com/nodejs/node/pull/51921) - \[[`74753ed1fe`](https://github.com/nodejs/node/commit/74753ed1fe)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#&#8203;39463](https://github.com/nodejs/node/pull/39463) - \[[`75dd009649`](https://github.com/nodejs/node/commit/75dd009649)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#&#8203;43876](https://github.com/nodejs/node/pull/43876) - \[[`7d38c2e012`](https://github.com/nodejs/node/commit/7d38c2e012)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#&#8203;52178](https://github.com/nodejs/node/pull/52178) - \[[`8cb13120d3`](https://github.com/nodejs/node/commit/8cb13120d3)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#&#8203;52734](https://github.com/nodejs/node/pull/52734) - \[[`d5ab1de1fd`](https://github.com/nodejs/node/commit/d5ab1de1fd)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#&#8203;52932](https://github.com/nodejs/node/pull/52932) - \[[`f82d086e90`](https://github.com/nodejs/node/commit/f82d086e90)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#&#8203;52915](https://github.com/nodejs/node/pull/52915) - \[[`121ea13b50`](https://github.com/nodejs/node/commit/121ea13b50)] - **process**: improve event-loop (Aras Abbasi) [#&#8203;52108](https://github.com/nodejs/node/pull/52108) - \[[`eceac784aa`](https://github.com/nodejs/node/commit/eceac784aa)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#&#8203;40661](https://github.com/nodejs/node/pull/40661) - \[[`89a910be82`](https://github.com/nodejs/node/commit/89a910be82)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#&#8203;52527](https://github.com/nodejs/node/pull/52527) - \[[`033f985e8a`](https://github.com/nodejs/node/commit/033f985e8a)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#&#8203;52164](https://github.com/nodejs/node/pull/52164) - \[[`95128399f8`](https://github.com/nodejs/node/commit/95128399f8)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#&#8203;46681](https://github.com/nodejs/node/pull/46681) - \[[`b162aeae9e`](https://github.com/nodejs/node/commit/b162aeae9e)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#&#8203;52820](https://github.com/nodejs/node/pull/52820) - \[[`2dcbf1894a`](https://github.com/nodejs/node/commit/2dcbf1894a)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#&#8203;52886](https://github.com/nodejs/node/pull/52886) - \[[`978ee0a635`](https://github.com/nodejs/node/commit/978ee0a635)] - **src**: only apply fix in main thread (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702) - \[[`8fc52b38c6`](https://github.com/nodejs/node/commit/8fc52b38c6)] - **src**: fix test local edge case (Paolo Insogna) [#&#8203;52702](https://github.com/nodejs/node/pull/52702) - \[[`d02907ecc4`](https://github.com/nodejs/node/commit/d02907ecc4)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#&#8203;52545](https://github.com/nodejs/node/pull/52545) - \[[`af29120fa7`](https://github.com/nodejs/node/commit/af29120fa7)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#&#8203;48847](https://github.com/nodejs/node/pull/48847) - \[[`a5f3dd137c`](https://github.com/nodejs/node/commit/a5f3dd137c)] - **string_decoder**: throw an error when writing a too long buffer (zhenweijin) [#&#8203;52215](https://github.com/nodejs/node/pull/52215) - \[[`65fa95d57d`](https://github.com/nodejs/node/commit/65fa95d57d)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#&#8203;31137](https://github.com/nodejs/node/pull/31137) - \[[`0513e07805`](https://github.com/nodejs/node/commit/0513e07805)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#&#8203;49790](https://github.com/nodejs/node/pull/49790) - \[[`1d01325928`](https://github.com/nodejs/node/commit/1d01325928)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#&#8203;34066](https://github.com/nodejs/node/pull/34066) - \[[`7dda156872`](https://github.com/nodejs/node/commit/7dda156872)] - **test**: add fuzzer for native/js string conversion (Adam Korczynski) [#&#8203;51120](https://github.com/nodejs/node/pull/51120) - \[[`5fb829b340`](https://github.com/nodejs/node/commit/5fb829b340)] - **test**: add fuzzer for `ClientHelloParser` (AdamKorcz) [#&#8203;51088](https://github.com/nodejs/node/pull/51088) - \[[`cc74bf789f`](https://github.com/nodejs/node/commit/cc74bf789f)] - **test**: fix broken env fuzzer by initializing process (AdamKorcz) [#&#8203;51080](https://github.com/nodejs/node/pull/51080) - \[[`800b6f65cf`](https://github.com/nodejs/node/commit/800b6f65cf)] - **test**: replace `forEach()` in `test-stream-pipe-unpipe-stream` (Dario) [#&#8203;50786](https://github.com/nodejs/node/pull/50786) - \[[`d08c9a6a31`](https://github.com/nodejs/node/commit/d08c9a6a31)] - **test**: test pipeline `end` on transform streams (Alois Klink) [#&#8203;48970](https://github.com/nodejs/node/pull/48970) - \[[`0be8123ede`](https://github.com/nodejs/node/commit/0be8123ede)] - **test**: improve coverage of lib/readline.js (Rongjian Zhang) [#&#8203;38646](https://github.com/nodejs/node/pull/38646) - \[[`410224415c`](https://github.com/nodejs/node/commit/410224415c)] - **test**: updated for each to for of in test file (lyannel) [#&#8203;50308](https://github.com/nodejs/node/pull/50308) - \[[`556e9a2127`](https://github.com/nodejs/node/commit/556e9a2127)] - **test**: move `test-http-server-request-timeouts-mixed` to sequential (Madhuri) [#&#8203;45722](https://github.com/nodejs/node/pull/45722) - \[[`0638274c07`](https://github.com/nodejs/node/commit/0638274c07)] - **test**: fix DNS cancel tests (Szymon Marczak) [#&#8203;44432](https://github.com/nodejs/node/pull/44432) - \[[`311bdc62bd`](https://github.com/nodejs/node/commit/311bdc62bd)] - **test**: add http agent to `executionAsyncResource` (psj-tar-gz) [#&#8203;34966](https://github.com/nodejs/node/pull/34966) - \[[`6001b164ab`](https://github.com/nodejs/node/commit/6001b164ab)] - **test**: reduce memory usage of test-worker-stdio (Adam Majer) [#&#8203;37769](https://github.com/nodejs/node/pull/37769) - \[[`986bfa26e9`](https://github.com/nodejs/node/commit/986bfa26e9)] - **test**: add common.expectRequiredModule() (Joyee Cheung) [#&#8203;52868](https://github.com/nodejs/node/pull/52868) - \[[`2246d4fd1e`](https://github.com/nodejs/node/commit/2246d4fd1e)] - **test**: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) [#&#8203;52781](https://github.com/nodejs/node/pull/52781) - \[[`1dce5dea0b`](https://github.com/nodejs/node/commit/1dce5dea0b)] - **test**: skip some console tests on dumb terminal (Adam Majer) [#&#8203;37770](https://github.com/nodejs/node/pull/37770) - \[[`0addeb240c`](https://github.com/nodejs/node/commit/0addeb240c)] - **test**: skip v8-updates/test-linux-perf-logger (Michaël Zasso) [#&#8203;52821](https://github.com/nodejs/node/pull/52821) - \[[`56e19e38f3`](https://github.com/nodejs/node/commit/56e19e38f3)] - **test**: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) [#&#8203;52751](https://github.com/nodejs/node/pull/52751) - \[[`0c5e58958c`](https://github.com/nodejs/node/commit/0c5e58958c)] - **test, crypto**: use correct object on assert (响马) [#&#8203;51820](https://github.com/nodejs/node/pull/51820) - \[[`d54aa47ec1`](https://github.com/nodejs/node/commit/d54aa47ec1)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#&#8203;52860](https://github.com/nodejs/node/pull/52860) - \[[`0289a023a5`](https://github.com/nodejs/node/commit/0289a023a5)] - **test_runner**: fix watch mode race condition (Moshe Atlow) [#&#8203;52954](https://github.com/nodejs/node/pull/52954) - \[[`cf817e192e`](https://github.com/nodejs/node/commit/cf817e192e)] - **test_runner**: preserve hook promise when executed twice (Moshe Atlow) [#&#8203;52791](https://github.com/nodejs/node/pull/52791) - \[[`de541235fe`](https://github.com/nodejs/node/commit/de541235fe)] - **tools**: fix v8-update workflow (Michaël Zasso) [#&#8203;52957](https://github.com/nodejs/node/pull/52957) - \[[`f6290bc327`](https://github.com/nodejs/node/commit/f6290bc327)] - **tools**: add --certify-safe to nci-ci (Matteo Collina) [#&#8203;52940](https://github.com/nodejs/node/pull/52940) - \[[`0830b3115d`](https://github.com/nodejs/node/commit/0830b3115d)] - **tools**: fix doc update action (Marco Ippolito) [#&#8203;52890](https://github.com/nodejs/node/pull/52890) - \[[`9d485b40bb`](https://github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`e98c305f52`](https://github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`dce0300896`](https://github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#&#8203;52766](https://github.com/nodejs/node/pull/52766) - \[[`57006001ec`](https://github.com/nodejs/node/commit/57006001ec)] - **tools**: prepare custom rules for ESLint v9 (Michaël Zasso) [#&#8203;52889](https://github.com/nodejs/node/pull/52889) - \[[`403a4a7557`](https://github.com/nodejs/node/commit/403a4a7557)] - **tools**: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) [#&#8203;52836](https://github.com/nodejs/node/pull/52836) - \[[`01eff5860e`](https://github.com/nodejs/node/commit/01eff5860e)] - **tools**: update `gr2m/create-or-update-pull-request-action` (Antoine du Hamel) [#&#8203;52843](https://github.com/nodejs/node/pull/52843) - \[[`514f01ed59`](https://github.com/nodejs/node/commit/514f01ed59)] - **tools**: use sccache GitHub action (Michaël Zasso) [#&#8203;52839](https://github.com/nodejs/node/pull/52839) - \[[`8f8fb91927`](https://github.com/nodejs/node/commit/8f8fb91927)] - **tools**: specify a commit-message for V8 update workflow (Antoine du Hamel) [#&#8203;52844](https://github.com/nodejs/node/pull/52844) - \[[`b83fbf8709`](https://github.com/nodejs/node/commit/b83fbf8709)] - **tools**: fix V8 update workflow (Antoine du Hamel) [#&#8203;52822](https://github.com/nodejs/node/pull/52822) - \[[`be9d6f2176`](https://github.com/nodejs/node/commit/be9d6f2176)] - **url,tools,benchmark**: replace deprecated `substr()` (Jungku Lee) [#&#8203;51546](https://github.com/nodejs/node/pull/51546) - \[[`7603a51d45`](https://github.com/nodejs/node/commit/7603a51d45)] - **util**: fix `%s` format behavior with `Symbol.toPrimitive` (Chenyu Yang) [#&#8203;50992](https://github.com/nodejs/node/pull/50992) - \[[`d7eba50cf3`](https://github.com/nodejs/node/commit/d7eba50cf3)] - **util**: improve `isInsideNodeModules` (uzlopak) [#&#8203;52147](https://github.com/nodejs/node/pull/52147) - \[[`4ae4f7e517`](https://github.com/nodejs/node/commit/4ae4f7e517)] - **watch**: allow listening for grouped changes (Matthieu Sieben) [#&#8203;52722](https://github.com/nodejs/node/pull/52722) - \[[`1ff8f318c0`](https://github.com/nodejs/node/commit/1ff8f318c0)] - **watch**: enable passthrough ipc in watch mode (Zack) [#&#8203;50890](https://github.com/nodejs/node/pull/50890) - \[[`739adf90b1`](https://github.com/nodejs/node/commit/739adf90b1)] - **watch**: fix arguments parsing (Moshe Atlow) [#&#8203;52760](https://github.com/nodejs/node/pull/52760) - \[[`5161d95c30`](https://github.com/nodejs/node/commit/5161d95c30)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#&#8203;52692](https://github.com/nodejs/node/pull/52692) ### [`v20.14.0`](https://github.com/nodejs/node/releases/tag/v20.14.0): 2024-05-28, Version 20.14.0 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.13.1...v20.14.0) ##### Notable Changes - \[[`28d2baa17c`](https://github.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730) - \[[`77e2bf029a`](https://github.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#&#8203;52038](https://github.com/nodejs/node/pull/52038) ##### Commits - \[[`e3ad05d8b0`](https://github.com/nodejs/node/commit/e3ad05d8b0)] - **deps**: V8: cherry-pick [`500de8b`](https://github.com/nodejs/node/commit/500de8bd371b) (Richard Lau) [#&#8203;52676](https://github.com/nodejs/node/pull/52676) - \[[`053282e661`](https://github.com/nodejs/node/commit/053282e661)] - **deps**: V8: backport [`c4be0a9`](https://github.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183) - \[[`200dadb879`](https://github.com/nodejs/node/commit/200dadb879)] - **deps**: V8: cherry-pick [`f8d5e57`](https://github.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#&#8203;52183](https://github.com/nodejs/node/pull/52183) - \[[`f5cd125e02`](https://github.com/nodejs/node/commit/f5cd125e02)] - **deps**: update googletest to [`fa6de7f`](https://github.com/nodejs/node/commit/fa6de7f) (Node.js GitHub Bot) [#&#8203;52949](https://github.com/nodejs/node/pull/52949) - \[[`bbbfd7f4e1`](https://github.com/nodejs/node/commit/bbbfd7f4e1)] - **deps**: update corepack to 0.28.1 (Node.js GitHub Bot) [#&#8203;52946](https://github.com/nodejs/node/pull/52946) - \[[`7ba30a57a6`](https://github.com/nodejs/node/commit/7ba30a57a6)] - **deps**: update simdutf to 5.2.8 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727) - \[[`b21a480a28`](https://github.com/nodejs/node/commit/b21a480a28)] - **deps**: update simdutf to 5.2.6 (Node.js GitHub Bot) [#&#8203;52727](https://github.com/nodejs/node/pull/52727) - \[[`6cfad60d97`](https://github.com/nodejs/node/commit/6cfad60d97)] - **deps**: update googletest to [`2d16ed0`](https://github.com/nodejs/node/commit/2d16ed0) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`34708d1429`](https://github.com/nodejs/node/commit/34708d1429)] - **deps**: update googletest to [`d83fee1`](https://github.com/nodejs/node/commit/d83fee1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`c1d3e558e8`](https://github.com/nodejs/node/commit/c1d3e558e8)] - **deps**: update googletest to [`5a37b51`](https://github.com/nodejs/node/commit/5a37b51) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`69959d0fca`](https://github.com/nodejs/node/commit/69959d0fca)] - **deps**: update googletest to [`5197b1a`](https://github.com/nodejs/node/commit/5197b1a) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`c8305f6057`](https://github.com/nodejs/node/commit/c8305f6057)] - **deps**: update googletest to [`eff443c`](https://github.com/nodejs/node/commit/eff443c) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`760b788704`](https://github.com/nodejs/node/commit/760b788704)] - **deps**: update googletest to [`c231e6f`](https://github.com/nodejs/node/commit/c231e6f) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`301541cc8f`](https://github.com/nodejs/node/commit/301541cc8f)] - **deps**: update googletest to [`e4fdb87`](https://github.com/nodejs/node/commit/e4fdb87) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`981d57e401`](https://github.com/nodejs/node/commit/981d57e401)] - **deps**: update googletest to [`5df0241`](https://github.com/nodejs/node/commit/5df0241) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`a1817f534d`](https://github.com/nodejs/node/commit/a1817f534d)] - **deps**: update googletest to [`b75ecf1`](https://github.com/nodejs/node/commit/b75ecf1) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`42070ca189`](https://github.com/nodejs/node/commit/42070ca189)] - **deps**: update googletest to [`4565741`](https://github.com/nodejs/node/commit/4565741) (Node.js GitHub Bot) [#&#8203;51657](https://github.com/nodejs/node/pull/51657) - \[[`edc3e5d056`](https://github.com/nodejs/node/commit/edc3e5d056)] - **deps**: update uvwasi to 0.0.21 (Node.js GitHub Bot) [#&#8203;52863](https://github.com/nodejs/node/pull/52863) - \[[`26b1231ffb`](https://github.com/nodejs/node/commit/26b1231ffb)] - **deps**: upgrade npm to 10.7.0 (npm team) [#&#8203;52767](https://github.com/nodejs/node/pull/52767) - \[[`e6d9fbece2`](https://github.com/nodejs/node/commit/e6d9fbece2)] - **doc**: update process.versions properties (ishabi) [#&#8203;52736](https://github.com/nodejs/node/pull/52736) - \[[`8c1f837c0a`](https://github.com/nodejs/node/commit/8c1f837c0a)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#&#8203;52252](https://github.com/nodejs/node/pull/52252) - \[[`d9c5114694`](https://github.com/nodejs/node/commit/d9c5114694)] - **doc**: fix grammatical mistake (codershiba) [#&#8203;52808](https://github.com/nodejs/node/pull/52808) - \[[`b350f435b7`](https://github.com/nodejs/node/commit/b350f435b7)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#&#8203;52795](https://github.com/nodejs/node/pull/52795) - \[[`61f9f12eff`](https://github.com/nodejs/node/commit/61f9f12eff)] - **meta**: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot\[bot]) [#&#8203;52787](https://github.com/nodejs/node/pull/52787) - \[[`ac563667d6`](https://github.com/nodejs/node/commit/ac563667d6)] - **meta**: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot\[bot]) [#&#8203;52786](https://github.com/nodejs/node/pull/52786) - \[[`70611d7924`](https://github.com/nodejs/node/commit/70611d7924)] - **meta**: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot\[bot]) [#&#8203;52785](https://github.com/nodejs/node/pull/52785) - \[[`30482ea273`](https://github.com/nodejs/node/commit/30482ea273)] - **meta**: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot\[bot]) [#&#8203;52784](https://github.com/nodejs/node/pull/52784) - \[[`d1607cdebb`](https://github.com/nodejs/node/commit/d1607cdebb)] - **meta**: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot\[bot]) [#&#8203;52783](https://github.com/nodejs/node/pull/52783) - \[[`21f1b6bfc3`](https://github.com/nodejs/node/commit/21f1b6bfc3)] - **meta**: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot\[bot]) [#&#8203;52782](https://github.com/nodejs/node/pull/52782) - \[[`0c6019a222`](https://github.com/nodejs/node/commit/0c6019a222)] - **meta**: standardize regex (Aviv Keller) [#&#8203;52693](https://github.com/nodejs/node/pull/52693) - \[[`28d2baa17c`](https://github.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#&#8203;52730](https://github.com/nodejs/node/pull/52730) - \[[`cffd2cc0c9`](https://github.com/nodejs/node/commit/cffd2cc0c9)] - ***Revert*** "**stream**: revert fix cloned webstreams not being unref'd" (Marco Ippolito) [#&#8203;53144](https://github.com/nodejs/node/pull/53144) - \[[`3dd96f1fab`](https://github.com/nodejs/node/commit/3dd96f1fab)] - **stream**: implement TransformStream cleanup using "transformer.cancel" (Debadree Chatterjee) [#&#8203;50126](https://github.com/nodejs/node/pull/50126) - \[[`8e7e778e01`](https://github.com/nodejs/node/commit/8e7e778e01)] - **test**: skip v8-updates/test-linux-perf (Michaël Zasso) [#&#8203;49639](https://github.com/nodejs/node/pull/49639) - \[[`f8e18869e9`](https://github.com/nodejs/node/commit/f8e18869e9)] - **test**: replace always-opt flag with alway-turbofan (Michaël Zasso) [#&#8203;50115](https://github.com/nodejs/node/pull/50115) - \[[`a501860d63`](https://github.com/nodejs/node/commit/a501860d63)] - **test_runner**: don't await the same promise for each test (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185) - \[[`e2ae4367f4`](https://github.com/nodejs/node/commit/e2ae4367f4)] - **test_runner**: run top level tests in a microtask (Colin Ihrig) [#&#8203;52092](https://github.com/nodejs/node/pull/52092) - \[[`77e2bf029a`](https://github.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#&#8203;52038](https://github.com/nodejs/node/pull/52038) - \[[`b7bc63565e`](https://github.com/nodejs/node/commit/b7bc63565e)] - **test_runner**: ignore todo flag when running suites (Colin Ihrig) [#&#8203;52117](https://github.com/nodejs/node/pull/52117) - \[[`be587e3ae3`](https://github.com/nodejs/node/commit/be587e3ae3)] - **test_runner**: use paths for test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010) - \[[`743281ab25`](https://github.com/nodejs/node/commit/743281ab25)] - **test_runner**: support source mapped test locations (Colin Ihrig) [#&#8203;52010](https://github.com/nodejs/node/pull/52010) - \[[`4051316d95`](https://github.com/nodejs/node/commit/4051316d95)] - **tools**: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) [#&#8203;52729](https://github.com/nodejs/node/pull/52729) ### [`v20.13.1`](https://github.com/nodejs/node/releases/tag/v20.13.1): 2024-05-09, Version 20.13.1 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.13.0...v20.13.1) ##### 2024-05-09, Version 20.13.1 'Iron' (LTS), [@&#8203;marco-ippolito](https://github.com/marco-ippolito) ##### Revert "tools: install npm PowerShell scripts on Windows" Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows. ##### Commits - \[[`b7d80802cc`](https://github.com/nodejs/node/commit/b7d80802cc)] - ***Revert*** "**tools**: install npm PowerShell scripts on Windows" (marco-ippolito) [#&#8203;52897](https://github.com/nodejs/node/pull/52897) ### [`v20.13.0`](https://github.com/nodejs/node/releases/tag/v20.13.0): 2024-05-07, Version 20.13.0 &#x27;Iron&#x27; (LTS), @&#8203;marco-ippolito [Compare Source](https://github.com/nodejs/node/compare/v20.12.2...v20.13.0) ##### 2024-05-07, Version 20.13.0 'Iron' (LTS), [@&#8203;marco-ippolito](https://github.com/marco-ippolito) ##### buffer: improve `base64` and `base64url` performance The performance of the `base64` and `base64url` encoding and decoding functions has been improved significantly. Contributed by Yagiz Nizipli in [#&#8203;52428](https://github.com/nodejs/node/pull/52428) ##### crypto: deprecate implicitly shortened GCM tags This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the `authTagLength` option. Contributed by Tobias Nießen in [#&#8203;52345](https://github.com/nodejs/node/pull/52345) ##### events,doc: mark CustomEvent as stable From this release `CustomEvent` has been marked stable. Contributed by Daeyeon Jeong in [#&#8203;52618](https://github.com/nodejs/node/pull/52618) ##### fs: add stacktrace to fs/promises Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling `Error.captureStacktrace` and re-throwing the error. Contributed by 翠 / green in [#&#8203;49849](https://github.com/nodejs/node/pull/49849) ##### report: add `--report-exclude-network` option New option `--report-exclude-network`, also available as `report.excludeNetwork`, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that. Contributed by Ethan Arrowood in [#&#8203;51645](https://github.com/nodejs/node/pull/51645) ##### src: add uv_get_available_memory to report and process From this release it is possible to get the available memory in the system by calling `process.getAvailableMemory()`. Contributed by theanarkh [#&#8203;52023](https://github.com/nodejs/node/pull/52023) ##### stream: support typed arrays This commit adds support for typed arrays in streams. Contributed by IlyasShabi [#&#8203;51866](https://github.com/nodejs/node/pull/51866) ##### util: support array of formats in util.styleText It is now possible to pass an array of format strings to `util.styleText` to apply multiple formats to the same text. ```js console.log(util.styleText(['underline', 'italic'], 'My italic underlined message')); ``` Contributed by Marco Ippolito in [#&#8203;52040](https://github.com/nodejs/node/pull/52040) ##### v8: implement v8.queryObjects() for memory leak regression testing This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests. To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application. To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search. We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead. ```js const { queryObjects } = require('node:v8'); class A { foo = 'bar'; } console.log(queryObjects(A)); // 0 let a = new A(); console.log(queryObjects(A)); // 1 // [ "A { foo: 'bar' }" ] console.log(queryObjects(A, { format: 'summary' })); // Release the object. a = null; // Search again. queryObjects() includes a full garbage collection // so a should disappear. console.log(queryObjects(A)); // 0 class B extends A { bar = 'qux'; } // The child class B's prototype has A's prototype on its prototype chain // so the prototype object shows up too. console.log(queryObjects(A, { format: 'summary' })); // [ A {}' ] ``` Contributed by Joyee Cheung in [#&#8203;51927](https://github.com/nodejs/node/pull/51927) ##### watch: mark as stable From this release Watch Mode is considered stable. When in watch mode, changes in the watched files cause the Node.js process to restart. Contributed by Moshe Atlow in [#&#8203;52074](https://github.com/nodejs/node/pull/52074) ##### Other Notable Changes - \[[`f8ad30048d`](https://github.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408) - \[[`3b41da9a56`](https://github.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#&#8203;52138](https://github.com/nodejs/node/pull/52138) - \[[`0a08c4a7b3`](https://github.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#&#8203;51462](https://github.com/nodejs/node/pull/51462) - \[[`f1b7bda4f5`](https://github.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#&#8203;51278](https://github.com/nodejs/node/pull/51278) - \[[`4acca8ed84`](https://github.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492) - \[[`cc67720ff9`](https://github.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257) - \[[`c2def7df96`](https://github.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257) - \[[`807c89cb26`](https://github.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#&#8203;51991](https://github.com/nodejs/node/pull/51991) - \[[`5e78a20ef9`](https://github.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#&#8203;51879](https://github.com/nodejs/node/pull/51879) - \[[`722fe64ff7`](https://github.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509) - \[[`d116fa1568`](https://github.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474) - \[[`6af7b78b0d`](https://github.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595) - \[[`b3a11b574b`](https://github.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#&#8203;51539](https://github.com/nodejs/node/pull/51539) - \[[`41646d9c9e`](https://github.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#&#8203;52127](https://github.com/nodejs/node/pull/52127) - \[[`fc9ba17f6c`](https://github.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#&#8203;51909](https://github.com/nodejs/node/pull/51909) ##### Commits - \[[`6fdd748b21`](https://github.com/nodejs/node/commit/6fdd748b21)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#&#8203;52548](https://github.com/nodejs/node/pull/52548) - \[[`2274d0c868`](https://github.com/nodejs/node/commit/2274d0c868)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456) - \[[`0300598315`](https://github.com/nodejs/node/commit/0300598315)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#&#8203;52456](https://github.com/nodejs/node/pull/52456) - \[[`f8ad30048d`](https://github.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#&#8203;52408](https://github.com/nodejs/node/pull/52408) - \[[`7508d48736`](https://github.com/nodejs/node/commit/7508d48736)] - **benchmark**: conditionally use spawn with taskset for cpu pinning (Ali Hassan) [#&#8203;52253](https://github.com/nodejs/node/pull/52253) - \[[`ea8e72e185`](https://github.com/nodejs/node/commit/ea8e72e185)] - **benchmark**: add toNamespacedPath bench (Rafael Gonzaga) [#&#8203;52236](https://github.com/nodejs/node/pull/52236) - \[[`c00715cc1e`](https://github.com/nodejs/node/commit/c00715cc1e)] - **benchmark**: add style-text benchmark (Rafael Gonzaga) [#&#8203;52004](https://github.com/nodejs/node/pull/52004) - \[[`1c1a6935ee`](https://github.com/nodejs/node/commit/1c1a6935ee)] - **buffer**: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#&#8203;52477](https://github.com/nodejs/node/pull/52477) - \[[`1b2aff7dce`](https://github.com/nodejs/node/commit/1b2aff7dce)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#&#8203;52428](https://github.com/nodejs/node/pull/52428) - \[[`328bded5ab`](https://github.com/nodejs/node/commit/328bded5ab)] - **buffer**: improve `btoa` performance (Yagiz Nizipli) [#&#8203;52427](https://github.com/nodejs/node/pull/52427) - \[[`e67bc34326`](https://github.com/nodejs/node/commit/e67bc34326)] - **buffer**: use simdutf for `atob` implementation (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381) - \[[`5abddb45d8`](https://github.com/nodejs/node/commit/5abddb45d8)] - **build**: fix typo in node.gyp (Michaël Zasso) [#&#8203;52719](https://github.com/nodejs/node/pull/52719) - \[[`7d1f304f5e`](https://github.com/nodejs/node/commit/7d1f304f5e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#&#8203;52442](https://github.com/nodejs/node/pull/52442) - \[[`6826bbf267`](https://github.com/nodejs/node/commit/6826bbf267)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#&#8203;52559](https://github.com/nodejs/node/pull/52559) - \[[`6e85bc431a`](https://github.com/nodejs/node/commit/6e85bc431a)] - **build**: temporary disable ubsan (Rafael Gonzaga) [#&#8203;52560](https://github.com/nodejs/node/pull/52560) - \[[`297368a1ed`](https://github.com/nodejs/node/commit/297368a1ed)] - **build**: fix arm64 cross-compilation (Michaël Zasso) [#&#8203;51256](https://github.com/nodejs/node/pull/51256) - \[[`93bddb598f`](https://github.com/nodejs/node/commit/93bddb598f)] - **build,tools**: add test-ubsan ci (Rafael Gonzaga) [#&#8203;46297](https://github.com/nodejs/node/pull/46297) - \[[`20bb16582f`](https://github.com/nodejs/node/commit/20bb16582f)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#&#8203;52632](https://github.com/nodejs/node/pull/52632) - \[[`9af15cfff1`](https://github.com/nodejs/node/commit/9af15cfff1)] - **child_process**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`a4847c4619`](https://github.com/nodejs/node/commit/a4847c4619)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#&#8203;49709](https://github.com/nodejs/node/pull/49709) - \[[`0ec4d9d734`](https://github.com/nodejs/node/commit/0ec4d9d734)] - **crypto**: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) [#&#8203;52217](https://github.com/nodejs/node/pull/52217) - \[[`03e05b092c`](https://github.com/nodejs/node/commit/03e05b092c)] - **crypto**: deprecate implicitly shortened GCM tags (Tobias Nießen) [#&#8203;52345](https://github.com/nodejs/node/pull/52345) - \[[`0f784c96ba`](https://github.com/nodejs/node/commit/0f784c96ba)] - **crypto**: make timingSafeEqual faster for Uint8Array (Tobias Nießen) [#&#8203;52341](https://github.com/nodejs/node/pull/52341) - \[[`739958e472`](https://github.com/nodejs/node/commit/739958e472)] - **crypto**: reject [`Ed25519`](https://github.com/nodejs/node/commit/Ed25519)/Ed448 in Sign/Verify prototypes (Filip Skokan) [#&#8203;52340](https://github.com/nodejs/node/pull/52340) - \[[`197b61f210`](https://github.com/nodejs/node/commit/197b61f210)] - **crypto**: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) [#&#8203;52262](https://github.com/nodejs/node/pull/52262) - \[[`a6eede33f3`](https://github.com/nodejs/node/commit/a6eede33f3)] - **crypto**: fix `input` validation in `crypto.hash` (Antoine du Hamel) [#&#8203;52070](https://github.com/nodejs/node/pull/52070) - \[[`bfa4986e5d`](https://github.com/nodejs/node/commit/bfa4986e5d)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#&#8203;52616](https://github.com/nodejs/node/pull/52616) - \[[`70546698d7`](https://github.com/nodejs/node/commit/70546698d7)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#&#8203;52517](https://github.com/nodejs/node/pull/52517) - \[[`a135027f84`](https://github.com/nodejs/node/commit/a135027f84)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#&#8203;52573](https://github.com/nodejs/node/pull/52573) - \[[`c96f1043d4`](https://github.com/nodejs/node/commit/c96f1043d4)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#&#8203;52493](https://github.com/nodejs/node/pull/52493) - \[[`9c330b610b`](https://github.com/nodejs/node/commit/9c330b610b)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#&#8203;52516](https://github.com/nodejs/node/pull/52516) - \[[`7e5bbeebab`](https://github.com/nodejs/node/commit/7e5bbeebab)] - **deps**: update nghttp2 to 1.61.0 (Node.js GitHub Bot) [#&#8203;52395](https://github.com/nodejs/node/pull/52395) - \[[`b42a4735d9`](https://github.com/nodejs/node/commit/b42a4735d9)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#&#8203;52524](https://github.com/nodejs/node/pull/52524) - \[[`d34fd21bc2`](https://github.com/nodejs/node/commit/d34fd21bc2)] - **deps**: update simdutf to 5.2.4 (Node.js GitHub Bot) [#&#8203;52473](https://github.com/nodejs/node/pull/52473) - \[[`ecc180f830`](https://github.com/nodejs/node/commit/ecc180f830)] - **deps**: upgrade npm to 10.5.2 (npm team) [#&#8203;52458](https://github.com/nodejs/node/pull/52458) - \[[`606c183344`](https://github.com/nodejs/node/commit/606c183344)] - **deps**: update simdutf to 5.2.3 (Yagiz Nizipli) [#&#8203;52381](https://github.com/nodejs/node/pull/52381) - \[[`0a103e99fe`](https://github.com/nodejs/node/commit/0a103e99fe)] - **deps**: upgrade npm to 10.5.1 (npm team) [#&#8203;52351](https://github.com/nodejs/node/pull/52351) - \[[`cce861e670`](https://github.com/nodejs/node/commit/cce861e670)] - **deps**: update c-ares to 1.28.1 (Node.js GitHub Bot) [#&#8203;52285](https://github.com/nodejs/node/pull/52285) - \[[`5258b547ea`](https://github.com/nodejs/node/commit/5258b547ea)] - **deps**: update undici to 6.11.1 (Node.js GitHub Bot) [#&#8203;52328](https://github.com/nodejs/node/pull/52328) - \[[`923a77c80a`](https://github.com/nodejs/node/commit/923a77c80a)] - **deps**: update undici to 6.10.2 (Node.js GitHub Bot) [#&#8203;52227](https://github.com/nodejs/node/pull/52227) - \[[`bd3c6a231c`](https://github.com/nodejs/node/commit/bd3c6a231c)] - **deps**: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) [#&#8203;52199](https://github.com/nodejs/node/pull/52199) - \[[`3b41da9a56`](https://github.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#&#8203;52138](https://github.com/nodejs/node/pull/52138) - \[[`d6f9ca385c`](https://github.com/nodejs/node/commit/d6f9ca385c)] - **deps**: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) [#&#8203;52123](https://github.com/nodejs/node/pull/52123) - \[[`f5512897b0`](https://github.com/nodejs/node/commit/f5512897b0)] - **deps**: update corepack to 0.26.0 (Node.js GitHub Bot) [#&#8203;52027](https://github.com/nodejs/node/pull/52027) - \[[`d891275178`](https://github.com/nodejs/node/commit/d891275178)] - **deps**: update ada to 2.7.7 (Node.js GitHub Bot) [#&#8203;52028](https://github.com/nodejs/node/pull/52028) - \[[`18838f2db3`](https://github.com/nodejs/node/commit/18838f2db3)] - **deps**: update simdutf to 4.0.9 (Node.js GitHub Bot) [#&#8203;51655](https://github.com/nodejs/node/pull/51655) - \[[`503c034abc`](https://github.com/nodejs/node/commit/503c034abc)] - **deps**: update undici to 6.6.2 (Node.js GitHub Bot) [#&#8203;51667](https://github.com/nodejs/node/pull/51667) - \[[`256bcba52e`](https://github.com/nodejs/node/commit/256bcba52e)] - **deps**: update undici to 6.6.0 (Node.js GitHub Bot) [#&#8203;51630](https://github.com/nodejs/node/pull/51630) - \[[`7a1e321d95`](https://github.com/nodejs/node/commit/7a1e321d95)] - **deps**: update undici to 6.4.0 (Node.js GitHub Bot) [#&#8203;51527](https://github.com/nodejs/node/pull/51527) - \[[`dde9e08224`](https://github.com/nodejs/node/commit/dde9e08224)] - **deps**: update ngtcp2 to 1.1.0 (Node.js GitHub Bot) [#&#8203;51319](https://github.com/nodejs/node/pull/51319) - \[[`0a08c4a7b3`](https://github.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#&#8203;51462](https://github.com/nodejs/node/pull/51462) - \[[`f1b7bda4f5`](https://github.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#&#8203;51278](https://github.com/nodejs/node/pull/51278) - \[[`ecadd638cd`](https://github.com/nodejs/node/commit/ecadd638cd)] - **deps**: V8: remove references to non-existent flags (Richard Lau) [#&#8203;52256](https://github.com/nodejs/node/pull/52256) - \[[`27d364491f`](https://github.com/nodejs/node/commit/27d364491f)] - **dgram**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`b94d11935a`](https://github.com/nodejs/node/commit/b94d11935a)] - **diagnostics_channel**: early-exit tracing channel trace methods (Stephen Belanger) [#&#8203;51915](https://github.com/nodejs/node/pull/51915) - \[[`4acca8ed84`](https://github.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#&#8203;52492](https://github.com/nodejs/node/pull/52492) - \[[`bcc06ac5a9`](https://github.com/nodejs/node/commit/bcc06ac5a9)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#&#8203;52648](https://github.com/nodejs/node/pull/52648) - \[[`4d5ef4f7af`](https://github.com/nodejs/node/commit/4d5ef4f7af)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#&#8203;52660](https://github.com/nodejs/node/pull/52660) - \[[`d5a316f5ea`](https://github.com/nodejs/node/commit/d5a316f5ea)] - **doc**: run license-builder (github-actions\[bot]) [#&#8203;52631](https://github.com/nodejs/node/pull/52631) - \[[`d7434fe411`](https://github.com/nodejs/node/commit/d7434fe411)] - **doc**: deprecate --experimental-policy (RafaelGSS) [#&#8203;52602](https://github.com/nodejs/node/pull/52602) - \[[`02a83d89f7`](https://github.com/nodejs/node/commit/02a83d89f7)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#&#8203;52598](https://github.com/nodejs/node/pull/52598) - \[[`a905eaace1`](https://github.com/nodejs/node/commit/a905eaace1)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#&#8203;52555](https://github.com/nodejs/node/pull/52555) - \[[`69c21a6522`](https://github.com/nodejs/node/commit/69c21a6522)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#&#8203;52590](https://github.com/nodejs/node/pull/52590) - \[[`5df34c7d0a`](https://github.com/nodejs/node/commit/5df34c7d0a)] - **doc**: sort options alphabetically (Luigi Pinca) [#&#8203;52589](https://github.com/nodejs/node/pull/52589) - \[[`b49464bc9d`](https://github.com/nodejs/node/commit/b49464bc9d)] - **doc**: correct stream.finished changes (KaKa) [#&#8203;52551](https://github.com/nodejs/node/pull/52551) - \[[`4d051ba89b`](https://github.com/nodejs/node/commit/4d051ba89b)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#&#8203;52556](https://github.com/nodejs/node/pull/52556) - \[[`4ed55bf16c`](https://github.com/nodejs/node/commit/4ed55bf16c)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#&#8203;52566](https://github.com/nodejs/node/pull/52566) - \[[`a8bc40fd07`](https://github.com/nodejs/node/commit/a8bc40fd07)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#&#8203;52515](https://github.com/nodejs/node/pull/52515) - \[[`17d5ba9fed`](https://github.com/nodejs/node/commit/17d5ba9fed)] - **doc**: add lint-js-fix into BUILDING.md (jakecastelli) [#&#8203;52290](https://github.com/nodejs/node/pull/52290) - \[[`88adbd0991`](https://github.com/nodejs/node/commit/88adbd0991)] - **doc**: remove Internet Explorer mention in BUILDING.md (Rich Trott) [#&#8203;52455](https://github.com/nodejs/node/pull/52455) - \[[`e8cb29d66d`](https://github.com/nodejs/node/commit/e8cb29d66d)] - **doc**: accommodate upcoming stricter .md linting (Rich Trott) [#&#8203;52454](https://github.com/nodejs/node/pull/52454) - \[[`e2ea984c7b`](https://github.com/nodejs/node/commit/e2ea984c7b)] - **doc**: add Rafael to steward list (Rafael Gonzaga) [#&#8203;52452](https://github.com/nodejs/node/pull/52452) - \[[`93d684097a`](https://github.com/nodejs/node/commit/93d684097a)] - **doc**: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) [#&#8203;52424](https://github.com/nodejs/node/pull/52424) - \[[`b9bdb947ac`](https://github.com/nodejs/node/commit/b9bdb947ac)] - **doc**: update `process.execArg` example to be more useful (Jacob Smith) [#&#8203;52412](https://github.com/nodejs/node/pull/52412) - \[[`f3f67ff84a`](https://github.com/nodejs/node/commit/f3f67ff84a)] - **doc**: call out http(s).globalAgent default (mathis-west-1) [#&#8203;52392](https://github.com/nodejs/node/pull/52392) - \[[`392a0d310e`](https://github.com/nodejs/node/commit/392a0d310e)] - **doc**: update the location of `build_with_cmake` (Emmanuel Ferdman) [#&#8203;52356](https://github.com/nodejs/node/pull/52356) - \[[`3ad62f1cc7`](https://github.com/nodejs/node/commit/3ad62f1cc7)] - **doc**: reserve 125 for Electron 31 (Shelley Vohr) [#&#8203;52379](https://github.com/nodejs/node/pull/52379) - \[[`bfd4c7844b`](https://github.com/nodejs/node/commit/bfd4c7844b)] - **doc**: use consistent plural form of "index" (Rich Trott) [#&#8203;52373](https://github.com/nodejs/node/pull/52373) - \[[`6f31cc8361`](https://github.com/nodejs/node/commit/6f31cc8361)] - **doc**: add Rafael to sec release stewards (Rafael Gonzaga) [#&#8203;52354](https://github.com/nodejs/node/pull/52354) - \[[`c55a3be789`](https://github.com/nodejs/node/commit/c55a3be789)] - **doc**: document missing options of events.on (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080) - \[[`1a843f7c6d`](https://github.com/nodejs/node/commit/1a843f7c6d)] - **doc**: add missing space (Augustin Mauroy) [#&#8203;52360](https://github.com/nodejs/node/pull/52360) - \[[`8ee20d8693`](https://github.com/nodejs/node/commit/8ee20d8693)] - **doc**: add tips about vcpkg cause build faild on windows (Cong Zhang) [#&#8203;52181](https://github.com/nodejs/node/pull/52181) - \[[`a86705c113`](https://github.com/nodejs/node/commit/a86705c113)] - **doc**: replace "below" with "following" (Rich Trott) [#&#8203;52315](https://github.com/nodejs/node/pull/52315) - \[[`f3e8d1159a`](https://github.com/nodejs/node/commit/f3e8d1159a)] - **doc**: fix email pattern to be wrapped with `<<` instead of single `<` (Raz Luvaton) [#&#8203;52284](https://github.com/nodejs/node/pull/52284) - \[[`cc67720ff9`](https://github.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257) - \[[`c2def7df96`](https://github.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#&#8203;52257](https://github.com/nodejs/node/pull/52257) - \[[`2509f3be18`](https://github.com/nodejs/node/commit/2509f3be18)] - **doc**: fix arrow vertical alignment in HTML version (Akash Yeole) [#&#8203;52193](https://github.com/nodejs/node/pull/52193) - \[[`2abaea3cdc`](https://github.com/nodejs/node/commit/2abaea3cdc)] - **doc**: move TSC members from regular to emeritus (Michael Dawson) [#&#8203;52209](https://github.com/nodejs/node/pull/52209) - \[[`65618a3d7b`](https://github.com/nodejs/node/commit/65618a3d7b)] - **doc**: add section explaining todo tests (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204) - \[[`bf0ed95b04`](https://github.com/nodejs/node/commit/bf0ed95b04)] - **doc**: edit `ChildProcess` `'message'` event docs (theanarkh) [#&#8203;52154](https://github.com/nodejs/node/pull/52154) - \[[`3d67b6b5e8`](https://github.com/nodejs/node/commit/3d67b6b5e8)] - **doc**: add mold to speeding up section (Cong Zhang) [#&#8203;52179](https://github.com/nodejs/node/pull/52179) - \[[`8ba308a838`](https://github.com/nodejs/node/commit/8ba308a838)] - **doc**: http event order correction (wh0) [#&#8203;51464](https://github.com/nodejs/node/pull/51464) - \[[`9771f41069`](https://github.com/nodejs/node/commit/9771f41069)] - **doc**: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) [#&#8203;52192](https://github.com/nodejs/node/pull/52192) - \[[`72bd2b0d62`](https://github.com/nodejs/node/commit/72bd2b0d62)] - **doc**: fix `--env-file` docs for valid quotes for defining values (Gabriel Bota) [#&#8203;52157](https://github.com/nodejs/node/pull/52157) - \[[`4f19203dfb`](https://github.com/nodejs/node/commit/4f19203dfb)] - **doc**: clarify what is supported in NODE_OPTIONS (Michael Dawson) [#&#8203;52076](https://github.com/nodejs/node/pull/52076) - \[[`5bce596838`](https://github.com/nodejs/node/commit/5bce596838)] - **doc**: fix typos in maintaining-dependencies.md (RoboSchmied) [#&#8203;52160](https://github.com/nodejs/node/pull/52160) - \[[`f5241e20cc`](https://github.com/nodejs/node/commit/f5241e20cc)] - **doc**: add spec for contains module syntax (Geoffrey Booth) [#&#8203;52059](https://github.com/nodejs/node/pull/52059) - \[[`bda3cdea86`](https://github.com/nodejs/node/commit/bda3cdea86)] - **doc**: optimize the doc about Unix abstract socket (theanarkh) [#&#8203;52043](https://github.com/nodejs/node/pull/52043) - \[[`8d7d6eff81`](https://github.com/nodejs/node/commit/8d7d6eff81)] - **doc**: update pnpm link (Superchupu) [#&#8203;52113](https://github.com/nodejs/node/pull/52113) - \[[`af7c55f62d`](https://github.com/nodejs/node/commit/af7c55f62d)] - **doc**: remove ableist language from crypto (Jamie King) [#&#8203;52063](https://github.com/nodejs/node/pull/52063) - \[[`f8362b0a5a`](https://github.com/nodejs/node/commit/f8362b0a5a)] - **doc**: update collaborator email (Ruy Adorno) [#&#8203;52088](https://github.com/nodejs/node/pull/52088) - \[[`48cbd5f71e`](https://github.com/nodejs/node/commit/48cbd5f71e)] - **doc**: state that removing npm is a non-goal (Geoffrey Booth) [#&#8203;51951](https://github.com/nodejs/node/pull/51951) - \[[`0ef2708131`](https://github.com/nodejs/node/commit/0ef2708131)] - **doc**: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) [#&#8203;52057](https://github.com/nodejs/node/pull/52057) - \[[`a6473a89be`](https://github.com/nodejs/node/commit/a6473a89be)] - **doc**: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) [#&#8203;52069](https://github.com/nodejs/node/pull/52069) - \[[`ae7a11c787`](https://github.com/nodejs/node/commit/ae7a11c787)] - **doc**: add some commonly used lables up gront (Michael Dawson) [#&#8203;52006](https://github.com/nodejs/node/pull/52006) - \[[`01aaddde3c`](https://github.com/nodejs/node/commit/01aaddde3c)] - **doc**: document that `const c2 = vm.createContext(c1); c1 === c2` is true (Daniel Kaplan) [#&#8203;51960](https://github.com/nodejs/node/pull/51960) - \[[`912145fac4`](https://github.com/nodejs/node/commit/912145fac4)] - **doc**: clarify what moderation issues are for (Antoine du Hamel) [#&#8203;51990](https://github.com/nodejs/node/pull/51990) - \[[`807c89cb26`](https://github.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#&#8203;51991](https://github.com/nodejs/node/pull/51991) - \[[`53ff3e5682`](https://github.com/nodejs/node/commit/53ff3e5682)] - **doc**: deprecate hmac public constructor (Marco Ippolito) [#&#8203;51881](https://github.com/nodejs/node/pull/51881) - \[[`5e78a20ef9`](https://github.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#&#8203;51879](https://github.com/nodejs/node/pull/51879) - \[[`7bfb0b43e6`](https://github.com/nodejs/node/commit/7bfb0b43e6)] - **events**: rename high & low watermark for consistency (Chemi Atlow) [#&#8203;52080](https://github.com/nodejs/node/pull/52080) - \[[`5e6967359b`](https://github.com/nodejs/node/commit/5e6967359b)] - **events**: extract addAbortListener for safe internal use (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`6930205272`](https://github.com/nodejs/node/commit/6930205272)] - **events**: remove abort listener from signal in `on` (Neal Beeken) [#&#8203;51091](https://github.com/nodejs/node/pull/51091) - \[[`235ab4f99f`](https://github.com/nodejs/node/commit/235ab4f99f)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#&#8203;52618](https://github.com/nodejs/node/pull/52618) - \[[`ca5b827148`](https://github.com/nodejs/node/commit/ca5b827148)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#&#8203;52603](https://github.com/nodejs/node/pull/52603) - \[[`e7d0d804b2`](https://github.com/nodejs/node/commit/e7d0d804b2)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#&#8203;52349](https://github.com/nodejs/node/pull/52349) - \[[`c5fd193d6b`](https://github.com/nodejs/node/commit/c5fd193d6b)] - **fs**: refactor maybeCallback function (Yagiz Nizipli) [#&#8203;52129](https://github.com/nodejs/node/pull/52129) - \[[`0a9910c2c1`](https://github.com/nodejs/node/commit/0a9910c2c1)] - **fs**: fix edge case in readFileSync utf8 fast path (Richard Lau) [#&#8203;52101](https://github.com/nodejs/node/pull/52101) - \[[`51d7cd5de8`](https://github.com/nodejs/node/commit/51d7cd5de8)] - **fs**: validate fd from cpp on `fchown` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051) - \[[`33ad86c2be`](https://github.com/nodejs/node/commit/33ad86c2be)] - **fs**: validate fd from cpp on `close` (Yagiz Nizipli) [#&#8203;52051](https://github.com/nodejs/node/pull/52051) - \[[`34667c0a7e`](https://github.com/nodejs/node/commit/34667c0a7e)] - **fs**: validate file mode from cpp (Yagiz Nizipli) [#&#8203;52050](https://github.com/nodejs/node/pull/52050) - \[[`c530520be3`](https://github.com/nodejs/node/commit/c530520be3)] - **fs**: add stacktrace to fs/promises (翠 / green) [#&#8203;49849](https://github.com/nodejs/node/pull/49849) - \[[`edecd464b9`](https://github.com/nodejs/node/commit/edecd464b9)] - **fs,permission**: make handling of buffers consistent (Tobias Nießen) [#&#8203;52348](https://github.com/nodejs/node/pull/52348) - \[[`3bcd68337e`](https://github.com/nodejs/node/commit/3bcd68337e)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#&#8203;52713](https://github.com/nodejs/node/pull/52713) - \[[`e01015996a`](https://github.com/nodejs/node/commit/e01015996a)] - **http2**: fix h2-over-h2 connection proxying (Tim Perry) [#&#8203;52368](https://github.com/nodejs/node/pull/52368) - \[[`9f88736860`](https://github.com/nodejs/node/commit/9f88736860)] - **http2**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`acd7758959`](https://github.com/nodejs/node/commit/acd7758959)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#&#8203;52580](https://github.com/nodejs/node/pull/52580) - \[[`18ae7a46f6`](https://github.com/nodejs/node/commit/18ae7a46f6)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#&#8203;52275](https://github.com/nodejs/node/pull/52275) - \[[`64c2c2a7ac`](https://github.com/nodejs/node/commit/64c2c2a7ac)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#&#8203;52440](https://github.com/nodejs/node/pull/52440) - \[[`ee11b5315c`](https://github.com/nodejs/node/commit/ee11b5315c)] - **lib**: .load .save add proper error message when no file passed (Thomas Mauran) [#&#8203;52225](https://github.com/nodejs/node/pull/52225) - \[[`e5521b537f`](https://github.com/nodejs/node/commit/e5521b537f)] - **lib**: fix type error for \_refreshLine (Jackson Tian) [#&#8203;52133](https://github.com/nodejs/node/pull/52133) - \[[`d5d6e041c8`](https://github.com/nodejs/node/commit/d5d6e041c8)] - **lib**: emit listening event once when call listen twice (theanarkh) [#&#8203;52119](https://github.com/nodejs/node/pull/52119) - \[[`d33fc36784`](https://github.com/nodejs/node/commit/d33fc36784)] - **lib**: make sure clear the old timer in http server (theanarkh) [#&#8203;52118](https://github.com/nodejs/node/pull/52118) - \[[`ea4905c0f5`](https://github.com/nodejs/node/commit/ea4905c0f5)] - **lib**: fix listen with handle in cluster worker (theanarkh) [#&#8203;52056](https://github.com/nodejs/node/pull/52056) - \[[`8fd8130507`](https://github.com/nodejs/node/commit/8fd8130507)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#&#8203;52471](https://github.com/nodejs/node/pull/52471) - \[[`722fe64ff7`](https://github.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#&#8203;52509](https://github.com/nodejs/node/pull/52509) - \[[`26691e6032`](https://github.com/nodejs/node/commit/26691e6032)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52633](https://github.com/nodejs/node/pull/52633) - \[[`befb90dc83`](https://github.com/nodejs/node/commit/befb90dc83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52457](https://github.com/nodejs/node/pull/52457) - \[[`22b7167e72`](https://github.com/nodejs/node/commit/22b7167e72)] - **meta**: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot\[bot]) [#&#8203;52314](https://github.com/nodejs/node/pull/52314) - \[[`4dafd3ede2`](https://github.com/nodejs/node/commit/4dafd3ede2)] - **meta**: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot\[bot]) [#&#8203;52313](https://github.com/nodejs/node/pull/52313) - \[[`2760db7640`](https://github.com/nodejs/node/commit/2760db7640)] - **meta**: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot\[bot]) [#&#8203;52312](https://github.com/nodejs/node/pull/52312) - \[[`542aaf9ca9`](https://github.com/nodejs/node/commit/542aaf9ca9)] - **meta**: bump actions/cache from 4.0.1 to 4.0.2 (dependabot\[bot]) [#&#8203;52311](https://github.com/nodejs/node/pull/52311) - \[[`df330998d9`](https://github.com/nodejs/node/commit/df330998d9)] - **meta**: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot\[bot]) [#&#8203;52310](https://github.com/nodejs/node/pull/52310) - \[[`5f40fe0cc2`](https://github.com/nodejs/node/commit/5f40fe0cc2)] - **meta**: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot\[bot]) [#&#8203;52308](https://github.com/nodejs/node/pull/52308) - \[[`481420f25c`](https://github.com/nodejs/node/commit/481420f25c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#&#8203;52300](https://github.com/nodejs/node/pull/52300) - \[[`3121949f85`](https://github.com/nodejs/node/commit/3121949f85)] - **meta**: pass Codecov upload token to codecov action (Michaël Zasso) [#&#8203;51982](https://github.com/nodejs/node/pull/51982) - \[[`882a64e639`](https://github.com/nodejs/node/commit/882a64e639)] - **module**: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) [#&#8203;52024](https://github.com/nodejs/node/pull/52024) - \[[`5fcc1d32a8`](https://github.com/nodejs/node/commit/5fcc1d32a8)] - **module**: refactor ESM loader initialization and entry point handling (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999) - \[[`d116fa1568`](https://github.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#&#8203;52474](https://github.com/nodejs/node/pull/52474) - \[[`37abad86ae`](https://github.com/nodejs/node/commit/37abad86ae)] - **net**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`a920489a1f`](https://github.com/nodejs/node/commit/a920489a1f)] - **node-api**: address coverity report (Michael Dawson) [#&#8203;52584](https://github.com/nodejs/node/pull/52584) - \[[`0a225a4b40`](https://github.com/nodejs/node/commit/0a225a4b40)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#&#8203;52426](https://github.com/nodejs/node/pull/52426) - \[[`f9d95674be`](https://github.com/nodejs/node/commit/f9d95674be)] - **node-api**: make tsfn accept napi_finalize once more (Gabriel Schulhof) [#&#8203;51801](https://github.com/nodejs/node/pull/51801) - \[[`72aabe1139`](https://github.com/nodejs/node/commit/72aabe1139)] - **perf_hooks**: reduce overhead of createHistogram (Vinícius Lourenço) [#&#8203;50074](https://github.com/nodejs/node/pull/50074) - \[[`fb601c3a94`](https://github.com/nodejs/node/commit/fb601c3a94)] - **readline**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`29f09f05f7`](https://github.com/nodejs/node/commit/29f09f05f7)] - **(SEMVER-MINOR)** **report**: add `--report-exclude-network` option (Ethan Arrowood) [#&#8203;51645](https://github.com/nodejs/node/pull/51645) - \[[`7e6d923f5b`](https://github.com/nodejs/node/commit/7e6d923f5b)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#&#8203;52638](https://github.com/nodejs/node/pull/52638) - \[[`6af7b78b0d`](https://github.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#&#8203;52595](https://github.com/nodejs/node/pull/52595) - \[[`27491e55c1`](https://github.com/nodejs/node/commit/27491e55c1)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#&#8203;52406](https://github.com/nodejs/node/pull/52406) - \[[`b05e639e27`](https://github.com/nodejs/node/commit/b05e639e27)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#&#8203;52438](https://github.com/nodejs/node/pull/52438) - \[[`1b4d2814d1`](https://github.com/nodejs/node/commit/1b4d2814d1)] - **src**: update branch name in node_revert.h (Tobias Nießen) [#&#8203;52390](https://github.com/nodejs/node/pull/52390) - \[[`7e35a169ea`](https://github.com/nodejs/node/commit/7e35a169ea)] - **src**: stop using `v8::BackingStore::Reallocate` (Michaël Zasso) [#&#8203;52292](https://github.com/nodejs/node/pull/52292) - \[[`2449d2606a`](https://github.com/nodejs/node/commit/2449d2606a)] - **src**: fix move after use reported by coverity (Michael Dawson) [#&#8203;52141](https://github.com/nodejs/node/pull/52141) - \[[`b33eff887d`](https://github.com/nodejs/node/commit/b33eff887d)] - **(SEMVER-MINOR)** **src**: add C++ ProcessEmitWarningSync() (Joyee Cheung) [#&#8203;51977](https://github.com/nodejs/node/pull/51977) - \[[`f2c7408927`](https://github.com/nodejs/node/commit/f2c7408927)] - **src**: return a number from process.constrainedMemory() constantly (Chengzhong Wu) [#&#8203;52039](https://github.com/nodejs/node/pull/52039) - \[[`7f575c886b`](https://github.com/nodejs/node/commit/7f575c886b)] - **(SEMVER-MINOR)** **src**: add uv_get_available_memory to report and process (theanarkh) [#&#8203;52023](https://github.com/nodejs/node/pull/52023) - \[[`e161e62313`](https://github.com/nodejs/node/commit/e161e62313)] - **src**: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) [#&#8203;52016](https://github.com/nodejs/node/pull/52016) - \[[`07322b490f`](https://github.com/nodejs/node/commit/07322b490f)] - **src**: fix reading empty string views in Blob\[De]serializer (Joyee Cheung) [#&#8203;52000](https://github.com/nodejs/node/pull/52000) - \[[`e216192390`](https://github.com/nodejs/node/commit/e216192390)] - **src**: refactor out FormatErrorMessage for error formatting (Joyee Cheung) [#&#8203;51999](https://github.com/nodejs/node/pull/51999) - \[[`b3a11b574b`](https://github.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#&#8203;51539](https://github.com/nodejs/node/pull/51539) - \[[`09bd367ef6`](https://github.com/nodejs/node/commit/09bd367ef6)] - **stream**: make Duplex inherit destroy from Writable (Luigi Pinca) [#&#8203;52318](https://github.com/nodejs/node/pull/52318) - \[[`0b853a7576`](https://github.com/nodejs/node/commit/0b853a7576)] - **(SEMVER-MINOR)** **stream**: support typed arrays (IlyasShabi) [#&#8203;51866](https://github.com/nodejs/node/pull/51866) - \[[`f8209ffe45`](https://github.com/nodejs/node/commit/f8209ffe45)] - **stream**: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (haze) [#&#8203;52110](https://github.com/nodejs/node/pull/52110) - \[[`8442457117`](https://github.com/nodejs/node/commit/8442457117)] - **stream**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`8d20b641a2`](https://github.com/nodejs/node/commit/8d20b641a2)] - ***Revert*** "**stream**: fix cloned webstreams not being unref'd" (Matteo Collina) [#&#8203;51491](https://github.com/nodejs/node/pull/51491) - \[[`a923adffab`](https://github.com/nodejs/node/commit/a923adffab)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#&#8203;52739](https://github.com/nodejs/node/pull/52739) - \[[`d4f1803f0b`](https://github.com/nodejs/node/commit/d4f1803f0b)] - **test**: mark test as flaky (Michael Dawson) [#&#8203;52671](https://github.com/nodejs/node/pull/52671) - \[[`1e88e042c2`](https://github.com/nodejs/node/commit/1e88e042c2)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#&#8203;52645](https://github.com/nodejs/node/pull/52645) - \[[`6da558af8b`](https://github.com/nodejs/node/commit/6da558af8b)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#&#8203;52563](https://github.com/nodejs/node/pull/52563) - \[[`c871fadb85`](https://github.com/nodejs/node/commit/c871fadb85)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#&#8203;52431](https://github.com/nodejs/node/pull/52431) - \[[`b6cb74d775`](https://github.com/nodejs/node/commit/b6cb74d775)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#&#8203;52538](https://github.com/nodejs/node/pull/52538) - \[[`4ad159bb75`](https://github.com/nodejs/node/commit/4ad159bb75)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#&#8203;52511](https://github.com/nodejs/node/pull/52511) - \[[`1f7a28cbe7`](https://github.com/nodejs/node/commit/1f7a28cbe7)] - **test**: fix watch test with require not testing pid (Raz Luvaton) [#&#8203;52353](https://github.com/nodejs/node/pull/52353) - \[[`5b758b93d5`](https://github.com/nodejs/node/commit/5b758b93d5)] - **test**: simplify ASan build checks (Michaël Zasso) [#&#8203;52430](https://github.com/nodejs/node/pull/52430) - \[[`375c3db5ea`](https://github.com/nodejs/node/commit/375c3db5ea)] - **test**: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) [#&#8203;52405](https://github.com/nodejs/node/pull/52405) - \[[`a1dd92cdee`](https://github.com/nodejs/node/commit/a1dd92cdee)] - **test**: add test for skip+todo combinations (Colin Ihrig) [#&#8203;52204](https://github.com/nodejs/node/pull/52204) - \[[`8a0b721930`](https://github.com/nodejs/node/commit/8a0b721930)] - **test**: fix incorrect test fixture (Colin Ihrig) [#&#8203;52185](https://github.com/nodejs/node/pull/52185) - \[[`dd1f761f3b`](https://github.com/nodejs/node/commit/dd1f761f3b)] - **test**: add missing cctest/test_path.cc (Yagiz Nizipli) [#&#8203;52148](https://github.com/nodejs/node/pull/52148) - \[[`6da446d9e1`](https://github.com/nodejs/node/commit/6da446d9e1)] - **test**: add `spawnSyncAndAssert` util (Antoine du Hamel) [#&#8203;52132](https://github.com/nodejs/node/pull/52132) - \[[`d7bfb4e8d8`](https://github.com/nodejs/node/commit/d7bfb4e8d8)] - **test**: reduce flakiness of test-runner-output.mjs (Colin Ihrig) [#&#8203;52146](https://github.com/nodejs/node/pull/52146) - \[[`e4981b3d75`](https://github.com/nodejs/node/commit/e4981b3d75)] - **test**: add test for using `--print` with promises (Antoine du Hamel) [#&#8203;52137](https://github.com/nodejs/node/pull/52137) - \[[`5cc540078e`](https://github.com/nodejs/node/commit/5cc540078e)] - **test**: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) [#&#8203;51995](https://github.com/nodejs/node/pull/51995) - \[[`b9eb0035dd`](https://github.com/nodejs/node/commit/b9eb0035dd)] - **test**: skip test for dynamically linked OpenSSL (Richard Lau) [#&#8203;52542](https://github.com/nodejs/node/pull/52542) - \[[`32014f5601`](https://github.com/nodejs/node/commit/32014f5601)] - **test**: avoid v8 deadcode on performance function (Vinícius Lourenço) [#&#8203;50074](https://github.com/nodejs/node/pull/50074) - \[[`29d2011f51`](https://github.com/nodejs/node/commit/29d2011f51)] - **test_runner**: better error handing for test hook (Alex Yang) [#&#8203;52401](https://github.com/nodejs/node/pull/52401) - \[[`9497097fb3`](https://github.com/nodejs/node/commit/9497097fb3)] - **test_runner**: fix clearing final timeout in own callback (Ben Richeson) [#&#8203;52332](https://github.com/nodejs/node/pull/52332) - \[[`0f690f0b9e`](https://github.com/nodejs/node/commit/0f690f0b9e)] - **test_runner**: fix recursive run (Moshe Atlow) [#&#8203;52322](https://github.com/nodejs/node/pull/52322) - \[[`34ab1a36ee`](https://github.com/nodejs/node/commit/34ab1a36ee)] - **test_runner**: hide new line when no error in spec reporter (Moshe Atlow) [#&#8203;52297](https://github.com/nodejs/node/pull/52297) - \[[`379535abe3`](https://github.com/nodejs/node/commit/379535abe3)] - **test_runner**: disable highWatermark on TestsStream (Colin Ihrig) [#&#8203;52287](https://github.com/nodejs/node/pull/52287) - \[[`35588cff39`](https://github.com/nodejs/node/commit/35588cff39)] - **test_runner**: run afterEach hooks in correct order (Colin Ihrig) [#&#8203;52239](https://github.com/nodejs/node/pull/52239) - \[[`5cd3df8fe1`](https://github.com/nodejs/node/commit/5cd3df8fe1)] - **test_runner**: simplify test end time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182) - \[[`07e4a42e4b`](https://github.com/nodejs/node/commit/07e4a42e4b)] - **test_runner**: simplify test start time tracking (Colin Ihrig) [#&#8203;52182](https://github.com/nodejs/node/pull/52182) - \[[`caec996831`](https://github.com/nodejs/node/commit/caec996831)] - **test_runner**: emit diagnostics when watch mode drains (Moshe Atlow) [#&#8203;52130](https://github.com/nodejs/node/pull/52130) - \[[`41646d9c9e`](https://github.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test_runner**: add suite() (Colin Ihrig) [#&#8203;52127](https://github.com/nodejs/node/pull/52127) - \[[`fd1489a623`](https://github.com/nodejs/node/commit/fd1489a623)] - **test_runner**: skip each hooks for skipped tests (Colin Ihrig) [#&#8203;52115](https://github.com/nodejs/node/pull/52115) - \[[`73b38bfa9e`](https://github.com/nodejs/node/commit/73b38bfa9e)] - **test_runner**: remove redundant report call (Colin Ihrig) [#&#8203;52089](https://github.com/nodejs/node/pull/52089) - \[[`68187c4d9e`](https://github.com/nodejs/node/commit/68187c4d9e)] - **test_runner**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`61e7ae05ef`](https://github.com/nodejs/node/commit/61e7ae05ef)] - **test_runner**: use source maps when reporting coverage (Moshe Atlow) [#&#8203;52060](https://github.com/nodejs/node/pull/52060) - \[[`e64a25af61`](https://github.com/nodejs/node/commit/e64a25af61)] - **test_runner**: handle undefined test locations (Colin Ihrig) [#&#8203;52036](https://github.com/nodejs/node/pull/52036) - \[[`590decf202`](https://github.com/nodejs/node/commit/590decf202)] - **test_runner**: avoid overwriting root start time (Colin Ihrig) [#&#8203;52020](https://github.com/nodejs/node/pull/52020) - \[[`a4cbb61c65`](https://github.com/nodejs/node/commit/a4cbb61c65)] - **test_runner**: abort unfinished tests on async error (Colin Ihrig) [#&#8203;51996](https://github.com/nodejs/node/pull/51996) - \[[`a223ca4868`](https://github.com/nodejs/node/commit/a223ca4868)] - **test_runner**: run before hook immediately if test started (Moshe Atlow) [#&#8203;52003](https://github.com/nodejs/node/pull/52003) - \[[`956ee74c7e`](https://github.com/nodejs/node/commit/956ee74c7e)] - **test_runner**: add support for null and date value output (Malthe Borch) [#&#8203;51920](https://github.com/nodejs/node/pull/51920) - \[[`fc9ba17f6c`](https://github.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#&#8203;51909](https://github.com/nodejs/node/pull/51909) - \[[`d5ac979aeb`](https://github.com/nodejs/node/commit/d5ac979aeb)] - **test_runner**: format coverage report for tap reporter (Pulkit Gupta) [#&#8203;51119](https://github.com/nodejs/node/pull/51119) - \[[`c925bc18dc`](https://github.com/nodejs/node/commit/c925bc18dc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#&#8203;52669](https://github.com/nodejs/node/pull/52669) - \[[`1d37e772ec`](https://github.com/nodejs/node/commit/1d37e772ec)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#&#8203;52624](https://github.com/nodejs/node/pull/52624) - \[[`5b22fc3a81`](https://github.com/nodejs/node/commit/5b22fc3a81)] - **tools**: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) [#&#8203;52617](https://github.com/nodejs/node/pull/52617) - \[[`9cf47bb2f1`](https://github.com/nodejs/node/commit/9cf47bb2f1)] - **tools**: update lint-md-dependencies (Rich Trott) [#&#8203;52581](https://github.com/nodejs/node/pull/52581) - \[[`c0c60d13c0`](https://github.com/nodejs/node/commit/c0c60d13c0)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#&#8203;52561](https://github.com/nodejs/node/pull/52561) - \[[`7c349d7819`](https://github.com/nodejs/node/commit/7c349d7819)] - **tools**: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) [#&#8203;52518](https://github.com/nodejs/node/pull/52518) - \[[`b4d703297b`](https://github.com/nodejs/node/commit/b4d703297b)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#&#8203;50714](https://github.com/nodejs/node/pull/50714) - \[[`c6813360c2`](https://github.com/nodejs/node/commit/c6813360c2)] - **tools**: update minimatch index path (Marco Ippolito) [#&#8203;52523](https://github.com/nodejs/node/pull/52523) - \[[`8464c0253c`](https://github.com/nodejs/node/commit/8464c0253c)] - **tools**: add a linter for README lists (Antoine du Hamel) [#&#8203;52476](https://github.com/nodejs/node/pull/52476) - \[[`55a3fbc842`](https://github.com/nodejs/node/commit/55a3fbc842)] - **tools**: change inactive limit to 12 months (Yagiz Nizipli) [#&#8203;52425](https://github.com/nodejs/node/pull/52425) - \[[`74a171f130`](https://github.com/nodejs/node/commit/74a171f130)] - **tools**: update stale bot messaging (Wes Todd) [#&#8203;52423](https://github.com/nodejs/node/pull/52423) - \[[`b2a3dcec2a`](https://github.com/nodejs/node/commit/b2a3dcec2a)] - **tools**: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) [#&#8203;52398](https://github.com/nodejs/node/pull/52398) - \[[`f71a777e6e`](https://github.com/nodejs/node/commit/f71a777e6e)] - **tools**: update Ruff to v0.3.4 (Michaël Zasso) [#&#8203;52302](https://github.com/nodejs/node/pull/52302) - \[[`e3e0c68f8f`](https://github.com/nodejs/node/commit/e3e0c68f8f)] - **tools**: run test-ubsan on ubuntu-latest (Michaël Zasso) [#&#8203;52375](https://github.com/nodejs/node/pull/52375) - \[[`893b5aac31`](https://github.com/nodejs/node/commit/893b5aac31)] - **tools**: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) [#&#8203;52286](https://github.com/nodejs/node/pull/52286) - \[[`049cca419e`](https://github.com/nodejs/node/commit/049cca419e)] - ***Revert*** "**tools**: run `build-windows` workflow only on source changes" (Michaël Zasso) [#&#8203;52320](https://github.com/nodejs/node/pull/52320) - \[[`b3dfc62cee`](https://github.com/nodejs/node/commit/b3dfc62cee)] - **tools**: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) [#&#8203;52301](https://github.com/nodejs/node/pull/52301) - \[[`c7238d0c04`](https://github.com/nodejs/node/commit/c7238d0c04)] - **tools**: allow local updates for llhttp (Paolo Insogna) [#&#8203;52085](https://github.com/nodejs/node/pull/52085) - \[[`c39f15cafd`](https://github.com/nodejs/node/commit/c39f15cafd)] - **tools**: install npm PowerShell scripts on Windows (Luke Karrys) [#&#8203;52009](https://github.com/nodejs/node/pull/52009) - \[[`b36fea064a`](https://github.com/nodejs/node/commit/b36fea064a)] - **tools**: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) [#&#8203;52122](https://github.com/nodejs/node/pull/52122) - \[[`a5204eb915`](https://github.com/nodejs/node/commit/a5204eb915)] - **tools**: fix error reported by coverity in js2c.cc (Michael Dawson) [#&#8203;52142](https://github.com/nodejs/node/pull/52142) - \[[`cef4b7ef3d`](https://github.com/nodejs/node/commit/cef4b7ef3d)] - **tools**: sync ubsan workflow with asan (Michaël Zasso) [#&#8203;52152](https://github.com/nodejs/node/pull/52152) - \[[`d406976bbe`](https://github.com/nodejs/node/commit/d406976bbe)] - **tools**: update github_reporter to 1.7.0 (Node.js GitHub Bot) [#&#8203;52121](https://github.com/nodejs/node/pull/52121) - \[[`fb100a2ac8`](https://github.com/nodejs/node/commit/fb100a2ac8)] - **tools**: remove gyp-next .github folder (Marco Ippolito) [#&#8203;52064](https://github.com/nodejs/node/pull/52064) - \[[`5f1e7a0de2`](https://github.com/nodejs/node/commit/5f1e7a0de2)] - **tools**: update gyp-next to 0.16.2 (Node.js GitHub Bot) [#&#8203;52062](https://github.com/nodejs/node/pull/52062) - \[[`1f1253446b`](https://github.com/nodejs/node/commit/1f1253446b)] - **tools**: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) [#&#8203;51791](https://github.com/nodejs/node/pull/51791) - \[[`4b8b92fccc`](https://github.com/nodejs/node/commit/4b8b92fccc)] - **tools**: automate gyp-next update (Marco Ippolito) [#&#8203;52014](https://github.com/nodejs/node/pull/52014) - \[[`1ec9e58692`](https://github.com/nodejs/node/commit/1ec9e58692)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#&#8203;52659](https://github.com/nodejs/node/pull/52659) - \[[`2d6b19970b`](https://github.com/nodejs/node/commit/2d6b19970b)] - **(SEMVER-MINOR)** **util**: support array of formats in util.styleText (Marco Ippolito) [#&#8203;52040](https://github.com/nodejs/node/pull/52040) - \[[`d30cccdf8c`](https://github.com/nodejs/node/commit/d30cccdf8c)] - **(SEMVER-MINOR)** **v8**: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) [#&#8203;51927](https://github.com/nodejs/node/pull/51927) - \[[`7f3b7fdeff`](https://github.com/nodejs/node/commit/7f3b7fdeff)] - **watch**: fix some node argument not passed to watched process (Raz Luvaton) [#&#8203;52358](https://github.com/nodejs/node/pull/52358) - \[[`8ba6f9bc9a`](https://github.com/nodejs/node/commit/8ba6f9bc9a)] - **watch**: use internal addAbortListener (Chemi Atlow) [#&#8203;52081](https://github.com/nodejs/node/pull/52081) - \[[`5a922232da`](https://github.com/nodejs/node/commit/5a922232da)] - **watch**: mark as stable (Moshe Atlow) [#&#8203;52074](https://github.com/nodejs/node/pull/52074) - \[[`508e968a5f`](https://github.com/nodejs/node/commit/508e968a5f)] - **watch**: batch file restarts (Moshe Atlow) [#&#8203;51992](https://github.com/nodejs/node/pull/51992) ### [`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://git </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzNy40MjQuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
kjuulh force-pushed renovate/all from 43ec537e2c to a140bb7b6b 2022-10-26 19:36:54 +02:00 Compare
kjuulh force-pushed renovate/all from a140bb7b6b to 8e99ce1851 2022-10-27 07:59:25 +02:00 Compare
kjuulh force-pushed renovate/all from 8e99ce1851 to 114e1d2e84 2022-10-27 13:50:52 +02:00 Compare
kjuulh force-pushed renovate/all from 114e1d2e84 to 5370077d77 2022-10-27 18:06:54 +02:00 Compare
kjuulh force-pushed renovate/all from 5370077d77 to b768ed61fe 2022-10-27 22:50:15 +02:00 Compare
kjuulh force-pushed renovate/all from b768ed61fe to b32cf9f494 2022-10-31 18:58:56 +01:00 Compare
kjuulh force-pushed renovate/all from b32cf9f494 to d6ed2b6515 2022-11-01 19:22:01 +01:00 Compare
kjuulh force-pushed renovate/all from d6ed2b6515 to 4a3b618edf 2022-11-02 21:06:59 +01:00 Compare
kjuulh force-pushed renovate/all from 4a3b618edf to 13e97640af 2022-11-04 20:24:13 +01:00 Compare
kjuulh force-pushed renovate/all from 13e97640af to a513d3a4e5 2022-11-04 22:04:35 +01:00 Compare
kjuulh force-pushed renovate/all from a513d3a4e5 to 4295915a49 2022-11-10 09:39:32 +01:00 Compare
kjuulh force-pushed renovate/all from 4295915a49 to 5d8746b6ed 2022-11-11 09:32:58 +01:00 Compare
kjuulh force-pushed renovate/all from 5d8746b6ed to 030a928b8c 2022-11-12 13:03:42 +01:00 Compare
kjuulh changed title from chore(deps): pin dependencies to chore(deps): update all dependencies 2022-11-13 01:28:00 +01:00
kjuulh force-pushed renovate/all from 030a928b8c to f25c46962d 2022-11-14 20:27:22 +01:00 Compare
kjuulh force-pushed renovate/all from f25c46962d to 95134e7eb9 2022-11-15 20:10:14 +01:00 Compare
kjuulh force-pushed renovate/all from 95134e7eb9 to 1eccd1ff63 2022-12-01 20:14:38 +01:00 Compare
kjuulh force-pushed renovate/all from 1eccd1ff63 to d5d42c1615 2022-12-02 15:45:57 +01:00 Compare
kjuulh force-pushed renovate/all from d5d42c1615 to 22f6c2a3da 2022-12-05 21:19:25 +01:00 Compare
kjuulh force-pushed renovate/all from 22f6c2a3da to 5aea61db07 2022-12-08 23:40:21 +01:00 Compare
kjuulh force-pushed renovate/all from 5aea61db07 to b2e22eb683 2022-12-10 20:25:58 +01:00 Compare
kjuulh force-pushed renovate/all from b2e22eb683 to f4be3326f3 2022-12-13 15:44:56 +01:00 Compare
kjuulh force-pushed renovate/all from f4be3326f3 to 9402150432 2022-12-13 22:35:21 +01:00 Compare
kjuulh force-pushed renovate/all from 9402150432 to 5c195524d2 2022-12-18 12:03:44 +01:00 Compare
kjuulh force-pushed renovate/all from 5c195524d2 to c186f511d5 2022-12-23 16:56:12 +01:00 Compare
kjuulh force-pushed renovate/all from c186f511d5 to 34ca1e1ac3 2022-12-26 18:47:39 +01:00 Compare
kjuulh force-pushed renovate/all from 34ca1e1ac3 to a547d561dc 2023-01-18 20:16:24 +01:00 Compare
kjuulh force-pushed renovate/all from a547d561dc to ecfecab597 2023-01-31 08:40:38 +01:00 Compare
kjuulh force-pushed renovate/all from ecfecab597 to efb5e5d00c 2023-02-05 00:07:24 +01:00 Compare
kjuulh force-pushed renovate/all from efb5e5d00c to 757c71d4ca 2023-02-05 12:07:52 +01:00 Compare
kjuulh force-pushed renovate/all from 757c71d4ca to 7107502cef 2023-02-07 10:00:43 +01:00 Compare
kjuulh force-pushed renovate/all from 7107502cef to ae3d5aaf56 2023-02-11 12:57:04 +01:00 Compare
kjuulh force-pushed renovate/all from ae3d5aaf56 to 1ab02f61a0 2023-02-15 01:41:47 +01:00 Compare
kjuulh force-pushed renovate/all from 1ab02f61a0 to 432ea93955 2023-02-17 21:52:51 +01:00 Compare
kjuulh force-pushed renovate/all from 432ea93955 to 6e8c346f34 2023-02-21 22:20:09 +01:00 Compare
kjuulh force-pushed renovate/all from 6e8c346f34 to 7de67b4c77 2023-02-23 20:34:14 +01:00 Compare
kjuulh force-pushed renovate/all from 7de67b4c77 to d028df1ab2 2023-02-26 21:00:02 +01:00 Compare
kjuulh force-pushed renovate/all from d028df1ab2 to 943086785c 2023-03-02 08:06:48 +01:00 Compare
kjuulh force-pushed renovate/all from 943086785c to b759e35a8b 2023-03-02 09:40:45 +01:00 Compare
kjuulh force-pushed renovate/all from b759e35a8b to eb473f5be3 2023-03-03 14:13:15 +01:00 Compare
kjuulh force-pushed renovate/all from eb473f5be3 to a4f91486a5 2023-03-03 22:21:22 +01:00 Compare
kjuulh force-pushed renovate/all from a4f91486a5 to 9896508c97 2023-03-09 21:13:52 +01:00 Compare
kjuulh force-pushed renovate/all from 9896508c97 to 812275a91a 2023-03-13 18:05:36 +01:00 Compare
kjuulh force-pushed renovate/all from 812275a91a to 1bc1d7a87a 2023-03-13 19:17:10 +01:00 Compare
kjuulh force-pushed renovate/all from 1bc1d7a87a to 1b5cd3b9b4 2023-03-14 18:14:47 +01:00 Compare
kjuulh force-pushed renovate/all from 1b5cd3b9b4 to 641b967323 2023-03-16 21:46:59 +01:00 Compare
kjuulh force-pushed renovate/all from 641b967323 to a287493ccf 2023-03-20 22:13:25 +01:00 Compare
kjuulh force-pushed renovate/all from a287493ccf to 3341a617ca 2023-03-20 22:40:35 +01:00 Compare
kjuulh force-pushed renovate/all from 3341a617ca to bd43f60de1 2023-03-23 22:40:55 +01:00 Compare
kjuulh force-pushed renovate/all from bd43f60de1 to 2326d3cabf 2023-03-24 23:03:42 +01:00 Compare
kjuulh force-pushed renovate/all from 2326d3cabf to b3991fc4eb 2023-03-25 00:39:35 +01:00 Compare
kjuulh force-pushed renovate/all from b3991fc4eb to 8d6e3b53cf 2023-03-25 11:20:28 +01:00 Compare
kjuulh force-pushed renovate/all from 8d6e3b53cf to 7434484491 2023-03-25 23:55:19 +01:00 Compare
kjuulh force-pushed renovate/all from 7434484491 to 3221147373 2023-03-28 23:59:52 +02:00 Compare
kjuulh force-pushed renovate/all from 3221147373 to 8302ad40c0 2023-03-30 23:03:07 +02:00 Compare
kjuulh force-pushed renovate/all from 8302ad40c0 to 6deddaa82e 2023-04-07 20:18:21 +02:00 Compare
kjuulh force-pushed renovate/all from 6deddaa82e to bc7eed0e6d 2023-04-20 01:13:59 +02:00 Compare
kjuulh force-pushed renovate/all from bc7eed0e6d to fd6d9242a1 2023-04-20 23:24:17 +02:00 Compare
kjuulh force-pushed renovate/all from fd6d9242a1 to 5cf3302faf 2023-04-21 07:47:53 +02:00 Compare
kjuulh force-pushed renovate/all from 5cf3302faf to f8fe4d0e7c 2023-04-23 11:22:09 +02:00 Compare
kjuulh force-pushed renovate/all from f8fe4d0e7c to 05820105a8 2023-04-26 21:51:15 +02:00 Compare
kjuulh force-pushed renovate/all from 05820105a8 to ca16e66346 2023-04-27 23:49:26 +02:00 Compare
kjuulh force-pushed renovate/all from ca16e66346 to 1bf0994069 2023-04-29 12:13:32 +02:00 Compare
kjuulh force-pushed renovate/all from 1bf0994069 to 3d30de01a8 2023-04-29 20:53:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3d30de01a8 to 0e318b7995 2023-05-05 09:57:06 +02:00 Compare
kjuulh force-pushed renovate/all from 0e318b7995 to c8a5582eca 2023-05-05 23:58:58 +02:00 Compare
kjuulh force-pushed renovate/all from c8a5582eca to 302dcd2970 2023-05-08 22:54:46 +02:00 Compare
kjuulh force-pushed renovate/all from 302dcd2970 to 22a6ddc3c8 2023-05-08 23:41:20 +02:00 Compare
kjuulh force-pushed renovate/all from 22a6ddc3c8 to 0655955335 2023-05-10 12:10:27 +02:00 Compare
kjuulh force-pushed renovate/all from 0655955335 to d9e05d869e 2023-05-11 22:41:32 +02:00 Compare
kjuulh force-pushed renovate/all from d9e05d869e to c7ae2c62a2 2023-05-13 16:56:09 +02:00 Compare
kjuulh force-pushed renovate/all from c7ae2c62a2 to e224e9791e 2023-05-16 03:09:39 +02:00 Compare
kjuulh force-pushed renovate/all from e224e9791e to 72ff93fe73 2023-05-16 21:20:48 +02:00 Compare
kjuulh force-pushed renovate/all from 72ff93fe73 to e16492a2c2 2023-05-16 22:28:08 +02:00 Compare
kjuulh force-pushed renovate/all from e16492a2c2 to 7a20fc3cca 2023-05-18 15:49:25 +02:00 Compare
kjuulh force-pushed renovate/all from 7a20fc3cca to b7200d0fb4 2023-05-21 23:27:42 +02:00 Compare
kjuulh force-pushed renovate/all from b7200d0fb4 to 460906b006 2023-05-25 23:11:51 +02:00 Compare
kjuulh force-pushed renovate/all from 460906b006 to 42a91da88c 2023-05-26 22:56:44 +02:00 Compare
kjuulh force-pushed renovate/all from 42a91da88c to c7c8e342f6 2023-06-07 23:49:06 +02:00 Compare
kjuulh force-pushed renovate/all from c7c8e342f6 to f795e78c4e 2023-06-10 04:28:02 +02:00 Compare
kjuulh force-pushed renovate/all from f795e78c4e to cea777a391 2023-06-13 04:52:39 +02:00 Compare
kjuulh force-pushed renovate/all from cea777a391 to bddcd09442 2023-06-18 23:03:48 +02:00 Compare
kjuulh force-pushed renovate/all from bddcd09442 to 4155ad0fe5 2023-06-28 00:58:04 +02:00 Compare
kjuulh force-pushed renovate/all from 4155ad0fe5 to 266f754d32 2023-06-29 01:40:33 +02:00 Compare
kjuulh force-pushed renovate/all from 266f754d32 to b1cfa47066 2023-07-01 01:23:38 +02:00 Compare
kjuulh force-pushed renovate/all from b1cfa47066 to 23244255a8 2023-07-23 12:35:53 +02:00 Compare
kjuulh force-pushed renovate/all from 23244255a8 to db4169fa97 2023-07-25 21:19:44 +02:00 Compare
kjuulh force-pushed renovate/all from db4169fa97 to 7406e84cb6 2023-08-04 02:48:55 +02:00 Compare
kjuulh force-pushed renovate/all from 7406e84cb6 to f61d153faa 2023-08-05 13:10:36 +02:00 Compare
kjuulh force-pushed renovate/all from f61d153faa to 6b5f4f4a29 2023-08-08 22:49:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6b5f4f4a29 to 6aa61b793a 2023-08-11 21:50:29 +02:00 Compare
kjuulh force-pushed renovate/all from 6aa61b793a to 1d1c007a68 2023-08-18 19:45:13 +02:00 Compare
kjuulh force-pushed renovate/all from 1d1c007a68 to 336a3aab2d 2023-08-22 11:16:55 +02:00 Compare
kjuulh force-pushed renovate/all from 336a3aab2d to 7c5ca8910d 2023-08-22 20:55:35 +02:00 Compare
kjuulh force-pushed renovate/all from 7c5ca8910d to 894d76c75d 2023-08-23 23:30:28 +02:00 Compare
kjuulh force-pushed renovate/all from 894d76c75d to 5b3a0f6c8e 2023-08-24 19:06:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5b3a0f6c8e to 30c0b8c6a4 2023-08-24 23:53:45 +02:00 Compare
kjuulh force-pushed renovate/all from 30c0b8c6a4 to b1e9094301 2023-08-25 00:23:41 +02:00 Compare
kjuulh force-pushed renovate/all from b1e9094301 to 6c7bcecb15 2023-08-28 03:14:20 +02:00 Compare
kjuulh force-pushed renovate/all from 6c7bcecb15 to 85b17dbe81 2023-09-01 22:48:54 +02:00 Compare
kjuulh force-pushed renovate/all from 85b17dbe81 to e872249e46 2023-09-02 22:36:02 +02:00 Compare
kjuulh force-pushed renovate/all from e872249e46 to 90ca50b0a8 2023-09-08 23:52:40 +02:00 Compare
kjuulh force-pushed renovate/all from 90ca50b0a8 to 973f39331e 2023-09-15 10:35:27 +02:00 Compare
kjuulh force-pushed renovate/all from 973f39331e to 68d4fc4ea1 2023-09-16 08:57:13 +02:00 Compare
kjuulh force-pushed renovate/all from 68d4fc4ea1 to 6165de7b40 2023-09-20 05:25:59 +02:00 Compare
kjuulh force-pushed renovate/all from 6165de7b40 to d207420b93 2023-09-23 23:25:13 +02:00 Compare
kjuulh force-pushed renovate/all from d207420b93 to 59fc040512 2023-09-25 22:37:15 +02:00 Compare
kjuulh force-pushed renovate/all from 59fc040512 to d365cdac40 2023-09-29 17:53:54 +02:00 Compare
kjuulh force-pushed renovate/all from d365cdac40 to 6084d8d861 2023-10-02 22:37:51 +02:00 Compare
kjuulh force-pushed renovate/all from 6084d8d861 to 6ab0cb60a0 2023-10-02 23:32:51 +02:00 Compare
kjuulh force-pushed renovate/all from 6ab0cb60a0 to e0ab11aa3a 2023-10-07 01:32:35 +02:00 Compare
kjuulh force-pushed renovate/all from e0ab11aa3a to ce43274643 2023-10-12 22:58:45 +02:00 Compare
kjuulh force-pushed renovate/all from ce43274643 to 7b115b42e0 2023-10-18 11:54:24 +02:00 Compare
kjuulh force-pushed renovate/all from 7b115b42e0 to f454639b3d 2023-10-20 02:05:48 +02:00 Compare
kjuulh force-pushed renovate/all from f454639b3d to 6f3531eb3e 2023-10-24 02:06:44 +02:00 Compare
kjuulh force-pushed renovate/all from 6f3531eb3e to 61849ea493 2023-10-24 03:48:41 +02:00 Compare
kjuulh force-pushed renovate/all from 61849ea493 to da7c5d5e94 2023-10-25 20:19:09 +02:00 Compare
kjuulh force-pushed renovate/all from da7c5d5e94 to 5136efcc78 2023-10-31 10:21:50 +01:00 Compare
kjuulh force-pushed renovate/all from 5136efcc78 to 42c866d36a 2023-11-07 21:34:57 +01:00 Compare
kjuulh force-pushed renovate/all from 42c866d36a to 91352e99ff 2023-11-16 22:24:20 +01:00 Compare
kjuulh force-pushed renovate/all from 91352e99ff to dd771bf976 2023-11-18 21:36:43 +01:00 Compare
kjuulh force-pushed renovate/all from dd771bf976 to fef6fd2448 2023-11-20 19:09:27 +01:00 Compare
kjuulh force-pushed renovate/all from fef6fd2448 to c80b1d1399 2023-11-21 02:48:47 +01:00 Compare
kjuulh force-pushed renovate/all from c80b1d1399 to 4ec10cd930 2023-11-22 02:28:22 +01:00 Compare
kjuulh force-pushed renovate/all from 4ec10cd930 to 71bd46cc85 2023-11-23 23:14:07 +01:00 Compare
kjuulh force-pushed renovate/all from 71bd46cc85 to ef1f5d9409 2023-11-24 10:29:20 +01:00 Compare
kjuulh force-pushed renovate/all from ef1f5d9409 to 3b0ec0baf1 2023-11-29 21:05:42 +01:00 Compare
kjuulh force-pushed renovate/all from 3b0ec0baf1 to e9f659919b 2023-12-01 21:41:48 +01:00 Compare
kjuulh force-pushed renovate/all from e9f659919b to 0d2b7608bf 2023-12-03 19:31:56 +01:00 Compare
kjuulh force-pushed renovate/all from 0d2b7608bf to e24f6b5e00 2023-12-06 20:26:02 +01:00 Compare
kjuulh force-pushed renovate/all from e24f6b5e00 to 80f78e2971 2023-12-07 08:36:16 +01:00 Compare
kjuulh force-pushed renovate/all from 80f78e2971 to 3025686c4f 2023-12-17 23:10:05 +01:00 Compare
kjuulh force-pushed renovate/all from 3025686c4f to 7c3f38f073 2023-12-30 01:35:43 +01:00 Compare
kjuulh force-pushed renovate/all from 7c3f38f073 to a882ba280a 2024-01-07 16:50:26 +01:00 Compare
kjuulh force-pushed renovate/all from a882ba280a to f03a64ece0 2024-01-09 17:16:59 +01:00 Compare
kjuulh force-pushed renovate/all from f03a64ece0 to 49f029f0d5 2024-01-11 06:54:03 +01:00 Compare
kjuulh force-pushed renovate/all from 49f029f0d5 to 5d869efdd8 2024-01-15 05:37:21 +01:00 Compare
kjuulh force-pushed renovate/all from 5d869efdd8 to ad512ce041 2024-01-15 13:01:25 +01:00 Compare
kjuulh force-pushed renovate/all from ad512ce041 to b7ba621666 2024-01-15 22:58:08 +01:00 Compare
kjuulh force-pushed renovate/all from b7ba621666 to 3cf27063c9 2024-01-16 10:33:15 +01:00 Compare
kjuulh force-pushed renovate/all from 3cf27063c9 to 052413dde9 2024-01-17 07:55:30 +01:00 Compare
kjuulh force-pushed renovate/all from 052413dde9 to 049ecc1d68 2024-01-24 07:24:23 +01:00 Compare
kjuulh force-pushed renovate/all from 049ecc1d68 to 045907edb0 2024-01-26 06:05:08 +01:00 Compare
kjuulh force-pushed renovate/all from 045907edb0 to 01b06cb40d 2024-01-27 17:28:18 +01:00 Compare
kjuulh force-pushed renovate/all from 01b06cb40d to 3641e63edc 2024-01-28 11:39:41 +01:00 Compare
kjuulh force-pushed renovate/all from 3641e63edc to c676fbd466 2024-01-28 21:05:55 +01:00 Compare
kjuulh force-pushed renovate/all from c676fbd466 to a5f763e466 2024-01-30 20:29:07 +01:00 Compare
kjuulh force-pushed renovate/all from a5f763e466 to ba38cecb63 2024-01-30 23:28:09 +01:00 Compare
kjuulh force-pushed renovate/all from ba38cecb63 to 6c509ad74a 2024-01-31 00:31:41 +01:00 Compare
kjuulh force-pushed renovate/all from 6c509ad74a to 2f1a6153ac 2024-01-31 20:39:04 +01:00 Compare
kjuulh force-pushed renovate/all from 2f1a6153ac to 7679264b95 2024-02-01 10:38:11 +01:00 Compare
kjuulh force-pushed renovate/all from 7679264b95 to 7b38f72e0d 2024-02-01 18:54:21 +01:00 Compare
kjuulh force-pushed renovate/all from 7b38f72e0d to 727d1f870c 2024-02-08 22:29:45 +01:00 Compare
kjuulh force-pushed renovate/all from 727d1f870c to 2042fd24ec 2024-02-10 11:44:51 +01:00 Compare
kjuulh force-pushed renovate/all from 2042fd24ec to 491a2c3cf4 2024-02-15 11:45:15 +01:00 Compare
kjuulh force-pushed renovate/all from 491a2c3cf4 to 2bd180d602 2024-02-15 17:52:15 +01:00 Compare
kjuulh force-pushed renovate/all from 2bd180d602 to 7bfd4cd5a7 2024-02-16 20:22:05 +01:00 Compare
kjuulh force-pushed renovate/all from 7bfd4cd5a7 to 2e3b9de359 2024-02-22 19:44:41 +01:00 Compare
kjuulh force-pushed renovate/all from 2e3b9de359 to 691962a86e 2024-02-28 00:51:40 +01:00 Compare
kjuulh force-pushed renovate/all from 691962a86e to f3e72d0f02 2024-02-28 18:48:33 +01:00 Compare
kjuulh force-pushed renovate/all from f3e72d0f02 to f1b85f6959 2024-02-29 13:46:42 +01:00 Compare
kjuulh force-pushed renovate/all from f1b85f6959 to 653c80f6bf 2024-02-29 17:54:22 +01:00 Compare
kjuulh force-pushed renovate/all from 653c80f6bf to 039ed43bbf 2024-03-06 19:01:37 +01:00 Compare
kjuulh force-pushed renovate/all from 039ed43bbf to f6d3de0817 2024-03-06 20:00:02 +01:00 Compare
kjuulh force-pushed renovate/all from f6d3de0817 to c6c78ba6d5 2024-03-11 23:19:29 +01:00 Compare
kjuulh force-pushed renovate/all from c6c78ba6d5 to cde4571cfd 2024-03-13 14:54:15 +01:00 Compare
kjuulh force-pushed renovate/all from cde4571cfd to cb330e7f56 2024-03-15 09:28:33 +01:00 Compare
kjuulh force-pushed renovate/all from cb330e7f56 to a0d31694b7 2024-03-15 12:42:20 +01:00 Compare
kjuulh force-pushed renovate/all from a0d31694b7 to 4d0e5ee22b 2024-03-18 20:47:16 +01:00 Compare
kjuulh force-pushed renovate/all from 4d0e5ee22b to 29cb1e4e78 2024-03-19 14:01:47 +01:00 Compare
kjuulh force-pushed renovate/all from 29cb1e4e78 to 9f2fff9130 2024-03-20 21:06:15 +01:00 Compare
kjuulh force-pushed renovate/all from 9f2fff9130 to 5c44341a2a 2024-03-30 06:05:51 +01:00 Compare
kjuulh force-pushed renovate/all from 5c44341a2a to 3902dcab6d 2024-03-30 06:54:08 +01:00 Compare
kjuulh force-pushed renovate/all from 3902dcab6d to 402c2acaf4 2024-04-02 22:52:40 +02:00 Compare
kjuulh force-pushed renovate/all from 402c2acaf4 to 376b4f3244 2024-04-04 00:22:19 +02:00 Compare
kjuulh force-pushed renovate/all from 376b4f3244 to 87154dc4b9 2024-04-04 18:46:51 +02:00 Compare
kjuulh force-pushed renovate/all from 87154dc4b9 to a2b9d26d86 2024-04-04 20:24:37 +02:00 Compare
kjuulh force-pushed renovate/all from a2b9d26d86 to 6ba45eb647 2024-04-06 01:07:05 +02:00 Compare
kjuulh force-pushed renovate/all from 6ba45eb647 to 999379c4c3 2024-04-09 06:34:20 +02:00 Compare
kjuulh force-pushed renovate/all from 999379c4c3 to b7feb3b9fc 2024-04-09 23:16:11 +02:00 Compare
kjuulh force-pushed renovate/all from b7feb3b9fc to b4c64c30fe 2024-04-10 17:15:08 +02:00 Compare
kjuulh force-pushed renovate/all from b4c64c30fe to 3e0be2b325 2024-04-28 14:40:48 +02:00 Compare
kjuulh force-pushed renovate/all from 3e0be2b325 to 71195a507d 2024-05-01 20:54:47 +02:00 Compare
kjuulh force-pushed renovate/all from 71195a507d to 9c49715b42 2024-05-06 16:39:09 +02:00 Compare
kjuulh force-pushed renovate/all from 9c49715b42 to 6bc3334638 2024-05-06 19:15:24 +02:00 Compare
kjuulh force-pushed renovate/all from 6bc3334638 to becf00d230 2024-05-08 02:41:52 +02:00 Compare
kjuulh force-pushed renovate/all from becf00d230 to f52ead2226 2024-05-08 15:02:04 +02:00 Compare
kjuulh force-pushed renovate/all from f52ead2226 to 7df5c12189 2024-05-14 08:49:11 +02:00 Compare
kjuulh force-pushed renovate/all from 7df5c12189 to 6b8043a544 2024-05-23 21:50:53 +02:00 Compare
kjuulh force-pushed renovate/all from 6b8043a544 to 1a39987354 2024-05-23 22:51:49 +02:00 Compare
kjuulh force-pushed renovate/all from 1a39987354 to 9c9bca77a1 2024-05-23 23:26:04 +02:00 Compare
kjuulh force-pushed renovate/all from 9c9bca77a1 to e8388ae547 2024-05-23 23:57:43 +02:00 Compare
kjuulh force-pushed renovate/all from e8388ae547 to 045ae1a342 2024-05-24 00:09:20 +02:00 Compare
kjuulh force-pushed renovate/all from 045ae1a342 to 6aa4378b80 2024-05-24 01:01:55 +02:00 Compare
kjuulh force-pushed renovate/all from 6aa4378b80 to 10bbfd1299 2024-05-24 01:32:23 +02:00 Compare
kjuulh force-pushed renovate/all from 10bbfd1299 to a265f78e76 2024-05-24 02:03:31 +02:00 Compare
kjuulh force-pushed renovate/all from a265f78e76 to 4aa494c1a0 2024-05-24 02:34:30 +02:00 Compare
kjuulh force-pushed renovate/all from 4aa494c1a0 to ff492f924c 2024-05-24 03:05:46 +02:00 Compare
kjuulh force-pushed renovate/all from ff492f924c to bec6a50092 2024-05-24 03:39:26 +02:00 Compare
kjuulh force-pushed renovate/all from bec6a50092 to 9aff647743 2024-05-24 04:10:11 +02:00 Compare
kjuulh force-pushed renovate/all from 9aff647743 to 8d3291d4f6 2024-05-24 04:40:08 +02:00 Compare
kjuulh force-pushed renovate/all from 8d3291d4f6 to 458fa852dc 2024-05-24 05:11:10 +02:00 Compare
kjuulh force-pushed renovate/all from 458fa852dc to 6cb57398ba 2024-05-24 05:41:37 +02:00 Compare
kjuulh force-pushed renovate/all from 6cb57398ba to 5c37a3a4e5 2024-05-24 06:08:42 +02:00 Compare
kjuulh force-pushed renovate/all from 5c37a3a4e5 to 28181e00ae 2024-05-24 06:58:35 +02:00 Compare
kjuulh force-pushed renovate/all from 28181e00ae to 564b69e296 2024-05-24 07:28:41 +02:00 Compare
kjuulh force-pushed renovate/all from 564b69e296 to e02439a80b 2024-05-24 07:58:55 +02:00 Compare
kjuulh force-pushed renovate/all from e02439a80b to ce36aade90 2024-05-24 08:28:12 +02:00 Compare
kjuulh force-pushed renovate/all from ce36aade90 to 50524bd536 2024-05-24 08:57:46 +02:00 Compare
kjuulh force-pushed renovate/all from 50524bd536 to eed6f021ff 2024-05-24 09:26:48 +02:00 Compare
kjuulh force-pushed renovate/all from eed6f021ff to 5b30f84cac 2024-05-24 09:56:36 +02:00 Compare
kjuulh force-pushed renovate/all from 5b30f84cac to f762a12a69 2024-05-24 10:26:23 +02:00 Compare
kjuulh force-pushed renovate/all from f762a12a69 to 49a25785fd 2024-05-24 10:56:11 +02:00 Compare
kjuulh force-pushed renovate/all from 49a25785fd to ed85786b83 2024-05-24 11:26:56 +02:00 Compare
kjuulh force-pushed renovate/all from ed85786b83 to acc999256b 2024-05-24 11:57:22 +02:00 Compare
kjuulh force-pushed renovate/all from acc999256b to 82e4447c03 2024-05-24 12:08:48 +02:00 Compare
kjuulh force-pushed renovate/all from 82e4447c03 to e7f1d47abc 2024-05-24 12:57:48 +02:00 Compare
kjuulh force-pushed renovate/all from e7f1d47abc to 5d96412165 2024-05-24 13:27:49 +02:00 Compare
kjuulh force-pushed renovate/all from 5d96412165 to c3db6af41a 2024-05-24 13:58:23 +02:00 Compare
kjuulh force-pushed renovate/all from c3db6af41a to b7c6ac4dfa 2024-05-24 14:28:20 +02:00 Compare
kjuulh force-pushed renovate/all from b7c6ac4dfa to b3292fa85a 2024-05-24 14:58:59 +02:00 Compare
kjuulh force-pushed renovate/all from b3292fa85a to 4b910196ef 2024-05-24 15:29:20 +02:00 Compare
kjuulh force-pushed renovate/all from 4b910196ef to ce91f4b587 2024-05-24 16:00:52 +02:00 Compare
kjuulh force-pushed renovate/all from ce91f4b587 to 41a54abbc9 2024-05-24 16:31:30 +02:00 Compare
kjuulh force-pushed renovate/all from 41a54abbc9 to 2d97d682bd 2024-05-24 17:02:36 +02:00 Compare
kjuulh force-pushed renovate/all from 2d97d682bd to 62f7b423d2 2024-05-24 17:33:25 +02:00 Compare
kjuulh force-pushed renovate/all from 62f7b423d2 to e04e4b6507 2024-05-24 18:08:58 +02:00 Compare
kjuulh force-pushed renovate/all from e04e4b6507 to 58e81e4086 2024-05-24 19:00:42 +02:00 Compare
kjuulh force-pushed renovate/all from 58e81e4086 to 8b0c427db8 2024-05-24 19:31:43 +02:00 Compare
kjuulh force-pushed renovate/all from 8b0c427db8 to 7a0b63a286 2024-05-24 20:03:31 +02:00 Compare
kjuulh force-pushed renovate/all from 7a0b63a286 to 6459c5825b 2024-05-24 20:35:42 +02:00 Compare
kjuulh force-pushed renovate/all from 6459c5825b to f88b89f037 2024-05-24 21:07:51 +02:00 Compare
kjuulh force-pushed renovate/all from f88b89f037 to acc65c6d4a 2024-05-24 21:38:44 +02:00 Compare
kjuulh force-pushed renovate/all from acc65c6d4a to 8f93f7b13d 2024-05-24 22:10:59 +02:00 Compare
kjuulh force-pushed renovate/all from 8f93f7b13d to c50d388c7e 2024-05-24 22:41:50 +02:00 Compare
kjuulh force-pushed renovate/all from c50d388c7e to a5040bbe3a 2024-05-24 23:14:14 +02:00 Compare
kjuulh force-pushed renovate/all from a5040bbe3a to 4a8b6e4f49 2024-05-24 23:44:57 +02:00 Compare
kjuulh force-pushed renovate/all from 4a8b6e4f49 to e6f51ad593 2024-05-25 00:08:57 +02:00 Compare
kjuulh force-pushed renovate/all from e6f51ad593 to 55fbeba815 2024-05-25 01:00:19 +02:00 Compare
kjuulh force-pushed renovate/all from 55fbeba815 to f7c9ac9a10 2024-05-25 01:31:24 +02:00 Compare
kjuulh force-pushed renovate/all from f7c9ac9a10 to 0a1ff9cbc9 2024-05-25 02:03:05 +02:00 Compare
kjuulh force-pushed renovate/all from 0a1ff9cbc9 to 703a331e9e 2024-05-25 02:34:17 +02:00 Compare
kjuulh force-pushed renovate/all from 703a331e9e to 07fad5ac08 2024-05-25 03:05:49 +02:00 Compare
kjuulh force-pushed renovate/all from 07fad5ac08 to 9db1c90926 2024-05-25 03:37:08 +02:00 Compare
kjuulh force-pushed renovate/all from 9db1c90926 to e45a1e3713 2024-05-25 04:08:52 +02:00 Compare
kjuulh force-pushed renovate/all from e45a1e3713 to 72aec54baf 2024-05-25 04:39:55 +02:00 Compare
kjuulh force-pushed renovate/all from 72aec54baf to 52f23b5230 2024-05-25 05:11:46 +02:00 Compare
kjuulh force-pushed renovate/all from 52f23b5230 to 9868920f67 2024-05-25 05:43:03 +02:00 Compare
kjuulh force-pushed renovate/all from 9868920f67 to 24a13eab6a 2024-05-25 06:09:04 +02:00 Compare
kjuulh force-pushed renovate/all from 24a13eab6a to ca304409c7 2024-05-25 07:00:35 +02:00 Compare
kjuulh force-pushed renovate/all from ca304409c7 to 5f7e6181db 2024-05-25 07:31:26 +02:00 Compare
kjuulh force-pushed renovate/all from 5f7e6181db to c395c50f56 2024-05-25 08:03:08 +02:00 Compare
kjuulh force-pushed renovate/all from c395c50f56 to 3d70feeac9 2024-05-25 08:34:20 +02:00 Compare
kjuulh force-pushed renovate/all from 3d70feeac9 to d9a790d3af 2024-05-25 09:05:50 +02:00 Compare
kjuulh force-pushed renovate/all from d9a790d3af to e060139f99 2024-05-25 09:37:20 +02:00 Compare
kjuulh force-pushed renovate/all from e060139f99 to b2145ac54c 2024-05-25 10:09:16 +02:00 Compare
kjuulh force-pushed renovate/all from b2145ac54c to 531188de81 2024-05-25 10:40:13 +02:00 Compare
kjuulh force-pushed renovate/all from 531188de81 to 91ab614ae1 2024-05-25 11:12:47 +02:00 Compare
kjuulh force-pushed renovate/all from 91ab614ae1 to aba69b6320 2024-05-25 11:43:25 +02:00 Compare
kjuulh force-pushed renovate/all from aba69b6320 to 08a6aaa7e8 2024-05-25 12:08:50 +02:00 Compare
kjuulh force-pushed renovate/all from 08a6aaa7e8 to 729beea152 2024-05-25 13:00:37 +02:00 Compare
kjuulh force-pushed renovate/all from 729beea152 to 964187e3da 2024-05-25 13:33:01 +02:00 Compare
kjuulh force-pushed renovate/all from 964187e3da to ce9b1c9b66 2024-05-25 14:05:11 +02:00 Compare
kjuulh force-pushed renovate/all from ce9b1c9b66 to fca901d112 2024-05-25 14:38:16 +02:00 Compare
kjuulh force-pushed renovate/all from fca901d112 to 2d25349b98 2024-05-25 15:09:31 +02:00 Compare
kjuulh force-pushed renovate/all from 2d25349b98 to 97fb04a0f7 2024-05-25 15:40:23 +02:00 Compare
kjuulh force-pushed renovate/all from 97fb04a0f7 to d9f6da9883 2024-05-25 16:11:32 +02:00 Compare
kjuulh force-pushed renovate/all from d9f6da9883 to 339a0db9b3 2024-05-25 16:42:31 +02:00 Compare
kjuulh force-pushed renovate/all from 339a0db9b3 to e09df02b7f 2024-05-25 17:14:21 +02:00 Compare
kjuulh force-pushed renovate/all from e09df02b7f to 6647562412 2024-05-25 17:44:48 +02:00 Compare
kjuulh force-pushed renovate/all from 6647562412 to 7254789ed7 2024-05-25 18:09:00 +02:00 Compare
kjuulh force-pushed renovate/all from 7254789ed7 to 5457f854a7 2024-05-25 18:56:02 +02:00 Compare
kjuulh force-pushed renovate/all from 5457f854a7 to 1f029ed1ef 2024-05-25 19:26:02 +02:00 Compare
kjuulh force-pushed renovate/all from 1f029ed1ef to 86f3a08d29 2024-05-25 19:57:14 +02:00 Compare
kjuulh force-pushed renovate/all from 86f3a08d29 to b7d2d9d737 2024-05-25 20:30:02 +02:00 Compare
kjuulh force-pushed renovate/all from b7d2d9d737 to eae318121c 2024-05-25 21:04:06 +02:00 Compare
kjuulh force-pushed renovate/all from eae318121c to 9e5ba1d091 2024-05-25 21:37:01 +02:00 Compare
kjuulh force-pushed renovate/all from 9e5ba1d091 to 0ba3130b24 2024-05-25 22:09:13 +02:00 Compare
kjuulh force-pushed renovate/all from 0ba3130b24 to 96a3d49203 2024-05-25 22:39:28 +02:00 Compare
kjuulh force-pushed renovate/all from 96a3d49203 to 12289171cf 2024-05-25 23:11:04 +02:00 Compare
kjuulh force-pushed renovate/all from 12289171cf to 1c98b6c17e 2024-05-25 23:42:03 +02:00 Compare
kjuulh force-pushed renovate/all from 1c98b6c17e to 2325869a46 2024-05-26 00:09:06 +02:00 Compare
kjuulh force-pushed renovate/all from 2325869a46 to ee58904c25 2024-05-26 00:57:01 +02:00 Compare
kjuulh force-pushed renovate/all from ee58904c25 to 3bcca92879 2024-05-26 01:27:43 +02:00 Compare
kjuulh force-pushed renovate/all from 3bcca92879 to 2f9094f057 2024-05-26 01:58:28 +02:00 Compare
kjuulh force-pushed renovate/all from 2f9094f057 to 1dbb9f8ce5 2024-05-26 02:29:20 +02:00 Compare
kjuulh force-pushed renovate/all from 1dbb9f8ce5 to bbd5aa4a2a 2024-05-26 03:00:23 +02:00 Compare
kjuulh force-pushed renovate/all from bbd5aa4a2a to fdf4ebff23 2024-05-26 03:57:58 +02:00 Compare
kjuulh force-pushed renovate/all from fdf4ebff23 to d57044ff3a 2024-05-26 04:28:56 +02:00 Compare
kjuulh force-pushed renovate/all from d57044ff3a to 8701f03c44 2024-05-26 04:59:46 +02:00 Compare
kjuulh force-pushed renovate/all from 8701f03c44 to bf166bd431 2024-05-26 05:30:36 +02:00 Compare
kjuulh force-pushed renovate/all from bf166bd431 to a694648dc0 2024-05-26 06:09:23 +02:00 Compare
kjuulh force-pushed renovate/all from a694648dc0 to 7843454e56 2024-05-26 06:56:38 +02:00 Compare
kjuulh force-pushed renovate/all from 7843454e56 to 805663cfe0 2024-05-26 07:26:25 +02:00 Compare
kjuulh force-pushed renovate/all from 805663cfe0 to 7f232733e6 2024-05-26 07:58:13 +02:00 Compare
kjuulh force-pushed renovate/all from 7f232733e6 to 7f3cd613e5 2024-05-26 08:28:46 +02:00 Compare
kjuulh force-pushed renovate/all from 7f3cd613e5 to 631db27c6a 2024-05-26 08:59:44 +02:00 Compare
kjuulh force-pushed renovate/all from 631db27c6a to a1abe02d2a 2024-05-26 09:30:57 +02:00 Compare
kjuulh force-pushed renovate/all from a1abe02d2a to 995ce3f3d4 2024-05-26 10:02:10 +02:00 Compare
kjuulh force-pushed renovate/all from 995ce3f3d4 to 42b5f8e8a8 2024-05-26 10:32:55 +02:00 Compare
kjuulh force-pushed renovate/all from 42b5f8e8a8 to 3185bde552 2024-05-26 11:03:55 +02:00 Compare
kjuulh force-pushed renovate/all from 3185bde552 to 91dba4e417 2024-05-26 11:49:44 +02:00 Compare
kjuulh force-pushed renovate/all from 91dba4e417 to fb13643b34 2024-05-26 12:08:08 +02:00 Compare
kjuulh force-pushed renovate/all from fb13643b34 to 18304d152f 2024-05-26 12:54:54 +02:00 Compare
kjuulh force-pushed renovate/all from 18304d152f to 26988e2f38 2024-05-26 13:22:49 +02:00 Compare
kjuulh force-pushed renovate/all from 26988e2f38 to 4fc4f48137 2024-07-06 15:18:06 +02:00 Compare
kjuulh force-pushed renovate/all from 4fc4f48137 to 1fda24dcbb 2024-08-21 22:34:19 +02:00 Compare
kjuulh force-pushed renovate/all from 1fda24dcbb to b5df5ca774 2024-08-21 23:57:32 +02:00 Compare
kjuulh force-pushed renovate/all from b5df5ca774 to 07d0d08b88 2024-08-22 00:10:31 +02:00 Compare
kjuulh force-pushed renovate/all from 07d0d08b88 to ad787ddeac 2024-08-22 01:16:40 +02:00 Compare
kjuulh force-pushed renovate/all from ad787ddeac to ec8c5ec6da 2024-08-22 01:56:06 +02:00 Compare
kjuulh force-pushed renovate/all from ec8c5ec6da to ba992c1594 2024-08-22 02:34:53 +02:00 Compare
kjuulh force-pushed renovate/all from ba992c1594 to 4b392b037e 2024-08-22 03:10:50 +02:00 Compare
kjuulh force-pushed renovate/all from 4b392b037e to 84abc9459b 2024-08-22 03:41:57 +02:00 Compare
kjuulh force-pushed renovate/all from 84abc9459b to c6e0adfa2f 2024-08-22 04:11:19 +02:00 Compare
kjuulh force-pushed renovate/all from c6e0adfa2f to e9168432d7 2024-08-22 04:41:24 +02:00 Compare
kjuulh force-pushed renovate/all from e9168432d7 to 3a15faae5c 2024-08-22 05:13:06 +02:00 Compare
kjuulh force-pushed renovate/all from 3a15faae5c to 84ba4f2d36 2024-08-22 05:43:58 +02:00 Compare
kjuulh force-pushed renovate/all from 84ba4f2d36 to 56d136514f 2024-08-22 06:08:49 +02:00 Compare
kjuulh force-pushed renovate/all from 56d136514f to a88ff12906 2024-08-22 06:53:08 +02:00 Compare
kjuulh force-pushed renovate/all from a88ff12906 to 72ea1a2bfe 2024-08-22 07:22:58 +02:00 Compare
kjuulh force-pushed renovate/all from 72ea1a2bfe to b71f59d7b8 2024-08-22 07:54:09 +02:00 Compare
kjuulh force-pushed renovate/all from b71f59d7b8 to d93c1afdc8 2024-08-22 08:24:30 +02:00 Compare
kjuulh force-pushed renovate/all from d93c1afdc8 to f96f2b0c89 2024-08-22 09:04:21 +02:00 Compare
kjuulh force-pushed renovate/all from f96f2b0c89 to a7d5066a90 2024-08-22 09:44:31 +02:00 Compare
kjuulh force-pushed renovate/all from a7d5066a90 to d1461105ed 2024-08-22 10:29:02 +02:00 Compare
kjuulh force-pushed renovate/all from d1461105ed to c9bb1a265b 2024-08-22 11:14:02 +02:00 Compare
kjuulh force-pushed renovate/all from c9bb1a265b to f1aec32ac1 2024-08-22 11:57:53 +02:00 Compare
kjuulh force-pushed renovate/all from f1aec32ac1 to 16af585e52 2024-08-22 12:08:26 +02:00 Compare
kjuulh force-pushed renovate/all from 16af585e52 to 23f8d03122 2024-08-22 13:07:39 +02:00 Compare
kjuulh force-pushed renovate/all from 23f8d03122 to bf1f98750a 2024-08-22 13:38:24 +02:00 Compare
kjuulh force-pushed renovate/all from bf1f98750a to dbe54969ed 2024-08-22 14:16:08 +02:00 Compare
kjuulh force-pushed renovate/all from dbe54969ed to 54a3962d1a 2024-08-22 14:56:52 +02:00 Compare
kjuulh force-pushed renovate/all from 54a3962d1a to 252636fb2d 2024-08-22 15:40:09 +02:00 Compare
kjuulh force-pushed renovate/all from 252636fb2d to e0d127253f 2024-08-22 16:21:25 +02:00 Compare
kjuulh force-pushed renovate/all from e0d127253f to 874ac8ab0d 2024-08-22 17:07:32 +02:00 Compare
kjuulh force-pushed renovate/all from 874ac8ab0d to dd06a39b25 2024-08-22 17:43:45 +02:00 Compare
kjuulh force-pushed renovate/all from dd06a39b25 to 629be169a1 2024-08-22 18:07:35 +02:00 Compare
kjuulh force-pushed renovate/all from 629be169a1 to b905fa0015 2024-08-22 18:56:28 +02:00 Compare
kjuulh force-pushed renovate/all from b905fa0015 to bd987f6bb0 2024-08-22 19:35:06 +02:00 Compare
kjuulh force-pushed renovate/all from bd987f6bb0 to c881524af4 2024-08-22 20:12:22 +02:00 Compare
kjuulh force-pushed renovate/all from c881524af4 to d3b04cbaa3 2024-08-22 20:46:24 +02:00 Compare
kjuulh force-pushed renovate/all from d3b04cbaa3 to f131d1951c 2024-08-22 21:21:08 +02:00 Compare
kjuulh force-pushed renovate/all from f131d1951c to c61c80582d 2024-08-22 21:56:48 +02:00 Compare
kjuulh force-pushed renovate/all from c61c80582d to 40e6265598 2024-08-22 22:31:49 +02:00 Compare
kjuulh force-pushed renovate/all from 40e6265598 to 9893aaebf6 2024-08-22 23:06:35 +02:00 Compare
kjuulh force-pushed renovate/all from 9893aaebf6 to 8d3686d7a1 2024-08-22 23:41:12 +02:00 Compare
kjuulh force-pushed renovate/all from 8d3686d7a1 to b610814716 2024-08-23 00:08:21 +02:00 Compare
kjuulh force-pushed renovate/all from b610814716 to f6545db1a7 2024-08-23 01:01:30 +02:00 Compare
kjuulh force-pushed renovate/all from f6545db1a7 to 052648f61c 2024-08-23 01:36:02 +02:00 Compare
kjuulh force-pushed renovate/all from 052648f61c to 10bb436e71 2024-08-23 02:11:07 +02:00 Compare
kjuulh force-pushed renovate/all from 10bb436e71 to e8e0b5f332 2024-08-23 02:45:07 +02:00 Compare
kjuulh force-pushed renovate/all from e8e0b5f332 to aacee1227d 2024-08-23 03:20:34 +02:00 Compare
kjuulh force-pushed renovate/all from aacee1227d to c2182c9562 2024-08-23 03:53:17 +02:00 Compare
kjuulh force-pushed renovate/all from c2182c9562 to f66c8b62b6 2024-08-23 04:27:21 +02:00 Compare
kjuulh force-pushed renovate/all from f66c8b62b6 to 9158c8a236 2024-08-23 05:01:50 +02:00 Compare
kjuulh force-pushed renovate/all from 9158c8a236 to 3058781d38 2024-08-23 05:36:34 +02:00 Compare
kjuulh force-pushed renovate/all from 3058781d38 to 9d62186f10 2024-08-23 06:07:53 +02:00 Compare
kjuulh force-pushed renovate/all from 9d62186f10 to bda91b7307 2024-08-23 06:55:55 +02:00 Compare
kjuulh force-pushed renovate/all from bda91b7307 to 12bff963fc 2024-08-23 07:30:42 +02:00 Compare
kjuulh force-pushed renovate/all from 12bff963fc to 42248c4b84 2024-08-23 08:05:35 +02:00 Compare
kjuulh force-pushed renovate/all from 42248c4b84 to a032fb8c8a 2024-08-23 08:39:56 +02:00 Compare
kjuulh force-pushed renovate/all from a032fb8c8a to 103a9fe941 2024-08-23 09:15:16 +02:00 Compare
kjuulh force-pushed renovate/all from 103a9fe941 to 6ffcca5966 2024-08-23 09:49:28 +02:00 Compare
kjuulh force-pushed renovate/all from 6ffcca5966 to 57041b55d7 2024-08-23 10:23:28 +02:00 Compare
kjuulh force-pushed renovate/all from 57041b55d7 to 9b8523cd18 2024-08-23 10:57:05 +02:00 Compare
kjuulh force-pushed renovate/all from 9b8523cd18 to 6723ff14a4 2024-08-23 11:31:08 +02:00 Compare
kjuulh force-pushed renovate/all from 6723ff14a4 to 93303fc2a3 2024-08-23 12:07:09 +02:00 Compare
kjuulh force-pushed renovate/all from 93303fc2a3 to da49621686 2024-08-23 12:53:03 +02:00 Compare
kjuulh force-pushed renovate/all from da49621686 to fabd56281d 2024-08-23 13:26:38 +02:00 Compare
kjuulh force-pushed renovate/all from fabd56281d to 6884d16d05 2024-08-23 14:01:26 +02:00 Compare
kjuulh force-pushed renovate/all from 6884d16d05 to cec0986a74 2024-08-23 14:35:00 +02:00 Compare
kjuulh force-pushed renovate/all from cec0986a74 to 5517c6dad6 2024-08-23 15:09:04 +02:00 Compare
kjuulh force-pushed renovate/all from 5517c6dad6 to c28ad6ebad 2024-08-23 15:42:59 +02:00 Compare
kjuulh force-pushed renovate/all from c28ad6ebad to 10d6d5e5db 2024-08-23 16:17:50 +02:00 Compare
kjuulh force-pushed renovate/all from 10d6d5e5db to b637003fb3 2024-08-23 16:52:07 +02:00 Compare
kjuulh force-pushed renovate/all from b637003fb3 to 9b2b434290 2024-08-23 17:27:33 +02:00 Compare
kjuulh force-pushed renovate/all from 9b2b434290 to b061f5659b 2024-08-23 18:07:17 +02:00 Compare
kjuulh force-pushed renovate/all from b061f5659b to 3a4f431df8 2024-08-23 18:54:46 +02:00 Compare
kjuulh force-pushed renovate/all from 3a4f431df8 to ce80ff55d0 2024-08-23 19:29:44 +02:00 Compare
kjuulh force-pushed renovate/all from ce80ff55d0 to 7742b78ede 2024-08-23 20:04:25 +02:00 Compare
kjuulh force-pushed renovate/all from 7742b78ede to 3ac0d8abaa 2024-08-23 20:39:09 +02:00 Compare
kjuulh force-pushed renovate/all from 3ac0d8abaa to 7454199b99 2024-08-23 21:14:17 +02:00 Compare
kjuulh force-pushed renovate/all from 7454199b99 to e4c35ef3de 2024-08-23 21:49:13 +02:00 Compare
kjuulh force-pushed renovate/all from e4c35ef3de to 4cfdaca297 2024-08-23 22:26:21 +02:00 Compare
kjuulh force-pushed renovate/all from 4cfdaca297 to 724eb2ea1a 2024-08-23 23:05:55 +02:00 Compare
kjuulh force-pushed renovate/all from 724eb2ea1a to 86f338b56e 2024-08-23 23:44:02 +02:00 Compare
kjuulh force-pushed renovate/all from 86f338b56e to 418d366baf 2024-08-24 00:07:56 +02:00 Compare
kjuulh force-pushed renovate/all from 418d366baf to 4760613200 2024-08-24 00:56:42 +02:00 Compare
kjuulh force-pushed renovate/all from 4760613200 to 7c5b96005f 2024-08-24 01:32:00 +02:00 Compare
kjuulh force-pushed renovate/all from 7c5b96005f to e8c62eea32 2024-08-24 02:07:46 +02:00 Compare
kjuulh force-pushed renovate/all from e8c62eea32 to 2d9771bb21 2024-08-24 02:42:33 +02:00 Compare
kjuulh force-pushed renovate/all from 2d9771bb21 to ae8e3d98c1 2024-08-24 03:18:36 +02:00 Compare
kjuulh force-pushed renovate/all from ae8e3d98c1 to dd15aff2dc 2024-08-24 03:51:24 +02:00 Compare
kjuulh force-pushed renovate/all from dd15aff2dc to fde2b179e5 2024-08-24 04:27:49 +02:00 Compare
kjuulh force-pushed renovate/all from fde2b179e5 to dffe3c4c56 2024-08-24 05:03:39 +02:00 Compare
kjuulh force-pushed renovate/all from dffe3c4c56 to 535bdb5f5e 2024-08-24 05:40:07 +02:00 Compare
kjuulh force-pushed renovate/all from 535bdb5f5e to 85e1e03867 2024-08-24 06:07:42 +02:00 Compare
kjuulh force-pushed renovate/all from 85e1e03867 to 63ed207be0 2024-08-24 06:59:44 +02:00 Compare
kjuulh force-pushed renovate/all from 63ed207be0 to 4463e07bad 2024-08-24 07:35:13 +02:00 Compare
kjuulh force-pushed renovate/all from 4463e07bad to f4d5bf5dad 2024-08-24 08:10:41 +02:00 Compare
kjuulh force-pushed renovate/all from f4d5bf5dad to 7549a93e77 2024-08-24 08:45:45 +02:00 Compare
kjuulh force-pushed renovate/all from 7549a93e77 to fc64140604 2024-08-24 09:21:04 +02:00 Compare
kjuulh force-pushed renovate/all from fc64140604 to 1b58b64bcc 2024-08-24 09:55:45 +02:00 Compare
kjuulh force-pushed renovate/all from 1b58b64bcc to e23feb640b 2024-08-24 10:32:18 +02:00 Compare
kjuulh force-pushed renovate/all from e23feb640b to 38ac55ea26 2024-08-24 11:07:41 +02:00 Compare
kjuulh force-pushed renovate/all from 38ac55ea26 to d801d4e447 2024-08-24 11:42:48 +02:00 Compare
kjuulh force-pushed renovate/all from d801d4e447 to efe8eb3104 2024-08-24 12:07:22 +02:00 Compare
kjuulh force-pushed renovate/all from efe8eb3104 to 2eececcf1b 2024-08-24 12:55:24 +02:00 Compare
kjuulh force-pushed renovate/all from 2eececcf1b to 6916093489 2024-08-24 13:30:50 +02:00 Compare
kjuulh force-pushed renovate/all from 6916093489 to ca787a764d 2024-08-24 14:06:58 +02:00 Compare
kjuulh force-pushed renovate/all from ca787a764d to ad46f7c187 2024-08-24 14:42:05 +02:00 Compare
kjuulh force-pushed renovate/all from ad46f7c187 to 1a9e70f20a 2024-08-24 15:18:02 +02:00 Compare
kjuulh force-pushed renovate/all from 1a9e70f20a to 3c42533a67 2024-08-24 15:52:57 +02:00 Compare
kjuulh force-pushed renovate/all from 3c42533a67 to 891b522fe7 2024-08-24 16:28:50 +02:00 Compare
kjuulh force-pushed renovate/all from 891b522fe7 to b16c0c8de6 2024-08-24 17:04:12 +02:00 Compare
kjuulh force-pushed renovate/all from b16c0c8de6 to ffb54e8153 2024-08-24 17:39:48 +02:00 Compare
kjuulh force-pushed renovate/all from ffb54e8153 to f4a65f315e 2024-08-24 18:07:37 +02:00 Compare
kjuulh force-pushed renovate/all from f4a65f315e to 393e96a44b 2024-08-24 18:55:44 +02:00 Compare
kjuulh force-pushed renovate/all from 393e96a44b to 5f5f69618c 2024-08-24 19:31:13 +02:00 Compare
kjuulh force-pushed renovate/all from 5f5f69618c to 2387862ceb 2024-08-24 20:07:15 +02:00 Compare
kjuulh force-pushed renovate/all from 2387862ceb to 0509d0a154 2024-08-24 20:42:35 +02:00 Compare
kjuulh force-pushed renovate/all from 0509d0a154 to f6e3decf98 2024-08-24 21:18:28 +02:00 Compare
kjuulh force-pushed renovate/all from f6e3decf98 to a5661f15fe 2024-08-24 21:55:22 +02:00 Compare
kjuulh force-pushed renovate/all from a5661f15fe to 949ed42392 2024-08-24 22:31:12 +02:00 Compare
kjuulh force-pushed renovate/all from 949ed42392 to bd8450bb84 2024-08-24 23:07:02 +02:00 Compare
kjuulh force-pushed renovate/all from bd8450bb84 to b7ba4aed92 2024-08-24 23:42:21 +02:00 Compare
kjuulh force-pushed renovate/all from b7ba4aed92 to 0517680062 2024-08-25 00:08:00 +02:00 Compare
kjuulh force-pushed renovate/all from 0517680062 to 3f0e7021b4 2024-08-25 00:58:02 +02:00 Compare
kjuulh force-pushed renovate/all from 3f0e7021b4 to 260213b48d 2024-08-25 01:33:35 +02:00 Compare
kjuulh force-pushed renovate/all from 260213b48d to 5d7b582063 2024-08-25 02:10:11 +02:00 Compare
kjuulh force-pushed renovate/all from 5d7b582063 to 32816cd497 2024-08-25 02:45:17 +02:00 Compare
kjuulh force-pushed renovate/all from 32816cd497 to f1ef528706 2024-08-25 03:21:35 +02:00 Compare
kjuulh force-pushed renovate/all from f1ef528706 to 9913168b59 2024-08-25 03:55:14 +02:00 Compare
kjuulh force-pushed renovate/all from 9913168b59 to bf766a73a5 2024-08-25 04:30:02 +02:00 Compare
kjuulh force-pushed renovate/all from bf766a73a5 to 0989898c8e 2024-08-25 05:05:33 +02:00 Compare
kjuulh force-pushed renovate/all from 0989898c8e to bf7b206ec3 2024-08-25 05:41:46 +02:00 Compare
kjuulh force-pushed renovate/all from bf7b206ec3 to e001e2bc15 2024-08-25 06:07:16 +02:00 Compare
kjuulh force-pushed renovate/all from e001e2bc15 to 2fdf01f068 2024-08-25 06:56:26 +02:00 Compare
kjuulh force-pushed renovate/all from 2fdf01f068 to 323c49098a 2024-08-25 07:32:01 +02:00 Compare
kjuulh force-pushed renovate/all from 323c49098a to d82c3c1717 2024-08-25 08:07:23 +02:00 Compare
kjuulh force-pushed renovate/all from d82c3c1717 to a0d5353c46 2024-08-25 08:42:40 +02:00 Compare
kjuulh force-pushed renovate/all from a0d5353c46 to 66e7d982be 2024-08-25 09:18:45 +02:00 Compare
kjuulh force-pushed renovate/all from 66e7d982be to fec1df11a3 2024-08-25 09:54:11 +02:00 Compare
kjuulh force-pushed renovate/all from fec1df11a3 to 1c186c392e 2024-08-25 10:29:28 +02:00 Compare
kjuulh force-pushed renovate/all from 1c186c392e to 8f16eecf7e 2024-08-25 11:04:39 +02:00 Compare
kjuulh force-pushed renovate/all from 8f16eecf7e to 7ea45c661c 2024-08-25 11:39:53 +02:00 Compare
kjuulh force-pushed renovate/all from 7ea45c661c to d2c853830c 2024-08-25 12:07:12 +02:00 Compare
kjuulh force-pushed renovate/all from d2c853830c to 963dcebf1a 2024-08-25 12:55:51 +02:00 Compare
kjuulh force-pushed renovate/all from 963dcebf1a to bd8a53bc97 2024-08-25 13:30:52 +02:00 Compare
kjuulh force-pushed renovate/all from bd8a53bc97 to 8a3a32a597 2024-08-25 14:06:40 +02:00 Compare
kjuulh force-pushed renovate/all from 8a3a32a597 to d014fb34cf 2024-08-25 14:41:58 +02:00 Compare
kjuulh force-pushed renovate/all from d014fb34cf to 726689f0b6 2024-08-25 15:18:22 +02:00 Compare
kjuulh force-pushed renovate/all from 726689f0b6 to 0cdccbda98 2024-08-25 15:53:47 +02:00 Compare
kjuulh force-pushed renovate/all from 0cdccbda98 to 7cd617f51c 2024-08-25 16:30:31 +02:00 Compare
kjuulh force-pushed renovate/all from 7cd617f51c to cb072b728d 2024-08-25 17:05:55 +02:00 Compare
kjuulh force-pushed renovate/all from cb072b728d to 287bcfb101 2024-08-25 17:41:16 +02:00 Compare
kjuulh force-pushed renovate/all from 287bcfb101 to 8bc43a5570 2024-08-25 18:07:19 +02:00 Compare
kjuulh force-pushed renovate/all from 8bc43a5570 to 21ad43a529 2024-08-25 18:55:41 +02:00 Compare
kjuulh force-pushed renovate/all from 21ad43a529 to 286f693663 2024-08-25 19:31:18 +02:00 Compare
kjuulh force-pushed renovate/all from 286f693663 to 6a2b3c402c 2024-08-25 20:07:18 +02:00 Compare
kjuulh force-pushed renovate/all from 6a2b3c402c to 99551e9442 2024-08-25 20:41:49 +02:00 Compare
kjuulh force-pushed renovate/all from 99551e9442 to 640c65c7c9 2024-08-25 21:17:34 +02:00 Compare
kjuulh force-pushed renovate/all from 640c65c7c9 to 18b756c941 2024-08-25 21:52:44 +02:00 Compare
kjuulh force-pushed renovate/all from 18b756c941 to 648ffb962a 2024-08-25 22:28:47 +02:00 Compare
kjuulh force-pushed renovate/all from 648ffb962a to 374b86c918 2024-08-25 23:03:51 +02:00 Compare
kjuulh force-pushed renovate/all from 374b86c918 to 2b473626c6 2024-08-25 23:39:21 +02:00 Compare
kjuulh force-pushed renovate/all from 2b473626c6 to af46d558a0 2024-08-26 00:08:10 +02:00 Compare
kjuulh force-pushed renovate/all from af46d558a0 to 465b385d0f 2024-08-26 00:57:05 +02:00 Compare
kjuulh force-pushed renovate/all from 465b385d0f to 7c3ed675ad 2024-08-26 01:33:14 +02:00 Compare
kjuulh force-pushed renovate/all from 7c3ed675ad to 260ec99bc5 2024-08-26 02:10:03 +02:00 Compare
kjuulh force-pushed renovate/all from 260ec99bc5 to 094351bbb0 2024-08-26 02:45:37 +02:00 Compare
kjuulh force-pushed renovate/all from 094351bbb0 to f40aa0b1a9 2024-08-26 03:21:59 +02:00 Compare
kjuulh force-pushed renovate/all from f40aa0b1a9 to 83ff30186f 2024-08-26 03:57:34 +02:00 Compare
kjuulh force-pushed renovate/all from 83ff30186f to 715c90386e 2024-08-26 04:33:31 +02:00 Compare
kjuulh force-pushed renovate/all from 715c90386e to a49b6933d0 2024-08-26 05:10:18 +02:00 Compare
kjuulh force-pushed renovate/all from a49b6933d0 to a5b24441af 2024-08-26 05:46:52 +02:00 Compare
kjuulh force-pushed renovate/all from a5b24441af to 2e80523fa8 2024-08-26 06:07:39 +02:00 Compare
kjuulh force-pushed renovate/all from 2e80523fa8 to e1994a6f03 2024-08-26 06:57:47 +02:00 Compare
kjuulh force-pushed renovate/all from e1994a6f03 to 7325f24fbc 2024-08-26 07:32:52 +02:00 Compare
kjuulh force-pushed renovate/all from 7325f24fbc to d35ef47d16 2024-08-26 08:09:52 +02:00 Compare
kjuulh force-pushed renovate/all from d35ef47d16 to d8b11a797c 2024-08-26 08:46:27 +02:00 Compare
kjuulh force-pushed renovate/all from d8b11a797c to d95253f461 2024-08-26 09:23:38 +02:00 Compare
kjuulh force-pushed renovate/all from d95253f461 to 79924b1cfb 2024-08-26 09:59:27 +02:00 Compare
kjuulh force-pushed renovate/all from 79924b1cfb to 269d8e746b 2024-08-26 10:36:01 +02:00 Compare
kjuulh force-pushed renovate/all from 269d8e746b to fc017f1f41 2024-08-26 11:12:16 +02:00 Compare
kjuulh force-pushed renovate/all from fc017f1f41 to c86474922c 2024-08-26 11:48:58 +02:00 Compare
kjuulh force-pushed renovate/all from c86474922c to 46599c5824 2024-08-26 12:07:23 +02:00 Compare
kjuulh force-pushed renovate/all from 46599c5824 to f3dedcec37 2024-08-26 12:57:21 +02:00 Compare
kjuulh force-pushed renovate/all from f3dedcec37 to 92edf9cbcd 2024-08-26 13:32:56 +02:00 Compare
kjuulh force-pushed renovate/all from 92edf9cbcd to d007db2bbc 2024-08-26 14:11:06 +02:00 Compare
kjuulh force-pushed renovate/all from d007db2bbc to f725d90e5e 2024-08-26 14:48:08 +02:00 Compare
kjuulh force-pushed renovate/all from f725d90e5e to 30b0158613 2024-08-26 15:25:37 +02:00 Compare
kjuulh force-pushed renovate/all from 30b0158613 to abc09235e7 2024-08-26 16:03:08 +02:00 Compare
kjuulh force-pushed renovate/all from abc09235e7 to ce7a5a9448 2024-08-26 16:40:19 +02:00 Compare
kjuulh force-pushed renovate/all from ce7a5a9448 to f01925ca27 2024-08-26 17:17:43 +02:00 Compare
kjuulh force-pushed renovate/all from f01925ca27 to 802c7ba48d 2024-08-26 17:54:53 +02:00 Compare
kjuulh force-pushed renovate/all from 802c7ba48d to 5e4e3c6ca2 2024-08-26 18:07:27 +02:00 Compare
kjuulh force-pushed renovate/all from 5e4e3c6ca2 to 74b44b640e 2024-08-26 18:55:40 +02:00 Compare
kjuulh force-pushed renovate/all from 74b44b640e to e24637b6a5 2024-08-26 19:31:01 +02:00 Compare
kjuulh force-pushed renovate/all from e24637b6a5 to 08f2f213ab 2024-08-26 20:07:27 +02:00 Compare
kjuulh force-pushed renovate/all from 08f2f213ab to 5e0a1cce14 2024-08-26 20:42:40 +02:00 Compare
kjuulh force-pushed renovate/all from 5e0a1cce14 to 97cf30e842 2024-08-26 21:18:35 +02:00 Compare
kjuulh force-pushed renovate/all from 97cf30e842 to b585808c41 2024-08-26 21:54:12 +02:00 Compare
kjuulh force-pushed renovate/all from b585808c41 to bd0c57bed0 2024-08-26 22:29:56 +02:00 Compare
kjuulh force-pushed renovate/all from bd0c57bed0 to 1dd6568ecf 2024-08-26 23:07:36 +02:00 Compare
kjuulh force-pushed renovate/all from 1dd6568ecf to a49517f843 2024-08-26 23:44:37 +02:00 Compare
kjuulh force-pushed renovate/all from a49517f843 to 5a441cc0bb 2024-08-27 00:08:10 +02:00 Compare
kjuulh force-pushed renovate/all from 5a441cc0bb to 419b25434b 2024-08-27 00:59:54 +02:00 Compare
kjuulh force-pushed renovate/all from 419b25434b to 5ec42ebd46 2024-08-27 01:35:36 +02:00 Compare
kjuulh force-pushed renovate/all from 5ec42ebd46 to e134a51587 2024-08-27 02:12:43 +02:00 Compare
kjuulh force-pushed renovate/all from e134a51587 to ee155dddcb 2024-08-27 02:48:20 +02:00 Compare
kjuulh force-pushed renovate/all from ee155dddcb to 4759825ab7 2024-08-27 03:25:02 +02:00 Compare
kjuulh force-pushed renovate/all from 4759825ab7 to bfe3a5c082 2024-08-27 04:00:16 +02:00 Compare
kjuulh force-pushed renovate/all from bfe3a5c082 to 576823f8f7 2024-08-27 04:35:33 +02:00 Compare
kjuulh force-pushed renovate/all from 576823f8f7 to e2c367434c 2024-08-27 05:11:13 +02:00 Compare
kjuulh force-pushed renovate/all from e2c367434c to 01c839b890 2024-08-27 05:47:33 +02:00 Compare
kjuulh force-pushed renovate/all from 01c839b890 to 04fd9ab331 2024-08-27 06:07:37 +02:00 Compare
kjuulh force-pushed renovate/all from 04fd9ab331 to 7acae38d72 2024-08-27 06:56:47 +02:00 Compare
kjuulh force-pushed renovate/all from 7acae38d72 to 3b18bdd939 2024-08-27 07:32:30 +02:00 Compare
kjuulh force-pushed renovate/all from 3b18bdd939 to 12731d70a6 2024-08-27 08:08:52 +02:00 Compare
kjuulh force-pushed renovate/all from 12731d70a6 to 07096ae094 2024-08-27 08:44:16 +02:00 Compare
kjuulh force-pushed renovate/all from 07096ae094 to db06f98609 2024-08-27 09:20:10 +02:00 Compare
kjuulh force-pushed renovate/all from db06f98609 to a1c30f5fe7 2024-08-27 09:55:14 +02:00 Compare
kjuulh force-pushed renovate/all from a1c30f5fe7 to dc36457447 2024-08-27 10:30:42 +02:00 Compare
kjuulh force-pushed renovate/all from dc36457447 to 0b923e78c4 2024-08-27 11:05:57 +02:00 Compare
kjuulh force-pushed renovate/all from 0b923e78c4 to 5b60dc3a3d 2024-08-27 11:42:41 +02:00 Compare
kjuulh force-pushed renovate/all from 5b60dc3a3d to 0780d8052e 2024-08-27 12:07:51 +02:00 Compare
kjuulh force-pushed renovate/all from 0780d8052e to 5d8081c7a2 2024-08-27 12:57:48 +02:00 Compare
kjuulh force-pushed renovate/all from 5d8081c7a2 to c193051cb7 2024-08-27 13:33:20 +02:00 Compare
kjuulh force-pushed renovate/all from c193051cb7 to 68ee70b1c5 2024-08-27 14:10:24 +02:00 Compare
kjuulh force-pushed renovate/all from 68ee70b1c5 to 76bef252e3 2024-08-27 14:46:16 +02:00 Compare
kjuulh force-pushed renovate/all from 76bef252e3 to 9e15c6f4fa 2024-08-27 15:22:26 +02:00 Compare
kjuulh force-pushed renovate/all from 9e15c6f4fa to 3bb1fb7178 2024-08-27 15:57:47 +02:00 Compare
kjuulh force-pushed renovate/all from 3bb1fb7178 to 55637d9241 2024-08-27 16:33:55 +02:00 Compare
kjuulh force-pushed renovate/all from 55637d9241 to e3dd44c179 2024-08-27 17:09:34 +02:00 Compare
kjuulh force-pushed renovate/all from e3dd44c179 to 1518693316 2024-08-27 17:46:50 +02:00 Compare
kjuulh force-pushed renovate/all from 1518693316 to 9a39102905 2024-08-27 18:07:47 +02:00 Compare
kjuulh force-pushed renovate/all from 9a39102905 to ef7c2f6bf4 2024-08-27 18:58:38 +02:00 Compare
kjuulh force-pushed renovate/all from ef7c2f6bf4 to 4acb9e37bd 2024-08-27 19:35:19 +02:00 Compare
kjuulh force-pushed renovate/all from 4acb9e37bd to 2693ce2e12 2024-08-27 20:12:37 +02:00 Compare
kjuulh force-pushed renovate/all from 2693ce2e12 to a9576cd59c 2024-08-27 20:48:35 +02:00 Compare
kjuulh force-pushed renovate/all from a9576cd59c to 6c4bd98660 2024-08-27 21:25:16 +02:00 Compare
kjuulh force-pushed renovate/all from 6c4bd98660 to 3d9974bd1a 2024-08-27 22:01:12 +02:00 Compare
kjuulh force-pushed renovate/all from 3d9974bd1a to e87b2ffef2 2024-08-27 22:37:35 +02:00 Compare
kjuulh force-pushed renovate/all from e87b2ffef2 to 18294398ef 2024-08-27 23:14:19 +02:00 Compare
kjuulh force-pushed renovate/all from 18294398ef to 33b3615fe8 2024-08-27 23:50:50 +02:00 Compare
kjuulh force-pushed renovate/all from 33b3615fe8 to fcc88cd860 2024-08-28 00:08:13 +02:00 Compare
kjuulh force-pushed renovate/all from fcc88cd860 to 30c05529a1 2024-08-28 01:00:18 +02:00 Compare
kjuulh force-pushed renovate/all from 30c05529a1 to b5ccda0782 2024-08-28 01:36:51 +02:00 Compare
kjuulh force-pushed renovate/all from b5ccda0782 to 8db5061ee1 2024-08-28 02:13:57 +02:00 Compare
kjuulh force-pushed renovate/all from 8db5061ee1 to 2e4e6000f7 2024-08-28 02:53:00 +02:00 Compare
kjuulh force-pushed renovate/all from 2e4e6000f7 to 8460c16f06 2024-08-28 03:31:59 +02:00 Compare
kjuulh force-pushed renovate/all from 8460c16f06 to f1fcdc2f0b 2024-08-28 04:06:51 +02:00 Compare
kjuulh force-pushed renovate/all from f1fcdc2f0b to d275c675e9 2024-08-28 04:42:48 +02:00 Compare
kjuulh force-pushed renovate/all from d275c675e9 to 348b3c85a7 2024-08-28 05:19:24 +02:00 Compare
kjuulh force-pushed renovate/all from 348b3c85a7 to 7718e38e7a 2024-08-28 05:56:39 +02:00 Compare
kjuulh force-pushed renovate/all from 7718e38e7a to 0f5d8a18ba 2024-08-28 06:07:36 +02:00 Compare
kjuulh force-pushed renovate/all from 0f5d8a18ba to 0f8f22fcf3 2024-08-28 06:57:45 +02:00 Compare
kjuulh force-pushed renovate/all from 0f8f22fcf3 to ba7c88868f 2024-08-28 07:34:06 +02:00 Compare
kjuulh force-pushed renovate/all from ba7c88868f to 7f24ba6b79 2024-08-28 08:11:10 +02:00 Compare
kjuulh force-pushed renovate/all from 7f24ba6b79 to c15ccf30c5 2024-08-28 08:47:49 +02:00 Compare
kjuulh force-pushed renovate/all from c15ccf30c5 to 1a1fb5430f 2024-08-28 09:25:27 +02:00 Compare
kjuulh force-pushed renovate/all from 1a1fb5430f to 5f693bb5b1 2024-08-28 10:02:08 +02:00 Compare
kjuulh force-pushed renovate/all from 5f693bb5b1 to 252092b8f5 2024-08-28 10:38:29 +02:00 Compare
kjuulh force-pushed renovate/all from 252092b8f5 to 0b38001a20 2024-08-28 11:14:38 +02:00 Compare
kjuulh force-pushed renovate/all from 0b38001a20 to b100fd89f7 2024-08-28 11:51:22 +02:00 Compare
kjuulh force-pushed renovate/all from b100fd89f7 to 6390e51b31 2024-08-28 12:07:37 +02:00 Compare
kjuulh force-pushed renovate/all from 6390e51b31 to f7b3be577d 2024-08-28 12:58:16 +02:00 Compare
kjuulh force-pushed renovate/all from f7b3be577d to 41207ef2e9 2024-08-28 13:34:43 +02:00 Compare
kjuulh force-pushed renovate/all from 41207ef2e9 to ff1dbb1746 2024-08-28 14:11:39 +02:00 Compare
kjuulh force-pushed renovate/all from ff1dbb1746 to a07bdb5808 2024-08-28 14:47:17 +02:00 Compare
kjuulh force-pushed renovate/all from a07bdb5808 to 56927b593e 2024-08-28 15:23:22 +02:00 Compare
kjuulh force-pushed renovate/all from 56927b593e to 3f833bdb00 2024-08-28 15:59:21 +02:00 Compare
kjuulh force-pushed renovate/all from 3f833bdb00 to 1a66b3ab3c 2024-08-28 16:36:37 +02:00 Compare
kjuulh force-pushed renovate/all from 1a66b3ab3c to f78f8003a8 2024-08-28 17:13:42 +02:00 Compare
kjuulh force-pushed renovate/all from f78f8003a8 to 9528a34c7a 2024-08-28 17:50:33 +02:00 Compare
kjuulh force-pushed renovate/all from 9528a34c7a to 27c378ede2 2024-08-28 18:07:35 +02:00 Compare
kjuulh force-pushed renovate/all from 27c378ede2 to 44617cb6c2 2024-08-28 18:58:35 +02:00 Compare
kjuulh force-pushed renovate/all from 44617cb6c2 to 26d984f984 2024-08-28 19:36:55 +02:00 Compare
kjuulh force-pushed renovate/all from 26d984f984 to bea0b27e56 2024-08-28 20:17:46 +02:00 Compare
kjuulh force-pushed renovate/all from bea0b27e56 to 1087b52079 2024-08-28 20:57:26 +02:00 Compare
kjuulh force-pushed renovate/all from 1087b52079 to 65c43a7845 2024-08-28 21:37:23 +02:00 Compare
kjuulh force-pushed renovate/all from 65c43a7845 to b143a89af3 2024-08-28 22:18:21 +02:00 Compare
kjuulh force-pushed renovate/all from b143a89af3 to 7c63c9445e 2024-08-28 22:59:04 +02:00 Compare
kjuulh force-pushed renovate/all from 7c63c9445e to ed8b93bb7d 2024-08-28 23:40:57 +02:00 Compare
kjuulh force-pushed renovate/all from ed8b93bb7d to 09e4a2631b 2024-08-29 00:09:12 +02:00 Compare
kjuulh force-pushed renovate/all from 09e4a2631b to 7cc68a02ae 2024-08-29 01:05:25 +02:00 Compare
kjuulh force-pushed renovate/all from 7cc68a02ae to 21a9c8a904 2024-08-29 01:44:52 +02:00 Compare
kjuulh force-pushed renovate/all from 21a9c8a904 to 75f6400b2c 2024-08-29 02:22:50 +02:00 Compare
kjuulh force-pushed renovate/all from 75f6400b2c to 7baa775b25 2024-08-29 02:59:47 +02:00 Compare
kjuulh force-pushed renovate/all from 7baa775b25 to 3bba6ffa7b 2024-08-29 03:36:51 +02:00 Compare
kjuulh force-pushed renovate/all from 3bba6ffa7b to 956e5cf387 2024-08-29 04:12:44 +02:00 Compare
kjuulh force-pushed renovate/all from 956e5cf387 to 345bc2d33c 2024-08-29 04:49:00 +02:00 Compare
kjuulh force-pushed renovate/all from 345bc2d33c to c483c59e86 2024-08-29 05:26:25 +02:00 Compare
kjuulh force-pushed renovate/all from c483c59e86 to ce77a697c0 2024-08-29 06:08:08 +02:00 Compare
kjuulh force-pushed renovate/all from ce77a697c0 to d515711bd4 2024-08-29 06:59:15 +02:00 Compare
kjuulh force-pushed renovate/all from d515711bd4 to 76b3038a51 2024-08-29 07:37:24 +02:00 Compare
kjuulh force-pushed renovate/all from 76b3038a51 to 8ed2eee3ce 2024-08-29 08:15:34 +02:00 Compare
kjuulh force-pushed renovate/all from 8ed2eee3ce to 5b8eff21c2 2024-08-29 08:52:13 +02:00 Compare
kjuulh force-pushed renovate/all from 5b8eff21c2 to 47a6997275 2024-08-29 09:29:51 +02:00 Compare
kjuulh force-pushed renovate/all from 47a6997275 to cb5ad8c9c8 2024-08-29 10:05:56 +02:00 Compare
kjuulh force-pushed renovate/all from cb5ad8c9c8 to b416482e1e 2024-08-29 10:42:52 +02:00 Compare
kjuulh force-pushed renovate/all from b416482e1e to f7ee979365 2024-08-29 11:19:44 +02:00 Compare
kjuulh force-pushed renovate/all from f7ee979365 to b507fd0a3f 2024-08-29 11:57:08 +02:00 Compare
kjuulh force-pushed renovate/all from b507fd0a3f to ab347491d7 2024-08-29 12:07:45 +02:00 Compare
kjuulh force-pushed renovate/all from ab347491d7 to 671db86df0 2024-08-29 12:58:53 +02:00 Compare
kjuulh force-pushed renovate/all from 671db86df0 to 1d67bdd98c 2024-08-29 13:35:31 +02:00 Compare
kjuulh force-pushed renovate/all from 1d67bdd98c to 87567a807d 2024-08-29 14:12:48 +02:00 Compare
kjuulh force-pushed renovate/all from 87567a807d to cb35c83acf 2024-08-29 14:48:30 +02:00 Compare
kjuulh force-pushed renovate/all from cb35c83acf to f922857843 2024-08-29 15:25:35 +02:00 Compare
kjuulh force-pushed renovate/all from f922857843 to dcbe265f92 2024-08-29 16:03:28 +02:00 Compare
kjuulh force-pushed renovate/all from dcbe265f92 to 1f402d38c5 2024-08-29 16:40:50 +02:00 Compare
kjuulh force-pushed renovate/all from 1f402d38c5 to 0db56ee819 2024-08-29 17:18:59 +02:00 Compare
kjuulh force-pushed renovate/all from 0db56ee819 to 8f09218b5e 2024-08-29 17:56:37 +02:00 Compare
kjuulh force-pushed renovate/all from 8f09218b5e to 508230a4e0 2024-08-29 18:08:04 +02:00 Compare
kjuulh force-pushed renovate/all from 508230a4e0 to 9815159755 2024-08-29 18:58:34 +02:00 Compare
kjuulh force-pushed renovate/all from 9815159755 to aac88beba3 2024-08-29 19:35:40 +02:00 Compare
kjuulh force-pushed renovate/all from aac88beba3 to a8258a435c 2024-08-29 20:13:21 +02:00 Compare
kjuulh force-pushed renovate/all from a8258a435c to 6cdab37bc6 2024-08-29 20:49:34 +02:00 Compare
kjuulh force-pushed renovate/all from 6cdab37bc6 to 39008c1a86 2024-08-29 21:27:36 +02:00 Compare
kjuulh force-pushed renovate/all from 39008c1a86 to be15c07a14 2024-08-29 22:04:37 +02:00 Compare
kjuulh force-pushed renovate/all from be15c07a14 to 2555d7d5da 2024-08-29 22:41:33 +02:00 Compare
kjuulh force-pushed renovate/all from 2555d7d5da to afe6de7f42 2024-08-29 23:20:51 +02:00 Compare
kjuulh force-pushed renovate/all from afe6de7f42 to 534072ea84 2024-08-29 23:57:43 +02:00 Compare
kjuulh force-pushed renovate/all from 534072ea84 to 8c8e966291 2024-08-30 00:09:19 +02:00 Compare
kjuulh force-pushed renovate/all from 8c8e966291 to c23eb9b88a 2024-08-30 01:02:54 +02:00 Compare
kjuulh force-pushed renovate/all from c23eb9b88a to b8c0b83f47 2024-08-30 01:41:01 +02:00 Compare
kjuulh force-pushed renovate/all from b8c0b83f47 to 54bdcd9c77 2024-08-30 02:19:46 +02:00 Compare
kjuulh force-pushed renovate/all from 54bdcd9c77 to e4deaf56e5 2024-08-30 02:57:51 +02:00 Compare
kjuulh force-pushed renovate/all from e4deaf56e5 to 3e9707925f 2024-08-30 03:36:41 +02:00 Compare
kjuulh force-pushed renovate/all from 3e9707925f to 2730b495b2 2024-08-30 04:14:07 +02:00 Compare
kjuulh force-pushed renovate/all from 2730b495b2 to c2b2c769ee 2024-08-30 04:52:51 +02:00 Compare
kjuulh force-pushed renovate/all from c2b2c769ee to 70f65aa271 2024-08-30 05:31:33 +02:00 Compare
kjuulh force-pushed renovate/all from 70f65aa271 to f33dda68c7 2024-08-30 06:08:51 +02:00 Compare
kjuulh force-pushed renovate/all from f33dda68c7 to 730753d574 2024-08-30 07:02:14 +02:00 Compare
kjuulh force-pushed renovate/all from 730753d574 to 8f94ab91c9 2024-08-30 07:40:20 +02:00 Compare
kjuulh force-pushed renovate/all from 8f94ab91c9 to 720426ca8f 2024-08-30 08:18:26 +02:00 Compare
kjuulh force-pushed renovate/all from 720426ca8f to 8a15132a83 2024-08-30 08:55:23 +02:00 Compare
kjuulh force-pushed renovate/all from 8a15132a83 to b20a71a536 2024-08-30 09:34:05 +02:00 Compare
kjuulh force-pushed renovate/all from b20a71a536 to d343830a0a 2024-08-30 10:11:15 +02:00 Compare
kjuulh force-pushed renovate/all from d343830a0a to f9df3c067a 2024-08-30 10:55:39 +02:00 Compare
kjuulh force-pushed renovate/all from f9df3c067a to 65cbfca0fd 2024-08-30 11:37:12 +02:00 Compare
kjuulh force-pushed renovate/all from 65cbfca0fd to 9a73656a6b 2024-08-30 12:08:04 +02:00 Compare
kjuulh force-pushed renovate/all from 9a73656a6b to 8510609977 2024-08-30 13:05:33 +02:00 Compare
kjuulh force-pushed renovate/all from 8510609977 to 14273c5f79 2024-08-30 13:44:02 +02:00 Compare
kjuulh force-pushed renovate/all from 14273c5f79 to 4e439318a8 2024-08-30 14:21:31 +02:00 Compare
kjuulh force-pushed renovate/all from 4e439318a8 to 48f665b1c3 2024-08-30 14:57:53 +02:00 Compare
kjuulh force-pushed renovate/all from 48f665b1c3 to f5b81aa694 2024-08-30 15:34:54 +02:00 Compare
kjuulh force-pushed renovate/all from f5b81aa694 to d53883bf35 2024-08-30 16:11:27 +02:00 Compare
kjuulh force-pushed renovate/all from d53883bf35 to 53bdd15864 2024-08-30 16:48:01 +02:00 Compare
kjuulh force-pushed renovate/all from 53bdd15864 to 3a575ca923 2024-08-30 17:23:42 +02:00 Compare
kjuulh force-pushed renovate/all from 3a575ca923 to 69e56f3141 2024-08-30 18:07:27 +02:00 Compare
kjuulh force-pushed renovate/all from 69e56f3141 to 378c6ea3d1 2024-08-30 18:57:26 +02:00 Compare
kjuulh force-pushed renovate/all from 378c6ea3d1 to 839597f7af 2024-08-30 19:34:12 +02:00 Compare
kjuulh force-pushed renovate/all from 839597f7af to 6d95bc4ec2 2024-08-30 20:10:56 +02:00 Compare
kjuulh force-pushed renovate/all from 6d95bc4ec2 to 83469b0c8c 2024-08-31 02:07:34 +02:00 Compare
kjuulh force-pushed renovate/all from 83469b0c8c to 297e665a63 2024-08-31 06:07:31 +02:00 Compare
kjuulh force-pushed renovate/all from 297e665a63 to f19d9f9a92 2024-09-01 02:07:34 +02:00 Compare
kjuulh force-pushed renovate/all from f19d9f9a92 to 7d6a1216b6 2024-09-01 06:07:44 +02:00 Compare
kjuulh force-pushed renovate/all from 7d6a1216b6 to 7e83bb6bcf 2024-09-02 02:07:29 +02:00 Compare
kjuulh force-pushed renovate/all from 7e83bb6bcf to f42809ea93 2024-09-02 06:07:40 +02:00 Compare
kjuulh force-pushed renovate/all from f42809ea93 to 7872ef7ac6 2024-09-03 02:07:46 +02:00 Compare
kjuulh force-pushed renovate/all from 7872ef7ac6 to 019830d4f5 2024-09-03 06:07:07 +02:00 Compare
kjuulh force-pushed renovate/all from 019830d4f5 to 2cb5bd6be2 2024-09-04 02:07:59 +02:00 Compare
kjuulh force-pushed renovate/all from 2cb5bd6be2 to 0a9746d809 2024-09-04 06:07:52 +02:00 Compare
kjuulh force-pushed renovate/all from 0a9746d809 to da53ae2cb0 2024-09-05 02:08:04 +02:00 Compare
kjuulh force-pushed renovate/all from da53ae2cb0 to 36de4aaac2 2024-09-05 06:07:58 +02:00 Compare
kjuulh force-pushed renovate/all from 36de4aaac2 to 9ac2965cc9 2024-09-06 02:09:15 +02:00 Compare
kjuulh force-pushed renovate/all from 9ac2965cc9 to 2946d3f2f1 2024-09-06 06:07:53 +02:00 Compare
kjuulh force-pushed renovate/all from 2946d3f2f1 to e660bee55a 2024-09-07 02:08:16 +02:00 Compare
kjuulh force-pushed renovate/all from e660bee55a to b7d2547f91 2024-09-07 06:07:59 +02:00 Compare
kjuulh force-pushed renovate/all from b7d2547f91 to cf06dad4bb 2024-09-08 02:09:28 +02:00 Compare
kjuulh force-pushed renovate/all from cf06dad4bb to 95dd8547c8 2024-09-08 06:09:06 +02:00 Compare
kjuulh force-pushed renovate/all from 95dd8547c8 to cd08a14d07 2024-09-08 14:49:28 +02:00 Compare
kjuulh force-pushed renovate/all from cd08a14d07 to b5299ab1e1 2024-09-09 02:09:14 +02:00 Compare
kjuulh force-pushed renovate/all from b5299ab1e1 to 7b63b2373f 2024-09-09 06:09:20 +02:00 Compare
kjuulh force-pushed renovate/all from 7b63b2373f to e4f100d6bf 2024-09-10 02:10:25 +02:00 Compare
kjuulh force-pushed renovate/all from e4f100d6bf to 4020b38d07 2024-09-10 06:09:14 +02:00 Compare
kjuulh force-pushed renovate/all from 4020b38d07 to 512e9716a5 2024-09-11 02:09:35 +02:00 Compare
kjuulh force-pushed renovate/all from 512e9716a5 to 3e04077c8f 2024-09-11 06:08:57 +02:00 Compare
kjuulh force-pushed renovate/all from 3e04077c8f to 2998bf4dc9 2024-09-12 02:09:41 +02:00 Compare
kjuulh force-pushed renovate/all from 2998bf4dc9 to 1833f7de88 2024-09-12 06:10:00 +02:00 Compare
kjuulh force-pushed renovate/all from 1833f7de88 to f151dd2054 2024-09-13 02:09:18 +02:00 Compare
kjuulh force-pushed renovate/all from f151dd2054 to 4a202272fb 2024-09-13 06:08:40 +02:00 Compare
kjuulh force-pushed renovate/all from 4a202272fb to 05f83d88b1 2024-09-14 02:08:32 +02:00 Compare
kjuulh force-pushed renovate/all from 05f83d88b1 to c2f80af83c 2024-09-14 06:08:49 +02:00 Compare
kjuulh force-pushed renovate/all from c2f80af83c to 195807d4ea 2024-09-15 02:08:42 +02:00 Compare
kjuulh force-pushed renovate/all from 195807d4ea to 8f30b8a4cf 2024-09-15 06:08:41 +02:00 Compare
kjuulh force-pushed renovate/all from 8f30b8a4cf to c218917585 2024-09-16 02:08:34 +02:00 Compare
kjuulh force-pushed renovate/all from c218917585 to 4fe5a27f29 2024-09-16 06:10:30 +02:00 Compare
kjuulh force-pushed renovate/all from 4fe5a27f29 to 9eda56f41a 2024-09-17 02:09:14 +02:00 Compare
kjuulh force-pushed renovate/all from 9eda56f41a to 21950fabea 2024-09-17 06:09:01 +02:00 Compare
kjuulh force-pushed renovate/all from 21950fabea to 5c600ade0f 2024-09-18 02:11:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5c600ade0f to 2b8085161f 2024-09-18 06:10:00 +02:00 Compare
kjuulh force-pushed renovate/all from 2b8085161f to 6462fa400d 2024-09-19 02:10:44 +02:00 Compare
kjuulh force-pushed renovate/all from 6462fa400d to f38b620c17 2024-09-19 06:10:04 +02:00 Compare
kjuulh force-pushed renovate/all from f38b620c17 to 4c8659148f 2024-09-20 02:15:25 +02:00 Compare
kjuulh force-pushed renovate/all from 4c8659148f to b0370a6293 2024-09-20 06:19:21 +02:00 Compare
kjuulh force-pushed renovate/all from b0370a6293 to a8ab9dd261 2024-09-21 02:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from a8ab9dd261 to 252624d1b8 2024-09-21 06:09:31 +02:00 Compare
kjuulh force-pushed renovate/all from 252624d1b8 to 440fd781dc 2024-09-22 02:08:30 +02:00 Compare
kjuulh force-pushed renovate/all from 440fd781dc to ac4fc7db4e 2024-09-22 06:08:54 +02:00 Compare
kjuulh force-pushed renovate/all from ac4fc7db4e to 98b23675c6 2024-09-23 02:08:56 +02:00 Compare
kjuulh force-pushed renovate/all from 98b23675c6 to e33d9769d6 2024-09-23 06:09:11 +02:00 Compare
kjuulh force-pushed renovate/all from e33d9769d6 to b2013f22ac 2024-09-24 02:08:54 +02:00 Compare
kjuulh force-pushed renovate/all from b2013f22ac to 43fe000707 2024-09-24 06:09:09 +02:00 Compare
kjuulh force-pushed renovate/all from 43fe000707 to 57f3a54509 2024-09-25 02:10:06 +02:00 Compare
kjuulh force-pushed renovate/all from 57f3a54509 to 8fc9f1b0ec 2024-09-25 06:09:22 +02:00 Compare
kjuulh force-pushed renovate/all from 8fc9f1b0ec to dc38ee6d6b 2024-09-26 02:08:43 +02:00 Compare
kjuulh force-pushed renovate/all from dc38ee6d6b to d907f492fb 2024-09-26 06:08:39 +02:00 Compare
kjuulh force-pushed renovate/all from d907f492fb to 9d655eed77 2024-09-27 02:09:51 +02:00 Compare
kjuulh force-pushed renovate/all from 9d655eed77 to 36fb1cdd87 2024-09-27 06:09:34 +02:00 Compare
kjuulh force-pushed renovate/all from 36fb1cdd87 to fe7afb46c4 2024-09-28 02:11:32 +02:00 Compare
kjuulh force-pushed renovate/all from fe7afb46c4 to 5773d715e2 2024-09-28 06:09:25 +02:00 Compare
kjuulh force-pushed renovate/all from 5773d715e2 to 1adc8f9414 2024-09-29 02:10:48 +02:00 Compare
kjuulh force-pushed renovate/all from 1adc8f9414 to 48f1dbffb3 2024-09-29 06:08:55 +02:00 Compare
kjuulh force-pushed renovate/all from 48f1dbffb3 to 2b0585b953 2024-09-30 02:09:31 +02:00 Compare
kjuulh force-pushed renovate/all from 2b0585b953 to 22a44b8b5c 2024-09-30 06:09:49 +02:00 Compare
kjuulh force-pushed renovate/all from 22a44b8b5c to 5a9176ae02 2024-10-01 02:10:21 +02:00 Compare
kjuulh force-pushed renovate/all from 5a9176ae02 to 20d7392c7e 2024-10-01 06:10:05 +02:00 Compare
kjuulh force-pushed renovate/all from 20d7392c7e to f12ccf7e86 2024-10-02 02:10:05 +02:00 Compare
kjuulh force-pushed renovate/all from f12ccf7e86 to 910b28927d 2024-10-02 06:09:22 +02:00 Compare
kjuulh force-pushed renovate/all from 910b28927d to b63cb5d9ea 2024-10-03 02:10:02 +02:00 Compare
kjuulh force-pushed renovate/all from b63cb5d9ea to d330601cf9 2024-10-03 06:09:33 +02:00 Compare
kjuulh force-pushed renovate/all from d330601cf9 to bd88b0f6aa 2024-10-04 02:09:35 +02:00 Compare
kjuulh force-pushed renovate/all from bd88b0f6aa to 2c0eda0e9e 2024-10-04 06:08:29 +02:00 Compare
kjuulh force-pushed renovate/all from 2c0eda0e9e to 18830ebe55 2024-10-05 02:08:27 +02:00 Compare
kjuulh force-pushed renovate/all from 18830ebe55 to b415d6e3cb 2024-10-05 06:08:24 +02:00 Compare
kjuulh force-pushed renovate/all from b415d6e3cb to 6625d2b008 2024-10-06 02:10:44 +02:00 Compare
kjuulh force-pushed renovate/all from 6625d2b008 to d84bda1569 2024-10-06 06:09:58 +02:00 Compare
kjuulh force-pushed renovate/all from d84bda1569 to 8ae3b50a78 2024-10-07 02:08:33 +02:00 Compare
kjuulh force-pushed renovate/all from 8ae3b50a78 to 1e7c78ab67 2024-10-07 06:08:28 +02:00 Compare
kjuulh force-pushed renovate/all from 1e7c78ab67 to f72bbed10c 2024-10-08 02:09:19 +02:00 Compare
kjuulh force-pushed renovate/all from f72bbed10c to 8c0342646e 2024-10-08 06:08:27 +02:00 Compare
kjuulh force-pushed renovate/all from 8c0342646e to 7cbacb72d0 2024-10-09 02:09:00 +02:00 Compare
kjuulh force-pushed renovate/all from 7cbacb72d0 to 632029deb7 2024-10-09 06:09:17 +02:00 Compare
kjuulh force-pushed renovate/all from 632029deb7 to cbed16f47c 2024-10-10 02:10:57 +02:00 Compare
kjuulh force-pushed renovate/all from cbed16f47c to 57025b172c 2024-10-10 06:09:59 +02:00 Compare
kjuulh force-pushed renovate/all from 57025b172c to 7eb071026f 2024-10-11 02:09:33 +02:00 Compare
kjuulh force-pushed renovate/all from 7eb071026f to a13da55030 2024-10-11 06:09:24 +02:00 Compare
kjuulh force-pushed renovate/all from a13da55030 to 624b4c27d9 2024-10-12 02:09:43 +02:00 Compare
kjuulh force-pushed renovate/all from 624b4c27d9 to d572deb0b1 2024-10-12 06:09:29 +02:00 Compare
kjuulh force-pushed renovate/all from d572deb0b1 to 6bfeb6e8da 2024-10-13 02:08:58 +02:00 Compare
kjuulh force-pushed renovate/all from 6bfeb6e8da to ea350775d0 2024-10-13 06:09:03 +02:00 Compare
kjuulh force-pushed renovate/all from ea350775d0 to 553e038efa 2024-10-14 02:09:30 +02:00 Compare
kjuulh force-pushed renovate/all from 553e038efa to e9222e06c4 2024-10-14 06:09:24 +02:00 Compare
kjuulh force-pushed renovate/all from e9222e06c4 to 0a7144c8e2 2024-10-15 02:09:24 +02:00 Compare
kjuulh force-pushed renovate/all from 0a7144c8e2 to 5ea0d2d15f 2024-10-15 06:09:19 +02:00 Compare
kjuulh force-pushed renovate/all from 5ea0d2d15f to 8cc4a084ce 2024-10-16 02:10:19 +02:00 Compare
kjuulh force-pushed renovate/all from 8cc4a084ce to b1c8d6ee2c 2024-10-16 06:10:19 +02:00 Compare
kjuulh force-pushed renovate/all from b1c8d6ee2c to 9952cd8e0a 2024-10-17 02:11:16 +02:00 Compare
kjuulh force-pushed renovate/all from 9952cd8e0a to 1bd4ee12a8 2024-10-17 06:10:16 +02:00 Compare
kjuulh force-pushed renovate/all from 1bd4ee12a8 to 013d93840d 2024-10-18 02:11:52 +02:00 Compare
kjuulh force-pushed renovate/all from 013d93840d to 92addce85d 2024-10-18 06:10:14 +02:00 Compare
kjuulh force-pushed renovate/all from 92addce85d to e040df5e4d 2024-10-19 02:10:28 +02:00 Compare
kjuulh force-pushed renovate/all from e040df5e4d to a92aa39b44 2024-10-19 06:11:09 +02:00 Compare
kjuulh force-pushed renovate/all from a92aa39b44 to 32c205a4ea 2024-10-20 02:11:51 +02:00 Compare
kjuulh force-pushed renovate/all from 32c205a4ea to ad940617ac 2024-10-20 06:10:58 +02:00 Compare
kjuulh force-pushed renovate/all from ad940617ac to 34f77126f7 2024-10-21 02:09:27 +02:00 Compare
kjuulh force-pushed renovate/all from 34f77126f7 to 5b47ba2d20 2024-10-21 06:09:29 +02:00 Compare
kjuulh force-pushed renovate/all from 5b47ba2d20 to 5c016a6fa1 2024-10-22 02:10:33 +02:00 Compare
kjuulh force-pushed renovate/all from 5c016a6fa1 to 0072df2046 2024-10-22 06:09:31 +02:00 Compare
kjuulh force-pushed renovate/all from 0072df2046 to 4ee3470343 2024-10-23 02:12:05 +02:00 Compare
kjuulh force-pushed renovate/all from 4ee3470343 to e9dc75f797 2024-10-23 06:11:35 +02:00 Compare
kjuulh force-pushed renovate/all from e9dc75f797 to b2620cfee6 2024-10-24 02:10:24 +02:00 Compare
kjuulh force-pushed renovate/all from b2620cfee6 to ae50b18f30 2024-10-24 06:10:44 +02:00 Compare
kjuulh force-pushed renovate/all from ae50b18f30 to 929ccb9171 2024-10-25 02:10:18 +02:00 Compare
kjuulh force-pushed renovate/all from 929ccb9171 to 237ffdde6b 2024-10-25 06:10:03 +02:00 Compare
kjuulh force-pushed renovate/all from 237ffdde6b to ab452ce467 2024-10-26 02:10:21 +02:00 Compare
kjuulh force-pushed renovate/all from ab452ce467 to aac546c55c 2024-10-26 06:09:40 +02:00 Compare
kjuulh force-pushed renovate/all from aac546c55c to 4ade41b162 2024-10-27 02:15:30 +02:00 Compare
kjuulh force-pushed renovate/all from 4ade41b162 to 98e4e75dac 2024-10-27 06:09:54 +01:00 Compare
kjuulh force-pushed renovate/all from 98e4e75dac to f7cba94d45 2024-10-28 02:09:30 +01:00 Compare
kjuulh force-pushed renovate/all from f7cba94d45 to decd2c9d4d 2024-10-28 06:10:02 +01:00 Compare
kjuulh force-pushed renovate/all from decd2c9d4d to 5667a702d5 2024-10-29 02:12:14 +01:00 Compare
kjuulh force-pushed renovate/all from 5667a702d5 to cc1e180ac7 2024-10-29 06:10:27 +01:00 Compare
kjuulh force-pushed renovate/all from cc1e180ac7 to 9f7702739f 2024-10-30 02:11:14 +01:00 Compare
kjuulh force-pushed renovate/all from 9f7702739f to 20bb1b452f 2024-10-30 06:10:45 +01:00 Compare
kjuulh force-pushed renovate/all from 20bb1b452f to 5fa925aefd 2024-10-31 02:10:56 +01:00 Compare
kjuulh force-pushed renovate/all from 5fa925aefd to f88dcb3d7d 2024-10-31 06:10:45 +01:00 Compare
kjuulh force-pushed renovate/all from f88dcb3d7d to a946f77a32 2024-11-01 02:12:20 +01:00 Compare
kjuulh force-pushed renovate/all from a946f77a32 to d9c66d2a4e 2024-11-01 06:11:16 +01:00 Compare
kjuulh force-pushed renovate/all from d9c66d2a4e to 56cba01757 2024-11-02 02:10:48 +01:00 Compare
kjuulh force-pushed renovate/all from 56cba01757 to 82faedc6e2 2024-11-02 06:10:36 +01:00 Compare
kjuulh force-pushed renovate/all from 82faedc6e2 to ae4a063700 2024-11-04 02:08:35 +01:00 Compare
kjuulh force-pushed renovate/all from ae4a063700 to dd04fb0745 2024-11-04 06:07:59 +01:00 Compare
kjuulh force-pushed renovate/all from dd04fb0745 to 070e43595b 2024-11-05 02:09:08 +01:00 Compare
kjuulh force-pushed renovate/all from 070e43595b to 3877fa82a0 2024-11-05 06:09:02 +01:00 Compare
kjuulh force-pushed renovate/all from 3877fa82a0 to 7f8aa37cfa 2024-11-06 02:08:22 +01:00 Compare
kjuulh force-pushed renovate/all from 7f8aa37cfa to a2983e3696 2024-11-06 06:08:04 +01:00 Compare
kjuulh force-pushed renovate/all from a2983e3696 to c217d737fd 2024-11-07 02:09:39 +01:00 Compare
kjuulh force-pushed renovate/all from c217d737fd to c5b0f064f4 2024-11-07 06:08:52 +01:00 Compare
kjuulh force-pushed renovate/all from c5b0f064f4 to badf60faa1 2024-11-08 02:09:44 +01:00 Compare
kjuulh force-pushed renovate/all from badf60faa1 to 37fbec4e5c 2024-11-08 06:09:25 +01:00 Compare
kjuulh force-pushed renovate/all from 37fbec4e5c to f35d5dce0e 2024-11-09 02:09:31 +01:00 Compare
kjuulh force-pushed renovate/all from f35d5dce0e to c1f9821334 2024-11-09 06:09:05 +01:00 Compare
kjuulh force-pushed renovate/all from c1f9821334 to 1df069fbd3 2024-11-10 02:09:19 +01:00 Compare
kjuulh force-pushed renovate/all from 1df069fbd3 to 7a2054bab6 2024-11-10 06:11:32 +01:00 Compare
kjuulh force-pushed renovate/all from 7a2054bab6 to 4c14e8c15e 2024-11-11 02:09:07 +01:00 Compare
kjuulh force-pushed renovate/all from 4c14e8c15e to a178f14633 2024-11-11 06:08:39 +01:00 Compare
kjuulh force-pushed renovate/all from a178f14633 to cda55a58cb 2024-11-12 02:08:48 +01:00 Compare
kjuulh force-pushed renovate/all from cda55a58cb to a0449ddf68 2024-11-12 06:09:20 +01:00 Compare
kjuulh force-pushed renovate/all from a0449ddf68 to 533e2a7d72 2024-11-13 02:14:04 +01:00 Compare
kjuulh force-pushed renovate/all from 533e2a7d72 to 3fad235a23 2024-11-13 06:11:40 +01:00 Compare
kjuulh force-pushed renovate/all from 3fad235a23 to 91ac58b76c 2024-11-14 02:10:45 +01:00 Compare
kjuulh force-pushed renovate/all from 91ac58b76c to 9346c2bd4e 2024-11-14 06:12:29 +01:00 Compare
kjuulh force-pushed renovate/all from 9346c2bd4e to c8665e8957 2024-11-15 02:09:26 +01:00 Compare
kjuulh force-pushed renovate/all from c8665e8957 to a84295be02 2024-11-15 06:11:35 +01:00 Compare
kjuulh force-pushed renovate/all from a84295be02 to 6b55427b76 2024-11-16 02:11:04 +01:00 Compare
kjuulh force-pushed renovate/all from 6b55427b76 to 0bfe5bd8ae 2024-11-16 06:11:54 +01:00 Compare
kjuulh force-pushed renovate/all from 0bfe5bd8ae to 83d98a7571 2024-11-17 02:09:49 +01:00 Compare
kjuulh force-pushed renovate/all from 83d98a7571 to 1373d7fb3c 2024-11-17 06:09:54 +01:00 Compare
kjuulh force-pushed renovate/all from 1373d7fb3c to 9a1aff4fe1 2024-11-18 02:08:50 +01:00 Compare
kjuulh force-pushed renovate/all from 9a1aff4fe1 to 14aea8768b 2024-11-18 06:09:25 +01:00 Compare
kjuulh force-pushed renovate/all from 14aea8768b to 599bff191c 2024-11-19 02:09:24 +01:00 Compare
kjuulh force-pushed renovate/all from 599bff191c to 92238c57ba 2024-11-19 06:09:42 +01:00 Compare
kjuulh force-pushed renovate/all from 92238c57ba to fd1c035107 2024-11-20 02:10:39 +01:00 Compare
kjuulh force-pushed renovate/all from fd1c035107 to 6ccbc7a912 2024-11-20 06:10:09 +01:00 Compare
kjuulh force-pushed renovate/all from 6ccbc7a912 to 4272c6aa07 2024-11-21 02:11:00 +01:00 Compare
kjuulh force-pushed renovate/all from 4272c6aa07 to b0c94006c4 2024-11-21 06:09:55 +01:00 Compare
kjuulh force-pushed renovate/all from b0c94006c4 to 8426b76622 2024-11-22 02:12:10 +01:00 Compare
kjuulh force-pushed renovate/all from 8426b76622 to 8af521a38c 2024-11-22 06:12:14 +01:00 Compare
kjuulh force-pushed renovate/all from 8af521a38c to 7a1067d045 2024-11-23 02:15:08 +01:00 Compare
kjuulh force-pushed renovate/all from 7a1067d045 to a66d65a4b8 2024-11-23 06:17:23 +01:00 Compare
kjuulh force-pushed renovate/all from a66d65a4b8 to 7d021daada 2024-11-24 02:16:49 +01:00 Compare
kjuulh force-pushed renovate/all from 7d021daada to 07c2376432 2024-11-24 06:15:22 +01:00 Compare
kjuulh force-pushed renovate/all from 07c2376432 to 91b8e50a1f 2024-11-25 02:12:05 +01:00 Compare
kjuulh force-pushed renovate/all from 91b8e50a1f to 21417b683e 2024-11-25 06:13:31 +01:00 Compare
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
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: kjuulh/cibus-frontend#11
No description provided.