Skip to content

Commit

Permalink
chore(deps): update node.js (#802)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | | minor | `23.4.0`
-> `23.5.0` |
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | engines | minor |
[`23.4.0` ->
`23.5.0`](https://renovatebot.com/diffs/npm/node/v23.4.0/v23.5.0) |
| [node](https://redirect.github.com/nodejs/node) | final | minor |
`23.3.0-alpine` -> `23.4.0-alpine` |

---

### Release Notes

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

###
[`v23.4.0`](https://redirect.github.com/nodejs/node/releases/tag/v23.4.0):
2024-12-10, Version 23.4.0 (Current), @&#8203;aduh95 prepared by
@&#8203;targos

[Compare
Source](https://redirect.github.com/nodejs/node/compare/v23.3.0...v23.4.0)

##### Notable Changes

##### Introducing experimental `assert.partialDeepStrictEqual`

Sometimes, when writing test, we want to validate that some specific
properties
are present, and the mere presence of additional keys are not exactly
relevant
for that specific test. For this use case, we can now use
`assert.partialDeepStrictEqual`, which should be familiar to those
already using
`assert.deepStrictEqual`, with the main difference that it does not
require all
properties in the `actual` parameter to be present in the `expected`
parameter.

Here are a few examples of usage:

```js
assert.partialDeepStrictEqual(
  { a: 1, b: 2, c: 3 },
  { a: 1, b: 2 },
);

assert.partialDeepStrictEqual(
  [1, 2, 3, 4],
  [2, 3],
);

assert.partialDeepStrictEqual(
  { a: { b: { c: 1, d: 2 } }, e: 3 },
  { a: { b: { c: 1 } } },
);

assert.partialDeepStrictEqual(
  { a: { b: { c: 1, d: 2 } }, e: 3 },
  { a: { b: { c: 1 } } },
);

assert.partialDeepStrictEqual(
  new Set([{ a: 1 }, { b: 1 }]),
  new Set([{ a: 1 }]),
);

assert.partialDeepStrictEqual(
  { a: new Set([{ a: 1 }, { b: 1 }]), b: new Map(), c: [1, 2, 3] },
  { a: new Set([{ a: 1 }]), c: [2] },
);
```

Contributed by Giovanni Bucci in
[#&#8203;54630](https://redirect.github.com/nodejs/node/pull/54630).

##### Implement `--trace-env` and `--trace-env-[js|native]-stack`

This release introduces `--trace-env`, `--trace-env-js-stack` and
`--trace-env-native-stack`
CLI options that print information about any access to environment
variables done in the current
Node.js instance to stderr. Currently in the logs, only the names of the
environment variables
being accessed are printed, while the values are not printed to avoid
leaking sensitive
information. To print the stack trace of the access, use
`--trace-env-js-stack` and/or
`--trace-env-native-stack`.

Contributed by Joyee Cheung in
[#&#8203;55604](https://redirect.github.com/nodejs/node/pull/55604).

##### Other notable changes

-
\[[`59d6891872`](https://redirect.github.com/nodejs/node/commit/59d6891872)]
- **doc**: add LJHarb to collaborators (Jordan Harband)
[#&#8203;56132](https://redirect.github.com/nodejs/node/pull/56132)
-
\[[`565b04a7be`](https://redirect.github.com/nodejs/node/commit/565b04a7be)]
- **(SEMVER-MINOR)** **net**: add `BlockList.isBlockList(value)` (James
M Snell)
[#&#8203;56078](https://redirect.github.com/nodejs/node/pull/56078)
-
\[[`c9698ed6a4`](https://redirect.github.com/nodejs/node/commit/c9698ed6a4)]
- **(SEMVER-MINOR)** **net**: support `blockList` in `net.connect`
(theanarkh)
[#&#8203;56075](https://redirect.github.com/nodejs/node/pull/56075)
-
\[[`30d604180d`](https://redirect.github.com/nodejs/node/commit/30d604180d)]
- **(SEMVER-MINOR)** **net**: support `blockList` in `net.Server`
(theanarkh)
[#&#8203;56079](https://redirect.github.com/nodejs/node/pull/56079)
-
\[[`9fba5e1df1`](https://redirect.github.com/nodejs/node/commit/9fba5e1df1)]
- **(SEMVER-MINOR)** **net**: add `SocketAddress.parse` (James M Snell)
[#&#8203;56076](https://redirect.github.com/nodejs/node/pull/56076)
-
\[[`4cdb03201e`](https://redirect.github.com/nodejs/node/commit/4cdb03201e)]
- **(SEMVER-MINOR)** **process**: deprecate `features.{ipv6,uv}` and
`features.tls_*` (René)
[#&#8203;55545](https://redirect.github.com/nodejs/node/pull/55545)
-
\[[`efb9f05f59`](https://redirect.github.com/nodejs/node/commit/efb9f05f59)]
- **(SEMVER-MINOR)** **sqlite**: unflag `node:sqlite` module (Colin
Ihrig)
[#&#8203;55890](https://redirect.github.com/nodejs/node/pull/55890)
-
\[[`d777d4a52d`](https://redirect.github.com/nodejs/node/commit/d777d4a52d)]
- **(SEMVER-MINOR)** **sqlite**: add `StatementSync.prototype.iterate`
method (tpoisseau)
[#&#8203;54213](https://redirect.github.com/nodejs/node/pull/54213)

##### Commits

-
\[[`5b0ce376a2`](https://redirect.github.com/nodejs/node/commit/5b0ce376a2)]
- **assert**: optimize partial comparison of two `Set`s (Antoine du
Hamel)
[#&#8203;55970](https://redirect.github.com/nodejs/node/pull/55970)
-
\[[`a4f57f0293`](https://redirect.github.com/nodejs/node/commit/a4f57f0293)]
- **(SEMVER-MINOR)** **assert**: add partialDeepStrictEqual (Giovanni
Bucci)
[#&#8203;54630](https://redirect.github.com/nodejs/node/pull/54630)
-
\[[`1b81a7d003`](https://redirect.github.com/nodejs/node/commit/1b81a7d003)]
- **build**: allow overriding clang usage (Shelley Vohr)
[#&#8203;56016](https://redirect.github.com/nodejs/node/pull/56016)
-
\[[`39c901307f`](https://redirect.github.com/nodejs/node/commit/39c901307f)]
- **build**: remove defaults for create-release-proposal (Rafael
Gonzaga)
[#&#8203;56042](https://redirect.github.com/nodejs/node/pull/56042)
-
\[[`7133c0459f`](https://redirect.github.com/nodejs/node/commit/7133c0459f)]
- **build**: avoid compiling with VS v17.12 (Stefan Stojanovic)
[#&#8203;55930](https://redirect.github.com/nodejs/node/pull/55930)
-
\[[`ce53f1689f`](https://redirect.github.com/nodejs/node/commit/ce53f1689f)]
- **build**: set node_arch to target_cpu in GN (Shelley Vohr)
[#&#8203;55967](https://redirect.github.com/nodejs/node/pull/55967)
-
\[[`2023b09d27`](https://redirect.github.com/nodejs/node/commit/2023b09d27)]
- **build**: add create release proposal action (Rafael Gonzaga)
[#&#8203;55690](https://redirect.github.com/nodejs/node/pull/55690)
-
\[[`26ec99634c`](https://redirect.github.com/nodejs/node/commit/26ec99634c)]
- **build**: use variable for crypto dep path (Shelley Vohr)
[#&#8203;55928](https://redirect.github.com/nodejs/node/pull/55928)
-
\[[`f48e289580`](https://redirect.github.com/nodejs/node/commit/f48e289580)]
- **build**: fix GN build for sqlite (Cheng)
[#&#8203;55912](https://redirect.github.com/nodejs/node/pull/55912)
-
\[[`fffabca6b8`](https://redirect.github.com/nodejs/node/commit/fffabca6b8)]
- **build**: compile bundled simdutf conditionally (Jakub Jirutka)
[#&#8203;55886](https://redirect.github.com/nodejs/node/pull/55886)
-
\[[`d8eb83c5c5`](https://redirect.github.com/nodejs/node/commit/d8eb83c5c5)]
- **build**: compile bundled simdjson conditionally (Jakub Jirutka)
[#&#8203;55886](https://redirect.github.com/nodejs/node/pull/55886)
-
\[[`83e02dc482`](https://redirect.github.com/nodejs/node/commit/83e02dc482)]
- **build**: compile bundled ada conditionally (Jakub Jirutka)
[#&#8203;55886](https://redirect.github.com/nodejs/node/pull/55886)
-
\[[`816d37a187`](https://redirect.github.com/nodejs/node/commit/816d37a187)]
- **(SEMVER-MINOR)** **cli**: implement --trace-env and
--trace-env-\[js|native]-stack (Joyee Cheung)
[#&#8203;55604](https://redirect.github.com/nodejs/node/pull/55604)
-
\[[`53c0f2f186`](https://redirect.github.com/nodejs/node/commit/53c0f2f186)]
- **crypto**: ensure CryptoKey usages and algorithm are cached objects
(Filip Skokan)
[#&#8203;56108](https://redirect.github.com/nodejs/node/pull/56108)
-
\[[`93d36bf1c8`](https://redirect.github.com/nodejs/node/commit/93d36bf1c8)]
- **crypto**: allow non-multiple of 8 in SubtleCrypto.deriveBits (Filip
Skokan)
[#&#8203;55296](https://redirect.github.com/nodejs/node/pull/55296)
-
\[[`8680b8030c`](https://redirect.github.com/nodejs/node/commit/8680b8030c)]
- **deps**: update ngtcp2 to 1.9.1 (Node.js GitHub Bot)
[#&#8203;56095](https://redirect.github.com/nodejs/node/pull/56095)
-
\[[`78a2a6ca1e`](https://redirect.github.com/nodejs/node/commit/78a2a6ca1e)]
- **deps**: upgrade npm to 10.9.2 (npm team)
[#&#8203;56135](https://redirect.github.com/nodejs/node/pull/56135)
-
\[[`52dfe5af4b`](https://redirect.github.com/nodejs/node/commit/52dfe5af4b)]
- **deps**: update sqlite to 3.47.1 (Node.js GitHub Bot)
[#&#8203;56094](https://redirect.github.com/nodejs/node/pull/56094)
-
\[[`3852b5c8d1`](https://redirect.github.com/nodejs/node/commit/3852b5c8d1)]
- **deps**: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot)
[#&#8203;55980](https://redirect.github.com/nodejs/node/pull/55980)
-
\[[`f99f95f62f`](https://redirect.github.com/nodejs/node/commit/f99f95f62f)]
- **deps**: update corepack to 0.30.0 (Node.js GitHub Bot)
[#&#8203;55977](https://redirect.github.com/nodejs/node/pull/55977)
-
\[[`96e846de89`](https://redirect.github.com/nodejs/node/commit/96e846de89)]
- **deps**: update ngtcp2 to 1.9.0 (Node.js GitHub Bot)
[#&#8203;55975](https://redirect.github.com/nodejs/node/pull/55975)
-
\[[`d180a8aedb`](https://redirect.github.com/nodejs/node/commit/d180a8aedb)]
- **deps**: update simdutf to 5.6.3 (Node.js GitHub Bot)
[#&#8203;55973](https://redirect.github.com/nodejs/node/pull/55973)
-
\[[`288416a764`](https://redirect.github.com/nodejs/node/commit/288416a764)]
- **deps**: upgrade npm to 10.9.1 (npm team)
[#&#8203;55951](https://redirect.github.com/nodejs/node/pull/55951)
-
\[[`cf3f7ac512`](https://redirect.github.com/nodejs/node/commit/cf3f7ac512)]
- **deps**: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot)
[#&#8203;54432](https://redirect.github.com/nodejs/node/pull/54432)
-
\[[`7768b3d054`](https://redirect.github.com/nodejs/node/commit/7768b3d054)]
- **deps**: update simdjson to 3.10.1 (Node.js GitHub Bot)
[#&#8203;54678](https://redirect.github.com/nodejs/node/pull/54678)
-
\[[`9c6103833b`](https://redirect.github.com/nodejs/node/commit/9c6103833b)]
- **deps**: update simdutf to 5.6.2 (Node.js GitHub Bot)
[#&#8203;55889](https://redirect.github.com/nodejs/node/pull/55889)
-
\[[`7b133d6220`](https://redirect.github.com/nodejs/node/commit/7b133d6220)]
- **dgram**: check udp buffer size to avoid fd leak (theanarkh)
[#&#8203;56084](https://redirect.github.com/nodejs/node/pull/56084)
-
\[[`e4529b8179`](https://redirect.github.com/nodejs/node/commit/e4529b8179)]
- **doc**: add report version and history section (Chengzhong Wu)
[#&#8203;56130](https://redirect.github.com/nodejs/node/pull/56130)
-
\[[`718625a03a`](https://redirect.github.com/nodejs/node/commit/718625a03a)]
- **doc**: mention `-a` flag for the release script (Ruy Adorno)
[#&#8203;56124](https://redirect.github.com/nodejs/node/pull/56124)
-
\[[`59d6891872`](https://redirect.github.com/nodejs/node/commit/59d6891872)]
- **doc**: add LJHarb to collaborators (Jordan Harband)
[#&#8203;56132](https://redirect.github.com/nodejs/node/pull/56132)
-
\[[`d7ed32404a`](https://redirect.github.com/nodejs/node/commit/d7ed32404a)]
- **doc**: add create-release-action to process (Rafael Gonzaga)
[#&#8203;55993](https://redirect.github.com/nodejs/node/pull/55993)
-
\[[`3b4ef93371`](https://redirect.github.com/nodejs/node/commit/3b4ef93371)]
- **doc**: rename file to advocacy-ambassador-program.md (Tobias Nießen)
[#&#8203;56046](https://redirect.github.com/nodejs/node/pull/56046)
-
\[[`59e4087d5e`](https://redirect.github.com/nodejs/node/commit/59e4087d5e)]
- **doc**: add added tag and fix typo sqlite.md (Bart Louwers)
[#&#8203;56012](https://redirect.github.com/nodejs/node/pull/56012)
-
\[[`a1b26608ae`](https://redirect.github.com/nodejs/node/commit/a1b26608ae)]
- **doc**: remove unused import from sample code (Blended Bram)
[#&#8203;55570](https://redirect.github.com/nodejs/node/pull/55570)
-
\[[`498f44ad73`](https://redirect.github.com/nodejs/node/commit/498f44ad73)]
- **doc**: add FAQ to releases section (Rafael Gonzaga)
[#&#8203;55992](https://redirect.github.com/nodejs/node/pull/55992)
-
\[[`d48348afaa`](https://redirect.github.com/nodejs/node/commit/d48348afaa)]
- **doc**: move history entry to class description (Luigi Pinca)
[#&#8203;55991](https://redirect.github.com/nodejs/node/pull/55991)
-
\[[`96926ce13c`](https://redirect.github.com/nodejs/node/commit/96926ce13c)]
- **doc**: add history entry for textEncoder.encodeInto() (Luigi Pinca)
[#&#8203;55990](https://redirect.github.com/nodejs/node/pull/55990)
-
\[[`e92d51d511`](https://redirect.github.com/nodejs/node/commit/e92d51d511)]
- **doc**: improve GN build documentation a bit (Shelley Vohr)
[#&#8203;55968](https://redirect.github.com/nodejs/node/pull/55968)
-
\[[`6be3824d6f`](https://redirect.github.com/nodejs/node/commit/6be3824d6f)]
- **doc**: fix deprecation codes (Filip Skokan)
[#&#8203;56018](https://redirect.github.com/nodejs/node/pull/56018)
-
\[[`fa2b35d28d`](https://redirect.github.com/nodejs/node/commit/fa2b35d28d)]
- **doc**: remove confusing and outdated sentence (Luigi Pinca)
[#&#8203;55988](https://redirect.github.com/nodejs/node/pull/55988)
-
\[[`baed2763df`](https://redirect.github.com/nodejs/node/commit/baed2763df)]
- **doc**: deprecate passing invalid types in `fs.existsSync` (Carlos
Espa)
[#&#8203;55892](https://redirect.github.com/nodejs/node/pull/55892)
-
\[[`a3f7db6b6d`](https://redirect.github.com/nodejs/node/commit/a3f7db6b6d)]
- **doc**: add doc for PerformanceObserver.takeRecords() (skyclouds2001)
[#&#8203;55786](https://redirect.github.com/nodejs/node/pull/55786)
-
\[[`770572423b`](https://redirect.github.com/nodejs/node/commit/770572423b)]
- **doc**: add vetted courses to the ambassador benefits (Matteo
Collina)
[#&#8203;55934](https://redirect.github.com/nodejs/node/pull/55934)
-
\[[`98f8f4a8a9`](https://redirect.github.com/nodejs/node/commit/98f8f4a8a9)]
- **doc**: order `node:crypto` APIs alphabetically (Julian Gassner)
[#&#8203;55831](https://redirect.github.com/nodejs/node/pull/55831)
-
\[[`1e0decb44c`](https://redirect.github.com/nodejs/node/commit/1e0decb44c)]
- **doc**: doc how to add message for promotion (Michael Dawson)
[#&#8203;55843](https://redirect.github.com/nodejs/node/pull/55843)
-
\[[`ff48c29724`](https://redirect.github.com/nodejs/node/commit/ff48c29724)]
- **doc**: add esm example for zlib (Leonardo Peixoto)
[#&#8203;55946](https://redirect.github.com/nodejs/node/pull/55946)
-
\[[`ccc5a6d552`](https://redirect.github.com/nodejs/node/commit/ccc5a6d552)]
- **doc**: document approach for building wasm in deps (Michael Dawson)
[#&#8203;55940](https://redirect.github.com/nodejs/node/pull/55940)
-
\[[`c8bb8a6ac5`](https://redirect.github.com/nodejs/node/commit/c8bb8a6ac5)]
- **doc**: fix Node.js 23 column in CHANGELOG.md (Richard Lau)
[#&#8203;55935](https://redirect.github.com/nodejs/node/pull/55935)
-
\[[`9d078802ad`](https://redirect.github.com/nodejs/node/commit/9d078802ad)]
- **doc**: remove RedYetiDev from triagers team (Aviv Keller)
[#&#8203;55947](https://redirect.github.com/nodejs/node/pull/55947)
-
\[[`5a2a757119`](https://redirect.github.com/nodejs/node/commit/5a2a757119)]
- **doc**: add esm examples to node:timers (Alfredo González)
[#&#8203;55857](https://redirect.github.com/nodejs/node/pull/55857)
-
\[[`f711a48e15`](https://redirect.github.com/nodejs/node/commit/f711a48e15)]
- **doc**: fix relative path mention in --allow-fs (Rafael Gonzaga)
[#&#8203;55791](https://redirect.github.com/nodejs/node/pull/55791)
-
\[[`219f5f2627`](https://redirect.github.com/nodejs/node/commit/219f5f2627)]
- **doc**: include git node release --promote to steps (Rafael Gonzaga)
[#&#8203;55835](https://redirect.github.com/nodejs/node/pull/55835)
-
\[[`f9d25ed3e4`](https://redirect.github.com/nodejs/node/commit/f9d25ed3e4)]
- **doc**: add history entry for import assertion removal (Antoine du
Hamel)
[#&#8203;55883](https://redirect.github.com/nodejs/node/pull/55883)
-
\[[`efb9f05f59`](https://redirect.github.com/nodejs/node/commit/efb9f05f59)]
- **(SEMVER-MINOR)** **doc,lib,src,test**: unflag sqlite module (Colin
Ihrig)
[#&#8203;55890](https://redirect.github.com/nodejs/node/pull/55890)
-
\[[`a37e5fe5f8`](https://redirect.github.com/nodejs/node/commit/a37e5fe5f8)]
- **fs**: lazily load ReadFileContext (Gürgün Dayıoğlu)
[#&#8203;55998](https://redirect.github.com/nodejs/node/pull/55998)
-
\[[`9289374248`](https://redirect.github.com/nodejs/node/commit/9289374248)]
- **http2**: fix memory leak caused by premature listener removing
(ywave620)
[#&#8203;55966](https://redirect.github.com/nodejs/node/pull/55966)
-
\[[`49af1c33ac`](https://redirect.github.com/nodejs/node/commit/49af1c33ac)]
- **lib**: add validation for options in compileFunction (Taejin Kim)
[#&#8203;56023](https://redirect.github.com/nodejs/node/pull/56023)
-
\[[`8faf91846b`](https://redirect.github.com/nodejs/node/commit/8faf91846b)]
- **lib**: fix `fs.readdir` recursive async (Rafael Gonzaga)
[#&#8203;56041](https://redirect.github.com/nodejs/node/pull/56041)
-
\[[`a2382303d7`](https://redirect.github.com/nodejs/node/commit/a2382303d7)]
- **lib**: refactor code to improve readability (Pietro Marchini)
[#&#8203;55995](https://redirect.github.com/nodejs/node/pull/55995)
-
\[[`30f26ba254`](https://redirect.github.com/nodejs/node/commit/30f26ba254)]
- **lib**: avoid excluding symlinks in recursive fs.readdir with
filetypes (Juan José)
[#&#8203;55714](https://redirect.github.com/nodejs/node/pull/55714)
-
\[[`9b272ae339`](https://redirect.github.com/nodejs/node/commit/9b272ae339)]
- **meta**: bump github/codeql-action from 3.27.0 to 3.27.5
(dependabot\[bot])
[#&#8203;56103](https://redirect.github.com/nodejs/node/pull/56103)
-
\[[`fb0e6ca68b`](https://redirect.github.com/nodejs/node/commit/fb0e6ca68b)]
- **meta**: bump actions/checkout from 4.1.7 to 4.2.2 (dependabot\[bot])
[#&#8203;56102](https://redirect.github.com/nodejs/node/pull/56102)
-
\[[`0ab611513c`](https://redirect.github.com/nodejs/node/commit/0ab611513c)]
- **meta**: bump step-security/harden-runner from 2.10.1 to 2.10.2
(dependabot\[bot])
[#&#8203;56101](https://redirect.github.com/nodejs/node/pull/56101)
-
\[[`ff4839b8ab`](https://redirect.github.com/nodejs/node/commit/ff4839b8ab)]
- **meta**: bump actions/setup-node from 4.0.3 to 4.1.0
(dependabot\[bot])
[#&#8203;56100](https://redirect.github.com/nodejs/node/pull/56100)
-
\[[`f262207356`](https://redirect.github.com/nodejs/node/commit/f262207356)]
- **meta**: add releasers as CODEOWNERS to proposal action (Rafael
Gonzaga)
[#&#8203;56043](https://redirect.github.com/nodejs/node/pull/56043)
-
\[[`b6005b3fac`](https://redirect.github.com/nodejs/node/commit/b6005b3fac)]
- **module**: mark evaluation rejection in require(esm) as handled
(Joyee Cheung)
[#&#8203;56122](https://redirect.github.com/nodejs/node/pull/56122)
-
\[[`b8ab5332a9`](https://redirect.github.com/nodejs/node/commit/b8ab5332a9)]
- **module**: remove --experimental-default-type (Geoffrey Booth)
[#&#8203;56092](https://redirect.github.com/nodejs/node/pull/56092)
-
\[[`4be5047030`](https://redirect.github.com/nodejs/node/commit/4be5047030)]
- **module**: do not warn when require(esm) comes from node_modules
(Joyee Cheung)
[#&#8203;55960](https://redirect.github.com/nodejs/node/pull/55960)
-
\[[`c9698ed6a4`](https://redirect.github.com/nodejs/node/commit/c9698ed6a4)]
- **(SEMVER-MINOR)** **net**: support blocklist in net.connect
(theanarkh)
[#&#8203;56075](https://redirect.github.com/nodejs/node/pull/56075)
-
\[[`9fba5e1df1`](https://redirect.github.com/nodejs/node/commit/9fba5e1df1)]
- **(SEMVER-MINOR)** **net**: add SocketAddress.parse (James M Snell)
[#&#8203;56076](https://redirect.github.com/nodejs/node/pull/56076)
-
\[[`565b04a7be`](https://redirect.github.com/nodejs/node/commit/565b04a7be)]
- **(SEMVER-MINOR)** **net**: add net.BlockList.isBlockList(value)
(James M Snell)
[#&#8203;56078](https://redirect.github.com/nodejs/node/pull/56078)
-
\[[`30d604180d`](https://redirect.github.com/nodejs/node/commit/30d604180d)]
- **(SEMVER-MINOR)** **net**: support blocklist for net.Server
(theanarkh)
[#&#8203;56079](https://redirect.github.com/nodejs/node/pull/56079)
-
\[[`4cdb03201e`](https://redirect.github.com/nodejs/node/commit/4cdb03201e)]
- **(SEMVER-MINOR)** **process**: deprecate `features.{ipv6,uv}` and
`features.tls_*` (René)
[#&#8203;55545](https://redirect.github.com/nodejs/node/pull/55545)
-
\[[`d09e57b26d`](https://redirect.github.com/nodejs/node/commit/d09e57b26d)]
- **quic**: update more QUIC implementation (James M Snell)
[#&#8203;55986](https://redirect.github.com/nodejs/node/pull/55986)
-
\[[`1fb30d6e86`](https://redirect.github.com/nodejs/node/commit/1fb30d6e86)]
- **quic**: multiple updates to quic impl (James M Snell)
[#&#8203;55971](https://redirect.github.com/nodejs/node/pull/55971)
-
\[[`9e4f7aa808`](https://redirect.github.com/nodejs/node/commit/9e4f7aa808)]
- **sqlite**: deps include `sqlite3ext.h` (Alex Yang)
[#&#8203;56010](https://redirect.github.com/nodejs/node/pull/56010)
-
\[[`d777d4a52d`](https://redirect.github.com/nodejs/node/commit/d777d4a52d)]
- **(SEMVER-MINOR)** **sqlite**: add `StatementSync.prototype.iterate`
method (tpoisseau)
[#&#8203;54213](https://redirect.github.com/nodejs/node/pull/54213)
-
\[[`66451bb9ba`](https://redirect.github.com/nodejs/node/commit/66451bb9ba)]
- **src**: use spaceship operator in SocketAddress (James M Snell)
[#&#8203;56059](https://redirect.github.com/nodejs/node/pull/56059)
-
\[[`ad9ebe417a`](https://redirect.github.com/nodejs/node/commit/ad9ebe417a)]
- **src**: add missing qualifiers to env.cc (Yagiz Nizipli)
[#&#8203;56062](https://redirect.github.com/nodejs/node/pull/56062)
-
\[[`56c4da240d`](https://redirect.github.com/nodejs/node/commit/56c4da240d)]
- **src**: use std::string_view for process emit fns (Yagiz Nizipli)
[#&#8203;56086](https://redirect.github.com/nodejs/node/pull/56086)
-
\[[`26ab8e9823`](https://redirect.github.com/nodejs/node/commit/26ab8e9823)]
- **src**: remove dead code in async_wrap (Gerhard Stöbich)
[#&#8203;56065](https://redirect.github.com/nodejs/node/pull/56065)
-
\[[`4dea44e468`](https://redirect.github.com/nodejs/node/commit/4dea44e468)]
- **src**: avoid copy on getV8FastApiCallCount (Yagiz Nizipli)
[#&#8203;56081](https://redirect.github.com/nodejs/node/pull/56081)
-
\[[`b778a4fe46`](https://redirect.github.com/nodejs/node/commit/b778a4fe46)]
- **src**: fix check fd (theanarkh)
[#&#8203;56000](https://redirect.github.com/nodejs/node/pull/56000)
-
\[[`971f5f54df`](https://redirect.github.com/nodejs/node/commit/971f5f54df)]
- **src**: safely remove the last line from dotenv (Shima Ryuhei)
[#&#8203;55982](https://redirect.github.com/nodejs/node/pull/55982)
-
\[[`497a9aea1c`](https://redirect.github.com/nodejs/node/commit/497a9aea1c)]
- **src**: fix kill signal on Windows (Hüseyin Açacak)
[#&#8203;55514](https://redirect.github.com/nodejs/node/pull/55514)
-
\[[`8a935489f9`](https://redirect.github.com/nodejs/node/commit/8a935489f9)]
- **src,build**: add no user defined deduction guides of CTAD check
(Chengzhong Wu)
[#&#8203;56071](https://redirect.github.com/nodejs/node/pull/56071)
-
\[[`5edb8d5919`](https://redirect.github.com/nodejs/node/commit/5edb8d5919)]
- **test**: remove test-fs-utimes flaky designation (Luigi Pinca)
[#&#8203;56052](https://redirect.github.com/nodejs/node/pull/56052)
-
\[[`046e642a80`](https://redirect.github.com/nodejs/node/commit/046e642a80)]
- **test**: ensure `cli.md` is in alphabetical order (Antoine du Hamel)
[#&#8203;56025](https://redirect.github.com/nodejs/node/pull/56025)
-
\[[`da354f46cd`](https://redirect.github.com/nodejs/node/commit/da354f46cd)]
- **test**: update WPT for WebCryptoAPI to
[`3e3374e`](https://redirect.github.com/nodejs/node/commit/3e3374efde)
(Node.js GitHub Bot)
[#&#8203;56093](https://redirect.github.com/nodejs/node/pull/56093)
-
\[[`9486c7ce4c`](https://redirect.github.com/nodejs/node/commit/9486c7ce4c)]
- **test**: update WPT for WebCryptoAPI to
[`76dfa54`](https://redirect.github.com/nodejs/node/commit/76dfa54e5d)
(Node.js GitHub Bot)
[#&#8203;56093](https://redirect.github.com/nodejs/node/pull/56093)
-
\[[`a8809fc0f5`](https://redirect.github.com/nodejs/node/commit/a8809fc0f5)]
- **test**: move test-worker-arraybuffer-zerofill to parallel (Luigi
Pinca)
[#&#8203;56053](https://redirect.github.com/nodejs/node/pull/56053)
-
\[[`6194435b9e`](https://redirect.github.com/nodejs/node/commit/6194435b9e)]
- **test**: update WPT for url to
[`67880a4`](https://redirect.github.com/nodejs/node/commit/67880a4eb83ca9aa732eec4b35a1971ff5bf37ff)
(Node.js GitHub Bot)
[#&#8203;55999](https://redirect.github.com/nodejs/node/pull/55999)
-
\[[`f7567d46d8`](https://redirect.github.com/nodejs/node/commit/f7567d46d8)]
- **test**: make HTTP/1.0 connection test more robust (Arne Keller)
[#&#8203;55959](https://redirect.github.com/nodejs/node/pull/55959)
-
\[[`c157e026fc`](https://redirect.github.com/nodejs/node/commit/c157e026fc)]
- **test**: convert readdir test to use test runner (Thomas Chetwin)
[#&#8203;55750](https://redirect.github.com/nodejs/node/pull/55750)
-
\[[`29362ce673`](https://redirect.github.com/nodejs/node/commit/29362ce673)]
- **test**: make x509 crypto tests work with BoringSSL (Shelley Vohr)
[#&#8203;55927](https://redirect.github.com/nodejs/node/pull/55927)
-
\[[`493e16c852`](https://redirect.github.com/nodejs/node/commit/493e16c852)]
- **test**: fix determining lower priority (Livia Medeiros)
[#&#8203;55908](https://redirect.github.com/nodejs/node/pull/55908)
-
\[[`99858ceb9f`](https://redirect.github.com/nodejs/node/commit/99858ceb9f)]
- **test,crypto**: update WebCryptoAPI WPT (Filip Skokan)
[#&#8203;55997](https://redirect.github.com/nodejs/node/pull/55997)
-
\[[`7c3a4d4bcd`](https://redirect.github.com/nodejs/node/commit/7c3a4d4bcd)]
- **test_runner**: refactor Promise chain in run() (Colin Ihrig)
[#&#8203;55958](https://redirect.github.com/nodejs/node/pull/55958)
-
\[[`95e8c4ef6c`](https://redirect.github.com/nodejs/node/commit/95e8c4ef6c)]
- **test_runner**: refactor build Promise in Suite() (Colin Ihrig)
[#&#8203;55958](https://redirect.github.com/nodejs/node/pull/55958)
-
\[[`c048865199`](https://redirect.github.com/nodejs/node/commit/c048865199)]
- **test_runner**: simplify hook running logic (Colin Ihrig)
[#&#8203;55963](https://redirect.github.com/nodejs/node/pull/55963)
-
\[[`8197815fe8`](https://redirect.github.com/nodejs/node/commit/8197815fe8)]
- **test_runner**: mark snapshot testing as stable (Colin Ihrig)
[#&#8203;55897](https://redirect.github.com/nodejs/node/pull/55897)
-
\[[`8a5d8c7669`](https://redirect.github.com/nodejs/node/commit/8a5d8c7669)]
- **test_runner**: mark context.plan() as stable (Colin Ihrig)
[#&#8203;55895](https://redirect.github.com/nodejs/node/pull/55895)
-
\[[`790a2ca3b7`](https://redirect.github.com/nodejs/node/commit/790a2ca3b7)]
- **tools**: update `create-release-proposal` workflow (Antoine du
Hamel)
[#&#8203;56054](https://redirect.github.com/nodejs/node/pull/56054)
-
\[[`98ce4652e2`](https://redirect.github.com/nodejs/node/commit/98ce4652e2)]
- **tools**: fix update-undici script (Michaël Zasso)
[#&#8203;56069](https://redirect.github.com/nodejs/node/pull/56069)
-
\[[`d6a6c8ace1`](https://redirect.github.com/nodejs/node/commit/d6a6c8ace1)]
- **tools**: allow dispatch of `tools.yml` from forks (Antoine du Hamel)
[#&#8203;56008](https://redirect.github.com/nodejs/node/pull/56008)
-
\[[`cc96fce5eb`](https://redirect.github.com/nodejs/node/commit/cc96fce5eb)]
- **tools**: fix nghttp3 updater script (Antoine du Hamel)
[#&#8203;56007](https://redirect.github.com/nodejs/node/pull/56007)
-
\[[`2cd939cb95`](https://redirect.github.com/nodejs/node/commit/2cd939cb95)]
- **tools**: filter release keys to reduce interactivity (Antoine du
Hamel)
[#&#8203;55950](https://redirect.github.com/nodejs/node/pull/55950)
-
\[[`4b3919f1be`](https://redirect.github.com/nodejs/node/commit/4b3919f1be)]
- **tools**: update WPT updater (Antoine du Hamel)
[#&#8203;56003](https://redirect.github.com/nodejs/node/pull/56003)
-
\[[`54c46b8464`](https://redirect.github.com/nodejs/node/commit/54c46b8464)]
- **tools**: add WPT updater for specific subsystems (Mert Can Altin)
[#&#8203;54460](https://redirect.github.com/nodejs/node/pull/54460)
-
\[[`32b1681b7f`](https://redirect.github.com/nodejs/node/commit/32b1681b7f)]
- **tools**: use tokenless Codecov uploads (Michaël Zasso)
[#&#8203;55943](https://redirect.github.com/nodejs/node/pull/55943)
-
\[[`475141e370`](https://redirect.github.com/nodejs/node/commit/475141e370)]
- **tools**: add linter for release commit proposals (Antoine du Hamel)
[#&#8203;55923](https://redirect.github.com/nodejs/node/pull/55923)
-
\[[`d093820f64`](https://redirect.github.com/nodejs/node/commit/d093820f64)]
- **tools**: lint js in `doc/**/*.md` (Livia Medeiros)
[#&#8203;55904](https://redirect.github.com/nodejs/node/pull/55904)
-
\[[`72eb710f0f`](https://redirect.github.com/nodejs/node/commit/72eb710f0f)]
- **tools**: fix riscv64 build failed (Lu Yahan)
[#&#8203;52888](https://redirect.github.com/nodejs/node/pull/52888)
-
\[[`882b70c83f`](https://redirect.github.com/nodejs/node/commit/882b70c83f)]
- **tools**: bump cross-spawn from 7.0.3 to 7.0.5 in /tools/eslint
(dependabot\[bot])
[#&#8203;55894](https://redirect.github.com/nodejs/node/pull/55894)
-
\[[`9eccd7dba9`](https://redirect.github.com/nodejs/node/commit/9eccd7dba9)]
- **util**: add fast path for Latin1 decoding (Mert Can Altin)
[#&#8203;55275](https://redirect.github.com/nodejs/node/pull/55275)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Johannes-Andersen/Johannes).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41OC4xIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 19, 2024
1 parent 7e75e04 commit 5e4f40b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
23.4.0
23.5.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:23.3.0-alpine AS base
FROM node:23.4.0-alpine AS base

ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": "23.4.0",
"node": "23.5.0",
"pnpm": "9"
},
"dependencies": {
Expand Down

0 comments on commit 5e4f40b

Please sign in to comment.