Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 19, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node uses-with major 20 -> 22 age adoption passing confidence
node final minor 22.11.0-alpine3.19 -> 22.12.0-alpine3.19 age adoption passing confidence
node (source) major 20.18.2 -> 22.20.0 age adoption passing confidence
@types/node (source) dependencies minor 22.9.0 -> 22.18.11 age adoption passing confidence

Release Notes

actions/node-versions (node)

v22.20.0: 22.20.0

Compare Source

Node.js 22.20.0

v22.19.0: 22.19.0

Compare Source

Node.js 22.19.0

v22.18.0: 22.18.0

Compare Source

Node.js 22.18.0

v22.17.1: 22.17.1

Compare Source

Node.js 22.17.1

v22.17.0: 22.17.0

Compare Source

Node.js 22.17.0

v22.16.0: 22.16.0

Compare Source

Node.js 22.16.0

v22.15.1: 22.15.1

Compare Source

Node.js 22.15.1

v22.15.0: 22.15.0

Compare Source

Node.js 22.15.0

v22.14.0: 22.14.0

Compare Source

Node.js 22.14.0

v22.13.1: 22.13.1

Compare Source

Node.js 22.13.1

v22.13.0: 22.13.0

Compare Source

Node.js 22.13.0

v22.12.0: 22.12.0

Compare Source

Node.js 22.12.0

v22.11.0: 22.11.0

Compare Source

Node.js 22.11.0

v22.10.0: 22.10.0

Compare Source

Node.js 22.10.0

v22.9.0: 22.9.0

Compare Source

Node.js 22.9.0

v22.8.0: 22.8.0

Compare Source

Node.js 22.8.0

v22.7.0: 22.7.0

Compare Source

Node.js 22.7.0

v22.6.0: 22.6.0

Compare Source

Node.js 22.6.0

v22.5.1: 22.5.1

Compare Source

Node.js 22.5.1

v22.5.0: 22.5.0

Compare Source

Node.js 22.5.0

v22.4.1: 22.4.1

Compare Source

Node.js 22.4.1

v22.4.0: 22.4.0

Compare Source

Node.js 22.4.0

v22.3.0: 22.3.0

Compare Source

Node.js 22.3.0

v22.2.0: 22.2.0

Compare Source

Node.js 22.2.0

v22.1.0: 22.1.0

Compare Source

Node.js 22.1.0

v22.0.0: 22.0.0

Compare Source

Node.js 22.0.0

nodejs/node (node)

v22.12.0: 2024-12-03, Version 22.12.0 'Jod' (LTS), @​ruyadorno

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x and v22.x under the command line flag --experimental-require-module, and available by default on v23.x. In this release, it is now no longer behind a flag on v22.x.

This feature is still experimental, and we are looking for user feedback to make more final tweaks before fully stabilizing it. For this reason, on v22.x, when the Node.js instance encounters a native ES module in require() for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Added resizable ArrayBuffer support in Buffer

When a Buffer is created using a resizable ArrayBuffer, the Buffer length will now correctly change as the underlying ArrayBuffer size is changed.

const ab = new ArrayBuffer(10, { maxByteLength: 20 });
const buffer = Buffer.from(ab);
console.log(buffer.byteLength); 10
ab.resize(15);
console.log(buffer.byteLength); 15
ab.resize(5);
console.log(buffer.byteLength); 5

Contributed by James Snell in #​55377

Update root certificates to NSS 3.104

This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.

Certificates added:

  • FIRMAPROFESIONAL CA ROOT-A WEB
  • TWCA CYBER Root CA
  • SecureSign Root CA12
  • SecureSign Root CA14
  • SecureSign Root CA15

Contributed by Richard Lau in #​55681

Other Notable Changes
  • [4920869935] - (SEMVER-MINOR) assert: make assertion_error use Myers diff algorithm (Giovanni Bucci) #​54862
  • [ccffd3b819] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #​55732
  • [acc6806900] - doc: add jazelly to collaborators (Jason Zhang) #​55531
  • [88d91e8bc2] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #​55333
  • [98bfc7dce5] - (SEMVER-MINOR) http: add diagnostic channel http.client.request.created (Marco Ippolito) #​55586
  • [337f61fb25] - (SEMVER-MINOR) lib: add UV_UDP_REUSEPORT for udp (theanarkh) #​55403
  • [1628c48ad6] - (SEMVER-MINOR) net: add UV_TCP_REUSEPORT for tcp (theanarkh) #​55408
  • [457e73f4c9] - (SEMVER-MINOR) sqlite: add support for SQLite Session Extension (Bart Louwers) #​54181
Commits

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 these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 19, 2025
@renovate renovate bot had a problem deploying to data-manager-ui/test February 19, 2025 19:23 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test February 19, 2025 19:23 Failure
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.13.4 chore(deps): update dependency @types/node to v22.13.5 Feb 21, 2025
@renovate renovate bot force-pushed the renovate/node-22.x branch from 97d0f0d to a336f93 Compare February 21, 2025 21:37
@renovate renovate bot had a problem deploying to data-manager-ui/test February 21, 2025 21:37 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test February 21, 2025 21:37 Failure
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.13.5 chore(deps): update dependency @types/node to v22.13.6 Feb 28, 2025
@renovate renovate bot force-pushed the renovate/node-22.x branch from a336f93 to 0707727 Compare February 28, 2025 21:57
@renovate renovate bot had a problem deploying to data-manager-ui/test February 28, 2025 21:58 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test February 28, 2025 21:58 Failure
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.13.6 chore(deps): update dependency @types/node to v22.13.7 Mar 1, 2025
@renovate renovate bot force-pushed the renovate/node-22.x branch from 0707727 to 8fc36ed Compare March 1, 2025 02:18
@renovate renovate bot had a problem deploying to data-manager-ui/test March 1, 2025 02:18 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test March 1, 2025 02:18 Failure
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.13.7 chore(deps): update dependency @types/node to v22.13.8 Mar 1, 2025
@renovate renovate bot force-pushed the renovate/node-22.x branch from 8fc36ed to a8d41a6 Compare March 1, 2025 10:43
@renovate renovate bot had a problem deploying to data-manager-ui/test March 1, 2025 10:43 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test March 1, 2025 10:43 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from a8d41a6 to f8f48e1 Compare March 3, 2025 16:26
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v22.13.8 chore(deps): update node.js to v22.12.0 Mar 3, 2025
@renovate renovate bot had a problem deploying to data-manager-ui/test March 3, 2025 16:26 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test March 3, 2025 16:26 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from f8f48e1 to ac84d5a Compare March 3, 2025 23:34
@renovate renovate bot had a problem deploying to data-manager-ui/test March 3, 2025 23:34 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test March 3, 2025 23:34 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from ac84d5a to ec36edf Compare March 8, 2025 10:19
@renovate renovate bot had a problem deploying to data-manager-ui/test March 8, 2025 10:19 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test March 8, 2025 10:19 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from ec36edf to 96c6c31 Compare March 21, 2025 11:15
@renovate renovate bot had a problem deploying to data-manager-ui/test September 16, 2025 03:09 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test September 16, 2025 03:09 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from 2a101db to a06b2e8 Compare September 16, 2025 22:00
@renovate renovate bot had a problem deploying to data-manager-ui/test September 16, 2025 22:01 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test September 16, 2025 22:01 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from a06b2e8 to b4d7d3e Compare September 18, 2025 02:32
@renovate renovate bot had a problem deploying to data-manager-ui/test September 18, 2025 02:32 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test September 18, 2025 02:32 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from b4d7d3e to ae8c803 Compare September 24, 2025 15:03
@renovate renovate bot had a problem deploying to data-manager-ui/test September 24, 2025 15:03 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test September 24, 2025 15:03 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from ae8c803 to 1bc6dd4 Compare September 29, 2025 20:48
@renovate renovate bot had a problem deploying to data-manager-ui/test September 29, 2025 20:48 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test September 29, 2025 20:48 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from 1bc6dd4 to 1b98175 Compare October 1, 2025 02:53
@renovate renovate bot had a problem deploying to data-manager-ui/test October 1, 2025 02:53 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 1, 2025 02:53 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from 1b98175 to 9f02e9b Compare October 9, 2025 16:30
@renovate renovate bot had a problem deploying to data-manager-ui/test October 9, 2025 16:31 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 9, 2025 16:31 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from 9f02e9b to a115237 Compare October 9, 2025 22:15
@renovate renovate bot had a problem deploying to data-manager-ui/test October 9, 2025 22:15 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 9, 2025 22:15 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from a115237 to e30b0f2 Compare October 11, 2025 17:09
@renovate renovate bot had a problem deploying to data-manager-ui/test October 11, 2025 17:09 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 11, 2025 17:09 Failure
@renovate renovate bot force-pushed the renovate/node-22.x branch from e30b0f2 to e571237 Compare October 17, 2025 05:37
@renovate renovate bot had a problem deploying to data-manager-ui/test October 17, 2025 05:37 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 17, 2025 05:37 Failure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants