Skip to content

Commit

Permalink
chore(deps): update node.js to v20.12.2 (#106)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [node](https://togithub.com/nodejs/node) | stage | minor | `20.10.0`
-> `20.12.2` |

---

### Release Notes

<details>
<summary>nodejs/node (node)</summary>

###
[`v20.12.2`](https://togithub.com/nodejs/node/releases/tag/v20.12.2):
2024-04-10, Version 20.12.2 &#x27;Iron&#x27; (LTS), @&#8203;RafaelGSS

[Compare
Source](https://togithub.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://togithub.com/nodejs/node/commit/69ffc6d50d)]
- **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis)
[nodejs-private/node-private#563](https://togithub.com/nodejs-private/node-private/pull/563)

###
[`v20.12.1`](https://togithub.com/nodejs/node/releases/tag/v20.12.1):
2024-04-03, Version 20.12.1 &#x27;Iron&#x27; (LTS), @&#8203;RafaelGSS

[Compare
Source](https://togithub.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://togithub.com/nodejs/node/commit/bd8f10a257)]
- **deps**: update undici to v5.28.4 (Matteo Collina)
[nodejs-private/node-private#576](https://togithub.com/nodejs-private/node-private/pull/576)
- \[[`5e34540a96`](https://togithub.com/nodejs/node/commit/5e34540a96)]
- **http**: do not allow OBS fold in headers by default (Paolo Insogna)
[nodejs-private/node-private#557](https://togithub.com/nodejs-private/node-private/pull/557)
- \[[`ba1ae6d188`](https://togithub.com/nodejs/node/commit/ba1ae6d188)]
- **src**: ensure to close stream when destroying session (Anna
Henningsen)
[nodejs-private/node-private#561](https://togithub.com/nodejs-private/node-private/pull/561)

###
[`v20.12.0`](https://togithub.com/nodejs/node/releases/tag/v20.12.0):
2024-03-26, Version 20.12.0 &#x27;Iron&#x27; (LTS), @&#8203;richardlau

[Compare
Source](https://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.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://togithub.com/nodejs/node/commit/4f49e9d000)]
- **(SEMVER-MINOR)** **build**: build opt to set local location of
headers (Michael Dawson)
[#&#8203;51525](https://togithub.com/nodejs/node/pull/51525)
- \[[`ccdb01187b`](https://togithub.com/nodejs/node/commit/ccdb01187b)]
- **doc**: add zcbenz to collaborators (Cheng Zhao)
[#&#8203;51812](https://togithub.com/nodejs/node/pull/51812)
- \[[`481af53aea`](https://togithub.com/nodejs/node/commit/481af53aea)]
- **doc**: add lemire to collaborators (Daniel Lemire)
[#&#8203;51572](https://togithub.com/nodejs/node/pull/51572)
- \[[`5ba4d96525`](https://togithub.com/nodejs/node/commit/5ba4d96525)]
- **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader
(Tim Perry) [#&#8203;51412](https://togithub.com/nodejs/node/pull/51412)
- \[[`0861498e8b`](https://togithub.com/nodejs/node/commit/0861498e8b)]
- **(SEMVER-MINOR)** **http2**: add server handshake utility (snek)
[#&#8203;51172](https://togithub.com/nodejs/node/pull/51172)
- \[[`6b08d006ee`](https://togithub.com/nodejs/node/commit/6b08d006ee)]
- **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter)
[#&#8203;51323](https://togithub.com/nodejs/node/pull/51323)
- \[[`7894989bf0`](https://togithub.com/nodejs/node/commit/7894989bf0)]
- **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee
Cheung) [#&#8203;51044](https://togithub.com/nodejs/node/pull/51044)
- \[[`a58c98ea85`](https://togithub.com/nodejs/node/commit/a58c98ea85)]
- **(SEMVER-MINOR)** **src**: print string content better in
BlobDeserializer (Joyee Cheung)
[#&#8203;50960](https://togithub.com/nodejs/node/pull/50960)
- \[[`c3c0a3ee5c`](https://togithub.com/nodejs/node/commit/c3c0a3ee5c)]
- **(SEMVER-MINOR)** **src**: support multi-line values for .env file
(IlyasShabi)
[#&#8203;51289](https://togithub.com/nodejs/node/pull/51289)
- \[[`2a921966c6`](https://togithub.com/nodejs/node/commit/2a921966c6)]
- **(SEMVER-MINOR)** **src**: do not coerce dotenv paths (Tobias Nießen)
[#&#8203;51425](https://togithub.com/nodejs/node/pull/51425)
- \[[`0dee86f295`](https://togithub.com/nodejs/node/commit/0dee86f295)]
- **(SEMVER-MINOR)** **src**: support configurable snapshot (Joyee
Cheung) [#&#8203;50453](https://togithub.com/nodejs/node/pull/50453)
- \[[`ade6614067`](https://togithub.com/nodejs/node/commit/ade6614067)]
- **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to
webstreams compression (Damian Krzeminski)
[#&#8203;50097](https://togithub.com/nodejs/node/pull/50097)
- \[[`fe922f05e4`](https://togithub.com/nodejs/node/commit/fe922f05e4)]
- **(SEMVER-MINOR)** **timers**: export timers.promises (Marco Ippolito)
[#&#8203;51246](https://togithub.com/nodejs/node/pull/51246)

##### Commits

- \[[`cbda4e9fc5`](https://togithub.com/nodejs/node/commit/cbda4e9fc5)]
- **assert,crypto**: make KeyObject and CryptoKey testable for equality
(Filip Skokan)
[#&#8203;50897](https://togithub.com/nodejs/node/pull/50897)
- \[[`92fca59647`](https://togithub.com/nodejs/node/commit/92fca59647)]
- **async_hooks,inspector**: implement inspector api without async_wrap
(Gabriel Bota)
[#&#8203;51501](https://togithub.com/nodejs/node/pull/51501)
- \[[`029ca982dc`](https://togithub.com/nodejs/node/commit/029ca982dc)]
- **benchmark**: update iterations of benchmark/async_hooks/async-local-
(Lei Shi) [#&#8203;51420](https://togithub.com/nodejs/node/pull/51420)
- \[[`350e9fee8d`](https://togithub.com/nodejs/node/commit/350e9fee8d)]
- **benchmark**: update iterations of benchmark/domain/domain-fn-args.js
(Lei Shi) [#&#8203;51408](https://togithub.com/nodejs/node/pull/51408)
- \[[`40fda97deb`](https://togithub.com/nodejs/node/commit/40fda97deb)]
- **benchmark**: update iterations of assert/deepequal-typedarrays.js
(Lei Shi) [#&#8203;51419](https://togithub.com/nodejs/node/pull/51419)
- \[[`1b2e3b7049`](https://togithub.com/nodejs/node/commit/1b2e3b7049)]
- **benchmark**: update iterations of benchmark/assert/deepequal-map.js
(Lei Shi) [#&#8203;51416](https://togithub.com/nodejs/node/pull/51416)
- \[[`7639259203`](https://togithub.com/nodejs/node/commit/7639259203)]
- **benchmark**: rename startup.js to startup-core.js (Joyee Cheung)
[#&#8203;51669](https://togithub.com/nodejs/node/pull/51669)
- \[[`4be33b5577`](https://togithub.com/nodejs/node/commit/4be33b5577)]
- **benchmark**: remove dependency on unshipped tools (Adam Majer)
[#&#8203;51146](https://togithub.com/nodejs/node/pull/51146)
- \[[`bd03a154a9`](https://togithub.com/nodejs/node/commit/bd03a154a9)]
- **benchmark**: update iterations in benchmark/perf_hooks (Lei Shi)
[#&#8203;50869](https://togithub.com/nodejs/node/pull/50869)
- \[[`19b943b909`](https://togithub.com/nodejs/node/commit/19b943b909)]
- **benchmark**: update iterations in
benchmark/crypto/aes-gcm-throughput.js (Lei Shi)
[#&#8203;50929](https://togithub.com/nodejs/node/pull/50929)
- \[[`278c990dea`](https://togithub.com/nodejs/node/commit/278c990dea)]
- **benchmark**: update iteration and size in
benchmark/crypto/randomBytes.js (Lei Shi)
[#&#8203;50868](https://togithub.com/nodejs/node/pull/50868)
- \[[`443d4fcff3`](https://togithub.com/nodejs/node/commit/443d4fcff3)]
- **benchmark**: add undici websocket benchmark (Chenyu Yang)
[#&#8203;50586](https://togithub.com/nodejs/node/pull/50586)
- \[[`3ab6143380`](https://togithub.com/nodejs/node/commit/3ab6143380)]
- **benchmark**: add create-hash benchmark (Joyee Cheung)
[#&#8203;51026](https://togithub.com/nodejs/node/pull/51026)
- \[[`6a8ff09332`](https://togithub.com/nodejs/node/commit/6a8ff09332)]
- **benchmark**: update interations and len in
benchmark/util/text-decoder.js (Lei Shi)
[#&#8203;50938](https://togithub.com/nodejs/node/pull/50938)
- \[[`22b53bc1fa`](https://togithub.com/nodejs/node/commit/22b53bc1fa)]
- **benchmark**: update iterations of benchmark/util/type-check.js (Lei
Shi) [#&#8203;50937](https://togithub.com/nodejs/node/pull/50937)
- \[[`f56bda5109`](https://togithub.com/nodejs/node/commit/f56bda5109)]
- **benchmark**: update iterations in
benchmark/util/normalize-encoding.js (Lei Shi)
[#&#8203;50934](https://togithub.com/nodejs/node/pull/50934)
- \[[`4fc83e1ce3`](https://togithub.com/nodejs/node/commit/4fc83e1ce3)]
- **benchmark**: update iterations in benchmark/util/inspect-array.js
(Lei Shi) [#&#8203;50933](https://togithub.com/nodejs/node/pull/50933)
- \[[`0edddcfc19`](https://togithub.com/nodejs/node/commit/0edddcfc19)]
- **benchmark**: update iterations in benchmark/util/format.js (Lei Shi)
[#&#8203;50932](https://togithub.com/nodejs/node/pull/50932)
- \[[`f109961fd1`](https://togithub.com/nodejs/node/commit/f109961fd1)]
- **benchmark**: update iterations in benchmark/crypto/hkdf.js (Lei Shi)
[#&#8203;50866](https://togithub.com/nodejs/node/pull/50866)
- \[[`1e923f11f2`](https://togithub.com/nodejs/node/commit/1e923f11f2)]
- **benchmark**: update iterations in benchmark/crypto/get-ciphers.js
(Lei Shi) [#&#8203;50863](https://togithub.com/nodejs/node/pull/50863)
- \[[`f13643da06`](https://togithub.com/nodejs/node/commit/f13643da06)]
- **benchmark**: update number of iterations for `util.inspect`
(kylo5aby) [#&#8203;50651](https://togithub.com/nodejs/node/pull/50651)
- \[[`03b19cbd2a`](https://togithub.com/nodejs/node/commit/03b19cbd2a)]
- **bootstrap**: improve snapshot unsupported builtin warnings (Joyee
Cheung) [#&#8203;50944](https://togithub.com/nodejs/node/pull/50944)
- \[[`51ea5b60a9`](https://togithub.com/nodejs/node/commit/51ea5b60a9)]
- **build**: fix arm64 host cross-compilation in GN (Cheng Zhao)
[#&#8203;51903](https://togithub.com/nodejs/node/pull/51903)
- \[[`9f5547afa2`](https://togithub.com/nodejs/node/commit/9f5547afa2)]
- ***Revert*** "**build**: workaround for node-core-utils" (Richard Lau)
[#&#8203;51975](https://togithub.com/nodejs/node/pull/51975)
- \[[`58255e73ae`](https://togithub.com/nodejs/node/commit/58255e73ae)]
- **build**: respect the `NODE` env variable in `Makefile` (Antoine du
Hamel) [#&#8203;51743](https://togithub.com/nodejs/node/pull/51743)
- \[[`0a7419bf0b`](https://togithub.com/nodejs/node/commit/0a7419bf0b)]
- ***Revert*** "**build**: fix warning in cares under GN build" (Luigi
Pinca) [#&#8203;51865](https://togithub.com/nodejs/node/pull/51865)
- \[[`4118174b85`](https://togithub.com/nodejs/node/commit/4118174b85)]
- **build**: remove `librt` libs link for Android compatibility (BuShe
Pie) [#&#8203;51632](https://togithub.com/nodejs/node/pull/51632)
- \[[`012da16b85`](https://togithub.com/nodejs/node/commit/012da16b85)]
- **build**: do not rely on gn_helpers in GN build (Cheng Zhao)
[#&#8203;51439](https://togithub.com/nodejs/node/pull/51439)
- \[[`93fcf52990`](https://togithub.com/nodejs/node/commit/93fcf52990)]
- **build**: fix warning in cares under GN build (Cheng Zhao)
[#&#8203;51687](https://togithub.com/nodejs/node/pull/51687)
- \[[`2176495455`](https://togithub.com/nodejs/node/commit/2176495455)]
- **build**: fix building js2c with GN (Cheng Zhao)
[#&#8203;51818](https://togithub.com/nodejs/node/pull/51818)
- \[[`d6e702f885`](https://togithub.com/nodejs/node/commit/d6e702f885)]
- **build**: encode non-ASCII Latin1 characters as one byte in JS2C
(Joyee Cheung)
[#&#8203;51605](https://togithub.com/nodejs/node/pull/51605)
- \[[`4f49e9d000`](https://togithub.com/nodejs/node/commit/4f49e9d000)]
- **(SEMVER-MINOR)** **build**: build opt to set local location of
headers (Michael Dawson)
[#&#8203;51525](https://togithub.com/nodejs/node/pull/51525)
- \[[`8e84aad0ef`](https://togithub.com/nodejs/node/commit/8e84aad0ef)]
- **build**: use macOS m1 machines for testing (Yagiz Nizipli)
[#&#8203;51620](https://togithub.com/nodejs/node/pull/51620)
- \[[`5fce1a17e2`](https://togithub.com/nodejs/node/commit/5fce1a17e2)]
- **build**: check before removing %config% link (liudonghua)
[#&#8203;51437](https://togithub.com/nodejs/node/pull/51437)
- \[[`46d6dce1a8`](https://togithub.com/nodejs/node/commit/46d6dce1a8)]
- **build**: increase parallel executions in github (Yagiz Nizipli)
[#&#8203;51554](https://togithub.com/nodejs/node/pull/51554)
- \[[`8b3ead1f3e`](https://togithub.com/nodejs/node/commit/8b3ead1f3e)]
- **build**: remove copyright header in node.gni (Cheng Zhao)
[#&#8203;51535](https://togithub.com/nodejs/node/pull/51535)
- \[[`d8b86ad363`](https://togithub.com/nodejs/node/commit/d8b86ad363)]
- **build**: update GN build files for ngtcp2 (Cheng Zhao)
[#&#8203;51313](https://togithub.com/nodejs/node/pull/51313)
- \[[`ba0ffddd2d`](https://togithub.com/nodejs/node/commit/ba0ffddd2d)]
- **build**: fix for VScode "Reopen in Container" (Serg Kryvonos)
[#&#8203;51271](https://togithub.com/nodejs/node/pull/51271)
- \[[`8b97e2e0a7`](https://togithub.com/nodejs/node/commit/8b97e2e0a7)]
- **build**: add `-flax-vector-conversions` to V8 build (Michaël Zasso)
[#&#8203;51257](https://togithub.com/nodejs/node/pull/51257)
- \[[`bd528c7dc0`](https://togithub.com/nodejs/node/commit/bd528c7dc0)]
- **build**: fix warnings from uv for gn build (Cheng Zhao)
[#&#8203;51069](https://togithub.com/nodejs/node/pull/51069)
- \[[`ffe467b062`](https://togithub.com/nodejs/node/commit/ffe467b062)]
- **build,tools**: make addons tests work with GN (Cheng Zhao)
[#&#8203;50737](https://togithub.com/nodejs/node/pull/50737)
- \[[`448d67109a`](https://togithub.com/nodejs/node/commit/448d67109a)]
- **(SEMVER-MINOR)** **crypto**: implement crypto.hash() (Joyee Cheung)
[#&#8203;51044](https://togithub.com/nodejs/node/pull/51044)
- \[[`48959dd2b4`](https://togithub.com/nodejs/node/commit/48959dd2b4)]
- **crypto**: update root certificates to NSS 3.98 (Node.js GitHub Bot)
[#&#8203;51794](https://togithub.com/nodejs/node/pull/51794)
- \[[`68e8b2c492`](https://togithub.com/nodejs/node/commit/68e8b2c492)]
- **crypto**: use EVP_MD_fetch and cache EVP_MD for hashes (Joyee
Cheung) [#&#8203;51034](https://togithub.com/nodejs/node/pull/51034)
- \[[`adb5d69621`](https://togithub.com/nodejs/node/commit/adb5d69621)]
- **crypto**: update CryptoKey symbol properties (Filip Skokan)
[#&#8203;50897](https://togithub.com/nodejs/node/pull/50897)
- \[[`df0213fd3d`](https://togithub.com/nodejs/node/commit/df0213fd3d)]
- **deps**: update nghttp2 to 1.60.0 (Node.js GitHub Bot)
[#&#8203;51948](https://togithub.com/nodejs/node/pull/51948)
- \[[`208dd887a5`](https://togithub.com/nodejs/node/commit/208dd887a5)]
- **deps**: upgrade npm to 10.5.0 (npm team)
[#&#8203;51913](https://togithub.com/nodejs/node/pull/51913)
- \[[`587e70e1ee`](https://togithub.com/nodejs/node/commit/587e70e1ee)]
- **deps**: update corepack to 0.25.2 (Node.js GitHub Bot)
[#&#8203;51810](https://togithub.com/nodejs/node/pull/51810)
- \[[`38343c4857`](https://togithub.com/nodejs/node/commit/38343c4857)]
- **deps**: update c-ares to 1.27.0 (Node.js GitHub Bot)
[#&#8203;51846](https://togithub.com/nodejs/node/pull/51846)
- \[[`c9974f621c`](https://togithub.com/nodejs/node/commit/c9974f621c)]
- **deps**: update c-ares to 1.26.0 (Node.js GitHub Bot)
[#&#8203;51582](https://togithub.com/nodejs/node/pull/51582)
- \[[`0aa18e1a1c`](https://togithub.com/nodejs/node/commit/0aa18e1a1c)]
- **deps**: update googletest to
[`6a59382`](https://togithub.com/nodejs/node/commit/6a59382) (Node.js
GitHub Bot) [#&#8203;51580](https://togithub.com/nodejs/node/pull/51580)
- \[[`f871bc6ddc`](https://togithub.com/nodejs/node/commit/f871bc6ddc)]
- **deps**: update nghttp2 to 1.59.0 (Node.js GitHub Bot)
[#&#8203;51581](https://togithub.com/nodejs/node/pull/51581)
- \[[`94f8ee8717`](https://togithub.com/nodejs/node/commit/94f8ee8717)]
- **deps**: update corepack to 0.24.1 (Node.js GitHub Bot)
[#&#8203;51459](https://togithub.com/nodejs/node/pull/51459)
- \[[`c23ce06e6b`](https://togithub.com/nodejs/node/commit/c23ce06e6b)]
- **deps**: update ada to 2.7.6 (Node.js GitHub Bot)
[#&#8203;51542](https://togithub.com/nodejs/node/pull/51542)
- \[[`372ce69de1`](https://togithub.com/nodejs/node/commit/372ce69de1)]
- **deps**: update ada to 2.7.5 (Node.js GitHub Bot)
[#&#8203;51542](https://togithub.com/nodejs/node/pull/51542)
- \[[`133719b2c9`](https://togithub.com/nodejs/node/commit/133719b2c9)]
- **deps**: update googletest to
[`7c07a86`](https://togithub.com/nodejs/node/commit/7c07a86) (Node.js
GitHub Bot) [#&#8203;51458](https://togithub.com/nodejs/node/pull/51458)
- \[[`35675aa07f`](https://togithub.com/nodejs/node/commit/35675aa07f)]
- **deps**: update acorn-walk to 8.3.2 (Node.js GitHub Bot)
[#&#8203;51457](https://togithub.com/nodejs/node/pull/51457)
- \[[`ca73f55a22`](https://togithub.com/nodejs/node/commit/ca73f55a22)]
- **deps**: update base64 to 0.5.2 (Node.js GitHub Bot)
[#&#8203;51455](https://togithub.com/nodejs/node/pull/51455)
- \[[`c9dad18191`](https://togithub.com/nodejs/node/commit/c9dad18191)]
- **deps**: compile c-ares with C11 support (Michaël Zasso)
[#&#8203;51410](https://togithub.com/nodejs/node/pull/51410)
- \[[`a727fa73ee`](https://togithub.com/nodejs/node/commit/a727fa73ee)]
- **deps**: upgrade npm to 10.3.0 (npm team)
[#&#8203;51431](https://togithub.com/nodejs/node/pull/51431)
- \[[`834bbfd039`](https://togithub.com/nodejs/node/commit/834bbfd039)]
- **deps**: update c-ares to 1.25.0 (Node.js GitHub Bot)
[#&#8203;51385](https://togithub.com/nodejs/node/pull/51385)
- \[[`4c8fa3e7c2`](https://togithub.com/nodejs/node/commit/4c8fa3e7c2)]
- **deps**: update uvwasi to 0.0.20 and fixup tests (Michael Dawson)
[#&#8203;51355](https://togithub.com/nodejs/node/pull/51355)
- \[[`bd183ef2af`](https://togithub.com/nodejs/node/commit/bd183ef2af)]
- **deps**: add nghttp3/\*\*/.deps to .gitignore (Luigi Pinca)
[#&#8203;51400](https://togithub.com/nodejs/node/pull/51400)
- \[[`1d8169995c`](https://togithub.com/nodejs/node/commit/1d8169995c)]
- **deps**: update corepack to 0.24.0 (Node.js GitHub Bot)
[#&#8203;51318](https://togithub.com/nodejs/node/pull/51318)
- \[[`4dfbbb8789`](https://togithub.com/nodejs/node/commit/4dfbbb8789)]
- **deps**: update acorn to 8.11.3 (Node.js GitHub Bot)
[#&#8203;51317](https://togithub.com/nodejs/node/pull/51317)
- \[[`7d60877fa3`](https://togithub.com/nodejs/node/commit/7d60877fa3)]
- **deps**: update brotli to 1.1.0 (Node.js GitHub Bot)
[#&#8203;50804](https://togithub.com/nodejs/node/pull/50804)
- \[[`1b99a3f0af`](https://togithub.com/nodejs/node/commit/1b99a3f0af)]
- **deps**: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot)
[#&#8203;51274](https://togithub.com/nodejs/node/pull/51274)
- \[[`2270285839`](https://togithub.com/nodejs/node/commit/2270285839)]
- **deps**: update simdutf to 4.0.8 (Node.js GitHub Bot)
[#&#8203;51000](https://togithub.com/nodejs/node/pull/51000)
- \[[`61d1535d84`](https://togithub.com/nodejs/node/commit/61d1535d84)]
- **deps**: V8: cherry-pick
[`de611e6`](https://togithub.com/nodejs/node/commit/de611e69ad51)
(Keyhan Vakil)
[#&#8203;51200](https://togithub.com/nodejs/node/pull/51200)
- \[[`04323fd595`](https://togithub.com/nodejs/node/commit/04323fd595)]
- **deps**: update googletest to
[`530d5c8`](https://togithub.com/nodejs/node/commit/530d5c8) (Node.js
GitHub Bot) [#&#8203;51191](https://togithub.com/nodejs/node/pull/51191)
- \[[`454b4f8d7e`](https://togithub.com/nodejs/node/commit/454b4f8d7e)]
- **deps**: update acorn-walk to 8.3.1 (Node.js GitHub Bot)
[#&#8203;50457](https://togithub.com/nodejs/node/pull/50457)
- \[[`cc693eb908`](https://togithub.com/nodejs/node/commit/cc693eb908)]
- **deps**: update acorn-walk to 8.3.0 (Node.js GitHub Bot)
[#&#8203;50457](https://togithub.com/nodejs/node/pull/50457)
- \[[`09519c6655`](https://togithub.com/nodejs/node/commit/09519c6655)]
- **deps**: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot)
[#&#8203;51105](https://togithub.com/nodejs/node/pull/51105)
- \[[`a2f39e9168`](https://togithub.com/nodejs/node/commit/a2f39e9168)]
- **deps**: V8: cherry-pick
[`0fd478b`](https://togithub.com/nodejs/node/commit/0fd478bcdabd) (Joyee
Cheung) [#&#8203;50572](https://togithub.com/nodejs/node/pull/50572)
- \[[`1aaf156ea7`](https://togithub.com/nodejs/node/commit/1aaf156ea7)]
- **deps**: update zlib to 1.3-22124f5 (Node.js GitHub Bot)
[#&#8203;50910](https://togithub.com/nodejs/node/pull/50910)
- \[[`3f4e254047`](https://togithub.com/nodejs/node/commit/3f4e254047)]
- **deps**: update googletest to
[`76bb2af`](https://togithub.com/nodejs/node/commit/76bb2af) (Node.js
GitHub Bot) [#&#8203;50555](https://togithub.com/nodejs/node/pull/50555)
- \[[`702684c008`](https://togithub.com/nodejs/node/commit/702684c008)]
- **deps**: update googletest to
[`b10fad3`](https://togithub.com/nodejs/node/commit/b10fad3) (Node.js
GitHub Bot) [#&#8203;50555](https://togithub.com/nodejs/node/pull/50555)
- \[[`4ee7f29657`](https://togithub.com/nodejs/node/commit/4ee7f29657)]
- **deps**: update timezone to 2024a (Michaël Zasso)
[#&#8203;51723](https://togithub.com/nodejs/node/pull/51723)
- \[[`452d74c8b6`](https://togithub.com/nodejs/node/commit/452d74c8b6)]
- **deps**: update icu to 74.2 (Michaël Zasso)
[#&#8203;51723](https://togithub.com/nodejs/node/pull/51723)
- \[[`e6fc5a5ee1`](https://togithub.com/nodejs/node/commit/e6fc5a5ee1)]
- **deps**: update timezone to 2023d (Node.js GitHub Bot)
[#&#8203;51461](https://togithub.com/nodejs/node/pull/51461)
- \[[`4ee0f8306b`](https://togithub.com/nodejs/node/commit/4ee0f8306b)]
- **deps**: update icu to 74.1 (Node.js GitHub Bot)
[#&#8203;50515](https://togithub.com/nodejs/node/pull/50515)
- \[[`cb49f31480`](https://togithub.com/nodejs/node/commit/cb49f31480)]
- **deps**: cherry-pick
[libuv/libuv@`d09441c`](https://togithub.com/libuv/libuv/commit/d09441c)
(Richard Lau)
[#&#8203;51976](https://togithub.com/nodejs/node/pull/51976)
- \[[`ea50540c5e`](https://togithub.com/nodejs/node/commit/ea50540c5e)]
- ***Revert*** "**deps**: V8: cherry-pick
[`13192d6`](https://togithub.com/nodejs/node/commit/13192d6e10fa)"
(kxxt) [#&#8203;51495](https://togithub.com/nodejs/node/pull/51495)
- \[[`6fd1617ab4`](https://togithub.com/nodejs/node/commit/6fd1617ab4)]
- **doc**: add policy for distribution (Geoffrey Booth)
[#&#8203;51918](https://togithub.com/nodejs/node/pull/51918)
- \[[`fc0b389006`](https://togithub.com/nodejs/node/commit/fc0b389006)]
- **doc**: fix actual result of example is different in events (Deokjin
Kim) [#&#8203;51925](https://togithub.com/nodejs/node/pull/51925)
- \[[`93d6d66339`](https://togithub.com/nodejs/node/commit/93d6d66339)]
- **doc**: clarify Corepack threat model (Antoine du Hamel)
[#&#8203;51917](https://togithub.com/nodejs/node/pull/51917)
- \[[`276d1d1d65`](https://togithub.com/nodejs/node/commit/276d1d1d65)]
- **doc**: add stability index to crypto.hash() (Joyee Cheung)
[#&#8203;51978](https://togithub.com/nodejs/node/pull/51978)
- \[[`473af948b5`](https://togithub.com/nodejs/node/commit/473af948b5)]
- **doc**: remove redundant backquote which breaks sentence (JounQin)
[#&#8203;51904](https://togithub.com/nodejs/node/pull/51904)
- \[[`b52b249b05`](https://togithub.com/nodejs/node/commit/b52b249b05)]
- **doc**: update node-api/node-addon-api team link to sharing project
news (Ulises Gascón)
[#&#8203;51877](https://togithub.com/nodejs/node/pull/51877)
- \[[`a74c373ea4`](https://togithub.com/nodejs/node/commit/a74c373ea4)]
- **doc**: add website team to sharing project news (Ulises Gascón)
[#&#8203;49002](https://togithub.com/nodejs/node/pull/49002)
- \[[`b7ce547d41`](https://togithub.com/nodejs/node/commit/b7ce547d41)]
- **doc**: update guide link for Event Loop (Shrujal Shah)
[#&#8203;51874](https://togithub.com/nodejs/node/pull/51874)
- \[[`3dfee7ee33`](https://togithub.com/nodejs/node/commit/3dfee7ee33)]
- **doc**: change `ExperimentalWarnings` to `ExperimentalWarning` (Ameet
Kaustav) [#&#8203;51741](https://togithub.com/nodejs/node/pull/51741)
- \[[`740d0679e7`](https://togithub.com/nodejs/node/commit/740d0679e7)]
- **doc**: add Paolo to TSC members (Michael Dawson)
[#&#8203;51825](https://togithub.com/nodejs/node/pull/51825)
- \[[`3240a2f349`](https://togithub.com/nodejs/node/commit/3240a2f349)]
- **doc**: reserve 123 for Electron 30 (Keeley Hammond)
[#&#8203;51803](https://togithub.com/nodejs/node/pull/51803)
- \[[`597e3db0f9`](https://togithub.com/nodejs/node/commit/597e3db0f9)]
- **doc**: add mention to GPG_TTY (Rafael Gonzaga)
[#&#8203;51806](https://togithub.com/nodejs/node/pull/51806)
- \[[`ccdb01187b`](https://togithub.com/nodejs/node/commit/ccdb01187b)]
- **doc**: add zcbenz to collaborators (Cheng Zhao)
[#&#8203;51812](https://togithub.com/nodejs/node/pull/51812)
- \[[`3a3de00437`](https://togithub.com/nodejs/node/commit/3a3de00437)]
- **doc**: add entry to stewards (Rafael Gonzaga)
[#&#8203;51760](https://togithub.com/nodejs/node/pull/51760)
- \[[`06b882d2fa`](https://togithub.com/nodejs/node/commit/06b882d2fa)]
- **doc**: update technical priorities for 2023 (Jean Burellier)
[#&#8203;47523](https://togithub.com/nodejs/node/pull/47523)
- \[[`9a68b47fe1`](https://togithub.com/nodejs/node/commit/9a68b47fe1)]
- **doc**: mark isWebAssemblyCompiledModule eol (Marco Ippolito)
[#&#8203;51442](https://togithub.com/nodejs/node/pull/51442)
- \[[`8016628710`](https://togithub.com/nodejs/node/commit/8016628710)]
- **doc**: fix `globals.md` introduction (Antoine du Hamel)
[#&#8203;51742](https://togithub.com/nodejs/node/pull/51742)
- \[[`9ddbe4523f`](https://togithub.com/nodejs/node/commit/9ddbe4523f)]
- **doc**: updates for better json generating (Dmitry Semigradsky)
[#&#8203;51592](https://togithub.com/nodejs/node/pull/51592)
- \[[`140cf26d47`](https://togithub.com/nodejs/node/commit/140cf26d47)]
- **doc**: document the GN build (Cheng Zhao)
[#&#8203;51676](https://togithub.com/nodejs/node/pull/51676)
- \[[`ecfb3f18b3`](https://togithub.com/nodejs/node/commit/ecfb3f18b3)]
- **doc**: fix uncaught exception example (Gabriel Schulhof)
[#&#8203;51638](https://togithub.com/nodejs/node/pull/51638)
- \[[`b3157a08bf`](https://togithub.com/nodejs/node/commit/b3157a08bf)]
- **doc**: clarify execution of `after` hook on test suite completion
(Ognjen Jevremović)
[#&#8203;51523](https://togithub.com/nodejs/node/pull/51523)
- \[[`1dae1873d9`](https://togithub.com/nodejs/node/commit/1dae1873d9)]
- **doc**: fix `dns.lookup` and `dnsPromises.lookup` description (Duncan
Chiu) [#&#8203;51517](https://togithub.com/nodejs/node/pull/51517)
- \[[`50df052087`](https://togithub.com/nodejs/node/commit/50df052087)]
- **doc**: note that path.normalize deviates from POSIX (Tobias Nießen)
[#&#8203;51513](https://togithub.com/nodejs/node/pull/51513)
- \[[`481af53aea`](https://togithub.com/nodejs/node/commit/481af53aea)]
- **doc**: add lemire to collaborators (Daniel Lemire)
[#&#8203;51572](https://togithub.com/nodejs/node/pull/51572)
- \[[`dec0d5d19a`](https://togithub.com/nodejs/node/commit/dec0d5d19a)]
- **doc**: fix historical experimental fetch flag (Kenrick)
[#&#8203;51506](https://togithub.com/nodejs/node/pull/51506)
- \[[`96c480b1a1`](https://togithub.com/nodejs/node/commit/96c480b1a1)]
- **doc**: fix type of connectionAttempt parameter (Rafael Gonzaga)
[#&#8203;51490](https://togithub.com/nodejs/node/pull/51490)
- \[[`76968ab112`](https://togithub.com/nodejs/node/commit/76968ab112)]
- **doc**: remove reference to resolved child_process v8 issue (Ian
Kerins) [#&#8203;51467](https://togithub.com/nodejs/node/pull/51467)
- \[[`bdd3a2a9fd`](https://togithub.com/nodejs/node/commit/bdd3a2a9fd)]
- **doc**: update typos (Aranđel Šarenac)
[#&#8203;51475](https://togithub.com/nodejs/node/pull/51475)
- \[[`3532f5587c`](https://togithub.com/nodejs/node/commit/3532f5587c)]
- **doc**: add notes on inspector breakpoints (Chengzhong Wu)
[#&#8203;51417](https://togithub.com/nodejs/node/pull/51417)
- \[[`0dffb9f049`](https://togithub.com/nodejs/node/commit/0dffb9f049)]
- **doc**: add links in `offboarding.md` (Antoine du Hamel)
[#&#8203;51440](https://togithub.com/nodejs/node/pull/51440)
- \[[`58d2442f0f`](https://togithub.com/nodejs/node/commit/58d2442f0f)]
- **doc**: fix spelling mistake (u9g)
[#&#8203;51454](https://togithub.com/nodejs/node/pull/51454)
- \[[`a09f440dbd`](https://togithub.com/nodejs/node/commit/a09f440dbd)]
- **doc**: add check for security reverts (Michael Dawson)
[#&#8203;51376](https://togithub.com/nodejs/node/pull/51376)
- \[[`401837bfc4`](https://togithub.com/nodejs/node/commit/401837bfc4)]
- **doc**: fix some policy scope typos (Tim Kuijsten)
[#&#8203;51234](https://togithub.com/nodejs/node/pull/51234)
- \[[`f301f829ba`](https://togithub.com/nodejs/node/commit/f301f829ba)]
- **doc**: improve subtests documentation (Marco Ippolito)
[#&#8203;51379](https://togithub.com/nodejs/node/pull/51379)
- \[[`1e40f552fd`](https://togithub.com/nodejs/node/commit/1e40f552fd)]
- **doc**: add missing word in `child_process.md` (Joseph Joy)
[#&#8203;50370](https://togithub.com/nodejs/node/pull/50370)
- \[[`42b4f0f5ab`](https://togithub.com/nodejs/node/commit/42b4f0f5ab)]
- **doc**: fixup alignment of warning subsection (James M Snell)
[#&#8203;51374](https://togithub.com/nodejs/node/pull/51374)
- \[[`b5bc597871`](https://togithub.com/nodejs/node/commit/b5bc597871)]
- **doc**: the GN files should use Node's license (Cheng Zhao)
[#&#8203;50694](https://togithub.com/nodejs/node/pull/50694)
- \[[`01a41041d6`](https://togithub.com/nodejs/node/commit/01a41041d6)]
- **doc**: improve localWindowSize event descriptions (Davy Landman)
[#&#8203;51071](https://togithub.com/nodejs/node/pull/51071)
- \[[`63aa27df10`](https://togithub.com/nodejs/node/commit/63aa27df10)]
- **doc**: mark `--jitless` as experimental (Antoine du Hamel)
[#&#8203;51247](https://togithub.com/nodejs/node/pull/51247)
- \[[`c8233912e9`](https://togithub.com/nodejs/node/commit/c8233912e9)]
- **doc**: run license-builder (github-actions\[bot])
[#&#8203;51199](https://togithub.com/nodejs/node/pull/51199)
- \[[`9e360df521`](https://togithub.com/nodejs/node/commit/9e360df521)]
- **doc**: fix limitations and known issues in pm (Rafael Gonzaga)
[#&#8203;51184](https://togithub.com/nodejs/node/pull/51184)
- \[[`52d8222d32`](https://togithub.com/nodejs/node/commit/52d8222d32)]
- **doc**: mention node:wasi in the Threat Model (Rafael Gonzaga)
[#&#8203;51211](https://togithub.com/nodejs/node/pull/51211)
- \[[`cb3270e4c8`](https://togithub.com/nodejs/node/commit/cb3270e4c8)]
- **doc**: remove ambiguous 'considered' (Rich Trott)
[#&#8203;51207](https://togithub.com/nodejs/node/pull/51207)
- \[[`979e183e0c`](https://togithub.com/nodejs/node/commit/979e183e0c)]
- **doc**: set exit code in custom test runner example (Matteo Collina)
[#&#8203;51056](https://togithub.com/nodejs/node/pull/51056)
- \[[`eaadebb1f4`](https://togithub.com/nodejs/node/commit/eaadebb1f4)]
- **doc**: remove version from `maintaining-dependencies.md` (Antoine du
Hamel) [#&#8203;51195](https://togithub.com/nodejs/node/pull/51195)
- \[[`256db6e056`](https://togithub.com/nodejs/node/commit/256db6e056)]
- **doc**: mention native addons are restricted in pm (Rafael Gonzaga)
[#&#8203;51185](https://togithub.com/nodejs/node/pull/51185)
- \[[`2a61602ab2`](https://togithub.com/nodejs/node/commit/2a61602ab2)]
- **doc**: correct note on behavior of stats.isDirectory (Nick Reilingh)
[#&#8203;50946](https://togithub.com/nodejs/node/pull/50946)
- \[[`184b8bea5b`](https://togithub.com/nodejs/node/commit/184b8bea5b)]
- **doc**: fix `TestsStream` parent class (Jungku Lee)
[#&#8203;51181](https://togithub.com/nodejs/node/pull/51181)
- \[[`c61597ffe4`](https://togithub.com/nodejs/node/commit/c61597ffe4)]
- **(SEMVER-MINOR)** **doc**: add documentation for
--build-snapshot-config (Anna Henningsen)
[#&#8203;50453](https://togithub.com/nodejs/node/pull/50453)
- \[[`b88170d602`](https://togithub.com/nodejs/node/commit/b88170d602)]
- **doc**: run license-builder (github-actions\[bot])
[#&#8203;51111](https://togithub.com/nodejs/node/pull/51111)
- \[[`f2b4626ab8`](https://togithub.com/nodejs/node/commit/f2b4626ab8)]
- **doc**: deprecate hash constructor (Marco Ippolito)
[#&#8203;51077](https://togithub.com/nodejs/node/pull/51077)
- \[[`6c241550cd`](https://togithub.com/nodejs/node/commit/6c241550cd)]
- **doc**: add note regarding `--experimental-detect-module` (Shubherthi
Mitra) [#&#8203;51089](https://togithub.com/nodejs/node/pull/51089)
- \[[`8ee30ea900`](https://togithub.com/nodejs/node/commit/8ee30ea900)]
- **doc**: correct tracingChannel.traceCallback() (Gerhard Stöbich)
[#&#8203;51068](https://togithub.com/nodejs/node/pull/51068)
- \[[`1cd27b6eff`](https://togithub.com/nodejs/node/commit/1cd27b6eff)]
- **doc**: use length argument in pbkdf2Key (Tobias Nießen)
[#&#8203;51066](https://togithub.com/nodejs/node/pull/51066)
- \[[`09ad974537`](https://togithub.com/nodejs/node/commit/09ad974537)]
- **doc**: add deprecation notice to `dirent.path` (Antoine du Hamel)
[#&#8203;51059](https://togithub.com/nodejs/node/pull/51059)
- \[[`1113e58f87`](https://togithub.com/nodejs/node/commit/1113e58f87)]
- **doc**: deprecate `dirent.path` (Antoine du Hamel)
[#&#8203;51020](https://togithub.com/nodejs/node/pull/51020)
- \[[`37979d750e`](https://togithub.com/nodejs/node/commit/37979d750e)]
- **doc**: add additional details about `--input-type` (Shubham Pandey)
[#&#8203;50796](https://togithub.com/nodejs/node/pull/50796)
- \[[`3ff00e1e79`](https://togithub.com/nodejs/node/commit/3ff00e1e79)]
- **doc**: add procedure when CVEs don't get published (Rafael Gonzaga)
[#&#8203;50945](https://togithub.com/nodejs/node/pull/50945)
- \[[`0930be6bd5`](https://togithub.com/nodejs/node/commit/0930be6bd5)]
- **doc**: fix some errors in esm resolution algorithms (Christopher
Jeffrey (JJ))
[#&#8203;50898](https://togithub.com/nodejs/node/pull/50898)
- \[[`ddc7964b03`](https://togithub.com/nodejs/node/commit/ddc7964b03)]
- **doc**: reserve 121 for Electron 29 (Shelley Vohr)
[#&#8203;50957](https://togithub.com/nodejs/node/pull/50957)
- \[[`625fd69b76`](https://togithub.com/nodejs/node/commit/625fd69b76)]
- **doc**: run license-builder (github-actions\[bot])
[#&#8203;50926](https://togithub.com/nodejs/node/pull/50926)
- \[[`f18269607a`](https://togithub.com/nodejs/node/commit/f18269607a)]
- **doc**: document non-node_modules-only runtime deprecation (Joyee
Cheung) [#&#8203;50748](https://togithub.com/nodejs/node/pull/50748)
- \[[`5f8e7a0fdb`](https://togithub.com/nodejs/node/commit/5f8e7a0fdb)]
- **doc**: add doc for Unix abstract socket (theanarkh)
[#&#8203;50904](https://togithub.com/nodejs/node/pull/50904)
- \[[`e0598787e0`](https://togithub.com/nodejs/node/commit/e0598787e0)]
- **doc**: remove flicker on page load on dark theme (Dima Demakov)
[#&#8203;50942](https://togithub.com/nodejs/node/pull/50942)
- \[[`2a7047d933`](https://togithub.com/nodejs/node/commit/2a7047d933)]
- **doc,crypto**: further clarify RSA_PKCS1\_PADDING support (Tobias
Nießen) [#&#8203;51799](https://togithub.com/nodejs/node/pull/51799)
- \[[`31c4ba4dfd`](https://togithub.com/nodejs/node/commit/31c4ba4dfd)]
- **doc,crypto**: add changelog and note about disabled
RSA_PKCS1\_PADDING (Filip Skokan)
[#&#8203;51782](https://togithub.com/nodejs/node/pull/51782)
- \[[`90da41548f`](https://togithub.com/nodejs/node/commit/90da41548f)]
- **doc,module**: clarify hook chain execution sequence (Jacob Smith)
[#&#8203;51884](https://togithub.com/nodejs/node/pull/51884)
- \[[`bb7d7f3d1c`](https://togithub.com/nodejs/node/commit/bb7d7f3d1c)]
- **errors**: fix stacktrace of SystemError (uzlopak)
[#&#8203;49956](https://togithub.com/nodejs/node/pull/49956)
- \[[`db7459b57b`](https://togithub.com/nodejs/node/commit/db7459b57b)]
- **errors**: improve hideStackFrames (Aras Abbasi)
[#&#8203;49990](https://togithub.com/nodejs/node/pull/49990)
- \[[`a6b3569121`](https://togithub.com/nodejs/node/commit/a6b3569121)]
- **esm**: improve error when calling `import.meta.resolve` from `data:`
URL (Antoine du Hamel)
[#&#8203;49516](https://togithub.com/nodejs/node/pull/49516)
- \[[`38f4000905`](https://togithub.com/nodejs/node/commit/38f4000905)]
- **esm**: fix hint on invalid module specifier (Antoine du Hamel)
[#&#8203;51223](https://togithub.com/nodejs/node/pull/51223)
- \[[`e39e37bbd5`](https://togithub.com/nodejs/node/commit/e39e37bbd5)]
- **esm**: fix hook name in error message (Bruce MacNaughton)
[#&#8203;50466](https://togithub.com/nodejs/node/pull/50466)
- \[[`d9b5cd533c`](https://togithub.com/nodejs/node/commit/d9b5cd533c)]
- **events**: no stopPropagation call in cancelBubble (mert.altin)
[#&#8203;50405](https://togithub.com/nodejs/node/pull/50405)
- \[[`287a02c4b2`](https://togithub.com/nodejs/node/commit/287a02c4b2)]
- **fs**: load rimraf lazily in fs/promises (Joyee Cheung)
[#&#8203;51617](https://togithub.com/nodejs/node/pull/51617)
- \[[`bbd1351ef0`](https://togithub.com/nodejs/node/commit/bbd1351ef0)]
- **fs**: remove race condition for recursive watch on Linux (Matteo
Collina) [#&#8203;51406](https://togithub.com/nodejs/node/pull/51406)
- \[[`1b7ccec5a7`](https://togithub.com/nodejs/node/commit/1b7ccec5a7)]
- **fs**: update jsdoc for `filehandle.createWriteStream` and
`appendFile` (Jungku Lee)
[#&#8203;51494](https://togithub.com/nodejs/node/pull/51494)
- \[[`25056f5024`](https://togithub.com/nodejs/node/commit/25056f5024)]
- **fs**: fix fs.promises.realpath for long paths on Windows (翠 / green)
[#&#8203;51032](https://togithub.com/nodejs/node/pull/51032)
- \[[`a8fd01a5a2`](https://togithub.com/nodejs/node/commit/a8fd01a5a2)]
- **fs**: make offset, position & length args in fh.read() optional
(Pulkit Gupta)
[#&#8203;51087](https://togithub.com/nodejs/node/pull/51087)
- \[[`721557c6d8`](https://togithub.com/nodejs/node/commit/721557c6d8)]
- **fs**: add missing jsdoc parameters to `readSync` (Yagiz Nizipli)
[#&#8203;51225](https://togithub.com/nodejs/node/pull/51225)
- \[[`3ce9aacfcd`](https://togithub.com/nodejs/node/commit/3ce9aacfcd)]
- **fs**: remove `internalModuleReadJSON` binding (Yagiz Nizipli)
[#&#8203;51224](https://togithub.com/nodejs/node/pull/51224)
- \[[`65df2c6787`](https://togithub.com/nodejs/node/commit/65df2c6787)]
- **fs**: improve mkdtemp performance for buffer prefix (Yagiz Nizipli)
[#&#8203;51078](https://togithub.com/nodejs/node/pull/51078)
- \[[`6705b48012`](https://togithub.com/nodejs/node/commit/6705b48012)]
- **fs**: validate fd synchronously on c++ (Yagiz Nizipli)
[#&#8203;51027](https://togithub.com/nodejs/node/pull/51027)
- \[[`afd5d67f89`](https://togithub.com/nodejs/node/commit/afd5d67f89)]
- **fs**: throw fchownSync error from c++ (Yagiz Nizipli)
[#&#8203;51075](https://togithub.com/nodejs/node/pull/51075)
- \[[`bac982bce5`](https://togithub.com/nodejs/node/commit/bac982bce5)]
- **fs**: update params in jsdoc for createReadStream and
createWriteStream (Jungku Lee)
[#&#8203;51063](https://togithub.com/nodejs/node/pull/51063)
- \[[`6764f0c9a8`](https://togithub.com/nodejs/node/commit/6764f0c9a8)]
- **fs**: improve error performance of readvSync (IlyasShabi)
[#&#8203;50100](https://togithub.com/nodejs/node/pull/50100)
- \[[`0225fce776`](https://togithub.com/nodejs/node/commit/0225fce776)]
- **(SEMVER-MINOR)** **fs**: introduce `dirent.parentPath` (Antoine du
Hamel) [#&#8203;50976](https://togithub.com/nodejs/node/pull/50976)
- \[[`4adea6c405`](https://togithub.com/nodejs/node/commit/4adea6c405)]
- **fs,test**: add URL to string to fs.watch (Rafael Gonzaga)
[#&#8203;51346](https://togithub.com/nodejs/node/pull/51346)
- \[[`6bf148e12b`](https://togithub.com/nodejs/node/commit/6bf148e12b)]
- **http**: fix `close` return value mismatch between doc and
implementation (kylo5aby)
[#&#8203;51797](https://togithub.com/nodejs/node/pull/51797)
- \[[`66318602d0`](https://togithub.com/nodejs/node/commit/66318602d0)]
- **http**: split set-cookie when using setHeaders (Marco Ippolito)
[#&#8203;51649](https://togithub.com/nodejs/node/pull/51649)
- \[[`f7b53d05bd`](https://togithub.com/nodejs/node/commit/f7b53d05bd)]
- **http**: remove misleading warning (Luigi Pinca)
[#&#8203;51204](https://togithub.com/nodejs/node/pull/51204)
- \[[`9062d30600`](https://togithub.com/nodejs/node/commit/9062d30600)]
- **http**: do not override user-provided options object (KuthorX)
[#&#8203;33633](https://togithub.com/nodejs/node/pull/33633)
- \[[`4e38dee4ee`](https://togithub.com/nodejs/node/commit/4e38dee4ee)]
- **http**: handle multi-value content-disposition header (Arsalan
Ahmad) [#&#8203;50977](https://togithub.com/nodejs/node/pull/50977)
- \[[`b560bfbb84`](https://togithub.com/nodejs/node/commit/b560bfbb84)]
- **http2**: close idle connections when allowHTTP1 is true (xsbchen)
[#&#8203;51569](https://togithub.com/nodejs/node/pull/51569)
- \[[`5ba4d96525`](https://togithub.com/nodejs/node/commit/5ba4d96525)]
- **(SEMVER-MINOR)** **http2**: add h2 compat support for appendHeader
(Tim Perry) [#&#8203;51412](https://togithub.com/nodejs/node/pull/51412)
- \[[`0861498e8b`](https://togithub.com/nodejs/node/commit/0861498e8b)]
- **(SEMVER-MINOR)** **http2**: add server handshake utility (snek)
[#&#8203;51172](https://togithub.com/nodejs/node/pull/51172)
- \[[`6b08d006ee`](https://togithub.com/nodejs/node/commit/6b08d006ee)]
- **(SEMVER-MINOR)** **http2**: receive customsettings (Marten Richter)
[#&#8203;51323](https://togithub.com/nodejs/node/pull/51323)
- \[[`23414a6120`](https://togithub.com/nodejs/node/commit/23414a6120)]
- **http2**: addtl http/2 settings (Marten Richter)
[#&#8203;49025](https://togithub.com/nodejs/node/pull/49025)
- \[[`3fe59ba224`](https://togithub.com/nodejs/node/commit/3fe59ba224)]
- **inspector**: add NodeRuntime.waitingForDebugger event (mary
marchini) [#&#8203;51560](https://togithub.com/nodejs/node/pull/51560)
- \[[`44f05e0d30`](https://togithub.com/nodejs/node/commit/44f05e0d30)]
- **lib**: make sure close net server (theanarkh)
[#&#8203;51929](https://togithub.com/nodejs/node/pull/51929)
- \[[`3be5ff9c45`](https://togithub.com/nodejs/node/commit/3be5ff9c45)]
- **lib**: return directly if udp socket close before lookup (theanarkh)
[#&#8203;51914](https://togithub.com/nodejs/node/pull/51914)
- \[[`dcbf88f4c7`](https://togithub.com/nodejs/node/commit/dcbf88f4c7)]
- **lib**: account for cwd access from snapshot serialization cb (Anna
Henningsen) [#&#8203;51901](https://togithub.com/nodejs/node/pull/51901)
- \[[`da8fa484f8`](https://togithub.com/nodejs/node/commit/da8fa484f8)]
- **lib**: fix http client socket path (theanarkh)
[#&#8203;51900](https://togithub.com/nodejs/node/pull/51900)
- \[[`55011d2c71`](https://togithub.com/nodejs/node/commit/55011d2c71)]
- **lib**: only build the ESM facade for builtins when they are needed
(Joyee Cheung)
[#&#8203;51669](https://togithub.com/nodejs/node/pull/51669)
- \[[`7894989bf0`](https://togithub.com/nodejs/node/commit/7894989bf0)]
- **(SEMVER-MINOR)** **lib**: move encodingsMap to internal/util (Joyee
Cheung) [#&#8203;51044](https://togithub.com/nodejs/node/pull/51044)
- \[[`9082cc557d`](https://togithub.com/nodejs/node/commit/9082cc557d)]
- **lib**: do not access process.noDeprecation at build time (Joyee
Cheung) [#&#8203;51447](https://togithub.com/nodejs/node/pull/51447)
- \[[`6679e6b616`](https://togithub.com/nodejs/node/commit/6679e6b616)]
- **lib**: add assertion for user ESM execution (Joyee Cheung)
[#&#8203;51748](https://togithub.com/nodejs/node/pull/51748)
- \[[`d6e8d03afc`](https://togithub.com/nodejs/node/commit/d6e8d03afc)]
- **lib**: create global console properties at snapshot build time
(Joyee Cheung)
[#&#8203;51700](https://togithub.com/nodejs/node/pull/51700)
- \[[`bd2a3c10ae`](https://togithub.com/nodejs/node/commit/bd2a3c10ae)]
- **lib**: define FormData and fetch etc. in the built-in snapshot
(Joyee Cheung)
[#&#8203;51598](https://togithub.com/nodejs/node/pull/51598)
- \[[`da79876ef0`](https://togithub.com/nodejs/node/commit/da79876ef0)]
- **lib**: allow checking the test result from afterEach (Tim
Stableford) [#&#8203;51485](https://togithub.com/nodejs/node/pull/51485)
- \[[`bff7e3cf7a`](https://togithub.com/nodejs/node/commit/bff7e3cf7a)]
- **lib**: remove unnecessary refreshHrtimeBuffer() (Joyee Cheung)
[#&#8203;51446](https://togithub.com/nodejs/node/pull/51446)
- \[[`562947e012`](https://togithub.com/nodejs/node/commit/562947e012)]
- **lib**: fix use of `--frozen-intrinsics` with `--jitless` (Antoine du
Hamel) [#&#8203;51248](https://togithub.com/nodejs/node/pull/51248)
- \[[`7b83ef749e`](https://togithub.com/nodejs/node/commit/7b83ef749e)]
- **lib**: move function declaration outside of loop (Sanjaiyan
Parthipan) [#&#8203;51242](https://togithub.com/nodejs/node/pull/51242)
- \[[`0a85b0fd9d`](https://togithub.com/nodejs/node/commit/0a85b0fd9d)]
- **lib**: reduce overhead of `SafePromiseAllSettledReturnVoid` calls
(Antoine du Hamel)
[#&#8203;51243](https://togithub.com/nodejs/node/pull/51243)
- \[[`f4d7f0498e`](https://togithub.com/nodejs/node/commit/f4d7f0498e)]
- **lib**: expose default prepareStackTrace (Chengzhong Wu)
[#&#8203;50827](https://togithub.com/nodejs/node/pull/50827)
- \[[`5c7a9c8d4a`](https://togithub.com/nodejs/node/commit/5c7a9c8d4a)]
- **lib**: don't parse windows drive letters as schemes (华)
[#&#8203;50580](https://togithub.com/nodejs/node/pull/50580)
- \[[`9da6384f5a`](https://togithub.com/nodejs/node/commit/9da6384f5a)]
- **lib**: refactor to use validateFunction in diagnostics_channel
(Deokjin Kim)
[#&#8203;50955](https://togithub.com/nodejs/node/pull/50955)
- \[[`be3205ae24`](https://togithub.com/nodejs/node/commit/be3205ae24)]
- **lib**: streamline process.binding() handling (Joyee Cheung)
[#&#8203;50773](https://togithub.com/nodejs/node/pull/50773)
- \[[`f4987eb91e`](https://togithub.com/nodejs/node/commit/f4987eb91e)]
- **lib,permission**: handle buffer on fs.symlink (Rafael Gonzaga)
[#&#8203;51212](https://togithub.com/nodejs/node/pull/51212)
- \[[`861e040b40`](https://togithub.com/nodejs/node/commit/861e040b40)]
- **lib,src**: extract sourceMappingURL from module (unbyte)
[#&#8203;51690](https://togithub.com/nodejs/node/pull/51690)
- \[[`8a082754e0`](https://togithub.com/nodejs/node/commit/8a082754e0)]
- **lib,src**: replace toUSVString with `toWellFormed()` (Yagiz Nizipli)
[#&#8203;47342](https://togithub.com/nodejs/node/pull/47342)
- \[[`3badc1139c`](https://togithub.com/nodejs/node/commit/3badc1139c)]
- **(SEMVER-MINOR)** **lib,src,permission**: port path.resolve to C++
(Rafael Gonzaga)
[#&#8203;50758](https://togithub.com/nodejs/node/pull/50758)
- \[[`4b3cc3ce18`](https://togithub.com/nodejs/node/commit/4b3cc3ce18)]
- **loader**: speed up line length calc used by moduleProvider (Mudit)
[#&#8203;50969](https://togithub.com/nodejs/node/pull/50969)
- \[[`960d67c51f`](https://togithub.com/nodejs/node/commit/960d67c51f)]
- **meta**: bump github/codeql-action from 3.23.2 to 3.24.6
(dependabot\[bot])
[#&#8203;51942](https://togithub.com/nodejs/node/pull/51942)
- \[[`1783b93af2`](https://togithub.com/nodejs/node/commit/1783b93af2)]
- **meta**: bump actions/upload-artifact from 4.3.0 to 4.3.1
(dependabot\[bot])
[#&#8203;51941](https://togithub.com/nodejs/node/pull/51941)
- \[[`1db603db2f`](https://togithub.com/nodejs/node/commit/1db603db2f)]
- **meta**: bump codecov/codecov-action from 4.0.1 to 4.1.0
(dependabot\[bot])
[#&#8203;51940](https://togithub.com/nodejs/node/pull/51940)
- \[[`2ddec64d5a`](https://togithub.com/nodejs/node/commit/2ddec64d5a)]
- **meta**: bump actions/cache from 4.0.0 to 4.0.1 (dependabot\[bot])
[#&#8203;51939](https://togithub.com/nodejs/node/pull/51939)
- \[[`92490421be`](https://togithub.com/nodejs/node/commit/92490421be)]
- **meta**: bump actions/download-artifact from 4.1.1 to 4.1.3
(dependabot\[bot])
[#&#8203;51938](https://togithub.com/nodejs/node/pull/51938)
- \[[`f3fa2b72b8`](https://togithub.com/nodejs/node/commit/f3fa2b72b8)]
- **meta**: bump actions/setup-node from 4.0.1 to 4.0.2
(dependabot\[bot])
[#&#8203;51937](https://togithub.com/nodejs/node/pull/51937)
- \[[`a62b042e83`](https://togithub.com/nodejs/node/commit/a62b042e83)]
- **meta**: move one or more collaborators to emeritus (Node.js GitHub
Bot) [#&#8203;51726](https://togithub.com/nodejs/node/pull/51726)
- \[[`491f9f9902`](https://togithub.com/nodejs/node/commit/491f9f9902)]
- **meta**: bump codecov/codecov-action from 3.1.4 to 4.0.1
(dependabot\[bot])
[#&#8203;51648](https://togithub.com/nodejs/node/pull/51648)
- \[[`2765077a47`](https://togithub.com/nodejs/node/commit/2765077a47)]
- **meta**: bump actions/download-artifact from 4.1.0 to 4.1.1
(dependabot\[bot])
[#&#8203;51644](https://togithub.com/nodejs/node/pull/51644)
- \[[`152a07b854`](https://togithub.com/nodejs/node/commit/152a07b854)]
- **meta**: bump actions/upload-artifact from 4.0.0 to 4.3.0
(dependabot\[bot])
[#&#8203;51643](https://togithub.com/nodejs/node/pull/51643)
- \[[`53826920fb`](https://togithub.com/nodejs/node/commit/53826920fb)]
- **meta**: bump step-security/harden-runner from 2.6.1 to 2.7.0
(dependabot\[bot])
[#&#8203;51641](https://togithub.com/nodejs/node/pull/51641)
- \[[`3d1dc9b030`](https://togithub.com/nodejs/node/commit/3d1dc9b030)]
- **meta**: bump actions/cache from 3.3.2 to 4.0.0 (dependabot\[bot])
[#&#8203;51640](https://togithub.com/nodejs/node/pull/51640)
- \[[`287bdf6bda`](https://togithub.com/nodejs/node/commit/287bdf6bda)]
- **meta**: bump github/codeql-action from 3.22.12 to 3.23.2
(dependabot\[bot])
[#&#8203;51639](https://togithub.com/nodejs/node/pull/51639)
- \[[`90068fb0f1`](https://togithub.com/nodejs/node/commit/90068fb0f1)]
- **meta**: add .mailmap entry for lemire (Daniel Lemire)
[#&#8203;51600](https://togithub.com/nodejs/node/pull/51600)
- \[[`f91786bd70`](https://togithub.com/nodejs/node/commit/f91786bd70)]
- **meta**: mark security-wg codeowner for deps folder (Marco Ippolito)
[#&#8203;51529](https://togithub.com/nodejs/node/pull/51529)
- \[[`e51221be8d`](https://togithub.com/nodejs/node/commit/e51221be8d)]
- **meta**: move one or more collaborators to emeritus (Node.js GitHub
Bot) [#&#8203;51468](https://togithub.com/nodejs/node/pull/51468)
- \[[`4a8a012c6d`](https://togithub.com/nodejs/node/commit/4a8a012c6d)]
- **meta**: move RaisinTen to emeritus and remove from strategic
initiatives (Darshan Sen)
[#&#8203;51411](https://togithub.com/nodejs/node/pull/51411)
- \[[`e9276bab3f`](https://togithub.com/nodejs/node/commit/e9276bab3f)]
- **meta**: add .temp and .lock tags to ignore (Rafael Gonzaga)
[#&#8203;51343](https://togithub.com/nodejs/node/pull/51343)
- \[[`ae6fecbc8d`](https://togithub.com/nodejs/node/commit/ae6fecbc8d)]
- **meta**: bump actions/setup-python from 4.7.1 to 5.0.0
(dependabot\[bot])
[#&#8203;51335](https://togithub.com/nodejs/node/pull/51335)
- \[[`f4be49a618`](https://togithub.com/nodejs/node/commit/f4be49a618)]
- **meta**: bump actions/setup-node from 4.0.0 to 4.0.1
(dependabot\[bot])
[#&#8203;51334](https://togithub.com/nodejs/node/pull/51334)
- \[[`e24aa7ced1`](https://togithub.com/nodejs/node/commit/e24aa7ced1)]
- **meta**: bump github/codeql-action from 2.22.8 to 3.22.12
(dependabot\[bot])
[#&#8203;51333](https://togithub.com/nodejs/node/pull/51333)
-   \[[`287c2bcf56`](h

</details>

---

### Configuration

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

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

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

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

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/PingCAP-QE/ee-apps).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Apr 16, 2024
1 parent 39b2ae3 commit 6fe0195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tibuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copy 'website/' contents(not entire folder) into .(/webapp/) and build React
FROM node:20.10.0 as webbuilder
FROM node:20.12.2 as webbuilder
WORKDIR /webapp
COPY website/ .
RUN --mount=type=cache,target=/webapp/node_modules npm install && yarn build
Expand Down

0 comments on commit 6fe0195

Please sign in to comment.